|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: question about implements-prefix
> In the case of the original question, the namespace URI
> mattered. Not putting in the correct URI for the "user"
> namespace meant that the extension function in question would
> not be recognized.
That isn't right! You can put anything in there except a namespace that
means something like "http://www.w3.org/1999/XSL/Transform" i.e.
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
xmlns:user="anyoldname"
version="1.0">
<msxsl:script language="VBScript" implements-prefix="user">
function formatArg(idate)
formatArg = ucase(idate)
end function
</msxsl:script>
<xsl:template match="testcode">
<xsl:value-of select="user:formatArg(date)"/>
</xsl:template>
</xsl:stylesheet>
Would work just as well
Ciao Chris
XML/XSL Portal
http://www.bayes.co.uk/xml
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








