<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel about="http://blog.gmane.org/gmane.text.xml.fop.user">
    <title>gmane.text.xml.fop.user</title>
    <link>http://blog.gmane.org/gmane.text.xml.fop.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26734"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26727"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26725"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26719"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26712"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26711"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26699"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26692"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26689"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26684"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26683"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26679"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26675"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26663"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26657"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26654"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26638"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26637"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26627"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.user/26620"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26734">
    <title>Referenced pattern not applied when PDF is encrypted</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26734</link>
    <description>
Hi,

We are using FOP.0.95Beta on XP Pro and Mac OS X 10.5 and have encountered
the following problem when we encrypt our PDF's on both OS's.

We are generating the following SVG and then using FOP to convert this into
a PDF. The PDF is rendered correctly and the referenced pattern applied if
we do not encrypt the PDF. As soon as we encrypt the PDF the pattern is not
applied. In both cases the SVG is identical.

&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"&gt;
&lt;svg xml:space="preserve" height="297mm" width="210mm"&gt;
  &lt;defs&gt;
    &lt;pattern width="1" x="0" height="1" y="0" id="1219915834789"
patternUnits="userSpaceOnUse"&gt;
      &lt;image width="1" x="0" height="1" id="img1" y="0"
xlink:href="file:/tmp/A12/89.png"/&gt;
    &lt;/pattern&gt;
  &lt;/defs&gt;
  &lt;rect fill="url(#1219915834789)" x="1.0in" width="1.0in" height="1.0in"
y="1.0in" stroke="none"/&gt;
&lt;/svg&gt;

The code being used to encrypt the pdf is as follows: 

userAgent.getRende</description>
    <dc:creator>Lea Thurman</dc:creator>
    <dc:date>2008-08-28T09:59:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26727">
    <title>ErrorListener [0.95]</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26727</link>
    <description>
Hi,

Using FOP 0.95 embedded; is there a way to pipe the warnings/info messages
to an ErrorListener?

e.g.

            TransformerFactory factory = TransformerFactory.newInstance();
            ErrorListener listener = new ErrorListener() {

                public void warning(TransformerException exception) throws
TransformerException {
                    System.out.println("[error] " + exception);
                }

                public void error(TransformerException exception) throws
TransformerException {
                    System.out.println("[error] " + exception);
                }

                public void fatalError(TransformerException exception)
throws TransformerException {
                    System.out.println("[error] " + exception);
                }
            };

             factory.setErrorListener(listener);
</description>
    <dc:creator>bonekrusher</dc:creator>
    <dc:date>2008-08-28T16:09:25</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26725">
    <title>JPEG problem - FOP 0.95</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26725</link>
    <description>
Hi there

I am having problems using FOP 0.95 (with JDK 1.4 on Windows) with some
specific JPEGs  from a customer (one of which is attached below)

http://www.nabble.com/file/p19203276/wpv_image2.jpg 

I have a few questions for the FOP community.

1. where can I find out what JPEG formats (colour tables etc) are supported
(the help only states - unusual color lookup tables and color
profiles............etc)
so that I can inform my users what is possible and not.

2. Can anyone tell me from the image attached - what is wrong with it, how
has it been saved/compressed etc such that it no longer works with FOP
(saving it with other programs or formats seems to solve the problem)

3. does anyone know, if this format is determinable, when/if it will be
supported, or who I can resolve this issue.

Thanks

Ashley
</description>
    <dc:creator>SwissUser</dc:creator>
    <dc:date>2008-08-28T15:41:07</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26719">
    <title>left and right padding lost on fo:inline in table header when repeated beyond one page</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26719</link>
    <description>
Hi All,
   I've encountered a bit of a bizzare problem with a brochure design
project I'm working on... My table of contents is presented within a table
structure with four columns at the right hand side to contain ticks
indicating certain features of the products on offer (training courses in
this case). In order to title these very narrow columns, I have opted to
write their labels horizontally along rows and use cell colours to create
the effect of the label turning 90 degrees down to the column.

An example of this output is here:
http://www.nabble.com/file/p19182765/Table1.png 

