trying to use xsl:choose to test for last page

F

freefly_xml

I want to test to see if I am on the last page of a document. In this
example it is an invoice. I want to print a different table in REGION
AFTER when I am on the last page. I have tried many variations, no luck
yet. It seems like it should be an easy thing to do with xsl:choose.

Any ideas? Here is one of my attempts.
More detail of what the xml, xsl and pdf look like are here:
http://www.bangboompow.com/xml/invoice/


I am trying to test the field value in the footer area like this:

<xsl:choose>
<xsl:when test="document_end = 'TRUE'">
<fo:block font-size="10pt" font-weight="bold">
LAST PAGE
</fo:block>
</xsl:when>
<xsl:eek:therwise>
<fo:block font-size="10pt" font-weight="bold">
not the last page
</fo:block>
</xsl:eek:therwise>
</xsl:choose>

I am trying to set the value of the field in the detail line loop like
this:

<xsl:if test="position() = last()">
<xsl:variable name="document_end" select="'TRUE'" />
</xsl:if>
 
J

Joe Kesselman

<xsl:variable name="document_end" select="'TRUE'" />
</xsl:if>

Position doesn't refer to page number, but to position in a set of nodes
returned by an XPath expression.

Nothing in XSLT knows about the concept of "pages" per se.

If the XML language you're working in has a <page> element or something
equivalent to it, you could test for whether you are within the last
such element.

But I presume you're looking for something that will dynamically lay out
the document with an awareness of pagination. That isn't XSLT's job;
that's the sort of thing which the next stage of processing (XSL-FO, for
example) would handle.
 
A

Andy Dingley

freefly_xml said:
I want to test to see if I am on the last page of a document.

This is really hard to do in any language remotely like XSLT. The
problem is that XSLT is largely data-centric, not layout-centric. You
need to think of a way of recognising "on the last page" for your
document that can be evaluated simply by looking at the data elements
in the source XML. In many cases this simply isn't possible. Actually
coding the thing as an XPath expression might be the easy bit.

Sometimes, in pathological cases, you have to perform the XML => XSL:FO
transformation (probably by XSLT) first. Once you're into XSL:FO then
you've fixed the layout, implied the page layout and you can start
looking at concepts like page number. Only then can you start
identifying "last page" -- probably by another XSLT identity transform
turning XSL:FO into XSL:FO, but with a minor template rule in there
identifying some condition and making a minor change.
 
P

Peter Flynn

freefly_xml said:
I want to test to see if I am on the last page of a document.

As Joe and Andy have explained, you can't easily do this unless
you are programming within a page-aware formatter. Normally this
kind of thing is handled by the print-formatter stylesheet.

Maybe within your template for Detail_Line you could add at
the end something like

<xsl:if test="not(following-sibling::Detail_line)">
stuff to do on last page
</xsl:if>

on the principle that if you're processing the last
Detail_Line, you're probably on the last page...

///Peter
 
F

freefly_xml

A working way to create a different footer for the last page of a
document with xslt.

In the looping of the detail lines test for the last line and set a
marker:

<xsl:choose>
<xsl:when test="position() = last()">
<fo:marker marker-class-name="footer-marker">
<fo:block>LAST PAGE</fo:block>
</fo:marker>
</xsl:when>
<xsl:eek:therwise>
<fo:marker marker-class-name="footer-marker">
<fo:block>Continued...</fo:block>
</fo:marker>
</xsl:eek:therwise>
</xsl:choose>

then retrieve the marker in the region-after with this:

<fo:retrieve-marker retrieve-position="last-ending-within-page"
retrieve-class-name="footer-marker" />
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,050
Latest member
AngelS122

Latest Threads

Top