xml processing instructions in textual content

2012-02-21 Thread Craig Christophersen
I am encountering xml processing instructions in textual content.  Example:
 para text con?Pub Caret?tent here /para

The resulting pdf from using FOP is  text con followed by content from the
next element.  The remainder of the text content following the processing
instruction tent here is left out.

Is this a bug?  Is there something I can configure in FOP config.xml to
handle this?   Processing instructions are allowed in textual content of xml
elements.

Using FOP 1.0, Windows 7, JDK 1.6.0_26

 

 

Craig Christophersen

Software Developer

Synesis7

crai...@synesis7.com

 



Re: xml processing instructions in textual content

2012-02-21 Thread Luis Bernardo


So, are you generating PDF from XML and XSL, or from FO?

For instance, as an example, if I want PDF to show XML content, and I 
start from XML and XSL then I put this in the XML file:


example
![CDATA[
?xml version=1.0 encoding=UTF-8?
fo:root xmlns:fo=http://www.w3.org/1999/XSL/Format;
fo:layout-master-set
fo:simple-page-master margin=2cm
  page-width=21.0cm page-height=29.7cm master-name=A4-portrait
fo:region-body /
/fo:simple-page-master
/fo:layout-master-set
fo:page-sequence master-reference=A4-portrait
fo:flow flow-name=xsl-region-body
fo:blockHello World!/fo:block
/fo:flow
/fo:page-sequence
/fo:root
]]
/example

and something like this in the XSL file:

fo:block
xsl:apply-templates select=example /
/fo:block
xsl:template match=example
fo:block font-size=12pt linefeed-treatment=preserve 
white-space-treatment=preserve white-space-collapse=false 
font-family=monospace

xsl:value-of select=. /
/fo:block
/xsl:template

Then fop -xml example.xml -xsl example.xsl -pdf example.pdf generates a 
PDF with the example you see above inside the ![CDATA[]].


If you are working with FO, then you can use the above example and fop 
-xml example.xml -xsl example.xsl -foout example.fo to see how it should 
look like:


fo:block font-family=monospace white-space-collapse=false 
white-space-treatment=preserve linefeed-treatment=preserve 
font-size=12pt


lt;?xml version=1.0 encoding=UTF-8?gt;
lt;fo:root xmlns:fo=http://www.w3.org/1999/XSL/Formatgt;
lt;fo:layout-master-setgt;
lt;fo:simple-page-master margin=2cm
  page-width=21.0cm page-height=29.7cm 
master-name=A4-portraitgt;

lt;fo:region-body /gt;
lt;/fo:simple-page-mastergt;
lt;/fo:layout-master-setgt;
lt;fo:page-sequence master-reference=A4-portraitgt;
lt;fo:flow flow-name=xsl-region-bodygt;
lt;fo:blockgt;Hello World!lt;/fo:blockgt;
lt;/fo:flowgt;
lt;/fo:page-sequencegt;
lt;/fo:rootgt;

/fo:block


On 2/21/12 11:35 PM, Craig Christophersen wrote:


I am encountering xml processing instructions in textual content.  
Example:  para text con?Pub Caret?tent here /para


The resulting pdf from using FOP is  text con followed by content 
from the next element.  The remainder of the text content following 
the processing instruction tent here is left out.


Is this a bug?  Is there something I can configure in FOP config.xml 
to handle this?   Processing instructions are allowed in textual 
content of xml elements.


Using FOP 1.0, Windows 7, JDK 1.6.0_26

Craig Christophersen

Software Developer

Synesis7

crai...@synesis7.com mailto:crai...@synesis7.com





RE: xml processing instructions in textual content

2012-02-21 Thread Craig Christophersen
From xml and xsl.

Xml simple example:

?xml version=1.0 encoding=UTF-8?

example

  para text con?Pub Caret?tent here /para

/example

 

Xsl from parent template:

fo:block font-size=10pt text-align=left padding-before=1mm
margin-left=1mm margin-right=1mm padding-after=1mm font-weight=bold
orphans=2 widows=2
xsl:call-template name=para

/fo:block

 

Simple xsl para template(para template I do a lot of testing for child
elements of para and do formatting accordingly for each different element
that can appear in the para besides text)

