Dear all, How is it possible to integrate (simply) current date to a xsl stylesheet ?
This solution seems to be run, but it's constraining to define an own namespace for one function. **************************************************************************** ******************** <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:func="http://www.exslt.org/functions" xmlns:user="http://www.mcc-soft.com/mynamespace" extension-element-prefixes="func" exclude-result-prefixes="user"> <func:script implements-prefix="user" language="javascript"> <![CDATA[ function today() { // body javascript function } ]]> </func:script> <xsl:template match="/"> <xsl:value-of select="."/><br/> <xsl:variable name="today" select="user:today()"/> </xsl:template> </xsl:stylesheet> **************************************************************************** ******************** Thanks for your help & best regards, Sandrine - Paris France