Re: Problem with CDATA in the input XML-file

2005-03-06 Thread Glen Mazza
--- Julian Reschke [EMAIL PROTECTED] wrote:

 [EMAIL PROTECTED] wrote:
  Of course! We forgot theand  before and
 after the CDATA.
  We used a parser (jdom) that could handle this
 without any complaints 
  (less strict) and I was suprised to se the CDATA
 statement in the output 
  (pdf-file).
   
  Thank you!
 
 In the context of XML parsing, less strict means
 buggy.
 

Ja, auch mit der *XSL FO*-Parsierung, denke ich. 
Danke für Ihre Meinung!  ;)

Glen


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Problem with CDATA in the input XML-file

2005-03-04 Thread Lars . Hagrot
I am a fop newbee and started using fop a couple of days ago.Everything works fine but I have one problem.1. I have a XML-file where some entity values is marked with CDATA..helpText![CDATA[Some #¤%/()]]/helpText2 I generate PDF-file with the statement below..fo:table-cell fo:block xsl:value-of select="helpText"/ /fo:block/fo:table-cell...3In the PDF-file I expect the text to be like...Some #¤%/())...but I get all the text including the CDATA declaration..![CDATA[Some #¤%/())]]...I hope someone understands what I mean I can give a hint on what to do about it.RegardsLars Hagrot
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Problem with CDATA in the input XML-file

2005-03-04 Thread Andreas L. Delmelle
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

Hi,

 Everything works fine but I have one problem.

 1. I have a XML-file where some entity values is marked with CDATA
 ..
 helpText![CDATA[Some #¤%/()]]/helpText

That needs to be

![CDATA[...]]

(mind the markup! :-) )

Greetz,

Andreas


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]