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

Unique IDs?

Subject: Unique IDs?
From: Sven Waibel <sven.waibel@xxxxxxxx>
Date: Wed, 23 Mar 2005 09:38:15 +0100
 Unique IDs?
Good morning!

in my xsl:

<xsl:key name="ids" match="tc/pc/*[@id]" use="concat(../../@id,@id)" />

<xsl:template match="pc">
	<xsl:apply-templates select="*[@id and generate-id(.)= generate-id(key('ids', concat(../../@id,@id)))]" />
</xsl:template>

<xsl:template match="tc/pc/*[@id]">
  <fo:block><xsl:value-of select="@name" /></fo:block>
</xsl:template>


my xml:

<tc id="123">
	<pc>
		<status id="1" name="Status 1"/>
		<status id="2" name="Status 2"/>
		<status id="1" name="Status 1"/>
	</pc>
	<pc>
		<status id="5" name="Status 5"/>
		<status id="1" name="Status 1"/>
	</pc>
	<pc>
		<status id="1" name="Status 1"/>
	</pc>
</tc>

The current output looks as followed:

"pc1"   Status 1
	Status 2

"pc2"	Status 5

"pc3" 	


The output should look as followed:

"pc1"   Status 1
	Status 2

"pc2"	Status 5
	Status 1

"pc3" 	Status 1

Status No. must not exist more than one in one "pc".

What's wrong with my Stylesheet?

Thanks

Best regards
Sven

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.