I have first specified six &lt;fo:table-column&gt; elements and applied the four
different shades of blue as 'background-color- to the last four columns.
To achieve my sideways labels, the top one "Mandatory(H&amp;S)" is a &lt;table-row&gt;
containing a &lt;table-cell number-columns-spanned="6" text-align="right"&gt; then
an &lt;fo:block&gt;&lt;fo:inline background-color="blue"
padding="2pt"&gt;TEXT&lt;/fo:inline&gt;&lt;/fo:block&gt;
The next &lt;table-row&gt; has a cell which s</description>
    <dc:creator>JonathanHeard</dc:creator>
    <dc:date>2008-08-27T14:55:06</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26712">
    <title>keep-together problem</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26712</link>
    <description>Hi!

 

I know that there were some questions about the keep-together problem,
but those didn't answer my question. Maybe I misunderstood something...

 

The problem:

I have a table which contains some block elements, at least two. I want
the table and its elements to stay together when the content does not
fit on the rest of the page, the table should be wrapped to the next
page then. That seems to work if I use the keep-together="always"
attribute on the table. But if the content of the table is longer than
one page it will not be wrapped to the next page - instead the text is
clipped. 

 

How can I avoid this? 

 

I also tried to use the keep-with-next="always" attributes on the table
rows. This solves the clipping problem but the table starts at one page
and continues at the next page. What I want is that the table starts on
a new page if it doesn't fit on the previous one.

 

Hope you understand what I mean.

 

Regards,

Jacqueline.

 

 

</description>
    <dc:creator>Preuss, Jacqueline - ENCOWAY</dc:creator>
    <dc:date>2008-08-27T06:36:01</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26711">
    <title>FOP 0.95: Code lines that no longer wrap</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26711</link>
    <description>
Howdy!
I'm upgrading to FOP 0.95 from 0.20.5 and from 1.70.1 to 1.74 for the
DocBook stylesheets. 

I’ve noticed that in my PDF output, *some* (but not all) of the long code
lines (inside a DocBook &lt;programlisting&gt; tag) that have NO spaces in them no
longer wrap and just keep going off the page. With the old FOP and
stylesheets, all the long lines in &lt;programlistings&gt; wrapped, just not
necessarily in a spot that made any sense. Now, just some of the lines don’t
wrap. Or a small amount of the text wraps onto a second line, but then
there’s a third line that just keeps going off the page (strange?). We don’t
want to manually break the lines, because we want them to be unbroken in our
HTML output (so folks can copy/paste the code and have it work). 

I’m using FOP 0.95, Saxon 6.5.5, and Xerces 2.8.0. I'm assuming the DocBook
hyphenate.verbatim is not supported by FOP yet. I've tried digging through
Bugzilla to find FOP bugs related to this, but I can't tell if the ones that
are open and related to wr</description>
    <dc:creator>Cheri Dennison</dc:creator>
    <dc:date>2008-08-27T03:09:08</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26699">
    <title>Print Italics over an Image</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26699</link>
    <description>Friends,
FOP-0.95
I have a background image  - no problem
I print text over the image   -no problem

I print some text in "italics" over the image  -PROBLEM - the image
behind the italics does not come through.  Therefore, the space around
each italic character is
all white.

How can I resolve this?

HERE IS MY CODE:

&lt;xsl:when test="./vouc-type='TR' or ./vouc-type='DR' or
./vouc-type='CC'"&gt;
      &lt;xsl:attribute
name="white-space-treatment"&gt;preserve&lt;/xsl:attribute&gt;
    &lt;fo:block font-style="italic"  start-indent=".2in"
line-height=".14in" &gt;
        &lt;xsl:value-of select="vouc-charge-date"/&gt;
      &lt;/fo:block&gt;
&lt;/xsl:when&gt;





Jeff 
</description>
    <dc:creator>Steffanina, Jeff</dc:creator>
    <dc:date>2008-08-26T16:44:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26692">
    <title>License question (remove javadocs and examples)</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26692</link>
    <description>
Hello everybod !

