xsl-list
[Top] [All Lists]

Re: Specifying xml source in xsl stylesheet

2003-04-24 16:26:15
Gregory Propf wrote:
Is there any way to hard-code the xml file to be parsed by a particular xsl stylesheet? I want to associate a menu.xml file with a menu.xsl stylesheet and then be able to include the menu.xsl in another xsl file. The idea is to have the same menu always available for multiple files.

You can try the trick which reads XML data from the style sheet:
<xsl:stylesheet ...
  xmlns:menu="http://whatever.urk/templates/menu";>
 <menu:data>
   <!-- your menu XML here -->
 </menu:data>

 <xsl:variable name="menudata"
  select="document('')/xsl:stylesheet/menu:data"/>

You can use $menudata to refer to your menu XML data, for example
  <xsl:apply-templates select="$menudata/menu/menuitem"/>

J.Pietschmann


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



<Prev in Thread] Current Thread [Next in Thread>