But simply if just text in para element as below :

 

?xml version=1.0 encoding=UTF-8?
xsl:stylesheet version=1.0
xmlns:xsl=http://www.w3.org/1999/XSL/Transform;
xmlns:fo=http://www.w3.org/1999/XSL/Format;
xsl:template name=para   xmlns:fo=http://www.w3.org/1999/XSL/Format;

xsl:value-of select=text()/

/xsl:template

 

 

From: Luis Bernardo [mailto:lmpmberna...@gmail.com] 
Sent: Tuesday, February 21, 2012 5:07 PM
To: fop-users@xmlgraphics.apache.org
Subject: Re: xml processing instructions in textual content

 


So, are you generating PDF from XML and XSL, or from FO?

For instance, as an example, if I want PDF to show XML content, and I start
from XML and XSL then I put this in the XML file:

example
![CDATA[
?xml version=1.0 encoding=UTF-8?
fo:root xmlns:fo= http://www.w3.org/1999/XSL/Format
http://www.w3.org/1999/XSL/Format;
  fo:layout-master-set
fo:simple-page-master margin=2cm
  page-width=21.0cm page-height=29.7cm master-name=A4-portrait
  fo:region-body /
/fo:simple-page-master
  /fo:layout-master-set
  fo:page-sequence master-reference=A4-portrait
fo:flow flow-name=xsl-region-body
  fo:blockHello World!/fo:block
/fo:flow
  /fo:page-sequence
/fo:root
]]
/example

and something like this in the XSL file:

  fo:block
xsl:apply-templates select=example /
  /fo:block
  xsl:template match=example
fo:block font-size=12pt linefeed-treatment=preserve
white-space-treatment=preserve white-space-collapse=false
font-family=monospace
  xsl:value-of select=. /
/fo:block
  /xsl:template

Then fop -xml example.xml -xsl example.xsl -pdf example.pdf generates a PDF
with the example you see above inside the ![CDATA[]].

If you are working with FO, then you can use the above example and fop -xml
example.xml -xsl example.xsl -foout example.fo to see how it should look
like:

fo:block font-family=monospace white-space-collapse=false
white-space-treatment=preserve linefeed-treatment=preserve
font-size=12pt

lt;?xml version=1.0 encoding=UTF-8?gt;
lt;fo:root xmlns:fo= http://www.w3.org/1999/XSL/Format
http://www.w3.org/1999/XSL/Formatgt;
  lt;fo:layout-master-setgt;
lt;fo:simple-page-master margin=2cm
  page-width=21.0cm page-height=29.7cm master-name=A4-portraitgt;
  lt;fo:region-body /gt;
lt;/fo:simple-page-mastergt;
  lt;/fo:layout-master-setgt;
  lt;fo:page-sequence master-reference=A4-portraitgt;
lt;fo:flow flow-name=xsl-region-bodygt;
  lt;fo:blockgt;Hello World!lt;/fo:blockgt;
lt;/fo:flowgt;
  lt;/fo:page-sequencegt;
lt;/fo:rootgt;

 /fo:block


On 2/21/12 11:35 PM, Craig Christophersen wrote: 

I am encountering xml processing instructions in textual content.  Example:
 para text con?Pub Caret?tent here /para

The resulting pdf from using FOP is  text con followed by content from the
next element.  The remainder of the text content following the processing
instruction tent here is left out.

Is this a bug?  Is there something I can configure in FOP config.xml to
handle this?   Processing instructions are allowed in textual content of xml
elements.

Using FOP 1.0, Windows 7, JDK 1.6.0_26

 

 

Craig Christophersen

Software Developer

Synesis7

crai...@synesis7.com

 

 



Re: Erratic behavior of keep-together.within-page=

2012-02-21 Thread Lal Mohanty
Pascal Sancho pascal.sancho at takoma.fr writes:

Thanks Pascal. Great suggestion.
The snippet I included earlier was formatted for better read. In real FO there 
is no LF. I use empty blocks to put line breaks. I am still struggling to 
understand how the  IS there any better way to put a line breaks?
Thanks in advance.



-
To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org
For additional commands, e-mail: fop-users-h...@xmlgraphics.apache.org