Although this is probably not the right place to ask these things, I hope to
get at least the correct contact person(s) or address(es) named if nobody
can help.
Alright, my question concerns the Apache License 2.0 that comes with the
latest FOP (0.95). The company I am working for uses the FO processor to
automate offer generation and always includes the full FOP package (which
means all files present in the binary ZIP archive) in the CDs supplied to
customers. As it contains more than 10,000 files of documentation (folders
"docs" and "javadocs") and examples, CD setup takes quite some time because
of the slow seek speed of CD drives compared to hard disks.
Hence, dropping these "unneccessary" files (they are at least unneccessary
for their customers) would dramatically improve setup performance. As I
don't want to violate any license, I kindly ask for your feedback, if it is
conform to the Apache License to remove (one or all) the following
directories from the binary archive prior to red</description>
    <dc:creator>FNW</dc:creator>
    <dc:date>2008-08-26T13:36:44</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26689">
    <title>Issue with LineFeed  &amp;#x0A</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26689</link>
    <description>Friends,
Issue: When the first column in the table row contains 'TH', I want to
do a LINE FEED   before  the remainder of the table row is printed.  The
other components in the "choose" are working perfectly.    In general, I
am having problems forcing a line feed at various point in my style
sheet.  I would appreciate any hints.

&lt;xsl:choose&gt;
&lt;xsl:when test="./vouc-type='TR' or ./vouc-type='DR' or
./vouc-type='CC'"&gt;
      &lt;xsl:attribute
name="white-space-treatment"&gt;preserve&lt;/xsl:attribute&gt;
    &lt;fo:block font-style="italic"  line-height=".14in" &gt;
        &lt;xsl:text&gt;     &lt;/xsl:text&gt;&lt;xsl:value-of
select="vouc-charge-date"/&gt;
      &lt;/fo:block&gt;
&lt;/xsl:when&gt;

&lt;xsl:when test="./vouc-type='TH'"&gt;
        &lt;xsl:attribute
name="white-space-treatment"&gt;preserve&lt;/xsl:attribute&gt;
  &lt;fo:block &gt;
        &lt;xsl:text&gt;&amp;#x0A;&lt;/xsl:text&gt;
  &lt;/fo:block&gt;
&lt;/xsl:when&gt;

&lt;xsl:otherwise&gt;
        &lt;xsl:attribute
name="white-space-treatment"&gt;preserve&lt;/xsl:attribute&gt;
        &lt;xsl:value-of select="vouc-charge-date"/&gt;
&lt;/xsl:otherwise&gt;
&lt;/xsl:choose&gt;
</description>
    <dc:creator>Steffanina, Jeff</dc:creator>
    <dc:date>2008-08-26T12:05:50</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26684">
    <title>XSL caching question</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26684</link>
    <description>In FOP 0.95, I'm using the basic caching method to cache my XSL
transformation file, not doing anything fancy with file system monitors or
anything for the time being.  The first time I run FOP on the server to
generate a pdf, it takes 10-20 seconds to generate the pdf because it's
loading up the XSL file for the first run.  Afterwards it runs in the
neighborhood of 500ms per PDF.  I was just wondering if there is a way to
force the XSL to fully cache statically?

This isn't a huge issue as we don't restart our servers all that often but
it's just a little thing that's bugging me J

Thanks,

___________________________________________________
Brian Trezise
Staff Software Engineer
IntelliData, Inc
22288 E Princeton Dr
aurora, colorado 80018
T: 720.524.4864
brian.trezise&lt; at &gt;intellidata.net

 

</description>
    <dc:creator>Brian Trezise</dc:creator>
    <dc:date>2008-08-25T20:41:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26683">
    <title>I need fo:retrieve-table-marker example or how to implement continued label in FOP-95?</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26683</link>
    <description>
Hi, I am new to FOP and I need to convert FOP-20 to FOP-95. In FOP-20 we used
fox:extension continued label for the table header. So if it's 1st page -
table header prints "Subject". All next pages will have the same table
header with "Subject cont." printed. How can I do it with latest FOP? Thank
you for your help.
</description>
    <dc:creator>gennady</dc:creator>
    <dc:date>2008-08-25T19:49:46</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26679">
    <title>0.95 - Printing a string and aligning the decimal points</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26679</link>
    <description>Friends,


