aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Very minor edits to Bookmark handling code.Glen Mazza2004-12-231-3/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198207 13f79535-47bb-0310-9956-ffa450edef68
* Fixed the NPE for fo:title in FOText.createBlockPointers by returningSimon Pepping2004-12-222-30/+29
| | | | | | | | | | | | | early. Fixed the absence of output for fo:title: In ContentLM.fillArea, replace curLM.getNextBreakPoss with getNextKnuthElements, BreakPossIter with KnuthPossIter. Copied the line parameter calculations from LineLM.makeLineBreakPosition. This is only a rough patch: leaders, external graphics, page numbers cause null pointer exceptions. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198206 13f79535-47bb-0310-9956-ffa450edef68
* Removed instances of InlineStackingLayoutManager. Created a new FOSimon Pepping2004-12-2210-160/+142
| | | | | | | | | node class, InlineLevel, a subclass of FObjMixed, a base class for several inline-level FObj: Inline, Leader, Title. The InlineLayoutManager constructor requires an FObj of this type. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198205 13f79535-47bb-0310-9956-ffa450edef68
* Implemented cloning and reparenting of the subtree under a marker toSimon Pepping2004-12-215-39/+173
| | | | | | | | | | | | | | | | | | | | | | | | the retrieving retrieve-marker. The FO nodes are cloned. The new subtree is attached to the RetrieveMarker object. The property lists are not cloned. The subtree of property lists is attached to the property list of the RetrieveMarker object. This is only needed for the binding of the FO nodes. After that a subsequent retrieve-marker may reparent the property lists. Removed Marker's reference to its property list. In Marker.endOfNode() the parent of the property lists of the direct children of marker is reset to null. FOText nodes are not mapped to the Marker's property list in Marker. This allows the Marker's property list and its ancestors to be GC'ed. FOText nodes use the parent FO node's property list or the RetrieveMarker's property list for binding. TODO: Block.handleWhiteSpace is not applied to text in retrieve-marker. TODO: White space treatment around retrieve-marker is incorrect. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198204 13f79535-47bb-0310-9956-ffa450edef68
* Moved the (upcoming) fo:bookmark-tree construction code from AreaTreeHandlerGlen Mazza2004-12-172-54/+54
| | | | | | | to the BookmarkData object. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198203 13f79535-47bb-0310-9956-ffa450edef68
* More code commenting and minor cleanup of bookmark/Resolvable/ATH code.Glen Mazza2004-12-169-59/+45
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198202 13f79535-47bb-0310-9956-ffa450edef68
* PR:Glen Mazza2004-12-162-28/+15
| | | | | | | | | | | Obtained from: Submitted by: Reviewed by: Removed Runnable interface from PSLM; new method "activateLayout()" combines former run() and doLayout() methods in PSLM. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198201 13f79535-47bb-0310-9956-ffa450edef68
* PR:Glen Mazza2004-12-143-28/+46
| | | | | | | | | | Obtained from: Submitted by: Reviewed by: AreaTreeModel detached from BookmarkData; more code commenting. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198200 13f79535-47bb-0310-9956-ffa450edef68
* Modified pdfoutline to have two page sequences--makes it more useful forGlen Mazza2004-12-131-0/+12
| | | | | | | testing. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198199 13f79535-47bb-0310-9956-ffa450edef68
* Moved PDF bookmark creation to endDocument(). (Fixed bug, was beingGlen Mazza2004-12-121-1/+8
| | | | | | | created after each page sequence in document.) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198198 13f79535-47bb-0310-9956-ffa450edef68
* Remove unused import statements.Finn Bock2004-12-106-11/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198197 13f79535-47bb-0310-9956-ffa450edef68
* * created a new method which is called only once by ↵Luca Furini2004-12-091-108/+240
| | | | | | | | | | | | LineLM.getNextBreakPoss() and subsequently calls findBreakingPoints() with different parameters until a set of breaking point is found * renamed lastDeactivatedNode -> bestDeactivatedNode, and updated only if the node to deactivate is "better" than the old one (may need some fine-tuning) * instead of the fallback() method, which created only one lineBreakPosition, a new algorithm is used if Knuth's fails git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198196 13f79535-47bb-0310-9956-ffa450edef68
* PR:Glen Mazza2004-12-091-1/+1
| | | | | | | | | | Obtained from: Submitted by: Reviewed by: Moved bookmark creation to after end of document processing. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198195 13f79535-47bb-0310-9956-ffa450edef68
* Make RTF output human-friendly by inserting line feeds.Jeremias Maerki2004-12-0810-13/+85
| | | | | | | Adding support for table cell padding. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198194 13f79535-47bb-0310-9956-ffa450edef68
* building and publishing the docs without forrestbotChristian Geisert2004-12-081-9/+40
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198193 13f79535-47bb-0310-9956-ffa450edef68
* Removed RetrieveMarkerLM. The LMs of the marker children are attachedSimon Pepping2004-12-076-243/+46
| | | | | | | | in the LM tree as the direct children of the LM of the parent of the RetrieveMarker. This patch solves bug 32253. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198192 13f79535-47bb-0310-9956-ffa450edef68
* Removing inactiveList, which is useless.Luca Furini2004-12-061-7/+4
| | | | | | | Thanks to Finn Bock for pointing this out. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198191 13f79535-47bb-0310-9956-ffa450edef68
* Using the constant LineLayoutManager.DEFAULT_SPACE_WIDTH instead of the ↵Luca Furini2004-12-061-4/+4
| | | | | | font-dependant wordSpaceIPD.opt when creating auxiliary glue items for start and end alignment git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198190 13f79535-47bb-0310-9956-ffa450edef68
* PR:Glen Mazza2004-12-061-1/+1
| | | | | | | | | | Obtained from: Submitted by: Reviewed by: Reverted previous change; unintended check-in of this file. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198189 13f79535-47bb-0310-9956-ffa450edef68
* Comments addedLuca Furini2004-12-064-4/+151
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198188 13f79535-47bb-0310-9956-ffa450edef68
* PR:Glen Mazza2004-12-067-55/+57
| | | | | | | | | | Obtained from: Submitted by: Reviewed by: Removed pretend "resolution" of still-unresolved idrefs at ATH.endDocument(). This was apparently done to force page rendering of remaining unresolved pages at RenderPagesModel.checkPreparedPages() (which requires a page to be completely resolved before rendering). Replacement code keeps unresolved idrefs unresolved, but explicitly forces page rendering for calls to checkPreparedPages() that originate from ATH.endDocument(). Comments welcome. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198187 13f79535-47bb-0310-9956-ffa450edef68
* * added Mac OS X CVS client infoClay Leeds2004-12-061-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198186 13f79535-47bb-0310-9956-ffa450edef68
* * changed my address to clay.at.apache.orgClay Leeds2004-12-061-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198185 13f79535-47bb-0310-9956-ffa450edef68
* PR:Glen Mazza2004-12-045-20/+22
| | | | | | | | | | Obtained from: Submitted by: Reviewed by: More code commenting. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198184 13f79535-47bb-0310-9956-ffa450edef68
* PR:Glen Mazza2004-12-024-15/+20
| | | | | | | | | | Obtained from: Submitted by: Reviewed by: More commenting, changed definition of isResolved() somewhat in LinkResolver and UnresolvedPageNumber. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198183 13f79535-47bb-0310-9956-ffa450edef68
* More commenting, slightly clearer method names.Glen Mazza2004-12-026-30/+31
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198182 13f79535-47bb-0310-9956-ffa450edef68
* PR:Glen Mazza2004-12-013-24/+15
| | | | | | | | | | Obtained from: Submitted by: Reviewed by: Minor simplifications and more commenting added. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198181 13f79535-47bb-0310-9956-ffa450edef68
* Fixed a ClassCastException in rebindSimon Pepping2004-11-301-2/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198180 13f79535-47bb-0310-9956-ffa450edef68
* replaced links to nagoya (Bugzilla/Eyebrowse) with (hopefully) more stables urlsChristian Geisert2004-11-294-12/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198179 13f79535-47bb-0310-9956-ffa450edef68
* fixed swapped links for Defoe & FOrayClay Leeds2004-11-291-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198178 13f79535-47bb-0310-9956-ffa450edef68
* PR:Glen Mazza2004-11-294-74/+51
| | | | | | | | | | | | | Obtained from: Submitted by: Reviewed by: 1.) More cleanup/commenting of AreaTreeHandler. Removed the unused (disabled) manual garbage collection code. 2.) Removed renderContainer from Renderer interface, not required. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198177 13f79535-47bb-0310-9956-ffa450edef68
* PR:Glen Mazza2004-11-276-56/+47
| | | | | | | | | | | Obtained from: Submitted by: Reviewed by: Removed unused logger from FOEventHandler and commented the AreaTreeHandler to make it more understandable (particularily idref resolving code.) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198176 13f79535-47bb-0310-9956-ffa450edef68
* PR:Glen Mazza2004-11-2446-1094/+756
| | | | | | | | | | | | Obtained from: Submitted by: Reviewed by: 1.) Removed unneeded enumeration interfaces from fo.Constants. 2.) Appended EN_ to enumeration constants to make them better S&R'able throughout app. 3.) Added an EN_INHERIT enumeration constant (although not currently used in the system.) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198175 13f79535-47bb-0310-9956-ffa450edef68
* * commented out 'wholesite' links (wholesite.html/wholesite.pdf) which ↵Clay Leeds2004-11-241-0/+2
| | | | | | returns errors git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198174 13f79535-47bb-0310-9956-ffa450edef68
* * added commercial software dev'sClay Leeds2004-11-241-0/+4
| | | | | | | | o antenna house o renderx git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198173 13f79535-47bb-0310-9956-ffa450edef68
* * added dev/foClay Leeds2004-11-241-0/+123
| | | | | | | | | | | | o dev/fo/*.fo o dev/fo/*.pdf * dev/svg files o dev/svg/*.svg o dev/svg/*.png o dev/svg/*.pdf git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198172 13f79535-47bb-0310-9956-ffa450edef68
* UNNECESSARY BACKUP FILES REMOVEDClay Leeds2004-11-2411-1072/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198171 13f79535-47bb-0310-9956-ffa450edef68
* Handle unknown subproperty names by logging an error message and ignoringFinn Bock2004-11-221-2/+5
| | | | | | | | | the property value. PR: 32338 git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198170 13f79535-47bb-0310-9956-ffa450edef68
* * added http://www.w3.org/Style/XSL/ Extensible Stylesheet Language Family (XSL)Clay Leeds2004-11-211-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198169 13f79535-47bb-0310-9956-ffa450edef68
* * backup of alt.design/Clay Leeds2004-11-204-0/+533
| | | | | | | | | * backup of build/site w alt.design * backup of build/site w/o alt.design * backup of compliance.xml file (needs to be out of xdocs) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198168 13f79535-47bb-0310-9956-ffa450edef68
* * backups of *.svg & *.foClay Leeds2004-11-205-0/+0
| | | | | | | | * backups of manually generated *.svg & *.png (this took me a while! :-p) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198167 13f79535-47bb-0310-9956-ffa450edef68
* * backed up sitemap.xmap & sitemap-0.5.xmap filesClay Leeds2004-11-202-0/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198166 13f79535-47bb-0310-9956-ffa450edef68
* * Modified short description for @alt for project-logoClay Leeds2004-11-201-7/+13
| | | | | | | | * added xmlgraphics.a.o to breadcrumb trail * Uncommented krysalis CSS colors git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198165 13f79535-47bb-0310-9956-ffa450edef68
* * removed logocontest.htmlClay Leeds2004-11-201-55/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198164 13f79535-47bb-0310-9956-ffa450edef68
* * added DefoeClay Leeds2004-11-201-0/+2
| | | | | | | * added FOray git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198163 13f79535-47bb-0310-9956-ffa450edef68
* * commented out alt.design tabClay Leeds2004-11-201-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198162 13f79535-47bb-0310-9956-ffa450edef68
* * added Desc for ComplianceClay Leeds2004-11-201-29/+1
| | | | | | | | * removed logocontest link * removed alt.design structure git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198161 13f79535-47bb-0310-9956-ffa450edef68
* removed link to logocontest.htmlClay Leeds2004-11-201-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198160 13f79535-47bb-0310-9956-ffa450edef68
* * changed ML archive to:Clay Leeds2004-11-201-1/+1
| | | | | | | http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=fop-dev@xml.apache.org git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198159 13f79535-47bb-0310-9956-ffa450edef68
* * removed alt.designClay Leeds2004-11-201-3/+2
| | | | | | | * changed nagoya.a.o to mail-archives.a.o git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198158 13f79535-47bb-0310-9956-ffa450edef68