On Monday 04 February 2002 10:40, you wrote: > > So what would be the simplest and fastest solution here, that > > will allow: > > /articles/article1.xml > > > > to be transformed and have a timestamp in it? > > How about math:random from exlst? It should be supported natively by > XML::LibXSLT (though I haven't tried it). > > <xsl:value-of xmlns:math="http://exslt.org/math" select="math:random() * > 100000"/> > > Or something like that.
IIRC, this would be: <xsl:stylesheet xmlns:math="http://exslt.org/math" extension-element-prefixes="math"> ... content ... </xsl:stylesheet> At http://www.exslt.org you can find detailed information about EXSLT, downloads for the extensions (not sure if you need them, as Matt says it might be natively supported), and documentation. -- CU Joerg PGP Public Key at http://ich.bin.kein.hoschi.de/~trouble/public_key.asc PGP Key fingerprint = D34F 57C4 99D8 8F16 E16E 7779 CDDC 41A4 4C48 6F94 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
