RE: Processing selected nodes...

2013-10-02 Thread Bernard Giannetti
FYI, I posted a question (and solution) at http://www.tek-tips.com/viewthread.cfm?qid=1719206. From: thebernmeis...@hotmail.com To: fop-users@xmlgraphics.apache.org Subject: Processing selected nodes... Date: Sun, 29 Sep 2013 16:23:24 +1000 Hi, I'm using FOP, embedded in a desktop

Processing selected nodes...

2013-09-29 Thread Bernard Giannetti
Hi, I'm using FOP, embedded in a desktop application, to create PDFs from a single data XML file using an XSLT file. Say the data XML file is a list of items, for example: items itemapple /item itemorange /item itemwater melon /item.../items I want to be able to tell the XSLT

Re: Processing selected nodes...

2013-09-29 Thread Glenn Adams
This question relates to XSLT, not XSL-FO or FOP, so this isn't really the right ML to post this. On Sun, Sep 29, 2013 at 12:23 AM, Bernard Giannetti thebernmeis...@hotmail.com wrote: Hi, I'm using FOP, embedded in a desktop application, to create PDFs from a single data XML file using an

Re: Processing selected nodes...

2013-09-29 Thread Frank Hirsch
Right, not the right list… But maybe a quick and simple solution: xsl:for-each select=//items/item[substr($theList,text()]xsl:for-each? Am 29.09.2013 um 17:20 schrieb Glenn Adams gl...@skynav.com: This question relates to XSLT, not XSL-FO or FOP, so this isn't really the right ML to post

Re: Processing selected nodes...

2013-09-29 Thread Frank Hirsch
Ups - sorry: contains instead of substring of course :/ Am 29.09.2013 um 17:47 schrieb Frank Hirsch frank.hir...@mac.com: Right, not the right list… But maybe a quick and simple solution: xsl:for-each select=//items/item[substr($theList,text()]xsl:for-each? Am 29.09.2013 um 17:20 schrieb

RE: Processing selected nodes...

2013-09-29 Thread Tom Morrison
@xmlgraphics.apache.org Subject: Processing selected nodes... Hi, I'm using FOP, embedded in a desktop application, to create PDFs from a single data XML file using an XSLT file. Say the data XML file is a list of items, for example: items item apple /item item

RE: Processing selected nodes...

2013-09-29 Thread Bernard Giannetti
Thanks Tim, et al - I was thinking that since I was passing a parameter from my FOP code, this was something to do with FOP. From: t...@hillcountrysoftware.com To: fop-users@xmlgraphics.apache.org Subject: RE: Processing selected nodes... Date: Sun, 29 Sep 2013 16:54:47 -0500 While