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.

config.xml 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version="1.0" encoding="iso-8859-1"?>
  2. <!DOCTYPE configuration>
  3. <!--<!DOCTYPE configuration SYSTEM "config.dtd">-->
  4. <!-- to developers: have a look at the config.dtd to
  5. see how to structure your config entries -->
  6. <configuration>
  7. <entry>
  8. <key>version</key>
  9. <value>FOP 0.20.0 Alt-Design</value>
  10. </entry>
  11. <!-- default values for commandline options -->
  12. <!-- suppress all progress information, error message are still displayed -->
  13. <entry>
  14. <key>quiet</key>
  15. <value>false</value>
  16. </entry>
  17. <!-- sets debug mode on/off; debug mode hasm more progress
  18. information and a stacktrace in case of a fatal exception -->
  19. <entry>
  20. <key>debugMode</key>
  21. <value>false</value>
  22. </entry>
  23. <!-- displays all configuration settings and then exits -->
  24. <entry>
  25. <key>dumpConfiguration</key>
  26. <value>false</value>
  27. </entry>
  28. <!-- N.B. User config file cannot be specified here, because
  29. all user configuration is done before the system configuration is attempted.
  30. Any values already set by user configuration pre-empt system configuration
  31. values.
  32. <entry>
  33. <key>userConfigFileName</key>
  34. <value>userconfig.xml</value>
  35. </entry>
  36. -->
  37. <!-- stream-filter-list provides the default filters that are applied to all
  38. stream objects within the PDF file. These are normally used for
  39. compression -->
  40. <entry role="pdf">
  41. <key>stream-filter-list</key>
  42. <list>
  43. <!-- provides compression using zlib flate (default is on)-->
  44. <value>flate</value>
  45. <!-- encodes binary data into printable ascii characters (default off)
  46. This provides about a 4:5 expansion of data size -->
  47. <value>ascii-85</value>
  48. <!-- encodes binary data with hex representation (default off)
  49. This filter is not recommended as it doubles the data size -->
  50. <!-- <value>ascii-hex</value> -->
  51. </list>
  52. </entry>
  53. <fonts>
  54. </fonts>
  55. </configuration>