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

Generating attributes from the position of an element

Subject: Generating attributes from the position of an element
From: Gábor Tóth <roysy@xxxxxxxx>
Date: Tue, 1 Jun 2010 07:52:07 +0100
 Generating attributes from the position of an element
Dear All,

I have the following xml file and wish to generate ID-s based on the
position to the <w> elements with the following XSL file, however, the
end result of the ID attribute is always 1, I have no idea why.

The xml file is

<?oxygen RNGSchema="http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/tei_all.rng"
type="xml"?>
<?xml-stylesheet type="text/xsl" href="template.xsl"?>
<text>
    <w ID=" " >car</w>
    <w ID=" ">dog</w>
    <w ID=" ">cat</w>
    <w ID=" ">house</w>

</text>

The XSL file is

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:tei="http://www.tei-c.org/ns/1.0" xmlns="http://www.tei-c.org/ns/1.0"
    version="2.0" exclude-result-prefixes="tei"
    xpath-default-namespace="http://www.tei-c.org/ns/1.0"
    >


    <xsl:template match="@*|node()|comment()|processing-instruction()"
priority="-5">
        <xsl:copy><xsl:apply-templates
select="@*|node()|comment()|processing-instruction()"/></xsl:copy>
        <xsl:apply-templates select="/text/w/@ID"/>

    </xsl:template>

<xsl:template match="@ID">
         <xsl:attribute name="Id">
            <countNo><xsl:value-of select="position()"/></countNo>

        </xsl:attribute>

    </xsl:template>

Result:

<?xml version="1.0" encoding="UTF-8"?><?oxygen
RNGSchema="http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/tei_all.rng"
type="xml"?><?xml-stylesheet type="text/xsl"
href="template.xsl"?><text>
    <w Id="1">car</w>
    <w Id="1">dog</w>
    <!-- Why does not increment the number of the ID?  -->
<w Id="1">cat</w>
    <w Id="1">house</w>

</text>

Thanks,

Gabor

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.