[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Expanding XML navigation

Subject: Re: Expanding XML navigation
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 27 Sep 2004 16:29:32 +0100
xml navigation
<xsl:stylesheet
   version="1.0"
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>

<xsl:output indent="yes"/>


<xsl:template match="/">
 <xsl:apply-templates mode="x" select="/">
  <xsl:with-param name="x" select="'manhattan'"/>
 </xsl:apply-templates>
</xsl:template>


<xsl:template mode="x" match="/|*">
<xsl:param name="x"/>
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:if test="descendant-or-self::page[@name=$x]">
 <xsl:apply-templates mode="x" select="*">
  <xsl:with-param name="x" select="$x"/>
 </xsl:apply-templates>
</xsl:if>
</xsl:copy>
</xsl:template>



</xsl:stylesheet>


produces

$ saxon tree.xml  tree.xsl
<?xml version="1.0" encoding="utf-8"?>
<linkmap>
   <page name="index">
      <page name="about"/>
      <page name="events"/>
      <page name="contact">
         <page name="directions">
            <page name="new-york">
               <page name="manhattan">
                  <page name="uptown"/>
               </page>
               <page name="bronx"/>
            </page>
            <page name="paris"/>
         </page>
      </page>
   </page>
</linkmap>

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.