This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Incrementing/Recursion... (somewhat)




<groups>
    <group>First</group>
    <group>Second</group>
    <group>Third</group>
    <group>Fourth</group>
    <group>Fifth</group>
</groups>


<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0"
                >

<xsl:output method="xml" indent="yes"/>

<xsl:template match="group">
<xsl:for-each select="preceding-sibling::*|.">[#]</xsl:for-each>
<xsl:value-of select="."/>
</xsl:template>

</xsl:stylesheet>

bash$ xt g1.xml g1.xsl
<?xml version="1.0" encoding="utf-8"?>

    [#]First
    [#][#]Second
    [#][#][#]Third
    [#][#][#][#]Fourth
    [#][#][#][#][#]Fifth


David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet delivered
through the MessageLabs Virus Control Centre. For further information visit
http://www.star.net.uk/stats.asp


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]