Search found 3 matches

by sunnykeerthi
Wed Dec 15, 2021 1:19 am
Forum: XSLT and FOP
Topic: Get the following siblings with a limit
Replies: 1
Views: 1017

Get the following siblings with a limit

Hi, I'm want an XSLT that will extract the content following the h1 and before the next h1 or end of the document. Here is my data. <div id="toc"> <h1>Head 1</h1> <p>para text</p> <div class="class1">div content</div> <h1>Head 2</h1> <p>para text</p> <span>span content</span> <h1...
by sunnykeerthi
Thu Dec 04, 2014 4:44 pm
Forum: XSLT and FOP
Topic: match uncaught though declared in XSL
Replies: 1
Views: 1869

match uncaught though declared in XSL

I've the below XML. <para indent="no"> <star.page>18</star.page> Further to same. </para> and when i run the below XSLT. <xsl:template match="para"> <xsl:value-of select="./node()[1][self::star.page]|./label/node()[1][self::star.page]"/> <div> <xsl:choose> <xsl:when tes...
by sunnykeerthi
Wed Oct 23, 2013 9:31 am
Forum: XSLT and FOP
Topic: Cals table and xslt
Replies: 0
Views: 3245

Cals table and xslt

I'm working on an xslt project where in there are some tables to be created. But i'm unable to know how to do them. I have a pdf that should be matched with that table and should be the same. Below is my xml code. <table frame="sides" colsep="1" rowsep="1"> <tgroup cols...