You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. $Id$
  2. ==============================================================================
  3. APACHE FOP - README
  4. ==============================================================================
  5. Contents of this file:
  6. - What is FOP?
  7. - Where to get help?
  8. - How do I build FOP?
  9. - How do I run FOP?
  10. - Release Notes
  11. ==============================================================================
  12. What is FOP?
  13. ---------------
  14. Apache FOP is the world's first print formatter driven by XSL formatting
  15. objects. It is a Java application that reads a formatting object tree
  16. conforming to the XSL 1.0 Recommendation (15 October 2001) and then turns it
  17. into a PDF document, certain other output formats or allows you to preview it
  18. directly on screen.
  19. Apache FOP is part of Apache's XML Graphics project. The homepage of Apache
  20. FOP is http://xmlgraphics.apache.org/fop/.
  21. Where to get help?
  22. ---------------------
  23. http://xmlgraphics.apache.org/fop/gethelp.html
  24. A mailing list where you can get all your questions about FOP answered is at
  25. fop-users@xmlgraphics.apache.org. You can subscribe by sending an empty mail
  26. to fop-users-subscribe@xmlgraphics.apache.org.
  27. Before you post any questions, please have a look at the FAQ at
  28. http://xmlgraphics.apache.org/fop/faq.html and FO help page at
  29. http://xmlgraphics.apache.org/fop/fo.html.
  30. Please report bugs to bugzilla at http://issues.apache.org/bugzilla/
  31. How do I build FOP?
  32. ----------------------
  33. If you've downloaded a binary distribution, you don't need to build FOP.
  34. Otherwise, please follow the instructions found here:
  35. http://xmlgraphics.apache.org/fop/0.90/compiling.html
  36. How do I run FOP?
  37. --------------------
  38. Simply by typing "fop" on the command-line. Without any parameters you
  39. will receive a screen with instruction on how to call FOP from the
  40. command-line.
  41. For more details, see: http://xmlgraphics.apache.org/fop/latest/running.html
  42. ==============================================================================
  43. RELEASE NOTES
  44. ==============================================================================
  45. Version 0.91 beta
  46. ---------------------
  47. We don't list all the changes since the 0.20.5 release, since this release
  48. represents the first after a complete redesign of the FOP codebase. This
  49. is basically a new software. But the changes since 0.90 alpha 1 can be looked
  50. up under http://xmlgraphics.apache.org/fop/changes.html.
  51. Upgrading from 0.20.5:
  52. Please read http://xmlgraphics.apache.org/fop/latest/upgrading.html
  53. The Apache FOP team asks you for your continued feedback on the new software.
  54. We're also interested in success stories with the new release. So if the
  55. latest version works fine for you, please tell us! And if it doesn't, you
  56. may tell us as well, of course. ;-)
  57. Caveats:
  58. - This release is a beta release. If you intend to use this software
  59. in a production environment, please perform careful testing.
  60. - The API is not to be considered stable, yet. Please be prepared
  61. for the API to be changed in a backwards-incompatible way.
  62. - You may experience different behaviour compared to version 0.20.5.
  63. Please consult the "Upgrading" page indicated above for details.
  64. Known issues:
  65. - PCL, MIF and SVG support have not been restored, yet.
  66. - Java2D/AWT support contains some problems, for example with
  67. block-containers.
  68. - Support for kerning has not been restored, yet.
  69. - Auto table layout is not implemented, yet.
  70. - The collapsing border model on tables is not implemented, yet. Please
  71. use border-collapse="separate" for now.
  72. - Footnotes may overlap with text of the region-body in multi-column
  73. documents.
  74. - Space resolution does not work between footnote regions.
  75. - There's a problem involving nested block-containers and
  76. reference-orientation 180/-180 (Bugzilla #36391)
  77. - block-containers with no height currently don't create a fence for
  78. spaces as they should (they behave like a normal block).
  79. - Preserved linefeeds in fo:character are not handled correctly.
  80. - Zero-width spaces are not handled correctly.
  81. - An empty block currently produces a fence for stacking constraints
  82. which it shouldn't.
  83. - There are several small problems around white space handling.
  84. - Images currently don't shrink so they fit on a page when they are
  85. too big and shrinking is allowed to happen.
  86. - Block-level content in fo:inlines may produce unwelcome results.
  87. - inline-container may not work as expected.
  88. - letter-spacing and word-spacing properties may not work as expected.
  89. - leaders with leader-pattern="use-content" may not work as expected.
  90. - keep-with-previous doesn't work inside tables and lists, yet.
  91. - White space on direct inline-level children of a marker is not
  92. handled correctly.
  93. - If two consecutive pages don't have the same available width, the
  94. content currently isn't properly fit into the available space on
  95. the new page.
  96. - background-images on page-number-citations are not placed correctly.
  97. - Not all FO elements can be referenced by their "id", most notably:
  98. table-body, table-header, table-footer and table-row.
  99. - The backgrounds of table-body, table-header, table-footer and
  100. table-column are not painted, yet.
  101. - Border and padding conditionality are not supported on table-cells, yet.
  102. - Copy/Paste from PDF content in Acrobat Reader is not supported for
  103. text using embedded TrueType fonts.
  104. - Column balancing in multi-column documents may not work as expected
  105. (Bugzilla #36356)
  106. - Omitting fo:table-column or having fo:table-column without a column-width
  107. and attempting to create columns implicitly from the first
  108. table row is not implemented, yet (Bugzilla #35656).
  109. - Leaders with the "rule" pattern don't work for PostScript output.
  110. - break-after may in some cases cause subsequent content to be swallowed.
  111. Please use break-before, if possible.