xsl-list
[Top] [All Lists]

Re: [xsl] Need to remove unusual character in source

2006-09-27 05:54:52
Abel Braaksma wrote:

<xsl:function name="try-loading-file">
    <xsl:param name="filename" />
    <xsl:value-of select="document($filename)" />
</xsl:function>

  I guess you meant:

    <xsl:function name="try-loading-file" as="document-node()">
      <xsl:param name="filename"/>
      <xsl:sequence select="document($filename)"/>
    </xsl:function>

  Regards,

--drkm
























        

        
                
___________________________________________________________________________ 
Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet 
! 
Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos 
expériences. 
http://fr.answers.yahoo.com 


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--