RE: Use only a limited number of items in an xsl:for-each

2008-08-18 Thread Griffin,Sean
Brian, select="intellispec/aliases/alias" is different than select="//*[local-name()='intellispec/aliases/alias'], if not functionally, at least in the area of performance. Just try select="intellispec/aliases/alias[position() < 3]" and see if that works any better. BTW, this has nothing to

Re: Use only a limited number of items in an xsl:for-each

2008-08-18 Thread J.Pietschmann
Brian Trezise wrote: I'm using the following to select a subset of items from my xml document to be rendered to the pdf; however when I run fop on the xslt/xml, nothing is rendered at all: From what I can tell this is valid xslt code, Well, 'intellispec/aliases/alias' is not a val