iwonder,
This may be kind of a thread hijack, but you seem to know the whole RSS XSL thing very well and I am trying to modify my XSL to affect some text. Can you tell me if I can exclude the time from the pubdate. In DNN 4.9.4, I'm using the News module and the included Vscroll.xls.
The RSS feed from the blog displays like this: Title Administrator Tuesday, 2:51 AM
On my DNN site, the date displays like this: Fri, 07 Aug 2009 05:00:05 -0500
I'd like it to just display: Aug 07, 2009
Any suggestions of how to modify Vscroll.xls to do this or does it depend on the RSS feed code?
The date piece of the XSL code is:
<div class="DNN_News_ItemDate">
<xsl:if test="$ShowItemDate='true'">
<xsl:value-of select="pubDate"/>
</xsl:if>
<xsl:if test="$ShowItemDate='true'">
<xsl:text> - </xsl:text>
</xsl:if>
</div>
I assume this is a relevant piece of code from the RSS html that the XSL translates, but I dont' know: articlelocaldate="0271350940.086981"
Any advice? Thanks