aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix the computation of cells' IPD when they contain children with forced breaks.Vincent Hennebert2007-04-203-84/+79
| | | | | | | In such cases TableCellLM.getNextKnuthElements was called several times, and thus the borders/paddings of the cell were substracted several times from the IPD. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@530724 13f79535-47bb-0310-9956-ffa450edef68
* Move out all statistics/debug related code into an inner Statistics class.Vincent Hennebert2007-04-201-122/+153
| | | | | | | Patch submitted by Adrian Cumiskey (fop-dev AT cumiskey DOT com) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@530682 13f79535-47bb-0310-9956-ffa450edef68
* I messed up the RDF. Fixed now.Jeremias Maerki2007-04-201-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@530681 13f79535-47bb-0310-9956-ffa450edef68
* Bugfix: update dx also for grid units having no border, in the addAreas methodVincent Hennebert2007-04-191-31/+29
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@530469 13f79535-47bb-0310-9956-ffa450edef68
* - remove call to addPadding in TraitSetter.addCollapsingBordersVincent Hennebert2007-04-192-2/+2
| | | | | | | - make the call explicit in TableCellLM, only when necessary. That is, areas holding borders for spanning cells in collapsing mode don't need to have padding set git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@530445 13f79535-47bb-0310-9956-ffa450edef68
* Fix the handling of forced breaks which were sometimes counted twice.Vincent Hennebert2007-04-182-16/+88
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@530040 13f79535-47bb-0310-9956-ffa450edef68
* Extract the logic for advancing to the next grid row, from the getNextStep ↵Vincent Hennebert2007-04-181-53/+56
| | | | | | method to a new one. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@529930 13f79535-47bb-0310-9956-ffa450edef68
* ... and correct the test for early returning if stepFound is falseVincent Hennebert2007-04-181-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@529926 13f79535-47bb-0310-9956-ffa450edef68
* Replace the seqCount integer with a stepFound boolean in the getNextStep methodVincent Hennebert2007-04-181-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@529921 13f79535-47bb-0310-9956-ffa450edef68
* Replace the array of forced breaks with a single boolean, which should be ↵Vincent Hennebert2007-04-181-12/+4
| | | | | | enough. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@529920 13f79535-47bb-0310-9956-ffa450edef68
* - add a columnCount field for clarityVincent Hennebert2007-04-171-19/+19
| | | | | | | - remove unneeded parameter from the getNextStep method git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@529670 13f79535-47bb-0310-9956-ffa450edef68
* Make the fop.layoutengine.disabled property work with ↵Vincent Hennebert2007-04-171-0/+1
| | | | | | fop.layoutengine.starts-with git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@529667 13f79535-47bb-0310-9956-ffa450edef68
* Style only: fix indentationVincent Hennebert2007-04-171-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@529544 13f79535-47bb-0310-9956-ffa450edef68
* - add svn:keywords and svn:eol-style propertiesVincent Hennebert2007-04-171-41/+41
| | | | | | | - style touch up git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@529507 13f79535-47bb-0310-9956-ffa450edef68
* Added sorting of the list of named destinations (necessary to have more than ↵Jay Bryant2007-04-111-13/+17
| | | | | | one destination in a document, unless you get lucky and have them in the proper order by coincidence) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@527380 13f79535-47bb-0310-9956-ffa450edef68
* Created a comparator for named destinations, to enable sorting the list of ↵Jay Bryant2007-04-111-0/+41
| | | | | | destinations. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@527379 13f79535-47bb-0310-9956-ffa450edef68
* Marking myself inactive, new job means I'll most probably not work on FOP in ↵Bertrand Delacretaz2007-04-091-6/+1
| | | | | | the next few months git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@526711 13f79535-47bb-0310-9956-ffa450edef68
* Added a PDFGoTo to the PDFDestination handler, so that Destinations properly ↵Jay Bryant2007-04-061-1/+5
| | | | | | jump to the page referenced by the PDFGoTo. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@526315 13f79535-47bb-0310-9956-ffa450edef68
* Fixes for issues introduced with fox:destination:Jeremias Maerki2007-04-046-123/+52
| | | | | | | | DestinationElementMapping masks ExtensionElementMapping. That caused the tests for widow/orphan extension on tables to fail. Improved Block child validation code (will need to be done for all FOs where fox:destination should be valid. Currently works only as child of fo:block or above fo:page-sequence where no layout managers are constructed. No LMMaker for fox:destination. Improved the handling there so adding the extension element to the list there isn't necessary. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@525526 13f79535-47bb-0310-9956-ffa450edef68
* Allow for the case where a block-container occurs inside an inlineSimon Pepping2007-04-031-3/+7
| | | | | | | FO. This solves bug 42024. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@525253 13f79535-47bb-0310-9956-ffa450edef68
* Add a "new committer" entry for Jay in the news file. A bit late, sorry Jay!Vincent Hennebert2007-04-031-0/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@525089 13f79535-47bb-0310-9956-ffa450edef68
* No change; just add svn:keywords and svn:Id properties on new filesVincent Hennebert2007-04-037-651/+651
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@525081 13f79535-47bb-0310-9956-ffa450edef68
* - fix minor checkstyle issuesVincent Hennebert2007-04-038-8/+67
| | | | | | | | - add missing headers - add an entry in status.xml for the new named destinations feature git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@525078 13f79535-47bb-0310-9956-ffa450edef68
* New class to support named destinationsJay Bryant2007-04-021-0/+112
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@524800 13f79535-47bb-0310-9956-ffa450edef68
* In collapsing-border model, tables have no padding and borders are ↵Vincent Hennebert2007-04-021-2/+4
| | | | | | determined at the cell level. Disable addPendingMarks in such a case. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@524759 13f79535-47bb-0310-9956-ffa450edef68
* changes to support named destinationsJay Bryant2007-04-011-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@524608 13f79535-47bb-0310-9956-ffa450edef68
* changes to support named destinationsJay Bryant2007-04-011-1/+11
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@524607 13f79535-47bb-0310-9956-ffa450edef68
* changes to support named destinationsJay Bryant2007-04-016-10/+481
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@524606 13f79535-47bb-0310-9956-ffa450edef68
* changes to support named destinationJay Bryant2007-04-011-0/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@524605 13f79535-47bb-0310-9956-ffa450edef68
* changes to support named destinationJay Bryant2007-04-011-1/+23
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@524604 13f79535-47bb-0310-9956-ffa450edef68
* changes to support named destinationJay Bryant2007-04-011-2/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@524603 13f79535-47bb-0310-9956-ffa450edef68
* changes to support named destinationJay Bryant2007-04-013-0/+171
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@524602 13f79535-47bb-0310-9956-ffa450edef68
* changes to support named destinationJay Bryant2007-04-013-5/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@524601 13f79535-47bb-0310-9956-ffa450edef68
* changes to support named destinationJay Bryant2007-04-011-0/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@524600 13f79535-47bb-0310-9956-ffa450edef68
* Removed misleading comment.Jeremias Maerki2007-04-011-5/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@524578 13f79535-47bb-0310-9956-ffa450edef68
* Bugfix for keep-with-next inside tables:Jeremias Maerki2007-04-013-0/+79
| | | | | | Once a keep-with-next was set inside a table, the FO following the table would always be glued to the previous table. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@524571 13f79535-47bb-0310-9956-ffa450edef68
* - fix the painting of borders for spanning cells in collapsing modelVincent Hennebert2007-03-303-97/+129
| | | | | | | | - rename gridUnit into primaryGridUnit in TableCellLM for clarity - fix some checkstyle issues git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@524062 13f79535-47bb-0310-9956-ffa450edef68
* Add explicit border-collapse="separate" property in preparation for the ↵Vincent Hennebert2007-03-301-4/+4
| | | | | | implementation of the border-collapsing model git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@524014 13f79535-47bb-0310-9956-ffa450edef68
* minor typo fixClay Leeds2007-03-291-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@523562 13f79535-47bb-0310-9956-ffa450edef68
* Don't log a stacktrace when a JPEG is encountered that has a bad ICC profile ↵Jeremias Maerki2007-03-281-3/+8
| | | | | | | | and give a nicer warning message. Log the event when a CMYK JPEG with an APPE marker is encountered. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@523452 13f79535-47bb-0310-9956-ffa450edef68
* Replace deprecated addBorders method with the new ones in addAreasVincent Hennebert2007-03-281-2/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@523374 13f79535-47bb-0310-9956-ffa450edef68
* Fix typo in RowPainter property: svn:kewords -> svn:keywordsVincent Hennebert2007-03-280-0/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@523353 13f79535-47bb-0310-9956-ffa450edef68
* TableRowIterator:Vincent Hennebert2007-03-283-119/+121
| | | | | | | | | | | - bugfix: add the correct grid unit for a col span RowPainter.addAreasAndFlushRow: - substract a part of this method into another method - avoid calling it twice by properly resetting lastRow - simplify it thanks to the previous point and the bugfix above git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@523349 13f79535-47bb-0310-9956-ffa450edef68
* Factorize in a method the code handling TableContentPosition elements, in ↵Vincent Hennebert2007-03-271-22/+22
| | | | | | TableContentLayoutManager. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@522908 13f79535-47bb-0310-9956-ffa450edef68
* - add border-collapse="separate" to the properties of tables in some ↵Vincent Hennebert2007-03-272-257/+257
| | | | | | | | | testcases, in preparation for the soon-to-be-enabled border-collapsing model - fix svn keywords for region_display-align_table.xml git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@522907 13f79535-47bb-0310-9956-ffa450edef68
* Added an Area of Expertise for Jay BryantJay Bryant2007-03-241-0/+14
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@522061 13f79535-47bb-0310-9956-ffa450edef68
* Some more comments for RowPainter.Jeremias Maerki2007-03-233-1/+102
| | | | | | Additional test that checks that no cell paints more than one area in that case. Because if you remove one or more of the checks now newly commented, you get multiple areas. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@521744 13f79535-47bb-0310-9956-ffa450edef68
* Better document some of the code in RowPainter.Jeremias Maerki2007-03-232-8/+25
| | | | | | Added a check in table-cell_number-rows-spanned_bug38397.xml which is the reason for one of the if-branches in RowPainter. It wan't tested previously so that if-branch could easily be mistaken to be useless. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@521713 13f79535-47bb-0310-9956-ffa450edef68
* Avoid an IndexOutOfBoundsException when more columns are used than are ↵Jeremias Maerki2007-03-232-2/+83
| | | | | | specified even though this is illegal with fixed table layout. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@521640 13f79535-47bb-0310-9956-ffa450edef68
* Small improvements in the SpaceResolver class:Vincent Hennebert2007-03-221-3/+3
| | | | | | | | - constructor made private as it shouldn't be called by other classes - inner classes made static; they are candidate for later becoming top-level classes git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@521185 13f79535-47bb-0310-9956-ffa450edef68