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]

<xsl:number> count problem


Hi

    <div type="introduction">
    <head>Introduction</head>
    <p>What is the problem of TBI</p>
    <pb/>
    
    <div type="partie">
    <p>Test
    </p>
    <pb/>
    </div>
    
    </div>

I want to compute a reference for all pb element
describe like this.
1: position of pb element contains in the div
type=introduction
2: total of pb in the div type=introduction

So for the first pb : 1 2
for the second : 2 2

The current node is div type='introdution'
<xsl:for-each select="descendant::pb">
<xsl:number value="position()"/>
<!-- Dont know the second -->
</xsl:for-each>

Thanks
Sydney

___________________________________________________________
Do You Yahoo!?
Achetez, vendez! À votre prix! Sur http://encheres.yahoo.fr


 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]