Existing Code in my XML file (the decimal points are aligned when using
Courier font):

&lt;euro-tax-msg5&gt;Quebec Native Seal Tax
15.42&lt;/euro-tax-msg5&gt;
&lt;euro-tax-msg6&gt;BIG UPPER CASE TAX INO
439.59&lt;/euro-tax-msg6&gt;

--------------------------
My XSL that prints (using Arial font):

&lt;fo:block white-space-collapse="false" linefeed-treatment="preserve"
text-align="start" &gt;
                 &lt;xsl:text&gt;&amp;#x0A;&lt;/xsl:text&gt;
                &lt;xsl:value-of select="./euro-tax-msg5"/&gt;
               &lt;xsl:text&gt;&amp;#x0A;&lt;/xsl:text&gt;
                &lt;xsl:value-of select="./euro-tax-msg6"/&gt;
                &lt;xsl:text&gt;&amp;#x0A;&lt;/xsl:text&gt;
        &lt;/fo:block&gt;
-----------------------------
My Result:
    Thelkj lk laksjf lkasjd flkajs flkj    15.42
    Wakadf wlkej salksdjf HHHH         349.54


Without creating a table, is there a way to get the text to align left
and the digits to align right?

I thank you for any suggestions.


Jeff 
</description>
    <dc:creator>Steffanina, Jeff</dc:creator>
    <dc:date>2008-08-25T17:07:05</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26675">
    <title>FOP 0.93 vs 0.94 vs 0.95</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26675</link>
    <description>Hello

I have an FO file and I want to use it to generate a PDF File.

When I use FOP 0.93 by command line, everything works fine. A PDF file is
generated correctly. This PDF file contains a table, text and 3 checkboxes.
When I use FOP 0.93 using Java API, the PDF is generated, no error is
generated but the checkboxes are not generated. They simply does not appear.

With FOP 0.94 using Java API, the result is the same.

With FOP 0.95, using Java API, the PDF is not generated. The following error
is displayed:

Exception in thread "Thread-3" org.eclipse.swt.SWTException: Failed to
execute runnable (java.lang.StackOverflowError)
    at org.eclipse.swt.SWT.error(SWT.java:3374)
    at org.eclipse.swt.SWT.error(SWT.java:3297)
    at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:178)
    at org.eclipse.swt.widgets.Display.syncExec(Display.java:3763)
    at
composite.NouvelleLettreStructuree$6$1$1.run(NouvelleLettreStructuree.java:646)
    at java.lang.Thread.run(Unknown Source)
Caused by: java.la</description>
    <dc:creator>Paulo Carvalho</dc:creator>
    <dc:date>2008-08-25T10:51:38</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26663">
    <title>0.95 Hyphenation question</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26663</link>
    <description>
Hi,

With the following input I get a strange output:

INPUT:

&lt;fo:table-cell&gt;
&lt;fo:block font-family="Courier New" font-size="10pt"
hyphenate="true" language="en"&gt;
&lt;fo:inline font-family="Courier New" font-size="10pt"&gt;
&lt;fo:basic-link
internal-destination="mproc-d0e4"&gt;(M) &lt;/fo:basic-link&gt;May be inoperative
provided the Pack Control Valve is may be closed&lt;/fo:inline&gt;
&lt;/fo:block&gt;
&lt;/fo:table-cell&gt;

OUTPUT:
(M) May be inoperative provided the Pack Control Valve is may-
be closed

Notice how the hyphenation will hyphenate a space rather than a word. Is
this normal? I didnt have this issue in 0.20.5.

Thanks,
</description>
    <dc:creator>Vallone, Philip Mr CTR USA AMC</dc:creator>
    <dc:date>2008-08-21T15:09:43</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26657">
    <title>Fop-0.95: NPE when having an empty &lt;fo:inline&gt;-element with hyphenation turned on</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26657</link>
    <description>Hi all,

