Re: Newbie - Dynamic data in .fo file

2002-05-28 Thread J.Pietschmann
Jeremias Maerki wrote: document('urltoyourxmlfile')/mystuff/entry[position() = 3]/text ... If you wrap the result using node-set() function (See Xalan documentation) you can even apply templates from your stylesheet to it. No need for doing this: works. You can even do ... or whatever. Usin

Re: Newbie - Dynamic data in .fo file

2002-05-28 Thread Jeremias Maerki
You can improve the use of the document() function if you do something like that: document('urltoyourxmlfile')/mystuff/entry[position() = 3]/text which basically means that you can append an XPath statement to further restrict the content to be included. I use this to include language dependant

RE: Newbie - Dynamic data in .fo file

2002-05-28 Thread Vikram Goyal01
.   Rgs Vikram     -Original Message-From: Denis Thierry [mailto:[EMAIL PROTECTED]Sent: Tuesday, May 28, 2002 2:08 PMTo: [EMAIL PROTECTED]Subject: Re: Newbie - Dynamic data in .fo file Hi,   Did you try something like document('urltoyourxmlfile') in your fo

Re: Newbie - Dynamic data in .fo file

2002-05-28 Thread Denis Thierry
Hi,   Did you try something like document('urltoyourxmlfile') in your fo file? This should insert your xml doc into your fo file ... - Original Message - From: Vikram Goyal01 To: [EMAIL PROTECTED] Sent: Tuesday, May 28, 2002 10:21 AM Subject: Newbie - Dynamic data in .