altosdroid: Deal with AltosState changes
[fw/altos] / doc / fop.xconf
1 <?xml version="1.0"?>
2 <!-- $Id: fop.xconf 1339442 2012-05-17 01:42:56Z gadams $ -->
3
4 <!--
5
6 This is an example configuration file for FOP.
7 This file contains the same settings as the default values
8 and will have no effect if used unchanged.
9
10 Relative config url's will be resolved relative to
11 the location of this file.
12
13 -->
14
15 <!-- NOTE: This is the version of the configuration -->
16 <fop version="1.0">
17
18   <!-- Base URL for resolving relative URLs -->
19   <base>.</base>
20   
21   <!-- Source resolution in dpi (dots/pixels per inch) for determining the size of pixels in SVG and bitmap images, default: 72dpi -->
22   <source-resolution>72</source-resolution>
23   <!-- Target resolution in dpi (dots/pixels per inch) for specifying the target resolution for generated bitmaps, default: 72dpi -->
24   <target-resolution>72</target-resolution>
25   
26   <!-- Default page-height and page-width, in case
27        value is specified as auto -->
28   <default-page-settings height="11in" width="8.26in"/>
29   
30   <!-- Information for specific renderers -->
31   <!-- Uses renderer mime type for renderers -->
32   <renderers>
33     <renderer mime="application/pdf">
34       <filterList>
35         <!-- provides compression using zlib flate (default is on) -->
36         <value>flate</value>
37       </filterList>
38
39       <fonts>
40         <!-- embedded fonts -->
41         <font embed-url="fonts/OpenSans-Light.ttf">
42           <font-triplet name="Open Sans Light" style="normal"
43                         weight="normal"/>
44         </font>
45         <font embed-url="fonts/OpenSans-LightItalic.ttf">
46           <font-triplet name="Open Sans Light" style="italic"
47                         weight="normal"/>
48         </font>
49         <font embed-url="fonts/OpenSans-Semibold.ttf">
50           <font-triplet name="Open Sans Light" style="normal"
51                         weight="bold"/>
52         </font>
53         <font embed-url="fonts/OpenSans-SemiboldItalic.ttf">
54           <font-triplet name="Open Sans Light" style="italic"
55                         weight="bold"/>
56         </font>
57
58         <font embed-url="fonts/DejaVuSansMono.ttf">
59           <font-triplet name="DejaVu Sans Mono" style="normal"
60                         weight="normal"/>
61         </font>
62         <font embed-url="fonts/DejaVuSansMono-Oblique.ttf">
63           <font-triplet name="DejaVu Sans Mono" style="italic"
64                         weight="normal"/>
65         </font>
66         <font embed-url="fonts/DejaVuSansMono-Bold.ttf">
67           <font-triplet name="DejaVu Sans Mono" style="normal"
68                         weight="bold"/>
69         </font>
70         <font embed-url="fonts/DejaVuSansMono-BoldOblique.ttf">
71           <font-triplet name="DejaVu Sans Mono" style="italic"
72                         weight="bold"/>
73         </font>
74       </fonts>
75     </renderer>
76
77     <renderer mime="image/svg+xml">
78       <format type="paginated"/>
79       <link value="true"/>
80       <strokeText value="false"/>
81     </renderer>
82
83     <renderer mime="text/xml">
84     </renderer>
85
86   </renderers>
87 </fop>
88