I get a NullPointerException (see end of message) when transforming the following file with fop-0.95. (fop-0.94 can handle this).
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"&gt;
    &lt;fo:layout-master-set&gt;
        &lt;fo:simple-page-master master-name="LetterPage" page-width="6in" 
                                  page-height="3in"&gt;
            &lt;fo:region-body region-name="PageBody" margin="0.7in" 
                               background-color="rgb(245,245,245)"/&gt;
        &lt;/fo:simple-page-master&gt;
    &lt;/fo:layout-master-set&gt;
    &lt;fo:page-sequence master-reference="LetterPage" hyphenate="true"&gt;
        &lt;fo:flow flow-name="PageBody"&gt;
            &lt;fo:block font="12pt Arial"&gt;
                &lt;!-- the following line causes a NullPointerException, if hyphenate is true --&gt;
                &lt;fo:inline id="document.general.efficiently.dictionary"/&gt;
                &lt;!-- the following line is working fine --&gt;
                Some &lt;fo:inline font-weight="bold" color="r</description>
    <dc:creator>Marco</dc:creator>
    <dc:date>2008-08-21T13:09:04</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26654">
    <title>0.95 Table-cell not wrapping.</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26654</link>
    <description>
Hi,

I am upgrading a stylesheet from 0.20.5 to .95 and having some trouble with
a cell not wrapping text. Here is my fo:

&lt;fo:table-cell wrap-option="wrap"   padding-left="5px" padding-top="5px"
padding-right="5px" border-top-style="solid" border-top-width="1pt"
border-bottom-style="solid" border-bottom-width="1pt"
border-start-style="solid" border-start-width="1pt" border-end-style="solid"
border-end-width="1pt"&gt;
&lt;fo:block space-after.optimum="8pt" font-size="10pt" hyphenate="true" 
wrap-option="wrap" language="en" overflow="hidden"&gt;This is some really long
text that runs into the next cell.&lt;/fo:block&gt;
&lt;/fo:table-cell&gt;

I also tried hyphenation. I downloaded the fop-hyph.jar and placed in my
/lib folder. I set my block attributes to hyphenate="true" 
wrap-option="wrap" language="en" - but no luck.

What am I missing?

Thanks,

</description>
    <dc:creator>Bones</dc:creator>
    <dc:date>2008-08-21T11:44:43</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26638">
    <title>FOP 0.94: keep-with-next.within-page, keep-together notworking ?</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26638</link>
    <description>I am using fop 0.94 under Linux and I have a problem to keep on a same page a
table —&gt; I would like that when a table doesn't fit in a page, it goes on the
next page witout cutting the table.
 
I use the following:
 
 &lt;xsl:template match="table2"&gt;
  &lt;fo:table table-layout="fixed" width="100%"&gt;
   &lt;fo:table-column column-number="1" column-width="2.2cm"/&gt;
   &lt;fo:table-column column-number="2" column-width="1.6cm"/
   &lt;fo:table-body&gt;
    &lt;xsl:apply-templates/&gt;
   &lt;/fo:table-body&gt;
  &lt;/fo:table&gt;
 &lt;/xsl:template&gt;
 
 &lt;xsl:template match="subject2"&gt;
  &lt;fo:table-row&gt;
   &lt;fo:table-cell column-number="1"
number-columns-spanned="2"&gt;&lt;fo:block&gt;&lt;xsl:value-of
select="."/&gt;&amp;#160;&lt;/fo:block&gt;&lt;/fo:table-cell&gt;
  &lt;/fo:table-row&gt;
 &lt;/xsl:template&gt;
  
 &lt;xsl:template match="tetiere2"&gt;
  &lt;fo:table-row  keep-with-previous.within-page="always" keep-together="always"
background-color="#D3D3D3"&gt;
    &lt;fo:table-cell column-number="1"&gt;&lt;fo:block&gt;&lt;xsl:value-of
select="classif1"/&gt;&lt;/fo:block&gt;&lt;/fo:table-cell&gt;
    &lt;fo:table-cell column-number="2"</description>
    <dc:creator>Christophe Vittorelli</dc:creator>
    <dc:date>2008-08-21T07:00:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26637">
    <title>Suggested Additions to FOP code</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26637</link>
    <description>Friends,
I suggest that the following classes be enhanced:

FOUserAgent.java (org.apache.fop.cli.)
  private String subject
  &gt;set and getter methods

PDFRenderer.java (org.apache.fop.render.pdf)
  added line to method: startRenderer
  Line: this.pdfDoc.getInfo().setSubject(userAgent.getSubject());

I was able to get dc:description in my XMP metadata as a result of this simple change.

Sincerely,
Mike Ferrando
Washington, DC
</description>
    <dc:creator>Mike Ferrando</dc:creator>
    <dc:date>2008-08-21T04:27:55</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26627">
    <title>Hyphenation: 0.93 to 0.95</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26627</link>
    <description>Hi, folks:

I'm having an issue in upgrading from 0.93 to 0.95--hyphenation appears 
to be failing when I get to the renderer.

The attached PDFs were both created from the FO file, one in 0.93 and 
one in 0.95.  As you can see, the 0.95 version doesn't break the text 
inside the table cells properly.

Any ideas?

</description>
    <dc:creator>arnold m. slotnik</dc:creator>
    <dc:date>2008-08-20T19:41:11</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26620">
    <title>Experiencing a change in table/page breaking behavior from 0.94 to 0.95</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26620</link>
    <description>I'm testing 0.95 to see if I can upgrade my software from FOP 0.94.
Everything looked good except for the following situation:

I'm using keep-with-next on fo:table-rows to ensure that the FOP engine
tries to keep a table on a single page if at all possible.  In 0.95, I'm
getting a weird situation where the engine really wants to break the
table INSIDE the first row.  The only things that jumped out at me as
being different than the other rows of the table: fo:table-cells having
2 fo:blocks rather than 1, the first fo:block in the first fo:table-row
is causing the engine to do automatic line breaking to wrap the contents
within the fo:table-cell.

I've attached a distilled example .fo file along with the PDFs I get
from 0.94 and 0.95.  Any ideas on making my FO code compliant with 0.95
while still producing the results I see in 0.94 would be much
appreciated.


Matthew Zaleski
---------------------------------------------------------------------
To unsubscribe, e-mail: fop-users-unsubscribe&lt; at &gt;xmlgraphics.apach</description>
    <dc:creator>Zaleski, Matthew (M.E.</dc:creator>
    <dc:date>2008-08-20T15:50:34</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.user/26619">
    <title>Problems with Apache FOP and Barcode4j</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.user/26619</link>
    <description>
Hi folks,

I'm upgrading my FOP version from 0.20 up to 0.95 and I'm getting two
problems.

The first one, and most important, is that I can't generate barcodes with
Apache FOP and Barcode4j projects. I don't know why but I'm getting this
error:
javax.xml.transform.TransformerException: org.xml.sax.SAXException:
Mismatch: page-sequence (http://www.w3.org/1999/XSL/Format) vs. root
(http://www.w3.org/1999/XSL/Format)

I know that this error uses to be a follow-up error but I have no more
detail and I'm lost since I have reached a strange situation.

I have the following code on my xslt.
- Definition:
&lt;xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:fo="http://www.w3.org/1999/XSL/Format"
                xmlns:barcode="org.krysalis.barcode4j.xalan.BarcodeExt"
                xmlns:svg="http://www.w3.org/2000/svg"
                extension-element-prefixes="barcode"&gt;
- Template:
&lt;xsl:template match="texto[&lt; at &gt;class='CODIGO_BARRAS']"&gt;
        &lt;fo:block&gt;
          </description>
    <dc:creator>Miguel Tablado</dc:creator>
    <dc:date>2008-08-20T14:56:59</dc:date>
  </item>
  <textinput about="http://search.gmane.org/?group=$group=gmane.text.xml.fop.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.text.xml.fop.user</link>
  </textinput>
</rdf:RDF>
