Subject: Re: Standard Date/Time Publication Functions in XSL??
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 3 Aug 2005 00:13:15 +0100
|
> 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 "
so
<xsl:value-of select='format-date($d, "[D1o] [MNn], [Y]", "en", (),())'/>
or
<xsl:value-of select="format-date($d, "[D1o] [MNn], [Y]", "en", (),())"/>
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
________________________________________________________________________
|