Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?xml version="1.0"?>
  2. <!--
  3. This is an example configuration file for FOP.
  4. This file contains the same settings as the default values
  5. and will have no effect if used unchanged.
  6. Relative config url's will be resolved relative to
  7. the location of this file.
  8. -->
  9. <!-- NOTE: This is the version of the configuration -->
  10. <fop version="1.0">
  11. <!-- Base URL for resolving relative URLs -->
  12. <base>.</base>
  13. <!-- Internal resolution in dpi (dots/pixels per inch), default: 72dpi -->
  14. <resolution>72</resolution>
  15. <!-- Default page-height and page-width, in case
  16. value is specified as auto -->
  17. <default-page-settings height="11in" width="8.26in"/>
  18. <!-- Information for specific renderers -->
  19. <!-- Uses renderer mime type for renderers -->
  20. <renderers>
  21. <renderer mime="application/pdf">
  22. <filterList>
  23. <!-- provides compression using zlib flate (default is on) -->
  24. <value>flate</value>
  25. <!-- encodes binary data into printable ascii characters (default off)
  26. This provides about a 4:5 expansion of data size -->
  27. <!-- <value>ascii-85</value> -->
  28. <!-- encodes binary data with hex representation (default off)
  29. This filter is not recommended as it doubles the data size -->
  30. <!-- <value>ascii-hex</value> -->
  31. </filterList>
  32. <fonts>
  33. <!-- embedded fonts -->
  34. <!--
  35. This information must exactly match the font specified
  36. in the fo file. Otherwise it will use a default font.
  37. For example,
  38. <fo:inline font-family="Arial" font-weight="bold" font-style="normal">
  39. Arial-normal-normal font
  40. </fo:inline>
  41. for the font triplet specified by:
  42. <font-triplet name="Arial" style="normal" weight="bold"/>
  43. If you do not want to embed the font in the pdf document
  44. then do not include the "embed-url" attribute.
  45. The font will be needed where the document is viewed
  46. for it to be displayed properly.
  47. possible styles: normal | italic | oblique | backslant
  48. possible weights: normal | bold | 100 | 200 | 300 | 400
  49. | 500 | 600 | 700 | 800 | 900
  50. (normal = 400, bold = 700)
  51. -->
  52. <!--
  53. <font metrics-url="arial.xml" kerning="yes" embed-url="arial.ttf">
  54. <font-triplet name="Arial" style="normal" weight="normal"/>
  55. <font-triplet name="ArialMT" style="normal" weight="normal"/>
  56. </font>
  57. <font metrics-url="arialb.xml" kerning="yes" embed-url="arialb.ttf">
  58. <font-triplet name="Arial" style="normal" weight="bold"/>
  59. <font-triplet name="ArialMT" style="normal" weight="bold"/>
  60. </font>
  61. -->
  62. </fonts>
  63. <xmlHandler mime="text/svg+xml">
  64. </xmlHandler>
  65. </renderer>
  66. <renderer mime="application/postscript">
  67. <xmlHandler mime="image/svg+xml">
  68. </xmlHandler>
  69. </renderer>
  70. <renderer mime="application/vnd.hp-PCL">
  71. </renderer>
  72. <!-- MIF does not have a renderer
  73. <renderer mime="application/vnd.mif">
  74. </renderer>
  75. -->
  76. <renderer mime="image/svg+xml">
  77. <format type="paginated"/>
  78. <link value="true"/>
  79. <strokeText value="false"/>
  80. </renderer>
  81. <renderer mime="application/awt">
  82. </renderer>
  83. <renderer mime="text/xml">
  84. </renderer>
  85. <!-- RTF does not have a renderer
  86. <renderer mime="text/rtf">
  87. </renderer>
  88. -->
  89. <renderer mime="text/plain">
  90. <pageSize columns="80"/>
  91. </renderer>
  92. </renderers>
  93. </fop>