xsl-list
[Top] [All Lists]

Re: Standard Date/Time Publication Functions in XSL??

2005-08-02 16:13:15

David said the same thing...
actually he said

<xsl:value-of select="format-date(....)"/>

but you have to fill in the .. in a way that is well formed XML.
As always in XML if you want to put a string involving " in an xml
attribute you need to delimit the attribute with ' or use &quot;

so

<xsl:value-of select='format-date($d, "[D1o] [MNn], [Y]", "en", (),())'/>

or

<xsl:value-of select="format-date($d, &quot;[D1o] [MNn], [Y]&quot;, 
&quot;en&quot;, (),())"/>

or you can use ' for teh xpath strings:

<xsl:value-of select="format-date($d, '[D1o] [MNn], [Y]', 'en', (),())"/>

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--