RE: [xsl] question about implements-prefix

Subject: RE: [xsl] question about implements-prefix
From: Don Bruey <dbruey@xxxxxxxxxxxxxxxxxxxxx>
Date: Thu, 6 Dec 2001 15:10:33 -0500
Of course, you're right.  I was answering a namespace question, not the
specific XSLT question and I drove the train right off the tracks. 

Don

-----Original Message-----
From: Chris Bayes [mailto:chris@xxxxxxxxxxx]
Sent: Thursday, December 06, 2001 2:57 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE: [xsl] 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

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread