<?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.devel">
    <title>gmane.text.xml.fop.devel</title>
    <link>http://blog.gmane.org/gmane.text.xml.fop.devel</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.devel/21859"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21858"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21857"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21851"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21848"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21847"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21843"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21842"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21839"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21838"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21836"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21835"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21830"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21829"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21826"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21825"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21819"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21818"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21817"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.xml.fop.devel/21807"/>
      </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.devel/21859">
    <title>Layouts tree pruning for the prototype</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21859</link>
    <description>Hi Vincent,

I wrote a new patch that implements a kind of ?-fit algorithm at page- 
level. Let N be the page number for the last page layout obtained and  
X a variable representing the depth of the layout tree I want to keep:  
each time N gets increased (and its value is greater than X) I perform  
a pruning of the layout tree choosing as new root the best layout for  
the page with index N-X. Here is an example: the two graphs below  
represents the trees of possible page layouts, in the first tree we  
have N=4. If X was set to 3, it's time to prune the tree by choosing  
the best subtree with a page-1 layout as root. In the example I  
suppose that 1a has lower demerits than 1b, so I prune the tree from  
1a. Alternatively I can choose the page-1 layout that has the best  
leaf as child (actually not implemented).

       ____0____
      /         \
    *1a*         1b
    /  \         |
   /    \        |
  2a     2b      2c
/  \   /  \    /  \
3a  3b 3c  3d  3e  3f
|
4a

     1a
    /  \
   /    \
  2a     2b
/  \   /  \
3a  3b 3c  3d
|
4a

The X value determine the trade off between good aesthetic results and  
time/memory performance: an high value should obtain results similar  
to total-fit, a low value, say 1, should obtain the fastest performance.

This approach would allow to finalize (create the areas, render) the  
page that has been chosen as new root and, if possible, to free memory  
that is no more necessary (also FO-tree object and relative LM). This  
possibility apart, it seems to me that in general the new prototype  
can benefit from this approach.

The implementation adds a low overhead in terms of memory and  
computation that is largely countervailed by the effect of pruning.  
Each LM has a new pointer (prevPage, pointing to the previous page  
layout in the path to the root) and the pageLM has three int for  
determining the time of pruning (N-X). The PageLM updates this  
integers each time a completedPart() is called. After calling the  
completedPart a LM ask the PageLM if it's time to prune; if so it  
performs the following operation on each active layout (AL):

  * extract the N-X page by walking down the prevPage links (only X  
step, not all layouts in this branch);
  * if it is the best page layout found until now, create a new  
ActiveLayouts object (eventually replacing the old one) and add to it  
the AL;
  * if it is the same best page layout, simply add the AL to the  
ActiveLayouts object previously created;
  * otherwise do nothing, this AL will be discarded.

Finally the new ActiveLayouts will replace the previous layout tree.


Comments are very welcome.
Dario






</description>
    <dc:creator>Dario Laera</dc:creator>
    <dc:date>2008-10-09T14:29:31</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21858">
    <title>DO NOT REPLY [Bug 45971] New: Fop CLI Errors (Patch to Correct Included)</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21858</link>
    <description>https://issues.apache.org/bugzilla/show_bug.cgi?id=45971

           Summary: Fop CLI Errors (Patch to Correct Included)
           Product: Fop
           Version: all
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: general
        AssignedTo: fop-dev&lt; at &gt;xmlgraphics.apache.org
        ReportedBy: tom.browder&lt; at &gt;gmail.com
                CC: tom.browder&lt; at &gt;gmail.com


Created an attachment (id=22699)
 --&gt; (https://issues.apache.org/bugzilla/attachment.cgi?id=22699)
Patch to correct the bugs.

The following problems are associated with the command line interface (CLI) to
Fop:

1.  Running 'fop' with no arguments throws an exception after printing
a usage statement.

2.  Running 'fop -v' throws an exception after printing the version.

3.  Current usage and help messages refer to 'Fop' while the user
executes 'fop'.

The attached patch was generated by running 'svn diff' at the top of
the working directory of a checked-out fop trunk at revision 702651.

It affects the following files:

 src/java/org/apache/fop/cli/CommandLineOptions.java
 src/java/org/apache/fop/cli/Main.java

It corrects all three issues listed above.


</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2008-10-09T01:05:17</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21857">
    <title>[PATCH] Freeing area tree memory</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21857</link>
    <description>Hi all,

I wrote a patch that fixes a memory leak making FOP freeing areaTree  
memory after rendering (or caching) a page within a page-sequence  
processing: with this patch since the first page areaTree has been  
completed, the memory consumption is almost constant until the end of  
the page-sequence. With some more lines of code that frees  
ChildContext and some peripherals LM the amount of memory used even  
decreases.
I didn't get any error in the test I run, I ask the list if this patch  
do have side effects I didn't catch. In particular, it seems to me  
that the changes in BlockLM and LineLM are the more unsafe.

Dario

</description>
    <dc:creator>Dario Laera</dc:creator>
    <dc:date>2008-10-08T16:24:55</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21851">
    <title>DO NOT REPLY [Bug 45956] New: leader-pattern="rule" not rendered in pcl</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21851</link>
    <description>https://issues.apache.org/bugzilla/show_bug.cgi?id=45956

           Summary: leader-pattern="rule" not rendered in pcl
           Product: Fop
           Version: 0.95
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: pcl
        AssignedTo: fop-dev&lt; at &gt;xmlgraphics.apache.org
        ReportedBy: dgerdt&lt; at &gt;bju.edu


Created an attachment (id=22675)
 --&gt; (https://issues.apache.org/bugzilla/attachment.cgi?id=22675)
simple leader with leader-pattern="rule"

I use leaders in some places as horizontal rules to separate sections of a
document. I recently realized that they are not getting drawn in my PCL output.
They appear correctly in PDFs, but not in PCL.

The space for the leader is consumed, but the line is not drawn. Attached is a
file that demonstrates the problem.

Problem appears in 0.95 and trunk (rev 699739).


</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2008-10-06T18:11:41</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21848">
    <title>DO NOT REPLY [Bug 45954] New: The properties 'top', 'right', 'bottom', and 'left', incorrectly refer to offsets with respect to a box's content edge</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21848</link>
    <description>https://issues.apache.org/bugzilla/show_bug.cgi?id=45954

           Summary: The properties 'top', 'right', 'bottom', and 'left',
                    incorrectly refer to offsets with respect to a box's
                    content edge
           Product: Fop
           Version: 0.95
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: page-master/layout
        AssignedTo: fop-dev&lt; at &gt;xmlgraphics.apache.org
        ReportedBy: bo&lt; at &gt;kase.se
                CC: bo&lt; at &gt;kase.se


The example code below produces output that seems not to comply with the
updated definition att
http://www.w3.org/Style/css2-updates/REC-CSS2-19980512-errata.html#x12

This behaviour has changed since 0.94 for "top", but not for "left".

&lt;fo:flow flow-name="xsl-region-body"&gt;
&lt;fo:block-container border="solid black 1pt"&gt;
&lt;fo:block-container top="60mm" left="60mm" absolute-position="absolute"
border="solid red 50mm"&gt;
&lt;fo:block&gt;
&lt;fo:inline&gt;TEST&lt;/fo:inline&gt;
&lt;/fo:block&gt;
&lt;/fo:block-container&gt;
&lt;/fo:block-container&gt;
&lt;/fo:flow&gt;


</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2008-10-06T12:40:16</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21847">
    <title>Bug report for Fop [2008/10/05]</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21847</link>
    <description>+---------------------------------------------------------------------------+
| Bugzilla Bug ID                                                           |
|     +---------------------------------------------------------------------+
|     | Status: UNC=Unconfirmed NEW=New         ASS=Assigned                |
|     |         OPN=Reopened    VER=Verified    (Skipped Closed/Resolved)   |
|     |   +-----------------------------------------------------------------+
|     |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
|     |   |           MIN=Minor   NOR=Normal    ENH=Enhancement TRV=Trivial |
|     |   |   +-------------------------------------------------------------+
|     |   |   | Date Posted                                                 |
|     |   |   |          +--------------------------------------------------+
|     |   |   |          | Description                                      |
|     |   |   |          |                                                  |
| 1063|New|Nor|2001-03-21|fop does not handle large fo files                |
| 3280|New|Nor|2001-08-27|PCL Renderer doesn't work                         |
| 3824|New|Blk|2001-09-25|MIF option with tables                            |
| 4030|New|Nor|2001-10-08|IOException creating Postscript with graphics on S|
| 4535|New|Maj|2001-10-31|PCL renderer 1.13 not rendering SVG               |
| 5010|New|Enh|2001-11-21|Better error reporting needed                     |
| 5124|New|Maj|2001-11-27|fo:block-container is not rendered properly using |
| 6305|New|Nor|2002-02-07|Using fo:table-and-caption results in empty output|
| 6427|New|Enh|2002-02-13|Adding additional Type 1 fonts problem            |
| 6997|New|Nor|2002-03-09|[PATCH] Row-spanned row data breaks over a page wi|
| 7241|New|Nor|2002-03-19|keep-with-previous, keep-with-next only working on|
| 8003|Ass|Maj|2002-04-12|FopImageFactory never releases cached images      |
| 8463|New|Nor|2002-04-24|SVG clipping in external.fo example doc when rende|
| 8767|Ass|Min|2002-05-03|Image and solid colour background rectangle sizes |
| 9379|New|Nor|2002-05-24|MIF Renderer generates incorrect MIF code         |
|10379|New|Enh|2002-07-01|Improvement to FOP Classloader                    |
|12494|New|Nor|2002-09-10|fop produces pdf file which Acrobat Reader refuses|
|12610|New|Enh|2002-09-13|[PATCH] onLoad Action for PDF documents or how to |
|13586|New|Blk|2002-10-13|fop will not work on linux alpha because jre is br|
|13734|New|Nor|2002-10-17|Hyphenation does not work correctly on long string|
|14248|New|Enh|2002-11-05|51-page FO example, could be added to the samples |
|14352|New|Enh|2002-11-07|It would be nice if FOP could be plugged into popu|
|14356|New|Nor|2002-11-07|*NOT* embedding TrueTypeFont in PDF causes Acrobat|
|14419|New|Enh|2002-11-10|Implement SourceResolver, Image Resolver          |
|14529|New|Nor|2002-11-13|SVG url references do not work                    |
|14679|New|Enh|2002-11-19|Pluggable renderers                               |
|14924|New|Nor|2002-11-28|Table disappears when it ends when the page ends  |
|15020|New|Enh|2002-12-03|Reuse of fo-tree                                  |
|16017|Opn|Nor|2003-01-13|Jpeg's and the PDF Serializer                     |
|16130|New|Nor|2003-01-15|PS-Renderer emits lots of redundant moveto's      |
|16156|New|Nor|2003-01-16|0.20.5rc SVG example does not work                |
|16713|New|Nor|2003-02-03|Hyphenation error in tables                       |
|17369|New|Nor|2003-02-25|Footnote duplication                              |
|17380|New|Nor|2003-02-25|Batik Component will not recognize feXXXX SVG elem|
|17921|New|Nor|2003-03-12|Kerning is broken for standard fonts              |
|18292|New|Nor|2003-03-24|24 bit PNG not displayed correctly                |
|18801|New|Nor|2003-04-08|"visibility" property is not implemented          |
|19228|New|Blk|2003-04-22|[PATCH] Child LayoutContext is null in certain cir|
|19341|Ver|Nor|2003-04-26|leader doesn't work since 0.20.5.rc2              |
|19695|New|Enh|2003-05-06|[PATCH] Allow fox:destination as child of fox:outl|
|19717|New|Enh|2003-05-07|Lets add support for JimiClassesPro.zip to build.x|
|19769|Ass|Enh|2003-05-08|Indefinite page size is not implemented           |
|20280|Ass|Enh|2003-05-27|text-align and text-align-last only partially impl|
|20407|New|Enh|2003-06-02|[PATCH] Configure image caching using the configur|
|20827|New|Enh|2003-06-17|Derive other font styles and weights from normal T|
|21265|Opn|Nor|2003-07-02|referencing a custom font (TTF or Adobe Type 1) fo|
|21905|New|Nor|2003-07-26|large list-item-label bleeds into following block |
|21982|New|Maj|2003-07-30|NullPointer Exception in LazyFont with embedded fo|
|22450|New|Maj|2003-08-15|Unterminated iteration in JPEGReader class        |
|22627|Opn|Nor|2003-08-21|Update mirror/download page HEADER &amp; README (was [|
|24148|New|Nor|2003-10-27|Kerning upsets text-align="end"                   |
|24171|New|Nor|2003-10-28|[PATCH] 1st Attempt at Whole Site PDF             |
|24378|New|Nor|2003-11-04|Minor problem in sample code for embedding        |
|24663|New|Nor|2003-11-12|fo:block space-after property needs fixing        |
|24804|New|Nor|2003-11-18|SVG Text to PS Output generates incorrect outlines|
|25022|New|Nor|2003-11-26|XSL-FO to PCL : images not included               |
|25341|New|Nor|2003-12-08|percentage resolution not being recalculated on di|
|25411|New|Nor|2003-12-10|[WARNING] Error while constructing image from XML |
|25432|Ass|Maj|2003-12-11|Cannot embed the User Defined Characters into the |
|26047|New|Nor|2004-01-11|Space-after value remembered and used on second do|
|26590|New|Nor|2004-02-02|last character width in winansi font is missed    |
|26848|New|Nor|2004-02-11|PNG images using JIMI instead JAI                 |
|27107|New|Maj|2004-02-20|TTF Reader fails                                  |
|27727|New|Maj|2004-03-17|problem displaying Japanese fonts in PDF.         |
|27890|New|Min|2004-03-24|fop.sh doesn't set exit status                    |
|29632|New|Maj|2004-06-17|Rendered reads fonts from disk everytime it render|
|30006|New|Nor|2004-07-09|eps doesn't show up in recent GhostScript versions|
|30214|New|Nor|2004-07-20|PSGraphics2D.drawImage incorrect matrix generated |
|31039|New|Nor|2004-09-03|URL in basic-link is scrambled by encryption      |
|31225|New|Nor|2004-09-14|Need embedded page sequence functionality         |
|31301|New|Nor|2004-09-19|FOP limitation-Summary of columns value at Table F|
|31674|New|Enh|2004-10-12|Allow Print Renderer to select Printer and Tray.  |
|31796|New|Cri|2004-10-20|Fop: Pdf generation dowsn`t work with j2sdk 1.5   |
|32054|New|Enh|2004-11-04|Pluggable area creation: AreaFactory              |
|32100|Ass|Enh|2004-11-07|FOP "Starter Documents"                           |
|32107|New|Cri|2004-11-07|Move FOP wiki to secure                           |
|32201|Opn|Enh|2004-11-12|please, provide a manpage                         |
|32789|New|Cri|2004-12-21|Arabic words are broken for rendering PDF from FOP|
|32970|New|Cri|2005-01-06|Sticking words in generated PDF document          |
|33174|New|Nor|2005-01-20|An unrecognized token'NaN' was found when opening |
|34355|New|Cri|2005-04-07|BufferOverflowException when running SVG2PDF on hu|
|35184|New|Trv|2005-06-02|Error while loading image http://xxx.xx.x/yyyy.tif|
|35500|New|Nor|2005-06-24|Missing .close() call on stream opened for JPEG im|
|35939|New|Nor|2005-07-30|[PATCH] Port of 0.20.5 Driver.java class          |
|35948|New|Enh|2005-07-31|pre-patch for FOrayFont adaptation to Fop         |
|36000|Ver|Maj|2005-08-03|PDF page margins larger, different than PS renderi|
|36011|New|Nor|2005-08-04|Setting word-spacing on justified blocks removes j|
|36238|Ass|Nor|2005-08-18|text-align="justify" doesn't work on custom fonts |
|36395|New|Nor|2005-08-27|Common Border and Background Properties not suppor|
|36408|Opn|Min|2005-08-29|FOP hyphenation splits consecutive digits onto sep|
|36533|Opn|Nor|2005-09-07|Incorrect ipd and twsadjust settings              |
|36935|New|Blk|2005-10-05|table-layout="fixed" and width="auto", but auto-la|
|36977|New|Nor|2005-10-09|[PATCH]TextLayoutManager CJK line break           |
|37108|New|Nor|2005-10-16|Patch for 0.20.5 to work with jdk1.5              |
|37114|New|Min|2005-10-17|No error message on illegal/unknown values on a pr|
|37116|New|Enh|2005-10-17|ESC POS Renderer                                  |
|37136|Opn|Nor|2005-10-18|external-graphic dimensions and rendering         |
|37236|Ass|Nor|2005-10-25|[PATCH] Fix gradients and patterns                |
|37305|Ass|Nor|2005-10-30|Added deviceDPI to PDFDocumentGraphics2D          |
|37505|New|Cri|2005-11-15|SEVERE FOP Exceptions should be thrown!           |
|37579|Ass|Nor|2005-11-21|footnotes within tables and listsl get lost       |
|38121|New|Nor|2006-01-04|border-separation disturbs table layout           |
|38244|New|Nor|2006-01-12|table-column and number-columns-spanned (prepatch)|
|38264|Ass|Nor|2006-01-13|Hyphenation does not play well with preserved line|
|38639|Inf|Maj|2006-02-14|PDF not opening                                   |
|38821|Opn|Nor|2006-03-01|The manifest file no longer has a Class-Path entry|
|38862|New|Maj|2006-03-06|No ImageReader for this type of image             |
|38880|Ass|Nor|2006-03-07|Right border on fo:inline missing when hyphenate=t|
|39034|New|Nor|2006-03-20|page-number-citation : the text after overlaps the|
|39118|Ass|Nor|2006-03-27|[PATCH] Handling of page-number-citation-last     |
|39184|New|Nor|2006-04-03|soft page break on new line                       |
|39215|New|Nor|2006-04-05|[PATCH] To render GIF external images in RTF outpu|
|39261|New|Min|2006-04-10|Rasterized paints upside down if coordinate system|
|39293|New|Enh|2006-04-13|FOP can't support bold,italic for chinese/other mu|
|39412|Ass|Nor|2006-04-26|wrong URL referred from FOP: Bugs and Other Tracka|
|39422|New|Nor|2006-04-27|[PATCH] Fop fails to render non-ascii characters i|
|39725|New|Maj|2006-06-05|page-position="last" and spans doesn't output all |
|39777|Ass|Enh|2006-06-11|[PATCH] GSoC: floats implementation               |
|39840|Ass|Cri|2006-06-20|Multi page table fails with an endless loop error |
|39927|Ass|Nor|2006-06-28|Building FOP with GCJ                             |
|39968|New|Nor|2006-07-05|Absolutely positioned block-container affects the |
|40112|New|Nor|2006-07-26|keep-with-previous.within-page not working        |
|40271|Ass|Nor|2006-08-17|[PATCH] auto table layout -- dirty draft          |
|40288|Opn|Nor|2006-08-18|&lt;base&gt; url requires "/", failes otherwise         |
|40464|New|Nor|2006-09-11|Improve handling of OpenType fonts                |
|40465|New|Nor|2006-09-11|Obtain some OpenType fonts for testing            |
|40468|New|Nor|2006-09-11|Use OpenType fonts from the STIX fonts project?   |
|40529|New|Nor|2006-09-17|[PATCH] Possible bug in PSTextRenderer            |
|40557|Ass|Nor|2006-09-20|PDF encryption and Acrobat 5                      |
|40676|Ass|Enh|2006-10-04|png graphics are expanded/uncompressed in pdf caus|
|40699|New|Nor|2006-10-06|Invalid PDF for certain numerical values in SVG li|
|40830|Inf|Nor|2006-10-27|Pb rendering SVG in fo:instream-foreign-object wit|
|41062|New|Nor|2006-11-28|Defect reading hyphenation patterns               |
|41122|New|Nor|2006-12-07|[PATCH] flow-map 1.1 support                      |
|41149|Ass|Nor|2006-12-11|PNG causes NPE for RTF output                     |
|41251|Opn|Nor|2006-12-28|ArrayIndexOutOfBoundsException in multithreading e|
|41272|Opn|Nor|2006-12-31|Memory problem in 0.93                            |
|41295|New|Min|2007-01-04|Examples cause fatals and excessive warnings      |
|41300|New|Min|2007-01-05|FATAL error raised for proportional-column-width()|
|41377|Ver|Blk|2007-01-16|Alignment (end, right) does not work in table-cell|
|41379|New|Maj|2007-01-16|VerifyError on FopFactory.newInstance() using Tomc|
|41380|New|Min|2007-01-16|Content in tables affecting conditional spacing of|
|41389|New|Maj|2007-01-17|Rtf numbered lists without numbers                |
|41440|Ass|Nor|2007-01-23|PDFSVGHandler causes missing resource bundle      |
|41443|New|Nor|2007-01-23|[PATCH] FOP can't handle mixed-case hyphenation ex|
|41445|Inf|Nor|2007-01-23|no searchable text in pdf for &lt;image xlink:href to|
|41633|New|Nor|2007-02-16|*-progression-dimension on inlines not implemented|
|41637|New|Nor|2007-02-16|in-line border-end does not always get rendered   |
|41649|New|Cri|2007-02-16|fop0.93 - Does not generate svg line or svg rectab|
|41657|New|Nor|2007-02-19|No support for SVG 1.2 in instream-foreign-object |
|41667|New|Nor|2007-02-21|ImageProvider should be overridable in ImageFactor|
|41812|New|Trv|2007-03-11|fillRect writes wrong command                     |
|41822|New|Nor|2007-03-12|Generated example from \examples\fo\basic\list.fo |
|41918|New|Nor|2007-03-21|Thin Lines in AWTRenderer are not drawn           |
|41942|New|Nor|2007-03-25|fo:leader elements are ignored when converted to R|
|41951|New|Nor|2007-03-26|External graphic doesnt size properly with height |
|41959|New|Nor|2007-03-27|External links are broken if pdf is encryped      |
|41978|New|Maj|2007-03-28|Rogue entries on a blank page                     |
|41995|New|Enh|2007-03-30|[PATCH] Barcode Support for AFP Renderer          |
|41999|New|Nor|2007-03-30|Unassigned code points cause ArrayIndexOutOfBounds|
|42028|New|Nor|2007-04-02|Incorrect rendering of GIF images                 |
|42034|New|Nor|2007-04-03|basic-link doesn't cover all text inside          |
|42049|New|Nor|2007-04-04|RTF (and PDF) tables incorrectly handle margin-lef|
|42136|New|Nor|2007-04-16|PDFDocumentGraphics2D.translate() does not work co|
|42162|New|Nor|2007-04-18|hyphenation inside block in FOP works only for pur|
|42306|New|Nor|2007-05-01|[PATCH] AWT Viewer does not track page numbers in |
|42307|New|Cri|2007-05-01|[PATCH] Java2d renderers render arabic text incorr|
|42330|New|Nor|2007-05-03|Tibetan characters not rendered correctly in PDF  |
|42352|New|Nor|2007-05-08|Problem with tiff gray render                     |
|42374|New|Nor|2007-05-09|List label and bodyindentation incorrect in RTF   |
|42380|New|Nor|2007-05-10|FOP chokes on jar-embedded class path             |
|42501|New|Nor|2007-05-23|basic-link not sizing correctly for external-graph|
|42577|Ass|Nor|2007-06-04|font-stretch [PATCH]                              |
|42600|New|Nor|2007-06-06|can not create page break in RTF                  |
|42601|New|Nor|2007-06-06|Image/text misalignment inside before-region table|
|42616|Opn|Nor|2007-06-08|fop bash script still broken under cygwin when cur|
|42617|New|Nor|2007-06-08|DOM tree cannot be built for a SVG graphic embedde|
|42685|Ass|Nor|2007-06-17|Printer restarts after sucessfull printing Postscr|
|42769|New|Nor|2007-06-28|Wrong border resolution in a table when there are |
|42779|Ass|Nor|2007-06-29|page-position and force-page-count with different |
|42808|New|Nor|2007-07-04|table footer overflows region-body area without wa|
|42845|Inf|Nor|2007-07-10|Printing error. Prints charater+1.                |
|42861|Ass|Nor|2007-07-11|[PATCH] Font detection only works for first docume|
|42868|New|Nor|2007-07-12|font-weight on custom fonts                       |
|43166|New|Nor|2007-08-20|unclosed border on nested inlines                 |
|43226|Inf|Maj|2007-08-28|images in pdf are not displayed correctly with 0.9|
|43237|New|Nor|2007-08-29|IndexOutOfBoundsException                         |
|43357|New|Min|2007-09-11|PDFGraphics2D addImage method: image in PDF look a|
|43416|New|Nor|2007-09-18|content not rendered after a break-before="column"|
|43474|Ass|Nor|2007-09-25|wrap-option="wrap" doesn't work                   |
|43506|New|Nor|2007-09-28|NPE using a Tiff Image                            |
|43525|New|Nor|2007-10-01|"background-position" shorthand is not processed p|
|43570|New|Cri|2007-10-08|field ATTRIB_ROW_PADDING not found                |
|43651|New|Nor|2007-10-18|NPE without manually clearing image cache         |
|43722|New|Nor|2007-10-29|arabic character isssue                           |
|43739|New|Nor|2007-10-30|PDF table of contents generated with incorrect pag|
|43808|New|Cri|2007-11-07|Apache FOP in a Servlet fails to work after upgrad|
|43844|New|Maj|2007-11-12|Extra blank lines added upon weird combinations of|
|43940|New|Min|2007-11-22|Faster method for double formatting               |
|43962|New|Nor|2007-11-26|OutOfMemoryError while auto-detecting fonts       |
|44023|New|Nor|2007-12-05|An empty fo:block artificially breaks a block-stac|
|44024|Ass|Nor|2007-12-05|About AFP renderer Issues when i try to using Aria|
|44160|Ass|Cri|2008-01-02|IndexOutOfBoundsException when creating pdf       |
|44190|New|Cri|2008-01-09|&lt;fo:block span="none"&gt; : textblock is missing on l|
|44320|New|Nor|2008-01-29|Missing before/after border when break set on a ta|
|44324|New|Nor|2008-01-29|vertical-align or baseline-shift In table-cells ca|
|44328|New|Nor|2008-01-30|widows not respected when linefeed-treatment="pres|
|44358|New|Maj|2008-02-05|OufOfMem                                          |
|44393|Opn|Nor|2008-02-11|Wrong fo.Constant values used for break class     |
|44412|Inf|Nor|2008-02-13|Missing border-after when break-after set on a blo|
|44434|New|Cri|2008-02-15|FO java Memory Error                              |
|44452|New|Cri|2008-02-19|last upgrades don't render older fop xml files    |
|44460|Ass|Enh|2008-02-21|[PATCH] PDF Embedded files implementation         |
|44489|Ass|Enh|2008-02-26|AFP Renderer: Implement break-out mechanism to sup|
|44490|Ass|Nor|2008-02-26|AFP Renderer: Support for clipping is missing     |
|44507|New|Nor|2008-02-29|PCL Renderer doesn't clip background images       |
|44545|Inf|Nor|2008-03-06|Keep together do not work correctly on spanning ta|
|44616|New|Nor|2008-03-17|Merging algorithm for tables properly works only f|
|44634|Ass|Enh|2008-03-19|implement show-destination for fo:basic-link      |
|44744|New|Nor|2008-04-03|PDFGraphics2D.drawString(AttributedCharacterIterat|
|44826|New|Nor|2008-04-15|last-page master reference interfered with span al|
|44885|Ass|Enh|2008-04-27|fo:inline-container implementation                |
|44920|Ass|Nor|2008-05-02|nested, multi-page tables and keep-with-previous  |
|45027|Inf|Nor|2008-05-18|Color 'blue' does not render correctly when 'fo:ex|
|45047|Ass|Nor|2008-05-20|Fixed row height not taken into account if the row|
|45070|Ass|Nor|2008-05-23|Spurious WARNING on span="inherit"                |
|45079|Ass|Nor|2008-05-27|multi page table with marker                      |
|45097|Ass|Nor|2008-05-29|Questionable white-space-treatment behavior       |
|45104|New|Nor|2008-05-30|Possible Thread Safety Problem in FOP 0.93        |
|45113|Ass|Enh|2008-06-01|[PATCH] Adding PDF Launch Action                  |
|45134|Ass|Nor|2008-06-05|FOP unwarranted page split on table with numbre-ro|
|45159|New|Nor|2008-06-07|fop buzzed on footnotes near page break           |
|45237|Ass|Nor|2008-06-19|Call order of FOEventHandler method is incorrect  |
|45306|Ass|Nor|2008-06-29|fo:instream-foreign-object in fo:marker does not w|
|45307|New|Nor|2008-06-29|fo:block-container height issue                   |
|45342|New|Nor|2008-07-04|AFP Renderer does not properly handle AFP fonts wi|
|45351|Ass|Nor|2008-07-07|Unnecessary hyphenation, swallowed characters     |
|45366|New|Enh|2008-07-08|Unable to create column break in RTF using FOP    |
|45390|New|Nor|2008-07-13|PDF Extensions - Prototype                        |
|45454|New|Nor|2008-07-22|Investigate the adoption of Apache Commons CLI    |
|45604|Inf|Nor|2008-08-08|Duplicate prints                                  |
|45702|Ass|Nor|2008-08-28|Forced break-after and/or space-after causes unres|
|45715|New|Nor|2008-08-30|break-before not respected on blocks nested in inl|
|45733|New|Nor|2008-09-02|incorrect line height for mixed font content      |
|45759|New|Enh|2008-09-08|[PATCH] Internal PDF links from included SVG graph|
|45809|New|Nor|2008-09-15|PNGs are rendered with dull colors                |
|45821|New|Nor|2008-09-16|AFP Renderer doesn't perform Image Clipping       |
|45822|New|Nor|2008-09-16|AFP Renderer: Minor border Painting Inconsistencie|
|45891|New|Maj|2008-09-25|FOP Commenting                                    |
|45924|New|Enh|2008-10-01|Improve border painting in collapsing border model|
|45927|New|Nor|2008-10-01|Text is not vertically centered anymore.          |
|45938|New|Enh|2008-10-02|Better feedback needed for unknown image formats  |
+-----+---+---+----------+--------------------------------------------------+
| Total  252 bugs                                                           |
+---------------------------------------------------------------------------+

</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2008-10-06T06:08:12</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21843">
    <title>[PATCH] Correct Some Minor fop Execution Message Flaws</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21843</link>
    <description>In my e-mail to fop-users (see
&lt;http://www.mail-archive.com/fop-users%40xmlgraphics.apache.org/msg11324.html&gt;)
I complained about a couple of minor issues:

1.  Running 'fop' with no arguments throws an exception after printing
a usage statement.

2.  Running 'fop -v' throws an exception after printing the version.

3.  Another  issue, not complained about in the cited message, is that
the current usage and help messages refer to 'Fop' while the user
executes 'fop'.

The attached patch was generated by running 'svn diff' at the top of
the working directory of a checked-out fop trunk at revision 698670.

It affects the following files:

  src/java/org/apache/fop/cli/CommandLineOptions.java
  src/java/org/apache/fop/cli/Main.java

It corrects all three issues listed above.

Thanks for your attention.

Regards.

-Tom
</description>
    <dc:creator>Tom Browder</dc:creator>
    <dc:date>2008-10-03T02:55:46</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21842">
    <title>DO NOT REPLY [Bug 45938] New: Better feedback needed for unknown image formats</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21842</link>
    <description>https://issues.apache.org/bugzilla/show_bug.cgi?id=45938

           Summary: Better feedback needed for unknown image formats
           Product: Fop
           Version: 1.0dev
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: enhancement
          Priority: P2
         Component: general
        AssignedTo: fop-dev&lt; at &gt;xmlgraphics.apache.org
        ReportedBy: vincent.hennebert&lt; at &gt;anyware-tech.com


If an image in an unknown format is specified as a background-image, FOP gives
a misleading error message:
  &lt;fo:block background-image="unknown.xyz"&gt;Block&lt;/fo:block&gt;

 org.apache.fop.fo.properties.CommonBorderPaddingBackground getInstance
SEVERE: Background image not available: unknown.xyz

When the same image is specified as an external-graphic, the error message is
hardly better:
  &lt;fo:external-graphic src="unknown.xyz"/&gt;

org.apache.fop.events.LoggingEventListener processEvent
SEVERE: Image not available. URI: unknown.xyz. Reason:
org.apache.xmlgraphics.image.loader.ImageException: No ImagePreloader found for
unknown.xyz

I discovered the issue by stumbling upon an svg file that didn't contain any
doctype declaration, hence not recognized as svg. Feedback should be improved
by clearly mentioning that the image is of an unrecognized format.


</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2008-10-02T16:05:33</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21839">
    <title>DO NOT REPLY [Bug 45927] New: Text is not vertically centered anymore.</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21839</link>
    <description>https://issues.apache.org/bugzilla/show_bug.cgi?id=45927

           Summary: Text is not vertically centered anymore.
           Product: Fop
           Version: 0.95
          Platform: PC
        OS/Version: Windows 2000
            Status: NEW
          Severity: normal
          Priority: P2
         Component: general
        AssignedTo: fop-dev&lt; at &gt;xmlgraphics.apache.org
        ReportedBy: mhilpert&lt; at &gt;gmx.de


Created an attachment (id=22659)
 --&gt; (https://issues.apache.org/bugzilla/attachment.cgi?id=22659)
Example showing the different vertical centers.

I migrate our Java FOP application from FOP 0.20.5 to FOP 0.95. I got
everything running and most problems from our old 0.20.5 XSL are cleaned up.
One of the remaining two problem is, that all text (in table cells) is now
"moved up". By comparing the 0.20.5 PDF output with 0.95 PDF output, I've
noticed, that FOP 0.20.5 centered text vertically by capital letters. FOP 0.95
is centering text by small letters:

FOP 0.20.5 (capital letters are exactly centered):

-------

ToDo

-------


FOP 0.95 (lower letters are exactly centered):

-------
ToDo

-------

When I divide a table cell horizontally in 2 equal halfs, I see that the middle
line is cutting the capital letters exactly in half with FOP 0.20.5. But with
FOP 0.95 the middle line is cutting the lower letters exactly in half.

I found a workaround for this: enclosing the text in fo:inline with
alignment-adjust="central" :

                      &lt;fo:inline alignment-adjust="central"&gt;
                          &lt;xsl:value-of select="."/&gt;
                      &lt;/fo:inline&gt;

As I don't think that this is a clean solution for this problem, it's also a
bad solution to change any (hundreds of hundreds ...) of occurence of text
occurences in all the XSL files.

Is there a better solution to "fix" this issue? Perhaps some global
adjustments? I wonder why this happens in the first place?

(I spend several days with compliance.html and the links to the w3c
specifications and documentation trying unnumbered permutations of attribute
combinations without being able to fix this without fo:inline.)


</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2008-10-01T15:45:56</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21838">
    <title>DO NOT REPLY [Bug 45924] New: Improve border painting in collapsing border model</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21838</link>
    <description>https://issues.apache.org/bugzilla/show_bug.cgi?id=45924

           Summary: Improve border painting in collapsing border model
           Product: Fop
           Version: 1.0dev
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: enhancement
          Priority: P2
         Component: general
        AssignedTo: fop-dev&lt; at &gt;xmlgraphics.apache.org
        ReportedBy: vincent.hennebert&lt; at &gt;anyware-tech.com


Created an attachment (id=22658)
 --&gt; (https://issues.apache.org/bugzilla/attachment.cgi?id=22658)
File demonstrating the problem

See attached file: the corners adjacent to the cell without borders aren't
fully painted, which makes the result not very nice.
It would be a nice to have if the borders were fully painted, like in the
separate border model (second table).


</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2008-10-01T09:56:25</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21836">
    <title>[Fwd: Application Period Opens for Travel Assistance to ApacheCon US 2008]</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21836</link>
    <description/>
    <dc:creator>Christian Geisert</dc:creator>
    <dc:date>2008-09-29T12:13:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21835">
    <title>Bug report for Fop [2008/09/28]</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21835</link>
    <description>+---------------------------------------------------------------------------+
| Bugzilla Bug ID                                                           |
|     +---------------------------------------------------------------------+
|     | Status: UNC=Unconfirmed NEW=New         ASS=Assigned                |
|     |         OPN=Reopened    VER=Verified    (Skipped Closed/Resolved)   |
|     |   +-----------------------------------------------------------------+
|     |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
|     |   |           MIN=Minor   NOR=Normal    ENH=Enhancement TRV=Trivial |
|     |   |   +-------------------------------------------------------------+
|     |   |   | Date Posted                                                 |
|     |   |   |          +--------------------------------------------------+
|     |   |   |          | Description                                      |
|     |   |   |          |                                                  |
| 1063|New|Nor|2001-03-21|fop does not handle large fo files                |
| 3280|New|Nor|2001-08-27|PCL Renderer doesn't work                         |
| 3824|New|Blk|2001-09-25|MIF option with tables                            |
| 4030|New|Nor|2001-10-08|IOException creating Postscript with graphics on S|
| 4535|New|Maj|2001-10-31|PCL renderer 1.13 not rendering SVG               |
| 5010|New|Enh|2001-11-21|Better error reporting needed                     |
| 5124|New|Maj|2001-11-27|fo:block-container is not rendered properly using |
| 6305|New|Nor|2002-02-07|Using fo:table-and-caption results in empty output|
| 6427|New|Enh|2002-02-13|Adding additional Type 1 fonts problem            |
| 6997|New|Nor|2002-03-09|[PATCH] Row-spanned row data breaks over a page wi|
| 7241|New|Nor|2002-03-19|keep-with-previous, keep-with-next only working on|
| 8003|Ass|Maj|2002-04-12|FopImageFactory never releases cached images      |
| 8463|New|Nor|2002-04-24|SVG clipping in external.fo example doc when rende|
| 8767|Ass|Min|2002-05-03|Image and solid colour background rectangle sizes |
| 9379|New|Nor|2002-05-24|MIF Renderer generates incorrect MIF code         |
|10379|New|Enh|2002-07-01|Improvement to FOP Classloader                    |
|12494|New|Nor|2002-09-10|fop produces pdf file which Acrobat Reader refuses|
|12610|New|Enh|2002-09-13|[PATCH] onLoad Action for PDF documents or how to |
|13586|New|Blk|2002-10-13|fop will not work on linux alpha because jre is br|
|13734|New|Nor|2002-10-17|Hyphenation does not work correctly on long string|
|14248|New|Enh|2002-11-05|51-page FO example, could be added to the samples |
|14352|New|Enh|2002-11-07|It would be nice if FOP could be plugged into popu|
|14356|New|Nor|2002-11-07|*NOT* embedding TrueTypeFont in PDF causes Acrobat|
|14419|New|Enh|2002-11-10|Implement SourceResolver, Image Resolver          |
|14529|New|Nor|2002-11-13|SVG url references do not work                    |
|14679|New|Enh|2002-11-19|Pluggable renderers                               |
|14924|New|Nor|2002-11-28|Table disappears when it ends when the page ends  |
|15020|New|Enh|2002-12-03|Reuse of fo-tree                                  |
|16017|Opn|Nor|2003-01-13|Jpeg's and the PDF Serializer                     |
|16130|New|Nor|2003-01-15|PS-Renderer emits lots of redundant moveto's      |
|16156|New|Nor|2003-01-16|0.20.5rc SVG example does not work                |
|16713|New|Nor|2003-02-03|Hyphenation error in tables                       |
|17369|New|Nor|2003-02-25|Footnote duplication                              |
|17380|New|Nor|2003-02-25|Batik Component will not recognize feXXXX SVG elem|
|17921|New|Nor|2003-03-12|Kerning is broken for standard fonts              |
|18292|New|Nor|2003-03-24|24 bit PNG not displayed correctly                |
|18801|New|Nor|2003-04-08|"visibility" property is not implemented          |
|19228|New|Blk|2003-04-22|[PATCH] Child LayoutContext is null in certain cir|
|19341|Ver|Nor|2003-04-26|leader doesn't work since 0.20.5.rc2              |
|19695|New|Enh|2003-05-06|[PATCH] Allow fox:destination as child of fox:outl|
|19717|New|Enh|2003-05-07|Lets add support for JimiClassesPro.zip to build.x|
|19769|Ass|Enh|2003-05-08|Indefinite page size is not implemented           |
|20280|Ass|Enh|2003-05-27|text-align and text-align-last only partially impl|
|20407|New|Enh|2003-06-02|[PATCH] Configure image caching using the configur|
|20827|New|Enh|2003-06-17|Derive other font styles and weights from normal T|
|21265|Opn|Nor|2003-07-02|referencing a custom font (TTF or Adobe Type 1) fo|
|21905|New|Nor|2003-07-26|large list-item-label bleeds into following block |
|21982|New|Maj|2003-07-30|NullPointer Exception in LazyFont with embedded fo|
|22450|New|Maj|2003-08-15|Unterminated iteration in JPEGReader class        |
|22627|Opn|Nor|2003-08-21|Update mirror/download page HEADER &amp; README (was [|
|24148|New|Nor|2003-10-27|Kerning upsets text-align="end"                   |
|24171|New|Nor|2003-10-28|[PATCH] 1st Attempt at Whole Site PDF             |
|24378|New|Nor|2003-11-04|Minor problem in sample code for embedding        |
|24663|New|Nor|2003-11-12|fo:block space-after property needs fixing        |
|24804|New|Nor|2003-11-18|SVG Text to PS Output generates incorrect outlines|
|25022|New|Nor|2003-11-26|XSL-FO to PCL : images not included               |
|25341|New|Nor|2003-12-08|percentage resolution not being recalculated on di|
|25411|New|Nor|2003-12-10|[WARNING] Error while constructing image from XML |
|25432|Ass|Maj|2003-12-11|Cannot embed the User Defined Characters into the |
|26047|New|Nor|2004-01-11|Space-after value remembered and used on second do|
|26590|New|Nor|2004-02-02|last character width in winansi font is missed    |
|26848|New|Nor|2004-02-11|PNG images using JIMI instead JAI                 |
|27107|New|Maj|2004-02-20|TTF Reader fails                                  |
|27727|New|Maj|2004-03-17|problem displaying Japanese fonts in PDF.         |
|27890|New|Min|2004-03-24|fop.sh doesn't set exit status                    |
|29632|New|Maj|2004-06-17|Rendered reads fonts from disk everytime it render|
|30006|New|Nor|2004-07-09|eps doesn't show up in recent GhostScript versions|
|30214|New|Nor|2004-07-20|PSGraphics2D.drawImage incorrect matrix generated |
|31039|New|Nor|2004-09-03|URL in basic-link is scrambled by encryption      |
|31225|New|Nor|2004-09-14|Need embedded page sequence functionality         |
|31301|New|Nor|2004-09-19|FOP limitation-Summary of columns value at Table F|
|31674|New|Enh|2004-10-12|Allow Print Renderer to select Printer and Tray.  |
|31796|New|Cri|2004-10-20|Fop: Pdf generation dowsn`t work with j2sdk 1.5   |
|32054|New|Enh|2004-11-04|Pluggable area creation: AreaFactory              |
|32100|Ass|Enh|2004-11-07|FOP "Starter Documents"                           |
|32107|New|Cri|2004-11-07|Move FOP wiki to secure                           |
|32201|Opn|Enh|2004-11-12|please, provide a manpage                         |
|32789|New|Cri|2004-12-21|Arabic words are broken for rendering PDF from FOP|
|32970|New|Cri|2005-01-06|Sticking words in generated PDF document          |
|33174|New|Nor|2005-01-20|An unrecognized token'NaN' was found when opening |
|34355|New|Cri|2005-04-07|BufferOverflowException when running SVG2PDF on hu|
|35184|New|Trv|2005-06-02|Error while loading image http://xxx.xx.x/yyyy.tif|
|35500|New|Nor|2005-06-24|Missing .close() call on stream opened for JPEG im|
|35939|New|Nor|2005-07-30|[PATCH] Port of 0.20.5 Driver.java class          |
|35948|New|Enh|2005-07-31|pre-patch for FOrayFont adaptation to Fop         |
|36000|Ver|Maj|2005-08-03|PDF page margins larger, different than PS renderi|
|36011|New|Nor|2005-08-04|Setting word-spacing on justified blocks removes j|
|36238|Ass|Nor|2005-08-18|text-align="justify" doesn't work on custom fonts |
|36395|New|Nor|2005-08-27|Common Border and Background Properties not suppor|
|36408|Opn|Min|2005-08-29|FOP hyphenation splits consecutive digits onto sep|
|36533|Opn|Nor|2005-09-07|Incorrect ipd and twsadjust settings              |
|36935|New|Blk|2005-10-05|table-layout="fixed" and width="auto", but auto-la|
|36977|New|Nor|2005-10-09|[PATCH]TextLayoutManager CJK line break           |
|37108|New|Nor|2005-10-16|Patch for 0.20.5 to work with jdk1.5              |
|37114|New|Min|2005-10-17|No error message on illegal/unknown values on a pr|
|37116|New|Enh|2005-10-17|ESC POS Renderer                                  |
|37136|Opn|Nor|2005-10-18|external-graphic dimensions and rendering         |
|37236|Ass|Nor|2005-10-25|[PATCH] Fix gradients and patterns                |
|37305|Ass|Nor|2005-10-30|Added deviceDPI to PDFDocumentGraphics2D          |
|37505|New|Cri|2005-11-15|SEVERE FOP Exceptions should be thrown!           |
|37579|Ass|Nor|2005-11-21|footnotes within tables and listsl get lost       |
|38121|New|Nor|2006-01-04|border-separation disturbs table layout           |
|38244|New|Nor|2006-01-12|table-column and number-columns-spanned (prepatch)|
|38264|Ass|Nor|2006-01-13|Hyphenation does not play well with preserved line|
|38639|Inf|Maj|2006-02-14|PDF not opening                                   |
|38821|Opn|Nor|2006-03-01|The manifest file no longer has a Class-Path entry|
|38862|New|Maj|2006-03-06|No ImageReader for this type of image             |
|38880|Ass|Nor|2006-03-07|Right border on fo:inline missing when hyphenate=t|
|39034|New|Nor|2006-03-20|page-number-citation : the text after overlaps the|
|39118|Ass|Nor|2006-03-27|[PATCH] Handling of page-number-citation-last     |
|39184|New|Nor|2006-04-03|soft page break on new line                       |
|39215|New|Nor|2006-04-05|[PATCH] To render GIF external images in RTF outpu|
|39261|New|Min|2006-04-10|Rasterized paints upside down if coordinate system|
|39293|New|Enh|2006-04-13|FOP can't support bold,italic for chinese/other mu|
|39412|Ass|Nor|2006-04-26|wrong URL referred from FOP: Bugs and Other Tracka|
|39422|New|Nor|2006-04-27|[PATCH] Fop fails to render non-ascii characters i|
|39725|New|Maj|2006-06-05|page-position="last" and spans doesn't output all |
|39777|Ass|Enh|2006-06-11|[PATCH] GSoC: floats implementation               |
|39840|Ass|Cri|2006-06-20|Multi page table fails with an endless loop error |
|39927|Ass|Nor|2006-06-28|Building FOP with GCJ                             |
|39968|New|Nor|2006-07-05|Absolutely positioned block-container affects the |
|40112|New|Nor|2006-07-26|keep-with-previous.within-page not working        |
|40271|Ass|Nor|2006-08-17|[PATCH] auto table layout -- dirty draft          |
|40288|Opn|Nor|2006-08-18|&lt;base&gt; url requires "/", failes otherwise         |
|40464|New|Nor|2006-09-11|Improve handling of OpenType fonts                |
|40465|New|Nor|2006-09-11|Obtain some OpenType fonts for testing            |
|40468|New|Nor|2006-09-11|Use OpenType fonts from the STIX fonts project?   |
|40529|New|Nor|2006-09-17|[PATCH] Possible bug in PSTextRenderer            |
|40557|Ass|Nor|2006-09-20|PDF encryption and Acrobat 5                      |
|40676|Ass|Enh|2006-10-04|png graphics are expanded/uncompressed in pdf caus|
|40699|New|Nor|2006-10-06|Invalid PDF for certain numerical values in SVG li|
|40830|Inf|Nor|2006-10-27|Pb rendering SVG in fo:instream-foreign-object wit|
|41062|New|Nor|2006-11-28|Defect reading hyphenation patterns               |
|41122|New|Nor|2006-12-07|[PATCH] flow-map 1.1 support                      |
|41149|Ass|Nor|2006-12-11|PNG causes NPE for RTF output                     |
|41251|Opn|Nor|2006-12-28|ArrayIndexOutOfBoundsException in multithreading e|
|41272|Opn|Nor|2006-12-31|Memory problem in 0.93                            |
|41295|New|Min|2007-01-04|Examples cause fatals and excessive warnings      |
|41300|New|Min|2007-01-05|FATAL error raised for proportional-column-width()|
|41377|Ver|Blk|2007-01-16|Alignment (end, right) does not work in table-cell|
|41379|New|Maj|2007-01-16|VerifyError on FopFactory.newInstance() using Tomc|
|41380|New|Min|2007-01-16|Content in tables affecting conditional spacing of|
|41389|New|Maj|2007-01-17|Rtf numbered lists without numbers                |
|41440|Ass|Nor|2007-01-23|PDFSVGHandler causes missing resource bundle      |
|41443|New|Nor|2007-01-23|[PATCH] FOP can't handle mixed-case hyphenation ex|
|41445|Inf|Nor|2007-01-23|no searchable text in pdf for &lt;image xlink:href to|
|41633|New|Nor|2007-02-16|*-progression-dimension on inlines not implemented|
|41637|New|Nor|2007-02-16|in-line border-end does not always get rendered   |
|41649|New|Cri|2007-02-16|fop0.93 - Does not generate svg line or svg rectab|
|41657|New|Nor|2007-02-19|No support for SVG 1.2 in instream-foreign-object |
|41667|New|Nor|2007-02-21|ImageProvider should be overridable in ImageFactor|
|41812|New|Trv|2007-03-11|fillRect writes wrong command                     |
|41822|New|Nor|2007-03-12|Generated example from \examples\fo\basic\list.fo |
|41918|New|Nor|2007-03-21|Thin Lines in AWTRenderer are not drawn           |
|41942|New|Nor|2007-03-25|fo:leader elements are ignored when converted to R|
|41951|New|Nor|2007-03-26|External graphic doesnt size properly with height |
|41959|New|Nor|2007-03-27|External links are broken if pdf is encryped      |
|41978|New|Maj|2007-03-28|Rogue entries on a blank page                     |
|41995|New|Enh|2007-03-30|[PATCH] Barcode Support for AFP Renderer          |
|41999|New|Nor|2007-03-30|Unassigned code points cause ArrayIndexOutOfBounds|
|42028|New|Nor|2007-04-02|Incorrect rendering of GIF images                 |
|42034|New|Nor|2007-04-03|basic-link doesn't cover all text inside          |
|42049|New|Nor|2007-04-04|RTF (and PDF) tables incorrectly handle margin-lef|
|42136|New|Nor|2007-04-16|PDFDocumentGraphics2D.translate() does not work co|
|42162|New|Nor|2007-04-18|hyphenation inside block in FOP works only for pur|
|42306|New|Nor|2007-05-01|[PATCH] AWT Viewer does not track page numbers in |
|42307|New|Cri|2007-05-01|[PATCH] Java2d renderers render arabic text incorr|
|42330|New|Nor|2007-05-03|Tibetan characters not rendered correctly in PDF  |
|42352|New|Nor|2007-05-08|Problem with tiff gray render                     |
|42374|New|Nor|2007-05-09|List label and bodyindentation incorrect in RTF   |
|42380|New|Nor|2007-05-10|FOP chokes on jar-embedded class path             |
|42501|New|Nor|2007-05-23|basic-link not sizing correctly for external-graph|
|42577|Ass|Nor|2007-06-04|font-stretch [PATCH]                              |
|42600|New|Nor|2007-06-06|can not create page break in RTF                  |
|42601|New|Nor|2007-06-06|Image/text misalignment inside before-region table|
|42616|Opn|Nor|2007-06-08|fop bash script still broken under cygwin when cur|
|42617|New|Nor|2007-06-08|DOM tree cannot be built for a SVG graphic embedde|
|42685|Ass|Nor|2007-06-17|Printer restarts after sucessfull printing Postscr|
|42769|New|Nor|2007-06-28|Wrong border resolution in a table when there are |
|42779|Ass|Nor|2007-06-29|page-position and force-page-count with different |
|42808|New|Nor|2007-07-04|table footer overflows region-body area without wa|
|42845|Inf|Nor|2007-07-10|Printing error. Prints charater+1.                |
|42861|Ass|Nor|2007-07-11|[PATCH] Font detection only works for first docume|
|42868|New|Nor|2007-07-12|font-weight on custom fonts                       |
|43166|New|Nor|2007-08-20|unclosed border on nested inlines                 |
|43226|Inf|Maj|2007-08-28|images in pdf are not displayed correctly with 0.9|
|43237|New|Nor|2007-08-29|IndexOutOfBoundsException                         |
|43357|New|Min|2007-09-11|PDFGraphics2D addImage method: image in PDF look a|
|43416|New|Nor|2007-09-18|content not rendered after a break-before="column"|
|43474|Ass|Nor|2007-09-25|wrap-option="wrap" doesn't work                   |
|43506|New|Nor|2007-09-28|NPE using a Tiff Image                            |
|43525|New|Nor|2007-10-01|"background-position" shorthand is not processed p|
|43570|New|Cri|2007-10-08|field ATTRIB_ROW_PADDING not found                |
|43651|New|Nor|2007-10-18|NPE without manually clearing image cache         |
|43722|New|Nor|2007-10-29|arabic character isssue                           |
|43739|New|Nor|2007-10-30|PDF table of contents generated with incorrect pag|
|43808|New|Cri|2007-11-07|Apache FOP in a Servlet fails to work after upgrad|
|43844|New|Maj|2007-11-12|Extra blank lines added upon weird combinations of|
|43940|New|Min|2007-11-22|Faster method for double formatting               |
|43962|New|Nor|2007-11-26|OutOfMemoryError while auto-detecting fonts       |
|44023|New|Nor|2007-12-05|An empty fo:block artificially breaks a block-stac|
|44024|Ass|Nor|2007-12-05|About AFP renderer Issues when i try to using Aria|
|44160|Ass|Cri|2008-01-02|IndexOutOfBoundsException when creating pdf       |
|44190|New|Cri|2008-01-09|&lt;fo:block span="none"&gt; : textblock is missing on l|
|44320|New|Nor|2008-01-29|Missing before/after border when break set on a ta|
|44324|New|Nor|2008-01-29|vertical-align or baseline-shift In table-cells ca|
|44328|New|Nor|2008-01-30|widows not respected when linefeed-treatment="pres|
|44358|New|Maj|2008-02-05|OufOfMem                                          |
|44393|Opn|Nor|2008-02-11|Wrong fo.Constant values used for break class     |
|44412|Inf|Nor|2008-02-13|Missing border-after when break-after set on a blo|
|44434|New|Cri|2008-02-15|FO java Memory Error                              |
|44452|New|Cri|2008-02-19|last upgrades don't render older fop xml files    |
|44460|Ass|Enh|2008-02-21|[PATCH] PDF Embedded files implementation         |
|44489|Ass|Enh|2008-02-26|AFP Renderer: Implement break-out mechanism to sup|
|44490|Ass|Nor|2008-02-26|AFP Renderer: Support for clipping is missing     |
|44507|New|Nor|2008-02-29|PCL Renderer doesn't clip background images       |
|44545|Inf|Nor|2008-03-06|Keep together do not work correctly on spanning ta|
|44616|New|Nor|2008-03-17|Merging algorithm for tables properly works only f|
|44634|Ass|Enh|2008-03-19|implement show-destination for fo:basic-link      |
|44744|New|Nor|2008-04-03|PDFGraphics2D.drawString(AttributedCharacterIterat|
|44826|New|Nor|2008-04-15|last-page master reference interfered with span al|
|44885|Ass|Enh|2008-04-27|fo:inline-container implementation                |
|44920|Ass|Nor|2008-05-02|nested, multi-page tables and keep-with-previous  |
|45027|Inf|Nor|2008-05-18|Color 'blue' does not render correctly when 'fo:ex|
|45047|Ass|Nor|2008-05-20|Fixed row height not taken into account if the row|
|45070|Ass|Nor|2008-05-23|Spurious WARNING on span="inherit"                |
|45079|Ass|Nor|2008-05-27|multi page table with marker                      |
|45097|Ass|Nor|2008-05-29|Questionable white-space-treatment behavior       |
|45104|New|Nor|2008-05-30|Possible Thread Safety Problem in FOP 0.93        |
|45113|Ass|Enh|2008-06-01|[PATCH] Adding PDF Launch Action                  |
|45134|Ass|Nor|2008-06-05|FOP unwarranted page split on table with numbre-ro|
|45159|New|Nor|2008-06-07|fop buzzed on footnotes near page break           |
|45237|Ass|Nor|2008-06-19|Call order of FOEventHandler method is incorrect  |
|45306|Ass|Nor|2008-06-29|fo:instream-foreign-object in fo:marker does not w|
|45307|New|Nor|2008-06-29|fo:block-container height issue                   |
|45342|New|Nor|2008-07-04|AFP Renderer does not properly handle AFP fonts wi|
|45351|Ass|Nor|2008-07-07|Unnecessary hyphenation, swallowed characters     |
|45366|New|Enh|2008-07-08|Unable to create column break in RTF using FOP    |
|45390|New|Nor|2008-07-13|PDF Extensions - Prototype                        |
|45454|New|Nor|2008-07-22|Investigate the adoption of Apache Commons CLI    |
|45604|Inf|Nor|2008-08-08|Duplicate prints                                  |
|45702|Ass|Nor|2008-08-28|Forced break-after and/or space-after causes unres|
|45715|New|Nor|2008-08-30|break-before not respected on blocks nested in inl|
|45733|New|Nor|2008-09-02|incorrect line height for mixed font content      |
|45759|New|Enh|2008-09-08|[PATCH] Internal PDF links from included SVG graph|
|45809|New|Nor|2008-09-15|PNGs are rendered with dull colors                |
|45821|New|Nor|2008-09-16|AFP Renderer doesn't perform Image Clipping       |
|45822|New|Nor|2008-09-16|AFP Renderer: Minor border Painting Inconsistencie|
|45891|New|Maj|2008-09-25|FOP Commenting                                    |
+-----+---+---+----------+--------------------------------------------------+
| Total  249 bugs                                                           |
+---------------------------------------------------------------------------+

</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2008-09-29T06:08:11</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21830">
    <title>FOP 0.95 and Maven2</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21830</link>
    <description>Developers,
Are there any plans to push the new FOP 0.95 release to the central Maven repo?

Sean Griffin | Clinical Reporting Architect | Cerner Corporation | 816.201.1599 | sgriffin&lt; at &gt;cerner.com | www.cerner.com


----------------------------------------------------------------------
CONFIDENTIALITY NOTICE This message and any included attachments are from Cerner Corporation and are intended only for the addressee. The information contained in this message is confidential and may constitute inside or non-public information under international, federal, or state securities laws. Unauthorized forwarding, printing, copying, distribution, or use of such information is strictly prohibited and may be unlawful. If you are not the addressee, please promptly delete this message and notify the sender of the delivery error by e-mail or you may call Cerner's corporate offices in Kansas City, Missouri, U.S.A at (+1) (816)221-1024.
</description>
    <dc:creator>Griffin,Sean</dc:creator>
    <dc:date>2008-09-26T18:20:38</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21829">
    <title>DO NOT REPLY [Bug 45891] New: FOP Commenting</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21829</link>
    <description>https://issues.apache.org/bugzilla/show_bug.cgi?id=45891

           Summary: FOP Commenting
           Product: Fop
           Version: 0.94
          Platform: PC
        OS/Version: Windows 2000
            Status: NEW
          Severity: major
          Priority: P3
         Component: pdf
        AssignedTo: fop-dev&lt; at &gt;xmlgraphics.apache.org
        ReportedBy: swapneel_pansare&lt; at &gt;yahoo.co.in
                CC: swapneel_pansare&lt; at &gt;yahoo.co.in


Hi All,

I am using FOP.jar (0.94) to convert to PDF.
While Converting I have set the allowAnnotation option true.
but when open the Document in the Adobe Reader 9 , it does not allow us to
comment in the PDF.
Same document when we open in the Acrobat Writer , it allows to Comments.
How can it allow the document to comment in the Adobe reader.?

Please guide.
Thanks
Swapneel


</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2008-09-25T14:01:59</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21826">
    <title>[GUMP&lt; at &gt;vmgump]: Project xml-fop (in module xml-fop) failed</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21826</link>
    <description>To whom it may engage...
        
This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at general&lt; at &gt;gump.apache.org.

Project xml-fop has an issue affecting its community integration.
This issue affects 1 projects.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
    - xml-fop :  XSL-FO (Formatting Objects) processor


Full details are available at:
    http://vmgump.apache.org/gump/public/xml-fop/xml-fop/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were provided:
 -INFO- Made directory [/srv/gump/public/workspace/xml-fop/build/classes]
 -INFO- Made directory [/srv/gump/public/workspace/xml-fop/build/codegen-classes]
 -INFO- Failed with reason build failed
 -DEBUG- Extracted fallback artifacts from Gump Repository



The following work was performed:
http://vmgump.apache.org/gump/public/xml-fop/xml-fop/gump_work/build_xml-fop_xml-fop.html
Work Name: build_xml-fop_xml-fop (Type: Build)
Work ended in a state of : Failed
Elapsed: 29 secs
Command Line: /usr/lib/jvm/java-1.5.0-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar:/srv/gump/public/workspace/xml-xalan/build/serializer.jar:/srv/gump/public/workspace/xml-xalan/build/xalan-unbundled.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only package 
[Working Directory: /srv/gump/public/workspace/xml-fop]
CLASSPATH: /usr/lib/jvm/java-1.5.0-sun/lib/tools.jar:/srv/gump/public/workspace/xml-fop/build/classes:/srv/gump/public/workspace/xml-fop/build/codegen-classes:/srv/gump/public/workspace/xml-fop/lib/build/retroweaver-2.0.5.jar:/srv/gump/public/workspace/xml-fop/lib/build/retroweaver-rt-2.0.5.jar:/srv/gump/public/workspace/xml-fop/lib/build/asm-3.1.jar:/srv/gump/public/workspace/xml-fop/lib/build/asm-commons-3.1.jar:/srv/gump/public/workspace/xml-fop/lib/build/asm-util-3.1.jar:/srv/gump/public/workspace/xml-fop/lib/build/backport-util-concurrent-3.1.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.
 jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/works
 pace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xmlgraphics-commons/build/xmlgraphics-commons-22092008.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-util.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-swing.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-css.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-bridge.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-xml.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-svg-dom.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-awt-util.jar:/srv/gump/public/workspa
 ce/xml-batik/batik-22092008/lib/batik-transcoder.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-gui-util.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-
 dom.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-ext.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-script.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-svggen.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-parser.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-extension.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-gvt.jar:/srv/gump/public/workspace/excalibur/framework/api/target/excalibur-framework-api-22092008.jar:/srv/gump/public/workspace/excalibur/framework/impl/target/excalibur-framework-impl-22092008.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-22092008.jar:/srv/gump/public/workspace/apache-commons/io/target/commons-io-22092008.jar:/s
 rv/gump/public/workspace/jakarta-servletapi/dist/lib/servlet.jar:/srv/gump/packages/qdox-1.6.3/qdox-1.6.3.jar:/srv/gump/public/workspace/xmlunit/build/lib/xmlunit-22092008.jar
---------------------------------------------
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/bitmap/PNGRenderer_onthefly.java:44: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public class PNGRenderer_onthefly extends Java2DRenderer {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/bitmap/TIFFRenderer.java:70: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public class TIFFRenderer extends Java2DRenderer {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/java2d/Java2DGraphics2DAdapter.java:37: warning: [deprecation] paintImage(org.apache.fop.render.Graphics2DImagePainter,org.apache.fop.render.RendererContext,int,int,int,int) in org.apache.fop.render.Graphics2DAdapter has been deprecated
    [javac] public class Java2DGraphics2DAdapter extends AbstractGraphics2DAdapter {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/pcl/PCLGraphics2DAdapter.java:42: warning: [deprecation] paintImage(org.apache.fop.render.Graphics2DImagePainter,org.apache.fop.render.RendererContext,int,int,int,int) in org.apache.fop.render.Graphics2DAdapter has been deprecated
    [javac] public class PCLGraphics2DAdapter extends AbstractGraphics2DAdapter {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/pcl/PCLRenderer.java:111: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public class PCLRenderer extends PrintRenderer {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/pdf/PDFGraphics2DAdapter.java:41: warning: [deprecation] paintImage(org.apache.fop.render.Graphics2DImagePainter,org.apache.fop.render.RendererContext,int,int,int,int) in org.apache.fop.render.Graphics2DAdapter has been deprecated
    [javac] public class PDFGraphics2DAdapter extends AbstractGraphics2DAdapter {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/pdf/PDFRenderer.java:124: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public class PDFRenderer extends AbstractPathOrientedRenderer {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/print/PageableRenderer.java:41: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public class PageableRenderer extends Java2DRenderer implements Pageable {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/print/PrintRenderer.java:35: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public class PrintRenderer extends PageableRenderer {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/ps/PSGraphics2DAdapter.java:37: warning: [deprecation] paintImage(org.apache.fop.render.Graphics2DImagePainter,org.apache.fop.render.RendererContext,int,int,int,int) in org.apache.fop.render.Graphics2DAdapter has been deprecated
    [javac] public class PSGraphics2DAdapter extends AbstractGraphics2DAdapter {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/ps/PSRenderer.java:130: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public class PSRenderer extends AbstractPathOrientedRenderer
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/txt/TXTRenderer.java:49: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public class TXTRenderer extends AbstractPathOrientedRenderer {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/xml/AbstractXMLRenderer.java:46: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public abstract class AbstractXMLRenderer extends PrintRenderer {
    [javac]                 ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/xml/XMLRenderer.java:98: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public class XMLRenderer extends AbstractXMLRenderer {
    [javac]        ^
    [javac] 2 errors
    [javac] 25 warnings

BUILD FAILED
/srv/gump/public/workspace/xml-fop/build.xml:314: Compile failed; see the compiler error output for details.

Total time: 28 seconds
---------------------------------------------

To subscribe to this information via syndicated feeds:
- RSS: http://vmgump.apache.org/gump/public/xml-fop/xml-fop/rss.xml
- Atom: http://vmgump.apache.org/gump/public/xml-fop/xml-fop/atom.xml

============================== Gump Tracking Only ===
Produced by Gump version 2.3.
Gump Run 09000822092008, vmgump:vmgump-public:09000822092008
Gump E-mail Identifier (unique within run) #1.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump]

</description>
    <dc:creator>Jeremias Maerki</dc:creator>
    <dc:date>2008-09-22T19:57:26</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21825">
    <title>[GUMP&lt; at &gt;vmgump]: Project xml-fop (in module xml-fop) failed</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21825</link>
    <description>To whom it may engage...
        
This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at general&lt; at &gt;gump.apache.org.

Project xml-fop has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 3 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
    - xml-fop :  XSL-FO (Formatting Objects) processor


Full details are available at:
    http://vmgump.apache.org/gump/public/xml-fop/xml-fop/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were provided:
 -INFO- Made directory [/srv/gump/public/workspace/xml-fop/build/classes]
 -INFO- Made directory [/srv/gump/public/workspace/xml-fop/build/codegen-classes]
 -INFO- Failed with reason build failed
 -DEBUG- Extracted fallback artifacts from Gump Repository



The following work was performed:
http://vmgump.apache.org/gump/public/xml-fop/xml-fop/gump_work/build_xml-fop_xml-fop.html
Work Name: build_xml-fop_xml-fop (Type: Build)
Work ended in a state of : Failed
Elapsed: 33 secs
Command Line: /usr/lib/jvm/java-1.5.0-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar:/srv/gump/public/workspace/xml-xalan/build/serializer.jar:/srv/gump/public/workspace/xml-xalan/build/xalan-unbundled.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only package 
[Working Directory: /srv/gump/public/workspace/xml-fop]
CLASSPATH: /usr/lib/jvm/java-1.5.0-sun/lib/tools.jar:/srv/gump/public/workspace/xml-fop/build/classes:/srv/gump/public/workspace/xml-fop/build/codegen-classes:/srv/gump/public/workspace/xml-fop/lib/build/retroweaver-2.0.5.jar:/srv/gump/public/workspace/xml-fop/lib/build/retroweaver-rt-2.0.5.jar:/srv/gump/public/workspace/xml-fop/lib/build/asm-3.1.jar:/srv/gump/public/workspace/xml-fop/lib/build/asm-commons-3.1.jar:/srv/gump/public/workspace/xml-fop/lib/build/asm-util-3.1.jar:/srv/gump/public/workspace/xml-fop/lib/build/backport-util-concurrent-3.1.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.
 jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/works
 pace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xmlgraphics-commons/build/xmlgraphics-commons-22092008.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-util.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-swing.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-css.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-bridge.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-xml.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-svg-dom.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-awt-util.jar:/srv/gump/public/workspa
 ce/xml-batik/batik-22092008/lib/batik-transcoder.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-gui-util.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-
 dom.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-ext.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-script.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-svggen.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-parser.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-extension.jar:/srv/gump/public/workspace/xml-batik/batik-22092008/lib/batik-gvt.jar:/srv/gump/public/workspace/excalibur/framework/api/target/excalibur-framework-api-22092008.jar:/srv/gump/public/workspace/excalibur/framework/impl/target/excalibur-framework-impl-22092008.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-22092008.jar:/srv/gump/public/workspace/apache-commons/io/target/commons-io-22092008.jar:/s
 rv/gump/public/workspace/jakarta-servletapi/dist/lib/servlet.jar:/srv/gump/packages/qdox-1.6.3/qdox-1.6.3.jar:/srv/gump/public/workspace/xmlunit/build/lib/xmlunit-22092008.jar
---------------------------------------------
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/bitmap/PNGRenderer_onthefly.java:44: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public class PNGRenderer_onthefly extends Java2DRenderer {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/bitmap/TIFFRenderer.java:70: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public class TIFFRenderer extends Java2DRenderer {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/java2d/Java2DGraphics2DAdapter.java:37: warning: [deprecation] paintImage(org.apache.fop.render.Graphics2DImagePainter,org.apache.fop.render.RendererContext,int,int,int,int) in org.apache.fop.render.Graphics2DAdapter has been deprecated
    [javac] public class Java2DGraphics2DAdapter extends AbstractGraphics2DAdapter {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/pcl/PCLGraphics2DAdapter.java:42: warning: [deprecation] paintImage(org.apache.fop.render.Graphics2DImagePainter,org.apache.fop.render.RendererContext,int,int,int,int) in org.apache.fop.render.Graphics2DAdapter has been deprecated
    [javac] public class PCLGraphics2DAdapter extends AbstractGraphics2DAdapter {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/pcl/PCLRenderer.java:111: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public class PCLRenderer extends PrintRenderer {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/pdf/PDFGraphics2DAdapter.java:41: warning: [deprecation] paintImage(org.apache.fop.render.Graphics2DImagePainter,org.apache.fop.render.RendererContext,int,int,int,int) in org.apache.fop.render.Graphics2DAdapter has been deprecated
    [javac] public class PDFGraphics2DAdapter extends AbstractGraphics2DAdapter {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/pdf/PDFRenderer.java:124: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public class PDFRenderer extends AbstractPathOrientedRenderer {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/print/PageableRenderer.java:41: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public class PageableRenderer extends Java2DRenderer implements Pageable {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/print/PrintRenderer.java:35: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public class PrintRenderer extends PageableRenderer {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/ps/PSGraphics2DAdapter.java:37: warning: [deprecation] paintImage(org.apache.fop.render.Graphics2DImagePainter,org.apache.fop.render.RendererContext,int,int,int,int) in org.apache.fop.render.Graphics2DAdapter has been deprecated
    [javac] public class PSGraphics2DAdapter extends AbstractGraphics2DAdapter {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/ps/PSRenderer.java:130: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public class PSRenderer extends AbstractPathOrientedRenderer
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/txt/TXTRenderer.java:49: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public class TXTRenderer extends AbstractPathOrientedRenderer {
    [javac]        ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/xml/AbstractXMLRenderer.java:46: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public abstract class AbstractXMLRenderer extends PrintRenderer {
    [javac]                 ^
    [javac] /srv/gump/public/workspace/xml-fop/src/java/org/apache/fop/render/xml/XMLRenderer.java:98: warning: [deprecation] startPageSequence(org.apache.fop.area.LineArea) in org.apache.fop.render.Renderer has been deprecated
    [javac] public class XMLRenderer extends AbstractXMLRenderer {
    [javac]        ^
    [javac] 2 errors
    [javac] 25 warnings

BUILD FAILED
/srv/gump/public/workspace/xml-fop/build.xml:314: Compile failed; see the compiler error output for details.

Total time: 32 seconds
---------------------------------------------

To subscribe to this information via syndicated feeds:
- RSS: http://vmgump.apache.org/gump/public/xml-fop/xml-fop/rss.xml
- Atom: http://vmgump.apache.org/gump/public/xml-fop/xml-fop/atom.xml

============================== Gump Tracking Only ===
Produced by Gump version 2.3.
Gump Run 12000022092008, vmgump:vmgump-public:12000022092008
Gump E-mail Identifier (unique within run) #45.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump]

</description>
    <dc:creator>Jeremias Maerki</dc:creator>
    <dc:date>2008-09-22T12:20:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21819">
    <title>DO NOT REPLY [Bug 45862] New: StackOverflow problem when using FOP in multi threaded environment</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21819</link>
    <description>https://issues.apache.org/bugzilla/show_bug.cgi?id=45862

           Summary: StackOverflow problem when using FOP in multi threaded
                    environment
           Product: Fop
           Version: 0.95
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: blocker
          Priority: P2
         Component: fo tree
        AssignedTo: fop-dev&lt; at &gt;xmlgraphics.apache.org
        ReportedBy: kunitoki&lt; at &gt;gmail.com


while executing a simple pdf generation from a servlet context, there is a
problem of Stack oveflow, but if i do call the same transformation commands
(the same as FOP site examples, but using saxon fo having xslt2 features) a
standalone application it doesn't crash:


Starting Helma in directory /home/kraken/REPOSITORY
Starting HTTP server on port 8090
Starting AJP13 listener on port 8009
Adding to classpath: /home/kraken/REPOSITORY/lib/ext/saxon9sa.jar
Adding to classpath: /home/kraken/REPOSITORY/lib/ext/xmlgraphics-commons.jar
Adding to classpath: /home/kraken/REPOSITORY/lib/ext/fop.jar
Adding to classpath: /home/kraken/REPOSITORY/lib/ext/avalon-framework.jar
Starting Helma 1.6.2 (September 23 2008) on Java 1.5.0_13
[2008/09/23 11:12:28] [INFO] Starting Helma 1.6.2 (September 23 2008) on Java
1.5.0_13
[2008/09/23 11:12:28] [INFO] Setting Helma Home to /home/kororaa/REPOSITORY
[2008/09/23 11:12:28] [INFO] Starting AJP13-Listener on port 0.0.0.0:8009
[2008/09/23 11:12:28] [INFO] Version Jetty/5.1.14
...
[2008/09/23 12:03:11] [DEBUG] Dynamically adding maker for Renderer:
org.apache.fop.render.pdf.PDFRendererMaker
[2008/09/23 12:03:11] [DEBUG] Dynamically adding maker for Renderer:
org.apache.fop.render.ps.PSRendererMaker
[2008/09/23 12:03:11] [DEBUG] Dynamically adding maker for Renderer:
org.apache.fop.render.txt.TXTRendererMaker
[2008/09/23 12:03:11] [DEBUG] Dynamically adding maker for Renderer:
org.apache.fop.render.bitmap.PNGRendererMaker
[2008/09/23 12:03:11] [DEBUG] Dynamically adding maker for Renderer:
org.apache.fop.render.bitmap.TIFFRendererMaker
[2008/09/23 12:03:11] [DEBUG] Dynamically adding maker for Renderer:
org.apache.fop.render.xml.XMLRendererMaker
[2008/09/23 12:03:11] [DEBUG] Dynamically adding maker for Renderer:
org.apache.fop.render.awt.AWTRendererMaker
[2008/09/23 12:03:11] [DEBUG] Dynamically adding maker for Renderer:
org.apache.fop.render.print.PrintRendererMaker
[2008/09/23 12:03:11] [DEBUG] Dynamically adding maker for Renderer:
org.apache.fop.render.afp.AFPRendererMaker
[2008/09/23 12:03:11] [DEBUG] Dynamically adding maker for Renderer:
org.apache.fop.render.pcl.PCLRendererMaker
[2008/09/23 12:03:11] [DEBUG] Dynamically adding maker for FOEventHandler:
org.apache.fop.render.rtf.RTFFOEventHandlerMaker
[2008/09/23 12:03:11] [DEBUG] target-resolution set to: 72.0dpi
(px2mm=0.35277778)
[2008/09/23 12:03:11] [DEBUG] Dynamically adding PDFImageHandler:
org.apache.fop.render.pdf.PDFImageHandlerRawJPEG
[2008/09/23 12:03:11] [DEBUG] Dynamically adding PDFImageHandler:
org.apache.fop.render.pdf.PDFImageHandlerRawCCITTFax
[2008/09/23 12:03:11] [DEBUG] Dynamically adding PDFImageHandler:
org.apache.fop.render.pdf.PDFImageHandlerGraphics2D
[2008/09/23 12:03:11] [DEBUG] Dynamically adding PDFImageHandler:
org.apache.fop.render.pdf.PDFImageHandlerRenderedImage
[2008/09/23 12:03:11] [DEBUG] Dynamically adding PDFImageHandler:
org.apache.fop.render.pdf.PDFImageHandlerXML
[2008/09/23 12:03:11] [DEBUG] userconfig is null
[2008/09/23 12:03:11] [DEBUG] Registering: any,normal,400 under F5
[2008/09/23 12:03:11] [DEBUG] Registering: any,italic,400 under F6
[2008/09/23 12:03:11] [DEBUG] Registering: any,oblique,400 under F6
[2008/09/23 12:03:11] [DEBUG] Registering: any,normal,700 under F7
[2008/09/23 12:03:11] [DEBUG] Registering: any,italic,700 under F8
[2008/09/23 12:03:11] [DEBUG] Registering: any,oblique,700 under F8
[2008/09/23 12:03:11] [DEBUG] Registering: sans-serif,normal,400 under F1
[2008/09/23 12:03:11] [DEBUG] Registering: sans-serif,oblique,400 under F2
[2008/09/23 12:03:11] [DEBUG] Registering: sans-serif,italic,400 under F2
[2008/09/23 12:03:11] [DEBUG] Registering: sans-serif,normal,700 under F3
[2008/09/23 12:03:11] [DEBUG] Registering: sans-serif,oblique,700 under F4
[2008/09/23 12:03:11] [DEBUG] Registering: sans-serif,italic,700 under F4
[2008/09/23 12:03:11] [DEBUG] Registering: SansSerif,normal,400 under F1
[2008/09/23 12:03:11] [DEBUG] Registering: SansSerif,oblique,400 under F2
[2008/09/23 12:03:11] [DEBUG] Registering: SansSerif,italic,400 under F2
[2008/09/23 12:03:11] [DEBUG] Registering: SansSerif,normal,700 under F3
[2008/09/23 12:03:11] [DEBUG] Registering: SansSerif,oblique,700 under F4
[2008/09/23 12:03:11] [DEBUG] Registering: SansSerif,italic,700 under F4
[2008/09/23 12:03:11] [DEBUG] Registering: serif,normal,400 under F5
[2008/09/23 12:03:11] [DEBUG] Registering: serif,oblique,400 under F6
[2008/09/23 12:03:11] [DEBUG] Registering: serif,italic,400 under F6
[2008/09/23 12:03:11] [DEBUG] Registering: serif,normal,700 under F7
[2008/09/23 12:03:11] [DEBUG] Registering: serif,oblique,700 under F8
[2008/09/23 12:03:11] [DEBUG] Registering: serif,italic,700 under F8
[2008/09/23 12:03:11] [DEBUG] Registering: monospace,normal,400 under F9
[2008/09/23 12:03:11] [DEBUG] Registering: monospace,oblique,400 under F10
[2008/09/23 12:03:11] [DEBUG] Registering: monospace,italic,400 under F10
[2008/09/23 12:03:11] [DEBUG] Registering: monospace,normal,700 under F11
[2008/09/23 12:03:11] [DEBUG] Registering: monospace,oblique,700 under F12
[2008/09/23 12:03:11] [DEBUG] Registering: monospace,italic,700 under F12
[2008/09/23 12:03:11] [DEBUG] Registering: Monospaced,normal,400 under F9
[2008/09/23 12:03:11] [DEBUG] Registering: Monospaced,oblique,400 under F10
[2008/09/23 12:03:11] [DEBUG] Registering: Monospaced,italic,400 under F10
[2008/09/23 12:03:11] [DEBUG] Registering: Monospaced,normal,700 under F11
[2008/09/23 12:03:11] [DEBUG] Registering: Monospaced,oblique,700 under F12
[2008/09/23 12:03:11] [DEBUG] Registering: Monospaced,italic,700 under F12
[2008/09/23 12:03:11] [DEBUG] Registering: Helvetica,normal,400 under F1
[2008/09/23 12:03:11] [DEBUG] Registering: Helvetica,oblique,400 under F2
[2008/09/23 12:03:11] [DEBUG] Registering: Helvetica,italic,400 under F2
[2008/09/23 12:03:11] [DEBUG] Registering: Helvetica,normal,700 under F3
[2008/09/23 12:03:11] [DEBUG] Registering: Helvetica,oblique,700 under F4
[2008/09/23 12:03:11] [DEBUG] Registering: Helvetica,italic,700 under F4
[2008/09/23 12:03:11] [DEBUG] Registering: Times,normal,400 under F5
[2008/09/23 12:03:11] [DEBUG] Registering: Times,oblique,400 under F6
[2008/09/23 12:03:11] [DEBUG] Registering: Times,italic,400 under F6
[2008/09/23 12:03:11] [DEBUG] Registering: Times,normal,700 under F7
[2008/09/23 12:03:11] [DEBUG] Registering: Times,oblique,700 under F8
[2008/09/23 12:03:11] [DEBUG] Registering: Times,italic,700 under F8
[2008/09/23 12:03:11] [DEBUG] Registering: Courier,normal,400 under F9
[2008/09/23 12:03:11] [DEBUG] Registering: Courier,oblique,400 under F10
[2008/09/23 12:03:11] [DEBUG] Registering: Courier,italic,400 under F10
[2008/09/23 12:03:11] [DEBUG] Registering: Courier,normal,700 under F11
[2008/09/23 12:03:11] [DEBUG] Registering: Courier,oblique,700 under F12
[2008/09/23 12:03:11] [DEBUG] Registering: Courier,italic,700 under F12
[2008/09/23 12:03:11] [DEBUG] Registering: Symbol,normal,400 under F13
[2008/09/23 12:03:11] [DEBUG] Registering: ZapfDingbats,normal,400 under F14
[2008/09/23 12:03:11] [DEBUG] Registering: Times-Roman,normal,400 under F5
[2008/09/23 12:03:11] [DEBUG] Registering: Times-Roman,oblique,400 under F6
[2008/09/23 12:03:11] [DEBUG] Registering: Times-Roman,italic,400 under F6
[2008/09/23 12:03:11] [DEBUG] Registering: Times-Roman,normal,700 under F7
[2008/09/23 12:03:11] [DEBUG] Registering: Times-Roman,oblique,700 under F8
[2008/09/23 12:03:11] [DEBUG] Registering: Times-Roman,italic,700 under F8
[2008/09/23 12:03:11] [DEBUG] Registering: Times Roman,normal,400 under F5
[2008/09/23 12:03:11] [DEBUG] Registering: Times Roman,oblique,400 under F6
[2008/09/23 12:03:11] [DEBUG] Registering: Times Roman,italic,400 under F6
[2008/09/23 12:03:11] [DEBUG] Registering: Times Roman,normal,700 under F7
[2008/09/23 12:03:11] [DEBUG] Registering: Times Roman,oblique,700 under F8
[2008/09/23 12:03:11] [DEBUG] Registering: Times Roman,italic,700 under F8
[2008/09/23 12:03:11] [DEBUG] Registering:
Computer-Modern-Typewriter,normal,400 under F9
[2008/09/23 12:03:11] [DEBUG] Building formatting object tree
[2008/09/23 12:03:11] [DEBUG] Current heap size: 7229KB
[2008/09/23 12:03:11] [DEBUG] Starting layout
[2008/09/23 12:03:11] [DEBUG] [1]
[2008/09/23 12:03:11] [DEBUG] PLM&gt; flow BPD =792870
[2008/09/23 12:03:11] [DEBUG] start of the next element list is: page=1 col=0
[2008/09/23 12:03:11] [ERROR] null: java.lang.StackOverflowError
java.lang.StackOverflowError
        at java.lang.ThreadLocal.get(ThreadLocal.java:125)
        at sun.misc.FloatingDecimal.developLongDigits(FloatingDecimal.java:312)
        at sun.misc.FloatingDecimal.dtoa(FloatingDecimal.java:549)
        at sun.misc.FloatingDecimal.(FloatingDecimal.java:442)
        at java.lang.StringBuffer.append(StringBuffer.java:365)
        at
org.apache.fop.fo.properties.PercentLength.toString(PercentLength.java:121)
        at java.lang.String.valueOf(String.java:2615)
        at java.lang.StringBuffer.append(StringBuffer.java:220)
        at
org.apache.fop.fo.flow.table.TableColumn.toString(TableColumn.java:233)
        at java.lang.String.valueOf(String.java:2615)
        at java.lang.StringBuffer.append(StringBuffer.java:220)
        at org.apache.fop.datatypes.LengthBase.toString(LengthBase.java:135)
        at java.lang.String.valueOf(String.java:2615)
        at java.lang.StringBuffer.append(StringBuffer.java:220)
        at
org.apache.fop.fo.properties.PercentLength.toString(PercentLength.java:121)
        at java.lang.String.valueOf(String.java:2615)
        at java.lang.StringBuffer.append(StringBuffer.java:220)
        at
org.apache.fop.fo.flow.table.TableColumn.toString(TableColumn.java:233)
        at java.lang.String.valueOf(String.java:2615)
        at java.lang.StringBuffer.append(StringBuffer.java:220)
        at org.apache.fop.datatypes.LengthBase.toString(LengthBase.java:135)
        at java.lang.String.valueOf(String.java:2615)
        at java.lang.StringBuffer.append(StringBuffer.java:220)
        at
org.apache.fop.fo.properties.PercentLength.toString(PercentLength.java:121)
        at java.lang.String.valueOf(String.java:2615)
        at java.lang.StringBuffer.append(StringBuffer.java:220)
        at
org.apache.fop.fo.flow.table.TableColumn.toString(TableColumn.java:233)
        at java.lang.String.valueOf(String.java:2615)
        at java.lang.StringBuffer.append(StringBuffer.java:220)
        at org.apache.fop.datatypes.LengthBase.toString(LengthBase.java:135)
        at java.lang.String.valueOf(String.java:2615)
        at java.lang.StringBuffer.append(StringBuffer.java:220)
        at
org.apache.fop.fo.properties.PercentLength.toString(PercentLength.java:121)
        at java.lang.String.valueOf(String.java:2615)
        at java.lang.StringBuffer.append(StringBuffer.java:220)
        at
org.apache.fop.fo.flow.table.TableColumn.toString(TableColumn.java:233)
        at java.lang.String.valueOf(String.java:2615)
        at java.lang.StringBuffer.append(StringBuffer.java:220)
        at org.apache.fop.datatypes.LengthBase.toString(LengthBase.java:135)
        at java.lang.String.valueOf(String.java:2615)
        at java.lang.StringBuffer.append(StringBuffer.java:220)
        at
org.apache.fop.fo.properties.PercentLength.toString(PercentLength.java:121)
        at java.lang.String.valueOf(String.java:2615)
        ...


It seems a problem in the FOP library, or maybe a clash of some java classe in
path.


</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2008-09-23T10:15:40</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21818">
    <title>[PATCH] - rtf list bracket fix</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21818</link>
    <description>   Hi,

attached patch fix:

- missing bracket in pntxta/pntxtb control word
- \*\listoverride-&gt;listoveride - listoveride is not star control word

Please commit, if patch ready.

  Pavel Kysilka
</description>
    <dc:creator>Pavel Kysilka</dc:creator>
    <dc:date>2008-09-22T19:01:21</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21817">
    <title>Bug report for Fop [2008/09/21]</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21817</link>
    <description>+---------------------------------------------------------------------------+
| Bugzilla Bug ID                                                           |
|     +---------------------------------------------------------------------+
|     | Status: UNC=Unconfirmed NEW=New         ASS=Assigned                |
|     |         OPN=Reopened    VER=Verified    (Skipped Closed/Resolved)   |
|     |   +-----------------------------------------------------------------+
|     |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
|     |   |           MIN=Minor   NOR=Normal    ENH=Enhancement TRV=Trivial |
|     |   |   +-------------------------------------------------------------+
|     |   |   | Date Posted                                                 |
|     |   |   |          +--------------------------------------------------+
|     |   |   |          | Description                                      |
|     |   |   |          |                                                  |
| 1063|New|Nor|2001-03-21|fop does not handle large fo files                |
| 3280|New|Nor|2001-08-27|PCL Renderer doesn't work                         |
| 3824|New|Blk|2001-09-25|MIF option with tables                            |
| 4030|New|Nor|2001-10-08|IOException creating Postscript with graphics on S|
| 4535|New|Maj|2001-10-31|PCL renderer 1.13 not rendering SVG               |
| 5010|New|Enh|2001-11-21|Better error reporting needed                     |
| 5124|New|Maj|2001-11-27|fo:block-container is not rendered properly using |
| 6305|New|Nor|2002-02-07|Using fo:table-and-caption results in empty output|
| 6427|New|Enh|2002-02-13|Adding additional Type 1 fonts problem            |
| 6997|New|Nor|2002-03-09|[PATCH] Row-spanned row data breaks over a page wi|
| 7241|New|Nor|2002-03-19|keep-with-previous, keep-with-next only working on|
| 8003|Ass|Maj|2002-04-12|FopImageFactory never releases cached images      |
| 8463|New|Nor|2002-04-24|SVG clipping in external.fo example doc when rende|
| 8767|Ass|Min|2002-05-03|Image and solid colour background rectangle sizes |
| 9379|New|Nor|2002-05-24|MIF Renderer generates incorrect MIF code         |
|10379|New|Enh|2002-07-01|Improvement to FOP Classloader                    |
|12494|New|Nor|2002-09-10|fop produces pdf file which Acrobat Reader refuses|
|12610|New|Enh|2002-09-13|[PATCH] onLoad Action for PDF documents or how to |
|13586|New|Blk|2002-10-13|fop will not work on linux alpha because jre is br|
|13734|New|Nor|2002-10-17|Hyphenation does not work correctly on long string|
|14248|New|Enh|2002-11-05|51-page FO example, could be added to the samples |
|14352|New|Enh|2002-11-07|It would be nice if FOP could be plugged into popu|
|14356|New|Nor|2002-11-07|*NOT* embedding TrueTypeFont in PDF causes Acrobat|
|14419|New|Enh|2002-11-10|Implement SourceResolver, Image Resolver          |
|14529|New|Nor|2002-11-13|SVG url references do not work                    |
|14679|New|Enh|2002-11-19|Pluggable renderers                               |
|14924|New|Nor|2002-11-28|Table disappears when it ends when the page ends  |
|15020|New|Enh|2002-12-03|Reuse of fo-tree                                  |
|16017|Opn|Nor|2003-01-13|Jpeg's and the PDF Serializer                     |
|16130|New|Nor|2003-01-15|PS-Renderer emits lots of redundant moveto's      |
|16156|New|Nor|2003-01-16|0.20.5rc SVG example does not work                |
|16713|New|Nor|2003-02-03|Hyphenation error in tables                       |
|17369|New|Nor|2003-02-25|Footnote duplication                              |
|17380|New|Nor|2003-02-25|Batik Component will not recognize feXXXX SVG elem|
|17921|New|Nor|2003-03-12|Kerning is broken for standard fonts              |
|18292|New|Nor|2003-03-24|24 bit PNG not displayed correctly                |
|18801|New|Nor|2003-04-08|"visibility" property is not implemented          |
|19228|New|Blk|2003-04-22|[PATCH] Child LayoutContext is null in certain cir|
|19341|Ver|Nor|2003-04-26|leader doesn't work since 0.20.5.rc2              |
|19695|New|Enh|2003-05-06|[PATCH] Allow fox:destination as child of fox:outl|
|19717|New|Enh|2003-05-07|Lets add support for JimiClassesPro.zip to build.x|
|19769|Ass|Enh|2003-05-08|Indefinite page size is not implemented           |
|20280|Ass|Enh|2003-05-27|text-align and text-align-last only partially impl|
|20407|New|Enh|2003-06-02|[PATCH] Configure image caching using the configur|
|20827|New|Enh|2003-06-17|Derive other font styles and weights from normal T|
|21265|Opn|Nor|2003-07-02|referencing a custom font (TTF or Adobe Type 1) fo|
|21905|New|Nor|2003-07-26|large list-item-label bleeds into following block |
|21982|New|Maj|2003-07-30|NullPointer Exception in LazyFont with embedded fo|
|22450|New|Maj|2003-08-15|Unterminated iteration in JPEGReader class        |
|22627|Opn|Nor|2003-08-21|Update mirror/download page HEADER &amp; README (was [|
|24148|New|Nor|2003-10-27|Kerning upsets text-align="end"                   |
|24171|New|Nor|2003-10-28|[PATCH] 1st Attempt at Whole Site PDF             |
|24378|New|Nor|2003-11-04|Minor problem in sample code for embedding        |
|24663|New|Nor|2003-11-12|fo:block space-after property needs fixing        |
|24804|New|Nor|2003-11-18|SVG Text to PS Output generates incorrect outlines|
|25022|New|Nor|2003-11-26|XSL-FO to PCL : images not included               |
|25341|New|Nor|2003-12-08|percentage resolution not being recalculated on di|
|25411|New|Nor|2003-12-10|[WARNING] Error while constructing image from XML |
|25432|Ass|Maj|2003-12-11|Cannot embed the User Defined Characters into the |
|26047|New|Nor|2004-01-11|Space-after value remembered and used on second do|
|26590|New|Nor|2004-02-02|last character width in winansi font is missed    |
|26848|New|Nor|2004-02-11|PNG images using JIMI instead JAI                 |
|27107|New|Maj|2004-02-20|TTF Reader fails                                  |
|27727|New|Maj|2004-03-17|problem displaying Japanese fonts in PDF.         |
|27890|New|Min|2004-03-24|fop.sh doesn't set exit status                    |
|29632|New|Maj|2004-06-17|Rendered reads fonts from disk everytime it render|
|30006|New|Nor|2004-07-09|eps doesn't show up in recent GhostScript versions|
|30214|New|Nor|2004-07-20|PSGraphics2D.drawImage incorrect matrix generated |
|31039|New|Nor|2004-09-03|URL in basic-link is scrambled by encryption      |
|31225|New|Nor|2004-09-14|Need embedded page sequence functionality         |
|31301|New|Nor|2004-09-19|FOP limitation-Summary of columns value at Table F|
|31674|New|Enh|2004-10-12|Allow Print Renderer to select Printer and Tray.  |
|31796|New|Cri|2004-10-20|Fop: Pdf generation dowsn`t work with j2sdk 1.5   |
|32054|New|Enh|2004-11-04|Pluggable area creation: AreaFactory              |
|32100|Ass|Enh|2004-11-07|FOP "Starter Documents"                           |
|32107|New|Cri|2004-11-07|Move FOP wiki to secure                           |
|32201|Opn|Enh|2004-11-12|please, provide a manpage                         |
|32789|New|Cri|2004-12-21|Arabic words are broken for rendering PDF from FOP|
|32970|New|Cri|2005-01-06|Sticking words in generated PDF document          |
|33174|New|Nor|2005-01-20|An unrecognized token'NaN' was found when opening |
|34355|New|Cri|2005-04-07|BufferOverflowException when running SVG2PDF on hu|
|35184|New|Trv|2005-06-02|Error while loading image http://xxx.xx.x/yyyy.tif|
|35500|New|Nor|2005-06-24|Missing .close() call on stream opened for JPEG im|
|35939|New|Nor|2005-07-30|[PATCH] Port of 0.20.5 Driver.java class          |
|35948|New|Enh|2005-07-31|pre-patch for FOrayFont adaptation to Fop         |
|36000|Ver|Maj|2005-08-03|PDF page margins larger, different than PS renderi|
|36011|New|Nor|2005-08-04|Setting word-spacing on justified blocks removes j|
|36238|Ass|Nor|2005-08-18|text-align="justify" doesn't work on custom fonts |
|36395|New|Nor|2005-08-27|Common Border and Background Properties not suppor|
|36408|Opn|Min|2005-08-29|FOP hyphenation splits consecutive digits onto sep|
|36533|Opn|Nor|2005-09-07|Incorrect ipd and twsadjust settings              |
|36935|New|Blk|2005-10-05|table-layout="fixed" and width="auto", but auto-la|
|36977|New|Nor|2005-10-09|[PATCH]TextLayoutManager CJK line break           |
|37108|New|Nor|2005-10-16|Patch for 0.20.5 to work with jdk1.5              |
|37114|New|Min|2005-10-17|No error message on illegal/unknown values on a pr|
|37116|New|Enh|2005-10-17|ESC POS Renderer                                  |
|37136|Opn|Nor|2005-10-18|external-graphic dimensions and rendering         |
|37236|Ass|Nor|2005-10-25|[PATCH] Fix gradients and patterns                |
|37305|Ass|Nor|2005-10-30|Added deviceDPI to PDFDocumentGraphics2D          |
|37505|New|Cri|2005-11-15|SEVERE FOP Exceptions should be thrown!           |
|37579|Ass|Nor|2005-11-21|footnotes within tables and listsl get lost       |
|38121|New|Nor|2006-01-04|border-separation disturbs table layout           |
|38244|New|Nor|2006-01-12|table-column and number-columns-spanned (prepatch)|
|38264|Ass|Nor|2006-01-13|Hyphenation does not play well with preserved line|
|38639|Inf|Maj|2006-02-14|PDF not opening                                   |
|38821|Opn|Nor|2006-03-01|The manifest file no longer has a Class-Path entry|
|38862|New|Maj|2006-03-06|No ImageReader for this type of image             |
|38880|Ass|Nor|2006-03-07|Right border on fo:inline missing when hyphenate=t|
|39034|New|Nor|2006-03-20|page-number-citation : the text after overlaps the|
|39118|Ass|Nor|2006-03-27|[PATCH] Handling of page-number-citation-last     |
|39184|New|Nor|2006-04-03|soft page break on new line                       |
|39215|New|Nor|2006-04-05|[PATCH] To render GIF external images in RTF outpu|
|39261|New|Min|2006-04-10|Rasterized paints upside down if coordinate system|
|39293|New|Enh|2006-04-13|FOP can't support bold,italic for chinese/other mu|
|39412|Ass|Nor|2006-04-26|wrong URL referred from FOP: Bugs and Other Tracka|
|39422|New|Nor|2006-04-27|[PATCH] Fop fails to render non-ascii characters i|
|39725|New|Maj|2006-06-05|page-position="last" and spans doesn't output all |
|39777|Ass|Enh|2006-06-11|[PATCH] GSoC: floats implementation               |
|39840|Ass|Cri|2006-06-20|Multi page table fails with an endless loop error |
|39927|Ass|Nor|2006-06-28|Building FOP with GCJ                             |
|39968|New|Nor|2006-07-05|Absolutely positioned block-container affects the |
|40112|New|Nor|2006-07-26|keep-with-previous.within-page not working        |
|40271|Ass|Nor|2006-08-17|[PATCH] auto table layout -- dirty draft          |
|40288|Opn|Nor|2006-08-18|&lt;base&gt; url requires "/", failes otherwise         |
|40464|New|Nor|2006-09-11|Improve handling of OpenType fonts                |
|40465|New|Nor|2006-09-11|Obtain some OpenType fonts for testing            |
|40468|New|Nor|2006-09-11|Use OpenType fonts from the STIX fonts project?   |
|40529|New|Nor|2006-09-17|[PATCH] Possible bug in PSTextRenderer            |
|40557|Ass|Nor|2006-09-20|PDF encryption and Acrobat 5                      |
|40676|Ass|Enh|2006-10-04|png graphics are expanded/uncompressed in pdf caus|
|40699|New|Nor|2006-10-06|Invalid PDF for certain numerical values in SVG li|
|40798|New|Maj|2006-10-19|page-position="last" doesn't work for 1 page docum|
|40830|Inf|Nor|2006-10-27|Pb rendering SVG in fo:instream-foreign-object wit|
|41062|New|Nor|2006-11-28|Defect reading hyphenation patterns               |
|41122|New|Nor|2006-12-07|[PATCH] flow-map 1.1 support                      |
|41149|Ass|Nor|2006-12-11|PNG causes NPE for RTF output                     |
|41251|Opn|Nor|2006-12-28|ArrayIndexOutOfBoundsException in multithreading e|
|41272|Opn|Nor|2006-12-31|Memory problem in 0.93                            |
|41295|New|Min|2007-01-04|Examples cause fatals and excessive warnings      |
|41300|New|Min|2007-01-05|FATAL error raised for proportional-column-width()|
|41377|Ver|Blk|2007-01-16|Alignment (end, right) does not work in table-cell|
|41379|New|Maj|2007-01-16|VerifyError on FopFactory.newInstance() using Tomc|
|41380|New|Min|2007-01-16|Content in tables affecting conditional spacing of|
|41389|New|Maj|2007-01-17|Rtf numbered lists without numbers                |
|41440|Ass|Nor|2007-01-23|PDFSVGHandler causes missing resource bundle      |
|41443|New|Nor|2007-01-23|[PATCH] FOP can't handle mixed-case hyphenation ex|
|41445|Inf|Nor|2007-01-23|no searchable text in pdf for &lt;image xlink:href to|
|41633|New|Nor|2007-02-16|*-progression-dimension on inlines not implemented|
|41637|New|Nor|2007-02-16|in-line border-end does not always get rendered   |
|41649|New|Cri|2007-02-16|fop0.93 - Does not generate svg line or svg rectab|
|41657|New|Nor|2007-02-19|No support for SVG 1.2 in instream-foreign-object |
|41667|New|Nor|2007-02-21|ImageProvider should be overridable in ImageFactor|
|41812|New|Trv|2007-03-11|fillRect writes wrong command                     |
|41822|New|Nor|2007-03-12|Generated example from \examples\fo\basic\list.fo |
|41918|New|Nor|2007-03-21|Thin Lines in AWTRenderer are not drawn           |
|41942|New|Nor|2007-03-25|fo:leader elements are ignored when converted to R|
|41951|New|Nor|2007-03-26|External graphic doesnt size properly with height |
|41959|New|Nor|2007-03-27|External links are broken if pdf is encryped      |
|41978|New|Maj|2007-03-28|Rogue entries on a blank page                     |
|41995|New|Enh|2007-03-30|[PATCH] Barcode Support for AFP Renderer          |
|41999|New|Nor|2007-03-30|Unassigned code points cause ArrayIndexOutOfBounds|
|42028|New|Nor|2007-04-02|Incorrect rendering of GIF images                 |
|42034|New|Nor|2007-04-03|basic-link doesn't cover all text inside          |
|42049|New|Nor|2007-04-04|RTF (and PDF) tables incorrectly handle margin-lef|
|42136|New|Nor|2007-04-16|PDFDocumentGraphics2D.translate() does not work co|
|42162|New|Nor|2007-04-18|hyphenation inside block in FOP works only for pur|
|42306|New|Nor|2007-05-01|[PATCH] AWT Viewer does not track page numbers in |
|42307|New|Cri|2007-05-01|[PATCH] Java2d renderers render arabic text incorr|
|42330|New|Nor|2007-05-03|Tibetan characters not rendered correctly in PDF  |
|42352|New|Nor|2007-05-08|Problem with tiff gray render                     |
|42374|New|Nor|2007-05-09|List label and bodyindentation incorrect in RTF   |
|42380|New|Nor|2007-05-10|FOP chokes on jar-embedded class path             |
|42501|New|Nor|2007-05-23|basic-link not sizing correctly for external-graph|
|42577|Ass|Nor|2007-06-04|font-stretch [PATCH]                              |
|42600|New|Nor|2007-06-06|can not create page break in RTF                  |
|42601|New|Nor|2007-06-06|Image/text misalignment inside before-region table|
|42616|Opn|Nor|2007-06-08|fop bash script still broken under cygwin when cur|
|42617|New|Nor|2007-06-08|DOM tree cannot be built for a SVG graphic embedde|
|42685|Ass|Nor|2007-06-17|Printer restarts after sucessfull printing Postscr|
|42769|New|Nor|2007-06-28|Wrong border resolution in a table when there are |
|42779|Ass|Nor|2007-06-29|page-position and force-page-count with different |
|42808|New|Nor|2007-07-04|table footer overflows region-body area without wa|
|42845|Inf|Nor|2007-07-10|Printing error. Prints charater+1.                |
|42861|Ass|Nor|2007-07-11|[PATCH] Font detection only works for first docume|
|42868|New|Nor|2007-07-12|font-weight on custom fonts                       |
|43166|New|Nor|2007-08-20|unclosed border on nested inlines                 |
|43226|Inf|Maj|2007-08-28|images in pdf are not displayed correctly with 0.9|
|43237|New|Nor|2007-08-29|IndexOutOfBoundsException                         |
|43357|New|Min|2007-09-11|PDFGraphics2D addImage method: image in PDF look a|
|43416|New|Nor|2007-09-18|content not rendered after a break-before="column"|
|43474|Ass|Nor|2007-09-25|wrap-option="wrap" doesn't work                   |
|43506|New|Nor|2007-09-28|NPE using a Tiff Image                            |
|43525|New|Nor|2007-10-01|"background-position" shorthand is not processed p|
|43570|New|Cri|2007-10-08|field ATTRIB_ROW_PADDING not found                |
|43651|New|Nor|2007-10-18|NPE without manually clearing image cache         |
|43722|New|Nor|2007-10-29|arabic character isssue                           |
|43739|New|Nor|2007-10-30|PDF table of contents generated with incorrect pag|
|43808|New|Cri|2007-11-07|Apache FOP in a Servlet fails to work after upgrad|
|43844|New|Maj|2007-11-12|Extra blank lines added upon weird combinations of|
|43940|New|Min|2007-11-22|Faster method for double formatting               |
|43962|New|Nor|2007-11-26|OutOfMemoryError while auto-detecting fonts       |
|44023|New|Nor|2007-12-05|An empty fo:block artificially breaks a block-stac|
|44024|Ass|Nor|2007-12-05|About AFP renderer Issues when i try to using Aria|
|44160|Ass|Cri|2008-01-02|IndexOutOfBoundsException when creating pdf       |
|44190|New|Cri|2008-01-09|&lt;fo:block span="none"&gt; : textblock is missing on l|
|44320|New|Nor|2008-01-29|Missing before/after border when break set on a ta|
|44324|New|Nor|2008-01-29|vertical-align or baseline-shift In table-cells ca|
|44328|New|Nor|2008-01-30|widows not respected when linefeed-treatment="pres|
|44358|New|Maj|2008-02-05|OufOfMem                                          |
|44393|Opn|Nor|2008-02-11|Wrong fo.Constant values used for break class     |
|44412|Inf|Nor|2008-02-13|Missing border-after when break-after set on a blo|
|44434|New|Cri|2008-02-15|FO java Memory Error                              |
|44452|New|Cri|2008-02-19|last upgrades don't render older fop xml files    |
|44460|Ass|Enh|2008-02-21|[PATCH] PDF Embedded files implementation         |
|44489|Ass|Enh|2008-02-26|AFP Renderer: Implement break-out mechanism to sup|
|44490|Ass|Nor|2008-02-26|AFP Renderer: Support for clipping is missing     |
|44507|New|Nor|2008-02-29|PCL Renderer doesn't clip background images       |
|44545|Inf|Nor|2008-03-06|Keep together do not work correctly on spanning ta|
|44616|New|Nor|2008-03-17|Merging algorithm for tables properly works only f|
|44634|Ass|Enh|2008-03-19|implement show-destination for fo:basic-link      |
|44744|New|Nor|2008-04-03|PDFGraphics2D.drawString(AttributedCharacterIterat|
|44826|New|Nor|2008-04-15|last-page master reference interfered with span al|
|44885|Ass|Enh|2008-04-27|fo:inline-container implementation                |
|44920|Ass|Nor|2008-05-02|nested, multi-page tables and keep-with-previous  |
|45027|Inf|Nor|2008-05-18|Color 'blue' does not render correctly when 'fo:ex|
|45047|Ass|Nor|2008-05-20|Fixed row height not taken into account if the row|
|45070|Ass|Nor|2008-05-23|Spurious WARNING on span="inherit"                |
|45079|Ass|Nor|2008-05-27|multi page table with marker                      |
|45097|Ass|Nor|2008-05-29|Questionable white-space-treatment behavior       |
|45104|New|Nor|2008-05-30|Possible Thread Safety Problem in FOP 0.93        |
|45113|Ass|Enh|2008-06-01|[PATCH] Adding PDF Launch Action                  |
|45134|Ass|Nor|2008-06-05|FOP unwarranted page split on table with numbre-ro|
|45159|New|Nor|2008-06-07|fop buzzed on footnotes near page break           |
|45237|Ass|Nor|2008-06-19|Call order of FOEventHandler method is incorrect  |
|45306|Ass|Nor|2008-06-29|fo:instream-foreign-object in fo:marker does not w|
|45307|New|Nor|2008-06-29|fo:block-container height issue                   |
|45342|New|Nor|2008-07-04|AFP Renderer does not properly handle AFP fonts wi|
|45351|Ass|Nor|2008-07-07|Unnecessary hyphenation, swallowed characters     |
|45366|New|Enh|2008-07-08|Unable to create column break in RTF using FOP    |
|45390|New|Nor|2008-07-13|PDF Extensions - Prototype                        |
|45454|New|Nor|2008-07-22|Investigate the adoption of Apache Commons CLI    |
|45604|Inf|Nor|2008-08-08|Duplicate prints                                  |
|45702|Ass|Nor|2008-08-28|Forced break-after and/or space-after causes unres|
|45715|New|Nor|2008-08-30|break-before not respected on blocks nested in inl|
|45733|New|Nor|2008-09-02|incorrect line height for mixed font content      |
|45759|New|Enh|2008-09-08|[PATCH] Internal PDF links from included SVG graph|
|45809|New|Nor|2008-09-15|PNGs are rendered with dull colors                |
|45821|New|Nor|2008-09-16|AFP Renderer doesn't perform Image Clipping       |
|45822|New|Nor|2008-09-16|AFP Renderer: Minor border Painting Inconsistencie|
+-----+---+---+----------+--------------------------------------------------+
| Total  249 bugs                                                           |
+---------------------------------------------------------------------------+

</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2008-09-22T06:08:12</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21807">
    <title>DO NOT REPLY [Bug 45842] New: FOP_OPTS is not used by fop.bat and fop.cmd</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21807</link>
    <description>https://issues.apache.org/bugzilla/show_bug.cgi?id=45842

           Summary: FOP_OPTS is not used by fop.bat and fop.cmd
           Product: Fop
           Version: 1.0dev
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Keywords: PatchAvailable
          Severity: normal
          Priority: P3
         Component: general
        AssignedTo: fop-dev&lt; at &gt;xmlgraphics.apache.org
        ReportedBy: carsten.siedentop&lt; at &gt;guug.de


Created an attachment (id=22609)
 --&gt; (https://issues.apache.org/bugzilla/attachment.cgi?id=22609)
patch 

The environment variable FOP_OPTS is not used by the batch files
fop.bat and fop.cmd

In compliance to fop.sh I changed fop.bat AND fop.cmd. 
Both fixes were successfully tested with the current source 
version based on SVN from date 20080918 and also tested with the 
current stable version 0.95.

You can reproduce the bug with any huge .xsl-fo file or .fo file starting FOP
under Windows with fop.bat.


The patch is attached.

Carsten Siedentop


</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2008-09-19T09:15:04</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.xml.fop.devel/21795">
    <title>DO NOT REPLY [Bug 45835] New: fop massively scales up some jpeg images in pdfs</title>
    <link>http://comments.gmane.org/gmane.text.xml.fop.devel/21795</link>
    <description>https://issues.apache.org/bugzilla/show_bug.cgi?id=45835

           Summary: fop massively scales up some jpeg images in pdfs
           Product: Fop
           Version: 0.95
          Platform: PC
               URL: https://bugzilla.redhat.com/show_bug.cgi?id=461915
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: pdf
        AssignedTo: fop-dev&lt; at &gt;xmlgraphics.apache.org
        ReportedBy: langel&lt; at &gt;redhat.com


Description of problem:

When using fop to create a PDF document from DocBook XML, some (but not most)
JPEG images are scaled up instead of being shown at 100%. In this test case,
this results in only a small part of the image being shown on the page.

This image was created from a .png (which had transparency, I think, in case
that is interesting), with imagemagick's convert command, and then scaled down
with imagemagick's "mogrify --resize 450x450" command. It seems to be that
resizing that made an image that causes problems for fop, though fop has no
problem with other images that were processed in the same way.

Other applications, such as eog, have no problem with this file.

(I did the conversion to JPEG because of bug #461740, and I did the resizing
because I see no other way to tell fop, or the DocBook XSL, to fit the images
on the page without cropping.)


Steps to Reproduce:

1. Unpack this tarball:
http://www.murrayc.com/temp/docbook_fop_jpeg_test.tar.gz
(I would attach it but that does not work in this bugzilla for tarballs.)

2. cd into the directory

3. Do:
xsltproc -o flumotion.fo -xinclude --catalogs
http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl flumotion.xml 

4: Do:
fop -fo flumotion.fo -pdf flumotion.pdf

The tarballs contains the generated PDF so you can see the result without even
doing that.


</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2008-09-18T16:39:22</dc:date>
  </item>
  <textinput about="http://search.gmane.org/?group=$group=gmane.text.xml.fop.devel">
    <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.devel</link>
  </textinput>
</rdf:RDF>
