booky 0.0.4 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/.pdf +0 -0
- data/README.textile +35 -8
- data/booky.gemspec +7 -2
- data/lib/booky.rb +40 -36
- data/lib/booky/ast.rb +10 -0
- data/lib/booky/exceptions.rb +1 -1
- data/lib/booky/layout.rb +103 -0
- data/lib/booky/layout/base.rb +70 -0
- data/lib/booky/layout/base/author.rb +15 -0
- data/lib/booky/layout/base/blockquote.rb +58 -0
- data/lib/booky/layout/base/chart.rb +26 -0
- data/lib/booky/layout/base/charts/bar.rb +164 -0
- data/lib/booky/layout/base/charts/base.rb +82 -0
- data/lib/booky/layout/base/charts/line.rb +249 -0
- data/lib/booky/layout/base/code.rb +185 -0
- data/lib/booky/layout/base/copyright.rb +16 -0
- data/lib/booky/layout/base/footnote.rb +10 -0
- data/lib/booky/layout/base/h0.rb +26 -0
- data/lib/booky/layout/base/h1.rb +29 -0
- data/lib/booky/layout/base/h2.rb +29 -0
- data/lib/booky/layout/base/h3.rb +29 -0
- data/lib/booky/layout/base/h4.rb +29 -0
- data/lib/booky/layout/base/image.rb +39 -0
- data/lib/booky/layout/base/import.rb +11 -0
- data/lib/booky/layout/base/numbered_list.rb +45 -0
- data/lib/booky/layout/base/outline.rb +21 -0
- data/lib/booky/layout/base/p.rb +15 -0
- data/lib/booky/layout/base/subtitle.rb +18 -0
- data/lib/booky/layout/base/table.rb +58 -0
- data/lib/booky/layout/base/title.rb +22 -0
- data/lib/booky/layout/base/toc.rb +131 -0
- data/lib/booky/layout/base/tof.rb +73 -0
- data/lib/booky/layout/base/unnumbered_list.rb +36 -0
- data/lib/booky/layout/element.rb +28 -0
- data/lib/booky/layout/helpers.rb +29 -0
- data/lib/booky/pdf.rb +12 -10
- data/lib/booky/textile.rb +6 -4
- data/lib/booky/textile/load.rb +1 -1
- data/lib/booky/textile/precompiler.rb +1 -0
- data/lib/booky/textile/source.rb +31 -5
- data/lib/booky/textile/table.rb +52 -0
- data/lib/booky/version.rb +1 -1
- data/pdfs/Rakefile +16 -0
- data/pdfs/blockquote_source.pdf +15641 -1
- data/pdfs/footnotes.pdf +1991 -0
- data/pdfs/link_image.pdf +0 -0
- data/pdfs/lists.pdf +706 -1
- data/pdfs/tables.pdf +2162 -0
- data/pdfs/title_subtitle.pdf +3454 -0
- data/spec/ast_spec.rb +12 -0
- data/{lib/fop/lib → spec/fixtures}/.DS_Store +0 -0
- data/spec/fixtures/bar_chart.json +35 -0
- data/spec/fixtures/blockquote_pagebreak.textile +27 -0
- data/spec/fixtures/blockquote_source.textile +35 -0
- data/spec/fixtures/chart.textile +9 -0
- data/spec/fixtures/footnotes.textile +57 -0
- data/spec/fixtures/footnotes_tables.textile +29 -0
- data/spec/fixtures/image_big.jpg +0 -0
- data/spec/fixtures/image_small.jpg +0 -0
- data/spec/fixtures/import.textile +7 -0
- data/spec/fixtures/line_chart.json +49 -0
- data/spec/fixtures/link_image.textile +18 -0
- data/spec/fixtures/lists.textile +98 -0
- data/spec/fixtures/request_flow.pdf +477 -0
- data/spec/fixtures/some_code.rb +138 -0
- data/spec/fixtures/some_text.txt +10 -0
- data/spec/fixtures/source_plain_text.textile +1 -0
- data/spec/fixtures/tables.textile +42 -0
- data/spec/fixtures/textile/basic.textile +3 -0
- data/spec/fixtures/textile/source/precompiled_index.textile +2 -2
- data/spec/fixtures/textile/tables/names.xls +0 -0
- data/spec/fixtures/textile/tables/request_limits_hardware.xls +0 -0
- data/spec/fixtures/title_subtitle.textile +110 -0
- data/spec/helpers.rb +2 -1
- data/spec/pdf_spec.rb +107 -0
- data/test.pdf +16657 -0
- metadata +152 -1551
- data/lib/booky/docbook.rb +0 -13
- data/lib/booky/fo.rb +0 -15
- data/lib/booky/fonts.rb +0 -104
- data/lib/custom_fonts.xml +0 -91
- data/lib/fop/KEYS +0 -248
- data/lib/fop/LICENSE +0 -202
- data/lib/fop/NOTICE +0 -10
- data/lib/fop/README +0 -286
- data/lib/fop/build/fop.jar +0 -0
- data/lib/fop/conf/fop.xconf +0 -464
- data/lib/fop/fop +0 -254
- data/lib/fop/fop.bat +0 -85
- data/lib/fop/fop.cmd +0 -75
- data/lib/fop/fop.js +0 -341
- data/lib/fop/lib/README.txt +0 -243
- data/lib/fop/lib/avalon-framework-4.2.0.jar +0 -0
- data/lib/fop/lib/avalon-framework.LICENSE.txt +0 -175
- data/lib/fop/lib/avalon-framework.NOTICE.TXT +0 -11
- data/lib/fop/lib/batik-all-1.7.jar +0 -0
- data/lib/fop/lib/batik.LICENSE.txt +0 -201
- data/lib/fop/lib/batik.NOTICE.txt +0 -18
- data/lib/fop/lib/commons-io-1.3.1.jar +0 -0
- data/lib/fop/lib/commons-io.LICENSE.txt +0 -203
- data/lib/fop/lib/commons-io.NOTICE.txt +0 -6
- data/lib/fop/lib/commons-logging-1.0.4.jar +0 -0
- data/lib/fop/lib/commons-logging.LICENSE.txt +0 -202
- data/lib/fop/lib/commons-logging.NOTICE.txt +0 -3
- data/lib/fop/lib/jeuclid-core-3.1.9.jar +0 -0
- data/lib/fop/lib/jeuclid-fop-3.1.9.jar +0 -0
- data/lib/fop/lib/serializer-2.7.0.jar +0 -0
- data/lib/fop/lib/serializer.LICENSE.txt +0 -201
- data/lib/fop/lib/serializer.NOTICE.txt +0 -15
- data/lib/fop/lib/xalan-2.7.0.jar +0 -0
- data/lib/fop/lib/xalan.BCEL.LICENSE.txt +0 -52
- data/lib/fop/lib/xalan.LICENSE.txt +0 -202
- data/lib/fop/lib/xalan.NOTICE.txt +0 -44
- data/lib/fop/lib/xalan.regexp.LICENSE.txt +0 -52
- data/lib/fop/lib/xalan.runtime.LICENSE.txt +0 -20
- data/lib/fop/lib/xerces.LICENSE.txt +0 -56
- data/lib/fop/lib/xercesImpl-2.7.1.jar +0 -0
- data/lib/fop/lib/xercesImpl.LICENSE.txt +0 -201
- data/lib/fop/lib/xercesImpl.NOTICE.txt +0 -14
- data/lib/fop/lib/xml-apis-1.3.04.jar +0 -0
- data/lib/fop/lib/xml-apis-ext-1.3.04.jar +0 -0
- data/lib/fop/lib/xml-apis-ext.LICENSE.dom-documentation.txt +0 -73
- data/lib/fop/lib/xml-apis-ext.LICENSE.dom-software.txt +0 -61
- data/lib/fop/lib/xml-apis-ext.LICENSE.sac.html +0 -75
- data/lib/fop/lib/xml-apis-ext.LICENSE.txt +0 -202
- data/lib/fop/lib/xml-apis-ext.NOTICE.txt +0 -16
- data/lib/fop/lib/xml-apis-ext.README.dom.txt +0 -56
- data/lib/fop/lib/xml-apis.LICENSE-SAX.html +0 -17
- data/lib/fop/lib/xml-apis.LICENSE.DOM-documentation.html +0 -74
- data/lib/fop/lib/xml-apis.LICENSE.DOM-software.html +0 -66
- data/lib/fop/lib/xml-apis.LICENSE.txt +0 -201
- data/lib/fop/lib/xml-apis.NOTICE.txt +0 -13
- data/lib/fop/lib/xmlgraphics-commons-1.4.jar +0 -0
- data/lib/fop/lib/xmlgraphics-commons.LICENSE.txt +0 -202
- data/lib/fop/lib/xmlgraphics-commons.NOTICE.txt +0 -5
- data/lib/fop/lib/xslthl-2.0.2.jar +0 -0
- data/lib/fop/status.xml +0 -1809
- data/lib/params.pdf +0 -0
- data/lib/stylesheets/.CatalogManager.properties.example +0 -61
- data/lib/stylesheets/.urilist +0 -1
- data/lib/stylesheets/AUTHORS +0 -4
- data/lib/stylesheets/BUGS +0 -21
- data/lib/stylesheets/COPYING +0 -47
- data/lib/stylesheets/INSTALL +0 -88
- data/lib/stylesheets/Makefile +0 -89
- data/lib/stylesheets/NEWS +0 -139
- data/lib/stylesheets/NEWS.html +0 -25
- data/lib/stylesheets/NEWS.xml +0 -145
- data/lib/stylesheets/README +0 -166
- data/lib/stylesheets/RELEASE-NOTES.html +0 -8353
- data/lib/stylesheets/RELEASE-NOTES.pdf +6 -24345
- data/lib/stylesheets/RELEASE-NOTES.txt +0 -8575
- data/lib/stylesheets/RELEASE-NOTES.xml +0 -10327
- data/lib/stylesheets/TODO +0 -23
- data/lib/stylesheets/VERSION +0 -115
- data/lib/stylesheets/catalog.xml +0 -8
- data/lib/stylesheets/common/addns.xsl +0 -118
- data/lib/stylesheets/common/af.xml +0 -1229
- data/lib/stylesheets/common/am.xml +0 -1229
- data/lib/stylesheets/common/ar.xml +0 -1229
- data/lib/stylesheets/common/as.xml +0 -660
- data/lib/stylesheets/common/ast.xml +0 -660
- data/lib/stylesheets/common/autoidx-kimber.xsl +0 -45
- data/lib/stylesheets/common/autoidx-kosek.xsl +0 -155
- data/lib/stylesheets/common/az.xml +0 -672
- data/lib/stylesheets/common/bg.xml +0 -724
- data/lib/stylesheets/common/bn.xml +0 -1229
- data/lib/stylesheets/common/bn_in.xml +0 -660
- data/lib/stylesheets/common/bs.xml +0 -662
- data/lib/stylesheets/common/ca.xml +0 -660
- data/lib/stylesheets/common/charmap.xml +0 -185
- data/lib/stylesheets/common/charmap.xsl +0 -222
- data/lib/stylesheets/common/common.xml +0 -622
- data/lib/stylesheets/common/common.xsl +0 -2040
- data/lib/stylesheets/common/cs.xml +0 -700
- data/lib/stylesheets/common/cy.xml +0 -1245
- data/lib/stylesheets/common/da.xml +0 -664
- data/lib/stylesheets/common/de.xml +0 -666
- data/lib/stylesheets/common/el.xml +0 -729
- data/lib/stylesheets/common/en.xml +0 -1230
- data/lib/stylesheets/common/entities.ent +0 -67
- data/lib/stylesheets/common/eo.xml +0 -1229
- data/lib/stylesheets/common/es.xml +0 -676
- data/lib/stylesheets/common/et.xml +0 -1229
- data/lib/stylesheets/common/eu.xml +0 -1229
- data/lib/stylesheets/common/fa.xml +0 -660
- data/lib/stylesheets/common/fi.xml +0 -670
- data/lib/stylesheets/common/fr.xml +0 -690
- data/lib/stylesheets/common/ga.xml +0 -1229
- data/lib/stylesheets/common/gentext.xsl +0 -840
- data/lib/stylesheets/common/gl.xml +0 -1229
- data/lib/stylesheets/common/gu.xml +0 -660
- data/lib/stylesheets/common/he.xml +0 -1229
- data/lib/stylesheets/common/hi.xml +0 -660
- data/lib/stylesheets/common/hr.xml +0 -662
- data/lib/stylesheets/common/hu.xml +0 -678
- data/lib/stylesheets/common/id.xml +0 -1229
- data/lib/stylesheets/common/insertfile.xsl +0 -113
- data/lib/stylesheets/common/is.xml +0 -672
- data/lib/stylesheets/common/it.xml +0 -1229
- data/lib/stylesheets/common/ja.xml +0 -660
- data/lib/stylesheets/common/ka.xml +0 -700
- data/lib/stylesheets/common/kn.xml +0 -1229
- data/lib/stylesheets/common/ko.xml +0 -1229
- data/lib/stylesheets/common/ky.xml +0 -732
- data/lib/stylesheets/common/l10n.dtd +0 -64
- data/lib/stylesheets/common/l10n.xml +0 -77
- data/lib/stylesheets/common/l10n.xsl +0 -594
- data/lib/stylesheets/common/la.xml +0 -1229
- data/lib/stylesheets/common/labels.xsl +0 -888
- data/lib/stylesheets/common/lt.xml +0 -678
- data/lib/stylesheets/common/lv.xml +0 -1229
- data/lib/stylesheets/common/ml.xml +0 -660
- data/lib/stylesheets/common/mn.xml +0 -730
- data/lib/stylesheets/common/mr.xml +0 -660
- data/lib/stylesheets/common/nb.xml +0 -1229
- data/lib/stylesheets/common/nds.xml +0 -666
- data/lib/stylesheets/common/nl.xml +0 -660
- data/lib/stylesheets/common/nn.xml +0 -1229
- data/lib/stylesheets/common/olink.xsl +0 -1227
- data/lib/stylesheets/common/or.xml +0 -1229
- data/lib/stylesheets/common/pa.xml +0 -660
- data/lib/stylesheets/common/pi.xml +0 -168
- data/lib/stylesheets/common/pi.xsl +0 -347
- data/lib/stylesheets/common/pl.xml +0 -678
- data/lib/stylesheets/common/pt.xml +0 -1229
- data/lib/stylesheets/common/pt_br.xml +0 -1229
- data/lib/stylesheets/common/refentry.xml +0 -781
- data/lib/stylesheets/common/refentry.xsl +0 -1353
- data/lib/stylesheets/common/ro.xml +0 -1229
- data/lib/stylesheets/common/ru.xml +0 -726
- data/lib/stylesheets/common/sk.xml +0 -1229
- data/lib/stylesheets/common/sl.xml +0 -1229
- data/lib/stylesheets/common/sq.xml +0 -1229
- data/lib/stylesheets/common/sr.xml +0 -720
- data/lib/stylesheets/common/sr_Latn.xml +0 -679
- data/lib/stylesheets/common/subtitles.xsl +0 -156
- data/lib/stylesheets/common/sv.xml +0 -664
- data/lib/stylesheets/common/ta.xml +0 -660
- data/lib/stylesheets/common/table.xsl +0 -515
- data/lib/stylesheets/common/targetdatabase.dtd +0 -49
- data/lib/stylesheets/common/targets.xsl +0 -334
- data/lib/stylesheets/common/te.xml +0 -660
- data/lib/stylesheets/common/th.xml +0 -1229
- data/lib/stylesheets/common/titles.xsl +0 -806
- data/lib/stylesheets/common/tl.xml +0 -1229
- data/lib/stylesheets/common/tr.xml +0 -666
- data/lib/stylesheets/common/uk.xml +0 -726
- data/lib/stylesheets/common/utility.xml +0 -259
- data/lib/stylesheets/common/utility.xsl +0 -291
- data/lib/stylesheets/common/vi.xml +0 -1229
- data/lib/stylesheets/common/xh.xml +0 -1229
- data/lib/stylesheets/common/zh.xml +0 -660
- data/lib/stylesheets/common/zh_cn.xml +0 -660
- data/lib/stylesheets/common/zh_tw.xml +0 -660
- data/lib/stylesheets/docsrc/authors.xml +0 -10
- data/lib/stylesheets/docsrc/copyright.xml +0 -18
- data/lib/stylesheets/docsrc/license.xml +0 -23
- data/lib/stylesheets/docsrc/page.png +0 -0
- data/lib/stylesheets/docsrc/reference.css +0 -79
- data/lib/stylesheets/docsrc/reference.xml +0 -229
- data/lib/stylesheets/docsrc/reference.xml.included +0 -33905
- data/lib/stylesheets/docsrc/warranty.xml +0 -11
- data/lib/stylesheets/eclipse/eclipse.xsl +0 -294
- data/lib/stylesheets/eclipse/eclipse3.xsl +0 -112
- data/lib/stylesheets/eclipse/profile-eclipse.xsl +0 -268
- data/lib/stylesheets/epub/README +0 -88
- data/lib/stylesheets/epub/bin/dbtoepub +0 -76
- data/lib/stylesheets/epub/bin/lib/docbook.rb +0 -227
- data/lib/stylesheets/epub/bin/xslt/obfuscate.xsl +0 -14
- data/lib/stylesheets/epub/docbook.xsl +0 -1678
- data/lib/stylesheets/extensions/LICENSE.txt +0 -264
- data/lib/stylesheets/extensions/NOTICE.txt +0 -12
- data/lib/stylesheets/extensions/README.LIBXSLT +0 -52
- data/lib/stylesheets/extensions/README.txt +0 -4
- data/lib/stylesheets/extensions/docbook.py +0 -239
- data/lib/stylesheets/extensions/lucene-analyzers-3.0.0.jar +0 -0
- data/lib/stylesheets/extensions/lucene-core-3.0.0.jar +0 -0
- data/lib/stylesheets/extensions/saxon65.jar +0 -0
- data/lib/stylesheets/extensions/webhelpindexer.jar +0 -0
- data/lib/stylesheets/extensions/xalan27.jar +0 -0
- data/lib/stylesheets/extensions/xslt.py +0 -84
- data/lib/stylesheets/fo/admon.xsl +0 -132
- data/lib/stylesheets/fo/annotations.xsl +0 -20
- data/lib/stylesheets/fo/autoidx-kimber.xsl +0 -173
- data/lib/stylesheets/fo/autoidx-kosek.xsl +0 -140
- data/lib/stylesheets/fo/autoidx-ng.xsl +0 -22
- data/lib/stylesheets/fo/autoidx.xsl +0 -1331
- data/lib/stylesheets/fo/autotoc.xsl +0 -917
- data/lib/stylesheets/fo/axf.xsl +0 -112
- data/lib/stylesheets/fo/biblio-iso690.xsl +0 -1302
- data/lib/stylesheets/fo/biblio.xsl +0 -1171
- data/lib/stylesheets/fo/block.xsl +0 -656
- data/lib/stylesheets/fo/callout.xsl +0 -232
- data/lib/stylesheets/fo/component.xsl +0 -900
- data/lib/stylesheets/fo/division.xsl +0 -614
- data/lib/stylesheets/fo/docbook.xsl +0 -333
- data/lib/stylesheets/fo/ebnf.xsl +0 -326
- data/lib/stylesheets/fo/fo-rtf.xsl +0 -155
- data/lib/stylesheets/fo/fo.xsl +0 -120
- data/lib/stylesheets/fo/footnote.xsl +0 -221
- data/lib/stylesheets/fo/fop.xsl +0 -95
- data/lib/stylesheets/fo/fop1.xsl +0 -225
- data/lib/stylesheets/fo/formal.xsl +0 -644
- data/lib/stylesheets/fo/glossary.xsl +0 -1170
- data/lib/stylesheets/fo/graphics.xsl +0 -649
- data/lib/stylesheets/fo/highlight.xsl +0 -78
- data/lib/stylesheets/fo/htmltbl.xsl +0 -427
- data/lib/stylesheets/fo/index.xsl +0 -486
- data/lib/stylesheets/fo/info.xsl +0 -36
- data/lib/stylesheets/fo/inline.xsl +0 -1289
- data/lib/stylesheets/fo/keywords.xsl +0 -23
- data/lib/stylesheets/fo/lists.xsl +0 -1395
- data/lib/stylesheets/fo/math.xsl +0 -141
- data/lib/stylesheets/fo/pagesetup.xsl +0 -2571
- data/lib/stylesheets/fo/param.xml +0 -12445
- data/lib/stylesheets/fo/param.xsl +0 -969
- data/lib/stylesheets/fo/passivetex.xsl +0 -38
- data/lib/stylesheets/fo/pdf2index +0 -140
- data/lib/stylesheets/fo/pi.xml +0 -1002
- data/lib/stylesheets/fo/pi.xsl +0 -1093
- data/lib/stylesheets/fo/profile-docbook.xsl +0 -288
- data/lib/stylesheets/fo/ptc.xsl +0 -79
- data/lib/stylesheets/fo/qandaset.xsl +0 -397
- data/lib/stylesheets/fo/refentry.xsl +0 -640
- data/lib/stylesheets/fo/sections.xsl +0 -766
- data/lib/stylesheets/fo/spaces.xsl +0 -276
- data/lib/stylesheets/fo/synop.xsl +0 -1009
- data/lib/stylesheets/fo/table.xml +0 -135
- data/lib/stylesheets/fo/table.xsl +0 -1682
- data/lib/stylesheets/fo/task.xsl +0 -93
- data/lib/stylesheets/fo/titlepage.templates.xml +0 -1354
- data/lib/stylesheets/fo/titlepage.templates.xsl +0 -5186
- data/lib/stylesheets/fo/titlepage.xsl +0 -769
- data/lib/stylesheets/fo/toc.xsl +0 -334
- data/lib/stylesheets/fo/verbatim.xsl +0 -466
- data/lib/stylesheets/fo/xep.xsl +0 -182
- data/lib/stylesheets/fo/xref.xsl +0 -1539
- data/lib/stylesheets/highlighting/README +0 -16
- data/lib/stylesheets/highlighting/c-hl.xml +0 -101
- data/lib/stylesheets/highlighting/common.xsl +0 -121
- data/lib/stylesheets/highlighting/cpp-hl.xml +0 -150
- data/lib/stylesheets/highlighting/csharp-hl.xml +0 -187
- data/lib/stylesheets/highlighting/delphi-hl.xml +0 -200
- data/lib/stylesheets/highlighting/ini-hl.xml +0 -45
- data/lib/stylesheets/highlighting/java-hl.xml +0 -117
- data/lib/stylesheets/highlighting/javascript-hl.xml +0 -147
- data/lib/stylesheets/highlighting/m2-hl.xml +0 -90
- data/lib/stylesheets/highlighting/myxml-hl.xml +0 -116
- data/lib/stylesheets/highlighting/perl-hl.xml +0 -120
- data/lib/stylesheets/highlighting/php-hl.xml +0 -149
- data/lib/stylesheets/highlighting/python-hl.xml +0 -100
- data/lib/stylesheets/highlighting/ruby-hl.xml +0 -109
- data/lib/stylesheets/highlighting/tcl-hl.xml +0 -180
- data/lib/stylesheets/highlighting/xslthl-config.xml +0 -46
- data/lib/stylesheets/html/admon.xsl +0 -136
- data/lib/stylesheets/html/annotations.xsl +0 -171
- data/lib/stylesheets/html/autoidx-kimber.xsl +0 -166
- data/lib/stylesheets/html/autoidx-kosek.xsl +0 -121
- data/lib/stylesheets/html/autoidx-ng.xsl +0 -22
- data/lib/stylesheets/html/autoidx.xsl +0 -740
- data/lib/stylesheets/html/autotoc.xsl +0 -709
- data/lib/stylesheets/html/biblio-iso690.xsl +0 -1302
- data/lib/stylesheets/html/biblio.xsl +0 -1255
- data/lib/stylesheets/html/block.xsl +0 -540
- data/lib/stylesheets/html/callout.xsl +0 -202
- data/lib/stylesheets/html/changebars.xsl +0 -123
- data/lib/stylesheets/html/chunk-changebars.xsl +0 -100
- data/lib/stylesheets/html/chunk-code.xsl +0 -672
- data/lib/stylesheets/html/chunk-common.xsl +0 -1921
- data/lib/stylesheets/html/chunk.xsl +0 -53
- data/lib/stylesheets/html/chunker.xsl +0 -440
- data/lib/stylesheets/html/chunkfast.xsl +0 -73
- data/lib/stylesheets/html/chunktoc.xsl +0 -541
- data/lib/stylesheets/html/component.xsl +0 -427
- data/lib/stylesheets/html/division.xsl +0 -219
- data/lib/stylesheets/html/docbook.css.xml +0 -109
- data/lib/stylesheets/html/docbook.xsl +0 -468
- data/lib/stylesheets/html/ebnf.xsl +0 -330
- data/lib/stylesheets/html/footnote.xsl +0 -314
- data/lib/stylesheets/html/formal.xsl +0 -427
- data/lib/stylesheets/html/glossary.xsl +0 -493
- data/lib/stylesheets/html/graphics.xsl +0 -1516
- data/lib/stylesheets/html/highlight.xsl +0 -87
- data/lib/stylesheets/html/html-rtf.xsl +0 -336
- data/lib/stylesheets/html/html.xsl +0 -614
- data/lib/stylesheets/html/htmltbl.xsl +0 -137
- data/lib/stylesheets/html/index.xsl +0 -290
- data/lib/stylesheets/html/info.xsl +0 -45
- data/lib/stylesheets/html/inline.xsl +0 -1491
- data/lib/stylesheets/html/keywords.xsl +0 -37
- data/lib/stylesheets/html/lists.xsl +0 -1185
- data/lib/stylesheets/html/maketoc.xsl +0 -87
- data/lib/stylesheets/html/manifest.xsl +0 -23
- data/lib/stylesheets/html/math.xsl +0 -271
- data/lib/stylesheets/html/oldchunker.xsl +0 -203
- data/lib/stylesheets/html/onechunk.xsl +0 -38
- data/lib/stylesheets/html/param.xml +0 -10905
- data/lib/stylesheets/html/param.xsl +0 -436
- data/lib/stylesheets/html/pi.xml +0 -1113
- data/lib/stylesheets/html/pi.xsl +0 -1264
- data/lib/stylesheets/html/profile-chunk-code.xsl +0 -614
- data/lib/stylesheets/html/profile-chunk.xsl +0 -53
- data/lib/stylesheets/html/profile-docbook.xsl +0 -412
- data/lib/stylesheets/html/profile-onechunk.xsl +0 -38
- data/lib/stylesheets/html/qandaset.xsl +0 -438
- data/lib/stylesheets/html/refentry.xsl +0 -301
- data/lib/stylesheets/html/sections.xsl +0 -617
- data/lib/stylesheets/html/synop.xsl +0 -1556
- data/lib/stylesheets/html/table.xsl +0 -1201
- data/lib/stylesheets/html/task.xsl +0 -78
- data/lib/stylesheets/html/titlepage.templates.xml +0 -708
- data/lib/stylesheets/html/titlepage.templates.xsl +0 -3818
- data/lib/stylesheets/html/titlepage.xsl +0 -1049
- data/lib/stylesheets/html/toc.xsl +0 -352
- data/lib/stylesheets/html/verbatim.xsl +0 -411
- data/lib/stylesheets/html/xref.xsl +0 -1378
- data/lib/stylesheets/htmlhelp/htmlhelp-common.xsl +0 -1108
- data/lib/stylesheets/htmlhelp/htmlhelp.xsl +0 -23
- data/lib/stylesheets/htmlhelp/profile-htmlhelp-common.xsl +0 -1082
- data/lib/stylesheets/htmlhelp/profile-htmlhelp.xsl +0 -23
- data/lib/stylesheets/images/annot-close.png +0 -0
- data/lib/stylesheets/images/annot-open.png +0 -0
- data/lib/stylesheets/images/blank.png +0 -0
- data/lib/stylesheets/images/callouts/1.gif +0 -0
- data/lib/stylesheets/images/callouts/1.png +0 -0
- data/lib/stylesheets/images/callouts/1.svg +0 -15
- data/lib/stylesheets/images/callouts/10.gif +0 -0
- data/lib/stylesheets/images/callouts/10.png +0 -0
- data/lib/stylesheets/images/callouts/10.svg +0 -18
- data/lib/stylesheets/images/callouts/11.gif +0 -0
- data/lib/stylesheets/images/callouts/11.png +0 -0
- data/lib/stylesheets/images/callouts/11.svg +0 -16
- data/lib/stylesheets/images/callouts/12.gif +0 -0
- data/lib/stylesheets/images/callouts/12.png +0 -0
- data/lib/stylesheets/images/callouts/12.svg +0 -18
- data/lib/stylesheets/images/callouts/13.gif +0 -0
- data/lib/stylesheets/images/callouts/13.png +0 -0
- data/lib/stylesheets/images/callouts/13.svg +0 -20
- data/lib/stylesheets/images/callouts/14.gif +0 -0
- data/lib/stylesheets/images/callouts/14.png +0 -0
- data/lib/stylesheets/images/callouts/14.svg +0 -17
- data/lib/stylesheets/images/callouts/15.gif +0 -0
- data/lib/stylesheets/images/callouts/15.png +0 -0
- data/lib/stylesheets/images/callouts/15.svg +0 -19
- data/lib/stylesheets/images/callouts/16.svg +0 -20
- data/lib/stylesheets/images/callouts/17.svg +0 -17
- data/lib/stylesheets/images/callouts/18.svg +0 -21
- data/lib/stylesheets/images/callouts/19.svg +0 -20
- data/lib/stylesheets/images/callouts/2.gif +0 -0
- data/lib/stylesheets/images/callouts/2.png +0 -0
- data/lib/stylesheets/images/callouts/2.svg +0 -17
- data/lib/stylesheets/images/callouts/20.svg +0 -20
- data/lib/stylesheets/images/callouts/21.svg +0 -18
- data/lib/stylesheets/images/callouts/22.svg +0 -20
- data/lib/stylesheets/images/callouts/23.svg +0 -22
- data/lib/stylesheets/images/callouts/24.svg +0 -19
- data/lib/stylesheets/images/callouts/25.svg +0 -21
- data/lib/stylesheets/images/callouts/26.svg +0 -22
- data/lib/stylesheets/images/callouts/27.svg +0 -19
- data/lib/stylesheets/images/callouts/28.svg +0 -23
- data/lib/stylesheets/images/callouts/29.svg +0 -22
- data/lib/stylesheets/images/callouts/3.gif +0 -0
- data/lib/stylesheets/images/callouts/3.png +0 -0
- data/lib/stylesheets/images/callouts/3.svg +0 -19
- data/lib/stylesheets/images/callouts/30.svg +0 -22
- data/lib/stylesheets/images/callouts/4.gif +0 -0
- data/lib/stylesheets/images/callouts/4.png +0 -0
- data/lib/stylesheets/images/callouts/4.svg +0 -16
- data/lib/stylesheets/images/callouts/5.gif +0 -0
- data/lib/stylesheets/images/callouts/5.png +0 -0
- data/lib/stylesheets/images/callouts/5.svg +0 -18
- data/lib/stylesheets/images/callouts/6.gif +0 -0
- data/lib/stylesheets/images/callouts/6.png +0 -0
- data/lib/stylesheets/images/callouts/6.svg +0 -19
- data/lib/stylesheets/images/callouts/7.gif +0 -0
- data/lib/stylesheets/images/callouts/7.png +0 -0
- data/lib/stylesheets/images/callouts/7.svg +0 -16
- data/lib/stylesheets/images/callouts/8.gif +0 -0
- data/lib/stylesheets/images/callouts/8.png +0 -0
- data/lib/stylesheets/images/callouts/8.svg +0 -20
- data/lib/stylesheets/images/callouts/9.gif +0 -0
- data/lib/stylesheets/images/callouts/9.png +0 -0
- data/lib/stylesheets/images/callouts/9.svg +0 -19
- data/lib/stylesheets/images/caution.gif +0 -0
- data/lib/stylesheets/images/caution.png +0 -0
- data/lib/stylesheets/images/caution.svg +0 -25
- data/lib/stylesheets/images/caution.tif +0 -0
- data/lib/stylesheets/images/colorsvg/caution.svg +0 -141
- data/lib/stylesheets/images/colorsvg/home.svg +0 -498
- data/lib/stylesheets/images/colorsvg/important.svg +0 -239
- data/lib/stylesheets/images/colorsvg/next.svg +0 -338
- data/lib/stylesheets/images/colorsvg/note.svg +0 -200
- data/lib/stylesheets/images/colorsvg/prev.svg +0 -338
- data/lib/stylesheets/images/colorsvg/tip.svg +0 -367
- data/lib/stylesheets/images/colorsvg/up.svg +0 -338
- data/lib/stylesheets/images/colorsvg/warning.svg +0 -232
- data/lib/stylesheets/images/draft.png +0 -0
- data/lib/stylesheets/images/home.gif +0 -0
- data/lib/stylesheets/images/home.png +0 -0
- data/lib/stylesheets/images/home.svg +0 -26
- data/lib/stylesheets/images/important.gif +0 -0
- data/lib/stylesheets/images/important.png +0 -0
- data/lib/stylesheets/images/important.svg +0 -25
- data/lib/stylesheets/images/important.tif +0 -0
- data/lib/stylesheets/images/next.gif +0 -0
- data/lib/stylesheets/images/next.png +0 -0
- data/lib/stylesheets/images/next.svg +0 -19
- data/lib/stylesheets/images/note.gif +0 -0
- data/lib/stylesheets/images/note.png +0 -0
- data/lib/stylesheets/images/note.svg +0 -33
- data/lib/stylesheets/images/note.tif +0 -0
- data/lib/stylesheets/images/prev.gif +0 -0
- data/lib/stylesheets/images/prev.png +0 -0
- data/lib/stylesheets/images/prev.svg +0 -19
- data/lib/stylesheets/images/tip.gif +0 -0
- data/lib/stylesheets/images/tip.png +0 -0
- data/lib/stylesheets/images/tip.svg +0 -31
- data/lib/stylesheets/images/tip.tif +0 -0
- data/lib/stylesheets/images/toc-blank.png +0 -0
- data/lib/stylesheets/images/toc-minus.png +0 -0
- data/lib/stylesheets/images/toc-plus.png +0 -0
- data/lib/stylesheets/images/up.gif +0 -0
- data/lib/stylesheets/images/up.png +0 -0
- data/lib/stylesheets/images/up.svg +0 -19
- data/lib/stylesheets/images/warning.gif +0 -0
- data/lib/stylesheets/images/warning.png +0 -0
- data/lib/stylesheets/images/warning.svg +0 -23
- data/lib/stylesheets/images/warning.tif +0 -0
- data/lib/stylesheets/install.sh +0 -977
- data/lib/stylesheets/javahelp/javahelp.xsl +0 -613
- data/lib/stylesheets/javahelp/profile-javahelp.xsl +0 -548
- data/lib/stylesheets/lib/lib.xsl +0 -482
- data/lib/stylesheets/manpages/ChangeLog.20020917 +0 -195
- data/lib/stylesheets/manpages/block.xsl +0 -412
- data/lib/stylesheets/manpages/charmap.groff.xsl +0 -6014
- data/lib/stylesheets/manpages/docbook.xsl +0 -302
- data/lib/stylesheets/manpages/endnotes.xsl +0 -587
- data/lib/stylesheets/manpages/html-synop.xsl +0 -1569
- data/lib/stylesheets/manpages/info.xsl +0 -801
- data/lib/stylesheets/manpages/inline.xsl +0 -221
- data/lib/stylesheets/manpages/lists.xsl +0 -606
- data/lib/stylesheets/manpages/other.xsl +0 -889
- data/lib/stylesheets/manpages/param.xml +0 -3220
- data/lib/stylesheets/manpages/param.xsl +0 -195
- data/lib/stylesheets/manpages/pi.xml +0 -70
- data/lib/stylesheets/manpages/pi.xsl +0 -80
- data/lib/stylesheets/manpages/profile-docbook.xsl +0 -282
- data/lib/stylesheets/manpages/refentry.xsl +0 -321
- data/lib/stylesheets/manpages/synop.xsl +0 -433
- data/lib/stylesheets/manpages/table.xsl +0 -633
- data/lib/stylesheets/manpages/utility.xsl +0 -556
- data/lib/stylesheets/params/abstract.notitle.enabled.xml +0 -22
- data/lib/stylesheets/params/abstract.properties.xml +0 -32
- data/lib/stylesheets/params/abstract.title.properties.xml +0 -39
- data/lib/stylesheets/params/active.toc.xml +0 -29
- data/lib/stylesheets/params/ade.extensions.xml +0 -32
- data/lib/stylesheets/params/admon.graphics.extension.xml +0 -27
- data/lib/stylesheets/params/admon.graphics.path.xml +0 -27
- data/lib/stylesheets/params/admon.graphics.xml +0 -29
- data/lib/stylesheets/params/admon.style.xml +0 -31
- data/lib/stylesheets/params/admon.textlabel.xml +0 -32
- data/lib/stylesheets/params/admonition.properties.xml +0 -25
- data/lib/stylesheets/params/admonition.title.properties.xml +0 -32
- data/lib/stylesheets/params/alignment.xml +0 -41
- data/lib/stylesheets/params/annotate.toc.xml +0 -28
- data/lib/stylesheets/params/annotation.css.xml +0 -71
- data/lib/stylesheets/params/annotation.graphic.close.xml +0 -31
- data/lib/stylesheets/params/annotation.graphic.open.xml +0 -28
- data/lib/stylesheets/params/annotation.js.xml +0 -33
- data/lib/stylesheets/params/annotation.support.xml +0 -29
- data/lib/stylesheets/params/appendix.autolabel.xml +0 -73
- data/lib/stylesheets/params/arbortext.extensions.xml +0 -30
- data/lib/stylesheets/params/article.appendix.title.properties.xml +0 -33
- data/lib/stylesheets/params/author.othername.in.middle.xml +0 -31
- data/lib/stylesheets/params/autolayout-file.xml +0 -29
- data/lib/stylesheets/params/autotoc.label.in.hyperlink.xml +0 -29
- data/lib/stylesheets/params/autotoc.label.separator.xml +0 -27
- data/lib/stylesheets/params/axf.extensions.xml +0 -33
- data/lib/stylesheets/params/banner.before.navigation.xml +0 -25
- data/lib/stylesheets/params/base.dir.xml +0 -29
- data/lib/stylesheets/params/biblioentry.item.separator.xml +0 -26
- data/lib/stylesheets/params/biblioentry.properties.xml +0 -28
- data/lib/stylesheets/params/bibliography.collection.xml +0 -104
- data/lib/stylesheets/params/bibliography.numbered.xml +0 -27
- data/lib/stylesheets/params/bibliography.style.xml +0 -35
- data/lib/stylesheets/params/blockquote.properties.xml +0 -34
- data/lib/stylesheets/params/blurb.on.titlepage.enabled.xml +0 -31
- data/lib/stylesheets/params/body.attributes.xml +0 -31
- data/lib/stylesheets/params/body.bg.color.xml +0 -28
- data/lib/stylesheets/params/body.end.indent.xml +0 -37
- data/lib/stylesheets/params/body.font.family.xml +0 -32
- data/lib/stylesheets/params/body.font.master.xml +0 -30
- data/lib/stylesheets/params/body.font.size.xml +0 -31
- data/lib/stylesheets/params/body.margin.bottom.xml +0 -29
- data/lib/stylesheets/params/body.margin.top.xml +0 -28
- data/lib/stylesheets/params/body.start.indent.xml +0 -64
- data/lib/stylesheets/params/bookmarks.collapse.xml +0 -31
- data/lib/stylesheets/params/bridgehead.in.toc.xml +0 -28
- data/lib/stylesheets/params/bullet.image.xml +0 -28
- data/lib/stylesheets/params/callout.defaultcolumn.xml +0 -30
- data/lib/stylesheets/params/callout.graphics.extension.xml +0 -33
- data/lib/stylesheets/params/callout.graphics.number.limit.xml +0 -34
- data/lib/stylesheets/params/callout.graphics.path.xml +0 -31
- data/lib/stylesheets/params/callout.graphics.xml +0 -30
- data/lib/stylesheets/params/callout.icon.size.xml +0 -28
- data/lib/stylesheets/params/callout.list.table.xml +0 -32
- data/lib/stylesheets/params/callout.unicode.font.xml +0 -29
- data/lib/stylesheets/params/callout.unicode.number.limit.xml +0 -35
- data/lib/stylesheets/params/callout.unicode.start.character.xml +0 -33
- data/lib/stylesheets/params/callout.unicode.xml +0 -26
- data/lib/stylesheets/params/callouts.extension.xml +0 -30
- data/lib/stylesheets/params/chapter.autolabel.xml +0 -71
- data/lib/stylesheets/params/chunk.append.xml +0 -30
- data/lib/stylesheets/params/chunk.first.sections.xml +0 -31
- data/lib/stylesheets/params/chunk.quietly.xml +0 -30
- data/lib/stylesheets/params/chunk.section.depth.xml +0 -27
- data/lib/stylesheets/params/chunk.sections.xml +0 -30
- data/lib/stylesheets/params/chunk.separate.lots.xml +0 -36
- data/lib/stylesheets/params/chunk.toc.xml +0 -30
- data/lib/stylesheets/params/chunk.tocs.and.lots.has.title.xml +0 -28
- data/lib/stylesheets/params/chunk.tocs.and.lots.xml +0 -32
- data/lib/stylesheets/params/chunker.output.cdata-section-elements.xml +0 -30
- data/lib/stylesheets/params/chunker.output.doctype-public.xml +0 -31
- data/lib/stylesheets/params/chunker.output.doctype-system.xml +0 -31
- data/lib/stylesheets/params/chunker.output.encoding.xml +0 -31
- data/lib/stylesheets/params/chunker.output.indent.xml +0 -30
- data/lib/stylesheets/params/chunker.output.media-type.xml +0 -35
- data/lib/stylesheets/params/chunker.output.method.xml +0 -32
- data/lib/stylesheets/params/chunker.output.omit-xml-declaration.xml +0 -30
- data/lib/stylesheets/params/chunker.output.standalone.xml +0 -31
- data/lib/stylesheets/params/citerefentry.link.xml +0 -29
- data/lib/stylesheets/params/collect.xref.targets.xml +0 -33
- data/lib/stylesheets/params/column.count.back.xml +0 -27
- data/lib/stylesheets/params/column.count.body.xml +0 -27
- data/lib/stylesheets/params/column.count.front.xml +0 -27
- data/lib/stylesheets/params/column.count.index.xml +0 -27
- data/lib/stylesheets/params/column.count.lot.xml +0 -28
- data/lib/stylesheets/params/column.count.titlepage.xml +0 -27
- data/lib/stylesheets/params/column.gap.back.xml +0 -28
- data/lib/stylesheets/params/column.gap.body.xml +0 -28
- data/lib/stylesheets/params/column.gap.front.xml +0 -28
- data/lib/stylesheets/params/column.gap.index.xml +0 -28
- data/lib/stylesheets/params/column.gap.lot.xml +0 -28
- data/lib/stylesheets/params/column.gap.titlepage.xml +0 -29
- data/lib/stylesheets/params/compact.list.item.spacing.xml +0 -28
- data/lib/stylesheets/params/component.label.includes.part.label.xml +0 -39
- data/lib/stylesheets/params/component.title.properties.xml +0 -40
- data/lib/stylesheets/params/component.titlepage.properties.xml +0 -33
- data/lib/stylesheets/params/contrib.inline.enabled.xml +0 -26
- data/lib/stylesheets/params/crop.mark.bleed.xml +0 -28
- data/lib/stylesheets/params/crop.mark.offset.xml +0 -28
- data/lib/stylesheets/params/crop.mark.width.xml +0 -28
- data/lib/stylesheets/params/crop.marks.xml +0 -28
- data/lib/stylesheets/params/css.decoration.xml +0 -33
- data/lib/stylesheets/params/css.stylesheet.dir.xml +0 -33
- data/lib/stylesheets/params/css.stylesheet.xml +0 -29
- data/lib/stylesheets/params/current.docid.xml +0 -27
- data/lib/stylesheets/params/currentpage.marker.xml +0 -25
- data/lib/stylesheets/params/custom.css.source.xml +0 -119
- data/lib/stylesheets/params/default.float.class.xml +0 -34
- data/lib/stylesheets/params/default.image.width.xml +0 -30
- data/lib/stylesheets/params/default.table.frame.xml +0 -28
- data/lib/stylesheets/params/default.table.rules.xml +0 -76
- data/lib/stylesheets/params/default.table.width.xml +0 -26
- data/lib/stylesheets/params/default.units.xml +0 -37
- data/lib/stylesheets/params/dingbat.font.family.xml +0 -33
- data/lib/stylesheets/params/docbook.css.link.xml +0 -42
- data/lib/stylesheets/params/docbook.css.source.xml +0 -83
- data/lib/stylesheets/params/double.sided.xml +0 -31
- data/lib/stylesheets/params/draft.mode.xml +0 -36
- data/lib/stylesheets/params/draft.watermark.image.xml +0 -27
- data/lib/stylesheets/params/dry-run.xml +0 -27
- data/lib/stylesheets/params/dynamic.toc.xml +0 -29
- data/lib/stylesheets/params/ebnf.assignment.xml +0 -39
- data/lib/stylesheets/params/ebnf.statement.terminator.xml +0 -32
- data/lib/stylesheets/params/ebnf.table.bgcolor.xml +0 -30
- data/lib/stylesheets/params/ebnf.table.border.xml +0 -26
- data/lib/stylesheets/params/eclipse.autolabel.xml +0 -28
- data/lib/stylesheets/params/eclipse.plugin.id.xml +0 -28
- data/lib/stylesheets/params/eclipse.plugin.name.xml +0 -27
- data/lib/stylesheets/params/eclipse.plugin.provider.xml +0 -27
- data/lib/stylesheets/params/editedby.enabled.xml +0 -27
- data/lib/stylesheets/params/email.delimiters.enabled.xml +0 -34
- data/lib/stylesheets/params/email.mailto.enabled.xml +0 -29
- data/lib/stylesheets/params/emphasis.propagates.style.xml +0 -26
- data/lib/stylesheets/params/entry.propagates.style.xml +0 -30
- data/lib/stylesheets/params/epub.autolabel.xml +0 -28
- data/lib/stylesheets/params/equation.number.properties.xml +0 -28
- data/lib/stylesheets/params/equation.properties.xml +0 -27
- data/lib/stylesheets/params/example.properties.xml +0 -27
- data/lib/stylesheets/params/exsl.node.set.available.xml +0 -44
- data/lib/stylesheets/params/feedback.href.xml +0 -28
- data/lib/stylesheets/params/feedback.link.text.xml +0 -28
- data/lib/stylesheets/params/feedback.with.ids.xml +0 -27
- data/lib/stylesheets/params/figure.properties.xml +0 -27
- data/lib/stylesheets/params/filename-prefix.xml +0 -28
- data/lib/stylesheets/params/firstterm.only.link.xml +0 -29
- data/lib/stylesheets/params/foil.properties.xml +0 -37
- data/lib/stylesheets/params/foil.subtitle.properties.xml +0 -36
- data/lib/stylesheets/params/foil.title.master.xml +0 -29
- data/lib/stylesheets/params/foil.title.size.xml +0 -32
- data/lib/stylesheets/params/foilgroup.properties.xml +0 -31
- data/lib/stylesheets/params/foilgroup.toc.xml +0 -29
- data/lib/stylesheets/params/footer.column.widths.xml +0 -80
- data/lib/stylesheets/params/footer.content.properties.xml +0 -34
- data/lib/stylesheets/params/footer.hr.xml +0 -26
- data/lib/stylesheets/params/footer.rule.xml +0 -27
- data/lib/stylesheets/params/footer.table.height.xml +0 -32
- data/lib/stylesheets/params/footer.table.properties.xml +0 -30
- data/lib/stylesheets/params/footers.on.blank.pages.xml +0 -27
- data/lib/stylesheets/params/footnote.font.size.xml +0 -28
- data/lib/stylesheets/params/footnote.mark.properties.xml +0 -41
- data/lib/stylesheets/params/footnote.number.format.xml +0 -33
- data/lib/stylesheets/params/footnote.number.symbols.xml +0 -39
- data/lib/stylesheets/params/footnote.properties.xml +0 -43
- data/lib/stylesheets/params/footnote.sep.leader.properties.xml +0 -39
- data/lib/stylesheets/params/fop.extensions.xml +0 -36
- data/lib/stylesheets/params/fop1.extensions.xml +0 -34
- data/lib/stylesheets/params/formal.object.properties.xml +0 -36
- data/lib/stylesheets/params/formal.procedures.xml +0 -28
- data/lib/stylesheets/params/formal.title.placement.xml +0 -41
- data/lib/stylesheets/params/formal.title.properties.xml +0 -34
- data/lib/stylesheets/params/funcsynopsis.decoration.xml +0 -30
- data/lib/stylesheets/params/funcsynopsis.style.xml +0 -31
- data/lib/stylesheets/params/function.parens.xml +0 -29
- data/lib/stylesheets/params/generate.css.header.xml +0 -40
- data/lib/stylesheets/params/generate.id.attributes.xml +0 -59
- data/lib/stylesheets/params/generate.index.xml +0 -25
- data/lib/stylesheets/params/generate.legalnotice.link.xml +0 -72
- data/lib/stylesheets/params/generate.manifest.xml +0 -27
- data/lib/stylesheets/params/generate.meta.abstract.xml +0 -29
- data/lib/stylesheets/params/generate.revhistory.link.xml +0 -50
- data/lib/stylesheets/params/generate.section.toc.level.xml +0 -35
- data/lib/stylesheets/params/generate.toc.xml +0 -108
- data/lib/stylesheets/params/glossary.as.blocks.xml +0 -38
- data/lib/stylesheets/params/glossary.collection.xml +0 -252
- data/lib/stylesheets/params/glossary.sort.xml +0 -32
- data/lib/stylesheets/params/glossdef.block.properties.xml +0 -32
- data/lib/stylesheets/params/glossdef.list.properties.xml +0 -30
- data/lib/stylesheets/params/glossentry.list.item.properties.xml +0 -32
- data/lib/stylesheets/params/glossentry.show.acronym.xml +0 -37
- data/lib/stylesheets/params/glosslist.as.blocks.xml +0 -27
- data/lib/stylesheets/params/glossterm.auto.link.xml +0 -33
- data/lib/stylesheets/params/glossterm.block.properties.xml +0 -35
- data/lib/stylesheets/params/glossterm.list.properties.xml +0 -30
- data/lib/stylesheets/params/glossterm.separation.xml +0 -31
- data/lib/stylesheets/params/glossterm.width.xml +0 -28
- data/lib/stylesheets/params/graphic.default.extension.xml +0 -29
- data/lib/stylesheets/params/graphical.admonition.properties.xml +0 -42
- data/lib/stylesheets/params/graphics.dir.xml +0 -33
- data/lib/stylesheets/params/graphicsize.extension.xml +0 -30
- data/lib/stylesheets/params/graphicsize.use.img.src.path.xml +0 -30
- data/lib/stylesheets/params/header.column.widths.xml +0 -80
- data/lib/stylesheets/params/header.content.properties.xml +0 -34
- data/lib/stylesheets/params/header.hr.xml +0 -26
- data/lib/stylesheets/params/header.rule.xml +0 -27
- data/lib/stylesheets/params/header.table.height.xml +0 -32
- data/lib/stylesheets/params/header.table.properties.xml +0 -30
- data/lib/stylesheets/params/headers.on.blank.pages.xml +0 -27
- data/lib/stylesheets/params/hidetoc.image.xml +0 -29
- data/lib/stylesheets/params/highlight.default.language.xml +0 -27
- data/lib/stylesheets/params/highlight.source.xml +0 -82
- data/lib/stylesheets/params/highlight.xslthl.config.xml +0 -33
- data/lib/stylesheets/params/home.image.xml +0 -27
- data/lib/stylesheets/params/html.append.xml +0 -30
- data/lib/stylesheets/params/html.base.xml +0 -30
- data/lib/stylesheets/params/html.cellpadding.xml +0 -29
- data/lib/stylesheets/params/html.cellspacing.xml +0 -29
- data/lib/stylesheets/params/html.cleanup.xml +0 -34
- data/lib/stylesheets/params/html.ext.xml +0 -29
- data/lib/stylesheets/params/html.extra.head.links.xml +0 -31
- data/lib/stylesheets/params/html.head.legalnotice.link.multiple.xml +0 -44
- data/lib/stylesheets/params/html.head.legalnotice.link.types.xml +0 -75
- data/lib/stylesheets/params/html.longdesc.link.xml +0 -39
- data/lib/stylesheets/params/html.longdesc.xml +0 -28
- data/lib/stylesheets/params/html.stylesheet.type.xml +0 -26
- data/lib/stylesheets/params/html.stylesheet.xml +0 -36
- data/lib/stylesheets/params/htmlhelp.alias.file.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.autolabel.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.back.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.forward.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.hideshow.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.home.url.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.home.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump1.title.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump1.url.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump1.xml +0 -23
- data/lib/stylesheets/params/htmlhelp.button.jump2.title.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump2.url.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump2.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.locate.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.next.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.options.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.prev.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.print.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.refresh.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.stop.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.zoom.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.chm.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.default.topic.xml +0 -37
- data/lib/stylesheets/params/htmlhelp.display.progress.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.encoding.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.enhanced.decompilation.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.enumerate.images.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.force.map.and.alias.xml +0 -26
- data/lib/stylesheets/params/htmlhelp.hhc.binary.xml +0 -29
- data/lib/stylesheets/params/htmlhelp.hhc.folders.instead.books.xml +0 -31
- data/lib/stylesheets/params/htmlhelp.hhc.section.depth.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.hhc.show.root.xml +0 -29
- data/lib/stylesheets/params/htmlhelp.hhc.width.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.hhc.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.hhk.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.hhp.tail.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.hhp.window.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.hhp.windows.xml +0 -29
- data/lib/stylesheets/params/htmlhelp.hhp.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.map.file.xml +0 -25
- data/lib/stylesheets/params/htmlhelp.only.xml +0 -32
- data/lib/stylesheets/params/htmlhelp.remember.window.position.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.show.advanced.search.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.show.favorities.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.show.menu.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.show.toolbar.text.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.title.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.use.hhk.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.window.geometry.xml +0 -30
- data/lib/stylesheets/params/hyphenate.verbatim.characters.xml +0 -30
- data/lib/stylesheets/params/hyphenate.verbatim.xml +0 -45
- data/lib/stylesheets/params/hyphenate.xml +0 -29
- data/lib/stylesheets/params/id.warnings.xml +0 -25
- data/lib/stylesheets/params/ignore.image.scaling.xml +0 -28
- data/lib/stylesheets/params/img.src.path.xml +0 -40
- data/lib/stylesheets/params/index.div.title.properties.xml +0 -39
- data/lib/stylesheets/params/index.entry.properties.xml +0 -33
- data/lib/stylesheets/params/index.links.to.section.xml +0 -76
- data/lib/stylesheets/params/index.method.xml +0 -162
- data/lib/stylesheets/params/index.number.separator.xml +0 -54
- data/lib/stylesheets/params/index.on.role.xml +0 -48
- data/lib/stylesheets/params/index.on.type.xml +0 -52
- data/lib/stylesheets/params/index.page.number.properties.xml +0 -31
- data/lib/stylesheets/params/index.prefer.titleabbrev.xml +0 -29
- data/lib/stylesheets/params/index.preferred.page.properties.xml +0 -32
- data/lib/stylesheets/params/index.range.separator.xml +0 -57
- data/lib/stylesheets/params/index.term.separator.xml +0 -54
- data/lib/stylesheets/params/informal.object.properties.xml +0 -29
- data/lib/stylesheets/params/informalequation.properties.xml +0 -27
- data/lib/stylesheets/params/informalexample.properties.xml +0 -27
- data/lib/stylesheets/params/informalfigure.properties.xml +0 -27
- data/lib/stylesheets/params/informaltable.properties.xml +0 -32
- data/lib/stylesheets/params/inherit.keywords.xml +0 -31
- data/lib/stylesheets/params/insert.link.page.number.xml +0 -69
- data/lib/stylesheets/params/insert.olink.page.number.xml +0 -83
- data/lib/stylesheets/params/insert.olink.pdf.frag.xml +0 -68
- data/lib/stylesheets/params/insert.xref.page.number.xml +0 -60
- data/lib/stylesheets/params/itemizedlist.label.properties.xml +0 -26
- data/lib/stylesheets/params/itemizedlist.label.width.xml +0 -28
- data/lib/stylesheets/params/itemizedlist.properties.xml +0 -23
- data/lib/stylesheets/params/javahelp.encoding.xml +0 -31
- data/lib/stylesheets/params/keep.relative.image.uris.xml +0 -34
- data/lib/stylesheets/params/keyboard.nav.xml +0 -29
- data/lib/stylesheets/params/l10n.gentext.default.language.xml +0 -30
- data/lib/stylesheets/params/l10n.gentext.language.xml +0 -33
- data/lib/stylesheets/params/l10n.gentext.use.xref.language.xml +0 -53
- data/lib/stylesheets/params/l10n.lang.value.rfc.compliant.xml +0 -57
- data/lib/stylesheets/params/label.from.part.xml +0 -38
- data/lib/stylesheets/params/line-height.xml +0 -27
- data/lib/stylesheets/params/linenumbering.everyNth.xml +0 -29
- data/lib/stylesheets/params/linenumbering.extension.xml +0 -30
- data/lib/stylesheets/params/linenumbering.separator.xml +0 -30
- data/lib/stylesheets/params/linenumbering.width.xml +0 -29
- data/lib/stylesheets/params/link.mailto.url.xml +0 -29
- data/lib/stylesheets/params/list.block.properties.xml +0 -25
- data/lib/stylesheets/params/list.block.spacing.xml +0 -29
- data/lib/stylesheets/params/list.item.spacing.xml +0 -26
- data/lib/stylesheets/params/make.clean.html.xml +0 -51
- data/lib/stylesheets/params/make.graphic.viewport.xml +0 -35
- data/lib/stylesheets/params/make.index.markup.xml +0 -73
- data/lib/stylesheets/params/make.single.year.ranges.xml +0 -28
- data/lib/stylesheets/params/make.valid.html.xml +0 -35
- data/lib/stylesheets/params/make.year.ranges.xml +0 -32
- data/lib/stylesheets/params/man.authors.section.enabled.xml +0 -46
- data/lib/stylesheets/params/man.base.url.for.relative.links.xml +0 -76
- data/lib/stylesheets/params/man.break.after.slash.xml +0 -46
- data/lib/stylesheets/params/man.charmap.enabled.xml +0 -55
- data/lib/stylesheets/params/man.charmap.subset.profile.english.xml +0 -80
- data/lib/stylesheets/params/man.charmap.subset.profile.xml +0 -297
- data/lib/stylesheets/params/man.charmap.uri.xml +0 -42
- data/lib/stylesheets/params/man.charmap.use.subset.xml +0 -80
- data/lib/stylesheets/params/man.copyright.section.enabled.xml +0 -46
- data/lib/stylesheets/params/man.endnotes.are.numbered.xml +0 -106
- data/lib/stylesheets/params/man.endnotes.list.enabled.xml +0 -105
- data/lib/stylesheets/params/man.endnotes.list.heading.xml +0 -36
- data/lib/stylesheets/params/man.font.funcprototype.xml +0 -30
- data/lib/stylesheets/params/man.font.funcsynopsisinfo.xml +0 -30
- data/lib/stylesheets/params/man.font.links.xml +0 -64
- data/lib/stylesheets/params/man.font.table.headings.xml +0 -30
- data/lib/stylesheets/params/man.font.table.title.xml +0 -30
- data/lib/stylesheets/params/man.funcsynopsis.style.xml +0 -26
- data/lib/stylesheets/params/man.hyphenate.computer.inlines.xml +0 -53
- data/lib/stylesheets/params/man.hyphenate.filenames.xml +0 -47
- data/lib/stylesheets/params/man.hyphenate.urls.xml +0 -46
- data/lib/stylesheets/params/man.hyphenate.xml +0 -59
- data/lib/stylesheets/params/man.indent.blurbs.xml +0 -33
- data/lib/stylesheets/params/man.indent.lists.xml +0 -35
- data/lib/stylesheets/params/man.indent.refsect.xml +0 -70
- data/lib/stylesheets/params/man.indent.verbatims.xml +0 -33
- data/lib/stylesheets/params/man.indent.width.xml +0 -39
- data/lib/stylesheets/params/man.justify.xml +0 -52
- data/lib/stylesheets/params/man.output.base.dir.xml +0 -39
- data/lib/stylesheets/params/man.output.better.ps.enabled.xml +0 -61
- data/lib/stylesheets/params/man.output.encoding.xml +0 -53
- data/lib/stylesheets/params/man.output.in.separate.dir.xml +0 -32
- data/lib/stylesheets/params/man.output.lang.in.name.enabled.xml +0 -50
- data/lib/stylesheets/params/man.output.manifest.enabled.xml +0 -27
- data/lib/stylesheets/params/man.output.manifest.filename.xml +0 -29
- data/lib/stylesheets/params/man.output.quietly.xml +0 -37
- data/lib/stylesheets/params/man.output.subdirs.enabled.xml +0 -40
- data/lib/stylesheets/params/man.segtitle.suppress.xml +0 -28
- data/lib/stylesheets/params/man.string.subst.map.local.post.xml +0 -34
- data/lib/stylesheets/params/man.string.subst.map.local.pre.xml +0 -34
- data/lib/stylesheets/params/man.string.subst.map.xml +0 -162
- data/lib/stylesheets/params/man.subheading.divider.enabled.xml +0 -37
- data/lib/stylesheets/params/man.subheading.divider.xml +0 -37
- data/lib/stylesheets/params/man.table.footnotes.divider.xml +0 -29
- data/lib/stylesheets/params/man.th.extra1.suppress.xml +0 -32
- data/lib/stylesheets/params/man.th.extra2.max.length.xml +0 -43
- data/lib/stylesheets/params/man.th.extra2.suppress.xml +0 -44
- data/lib/stylesheets/params/man.th.extra3.max.length.xml +0 -42
- data/lib/stylesheets/params/man.th.extra3.suppress.xml +0 -34
- data/lib/stylesheets/params/man.th.title.max.length.xml +0 -63
- data/lib/stylesheets/params/manifest.in.base.dir.xml +0 -29
- data/lib/stylesheets/params/manifest.xml +0 -29
- data/lib/stylesheets/params/manual.toc.xml +0 -29
- data/lib/stylesheets/params/margin.note.float.type.xml +0 -77
- data/lib/stylesheets/params/margin.note.properties.xml +0 -54
- data/lib/stylesheets/params/margin.note.title.properties.xml +0 -32
- data/lib/stylesheets/params/margin.note.width.xml +0 -35
- data/lib/stylesheets/params/marker.section.level.xml +0 -50
- data/lib/stylesheets/params/menuchoice.menu.separator.xml +0 -42
- data/lib/stylesheets/params/menuchoice.separator.xml +0 -32
- data/lib/stylesheets/params/minus.image.xml +0 -29
- data/lib/stylesheets/params/monospace.font.family.xml +0 -29
- data/lib/stylesheets/params/monospace.properties.xml +0 -38
- data/lib/stylesheets/params/monospace.verbatim.font.width.xml +0 -40
- data/lib/stylesheets/params/monospace.verbatim.properties.xml +0 -27
- data/lib/stylesheets/params/multiframe.bottom.bgcolor.xml +0 -28
- data/lib/stylesheets/params/multiframe.navigation.height.xml +0 -28
- data/lib/stylesheets/params/multiframe.top.bgcolor.xml +0 -28
- data/lib/stylesheets/params/multiframe.xml +0 -31
- data/lib/stylesheets/params/nav.separator.xml +0 -28
- data/lib/stylesheets/params/nav.table.summary.xml +0 -27
- data/lib/stylesheets/params/navbgcolor.xml +0 -26
- data/lib/stylesheets/params/navbodywidth.xml +0 -26
- data/lib/stylesheets/params/navig.graphics.extension.xml +0 -28
- data/lib/stylesheets/params/navig.graphics.path.xml +0 -30
- data/lib/stylesheets/params/navig.graphics.xml +0 -31
- data/lib/stylesheets/params/navig.showtitles.xml +0 -32
- data/lib/stylesheets/params/navtocwidth.xml +0 -26
- data/lib/stylesheets/params/next.image.xml +0 -27
- data/lib/stylesheets/params/no.home.image.xml +0 -27
- data/lib/stylesheets/params/no.next.image.xml +0 -27
- data/lib/stylesheets/params/no.prev.image.xml +0 -27
- data/lib/stylesheets/params/no.toc.image.xml +0 -27
- data/lib/stylesheets/params/no.up.image.xml +0 -27
- data/lib/stylesheets/params/nominal.image.depth.xml +0 -27
- data/lib/stylesheets/params/nominal.image.width.xml +0 -43
- data/lib/stylesheets/params/nominal.table.width.xml +0 -30
- data/lib/stylesheets/params/nongraphical.admonition.properties.xml +0 -41
- data/lib/stylesheets/params/normal.para.spacing.xml +0 -26
- data/lib/stylesheets/params/olink.base.uri.xml +0 -35
- data/lib/stylesheets/params/olink.debug.xml +0 -36
- data/lib/stylesheets/params/olink.doctitle.xml +0 -146
- data/lib/stylesheets/params/olink.fragid.xml +0 -23
- data/lib/stylesheets/params/olink.lang.fallback.sequence.xml +0 -83
- data/lib/stylesheets/params/olink.outline.ext.xml +0 -28
- data/lib/stylesheets/params/olink.properties.xml +0 -33
- data/lib/stylesheets/params/olink.pubid.xml +0 -27
- data/lib/stylesheets/params/olink.resolver.xml +0 -23
- data/lib/stylesheets/params/olink.sysid.xml +0 -27
- data/lib/stylesheets/params/orderedlist.label.properties.xml +0 -26
- data/lib/stylesheets/params/orderedlist.label.width.xml +0 -28
- data/lib/stylesheets/params/orderedlist.properties.xml +0 -24
- data/lib/stylesheets/params/othercredit.like.author.enabled.xml +0 -31
- data/lib/stylesheets/params/output-root.xml +0 -28
- data/lib/stylesheets/params/output.indent.xml +0 -32
- data/lib/stylesheets/params/overlay.js.xml +0 -28
- data/lib/stylesheets/params/overlay.logo.xml +0 -28
- data/lib/stylesheets/params/overlay.xml +0 -32
- data/lib/stylesheets/params/page.height.portrait.xml +0 -69
- data/lib/stylesheets/params/page.height.xml +0 -37
- data/lib/stylesheets/params/page.margin.bottom.xml +0 -29
- data/lib/stylesheets/params/page.margin.inner.xml +0 -56
- data/lib/stylesheets/params/page.margin.outer.xml +0 -53
- data/lib/stylesheets/params/page.margin.top.xml +0 -28
- data/lib/stylesheets/params/page.orientation.xml +0 -32
- data/lib/stylesheets/params/page.width.portrait.xml +0 -67
- data/lib/stylesheets/params/page.width.xml +0 -36
- data/lib/stylesheets/params/pages.template.xml +0 -29
- data/lib/stylesheets/params/paper.type.xml +0 -73
- data/lib/stylesheets/params/para.propagates.style.xml +0 -29
- data/lib/stylesheets/params/part.autolabel.xml +0 -73
- data/lib/stylesheets/params/passivetex.extensions.xml +0 -37
- data/lib/stylesheets/params/pgwide.properties.xml +0 -52
- data/lib/stylesheets/params/phrase.propagates.style.xml +0 -29
- data/lib/stylesheets/params/pixels.per.inch.xml +0 -31
- data/lib/stylesheets/params/plus.image.xml +0 -29
- data/lib/stylesheets/params/points.per.em.xml +0 -29
- data/lib/stylesheets/params/preface.autolabel.xml +0 -71
- data/lib/stylesheets/params/prefer.internal.olink.xml +0 -78
- data/lib/stylesheets/params/preferred.mediaobject.role.xml +0 -40
- data/lib/stylesheets/params/prev.image.xml +0 -27
- data/lib/stylesheets/params/procedure.properties.xml +0 -29
- data/lib/stylesheets/params/process.empty.source.toc.xml +0 -39
- data/lib/stylesheets/params/process.source.toc.xml +0 -39
- data/lib/stylesheets/params/profile.arch.xml +0 -39
- data/lib/stylesheets/params/profile.attribute.xml +0 -34
- data/lib/stylesheets/params/profile.audience.xml +0 -38
- data/lib/stylesheets/params/profile.condition.xml +0 -38
- data/lib/stylesheets/params/profile.conformance.xml +0 -38
- data/lib/stylesheets/params/profile.lang.xml +0 -38
- data/lib/stylesheets/params/profile.os.xml +0 -38
- data/lib/stylesheets/params/profile.revision.xml +0 -38
- data/lib/stylesheets/params/profile.revisionflag.xml +0 -38
- data/lib/stylesheets/params/profile.role.xml +0 -54
- data/lib/stylesheets/params/profile.security.xml +0 -38
- data/lib/stylesheets/params/profile.separator.xml +0 -27
- data/lib/stylesheets/params/profile.status.xml +0 -38
- data/lib/stylesheets/params/profile.userlevel.xml +0 -38
- data/lib/stylesheets/params/profile.value.xml +0 -41
- data/lib/stylesheets/params/profile.vendor.xml +0 -38
- data/lib/stylesheets/params/profile.wordsize.xml +0 -38
- data/lib/stylesheets/params/punct.honorific.xml +0 -28
- data/lib/stylesheets/params/qanda.defaultlabel.xml +0 -86
- data/lib/stylesheets/params/qanda.in.toc.xml +0 -34
- data/lib/stylesheets/params/qanda.inherit.numeration.xml +0 -30
- data/lib/stylesheets/params/qanda.nested.in.toc.xml +0 -29
- data/lib/stylesheets/params/qanda.title.level1.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level2.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level3.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level4.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level5.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level6.properties.xml +0 -34
- data/lib/stylesheets/params/qanda.title.properties.xml +0 -37
- data/lib/stylesheets/params/qandadiv.autolabel.xml +0 -26
- data/lib/stylesheets/params/rebuild-all.xml +0 -33
- data/lib/stylesheets/params/refclass.suppress.xml +0 -28
- data/lib/stylesheets/params/refentry.date.profile.enabled.xml +0 -46
- data/lib/stylesheets/params/refentry.date.profile.xml +0 -38
- data/lib/stylesheets/params/refentry.generate.name.xml +0 -33
- data/lib/stylesheets/params/refentry.generate.title.xml +0 -33
- data/lib/stylesheets/params/refentry.manual.fallback.profile.xml +0 -48
- data/lib/stylesheets/params/refentry.manual.profile.enabled.xml +0 -47
- data/lib/stylesheets/params/refentry.manual.profile.xml +0 -72
- data/lib/stylesheets/params/refentry.meta.get.quietly.xml +0 -37
- data/lib/stylesheets/params/refentry.pagebreak.xml +0 -33
- data/lib/stylesheets/params/refentry.separator.xml +0 -29
- data/lib/stylesheets/params/refentry.source.fallback.profile.xml +0 -49
- data/lib/stylesheets/params/refentry.source.name.profile.enabled.xml +0 -48
- data/lib/stylesheets/params/refentry.source.name.profile.xml +0 -89
- data/lib/stylesheets/params/refentry.source.name.suppress.xml +0 -42
- data/lib/stylesheets/params/refentry.title.properties.xml +0 -59
- data/lib/stylesheets/params/refentry.version.profile.enabled.xml +0 -47
- data/lib/stylesheets/params/refentry.version.profile.xml +0 -41
- data/lib/stylesheets/params/refentry.version.suppress.xml +0 -43
- data/lib/stylesheets/params/refentry.xref.manvolnum.xml +0 -31
- data/lib/stylesheets/params/reference.autolabel.xml +0 -67
- data/lib/stylesheets/params/region.after.extent.xml +0 -29
- data/lib/stylesheets/params/region.before.extent.xml +0 -29
- data/lib/stylesheets/params/revhistory.table.cell.properties.xml +0 -28
- data/lib/stylesheets/params/revhistory.table.properties.xml +0 -28
- data/lib/stylesheets/params/revhistory.title.properties.xml +0 -28
- data/lib/stylesheets/params/root.filename.xml +0 -29
- data/lib/stylesheets/params/root.properties.xml +0 -46
- data/lib/stylesheets/params/rootid.xml +0 -33
- data/lib/stylesheets/params/runinhead.default.title.end.punct.xml +0 -27
- data/lib/stylesheets/params/runinhead.title.end.punct.xml +0 -32
- data/lib/stylesheets/params/running.foot.properties.xml +0 -34
- data/lib/stylesheets/params/sans.font.family.xml +0 -29
- data/lib/stylesheets/params/saxon.callouts.xml +0 -30
- data/lib/stylesheets/params/saxon.character.representation.xml +0 -38
- data/lib/stylesheets/params/saxon.linenumbering.xml +0 -32
- data/lib/stylesheets/params/saxon.tablecolumns.xml +0 -30
- data/lib/stylesheets/params/script.dir.xml +0 -33
- data/lib/stylesheets/params/section.autolabel.max.depth.xml +0 -32
- data/lib/stylesheets/params/section.autolabel.xml +0 -26
- data/lib/stylesheets/params/section.container.element.xml +0 -62
- data/lib/stylesheets/params/section.label.includes.component.label.xml +0 -27
- data/lib/stylesheets/params/section.level1.properties.xml +0 -43
- data/lib/stylesheets/params/section.level2.properties.xml +0 -43
- data/lib/stylesheets/params/section.level3.properties.xml +0 -43
- data/lib/stylesheets/params/section.level4.properties.xml +0 -43
- data/lib/stylesheets/params/section.level5.properties.xml +0 -43
- data/lib/stylesheets/params/section.level6.properties.xml +0 -43
- data/lib/stylesheets/params/section.properties.xml +0 -35
- data/lib/stylesheets/params/section.title.level1.properties.xml +0 -32
- data/lib/stylesheets/params/section.title.level2.properties.xml +0 -33
- data/lib/stylesheets/params/section.title.level3.properties.xml +0 -32
- data/lib/stylesheets/params/section.title.level4.properties.xml +0 -32
- data/lib/stylesheets/params/section.title.level5.properties.xml +0 -32
- data/lib/stylesheets/params/section.title.level6.properties.xml +0 -33
- data/lib/stylesheets/params/section.title.properties.xml +0 -39
- data/lib/stylesheets/params/segmentedlist.as.table.xml +0 -28
- data/lib/stylesheets/params/sequential.links.xml +0 -25
- data/lib/stylesheets/params/shade.verbatim.style.xml +0 -36
- data/lib/stylesheets/params/shade.verbatim.xml +0 -30
- data/lib/stylesheets/params/show.comments.xml +0 -32
- data/lib/stylesheets/params/show.foil.number.xml +0 -28
- data/lib/stylesheets/params/show.revisionflag.xml +0 -42
- data/lib/stylesheets/params/showtoc.image.xml +0 -29
- data/lib/stylesheets/params/side.float.properties.xml +0 -50
- data/lib/stylesheets/params/sidebar.float.type.xml +0 -90
- data/lib/stylesheets/params/sidebar.float.width.xml +0 -35
- data/lib/stylesheets/params/sidebar.properties.xml +0 -42
- data/lib/stylesheets/params/sidebar.title.properties.xml +0 -32
- data/lib/stylesheets/params/simplesect.in.toc.xml +0 -26
- data/lib/stylesheets/params/slide.font.family.xml +0 -31
- data/lib/stylesheets/params/slide.title.font.family.xml +0 -31
- data/lib/stylesheets/params/slides.js.xml +0 -28
- data/lib/stylesheets/params/slides.properties.xml +0 -31
- data/lib/stylesheets/params/spacing.paras.xml +0 -30
- data/lib/stylesheets/params/speakernote.properties.xml +0 -32
- data/lib/stylesheets/params/subscript.properties.xml +0 -29
- data/lib/stylesheets/params/superscript.properties.xml +0 -29
- data/lib/stylesheets/params/suppress.footer.navigation.xml +0 -26
- data/lib/stylesheets/params/suppress.header.navigation.xml +0 -27
- data/lib/stylesheets/params/suppress.homepage.title.xml +0 -25
- data/lib/stylesheets/params/suppress.navigation.xml +0 -28
- data/lib/stylesheets/params/symbol.font.family.xml +0 -45
- data/lib/stylesheets/params/table.borders.with.css.xml +0 -28
- data/lib/stylesheets/params/table.cell.border.color.xml +0 -39
- data/lib/stylesheets/params/table.cell.border.style.xml +0 -42
- data/lib/stylesheets/params/table.cell.border.thickness.xml +0 -35
- data/lib/stylesheets/params/table.cell.padding.xml +0 -32
- data/lib/stylesheets/params/table.entry.padding.xml +0 -27
- data/lib/stylesheets/params/table.footnote.number.format.xml +0 -33
- data/lib/stylesheets/params/table.footnote.number.symbols.xml +0 -39
- data/lib/stylesheets/params/table.footnote.properties.xml +0 -39
- data/lib/stylesheets/params/table.frame.border.color.xml +0 -28
- data/lib/stylesheets/params/table.frame.border.style.xml +0 -37
- data/lib/stylesheets/params/table.frame.border.thickness.xml +0 -27
- data/lib/stylesheets/params/table.properties.xml +0 -34
- data/lib/stylesheets/params/table.spacer.image.xml +0 -26
- data/lib/stylesheets/params/table.table.properties.xml +0 -36
- data/lib/stylesheets/params/tablecolumns.extension.xml +0 -30
- data/lib/stylesheets/params/target.database.document.xml +0 -37
- data/lib/stylesheets/params/targets.filename.xml +0 -32
- data/lib/stylesheets/params/template.xml +0 -27
- data/lib/stylesheets/params/tex.math.delims.xml +0 -47
- data/lib/stylesheets/params/tex.math.file.xml +0 -42
- data/lib/stylesheets/params/tex.math.in.alt.xml +0 -76
- data/lib/stylesheets/params/text.home.xml +0 -27
- data/lib/stylesheets/params/text.next.xml +0 -27
- data/lib/stylesheets/params/text.prev.xml +0 -27
- data/lib/stylesheets/params/text.toc.xml +0 -27
- data/lib/stylesheets/params/text.up.xml +0 -27
- data/lib/stylesheets/params/textbgcolor.xml +0 -26
- data/lib/stylesheets/params/textdata.default.encoding.xml +0 -32
- data/lib/stylesheets/params/textinsert.extension.xml +0 -62
- data/lib/stylesheets/params/title.font.family.xml +0 -33
- data/lib/stylesheets/params/title.margin.left.xml +0 -65
- data/lib/stylesheets/params/titlefoil.html.xml +0 -27
- data/lib/stylesheets/params/toc.bg.color.xml +0 -27
- data/lib/stylesheets/params/toc.blank.graphic.xml +0 -28
- data/lib/stylesheets/params/toc.blank.image.xml +0 -27
- data/lib/stylesheets/params/toc.blank.text.xml +0 -27
- data/lib/stylesheets/params/toc.hide.show.xml +0 -33
- data/lib/stylesheets/params/toc.html.xml +0 -27
- data/lib/stylesheets/params/toc.image.xml +0 -27
- data/lib/stylesheets/params/toc.indent.width.xml +0 -34
- data/lib/stylesheets/params/toc.line.properties.xml +0 -44
- data/lib/stylesheets/params/toc.list.type.xml +0 -30
- data/lib/stylesheets/params/toc.margin.properties.xml +0 -33
- data/lib/stylesheets/params/toc.max.depth.xml +0 -25
- data/lib/stylesheets/params/toc.pointer.graphic.xml +0 -28
- data/lib/stylesheets/params/toc.pointer.image.xml +0 -27
- data/lib/stylesheets/params/toc.pointer.text.xml +0 -27
- data/lib/stylesheets/params/toc.row.height.xml +0 -33
- data/lib/stylesheets/params/toc.section.depth.xml +0 -28
- data/lib/stylesheets/params/toc.spacer.graphic.xml +0 -28
- data/lib/stylesheets/params/toc.spacer.image.xml +0 -27
- data/lib/stylesheets/params/toc.spacer.text.xml +0 -27
- data/lib/stylesheets/params/toc.width.xml +0 -28
- data/lib/stylesheets/params/ua.js.xml +0 -28
- data/lib/stylesheets/params/ulink.footnotes.xml +0 -34
- data/lib/stylesheets/params/ulink.hyphenate.chars.xml +0 -37
- data/lib/stylesheets/params/ulink.hyphenate.xml +0 -35
- data/lib/stylesheets/params/ulink.show.xml +0 -37
- data/lib/stylesheets/params/ulink.target.xml +0 -29
- data/lib/stylesheets/params/up.image.xml +0 -27
- data/lib/stylesheets/params/use.embed.for.svg.xml +0 -33
- data/lib/stylesheets/params/use.extensions.xml +0 -31
- data/lib/stylesheets/params/use.id.as.filename.xml +0 -30
- data/lib/stylesheets/params/use.id.function.xml +0 -32
- data/lib/stylesheets/params/use.local.olink.style.xml +0 -28
- data/lib/stylesheets/params/use.role.as.xrefstyle.xml +0 -93
- data/lib/stylesheets/params/use.role.for.mediaobject.xml +0 -56
- data/lib/stylesheets/params/use.svg.xml +0 -30
- data/lib/stylesheets/params/variablelist.as.blocks.xml +0 -62
- data/lib/stylesheets/params/variablelist.as.table.xml +0 -54
- data/lib/stylesheets/params/variablelist.max.termlength.xml +0 -46
- data/lib/stylesheets/params/variablelist.term.break.after.xml +0 -39
- data/lib/stylesheets/params/variablelist.term.properties.xml +0 -29
- data/lib/stylesheets/params/variablelist.term.separator.xml +0 -40
- data/lib/stylesheets/params/verbatim.properties.xml +0 -38
- data/lib/stylesheets/params/wordml.template.xml +0 -29
- data/lib/stylesheets/params/writing.mode.xml +0 -83
- data/lib/stylesheets/params/xbCollapsibleLists.js.xml +0 -28
- data/lib/stylesheets/params/xbDOM.js.xml +0 -28
- data/lib/stylesheets/params/xbLibrary.js.xml +0 -28
- data/lib/stylesheets/params/xbStyle.js.xml +0 -28
- data/lib/stylesheets/params/xep.extensions.xml +0 -31
- data/lib/stylesheets/params/xep.index.item.properties.xml +0 -36
- data/lib/stylesheets/params/xref.label-page.separator.xml +0 -38
- data/lib/stylesheets/params/xref.label-title.separator.xml +0 -36
- data/lib/stylesheets/params/xref.properties.xml +0 -29
- data/lib/stylesheets/params/xref.title-page.separator.xml +0 -36
- data/lib/stylesheets/params/xref.with.number.and.title.xml +0 -30
- data/lib/stylesheets/profiling/profile-mode.xsl +0 -239
- data/lib/stylesheets/profiling/profile.xsl +0 -58
- data/lib/stylesheets/profiling/strip-attributes.xsl +0 -27
- data/lib/stylesheets/profiling/xsl2profile.xsl +0 -159
- data/lib/stylesheets/roundtrip/blocks-spec.xml +0 -11
- data/lib/stylesheets/roundtrip/blocks2dbk.dtd +0 -76
- data/lib/stylesheets/roundtrip/blocks2dbk.xsl +0 -1734
- data/lib/stylesheets/roundtrip/dbk2ooo.xsl +0 -178
- data/lib/stylesheets/roundtrip/dbk2pages.xsl +0 -442
- data/lib/stylesheets/roundtrip/dbk2wordml.xsl +0 -402
- data/lib/stylesheets/roundtrip/dbk2wp.xsl +0 -1376
- data/lib/stylesheets/roundtrip/normalise-common.xsl +0 -39
- data/lib/stylesheets/roundtrip/normalise2sections.xsl +0 -1270
- data/lib/stylesheets/roundtrip/pages2normalise.xsl +0 -352
- data/lib/stylesheets/roundtrip/param.xml +0 -105
- data/lib/stylesheets/roundtrip/param.xsl +0 -20
- data/lib/stylesheets/roundtrip/sections-spec.xml +0 -38
- data/lib/stylesheets/roundtrip/sections2blocks.xsl +0 -263
- data/lib/stylesheets/roundtrip/specifications.xml +0 -1420
- data/lib/stylesheets/roundtrip/template-pages.xml +0 -2
- data/lib/stylesheets/roundtrip/template.dot +0 -0
- data/lib/stylesheets/roundtrip/template.xml +0 -3
- data/lib/stylesheets/roundtrip/wordml2normalise.xsl +0 -446
- data/lib/stylesheets/slides/browser/CTOCWidget.js +0 -169
- data/lib/stylesheets/slides/browser/overlay.js +0 -142
- data/lib/stylesheets/slides/browser/slides-default.css +0 -9
- data/lib/stylesheets/slides/browser/slides-frames.css +0 -73
- data/lib/stylesheets/slides/browser/slides-plain.css +0 -1
- data/lib/stylesheets/slides/browser/slides-table.css +0 -41
- data/lib/stylesheets/slides/browser/slides-w3c.css +0 -1
- data/lib/stylesheets/slides/browser/slides.css +0 -119
- data/lib/stylesheets/slides/browser/slides.js +0 -120
- data/lib/stylesheets/slides/browser/ua.js +0 -135
- data/lib/stylesheets/slides/browser/xbCollapsibleLists.js +0 -537
- data/lib/stylesheets/slides/browser/xbDOM.js +0 -374
- data/lib/stylesheets/slides/browser/xbDebug.js +0 -311
- data/lib/stylesheets/slides/browser/xbLibrary.js +0 -80
- data/lib/stylesheets/slides/browser/xbStyle-css.js +0 -791
- data/lib/stylesheets/slides/browser/xbStyle-nn4.js +0 -485
- data/lib/stylesheets/slides/browser/xbStyle-not-supported.js +0 -77
- data/lib/stylesheets/slides/browser/xbStyle.js +0 -295
- data/lib/stylesheets/slides/fo/param.xml +0 -356
- data/lib/stylesheets/slides/fo/param.xsl +0 -74
- data/lib/stylesheets/slides/fo/plain-titlepage.xml +0 -79
- data/lib/stylesheets/slides/fo/plain-titlepage.xsl +0 -187
- data/lib/stylesheets/slides/fo/plain.xsl +0 -528
- data/lib/stylesheets/slides/graphics/active/arr-next.png +0 -0
- data/lib/stylesheets/slides/graphics/active/arr-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-fforward.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-info.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-next.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-rewind.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-home.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-next.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-toc.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-up.png +0 -0
- data/lib/stylesheets/slides/graphics/active/w3c-next.png +0 -0
- data/lib/stylesheets/slides/graphics/active/w3c-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/active/w3c-toc.png +0 -0
- data/lib/stylesheets/slides/graphics/arrow.gif +0 -0
- data/lib/stylesheets/slides/graphics/blank.gif +0 -0
- data/lib/stylesheets/slides/graphics/blank.png +0 -0
- data/lib/stylesheets/slides/graphics/hidetoc.gif +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-fforward.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-info.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-next.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-rewind.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-home.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-next.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-toc.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-up.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/w3c-next.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/w3c-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/w3c-toc.png +0 -0
- data/lib/stylesheets/slides/graphics/plus.gif +0 -0
- data/lib/stylesheets/slides/graphics/pointer.png +0 -0
- data/lib/stylesheets/slides/graphics/showtoc.gif +0 -0
- data/lib/stylesheets/slides/graphics/toc/bullet.png +0 -0
- data/lib/stylesheets/slides/graphics/toc/closed.png +0 -0
- data/lib/stylesheets/slides/graphics/toc/open.png +0 -0
- data/lib/stylesheets/slides/html/css.xsl +0 -46
- data/lib/stylesheets/slides/html/default.xsl +0 -261
- data/lib/stylesheets/slides/html/flat.xsl +0 -70
- data/lib/stylesheets/slides/html/frames.xsl +0 -2016
- data/lib/stylesheets/slides/html/graphics.xsl +0 -151
- data/lib/stylesheets/slides/html/jscript.xsl +0 -127
- data/lib/stylesheets/slides/html/param.xml +0 -1376
- data/lib/stylesheets/slides/html/param.xsl +0 -68
- data/lib/stylesheets/slides/html/plain.xsl +0 -472
- data/lib/stylesheets/slides/html/slides-common.xsl +0 -1541
- data/lib/stylesheets/slides/html/tables.xsl +0 -336
- data/lib/stylesheets/slides/html/vslides.xsl +0 -667
- data/lib/stylesheets/slides/html/w3c.xsl +0 -376
- data/lib/stylesheets/slides/htmlhelp/htmlhelp.xsl +0 -89
- data/lib/stylesheets/slides/keynote/default.xsl +0 -600
- data/lib/stylesheets/slides/keynote/xsltsl/cmp.xsl +0 -348
- data/lib/stylesheets/slides/keynote/xsltsl/date-time.xsl +0 -1524
- data/lib/stylesheets/slides/keynote/xsltsl/example.xsl +0 -90
- data/lib/stylesheets/slides/keynote/xsltsl/markup.xsl +0 -789
- data/lib/stylesheets/slides/keynote/xsltsl/math.xsl +0 -704
- data/lib/stylesheets/slides/keynote/xsltsl/node.xsl +0 -229
- data/lib/stylesheets/slides/keynote/xsltsl/stdlib.xsl +0 -340
- data/lib/stylesheets/slides/keynote/xsltsl/string.xsl +0 -1233
- data/lib/stylesheets/slides/keynote/xsltsl/svg.xsl +0 -177
- data/lib/stylesheets/slides/keynote/xsltsl/uri.xsl +0 -580
- data/lib/stylesheets/slides/svg/default.xsl +0 -686
- data/lib/stylesheets/slides/xhtml/css.xsl +0 -47
- data/lib/stylesheets/slides/xhtml/default.xsl +0 -246
- data/lib/stylesheets/slides/xhtml/flat.xsl +0 -71
- data/lib/stylesheets/slides/xhtml/frames.xsl +0 -1982
- data/lib/stylesheets/slides/xhtml/graphics.xsl +0 -152
- data/lib/stylesheets/slides/xhtml/jscript.xsl +0 -128
- data/lib/stylesheets/slides/xhtml/param.xsl +0 -70
- data/lib/stylesheets/slides/xhtml/plain.xsl +0 -470
- data/lib/stylesheets/slides/xhtml/slides-common.xsl +0 -1534
- data/lib/stylesheets/slides/xhtml/tables.xsl +0 -334
- data/lib/stylesheets/slides/xhtml/vslides.xsl +0 -652
- data/lib/stylesheets/slides/xhtml/w3c.xsl +0 -358
- data/lib/stylesheets/template/titlepage.xml +0 -478
- data/lib/stylesheets/template/titlepage.xsl +0 -1355
- data/lib/stylesheets/tests/refentry.007.ns.xml +0 -325
- data/lib/stylesheets/tests/refentry.007.xml +0 -340
- data/lib/stylesheets/tools/bin/docbook-xsl-update +0 -53
- data/lib/stylesheets/tools/make/Makefile.DocBook +0 -698
- data/lib/stylesheets/tools/make/Makefile.combine +0 -182
- data/lib/stylesheets/tools/make/Makefile.docParam +0 -59
- data/lib/stylesheets/webhelp/LICENSE +0 -1
- data/lib/stylesheets/webhelp/build.properties +0 -43
- data/lib/stylesheets/webhelp/build.xml +0 -112
- data/lib/stylesheets/webhelp/docs/common/css/positioning.css +0 -109
- data/lib/stylesheets/webhelp/docs/common/images/header-bg.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/highlight-blue.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/highlight-yellow.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/loading.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/logo.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/showHideTreeIcons.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/jquery-1.4.2.min.js +0 -154
- data/lib/stylesheets/webhelp/docs/common/jquery/jquery-ui-1.8.2.custom.min.js +0 -321
- data/lib/stylesheets/webhelp/docs/common/jquery/jquery.cookie.js +0 -93
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-anim_basic_16x16.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_217bc0_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_2e83ff_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_469bdd_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_6da8d5_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_f9bd01_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/jquery-ui-1.8.2.custom.css +0 -398
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/file.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder-closed.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder-closed2.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder2.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/minus.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/plus.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-black-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-black.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-default-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-default.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-famfamfam-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-famfamfam.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-gray-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-gray.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-red-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-red.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.async.js +0 -72
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.css +0 -85
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.js +0 -255
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.min.js +0 -16
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.pack.js +0 -16
- data/lib/stylesheets/webhelp/docs/common/main.js +0 -161
- data/lib/stylesheets/webhelp/docs/content/ch01.html +0 -61
- data/lib/stylesheets/webhelp/docs/content/ch02.html +0 -32
- data/lib/stylesheets/webhelp/docs/content/ch02s01.html +0 -117
- data/lib/stylesheets/webhelp/docs/content/ch02s02.html +0 -102
- data/lib/stylesheets/webhelp/docs/content/ch02s03.html +0 -36
- data/lib/stylesheets/webhelp/docs/content/ch02s04.html +0 -42
- data/lib/stylesheets/webhelp/docs/content/ch03.html +0 -37
- data/lib/stylesheets/webhelp/docs/content/ch03s01.html +0 -62
- data/lib/stylesheets/webhelp/docs/content/ch03s02.html +0 -124
- data/lib/stylesheets/webhelp/docs/content/index.html +0 -71
- data/lib/stylesheets/webhelp/docs/content/search/htmlFileInfoList.js +0 -10
- data/lib/stylesheets/webhelp/docs/content/search/htmlFileList.js +0 -11
- data/lib/stylesheets/webhelp/docs/content/search/index-1.js +0 -224
- data/lib/stylesheets/webhelp/docs/content/search/index-2.js +0 -223
- data/lib/stylesheets/webhelp/docs/content/search/index-3.js +0 -221
- data/lib/stylesheets/webhelp/docs/content/search/nwSearchFnt.js +0 -513
- data/lib/stylesheets/webhelp/docs/content/search/stemmers/en_stemmer.js +0 -187
- data/lib/stylesheets/webhelp/docs/favicon.ico +0 -0
- data/lib/stylesheets/webhelp/docs/index.html +0 -13
- data/lib/stylesheets/webhelp/docsrc/readme.xml +0 -891
- data/lib/stylesheets/webhelp/template/common/css/positioning.css +0 -109
- data/lib/stylesheets/webhelp/template/common/images/header-bg.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/images/highlight-blue.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/images/highlight-yellow.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/images/loading.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/images/logo.png +0 -0
- data/lib/stylesheets/webhelp/template/common/images/showHideTreeIcons.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/jquery-1.4.2.min.js +0 -154
- data/lib/stylesheets/webhelp/template/common/jquery/jquery-ui-1.8.2.custom.min.js +0 -321
- data/lib/stylesheets/webhelp/template/common/jquery/jquery.cookie.js +0 -93
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-anim_basic_16x16.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_217bc0_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_2e83ff_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_469bdd_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_6da8d5_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_f9bd01_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/jquery-ui-1.8.2.custom.css +0 -398
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/file.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder-closed.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder-closed2.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder2.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/minus.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/plus.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-black-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-black.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-default-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-default.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-famfamfam-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-famfamfam.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-gray-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-gray.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-red-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-red.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.async.js +0 -72
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.css +0 -85
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.js +0 -255
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.min.js +0 -16
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.pack.js +0 -16
- data/lib/stylesheets/webhelp/template/common/main.js +0 -161
- data/lib/stylesheets/webhelp/template/content/search/default.props +0 -1
- data/lib/stylesheets/webhelp/template/content/search/en-us.props +0 -45
- data/lib/stylesheets/webhelp/template/content/search/es-es.props +0 -179
- data/lib/stylesheets/webhelp/template/content/search/ja-jp.props +0 -1
- data/lib/stylesheets/webhelp/template/content/search/nwSearchFnt.js +0 -513
- data/lib/stylesheets/webhelp/template/content/search/punctuation.props +0 -31
- data/lib/stylesheets/webhelp/template/content/search/stemmers/de_stemmer.js +0 -247
- data/lib/stylesheets/webhelp/template/content/search/stemmers/en_stemmer.js +0 -187
- data/lib/stylesheets/webhelp/template/content/search/stemmers/fr_stemmer.js +0 -299
- data/lib/stylesheets/webhelp/template/favicon.ico +0 -0
- data/lib/stylesheets/webhelp/xsl/webhelp.xsl +0 -772
- data/lib/stylesheets/website/autolayout.xsl +0 -258
- data/lib/stylesheets/website/chunk-common.xsl +0 -227
- data/lib/stylesheets/website/chunk-tabular.xsl +0 -12
- data/lib/stylesheets/website/chunk-website.xsl +0 -12
- data/lib/stylesheets/website/head.xsl +0 -316
- data/lib/stylesheets/website/makefile-dep.xsl +0 -143
- data/lib/stylesheets/website/olink.xsl +0 -297
- data/lib/stylesheets/website/param.xml +0 -788
- data/lib/stylesheets/website/param.xsl +0 -53
- data/lib/stylesheets/website/rss.xsl +0 -143
- data/lib/stylesheets/website/tabular.xsl +0 -213
- data/lib/stylesheets/website/toc-tabular.xsl +0 -480
- data/lib/stylesheets/website/toc.xsl +0 -286
- data/lib/stylesheets/website/website-common.xsl +0 -821
- data/lib/stylesheets/website/website-targets.xsl +0 -27
- data/lib/stylesheets/website/website.xsl +0 -132
- data/lib/stylesheets/website/xbel.xsl +0 -114
- data/lib/stylesheets/xhtml-1_1/admon.xsl +0 -135
- data/lib/stylesheets/xhtml-1_1/annotations.xsl +0 -160
- data/lib/stylesheets/xhtml-1_1/autoidx-kimber.xsl +0 -140
- data/lib/stylesheets/xhtml-1_1/autoidx-kosek.xsl +0 -110
- data/lib/stylesheets/xhtml-1_1/autoidx-ng.xsl +0 -23
- data/lib/stylesheets/xhtml-1_1/autoidx.xsl +0 -682
- data/lib/stylesheets/xhtml-1_1/autotoc.xsl +0 -665
- data/lib/stylesheets/xhtml-1_1/biblio-iso690.xsl +0 -1302
- data/lib/stylesheets/xhtml-1_1/biblio.xsl +0 -1242
- data/lib/stylesheets/xhtml-1_1/block.xsl +0 -537
- data/lib/stylesheets/xhtml-1_1/callout.xsl +0 -189
- data/lib/stylesheets/xhtml-1_1/changebars.xsl +0 -80
- data/lib/stylesheets/xhtml-1_1/chunk-changebars.xsl +0 -97
- data/lib/stylesheets/xhtml-1_1/chunk-code.xsl +0 -644
- data/lib/stylesheets/xhtml-1_1/chunk-common.xsl +0 -1562
- data/lib/stylesheets/xhtml-1_1/chunk.xsl +0 -53
- data/lib/stylesheets/xhtml-1_1/chunker.xsl +0 -303
- data/lib/stylesheets/xhtml-1_1/chunkfast.xsl +0 -70
- data/lib/stylesheets/xhtml-1_1/chunktoc.xsl +0 -527
- data/lib/stylesheets/xhtml-1_1/component.xsl +0 -397
- data/lib/stylesheets/xhtml-1_1/division.xsl +0 -219
- data/lib/stylesheets/xhtml-1_1/docbook.css.xml +0 -109
- data/lib/stylesheets/xhtml-1_1/docbook.xsl +0 -435
- data/lib/stylesheets/xhtml-1_1/ebnf.xsl +0 -329
- data/lib/stylesheets/xhtml-1_1/footnote.xsl +0 -306
- data/lib/stylesheets/xhtml-1_1/formal.xsl +0 -413
- data/lib/stylesheets/xhtml-1_1/glossary.xsl +0 -565
- data/lib/stylesheets/xhtml-1_1/graphics.xsl +0 -1437
- data/lib/stylesheets/xhtml-1_1/highlight.xsl +0 -89
- data/lib/stylesheets/xhtml-1_1/html-rtf.xsl +0 -321
- data/lib/stylesheets/xhtml-1_1/html.xsl +0 -600
- data/lib/stylesheets/xhtml-1_1/htmltbl.xsl +0 -104
- data/lib/stylesheets/xhtml-1_1/index.xsl +0 -266
- data/lib/stylesheets/xhtml-1_1/info.xsl +0 -46
- data/lib/stylesheets/xhtml-1_1/inline.xsl +0 -1452
- data/lib/stylesheets/xhtml-1_1/keywords.xsl +0 -38
- data/lib/stylesheets/xhtml-1_1/lists.xsl +0 -1090
- data/lib/stylesheets/xhtml-1_1/maketoc.xsl +0 -92
- data/lib/stylesheets/xhtml-1_1/manifest.xsl +0 -23
- data/lib/stylesheets/xhtml-1_1/math.xsl +0 -285
- data/lib/stylesheets/xhtml-1_1/oldchunker.xsl +0 -177
- data/lib/stylesheets/xhtml-1_1/onechunk.xsl +0 -37
- data/lib/stylesheets/xhtml-1_1/param.xsl +0 -438
- data/lib/stylesheets/xhtml-1_1/pi.xsl +0 -1204
- data/lib/stylesheets/xhtml-1_1/profile-chunk-code.xsl +0 -616
- data/lib/stylesheets/xhtml-1_1/profile-chunk.xsl +0 -53
- data/lib/stylesheets/xhtml-1_1/profile-docbook.xsl +0 -407
- data/lib/stylesheets/xhtml-1_1/profile-onechunk.xsl +0 -37
- data/lib/stylesheets/xhtml-1_1/qandaset.xsl +0 -421
- data/lib/stylesheets/xhtml-1_1/refentry.xsl +0 -301
- data/lib/stylesheets/xhtml-1_1/sections.xsl +0 -543
- data/lib/stylesheets/xhtml-1_1/synop.xsl +0 -1515
- data/lib/stylesheets/xhtml-1_1/table.xsl +0 -1169
- data/lib/stylesheets/xhtml-1_1/task.xsl +0 -75
- data/lib/stylesheets/xhtml-1_1/titlepage.templates.xsl +0 -3818
- data/lib/stylesheets/xhtml-1_1/titlepage.xsl +0 -1032
- data/lib/stylesheets/xhtml-1_1/toc.xsl +0 -332
- data/lib/stylesheets/xhtml-1_1/verbatim.xsl +0 -389
- data/lib/stylesheets/xhtml-1_1/xref.xsl +0 -1317
- data/lib/stylesheets/xhtml/admon.xsl +0 -137
- data/lib/stylesheets/xhtml/annotations.xsl +0 -160
- data/lib/stylesheets/xhtml/autoidx-kimber.xsl +0 -140
- data/lib/stylesheets/xhtml/autoidx-kosek.xsl +0 -110
- data/lib/stylesheets/xhtml/autoidx-ng.xsl +0 -23
- data/lib/stylesheets/xhtml/autoidx.xsl +0 -682
- data/lib/stylesheets/xhtml/autotoc.xsl +0 -665
- data/lib/stylesheets/xhtml/biblio-iso690.xsl +0 -1302
- data/lib/stylesheets/xhtml/biblio.xsl +0 -1242
- data/lib/stylesheets/xhtml/block.xsl +0 -537
- data/lib/stylesheets/xhtml/callout.xsl +0 -189
- data/lib/stylesheets/xhtml/changebars.xsl +0 -80
- data/lib/stylesheets/xhtml/chunk-changebars.xsl +0 -97
- data/lib/stylesheets/xhtml/chunk-code.xsl +0 -644
- data/lib/stylesheets/xhtml/chunk-common.xsl +0 -1562
- data/lib/stylesheets/xhtml/chunk.xsl +0 -53
- data/lib/stylesheets/xhtml/chunker.xsl +0 -303
- data/lib/stylesheets/xhtml/chunkfast.xsl +0 -70
- data/lib/stylesheets/xhtml/chunktoc.xsl +0 -527
- data/lib/stylesheets/xhtml/component.xsl +0 -397
- data/lib/stylesheets/xhtml/division.xsl +0 -219
- data/lib/stylesheets/xhtml/docbook.css.xml +0 -109
- data/lib/stylesheets/xhtml/docbook.xsl +0 -435
- data/lib/stylesheets/xhtml/ebnf.xsl +0 -329
- data/lib/stylesheets/xhtml/footnote.xsl +0 -306
- data/lib/stylesheets/xhtml/formal.xsl +0 -413
- data/lib/stylesheets/xhtml/glossary.xsl +0 -565
- data/lib/stylesheets/xhtml/graphics.xsl +0 -1437
- data/lib/stylesheets/xhtml/highlight.xsl +0 -89
- data/lib/stylesheets/xhtml/html-rtf.xsl +0 -321
- data/lib/stylesheets/xhtml/html.xsl +0 -600
- data/lib/stylesheets/xhtml/htmltbl.xsl +0 -104
- data/lib/stylesheets/xhtml/index.xsl +0 -266
- data/lib/stylesheets/xhtml/info.xsl +0 -46
- data/lib/stylesheets/xhtml/inline.xsl +0 -1452
- data/lib/stylesheets/xhtml/keywords.xsl +0 -38
- data/lib/stylesheets/xhtml/lists.xsl +0 -1123
- data/lib/stylesheets/xhtml/maketoc.xsl +0 -92
- data/lib/stylesheets/xhtml/manifest.xsl +0 -23
- data/lib/stylesheets/xhtml/math.xsl +0 -285
- data/lib/stylesheets/xhtml/oldchunker.xsl +0 -177
- data/lib/stylesheets/xhtml/onechunk.xsl +0 -37
- data/lib/stylesheets/xhtml/param.xsl +0 -438
- data/lib/stylesheets/xhtml/pi.xsl +0 -1204
- data/lib/stylesheets/xhtml/profile-chunk-code.xsl +0 -616
- data/lib/stylesheets/xhtml/profile-chunk.xsl +0 -53
- data/lib/stylesheets/xhtml/profile-docbook.xsl +0 -407
- data/lib/stylesheets/xhtml/profile-onechunk.xsl +0 -37
- data/lib/stylesheets/xhtml/qandaset.xsl +0 -421
- data/lib/stylesheets/xhtml/refentry.xsl +0 -301
- data/lib/stylesheets/xhtml/sections.xsl +0 -543
- data/lib/stylesheets/xhtml/synop.xsl +0 -1515
- data/lib/stylesheets/xhtml/table.xsl +0 -1169
- data/lib/stylesheets/xhtml/task.xsl +0 -75
- data/lib/stylesheets/xhtml/titlepage.templates.xsl +0 -3818
- data/lib/stylesheets/xhtml/titlepage.xsl +0 -1032
- data/lib/stylesheets/xhtml/toc.xsl +0 -332
- data/lib/stylesheets/xhtml/verbatim.xsl +0 -389
- data/lib/stylesheets/xhtml/xref.xsl +0 -1317
Binary file
|
@@ -1,202 +0,0 @@
|
|
1
|
-
|
2
|
-
Apache License
|
3
|
-
Version 2.0, January 2004
|
4
|
-
http://www.apache.org/licenses/
|
5
|
-
|
6
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
-
|
8
|
-
1. Definitions.
|
9
|
-
|
10
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
-
|
13
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
-
the copyright owner that is granting the License.
|
15
|
-
|
16
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
-
other entities that control, are controlled by, or are under common
|
18
|
-
control with that entity. For the purposes of this definition,
|
19
|
-
"control" means (i) the power, direct or indirect, to cause the
|
20
|
-
direction or management of such entity, whether by contract or
|
21
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
-
|
24
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
-
exercising permissions granted by this License.
|
26
|
-
|
27
|
-
"Source" form shall mean the preferred form for making modifications,
|
28
|
-
including but not limited to software source code, documentation
|
29
|
-
source, and configuration files.
|
30
|
-
|
31
|
-
"Object" form shall mean any form resulting from mechanical
|
32
|
-
transformation or translation of a Source form, including but
|
33
|
-
not limited to compiled object code, generated documentation,
|
34
|
-
and conversions to other media types.
|
35
|
-
|
36
|
-
"Work" shall mean the work of authorship, whether in Source or
|
37
|
-
Object form, made available under the License, as indicated by a
|
38
|
-
copyright notice that is included in or attached to the work
|
39
|
-
(an example is provided in the Appendix below).
|
40
|
-
|
41
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
-
form, that is based on (or derived from) the Work and for which the
|
43
|
-
editorial revisions, annotations, elaborations, or other modifications
|
44
|
-
represent, as a whole, an original work of authorship. For the purposes
|
45
|
-
of this License, Derivative Works shall not include works that remain
|
46
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
-
the Work and Derivative Works thereof.
|
48
|
-
|
49
|
-
"Contribution" shall mean any work of authorship, including
|
50
|
-
the original version of the Work and any modifications or additions
|
51
|
-
to that Work or Derivative Works thereof, that is intentionally
|
52
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
-
means any form of electronic, verbal, or written communication sent
|
56
|
-
to the Licensor or its representatives, including but not limited to
|
57
|
-
communication on electronic mailing lists, source code control systems,
|
58
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
-
Licensor for the purpose of discussing and improving the Work, but
|
60
|
-
excluding communication that is conspicuously marked or otherwise
|
61
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
-
|
63
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
-
on behalf of whom a Contribution has been received by Licensor and
|
65
|
-
subsequently incorporated within the Work.
|
66
|
-
|
67
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
-
this License, each Contributor hereby grants to You a perpetual,
|
69
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
-
copyright license to reproduce, prepare Derivative Works of,
|
71
|
-
publicly display, publicly perform, sublicense, and distribute the
|
72
|
-
Work and such Derivative Works in Source or Object form.
|
73
|
-
|
74
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
-
this License, each Contributor hereby grants to You a perpetual,
|
76
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
-
(except as stated in this section) patent license to make, have made,
|
78
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
-
where such license applies only to those patent claims licensable
|
80
|
-
by such Contributor that are necessarily infringed by their
|
81
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
-
with the Work to which such Contribution(s) was submitted. If You
|
83
|
-
institute patent litigation against any entity (including a
|
84
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
-
or a Contribution incorporated within the Work constitutes direct
|
86
|
-
or contributory patent infringement, then any patent licenses
|
87
|
-
granted to You under this License for that Work shall terminate
|
88
|
-
as of the date such litigation is filed.
|
89
|
-
|
90
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
-
Work or Derivative Works thereof in any medium, with or without
|
92
|
-
modifications, and in Source or Object form, provided that You
|
93
|
-
meet the following conditions:
|
94
|
-
|
95
|
-
(a) You must give any other recipients of the Work or
|
96
|
-
Derivative Works a copy of this License; and
|
97
|
-
|
98
|
-
(b) You must cause any modified files to carry prominent notices
|
99
|
-
stating that You changed the files; and
|
100
|
-
|
101
|
-
(c) You must retain, in the Source form of any Derivative Works
|
102
|
-
that You distribute, all copyright, patent, trademark, and
|
103
|
-
attribution notices from the Source form of the Work,
|
104
|
-
excluding those notices that do not pertain to any part of
|
105
|
-
the Derivative Works; and
|
106
|
-
|
107
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
-
distribution, then any Derivative Works that You distribute must
|
109
|
-
include a readable copy of the attribution notices contained
|
110
|
-
within such NOTICE file, excluding those notices that do not
|
111
|
-
pertain to any part of the Derivative Works, in at least one
|
112
|
-
of the following places: within a NOTICE text file distributed
|
113
|
-
as part of the Derivative Works; within the Source form or
|
114
|
-
documentation, if provided along with the Derivative Works; or,
|
115
|
-
within a display generated by the Derivative Works, if and
|
116
|
-
wherever such third-party notices normally appear. The contents
|
117
|
-
of the NOTICE file are for informational purposes only and
|
118
|
-
do not modify the License. You may add Your own attribution
|
119
|
-
notices within Derivative Works that You distribute, alongside
|
120
|
-
or as an addendum to the NOTICE text from the Work, provided
|
121
|
-
that such additional attribution notices cannot be construed
|
122
|
-
as modifying the License.
|
123
|
-
|
124
|
-
You may add Your own copyright statement to Your modifications and
|
125
|
-
may provide additional or different license terms and conditions
|
126
|
-
for use, reproduction, or distribution of Your modifications, or
|
127
|
-
for any such Derivative Works as a whole, provided Your use,
|
128
|
-
reproduction, and distribution of the Work otherwise complies with
|
129
|
-
the conditions stated in this License.
|
130
|
-
|
131
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
-
any Contribution intentionally submitted for inclusion in the Work
|
133
|
-
by You to the Licensor shall be under the terms and conditions of
|
134
|
-
this License, without any additional terms or conditions.
|
135
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
-
the terms of any separate license agreement you may have executed
|
137
|
-
with Licensor regarding such Contributions.
|
138
|
-
|
139
|
-
6. Trademarks. This License does not grant permission to use the trade
|
140
|
-
names, trademarks, service marks, or product names of the Licensor,
|
141
|
-
except as required for reasonable and customary use in describing the
|
142
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
-
|
144
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
-
agreed to in writing, Licensor provides the Work (and each
|
146
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
-
implied, including, without limitation, any warranties or conditions
|
149
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
-
appropriateness of using or redistributing the Work and assume any
|
152
|
-
risks associated with Your exercise of permissions under this License.
|
153
|
-
|
154
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
-
whether in tort (including negligence), contract, or otherwise,
|
156
|
-
unless required by applicable law (such as deliberate and grossly
|
157
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
-
liable to You for damages, including any direct, indirect, special,
|
159
|
-
incidental, or consequential damages of any character arising as a
|
160
|
-
result of this License or out of the use or inability to use the
|
161
|
-
Work (including but not limited to damages for loss of goodwill,
|
162
|
-
work stoppage, computer failure or malfunction, or any and all
|
163
|
-
other commercial damages or losses), even if such Contributor
|
164
|
-
has been advised of the possibility of such damages.
|
165
|
-
|
166
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
-
or other liability obligations and/or rights consistent with this
|
170
|
-
License. However, in accepting such obligations, You may act only
|
171
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
-
of any other Contributor, and only if You agree to indemnify,
|
173
|
-
defend, and hold each Contributor harmless for any liability
|
174
|
-
incurred by, or claims asserted against, such Contributor by reason
|
175
|
-
of your accepting any such warranty or additional liability.
|
176
|
-
|
177
|
-
END OF TERMS AND CONDITIONS
|
178
|
-
|
179
|
-
APPENDIX: How to apply the Apache License to your work.
|
180
|
-
|
181
|
-
To apply the Apache License to your work, attach the following
|
182
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
-
replaced with your own identifying information. (Don't include
|
184
|
-
the brackets!) The text should be enclosed in the appropriate
|
185
|
-
comment syntax for the file format. We also recommend that a
|
186
|
-
file or class name and description of purpose be included on the
|
187
|
-
same "printed page" as the copyright notice for easier
|
188
|
-
identification within third-party archives.
|
189
|
-
|
190
|
-
Copyright [yyyy] [name of copyright owner]
|
191
|
-
|
192
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
-
you may not use this file except in compliance with the License.
|
194
|
-
You may obtain a copy of the License at
|
195
|
-
|
196
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
-
|
198
|
-
Unless required by applicable law or agreed to in writing, software
|
199
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
-
See the License for the specific language governing permissions and
|
202
|
-
limitations under the License.
|
Binary file
|
data/lib/fop/status.xml
DELETED
@@ -1,1809 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
-
<!--
|
3
|
-
Licensed to the Apache Software Foundation (ASF) under one or more
|
4
|
-
contributor license agreements. See the NOTICE file distributed with
|
5
|
-
this work for additional information regarding copyright ownership.
|
6
|
-
The ASF licenses this file to You under the Apache License, Version 2.0
|
7
|
-
(the "License"); you may not use this file except in compliance with
|
8
|
-
the License. You may obtain a copy of the License at
|
9
|
-
|
10
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
11
|
-
|
12
|
-
Unless required by applicable law or agreed to in writing, software
|
13
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
-
See the License for the specific language governing permissions and
|
16
|
-
limitations under the License.
|
17
|
-
-->
|
18
|
-
<!-- $Id: status.xml 960638 2010-07-05 16:59:51Z jeremias $ -->
|
19
|
-
<!DOCTYPE status PUBLIC "-//APACHE//DTD Status V1.3//EN"
|
20
|
-
"http://forrest.apache.org/dtd/status-v13.dtd">
|
21
|
-
<status>
|
22
|
-
|
23
|
-
<developers>
|
24
|
-
<!-- In alphabetical order (last name) -->
|
25
|
-
<person name="Max Berger" email="mayberger@apache.org" id="MB"/>
|
26
|
-
<person name="Chris Bowditch" email="cbowditch@apache.org" id="CB"/>
|
27
|
-
<person name="Jay Bryant" email="jbryant@apache.org" id="JB"/>
|
28
|
-
<person name="Adrian Cumiskey" email="acumiskey@apache.org" id="AC"/>
|
29
|
-
<person name="Bertrand Delacrétaz" email="bdelacretaz@apache.org" id="BD"/>
|
30
|
-
<person name="Andreas Delmelle" email="adelmelle@apache.org" id="AD"/>
|
31
|
-
<person name="Luca Furini" email="lfurini@apache.org" id="LF"/>
|
32
|
-
<person name="Christian Geisert" email="chrisg@apache.org" id="CG"/>
|
33
|
-
<person name="Vincent Hennebert" email="vhennebert@apache.org" id="VH"/>
|
34
|
-
<person name="Clay Leeds" email="clay@apache.org" id="CL"/>
|
35
|
-
<person name="Manuel Mall" email="manuel@apache.org" id="MM"/>
|
36
|
-
<person name="Jeremias Märki" email="jeremias@apache.org" id="JM"/>
|
37
|
-
<person name="Simon Pepping" email="spepping@apache.org" id="SP"/>
|
38
|
-
<person name="the FOP committers" email="fop-dev@xmlgraphics.apache.org" id="all"/>
|
39
|
-
<person name="Volunteer needed" email="general@xmlgraphics.apache.org" id="open"/>
|
40
|
-
<!-- See also src/documentation/content/xdocs/team.xml -->
|
41
|
-
</developers>
|
42
|
-
|
43
|
-
<contexts>
|
44
|
-
<context id="Docs" title="Changes to Documentation"/>
|
45
|
-
<context id="Code" title="Changes to the Code Base"/>
|
46
|
-
<context id="Layout" title="Changes to the Layout Engine"/>
|
47
|
-
<context id="Renderers" title="Changes to Renderers (Output Formats)"/>
|
48
|
-
<context id="Fonts" title="Changes to the Font Subsystem"/>
|
49
|
-
<context id="API" title="Changes to the End-User API"/>
|
50
|
-
<context id="Extensions" title="Changes to the Bundled Extensions"/>
|
51
|
-
<context id="Images" title="Changes to the Image Support"/>
|
52
|
-
</contexts>
|
53
|
-
|
54
|
-
<changes>
|
55
|
-
<!--
|
56
|
-
When adding changes, please try to highlight those which might affect upgrading
|
57
|
-
users, i.e. when the behaviour changes and could affect the layout of existing
|
58
|
-
documents. Example: the fix of marks layering will be such a case when it's done.
|
59
|
-
-->
|
60
|
-
<release version="1.0" date="July 2010">
|
61
|
-
<action context="Renderers" dev="JM" type="fix">
|
62
|
-
AFP Output: Fixed positioning of Java2D-based images (when GOCA is enabled).
|
63
|
-
</action>
|
64
|
-
<action context="Renderers" dev="JM" type="add">
|
65
|
-
AFP Output: Added enhanced dithering functionality for images that are converted to
|
66
|
-
bi-level images.
|
67
|
-
</action>
|
68
|
-
<action context="Renderers" dev="JM" type="fix">
|
69
|
-
AFP Output: Fix for bitmap images inside an SVG or G2D graphic (printer errors) and
|
70
|
-
positioning fix for bitmaps from G2D graphics.
|
71
|
-
</action>
|
72
|
-
<action context="Renderers" dev="JM" type="fix" fixes-bug="42306" due-to="Richard Wheeldon">
|
73
|
-
Fix for AWT viewer to correctly track page numbers in continuous display mode.
|
74
|
-
</action>
|
75
|
-
<action context="Renderers" dev="JM" type="fix">
|
76
|
-
Bugfix for formatting of floating point numbers which could lead to invalid PDFs.
|
77
|
-
</action>
|
78
|
-
<action context="Renderers" dev="JM" type="fix">
|
79
|
-
Added a save/restoreGraphicsState pair for the initial coordinate system in PDF output
|
80
|
-
for easier post-processing.
|
81
|
-
</action>
|
82
|
-
<action context="Images" dev="JM" type="add">
|
83
|
-
Added customization ability for the image loading framework from FOP's configuration file.
|
84
|
-
</action>
|
85
|
-
<action context="Renderers" dev="JM" type="fix" fixes-bug="48696" due-to="Peter Hancock">
|
86
|
-
Bugfix for color model in IOCA IDE structure parameter for 4- and 8-bit grayscale images.
|
87
|
-
</action>
|
88
|
-
<action context="Renderers" dev="JM" type="add" fixes-bug="48567" due-to="Peter Hancock">
|
89
|
-
Initial support for CID-keyed double-byte fonts (Type 0) in AFP output.
|
90
|
-
</action>
|
91
|
-
<action context="API" dev="SP" type="add">Added a command-line option '-catalog' to use a catalog resolver for the XML and XSLT files</action>
|
92
|
-
<action context="Layout" dev="SP" type="add">Implement internal character classes if the hyphenation pattern file does not contain them</action>
|
93
|
-
<action context="Layout" dev="VH" type="fix" fixes-bug="46486">
|
94
|
-
Bugfix: having a special page-master for the last page caused loss of content when normal
|
95
|
-
blocks were mixed with blocks spanning all columns.
|
96
|
-
</action>
|
97
|
-
<action context="Renderers" dev="VH" type="add">
|
98
|
-
Added possibility to customize PDF tagging via the ‘role’ property.
|
99
|
-
</action>
|
100
|
-
<action context="Renderers" dev="CB" type="fix" fixes-bug="48237" due-to="Peter Hancock">
|
101
|
-
Bugfix: AFP Renderer: Respect image color settings for svg
|
102
|
-
</action>
|
103
|
-
<action context="Renderers" dev="CB" type="fix" fixes-bug="48376" due-to="Venkat Reddy">
|
104
|
-
Bugfix: AFP Renderer: Page Overlays not generated when using Intermediate Format
|
105
|
-
</action>
|
106
|
-
<action context="Renderers" dev="CB" type="fix" fixes-bug="48456">
|
107
|
-
Bugfix: AFP Renderer: Underline is incorrectly placed when reference-orientation != 0
|
108
|
-
</action>
|
109
|
-
<action context="Renderers" dev="CB" type="fix" fixes-bug="48453">
|
110
|
-
Bugfix: AFP Renderer: Page Segments not positioned correctly when reference-orientation != 0
|
111
|
-
</action>
|
112
|
-
<action context="Fonts" dev="JM" type="add">
|
113
|
-
Added support for TrueType fonts with symbol character maps (like "Wingdings" and "Symbol").
|
114
|
-
Character for these fonts are usually found in the 0xF020 to 0xF0FF range
|
115
|
-
(a Unicode private use area).
|
116
|
-
</action>
|
117
|
-
<action context="Fonts" dev="JM" type="fix">
|
118
|
-
Bugfix: Font selection fallbacks did not work in some cases (ex. bold+italic to normal)
|
119
|
-
</action>
|
120
|
-
<action context="Renderers" dev="CB" type="fix" fixes-bug="48290">
|
121
|
-
Bugfix: AFP Renderer: AttributeQualifier Triplet occurs before TLE Value.
|
122
|
-
</action>
|
123
|
-
<action context="Renderers" dev="JM" type="fix" fixes-bug="48048" due-to="D.W. Harks">
|
124
|
-
Bugfix in AFP output: fixed flags in GOCA GBAR order.
|
125
|
-
</action>
|
126
|
-
<action context="Renderers" dev="VH" type="fix" fixes-bug="48185" due-to="Harald G. Henne">
|
127
|
-
Bugfix in AFP output: rounding error when computing the CMYK components of a color.
|
128
|
-
</action>
|
129
|
-
<action context="Code" dev="VH" type="fix" fixes-bug="48167" due-to="Venkat Reddy">
|
130
|
-
Bugfix: when #CMYK pseudo-profile was used in the rgb-icc() function, always the fallback
|
131
|
-
RGB colors were used instead.
|
132
|
-
</action>
|
133
|
-
<action context="Layout" dev="VH" type="fix" fixes-bug="48082">
|
134
|
-
Bugfix: value of conditional space not always taken into account in the calculation of a
|
135
|
-
table’s height.
|
136
|
-
</action>
|
137
|
-
<action context="Renderers" dev="JM,VH" type="add" fixes-bug="46705" due-to="Jost Klopfstein">
|
138
|
-
Added basic accessibility and Tagged PDF support.
|
139
|
-
</action>
|
140
|
-
<action context="Renderers" dev="JM" type="add">
|
141
|
-
Added support for encoding CMYK bitmap images (IOCA FS45) and TIFF images as embedded objects.
|
142
|
-
</action>
|
143
|
-
<action context="Code" dev="AC" type="add">
|
144
|
-
Added support for xmlfile and xsltfile parameters in FOP's Ant Task.
|
145
|
-
</action>
|
146
|
-
<action context="Renderers" dev="AC" type="fix" fixes-bug="47941">
|
147
|
-
BugFix: Maintain valid AFP by providing TLE truncation on Attribute Value Triplet values that are greater than 250 chars in length.
|
148
|
-
</action>
|
149
|
-
<action context="Fonts" dev="JM" type="fix" fixes-bug="47711" due-to="Nicolas Peninguy">
|
150
|
-
Fixed generation of CIDSet object in PDF output.
|
151
|
-
</action>
|
152
|
-
<action context="Layout" dev="VH" type="fix">
|
153
|
-
Fixed handling of percentage values for provisional-label-separation.
|
154
|
-
</action>
|
155
|
-
<action context="Layout" dev="VH" type="fix" fixes-bug="47835" due-to="Jonathan Levinson">
|
156
|
-
Fixed handling of percentage values for provisional-distance-between-starts.
|
157
|
-
</action>
|
158
|
-
<action context="Renderers" dev="CB" type="add">
|
159
|
-
Added support for positioning Page Overlays in AFP Output
|
160
|
-
</action>
|
161
|
-
<action context="Fonts" dev="JM" type="add">
|
162
|
-
Added support for specifying referenced fonts per renderer in addition to the general
|
163
|
-
match list.
|
164
|
-
</action>
|
165
|
-
<action context="Renderers" dev="JM" type="add">
|
166
|
-
Added support for creating thumbnails or preview bitmaps of fixed size for PNG and TIFF
|
167
|
-
output.
|
168
|
-
</action>
|
169
|
-
<action context="Extensions" dev="JM" type="add">
|
170
|
-
Added support for the #CMYK pseudo-profile supported by some commercial XSL implementations
|
171
|
-
on the rgb-icc() function.
|
172
|
-
</action>
|
173
|
-
<action context="Layout" dev="VH" type="add" importance="high">
|
174
|
-
Added limited support for pages of different inline-progression-dimensions within a
|
175
|
-
page-sequence.
|
176
|
-
</action>
|
177
|
-
<action context="Layout" dev="AD" type="add" fixes-bug="46905">
|
178
|
-
Added basic implementation for column-keeps.
|
179
|
-
</action>
|
180
|
-
<action context="Code" dev="AD" type="fix" fixes-bug="47710">
|
181
|
-
White-space handling in markers with inline-content throws a NullPointerException
|
182
|
-
in some cases.
|
183
|
-
</action>
|
184
|
-
<action context="Renderers" dev="CB" type="fix" fixes-bug="47694">
|
185
|
-
Dithered Background Shading can produce illegal AFP if objects are very small
|
186
|
-
</action>
|
187
|
-
<action context="Renderers" dev="CB" type="add">
|
188
|
-
AFP Output: Added support for IMM Extension on fo:simple-page-master.
|
189
|
-
</action>
|
190
|
-
<action context="Renderers" dev="JM" type="add" fixes-bug="47311" due-to="Peter Coppens">
|
191
|
-
Added an initial set of extensions for prepress support (fox:bleed, fox:crop-offset,
|
192
|
-
fox:crop-box and fox:scale). This is currently supported only by PDF and Java2D renderers.
|
193
|
-
</action>
|
194
|
-
<action context="Renderers" dev="JM" type="add">
|
195
|
-
PCL Output: Added support for specifying the output bin.
|
196
|
-
</action>
|
197
|
-
<action context="Renderers" dev="JM" type="add">
|
198
|
-
AFP Output: Added support for embedding external AFP form maps (form defs) using the
|
199
|
-
afp:include-form-map extension.
|
200
|
-
</action>
|
201
|
-
<action context="Renderers" dev="JM" type="add">
|
202
|
-
AFP Output: Added support for AFP font embedding. Note: this changes the default behaviour.
|
203
|
-
Like with PDF and PS, all fonts are embedded by default unless matched in the
|
204
|
-
"referenced-fonts" section in the configuration.
|
205
|
-
</action>
|
206
|
-
<action context="Renderers" dev="AD" type="fix" fixes-bug="47508" due-to="Bharat Attaluri">
|
207
|
-
Bugfix: Error while writing TLE's attribute qualifier in the output.
|
208
|
-
</action>
|
209
|
-
<action context="Renderers" dev="CB" type="fix">
|
210
|
-
Bugfix: support justified text in AFP Renderer (already working in AFP Painter)
|
211
|
-
</action>
|
212
|
-
<action context="Renderers" dev="AD" type="add">
|
213
|
-
AFP Renderer Raster Fonts:
|
214
|
-
<ul>
|
215
|
-
<li>added support for fractional font-sizes in the configuration.</li>
|
216
|
-
<li>selection of the smaller font-size, in case two possible fallbacks have the
|
217
|
-
same difference to a requested size.</li>
|
218
|
-
</ul>
|
219
|
-
</action>
|
220
|
-
<action context="Fonts" dev="CB" type="fix">
|
221
|
-
Bugfix: support PFM Files with no extent table.
|
222
|
-
</action>
|
223
|
-
<action context="Code" dev="AD" type="fix" fixes-bug="46960">
|
224
|
-
Bugfix: previously retrieved markers were not cleared if the new marker was empty.
|
225
|
-
</action>
|
226
|
-
<action context="Fonts" dev="VH" type="fix" fixes-bug="47232" due-to="Maxim Wirt">
|
227
|
-
Bugfix: for the last character of a Type1 font, always a width of 0 was returned.
|
228
|
-
</action>
|
229
|
-
<action context="Code" dev="VH" type="fix">
|
230
|
-
Changed meaning of ‘-v’ option to ‘verbose’, which will print FOP’s version and proceed.
|
231
|
-
Added a ‘-version’ option to simply print the version then exit, following Java practices.
|
232
|
-
</action>
|
233
|
-
<action context="Layout" dev="VH" type="fix" fixes-bug="47101">
|
234
|
-
Bugfix: The cells of a table inside a marker were duplicated at every marker retrieval.
|
235
|
-
</action>
|
236
|
-
<action context="Images" dev="JM" type="fix">
|
237
|
-
Bugfix: use the effective color profile supplied by the ImageEncodingHelper, instead of the
|
238
|
-
original one.
|
239
|
-
</action>
|
240
|
-
<action context="Renderers" dev="JM" type="fix">
|
241
|
-
Bugfix: reset graphic state when a page is finished in PostScript.
|
242
|
-
</action>
|
243
|
-
<action context="Renderers" dev="JM" type="add">
|
244
|
-
Added setting to enable dithered painting of filled rectangles in AFP and PCL.
|
245
|
-
</action>
|
246
|
-
<action context="Layout" dev="VH" type="fix">
|
247
|
-
Bugfix: footnotes occurring within the forced height of a table row did not appear on the
|
248
|
-
output
|
249
|
-
</action>
|
250
|
-
<action context="Renderers" dev="JM" type="update" fixes-bug="47031" due-to="Francois Fernandes">
|
251
|
-
PDFGraphics2D.writeClip doesn't generate a clip command anymore when the clip path
|
252
|
-
is empty.
|
253
|
-
</action>
|
254
|
-
<action context="Renderers" dev="JM" type="add" fixes-bug="47000">
|
255
|
-
Added a custom text painter for rendering SVG text using text operators when rendering
|
256
|
-
to PostScript or EPS. Text is no longer painted as shapes, thus creating much smaller files.
|
257
|
-
</action>
|
258
|
-
<action context="Renderers" dev="JM" type="fix">
|
259
|
-
Fixed a bug that left the PrintRenderer unconfigured even if a configuration was
|
260
|
-
specified for "application/X-fop-print".
|
261
|
-
</action>
|
262
|
-
<action context="Renderers" dev="JM" type="fix" fixes-bug="46882" due-to="Yegor Kozlov">
|
263
|
-
Fixed the handling of CMYK colors in PDFGraphics2D.
|
264
|
-
</action>
|
265
|
-
<action context="Layout" dev="AD" type="fix" fixes-bug="46489">
|
266
|
-
Fixed a bug when combining a forced break with a "last" page-master. The restart
|
267
|
-
of the algorithm would start at the index of the penalty corresponding to the last
|
268
|
-
page-break. This has been changed to the index of the first element after the last
|
269
|
-
page-break.
|
270
|
-
</action>
|
271
|
-
<action context="Fonts" dev="JM" type="add">
|
272
|
-
Added a command-line tool to list all configured fonts
|
273
|
-
(org.apache.fop.tools.fontlist.FontListMain).
|
274
|
-
</action>
|
275
|
-
<action context="Code" dev="AD" type="add" fixes-bug="46828" due-to="Dario Laera">
|
276
|
-
Added the possibility to use CachedRenderPagesModel, to conserve memory in case
|
277
|
-
of large documents with a lot of cross-references (area tree will be serialized to
|
278
|
-
disk to avoid keeping it entirely in memory).
|
279
|
-
</action>
|
280
|
-
<action context="Fonts" dev="JM" type="add">
|
281
|
-
AFP Fonts: Added support for full URI resolution on configured AFP fonts.
|
282
|
-
</action>
|
283
|
-
<action context="Renderers" dev="JM" type="add">
|
284
|
-
AFP Output: Tag Logical Element (TLE) is now also allowed on fo:page-sequence
|
285
|
-
(page group level).
|
286
|
-
</action>
|
287
|
-
<action context="Layout" dev="JM" type="fix">
|
288
|
-
Fixed BPD trait and border painting for leaders with leader-pattern="space"
|
289
|
-
(and similar cases).
|
290
|
-
</action>
|
291
|
-
<action context="Renderers" dev="JM" type="add">
|
292
|
-
AFP Output: Added support for Invoke Medium Map (IMM).
|
293
|
-
</action>
|
294
|
-
<action context="Renderers" dev="JM" type="add">
|
295
|
-
Introduced a new, additional intermediate format optimized for performance. Please see
|
296
|
-
the intermediate format documentation for details.
|
297
|
-
</action>
|
298
|
-
<action context="Fonts" dev="JM" type="fix" fixes-bug="46686" due-to="Alok Singh">
|
299
|
-
Use temporary directory for the font cache if the user home directory is not
|
300
|
-
write-accessible.
|
301
|
-
</action>
|
302
|
-
<action context="Renderers" dev="JM" type="fix" fixes-bug="45342" due-to="Emil Maskovsky">
|
303
|
-
AFP Fonts: Fixed interpretation of metric for fonts with fixed metrics and made sure
|
304
|
-
all repeating groups in FNP (Font Position) are processed.
|
305
|
-
</action>
|
306
|
-
<action context="Renderers" dev="JM" type="add">
|
307
|
-
AFP Output: Added a configuration option to override the resource level defaults in the
|
308
|
-
code.
|
309
|
-
</action>
|
310
|
-
<action context="Code" dev="VH" type="fix" fixes-bug="46638">
|
311
|
-
MinOptMaxUtil.toMinOptMax was converting LengthRangeProperty objects into illegal MinOptMax
|
312
|
-
objects (in some cases opt could be inferior to min).
|
313
|
-
</action>
|
314
|
-
<action context="Layout" dev="VH" type="add" fixes-bug="46315" due-to="Georg Datterl">
|
315
|
-
Added extension to disable column balancing before blocks spanning the whole page, in
|
316
|
-
multiple-column documents.
|
317
|
-
</action>
|
318
|
-
<action context="Renderers" dev="JM" type="add">
|
319
|
-
AFP Output: Bilevel images in resource groups as generated as hard page segments
|
320
|
-
(instead of image objects) for better interoperability with older IPDS environments
|
321
|
-
and for better printing performance.
|
322
|
-
</action>
|
323
|
-
<action context="Fonts" dev="JM" type="add">
|
324
|
-
FOP now creates ToUnicode CMaps for single-byte fonts that don't use built-in
|
325
|
-
encodings to help PDF text extractors interpreting characters.
|
326
|
-
</action>
|
327
|
-
<action context="Fonts" dev="JM" type="add">
|
328
|
-
Added support for forcing single-byte encodings for TrueType fonts without
|
329
|
-
creating an XML font metric file (see "encoding-mode" attribute on "font" element)
|
330
|
-
</action>
|
331
|
-
<action context="Layout" dev="JM" type="fix" fixes-bug="45306">
|
332
|
-
Fixed fo:instream-foreign-object inside fo:marker.
|
333
|
-
</action>
|
334
|
-
<action context="Renderers" dev="JM" type="fix">
|
335
|
-
Fixed black backgrounds occurring for transparent images in PCL output.
|
336
|
-
</action>
|
337
|
-
<action context="Renderers" dev="CB" type="fix" fixes-bug="46369">
|
338
|
-
Fixed bug that caused AFP Renderer Extensions to be ignored.
|
339
|
-
</action>
|
340
|
-
<action context="Code" dev="AD" type="fix" fixes-bug="46319">
|
341
|
-
Fixed a memory-leak in Marker.MarkerAttribute, where an instance was used both as key and value in
|
342
|
-
a WeakHashMap, effectively neutralizing the benefit of using WeakReferences. Solved by extending
|
343
|
-
PropertyCache to work for MarkerAttributes as well.
|
344
|
-
</action>
|
345
|
-
<action context="Renderers" dev="JM" type="fix" fixed-bug="46360">
|
346
|
-
Fixed a multi-threading issue when rendering SVG.
|
347
|
-
</action>
|
348
|
-
<action context="Renderers" dev="AC" importance="high" type="add">
|
349
|
-
AFP Output: An AFPGraphics2D implementation which provides the ability to use Batik to drive the production of AFP Graphics (GOCA) output from SVG.
|
350
|
-
</action>
|
351
|
-
<action context="Renderers" dev="AC" importance="high" type="add">
|
352
|
-
AFP Output: Resource group leveling, external streaming, and de-duplication of images and graphics using IncludeObject and ResourceGroup.
|
353
|
-
</action>
|
354
|
-
<action context="Renderers" dev="AC" importance="high" type="add">
|
355
|
-
AFP Output: Native image embedding support (e.g. JPEG, GIF, TIFF) using ObjectContainer and a MOD:CA Registry implementation.
|
356
|
-
</action>
|
357
|
-
<action context="Fonts" dev="AC" type="fix">
|
358
|
-
More robust AFP font parsing, although it is still in need of some rework in the future.
|
359
|
-
</action>
|
360
|
-
<action context="Images" dev="JM" type="add" fixes-bug="41657">
|
361
|
-
Added support for SVG 1.2 functionality inside fo:instream-foreign-object.
|
362
|
-
</action>
|
363
|
-
<action context="Layout" dev="AD" type="fix" fixes-bug="46240">
|
364
|
-
Fixed a bug when combining break-before with a span change.
|
365
|
-
</action>
|
366
|
-
<action context="Code" dev="AD" type="fix" fixes-bug="46211" due-to="rogov.AT.devexperts.com">
|
367
|
-
Fixed some multi-threading issues in FontCache.java:
|
368
|
-
<ul>
|
369
|
-
<li>remove the unused private readObject()</li>
|
370
|
-
<li>make the changeLock member final (initialization-safety + impossible to reassign)</li>
|
371
|
-
<li>perform the HashMap check for a failed font inside the synchronized block to avoid a race condition</li>
|
372
|
-
</ul>
|
373
|
-
</action>
|
374
|
-
<action context="Renderers" dev="AD" type="add" fixes-bug="45113" due-to="Alexander Stamenov">
|
375
|
-
Added PDF /Launch action: references to URIs using the file:// protocol will now generate
|
376
|
-
a /Launch action as opposed to a more general /URI (which doesn't yield the expected result
|
377
|
-
for this protocol).
|
378
|
-
</action>
|
379
|
-
<action context="Layout" dev="JM" type="fix">
|
380
|
-
Fixed a problem where the BPD or a block area could be wrong if there is a nested,
|
381
|
-
absolutely positioned area (for example a block-container).
|
382
|
-
</action>
|
383
|
-
<action context="Layout" dev="AD" type="fix" fixes-bug="40798">
|
384
|
-
Bugzilla 40798: A conditional-page-master-reference with page-position="last" qualifies
|
385
|
-
for a first page, if it is also the last. Additionally: also added support for
|
386
|
-
page-position="only".
|
387
|
-
</action>
|
388
|
-
<action context="Code" dev="AD" type="fix" fixes-bug="45842" due-to="Carsten Siedentop">
|
389
|
-
Make fop.bat and fop.cmd use the %FOP_OPTS% environment variable.
|
390
|
-
</action>
|
391
|
-
<action context="Renderers" dev="JM" type="add" fixes-bug="45795">
|
392
|
-
PDF Output: Added support for handling 16-bit alpha channel. They are currently
|
393
|
-
converted to 8 bits.
|
394
|
-
</action>
|
395
|
-
<action context="Renderers" dev="JM" type="fix">
|
396
|
-
PDF Output: Made sure the XMP Metadata stream is never compressed.
|
397
|
-
</action>
|
398
|
-
<action context="Fonts" dev="JM" type="fix" fixes-bug="45734" due-to="J. Frantzius">
|
399
|
-
Fix for PFMReader after bug #43089 changed the behavior of PFMFile. Fixes baseline
|
400
|
-
problems when Type 1 fonts are used in conjunction with XML font metric files.
|
401
|
-
</action>
|
402
|
-
<action context="Renderers" dev="JM" type="fix" fixes-bug="45616" due-to="Pavel Kysilka">
|
403
|
-
Fix for table handling in RTF output, so the output works with OpenOffice and AbiWord, too.
|
404
|
-
</action>
|
405
|
-
<action context="Code" dev="AD" type="fix" fixes-bug="45667">
|
406
|
-
Quick-fix to avoid a possible NullPointerException when using
|
407
|
-
empty inlines and hyphenation.
|
408
|
-
</action>
|
409
|
-
<action context="Layout" dev="JM" type="add">
|
410
|
-
Added missing generation of areas for empty grid units in tables with collapsing border
|
411
|
-
model.
|
412
|
-
</action>
|
413
|
-
<action context="Code" dev="JM" type="fix" importance="high">
|
414
|
-
Fixed memory leak in property cache (not cleaning stale PropertyCache$CacheEntry instances).
|
415
|
-
</action>
|
416
|
-
<action context="Renderers" dev="JM" type="fix">
|
417
|
-
Fixed text stroking in SVG when the stroke-width is zero.
|
418
|
-
</action>
|
419
|
-
<action context="Layout" dev="JM" type="fix">
|
420
|
-
Fixed the source for a division by zero when the content of an fo:leader with
|
421
|
-
leader-pattern="use-content" collapses to zero width during layout.
|
422
|
-
</action>
|
423
|
-
<action context="Renderers" dev="JM" type="fix">
|
424
|
-
Fixed border trait parsing for the area tree XML when CMYK or ICC colors were used.
|
425
|
-
</action>
|
426
|
-
<action context="Renderers" dev="JM" type="fix" fixes-bug="45606" due-to="Pavel Kysilka">
|
427
|
-
Fixed generation of "fonttbl" for RTF output to fix loading problem with AbiWord.
|
428
|
-
</action>
|
429
|
-
<action context="Layout" dev="JM" type="fix">
|
430
|
-
Fixed ID resolution for nested bookmarks with duplicated IDs.
|
431
|
-
</action>
|
432
|
-
<action context="Code" dev="AD" type="fix" fixes-bug="45490" due-to="Thomas Stieler">
|
433
|
-
Fixed a slight error when resolving non-file URLs: avoid
|
434
|
-
altering the original 'href' if the protocol is other than 'file:'
|
435
|
-
</action>
|
436
|
-
<action context="Layout" dev="JM" type="fix" fixes-bug="45470">
|
437
|
-
Added LayoutManagerMapping.registerMaker() to make registration of custom
|
438
|
-
layout managers easier.
|
439
|
-
</action>
|
440
|
-
<action context="Layout" dev="LF" type="fix">
|
441
|
-
Fixed absolute positioning of block-containers when specified
|
442
|
-
using right and bottom instead of left and top.
|
443
|
-
</action>
|
444
|
-
<action context="Renderers" dev="AC" type="add">
|
445
|
-
Added PDF encryption parameter support in configuration.
|
446
|
-
</action>
|
447
|
-
<action context="Layout" dev="LF" type="add">
|
448
|
-
Allowing non-zero borders and padding on page regions when
|
449
|
-
relaxed validation is turned on.
|
450
|
-
</action>
|
451
|
-
<action context="Layout" dev="LF" type="fix">
|
452
|
-
Fixed an inconsistency in footnote handling that led to unnecessary
|
453
|
-
empty areas in pages whose last normal line contains footnotes
|
454
|
-
when the page bpd is not the same for all pages.
|
455
|
-
</action>
|
456
|
-
<action context="Code" dev="AD" type="update" importance="high">
|
457
|
-
Changed FONode.addCharacters() parameter to closer match the signature of
|
458
|
-
the standard SAX characters() event (reduces confusion and computations).
|
459
|
-
<em>!! Implementors of extensions that subclass FONode directly, and
|
460
|
-
offer an implementation for addCharacters() should take care to make
|
461
|
-
similar modifications in their code !!</em>
|
462
|
-
</action>
|
463
|
-
<action context="Renderers" dev="JM" type="add" fixes-bug="45115" due-to="Martin Edge">
|
464
|
-
Added a PCL-specific extension attribute on simple-page-master for controlling
|
465
|
-
the simplex/duplex mode.
|
466
|
-
</action>
|
467
|
-
<action context="Code" dev="AD" type="fix" fixes-bug="45097">
|
468
|
-
Corrected white-space-treatment for situations where an inline-node is the first/last
|
469
|
-
child node of an fo:block, without preceding/following text.
|
470
|
-
</action>
|
471
|
-
<action context="Layout" dev="MB" type="add">
|
472
|
-
Implemented word-by-ford font-selection strategy on text.
|
473
|
-
</action>
|
474
|
-
<action context="Layout" dev="MB" type="add">
|
475
|
-
Support character-by-character font-selection strategy on fo:character element.
|
476
|
-
</action>
|
477
|
-
<action context="Layout" dev="AD" type="fix" fixes-bug="44794">
|
478
|
-
Added support for page-number-citation and page-number-citation-last
|
479
|
-
of fo:inline. Corrected behavior for page-number-citation-last
|
480
|
-
of fo:block: forward references now properly resolved.
|
481
|
-
</action>
|
482
|
-
<action context="Fonts" dev="JM" type="add">
|
483
|
-
For auto-detected fonts it is now possible to specify that a font needs to be referenced
|
484
|
-
rather than embedded (for the output formats that support this distinction).
|
485
|
-
</action>
|
486
|
-
<action context="Layout" dev="AD" type="fix" fixes-bug="42423">
|
487
|
-
Added support for the "id" attribute on fo:wrappers when used
|
488
|
-
as a child of the fo:flow.
|
489
|
-
</action>
|
490
|
-
<action context="Layout" dev="AD" type="fix" fixes-bug="41500">
|
491
|
-
Fixed a ClassCastException when using an fo:wrapper as a child
|
492
|
-
of an fo:block-container.
|
493
|
-
</action>
|
494
|
-
<action context="Fonts" dev="AC" type="add" importance="high">
|
495
|
-
Add support for font substitution.
|
496
|
-
</action>
|
497
|
-
<action context="Renderers" dev="JM" type="fix" fixes-bug="43650">
|
498
|
-
PCL Renderer: Improved page format selection so it doesn't interfere with
|
499
|
-
duplex printing.
|
500
|
-
</action>
|
501
|
-
<action context="Layout" dev="AD" type="fix" fixes-bug="42703">
|
502
|
-
Fixed a regression introduced by the fix for
|
503
|
-
<link href="https://issues.apache.org/bugzilla/show_bug.cgi?id=44286">Bugzilla 44286</link>.
|
504
|
-
</action>
|
505
|
-
<action context="Layout" dev="AD" type="fix" fixes-bug="43591">
|
506
|
-
Activated min-height/max-height and min-width/max-width properties.
|
507
|
-
</action>
|
508
|
-
<action context="Code" dev="AD" type="fix" fixes-bug="44203">
|
509
|
-
Fixed a logic error in Hyphenator.java:
|
510
|
-
If the source had an associated InputStream, an UnsupportedOperationException was
|
511
|
-
triggered.
|
512
|
-
</action>
|
513
|
-
<action context="Renderers" dev="AD" type="add" fixes-bug="44634">
|
514
|
-
Add partial support for the "show-destination" property on fo:basic-link
|
515
|
-
(PDF output only; see limitations on the compliance page)
|
516
|
-
</action>
|
517
|
-
<action context="Layout" dev="JM" type="add" importance="high">
|
518
|
-
Added minimal support for integer keep values on the various keep properties on block-level
|
519
|
-
FOs. For now, all integer values are treated the same (i.e. without strength distinction).
|
520
|
-
Using integers allows to avoid overflows that can happen when "always" is used extensively.
|
521
|
-
</action>
|
522
|
-
<action context="Renderers" dev="JM" type="add">
|
523
|
-
Added support for rendering pages using JPS (Java Printing System). See new example:
|
524
|
-
examples/embedding/java/ExamplesFO2JPSPrint.java
|
525
|
-
</action>
|
526
|
-
<action context="Renderers" dev="JM" type="add" fixes-bug="41687">
|
527
|
-
Restored ability to specify from/to and odd/even pages as well as the number of copies
|
528
|
-
for printing from the command-line.
|
529
|
-
</action>
|
530
|
-
<action context="Renderers" dev="JM" type="add" fixes-bug="44678" due-to="Antti Karanta">
|
531
|
-
Added ability to pass a preconfigured PrinterJob instance to the PrintRenderer via
|
532
|
-
the rendering options map.
|
533
|
-
</action>
|
534
|
-
<action context="Renderers" dev="JM" type="add" fixes-bug="44743" due-to="Yegor Kozlov">
|
535
|
-
Added a public accessor for reference to the current page to PDFGraphics2D.
|
536
|
-
</action>
|
537
|
-
<action context="Fonts" dev="JM" type="add" fixes-bug="44737" due-to="Jason Harrop">
|
538
|
-
Added support for auto-configuring TrueType Collections. XML font metrics files for
|
539
|
-
*.ttc fonts are not required anymore.
|
540
|
-
</action>
|
541
|
-
<action context="Renderers" dev="JM" type="update">
|
542
|
-
When a JPEG image is embedded, an optionally embedded color profile is filtered out
|
543
|
-
as it's already embedded separately in the PDF file.
|
544
|
-
</action>
|
545
|
-
<action context="Fonts" dev="JM" type="add" importance="high">
|
546
|
-
Added support for addressing all glyphs available in a Type 1 font, not just the ones
|
547
|
-
in the font's primary encoding.
|
548
|
-
</action>
|
549
|
-
<action context="Code" dev="JM" type="add" importance="high">
|
550
|
-
Added an event handling framework which allows to get better feedback from within FOP
|
551
|
-
with the ability to customize problem management.
|
552
|
-
</action>
|
553
|
-
</release>
|
554
|
-
<release version="0.95" date="05 August 2008">
|
555
|
-
<notes>
|
556
|
-
<section>
|
557
|
-
<title>Notes</title>
|
558
|
-
<p>
|
559
|
-
Besides the important changes listed below, the most important areas with
|
560
|
-
improvements in this release are:
|
561
|
-
</p>
|
562
|
-
<ul>
|
563
|
-
<li>
|
564
|
-
Many bugfixes in tables, plus some new features (full support for keeps and
|
565
|
-
breaks, border conditionality, background on columns and header/footer/body)
|
566
|
-
</li>
|
567
|
-
<li>
|
568
|
-
Improvements and bugfixes for font handling and font
|
569
|
-
auto-detection/-registration.
|
570
|
-
</li>
|
571
|
-
<li>
|
572
|
-
Performance improvements and memory optimizations for the property handling
|
573
|
-
in the FO tree.
|
574
|
-
</li>
|
575
|
-
</ul>
|
576
|
-
<p>
|
577
|
-
Please note that with this release, we've dropped support for Java 1.3.
|
578
|
-
FOP will, from now on, <strong>require at least Java 1.4</strong>.
|
579
|
-
</p>
|
580
|
-
<p>
|
581
|
-
There have been a few changes in tables that make FOP both more strict and more
|
582
|
-
compliant to the Recommendation:
|
583
|
-
<ul>
|
584
|
-
<li>XSL-FO 1.1 explicitly states that a row-spanning fo:table-cell element is not
|
585
|
-
allowed to span further than its enclosing fo:table-header/footer/body element
|
586
|
-
(see bottom of <link href="http://www.w3.org/TR/xsl11/#fo_table">section
|
587
|
-
6.7.3</link>). From now on FOP will give a validation error if a document
|
588
|
-
contains such an erroneous cell.
|
589
|
-
</li>
|
590
|
-
<li>
|
591
|
-
<p>If an fo:table element contains explicit fo:table-column children, then those
|
592
|
-
elements set the total number of columns in the table. This means that a
|
593
|
-
validation error will now occur if a row contains more cells than available
|
594
|
-
columns. This change allows to improve performance, since the rendering of the
|
595
|
-
table may start as soon as the table-column elements have been parsed.</p>
|
596
|
-
<p>If more flexibility is needed, then the fo:table-column elements may be just
|
597
|
-
omitted. The final number of columns will then be set by the row that has the
|
598
|
-
most cells.</p>
|
599
|
-
</li>
|
600
|
-
</ul>
|
601
|
-
</p>
|
602
|
-
<p>
|
603
|
-
The image libraries Jimi and JAI are no longer needed (and used) for image loading.
|
604
|
-
Instead we rely completely on the Image I/O API that has been introduced with
|
605
|
-
Java 1.4. If you still need support for bitmap image formats that do not work
|
606
|
-
out-of-the-box, we recommend adding
|
607
|
-
<link href="http://jai-imageio.dev.java.net/">JAI Image I/O Tools</link>
|
608
|
-
(an Image I/O compatible image codec package) to the classpath. JAI is still required
|
609
|
-
for building the FOP distribution but it is optional for normal builds and at run-time.
|
610
|
-
</p>
|
611
|
-
<note>
|
612
|
-
This final 0.95 release also includes all of the
|
613
|
-
<a href="changes_0.95beta.html">changes made for Apache FOP 0.95beta</a>.
|
614
|
-
</note>
|
615
|
-
</section>
|
616
|
-
</notes>
|
617
|
-
<action context="Renderers" dev="JM" type="fix">
|
618
|
-
Fixed a color selection problem which occurred after an image has been painted
|
619
|
-
through the Graphics2DAdapter in PDF output.
|
620
|
-
</action>
|
621
|
-
<action context="Renderers" dev="JM" type="fix" fixes-bug="41306">
|
622
|
-
Fixed page ordering problem with AWTRenderer.
|
623
|
-
</action>
|
624
|
-
<action context="Renderers" dev="JM" type="fix" fixes-bug="39980">
|
625
|
-
Fixed image scaling for RTF output.
|
626
|
-
</action>
|
627
|
-
<action context="API" dev="JM" type="fix">
|
628
|
-
Fixed the -imagein command-line option.
|
629
|
-
</action>
|
630
|
-
<action context="Renderers" dev="JM" type="add" fixes-bug="43825" due-to="Maximilian Aster">
|
631
|
-
Added support for fo:leader for RTF output (no full support!). Fixes problems with empty leaders
|
632
|
-
being used to force empty lines among other issues.
|
633
|
-
</action>
|
634
|
-
<action context="Renderers" dev="JM" type="add" fixes-bug="43824" due-to="Maximilian Aster">
|
635
|
-
Added support for page-number-citation for RTF output.
|
636
|
-
</action>
|
637
|
-
<action context="Renderers" dev="JM" type="fix" fixes-bug="43606" due-to="Maximilian Aster">
|
638
|
-
Fixed handling of proportional-column-width() and percentages for table column in RTF
|
639
|
-
output.
|
640
|
-
</action>
|
641
|
-
<action context="Layout" dev="AD" type="fix" fixes-bug="45295">
|
642
|
-
Fixed NullPointerException when page-number-citations are used inside a marker.
|
643
|
-
</action>
|
644
|
-
<action context="Images" dev="JM" type="fix">
|
645
|
-
Fixed two bugs concerning resolution handling with SVG images and their
|
646
|
-
conversion to bitmaps for RTF output.
|
647
|
-
</action>
|
648
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="44887" importance="high">
|
649
|
-
Fixed potential multi-threading problem concerning the use of DecimalFormat.
|
650
|
-
</action>
|
651
|
-
<action context="Layout" dev="JM" type="fix" fixes-bug="44412">
|
652
|
-
Regression bugfix: Multiple collapsible breaks don't cause empty pages anymore.
|
653
|
-
</action>
|
654
|
-
<action context="Renderers" dev="JM" type="fix">
|
655
|
-
Fixed resolution handling inside AWT preview dialog.
|
656
|
-
</action>
|
657
|
-
<action context="Renderers" dev="JM" type="fix" importance="high">
|
658
|
-
Fixed positioning of absolutely positioned block-containers in multi-column documents.
|
659
|
-
</action>
|
660
|
-
<action context="Renderers" dev="JM" type="fix" importance="high">
|
661
|
-
Fixed rendering of fixed block-containers in AFP output.
|
662
|
-
</action>
|
663
|
-
<action context="Layout" dev="VH" type="fix" fixes-bug="44621" importance="high">
|
664
|
-
Various bugfixes for table layout.
|
665
|
-
</action>
|
666
|
-
<action context="Renderers" dev="JM" type="fix">
|
667
|
-
Fixed regression causing bad positioning of block-containers if used as descendant
|
668
|
-
of a table-cell.
|
669
|
-
</action>
|
670
|
-
<action context="Fonts" dev="JM" type="fix">
|
671
|
-
Fixed text extraction problem with ZapfDingbats and Symbol font in PDF output.
|
672
|
-
</action>
|
673
|
-
<action context="Images" dev="JM" type="fix">
|
674
|
-
Fixed a performance problem concerning image serialization.
|
675
|
-
</action>
|
676
|
-
<action context="Fonts" dev="JM" type="fix">
|
677
|
-
Fixed NullPointerException when loading a TrueType font using XML font metric files.
|
678
|
-
</action>
|
679
|
-
</release>
|
680
|
-
<release version="0.95beta" date="26 March 2008">
|
681
|
-
<notes>
|
682
|
-
<section>
|
683
|
-
<title>Notes</title>
|
684
|
-
<p>
|
685
|
-
Besides the important changes listed below, the most important areas with
|
686
|
-
improvements in this release are:
|
687
|
-
</p>
|
688
|
-
<ul>
|
689
|
-
<li>
|
690
|
-
Many bugfixes in tables, plus some new features (full support for keeps and
|
691
|
-
breaks, border conditionality, background on columns and header/footer/body)
|
692
|
-
</li>
|
693
|
-
<li>
|
694
|
-
Improvements and bugfixes for font handling and font
|
695
|
-
auto-detection/-registration.
|
696
|
-
</li>
|
697
|
-
<li>
|
698
|
-
Performance improvements and memory optimizations for the property handling
|
699
|
-
in the FO tree.
|
700
|
-
</li>
|
701
|
-
</ul>
|
702
|
-
<p>
|
703
|
-
Please note that with this release, we've dropped support for Java 1.3.
|
704
|
-
FOP will, from now on, <strong>require at least Java 1.4</strong>.
|
705
|
-
</p>
|
706
|
-
<p>
|
707
|
-
There have been a few changes in tables that make FOP both more strict and more
|
708
|
-
compliant to the Recommendation:
|
709
|
-
<ul>
|
710
|
-
<li>XSL-FO 1.1 explicitly states that a row-spanning fo:table-cell element is not
|
711
|
-
allowed to span further than its enclosing fo:table-header/footer/body element
|
712
|
-
(see bottom of <link href="http://www.w3.org/TR/xsl11/#fo_table">section
|
713
|
-
6.7.3</link>). From now on FOP will give a validation error if a document
|
714
|
-
contains such an erroneous cell.
|
715
|
-
</li>
|
716
|
-
<li>
|
717
|
-
<p>If an fo:table element contains explicit fo:table-column children, then those
|
718
|
-
elements set the total number of columns in the table. This means that a
|
719
|
-
validation error will now occur if a row contains more cells than available
|
720
|
-
columns. This change allows to improve performance, since the rendering of the
|
721
|
-
table may start as soon as the table-column elements have been parsed.</p>
|
722
|
-
<p>If more flexibility is needed, then the fo:table-column elements may be just
|
723
|
-
omitted. The final number of columns will then be set by the row that has the
|
724
|
-
most cells.</p>
|
725
|
-
</li>
|
726
|
-
</ul>
|
727
|
-
</p>
|
728
|
-
<p>
|
729
|
-
The image libraries Jimi and JAI are no longer needed (and used) for image loading.
|
730
|
-
Instead we rely completely on the Image I/O API that has been introduced with
|
731
|
-
Java 1.4. If you still need support for bitmap image formats that do not work
|
732
|
-
out-of-the-box, we recommend adding
|
733
|
-
<link href="http://jai-imageio.dev.java.net/">JAI Image I/O Tools</link>
|
734
|
-
(an Image I/O compatible image codec package) to the classpath. JAI is still required
|
735
|
-
for building the FOP distribution but it is optional for normal builds and at run-time.
|
736
|
-
</p>
|
737
|
-
</section>
|
738
|
-
</notes>
|
739
|
-
<action context="Layout" dev="JM" type="fix" fixes-bug="44412">
|
740
|
-
Bugfix: The before border of a block is no longer swallowed if its first child issues
|
741
|
-
a break-before.
|
742
|
-
</action>
|
743
|
-
<action context="Layout" dev="JM" type="fix" fixes-bug="44412">
|
744
|
-
Bugfix: When there was a forced break after a block with (conditional) borders the
|
745
|
-
border-after wasn't painted.
|
746
|
-
</action>
|
747
|
-
<action context="Layout" dev="VH" type="fix">
|
748
|
-
Bugfix: a forced break inside a cell was ignored when occurring before the minimum height
|
749
|
-
set on the enclosing row was set.
|
750
|
-
</action>
|
751
|
-
<action context="Layout" dev="JM" type="fix">
|
752
|
-
Fixed exceptions when lists, tables or block-container are children of an inline-level
|
753
|
-
FO.
|
754
|
-
</action>
|
755
|
-
<action context="Layout" dev="VH" type="add" importance="high">
|
756
|
-
Added support for background on fo:table-column and fo:table-header/footer/body elements.
|
757
|
-
</action>
|
758
|
-
<action context="Layout" dev="VH" type="fix">
|
759
|
-
Fixed the rendering of the area of a table corresponding to border-separation, which must
|
760
|
-
be filled with the background of the table, and not the rows.
|
761
|
-
</action>
|
762
|
-
<action context="Layout" dev="VH" type="fix">
|
763
|
-
Improved conformance: even if a table-cell spans several rows its background must
|
764
|
-
correspond to the first row spanned.
|
765
|
-
</action>
|
766
|
-
<action context="Renderers" dev="JM" type="fix" due-to="Gordon Cooke">
|
767
|
-
Slight improvement for thin lines in Java2D/AWT output.
|
768
|
-
</action>
|
769
|
-
<action context="Layout" dev="VH" type="add">
|
770
|
-
Added full support for keep-with-previous on fo:table-row and in fo:table-cell elements.
|
771
|
-
</action>
|
772
|
-
<action context="Code" dev="MB" type="add">
|
773
|
-
Turned on XInclude processing for the main source given on the command line.
|
774
|
-
</action>
|
775
|
-
<action context="Fonts" dev="JM" type="fix" fixes-bug="44451" due-to="Justus Piater">
|
776
|
-
Improved the font auto-detection so fonts accessed using the font-family name are
|
777
|
-
selected with higher accuracy.
|
778
|
-
</action>
|
779
|
-
<action context="API" dev="JM" type="remove">
|
780
|
-
Removed deprecated methods in the "apps" package that were left-overs from the API
|
781
|
-
discussions.
|
782
|
-
</action>
|
783
|
-
<action context="Fonts" dev="JM" type="add">
|
784
|
-
Added support for unusual font encodings (like for Symbol or Cyrillic fonts) of Type 1
|
785
|
-
fonts in PDF and PostScript output.
|
786
|
-
</action>
|
787
|
-
<action context="Layout" dev="VH" type="fix" fixes-bug="44321">
|
788
|
-
Moved to the FO tree stage the check for break-before/after on table-row while spanning in
|
789
|
-
progress.
|
790
|
-
</action>
|
791
|
-
<action context="Layout" dev="VH" type="add">
|
792
|
-
Added full support for breaks before and after table cells (that is, break-before/after set
|
793
|
-
on the first/last child of a cell).
|
794
|
-
</action>
|
795
|
-
<action context="Layout" dev="VH" type="add">
|
796
|
-
Added full support for breaks inside the cells of a table.
|
797
|
-
</action>
|
798
|
-
<action context="Code" dev="AD" type="fix" fixes-bug="41631">
|
799
|
-
Added correct percentage resolution for arguments to the proportional-column-width() function.
|
800
|
-
</action>
|
801
|
-
<action context="Fonts" dev="JM" type="fix">
|
802
|
-
Bugfix for date formatting with negative time zones in the PDF's Info object.
|
803
|
-
This affected PDF/A compliance.
|
804
|
-
</action>
|
805
|
-
<action context="Renderers" dev="JM" type="add">
|
806
|
-
Added an option to disable the default sRGB profile in PDF output for those who
|
807
|
-
don't care about color fidelity, but care about PDF file size.
|
808
|
-
</action>
|
809
|
-
<action context="Code" dev="AD" type="fix" fixes-bug="43705">
|
810
|
-
Fixed a bug when the rgb-icc() function was used either before the fo:declarations,
|
811
|
-
or in documents without a fo:declarations node. In such cases, the sRGB fallback
|
812
|
-
is now used to avoid an ugly NullPointerException.
|
813
|
-
</action>
|
814
|
-
<action context="Code" dev="AD" type="add">
|
815
|
-
Added very basic parsing for the xml:lang shorthand.
|
816
|
-
</action>
|
817
|
-
<action context="Code" dev="AD" type="fix" fixes-bug="44343">
|
818
|
-
Fixed a bug when using relative font-size (smaller/larger) in combination
|
819
|
-
with percentages.
|
820
|
-
</action>
|
821
|
-
<action context="Fonts" dev="JM" type="fix">
|
822
|
-
Bugfix for handling of optional tables in subset TrueType fonts. This bug caused errors
|
823
|
-
in various PDF viewers.
|
824
|
-
</action>
|
825
|
-
<action context="Renderers" dev="JM" type="add">
|
826
|
-
Added support for the natural language indentifier ("Lang" in the document catalog)
|
827
|
-
for PDF documents based on the language/country values on fo:page-sequence.
|
828
|
-
</action>
|
829
|
-
<action context="Code" dev="AD" type="fix" fixes-bug="44286" due-to="Stefan Ziel">
|
830
|
-
Fixed a memory-leak in XMLWhiteSpaceHandler.
|
831
|
-
</action>
|
832
|
-
<action context="Layout" dev="VH" type="fix" fixes-bug="44289">
|
833
|
-
Fixed the resolution of borders when header/footer is omitted at page breaks.
|
834
|
-
</action>
|
835
|
-
<action context="Layout" dev="VH" type="add" importance="high" fixes-bug="43934">
|
836
|
-
Added support for conditional borders in tables, for both the separate and the collapsing
|
837
|
-
border model.
|
838
|
-
</action>
|
839
|
-
<action context="Layout" dev="JM" type="fix" fixes-bug="44160">
|
840
|
-
Fixed a possible IndexOutOfBoundsException that could happen with certain constellations
|
841
|
-
when footnotes are used.
|
842
|
-
</action>
|
843
|
-
<action context="Layout" dev="JM" type="fix">
|
844
|
-
Compliance fix: for absolutely positioned block-containers, "top" wasn't
|
845
|
-
interpreted correctly.
|
846
|
-
</action>
|
847
|
-
<action context="Extensions" dev="JM" type="add">
|
848
|
-
New extension attribute fox:transform on fo:block-container allows free-form transformation
|
849
|
-
(rotation, scaling etc.) of absolute and fixed block-containers. Supported only
|
850
|
-
for PDF, PS and Java2D-based renderers.
|
851
|
-
</action>
|
852
|
-
<action context="Renderers" dev="JM" type="fix">
|
853
|
-
Fixed logic error setting the transformation matrix for block-container viewports
|
854
|
-
(applies to absolute and fixed block-containers only).
|
855
|
-
Important: External renderer implementations need to adjust for the change and implement
|
856
|
-
the new method concatenateTransformationMatrix(AffineTransform) if the renderer is
|
857
|
-
derived from AbstractPathOrientedRenderer.
|
858
|
-
</action>
|
859
|
-
<action context="Images" dev="JM" importance="high" type="fix">
|
860
|
-
A new image loading framework has been introduced to fix various problems with external
|
861
|
-
graphics and improve performance.
|
862
|
-
</action>
|
863
|
-
<action context="Renderers" dev="JM" type="fix">
|
864
|
-
Fixed generation of named destinations so it works when the PDF document is encrypted.
|
865
|
-
</action>
|
866
|
-
<action context="Renderers" dev="JM" type="add">
|
867
|
-
PostScript output now generates the bounding box DSC comments for the whole document.
|
868
|
-
</action>
|
869
|
-
<action context="Renderers" dev="JM" type="add">
|
870
|
-
Added support for PDF page labels.
|
871
|
-
</action>
|
872
|
-
<action context="Renderers" dev="JM" type="add" fixes-bug="44176" due-to="Patrick Jaromin">
|
873
|
-
Added support for custom fonts in Java2DRenderer and derived renderers.
|
874
|
-
</action>
|
875
|
-
<action context="Extensions" dev="JM" type="add" importance="high">
|
876
|
-
Added new extension element: fox:external-document. It allows to add whole documents
|
877
|
-
such as multi-page TIFF images to be inserted as peers to a page-sequence. Each image
|
878
|
-
will make up an entire page. See the documentation for details.
|
879
|
-
</action>
|
880
|
-
<action context="Layout" dev="JM" type="add">
|
881
|
-
Added minimal support for the .minimum/.maximum components of block/inline-progression-dimension
|
882
|
-
on fo:external-graphic and fo:instream-foreign-object.
|
883
|
-
</action>
|
884
|
-
<action context="Layout" dev="JM" type="add" importance="high">
|
885
|
-
Added support for scale-down-to-fit and scale-up-to-fit (introduced in XSL 1.1).
|
886
|
-
</action>
|
887
|
-
<action context="Layout" dev="VH" type="fix" fixes-bug="43633">
|
888
|
-
Bugfix: content of a row with zero height overriding the previous row
|
889
|
-
</action>
|
890
|
-
<action context="Renderers" dev="JM" type="fix" fixes-bug="37993">
|
891
|
-
Bugfix: allow multiple bookmarks to point at the same destination.
|
892
|
-
</action>
|
893
|
-
<action context="Layout" dev="JM" type="fix" fixes-bug="43917">
|
894
|
-
Bugfix for border-after painting and element list generation when a
|
895
|
-
forced break is involved.
|
896
|
-
</action>
|
897
|
-
<action context="Layout" dev="JM" type="fix" fixes-bug="40230">
|
898
|
-
Bugfix: no empty page is generated anymore if there's no content
|
899
|
-
after a break-after.
|
900
|
-
</action>
|
901
|
-
<action context="Layout" dev="VH" type="fix" fixes-bug="43803">
|
902
|
-
Restored proper handling of fo:table-cell having no children, which is allowed in relaxed
|
903
|
-
validation mode.
|
904
|
-
</action>
|
905
|
-
<action context="Layout" dev="JM" type="fix">
|
906
|
-
Memory Leak fixed in the Property Cache. Fixed by Jeremias Maerki. Reported and Tested By
|
907
|
-
Chris Bowditch.
|
908
|
-
</action>
|
909
|
-
<action context="Layout" dev="VH" type="fix" fixes-bug="43712">
|
910
|
-
Bugfix in tables: wrong element generation by the merging algorithm when glues must be
|
911
|
-
produced to cope with conditional spaces. The corresponding length was added twice: one in
|
912
|
-
the glue itself and one in the following box.
|
913
|
-
</action>
|
914
|
-
<action context="Code" dev="JM" type="fix">
|
915
|
-
Bugfix for URI resolution: Make StreamSources without system identifier work again.
|
916
|
-
</action>
|
917
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="43910" due-to="David Delbecq">
|
918
|
-
Avoid a NullPointerException in AreaTreeHandler.endDocument().
|
919
|
-
</action>
|
920
|
-
<action context="Layout" dev="VH" type="fix" fixes-bug="43766">
|
921
|
-
Bugfix: breaks generated by the merging algorithm for a table-row containing empty cells
|
922
|
-
had always a penalty of 900.
|
923
|
-
</action>
|
924
|
-
<action context="Layout" dev="JM" type="add" fixes-bug="43605" due-to="V. Schappert">
|
925
|
-
Added methods for fo:page-number-citation(-last) in FOEventHandler.
|
926
|
-
</action>
|
927
|
-
<action context="Layout" dev="VH" type="add">
|
928
|
-
Step towards performance: the collapsing-border resolution algorithm no longer triggers the
|
929
|
-
retrieving of the whole table, when possible.
|
930
|
-
</action>
|
931
|
-
<action context="Layout" dev="VH" type="fix">
|
932
|
-
In case of missing cells the border-end of the table was applied to an inner cell, instead
|
933
|
-
of the (empty) cell in the last column.
|
934
|
-
</action>
|
935
|
-
<action context="Layout" dev="VH" type="fix">
|
936
|
-
Fixed the resolution of borders with table-columns (border-before/after was wrongly applied
|
937
|
-
to every cell of the column).
|
938
|
-
</action>
|
939
|
-
<action context="Layout" dev="VH" type="fix" fixes-bug="42768">
|
940
|
-
Fixed the resolution of border-end on cells spanning several rows.
|
941
|
-
</action>
|
942
|
-
<action context="Fonts" dev="JM" type="fix" fixes-bug="43835" due-to="David Churavy">
|
943
|
-
Bugfix: Use Font.getName() (logical font name) instead of Font.getFontName()
|
944
|
-
(localized) when registering fonts from AWT.
|
945
|
-
</action>
|
946
|
-
<action context="Fonts" dev="JM" type="fix">
|
947
|
-
Made the way TrueType fonts are embedded in PDF compliant to the
|
948
|
-
specification so viewers correctly identify subset fonts.
|
949
|
-
</action>
|
950
|
-
<action context="Fonts" dev="JM" type="fix">
|
951
|
-
Fixed font-autodetection so fonts with uppercase extensions are
|
952
|
-
detected, too.
|
953
|
-
</action>
|
954
|
-
<action context="Fonts" dev="JM" type="update">
|
955
|
-
Improved font auto-detection and handling of AWT-supplied fonts in order
|
956
|
-
to achieve better results when using multiple output formats. Whenever
|
957
|
-
possible, the font names appearing in the operating system can also
|
958
|
-
be used in XSL-FO.
|
959
|
-
</action>
|
960
|
-
<action context="Renderers" dev="JM" type="fix">
|
961
|
-
Fixed regression: transparent-page-background was not recognized for PNG output.
|
962
|
-
</action>
|
963
|
-
<action context="Layout" dev="VH" type="add">
|
964
|
-
Added check for table-cells which span more rows than available in their parent element
|
965
|
-
(table-header/footer/body).
|
966
|
-
</action>
|
967
|
-
<action context="Layout" dev="AD" type="add">
|
968
|
-
Added support for fo:markers in fo:inline and fo:basic-link.
|
969
|
-
</action>
|
970
|
-
<action context="Renderers" dev="JM" type="update" importance="high">
|
971
|
-
PDF Transcoder (SVG) text painting has been completely rewritten.
|
972
|
-
Except for some special cases (with filters for example), all text
|
973
|
-
(including flow text) is now painted using PDF text operators.
|
974
|
-
</action>
|
975
|
-
<action context="Layout" dev="AD" type="add" fixes-bug="42748">
|
976
|
-
Added support for ids on empty fo:inlines.
|
977
|
-
</action>
|
978
|
-
<action context="Fonts" dev="AC" type="add" fixes-bug="42982" due-to="Max Berger">
|
979
|
-
Add Font support in jar files.
|
980
|
-
</action>
|
981
|
-
<action context="Renderers" dev="AC" type="fix" fixes-bug="43042" due-to="Andrejus Chaliapinas">
|
982
|
-
Postscript extension cleanup.
|
983
|
-
</action>
|
984
|
-
<action context="Renderers" dev="AC" type="fix" fixes-bug="43587">
|
985
|
-
Fix to avoid ClassCastException where multiple ps:ps-comments are declared within fo:declarations.
|
986
|
-
</action>
|
987
|
-
<action context="Fonts" dev="AC" type="fix" fixes-bug="43143">
|
988
|
-
Fix to avoid NullPointerException when parsing ExpertEncoded and ExpertSubsetEncoded Type 1 fonts.
|
989
|
-
</action>
|
990
|
-
<action context="Renderers" dev="AC" type="fix" fixes-bug="43439">
|
991
|
-
Fixes missing TLE value attribute when using AreaTree input with the AFP renderer.
|
992
|
-
</action>
|
993
|
-
<action context="Renderers" dev="JM" type="add">
|
994
|
-
Added generic structures to the PDF library in order to support PDF
|
995
|
-
file in fo:external-graphic later.
|
996
|
-
</action>
|
997
|
-
<action context="Code" dev="JM" type="add" fixes-bug="43597" due-to="Max Berger">
|
998
|
-
Added support for SVGZ.
|
999
|
-
</action>
|
1000
|
-
<action context="Layout" dev="JM" type="fix">
|
1001
|
-
Bugfix for NPE with empty table-row (regression from 0.93).
|
1002
|
-
</action>
|
1003
|
-
<action context="Renderers" dev="JM" type="add">
|
1004
|
-
Added a configuration setting to the PCL renderer to disable PJL commands.
|
1005
|
-
</action>
|
1006
|
-
<action context="Renderers" dev="JM" type="fix" fixes-bug="43464" due-to="Bruno Feurer">
|
1007
|
-
Fix to avoid a ClassCastException in renderer configuration.
|
1008
|
-
</action>
|
1009
|
-
<action context="Renderers" dev="JM" type="fix" fixes-bug="43439" due-to="Adrian Cumiskey">
|
1010
|
-
Fixed the restoration of the TLE values from the intermediate format
|
1011
|
-
for the AFP extension elements.
|
1012
|
-
</action>
|
1013
|
-
<action context="Renderers" dev="JM" type="add" fixes-bug="43041" due-to="Adrian Cumiskey">
|
1014
|
-
Added a configuration setting for the renderer/device resolution to the AFP renderer.
|
1015
|
-
</action>
|
1016
|
-
<action context="Layout" dev="AD" type="update">
|
1017
|
-
Facilitate the implementation for font-selection-strategy:<br/>
|
1018
|
-
• Changed FontInfo.fontLookup to always return an array of FontTriplet.<br/>
|
1019
|
-
• Changed CommonFont.getFontState to return an array of FontTriplet.<br/>
|
1020
|
-
• Initial modifications to the related LMs: initialized with
|
1021
|
-
the font corresponding to the first of the triplets.<br/>
|
1022
|
-
</action>
|
1023
|
-
<action context="Layout" dev="AD" type="update">
|
1024
|
-
PropertyCache phase 2:<br/>
|
1025
|
-
• improvement of the PropertyCache itself should now guarantee acceptable
|
1026
|
-
performance of the static caches in multi-session environments, which is
|
1027
|
-
a possible problem with synchronizedMap.<br/>
|
1028
|
-
• changed CommonFont to use the cache:
|
1029
|
-
added CachedCommonFont to contain the properties that are always cacheable
|
1030
|
-
CommonFont itself is only cached if the remaining properties are absolutes.<br/>
|
1031
|
-
• changed CommonHyphenation, KeepProperty, ColorProperty and FontFamilyProperty to use the cache.<br/>
|
1032
|
-
</action>
|
1033
|
-
<action context="Layout" dev="AD" type="fix" fixes-bug="42705">
|
1034
|
-
Fixed swallowing PCDATA in text-node children of
|
1035
|
-
retrieved markers.
|
1036
|
-
</action>
|
1037
|
-
<action context="Layout" dev="AD" type="fix" fixes-bug="42703">
|
1038
|
-
Fixed erroneous white-space removal in retrieved markers.
|
1039
|
-
</action>
|
1040
|
-
<action context="Layout" dev="AD" type="fix" fixes-bug="43274" due-to="ckohrn.at.tng.de">
|
1041
|
-
Fixed erroneous usage of inherited color-values in SVG.
|
1042
|
-
</action>
|
1043
|
-
</release>
|
1044
|
-
<release version="0.94" date="24th August 2007">
|
1045
|
-
<action context="Code" dev="JM" type="fix">
|
1046
|
-
AFP Renderer: Bugfix for 1 bit images where the width is not a multiple of 8.
|
1047
|
-
</action>
|
1048
|
-
<action context="Code" dev="MM" type="add" importance="high">
|
1049
|
-
Support for keep-together.within-line="always".
|
1050
|
-
</action>
|
1051
|
-
<action context="Code" dev="MM" type="fix">
|
1052
|
-
Fixed incomplete support for Unicode Word Joiner characters (U+2060 and U+FEFF).
|
1053
|
-
</action>
|
1054
|
-
<action context="Code" dev="VH" type="add">
|
1055
|
-
Add support for conditional spaces in table-cells.
|
1056
|
-
</action>
|
1057
|
-
<action context="Code" dev="AD" type="add" fixes-bug="42785" due-to="Max Berger">
|
1058
|
-
Support alignment-adjust for images.
|
1059
|
-
</action>
|
1060
|
-
<action context="Code" dev="AD" type="add" fixes-bug="41044" due-to="Richard Wheeldon">
|
1061
|
-
Partial application of the patch in Bugzilla 41044:
|
1062
|
-
* addition of a generic PropertyCache to be used by all Property
|
1063
|
-
types that can be safely canonicalized
|
1064
|
-
* modified EnumProperty, StringProperty, NumberProperty, EnumNumber
|
1065
|
-
and FixedLength to make use of the cache infrastructure
|
1066
|
-
</action>
|
1067
|
-
<action context="Code" dev="AD" type="update" fixes-bug="41656">
|
1068
|
-
Refactoring in the fo package:
|
1069
|
-
-> removal of the childNodes instance member in fop.fo.FObj
|
1070
|
-
-> addition of a firstChild instance member in fop.fo.FObj
|
1071
|
-
-> addition of a siblings instance member in fop.fo.FONode
|
1072
|
-
-> addition of a FONodeIterator interface in FONode + corresponding implementation in FObj
|
1073
|
-
-> changed implementations of FObj.addChildNode(), .removeChild() and .getChildNodes()
|
1074
|
-
</action>
|
1075
|
-
<action context="Code" dev="AD" type="update" fixes-bug="42089" due-to="Adrian Cumiskey">
|
1076
|
-
Code cleanup and restructuring:
|
1077
|
-
Refactoring of PageSequenceLayoutManager and provide common FObj id property use
|
1078
|
-
</action>
|
1079
|
-
<action context="Code" dev="AD" type="add">
|
1080
|
-
Slight improvement of relative font-weight handling in the properties
|
1081
|
-
package.
|
1082
|
-
</action>
|
1083
|
-
<action context="Code" dev="JM" type="update">
|
1084
|
-
Updated PDF/A-1b support according to ISO-19005-1:2005/Cor.1:2007.
|
1085
|
-
</action>
|
1086
|
-
<action context="Code" dev="JM" type="add" importance="high" fixes-bug="41831" due-to="Adrian Cumiskey">
|
1087
|
-
Add support for font auto-detection (easier font configuration).
|
1088
|
-
</action>
|
1089
|
-
<action context="Code" dev="JM" type="update" fixes-bug="42406" due-to="Hussein Shafie">
|
1090
|
-
Use source resolution setting for bitmap images which don't provide their own
|
1091
|
-
resolution.
|
1092
|
-
</action>
|
1093
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="42109" due-to="Paul Vinkenoog">
|
1094
|
-
Fixed the rendering of zero-width spaces for certain fonts by not generating them into
|
1095
|
-
the area tree.
|
1096
|
-
</action>
|
1097
|
-
<action context="Code" dev="LF" type="fix">
|
1098
|
-
Fixed a problem with disappearing footnotes inside hyphenated inlines (and footnotes with hyphenated inline child).
|
1099
|
-
</action>
|
1100
|
-
<action context="Code" dev="JM" type="add" fixes-bug="42067" due-to="Paul Vinkenoog">
|
1101
|
-
Add support for exact positioning of internal PDF links.
|
1102
|
-
</action>
|
1103
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="41434" due-to="Martin Kögler">
|
1104
|
-
Fix PDF Genaration for non-ASCII compatible locales.
|
1105
|
-
</action>
|
1106
|
-
<action context="Code" dev="VH" type="fix">
|
1107
|
-
Fix several exceptions when break-before/after is set on the first/last row of a table.
|
1108
|
-
</action>
|
1109
|
-
<action context="Code" dev="VH" type="fix">
|
1110
|
-
Fix extra page break when break-before is set on both a table and its first row.
|
1111
|
-
</action>
|
1112
|
-
<action context="Code" dev="VH" type="fix">
|
1113
|
-
Make keep-with-next and keep-with-previous work on fo:table.
|
1114
|
-
</action>
|
1115
|
-
<action context="Code" dev="VH, JM" type="add" importance="high" fixes-bug="36934">
|
1116
|
-
Add support for the collapsing-border model in tables.
|
1117
|
-
</action>
|
1118
|
-
<action context="Code" dev="JB" type="add" importance="high">
|
1119
|
-
Add support for named destinations in PDF.
|
1120
|
-
</action>
|
1121
|
-
<action context="Code" dev="JM" type="fix">
|
1122
|
-
Fixed a problem with keep-with-next on table-rows. Once a keep-with-next was set
|
1123
|
-
inside a table, the FO following the table would always be glued to the previous table.
|
1124
|
-
</action>
|
1125
|
-
<action context="Code" dev="JM" type="fix">
|
1126
|
-
Fixed a problem with the auto-rotate-landscape setting in the PostScript renderer.
|
1127
|
-
It didn't generate the right setpagedevice command.
|
1128
|
-
</action>
|
1129
|
-
<action context="Code" dev="JM" type="fix">
|
1130
|
-
Fixed an IllegalArgumentException for absolutely positioned block-containers with a
|
1131
|
-
border and no height/bpd set.
|
1132
|
-
</action>
|
1133
|
-
<action context="Code" dev="JM" type="add">
|
1134
|
-
Add support for a two-pass production for PostScript output to minimize file size. This
|
1135
|
-
adds images only once and adds only the fonts that are really used.
|
1136
|
-
</action>
|
1137
|
-
<action context="Code" dev="AD" type="fix" fixes-bug="41652">
|
1138
|
-
If a line contained nothing but a linefeed, this didn't produce empty lines.
|
1139
|
-
Replaced the auxiliary zero-width box with a glue the width of a line,
|
1140
|
-
and shrinkable to zero-width.
|
1141
|
-
</action>
|
1142
|
-
<action context="Code" dev="VH" type="fix" fixes-bug="40120" due-to="Adrian Cumiskey">
|
1143
|
-
Stricter FOP user configuration checking
|
1144
|
-
</action>
|
1145
|
-
<action context="Code" dev="AD" type="fix" fixes-bug="41572" due-to="Erwin Tratar">
|
1146
|
-
Fix parsing 'url(...)' when the URL itself contains a bracketed part.
|
1147
|
-
</action>
|
1148
|
-
<action context="Code" dev="JM" type="add">
|
1149
|
-
Support for GIF images in RTF output (RTF handler, only. Does not affect the RTF library.)
|
1150
|
-
</action>
|
1151
|
-
<action context="Code" dev="JM" type="fix">
|
1152
|
-
Fix for NPE with PNG images for RTF output.
|
1153
|
-
</action>
|
1154
|
-
<action context="Code" dev="AD" type="fix">
|
1155
|
-
Fix for properly parsing font-family names containing spaces.
|
1156
|
-
</action>
|
1157
|
-
<action context="Code" dev="JM" type="add">
|
1158
|
-
Support for soft masks (transparency) with ImageIO image adapter.
|
1159
|
-
</action>
|
1160
|
-
<action context="Code" dev="LF" type="fix" fixes-bug="41019">
|
1161
|
-
Fix incorrect behaviour of the BreakingAlgorithm when some inline content is wider than
|
1162
|
-
the available ipd, causing a restart.
|
1163
|
-
</action>
|
1164
|
-
<action context="Code" dev="JM" type="fix">
|
1165
|
-
Fix for PDF corruption when a TrueType font with spaces in its name is embedded and no
|
1166
|
-
XML font metrics file for that font is used.
|
1167
|
-
</action>
|
1168
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="41426" due-to="Adrian Cumiskey">
|
1169
|
-
Fix for ClassCastException when fo:wrapper was used as direct child of fo:flow.
|
1170
|
-
Note: "id" attributes are still not handled properly on fo:wrapper!
|
1171
|
-
</action>
|
1172
|
-
<action context="Code" dev="MM" type="add">
|
1173
|
-
Added support for the soft hyphen (SHY) character.
|
1174
|
-
</action>
|
1175
|
-
<action context="Code" dev="MM" type="add">
|
1176
|
-
Added support for line-height-shift-adjustment property.
|
1177
|
-
</action>
|
1178
|
-
<action context="Code" dev="SP" type="add">
|
1179
|
-
Added support for the system property fop.home to
|
1180
|
-
cli.Main.getJARList().
|
1181
|
-
</action>
|
1182
|
-
<action context="Code" dev="JM" type="add" fixes-bug="40930">
|
1183
|
-
Added support for display-align for table-cell in RTF output.
|
1184
|
-
</action>
|
1185
|
-
<action context="Code" dev="MM" type="add" importance="high">
|
1186
|
-
Added support for UAX#14 type line breaking. Support does not extend across nested fo:inline elements.
|
1187
|
-
</action>
|
1188
|
-
</release>
|
1189
|
-
<release version="0.93" date="9 January 2007">
|
1190
|
-
<notes>
|
1191
|
-
<section>
|
1192
|
-
<title>Notes</title>
|
1193
|
-
<p>This is the first production grade release of the new FOP
|
1194
|
-
codebase.</p>
|
1195
|
-
<ul>
|
1196
|
-
<li>It contains the new API first introduced in release 0.92
|
1197
|
-
beta. The preceding API has been removed.
|
1198
|
-
</li>
|
1199
|
-
<li>
|
1200
|
-
See the <link href="../compliance.html">compliance page</link> for an
|
1201
|
-
overview of the compliance of this release with the XSL 1.0 and
|
1202
|
-
1.1 recommendations.
|
1203
|
-
</li>
|
1204
|
-
<li>
|
1205
|
-
This release again contains many bug fixes and new features. See
|
1206
|
-
below for details.
|
1207
|
-
</li>
|
1208
|
-
<li>
|
1209
|
-
See the <link href="../knownissues.html">known issues page</link>
|
1210
|
-
for an overview of the known issues with this release.
|
1211
|
-
</li>
|
1212
|
-
</ul>
|
1213
|
-
<p>Caveats:</p>
|
1214
|
-
<ul>
|
1215
|
-
<li>
|
1216
|
-
You may experience different behaviour compared to version 0.20.5.
|
1217
|
-
Please consult the <link href="upgrading.html">"Upgrading"</link> page for details.
|
1218
|
-
</li>
|
1219
|
-
</ul>
|
1220
|
-
</section>
|
1221
|
-
</notes>
|
1222
|
-
<action context="Code" dev="BD" type="add" importance="high">
|
1223
|
-
Added support for the use of Open Type fonts
|
1224
|
-
</action>
|
1225
|
-
<action context="Code" dev="BD" type="update" fixes-bug="5535" due-to="Adam Strzelecki, Victor Mote" importance="high">
|
1226
|
-
Enabled Copy/Paste from PDF content in Acrobat Reader for text using embedded TrueType fonts.
|
1227
|
-
</action>
|
1228
|
-
<action context="Code" dev="SP" type="update" fixes-bug="41044" due-to="Richard Wheeldon">
|
1229
|
-
Commented out unused properties, in order to minimize memory usage.
|
1230
|
-
</action>
|
1231
|
-
<action context="Code" dev="SP" type="update" fixes-bug="41009" due-to="Richard Wheeldon">
|
1232
|
-
Removed unused attributes from TableCell.
|
1233
|
-
</action>
|
1234
|
-
<action context="Code" dev="JM" type="add">
|
1235
|
-
Added initial support for loading fonts without a pre-created XML font metric
|
1236
|
-
file.
|
1237
|
-
</action>
|
1238
|
-
<action context="Code" dev="JM" type="add" fixes-bug="40729" due-to="Peter Coppens" importance="high">
|
1239
|
-
Support for the rgb-icc() function and for a proprietary cmyk() function (for device CMYK
|
1240
|
-
colors only through the PDF renderer so far).
|
1241
|
-
</action>
|
1242
|
-
<action context="Code" dev="JM" type="update" fixes-bug="40813" due-to="Richard Wheeldon">
|
1243
|
-
Minor fixes and improvements for the AWT Preview (keyboard shortcuts, scrolling, windows
|
1244
|
-
setup).
|
1245
|
-
</action>
|
1246
|
-
<action context="Code" dev="JM" type="add" fixes-bug="40849" due-to="Dominic Brügger">
|
1247
|
-
Added support for SVG in fo:instream-foreign objects for RTF output.
|
1248
|
-
</action>
|
1249
|
-
<action context="Code" dev="JM" type="fix">
|
1250
|
-
Bugfix: Fixed bug when the sum of column widths of a table is larger than the
|
1251
|
-
specified widths. The table width was not adjusted.
|
1252
|
-
</action>
|
1253
|
-
<action context="Code" dev="JM" type="fix">
|
1254
|
-
Bugfix: Nested tables with headers and footers were not handled correctly and could
|
1255
|
-
overlap with the region-after.
|
1256
|
-
</action>
|
1257
|
-
<action context="Code" dev="JM" type="add" fixes-bug="40519" due-to="Oliver Hernàndez Valls">
|
1258
|
-
Added support for CCITT compression in the TIFFRenderer by switching to the ImageWriter
|
1259
|
-
abstraction from XML Graphics Commons.
|
1260
|
-
</action>
|
1261
|
-
<action context="Code" dev="JM" type="add">
|
1262
|
-
Extension properties fox:orphan-content-limit and fox:widow-content-limit which
|
1263
|
-
help with list-block and table layout. See the documentation for details.
|
1264
|
-
</action>
|
1265
|
-
<action context="Code" dev="JM" type="add">
|
1266
|
-
Configuration option in the Java2D-based renderers that allows to disable the default
|
1267
|
-
white background in order to produce bitmap output with transparency.
|
1268
|
-
</action>
|
1269
|
-
<action context="Code" dev="AD" type="fix" fixes-bug="39414">
|
1270
|
-
Split up FOText instances larger than 32K characters to avoid
|
1271
|
-
integer overflow during layout.
|
1272
|
-
</action>
|
1273
|
-
<action context="Code" dev="JM" type="fix">
|
1274
|
-
Bugfix: Corrected painting of shading patterns and position of links for SVG images
|
1275
|
-
inside FO documents.
|
1276
|
-
</action>
|
1277
|
-
<action context="Code" dev="AD" type="update">
|
1278
|
-
Minor fix: correctly set negative values for ipd/bpd to zero.
|
1279
|
-
</action>
|
1280
|
-
<action context="Code" dev="AD" type="update" fixes-bug="35656">
|
1281
|
-
Rework of default column-creation / column-width setting from
|
1282
|
-
cells in the first row.
|
1283
|
-
</action>
|
1284
|
-
<action context="Code" dev="AD" type="update" fixes-bug="40270" due-to="Gary Reed">
|
1285
|
-
Added relaxed validation for empty list-item-*, as suggested by Gary Reed.
|
1286
|
-
</action>
|
1287
|
-
<action context="Code" dev="AD" type="update">
|
1288
|
-
Modified proportional-column-width() function to log an error if used
|
1289
|
-
with table-layout=auto
|
1290
|
-
</action>
|
1291
|
-
<action context="Code" dev="AD" type="fix">
|
1292
|
-
Deferred property resolution for markers until they are actually retrieved,
|
1293
|
-
which leads to percentages and relative font-sizes now getting the correct
|
1294
|
-
values. Also deferred white-space-handling for markers.
|
1295
|
-
</action>
|
1296
|
-
<action context="Code" dev="JM" type="update">
|
1297
|
-
Changed the way overflowing pages are handled. The overflow property on region-body
|
1298
|
-
is now used to define the behaviour.
|
1299
|
-
</action>
|
1300
|
-
<action context="Code" dev="JM" type="fix">
|
1301
|
-
Fixed a memory-leak: The FO tree part of a page-sequence was not released when a
|
1302
|
-
page-sequence was finished.
|
1303
|
-
</action>
|
1304
|
-
<action context="Code" dev="JM" type="fix">
|
1305
|
-
Bugfix: Table headers and footers were swallowed when a table was nested in a list-block.
|
1306
|
-
</action>
|
1307
|
-
<action context="Code" dev="JM" type="fix">
|
1308
|
-
Fixed a bug with indent handling when margins are used on a surrounding block and
|
1309
|
-
not start/end-indent.
|
1310
|
-
</action>
|
1311
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="40106" due-to="Jeroen Meijer">
|
1312
|
-
Compatibility fix for GCJ (GNU Classpath): Using "UTF-16BE" instead of "UnicodeBigUnmarked"
|
1313
|
-
encoding.
|
1314
|
-
</action>
|
1315
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="40062" due-to="Gilles Beaugeais">
|
1316
|
-
Fixed handling for CCITT Group 4 TIFF images with fill order 2.
|
1317
|
-
</action>
|
1318
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="40048" due-to="Igor Istomin">
|
1319
|
-
Fixed setting of page margins in AWT Renderer like it was done in the print renderer.
|
1320
|
-
</action>
|
1321
|
-
<action context="Code" dev="JM" type="fix">
|
1322
|
-
Fixed two memory-leaks in image handling. The image cache is finally working
|
1323
|
-
properly.
|
1324
|
-
</action>
|
1325
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="39608">
|
1326
|
-
Let numeric property values without a unit be treated as pixels like in HTML.
|
1327
|
-
This fixes certain NullPointerException when no units are specified.
|
1328
|
-
(Note: the use of pixels in XSL-FO is discouraged!)
|
1329
|
-
</action>
|
1330
|
-
<action context="Code" dev="JM" type="fix">
|
1331
|
-
Bugfix: Potential multi-threading issue (ConcurrentModificationException)
|
1332
|
-
eliminated for ElementMapping classes.
|
1333
|
-
</action>
|
1334
|
-
<action context="Code" dev="JM" type="fix">
|
1335
|
-
No more System.exit() and look & feel setting calls inside the reusable
|
1336
|
-
parts of the AWT viewer.
|
1337
|
-
</action>
|
1338
|
-
<action context="Code" dev="JM" type="fix">
|
1339
|
-
Proper escaping of characters in list-items labels for RTF output.
|
1340
|
-
</action>
|
1341
|
-
<action context="Code" dev="MM" type="fix">
|
1342
|
-
Bugfix: FOUserAgent specific configuration parameters specified in config file
|
1343
|
-
were not set when FOP was invoked from command line.
|
1344
|
-
</action>
|
1345
|
-
<action context="Code" dev="JM" type="add" importance="high">
|
1346
|
-
Added support for PDF/A-1b and PDF/X-3:2003. (Note: this may still be a bit
|
1347
|
-
incomplete. Feedback is welcome!)
|
1348
|
-
</action>
|
1349
|
-
<action context="Code" dev="JM" type="add">
|
1350
|
-
The CIDSet object is now generated for CID fonts which are embedded in PDFs.
|
1351
|
-
(Required by PDF/A).
|
1352
|
-
</action>
|
1353
|
-
<action context="Code" dev="JM" type="update" importance="high">
|
1354
|
-
The Java2DRenderer (and therefore the print and bitmap renderers) is now
|
1355
|
-
offering the same quality as the PDF and PS renderers. Note: There can still
|
1356
|
-
be little differences between PDF and Print/PNG/TIFF because the latter uses
|
1357
|
-
a different font metrics source.
|
1358
|
-
</action>
|
1359
|
-
<action context="Code" dev="AD" type="fix" fixes-bug="39712">
|
1360
|
-
Bugfix: components of the border-separation property weren't set when
|
1361
|
-
in shorthand-mode, leading to a NPE being thrown.
|
1362
|
-
</action>
|
1363
|
-
<action context="Code" dev="JM" type="fix">
|
1364
|
-
Bugfix: Table headers were omitted when a table is a child of a block-container.
|
1365
|
-
</action>
|
1366
|
-
<action context="Code" dev="JM" type="fix">
|
1367
|
-
Bugfix: Bookmarks in PDF will be generated even if some bookmarks cannot be
|
1368
|
-
resolved.
|
1369
|
-
</action>
|
1370
|
-
<action context="Code" dev="AD" type="fix" fixes-bug="39560">
|
1371
|
-
Bugfix: the interaction between the table FOs and properties package in
|
1372
|
-
determining initial values for column-number should be a one-time process,
|
1373
|
-
not repeated when the table is in a marker that is retrieved.
|
1374
|
-
</action>
|
1375
|
-
<action context="Code" dev="JM" type="fix">
|
1376
|
-
Bugfix: All fonts names were converted unnecessarily to lower case in RTF output.
|
1377
|
-
</action>
|
1378
|
-
<action context="Code" dev="JM" type="fix">
|
1379
|
-
Bugfix: The combination of hyphenation and kerning resulted in slightly ragged
|
1380
|
-
right ends for right-aligned and justified text.
|
1381
|
-
</action>
|
1382
|
-
<action context="Code" dev="JM" type="fix">
|
1383
|
-
Bugfix: NullPointerException in AreaAdditionUtil in a table-cell spanning
|
1384
|
-
multiple pages and with a marker.
|
1385
|
-
</action>
|
1386
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="39533">
|
1387
|
-
Bugfix: NullPointerException in RTF output when a table does not contain
|
1388
|
-
table-columns.
|
1389
|
-
</action>
|
1390
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="39607" due-to="Julien Aymé">
|
1391
|
-
Bugfix: NullPointerException in RTF library when there are no borders on
|
1392
|
-
the parent table.
|
1393
|
-
</action>
|
1394
|
-
<action context="Code" dev="JM" type="add" importance="high">
|
1395
|
-
Automatic support for all fonts available to the Java2D subsystem for all
|
1396
|
-
Java2D-descendant renderers (TIFF, PNG, print, AWT).
|
1397
|
-
</action>
|
1398
|
-
<action context="Code" dev="JM" type="fix">
|
1399
|
-
Bugfix: Improved baseline detection in TTFReader for TrueType fonts.
|
1400
|
-
</action>
|
1401
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="39443">
|
1402
|
-
Bugfix: tables nested in inline elements caused a NullPointerException.
|
1403
|
-
</action>
|
1404
|
-
<action context="Code" dev="JM" type="update">
|
1405
|
-
The default sRGB color profile provided by the Java class library is no longer
|
1406
|
-
embedded if it is encountered. This should reduce the PDF size considerably.
|
1407
|
-
</action>
|
1408
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="39443">
|
1409
|
-
Bugfix: Sections with span="all" lead to overlapping text if spanning multiple pages.
|
1410
|
-
</action>
|
1411
|
-
<action context="Code" dev="MM" type="fix">
|
1412
|
-
Bugfix: Percentages in vertical-align property values were not correctly handled.
|
1413
|
-
</action>
|
1414
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="38243" due-to="Gerhard Oettl">
|
1415
|
-
Bugfix: Gaps in table-columns cause a NullPointerException.
|
1416
|
-
</action>
|
1417
|
-
<action context="Code" dev="JM" type="update" fixes-bug="38946" due-to="Max Berger">
|
1418
|
-
Changed the internal representation of colors to use Java's own color infrastructure
|
1419
|
-
instead of FOP's home-grown classes.
|
1420
|
-
</action>
|
1421
|
-
<action context="Code" dev="MM" type="fix">
|
1422
|
-
Bugfix: TABs were not correctly replaced by spaces in some circumstances.
|
1423
|
-
</action>
|
1424
|
-
<action context="Code" dev="JM" type="update">
|
1425
|
-
Content in block-containers makes better use of shrink to fit content vertically
|
1426
|
-
into the available area. This can be used indirectly to justify content vertically
|
1427
|
-
in a block-container.
|
1428
|
-
</action>
|
1429
|
-
<action context="Code" dev="JM" type="fix">
|
1430
|
-
Bugfix: basic-links with internal destinations in documents with multiple
|
1431
|
-
page-sequences sometimes pointed at the wrong page.
|
1432
|
-
</action>
|
1433
|
-
<action context="Code" dev="JM" type="fix">
|
1434
|
-
Bugfix: Fixed ClassCastException when retrieve-marker is used as a direct child
|
1435
|
-
if static-content in which case leading and trailing white space is not properly
|
1436
|
-
removed.
|
1437
|
-
</action>
|
1438
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="39285">
|
1439
|
-
Bugfix: Fixed OutOfMemoryException with long data URLs (RFC 2397).
|
1440
|
-
</action>
|
1441
|
-
<action context="Code" dev="JM" type="add" fixes-bug="39118" due-to="Pierre-Henri Kraus">
|
1442
|
-
Initial support for page-number-citation-last (XSL 1.1). Works without problems
|
1443
|
-
only for page-sequence so far.
|
1444
|
-
</action>
|
1445
|
-
</release>
|
1446
|
-
<release version="0.92beta" date="18 Apr 2006">
|
1447
|
-
<action context="Code" dev="JM" type="fix">
|
1448
|
-
Bugfix: The generation of the PDF "d" (setdash) command was assuming that
|
1449
|
-
only integer values can be used but that isn't the case. Dash patterns
|
1450
|
-
PDFGraphics2D would be wrong in the process.
|
1451
|
-
</action>
|
1452
|
-
<action context="Code" dev="JM" type="fix">
|
1453
|
-
Bugfix: Fixed a division by zero problem in TTFReader and improved the detection
|
1454
|
-
of the capHeight and xHeight font metric values for TrueType fonts.
|
1455
|
-
</action>
|
1456
|
-
<action context="Code" dev="JM" type="fix">
|
1457
|
-
Bugfix: Allow URLs in basic-link's external-destination to be wrapped in "url()".
|
1458
|
-
</action>
|
1459
|
-
<action context="Code" dev="MM" type="fix">
|
1460
|
-
Bugfix: Corrected enumerated property value for white-space property
|
1461
|
-
from "no-wrap" to "nowrap".
|
1462
|
-
</action>
|
1463
|
-
<action context="Code" dev="MM" type="fix" fixes-bug="38457">
|
1464
|
-
Bugfix: Added support for white-space-treatment="preserve" in particular to
|
1465
|
-
support the white-space="pre" short hand property.
|
1466
|
-
</action>
|
1467
|
-
<action context="Code" dev="JM" type="fix">
|
1468
|
-
Corrected expectation and behaviour for the text-indent property to only apply
|
1469
|
-
to the first line area generated by a block.
|
1470
|
-
</action>
|
1471
|
-
<action context="Code" dev="JM" type="fix">
|
1472
|
-
Bugfix for invalid handling of ICC color profiles in JPEG images and for
|
1473
|
-
dealing with CMYK JPEG images with the Adobe APPE marker.
|
1474
|
-
</action>
|
1475
|
-
<action context="Code" dev="JM" type="add">
|
1476
|
-
Initial support for page-position="last" added.
|
1477
|
-
</action>
|
1478
|
-
<action context="Code" dev="JM" type="add">
|
1479
|
-
Reenabled loading of user-supplied hyphenation patterns that was available in
|
1480
|
-
FOP 0.20.5. (See "hyphenation-base" option in the user configuration)
|
1481
|
-
</action>
|
1482
|
-
<action context="Code" dev="JM" type="fix">
|
1483
|
-
Bugfix: Certain filter combinations in PDF could lead to invalid PDFs.
|
1484
|
-
DecodeParams were not properly handled.
|
1485
|
-
</action>
|
1486
|
-
<action context="Code" dev="JM" type="fix">
|
1487
|
-
Bugfix: CCITT Group 4 encoded TIFF images with multiple strips are now properly
|
1488
|
-
embedded in PDF files.
|
1489
|
-
</action>
|
1490
|
-
<action context="Code" dev="JM" type="add">
|
1491
|
-
Added support for fixed-width spaces.
|
1492
|
-
</action>
|
1493
|
-
<action context="Code" dev="JM" type="add">
|
1494
|
-
Added support for kerning.
|
1495
|
-
</action>
|
1496
|
-
<action context="Code" dev="JM" type="fix">
|
1497
|
-
Bugfix: Fixed a copy/paste error in the table layout code that caused wrong page
|
1498
|
-
break decisions when table-headers and/or table-footers are used.
|
1499
|
-
</action>
|
1500
|
-
<action context="Code" dev="JM" type="fix">
|
1501
|
-
Bugfix: Fixed an NPE that was thrown when a table was used inside a footnote-body.
|
1502
|
-
</action>
|
1503
|
-
<action context="Code" dev="JM" type="fix">
|
1504
|
-
Bugfix: Fixed a problem with certain TrueType fonts which are missing the "PCLT"
|
1505
|
-
table, where a baseline-shift="sub" had no effect due to a missing x-height value.
|
1506
|
-
(Note: This only affects TTFReader, so the font metric file has to be regenerated.)
|
1507
|
-
</action>
|
1508
|
-
<action context="Code" dev="JM" type="fix">
|
1509
|
-
Bugfix: When the base URL was specified as a file system path, the constructed
|
1510
|
-
URL was wrong.
|
1511
|
-
</action>
|
1512
|
-
<action context="Code" dev="JM" type="add" due-to="Jirí Mareš">
|
1513
|
-
Support for "userconfig" attribute in FOP Ant Task.
|
1514
|
-
</action>
|
1515
|
-
<action context="Code" dev="JM" type="add">
|
1516
|
-
Initial support for XMP metadata (PDF 1.4) under fo:declarations.
|
1517
|
-
</action>
|
1518
|
-
<action context="Code" dev="AD" type="add">
|
1519
|
-
Added support for the background-position shorthand property.
|
1520
|
-
</action>
|
1521
|
-
<action context="Code" dev="AD" type="add">
|
1522
|
-
Added support for the font shorthand property.
|
1523
|
-
</action>
|
1524
|
-
<action context="Code" dev="JM" type="add" fixes-bug="38618" due-to="Max Berger">
|
1525
|
-
Added support for system-color() function.
|
1526
|
-
</action>
|
1527
|
-
<action context="Code" dev="JM" type="fix">
|
1528
|
-
Bugfix: Fixed two causes for ClassCastExceptions in BlockContainerLayoutManager.
|
1529
|
-
</action>
|
1530
|
-
<action context="Code" dev="JM" type="fix">
|
1531
|
-
Bugfix: padding-top and padding-bottom on list-items could lead to wrong page
|
1532
|
-
break decisions and thus to overlapping text.
|
1533
|
-
</action>
|
1534
|
-
<action context="Code" dev="JM" type="fix">
|
1535
|
-
Bugfix: break-before and break-after were ignored on list-items.
|
1536
|
-
</action>
|
1537
|
-
<action context="Code" dev="LF" type="fix" fixes-bug="38507">
|
1538
|
-
Bugfix: The elements representing a non-breaking space weren't always correct.
|
1539
|
-
</action>
|
1540
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="38453">
|
1541
|
-
Bugfix: Text-decoration was not promoted if no text-decoration attribute was
|
1542
|
-
specified on a nested element.
|
1543
|
-
</action>
|
1544
|
-
<action context="Code" dev="AD" type="add" fixes-bug="38282"
|
1545
|
-
due-to="Gerhard Oettl (gerhard.oettl.at.oesoft.at)">
|
1546
|
-
Added support for the from-table-column() function.
|
1547
|
-
</action>
|
1548
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="38397">
|
1549
|
-
Bugfix: Spanned cells could lead to an false error message about overlapping
|
1550
|
-
cells and ultimately a NullPointerException.
|
1551
|
-
</action>
|
1552
|
-
<action context="Code" dev="JM" type="fix">
|
1553
|
-
Bugfix: Regions with non-standard names got ignored in RTF output leading to
|
1554
|
-
missing headers and footers.
|
1555
|
-
</action>
|
1556
|
-
<action context="Code" dev="JM" type="fix">
|
1557
|
-
The RTF output now properly generates the "\landscape" flag for documents in
|
1558
|
-
landscape orientation.
|
1559
|
-
</action>
|
1560
|
-
<action context="Code" dev="JM" type="fix">
|
1561
|
-
Following a clarification by the XSL FO SG, space traits are only set on the
|
1562
|
-
first and last area generated by an FO, and not on every area anymore.
|
1563
|
-
</action>
|
1564
|
-
<action context="Code" dev="JM" type="add">
|
1565
|
-
New feature: "Intermediate format" (IF). The IF is basically the XML dialect
|
1566
|
-
written by the area tree renderer (XMLRenderer). A new parser for this format
|
1567
|
-
allows reparsing a serialized and possibly modified area tree and rendering it
|
1568
|
-
to the final target format.
|
1569
|
-
</action>
|
1570
|
-
<action context="Code" dev="JM" type="fix">
|
1571
|
-
Bugfix: Floating point numbers were not properly formatted in the PDF renderer
|
1572
|
-
which could lead to error messages while opening a PDF in Acrobat Reader.
|
1573
|
-
</action>
|
1574
|
-
<action context="Code" dev="SP" type="update" fixes-bug="38098"
|
1575
|
-
due-to="Gerhard Oettl">
|
1576
|
-
Implement property name as default argument on some xsl-function calls.
|
1577
|
-
</action>
|
1578
|
-
<action context="Code" dev="SP" type="update" fixes-bug="38087"
|
1579
|
-
due-to="Gerhard Oettl">
|
1580
|
-
Implement force-page-count property of page-sequence.
|
1581
|
-
</action>
|
1582
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="38054">
|
1583
|
-
Bugfix: Spans that end up with a negative height don't get swallowed anymore.
|
1584
|
-
</action>
|
1585
|
-
<action context="Code" dev="MM" type="add" fixes-bug="36729">
|
1586
|
-
Relative URLs for the font configuration attributes metrics-url and embed-url
|
1587
|
-
are now supported. A new configuration property font-base has been added. It
|
1588
|
-
sets the base URL against which relative font URLs are resolved. If font-base is
|
1589
|
-
not set base is used.
|
1590
|
-
</action>
|
1591
|
-
<action context="Code" dev="JM" type="add" fixes-bug="38132" due-to="Richard Wheeldon">
|
1592
|
-
Added support for RFC2397 "data" URLs.
|
1593
|
-
</action>
|
1594
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="38132">
|
1595
|
-
Bugfix: Certain border styles could lead to a NullPointerException.
|
1596
|
-
</action>
|
1597
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="38102">
|
1598
|
-
Bugfix: Space was not adjusted if the space was on a nested block. This could
|
1599
|
-
lead to content overflowing the bottom of a page.
|
1600
|
-
</action>
|
1601
|
-
<action context="Code" dev="JM" type="fix">
|
1602
|
-
Bugfix: TableCell did not properly report that it generates reference-areas
|
1603
|
-
which could lead to wrong inherited values for start-indent and end-indent.
|
1604
|
-
</action>
|
1605
|
-
<action context="Code" dev="JM" type="add">
|
1606
|
-
The font loading code now reads the encoding value from the XML font metrics file
|
1607
|
-
so that fonts like Symbol and ZapfDingbats can be embedded explicitely (Required by PDF/A).
|
1608
|
-
</action>
|
1609
|
-
<action context="Code" dev="SP" type="update">
|
1610
|
-
Improvements to the code for inline block content.
|
1611
|
-
</action>
|
1612
|
-
<action context="Code" dev="MM" type="fix" fixes-bug="38089">
|
1613
|
-
Bugfix: Image height for BMP images was incorrectly calculated
|
1614
|
-
</action>
|
1615
|
-
<action context="Code" dev="AD" type="update">
|
1616
|
-
Revision of refinement white-space handling.
|
1617
|
-
</action>
|
1618
|
-
<action context="Code" dev="AD" type="add">
|
1619
|
-
Added feature: support for white-space shorthand
|
1620
|
-
</action>
|
1621
|
-
<action context="Code" dev="AD" type="add">
|
1622
|
-
Added feature: support for page-break-* shorthands
|
1623
|
-
</action>
|
1624
|
-
<action context="Code" dev="MM" type="fix" fixes-bug="38053">
|
1625
|
-
Bugfix: NullPointerException on certain fo:inline within lists.
|
1626
|
-
</action>
|
1627
|
-
<action context="Code" dev="MM" type="fix" fixes-bug="37743">
|
1628
|
-
Bugfix: ClassCastException on certain fo:inline with border combinations.
|
1629
|
-
</action>
|
1630
|
-
<action context="Code" dev="MM" type="fix">
|
1631
|
-
Changed a method name in LineArea from finalize to finalise because it was
|
1632
|
-
never intended for the method to be an override of the Java Object finalize
|
1633
|
-
method. If invoked by the Java garbage collector it may cause a NPE.
|
1634
|
-
</action>
|
1635
|
-
</release>
|
1636
|
-
<release version="0.91beta" date="23 Dec 2005">
|
1637
|
-
<action context="Code" dev="JM" type="update">
|
1638
|
-
Deprecated Fop constructors that use integer constants to select the
|
1639
|
-
output format have been removed in favor or the constructors that use
|
1640
|
-
MIME types.
|
1641
|
-
</action>
|
1642
|
-
<action context="Code" dev="MM" type="fix">
|
1643
|
-
Fixed a bug where the linefeed-treatment property value "preserve" was not
|
1644
|
-
honoured when used in conjunction with text-align="center".
|
1645
|
-
</action>
|
1646
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="37964">
|
1647
|
-
Bugfix: hard breaks with even-page or odd-page were not handled correctly
|
1648
|
-
when spaces were surrounding the break.
|
1649
|
-
</action>
|
1650
|
-
<action context="Code" dev="JM" type="update">
|
1651
|
-
Changed the XMLHandler interface so it doesn't report the MIME type it
|
1652
|
-
supports but instead can report whether it supports a particular Renderer
|
1653
|
-
implementation. XMLHandlers are now configurable.
|
1654
|
-
</action>
|
1655
|
-
<action context="Code" dev="JM" type="fix">
|
1656
|
-
Fixed a bug where SVG content could be clipped when rendered to PostScript.
|
1657
|
-
</action>
|
1658
|
-
<action context="Code" dev="JM" type="fix">
|
1659
|
-
Changed the way resolutions are handled. The single resolution in the user
|
1660
|
-
agent got split up into source and target resolutions. For more info, see
|
1661
|
-
the updated documentation. Note: backwards-incompatible change!
|
1662
|
-
</action>
|
1663
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="37875">
|
1664
|
-
Bugfix: Some content inside a table-header may not have been renderered on
|
1665
|
-
pages n > 1 in certain conditions.
|
1666
|
-
</action>
|
1667
|
-
<action context="Code" dev="MM" type="fix">
|
1668
|
-
Fixed a bug where an empty line, i.e. a block containing only a &nbsp;,
|
1669
|
-
was not rendered at all.
|
1670
|
-
</action>
|
1671
|
-
<action context="Code" dev="JM" type="fix">
|
1672
|
-
Fixed a bug where the area for a finished cell that is broken over pages was
|
1673
|
-
created once for each row it was spanned over instead of only once.
|
1674
|
-
</action>
|
1675
|
-
<action context="Code" dev="JM" type="add">
|
1676
|
-
Added checks that warn about tables and block-containers that are wider than
|
1677
|
-
the available content area.
|
1678
|
-
</action>
|
1679
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="37880">
|
1680
|
-
Bugfix: Footnotes were lost if the footnote appeared in centered text.
|
1681
|
-
</action>
|
1682
|
-
<action context="Code" dev="JM" type="update">
|
1683
|
-
Improved log and error messages in a number of places by adding additional
|
1684
|
-
context information that should make it easier to find the location in the
|
1685
|
-
source files.
|
1686
|
-
</action>
|
1687
|
-
<action context="Code" dev="JM" type="fix">
|
1688
|
-
Fix to correct image sizes in RTF output.
|
1689
|
-
</action>
|
1690
|
-
<action context="Code" dev="JM" type="add">
|
1691
|
-
First attempt at SVG support in RTF output. SVG images are converted to 300dpi JPEG
|
1692
|
-
images internally.
|
1693
|
-
</action>
|
1694
|
-
<action context="Code" dev="JM" type="update">
|
1695
|
-
Additional checks to detect text overflows. The overflow property is now properly
|
1696
|
-
handled where applicable.
|
1697
|
-
</action>
|
1698
|
-
<action context="Code" dev="JM" type="update">
|
1699
|
-
Source location information improved. If location information is not available,
|
1700
|
-
the context information is provided based on text content.
|
1701
|
-
</action>
|
1702
|
-
<action context="Code" dev="JM" type="add">
|
1703
|
-
The command-line now automatically sets two parameters for any XSLT transformation:
|
1704
|
-
"fop-output-format" contains the MIME type of the currently selected output format,
|
1705
|
-
"fop-version" contains FOP's version number.
|
1706
|
-
</action>
|
1707
|
-
<action context="Code" dev="JM" type="fix">
|
1708
|
-
The output file is now deleted when an exception occurs when calling FOP from
|
1709
|
-
the command-line.
|
1710
|
-
</action>
|
1711
|
-
<action context="Code" dev="JM" type="fix">
|
1712
|
-
Bugfix: Areas for table-cells that are broken over more than one page are now
|
1713
|
-
generated even if all its content is already painted on a previous page. This
|
1714
|
-
fixes strange effects like a table grid that is not completely painted.
|
1715
|
-
</action>
|
1716
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="37828">
|
1717
|
-
Bugfix: Column balancing produced strange break decisions in certain multi-column
|
1718
|
-
documents with large amounts of text.
|
1719
|
-
</action>
|
1720
|
-
<action context="Code" dev="JM" type="add">
|
1721
|
-
Added an alternative set of rules for calculating text indents which tries to mimic
|
1722
|
-
the behaviour of many commercial FO implementations that chose to break the rules
|
1723
|
-
in the FO specification in order to better meet the natural expectations of
|
1724
|
-
inexperienced FO users.
|
1725
|
-
</action>
|
1726
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="37815" due-to="Tom Craddock">
|
1727
|
-
Bugfix: The combination of content-width="scale-to-fit" and content-height="100%"
|
1728
|
-
did not work as expected due to a datatype conversion bug.
|
1729
|
-
</action>
|
1730
|
-
<action context="Code" dev="JM" type="fix" fixes-bug="37813">
|
1731
|
-
Bugfix: A span="all" on the first block cause a subsequent page break and the first block
|
1732
|
-
didn't span all columns.
|
1733
|
-
</action>
|
1734
|
-
<action context="Code" dev="JM" type="fix">
|
1735
|
-
Bugfix: Self-created OutputStreams in PNG Renderer were not properly closed.
|
1736
|
-
</action>
|
1737
|
-
<action context="Code" dev="JM" type="update">
|
1738
|
-
The border-collapse property on fo:table is now forced to the value "separate" until the collapsing
|
1739
|
-
border has been implemented.
|
1740
|
-
</action>
|
1741
|
-
<action context="Code" dev="JM" type="add">
|
1742
|
-
font-family list still not fully supported but a comma-separated list is now properly tokenized.
|
1743
|
-
FOP will now go through all fonts in the list to find one that is available, but it doesn't
|
1744
|
-
do so per character, yet.
|
1745
|
-
</action>
|
1746
|
-
<action context="Code" dev="JM" type="add">
|
1747
|
-
Implemented "Overconstrained Geometry" rules (5.3.4, XSL 1.0) for the most important cases.
|
1748
|
-
</action>
|
1749
|
-
<action context="Code" dev="JM" type="fix">
|
1750
|
-
Bugfix: Relatively positioned BlockViewports (from block-containers) caused the paint
|
1751
|
-
cursor not be be properly advanced when space-before or space-after were present.
|
1752
|
-
</action>
|
1753
|
-
<action context="Code" dev="JM" type="fix">
|
1754
|
-
Bugfix: Space resolution was incomplete for content in table-cells. Conditional elements
|
1755
|
-
didn't get removed.
|
1756
|
-
</action>
|
1757
|
-
<action context="Code" dev="JM" type="fix">
|
1758
|
-
The validation check for non-zero borders and padding on a region-* and for empty static-content
|
1759
|
-
elements is now turned off when relaxed validation is active to improve compatibility with
|
1760
|
-
FO documents written for other FO implementations.
|
1761
|
-
</action>
|
1762
|
-
<action context="Code" dev="JM" type="fix">
|
1763
|
-
Bugfix for "/ by zero" ArithmeticExceptions when an URL to a non-existing image is used
|
1764
|
-
and content-width and/or content-height is used.
|
1765
|
-
</action>
|
1766
|
-
<action context="Code" dev="JM" type="fix">
|
1767
|
-
Bugfix for a multi-threading problem:
|
1768
|
-
propertyListTable initialization moved from the constructor to a static block in FONode.
|
1769
|
-
This fixes NullPointerExceptions in PropertyList.
|
1770
|
-
</action>
|
1771
|
-
<action context="Code" dev="JM" type="fix">
|
1772
|
-
Bugfix for placement of text inside a text area when borders are present in PostScript output.
|
1773
|
-
</action>
|
1774
|
-
<action context="Code" dev="JM" type="update">
|
1775
|
-
Improvements on leader painting in PDF output.
|
1776
|
-
</action>
|
1777
|
-
<action context="Code" dev="JM" type="add">
|
1778
|
-
Support for leader painting in PostScript output.
|
1779
|
-
</action>
|
1780
|
-
<action context="Code" dev="LF, MM" type="add">
|
1781
|
-
Support for hyphenation-ladder-count.
|
1782
|
-
</action>
|
1783
|
-
</release>
|
1784
|
-
<release version="0.90alpha1" date="22 Nov 2005">
|
1785
|
-
<action context="Code" dev="all" type="update">
|
1786
|
-
<strong>Complete redesign of the FOP codebase</strong> in the period between Dec 2001 and Nov 2005.
|
1787
|
-
There are just too many changes to list here. If you like to know details, run
|
1788
|
-
<code>"svn log --verbose http://svn.apache.org/repos/asf/xmlgraphics/fop/trunk/"</code>.
|
1789
|
-
</action>
|
1790
|
-
</release>
|
1791
|
-
<release version="0.20.5" date="18 July 2003">
|
1792
|
-
<action context="Code" dev="all" type="update">
|
1793
|
-
For the change log for the maintenance branch
|
1794
|
-
(where FOP 0.20.5 came from), please see the "CHANGES" file in the distribution, or
|
1795
|
-
<link href="http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/branches/fop-0_20_2-maintain/CHANGES?view=markup">the CHANGES file in the SVN repository</link>.
|
1796
|
-
</action>
|
1797
|
-
</release>
|
1798
|
-
</changes>
|
1799
|
-
|
1800
|
-
<todo>
|
1801
|
-
<!-- See Bugzilla and http://wiki.apache.org/xmlgraphics-fop/FOPProjectTasks -->
|
1802
|
-
<actions>
|
1803
|
-
<action dev="open" type="update" context="Docs">
|
1804
|
-
Improve the documentation.
|
1805
|
-
</action>
|
1806
|
-
</actions>
|
1807
|
-
</todo>
|
1808
|
-
|
1809
|
-
</status>
|