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

Different templates for same set of nodes

Subject: Different templates for same set of nodes
From: "SHEIKH Sajjad" <Sajjad.SHEIKH@xxxxxxxxxxx>
Date: Thu, 11 Dec 2003 14:38:55 +0100
different templates
Hi all,

I am having a little issue in using the same template for two different
purposes.

Following sheet produces first the header of the page as following

You are here Entropresse >>> KFC >>> 1. Question Dossiers >>> E -
110803GTO nama LK213 environmental chick (2001 18)

2nd template produces the HREF as following

<a href="http://localhost?value1=Entorpresse&value2=KFC&value3=1.
Questions Dossiers&value4=E - 110803GTO nama LK213 environmental chick
(2001 18)"> click here </a>

I don't know how can I differentiate between two to use them in
different locations.

Any suggestion?



----------------------------- my.xsl ------------------------------

<xsl:template match="link">
<table>
 <tr>
  <td>You are here:&#160;&#160;</td>

  <xsl:for-each select="location">
	 <td>
  	 <a> 
   	  <xsl:attribute name="href">
		<xsl:value-of
select="@path"/>xmlinterlinks1.html</xsl:attribute>
    		<xsl:value-of select="."/>
  		<xsl:if
test="position()!=last()">&#160;>>>&#160;</xsl:if>
  	 </a>
  </xsl:for-each>
 </tr>
</table>
</xsl:template>

<xsl:template match="link">
<a>
<xsl:attribute name="href">
  <xsl:text>http://localhost?</xsl:text>
 <xsl:for-each select="location">
  <xsl:text>value</xsl:text>
  <xsl:value-of select="position()"/>
  <xsl:text>=</xsl:text>
  <xsl:value-of select="."/>
  <xsl:if test="position()!=last()">&amp;</xsl:if>
 </xsl:for-each>
</xsl:attribute>
<xsl:value-of select="."/>
</a>
</xsl:template>


----------------------------- my.xml------------------------------
<?xml version="1.0" encoding="ISO-8859-1"?> 
 <link>
  <location path="..\..\..\">Entorpresse</location> 
  <location path="..\..\">KFC</location> 
  <location path="..\">1. Questions Dossiers</location> 
  <location last="true" path="">E - 110803GTO nama LK213 environmental
chick (2001 18)</location> 
 </link>

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


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.