This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Passing a parameter to an XSL document



> I would like to pass the name of the xml document(en_US.xml)  to be used in
> this xsl segment.  Java or javascript.
> 
> <xsl:if test="document('en_US.xml')/locale/*[name()=$myKey]">

<xsl:param name="doc-file"/>
...
...
<xsl:if test="document($doc-file)/locale/*[name()=$myKey]">

then pass the parameter to your stylesheet with whatever mechanism
your system allows.

David


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]