Update theme submodule
[platform/upstream/gstreamer.git] / tutorials / xcode iOS / Tutorial 5 / fonts.conf
1 <?xml version="1.0"?>
2 <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
3 <!-- /etc/fonts/fonts.conf file to configure system font access -->
4 <fontconfig>
5
6 <!-- Font directory list -->
7
8         <dir prefix="xdg"></dir>
9
10 <!-- Font cache directory list -->
11
12         <cachedir prefix="xdg"></cachedir>
13
14 <!--
15   Accept deprecated 'mono' alias, replacing it with 'monospace'
16 -->
17         <match target="pattern">
18                 <test qual="any" name="family">
19                         <string>mono</string>
20                 </test>
21                 <edit name="family" mode="assign" binding="same">
22                         <string>monospace</string>
23                 </edit>
24         </match>
25
26 <!--
27   Accept alternate 'sans serif' spelling, replacing it with 'sans-serif'
28 -->
29         <match target="pattern">
30                 <test qual="any" name="family">
31                         <string>sans serif</string>
32                 </test>
33                 <edit name="family" mode="assign" binding="same">
34                         <string>sans-serif</string>
35                 </edit>
36         </match>
37
38 <!--
39   Accept deprecated 'sans' alias, replacing it with 'sans-serif'
40 -->
41         <match target="pattern">
42                 <test qual="any" name="family">
43                         <string>sans</string>
44                 </test>
45                 <edit name="family" mode="assign" binding="same">
46                         <string>sans-serif</string>
47                 </edit>
48         </match>
49
50         <config>
51 <!--
52   These are the default Unicode chars that are expected to be blank
53   in fonts.  All other blank chars are assumed to be broken and
54   won't appear in the resulting charsets
55  -->
56                 <blank>
57                         <int>0x0020</int>       <!-- SPACE -->
58                         <int>0x00A0</int>       <!-- NO-BREAK SPACE -->
59                         <int>0x00AD</int>       <!-- SOFT HYPHEN -->
60                         <int>0x034F</int>       <!-- COMBINING GRAPHEME JOINER -->
61                         <int>0x0600</int>       <!-- ARABIC NUMBER SIGN -->
62                         <int>0x0601</int>       <!-- ARABIC SIGN SANAH -->
63                         <int>0x0602</int>       <!-- ARABIC FOOTNOTE MARKER -->
64                         <int>0x0603</int>       <!-- ARABIC SIGN SAFHA -->
65                         <int>0x06DD</int>       <!-- ARABIC END OF AYAH -->
66                         <int>0x070F</int>       <!-- SYRIAC ABBREVIATION MARK -->
67                         <int>0x115F</int>       <!-- HANGUL CHOSEONG FILLER -->
68                         <int>0x1160</int>       <!-- HANGUL JUNGSEONG FILLER -->
69                         <int>0x1680</int>       <!-- OGHAM SPACE MARK -->
70                         <int>0x17B4</int>       <!-- KHMER VOWEL INHERENT AQ -->
71                         <int>0x17B5</int>       <!-- KHMER VOWEL INHERENT AA -->
72                         <int>0x180E</int>       <!-- MONGOLIAN VOWEL SEPARATOR -->
73                         <int>0x2000</int>       <!-- EN QUAD -->
74                         <int>0x2001</int>       <!-- EM QUAD -->
75                         <int>0x2002</int>       <!-- EN SPACE -->
76                         <int>0x2003</int>       <!-- EM SPACE -->
77                         <int>0x2004</int>       <!-- THREE-PER-EM SPACE -->
78                         <int>0x2005</int>       <!-- FOUR-PER-EM SPACE -->
79                         <int>0x2006</int>       <!-- SIX-PER-EM SPACE -->
80                         <int>0x2007</int>       <!-- FIGURE SPACE -->
81                         <int>0x2008</int>       <!-- PUNCTUATION SPACE -->
82                         <int>0x2009</int>       <!-- THIN SPACE -->
83                         <int>0x200A</int>       <!-- HAIR SPACE -->
84                         <int>0x200B</int>       <!-- ZERO WIDTH SPACE -->
85                         <int>0x200C</int>       <!-- ZERO WIDTH NON-JOINER -->
86                         <int>0x200D</int>       <!-- ZERO WIDTH JOINER -->
87                         <int>0x200E</int>       <!-- LEFT-TO-RIGHT MARK -->
88                         <int>0x200F</int>       <!-- RIGHT-TO-LEFT MARK -->
89                         <int>0x2028</int>       <!-- LINE SEPARATOR -->
90                         <int>0x2029</int>       <!-- PARAGRAPH SEPARATOR -->
91                         <int>0x202A</int>       <!-- LEFT-TO-RIGHT EMBEDDING -->
92                         <int>0x202B</int>       <!-- RIGHT-TO-LEFT EMBEDDING -->
93                         <int>0x202C</int>       <!-- POP DIRECTIONAL FORMATTING -->
94                         <int>0x202D</int>       <!-- LEFT-TO-RIGHT OVERRIDE -->
95                         <int>0x202E</int>       <!-- RIGHT-TO-LEFT OVERRIDE -->
96                         <int>0x202F</int>       <!-- NARROW NO-BREAK SPACE -->
97                         <int>0x205F</int>       <!-- MEDIUM MATHEMATICAL SPACE -->
98                         <int>0x2060</int>       <!-- WORD JOINER -->
99                         <int>0x2061</int>       <!-- FUNCTION APPLICATION -->
100                         <int>0x2062</int>       <!-- INVISIBLE TIMES -->
101                         <int>0x2063</int>       <!-- INVISIBLE SEPARATOR -->
102                         <int>0x206A</int>       <!-- INHIBIT SYMMETRIC SWAPPING -->
103                         <int>0x206B</int>       <!-- ACTIVATE SYMMETRIC SWAPPING -->
104                         <int>0x206C</int>       <!-- INHIBIT ARABIC FORM SHAPING -->
105                         <int>0x206D</int>       <!-- ACTIVATE ARABIC FORM SHAPING -->
106                         <int>0x206E</int>       <!-- NATIONAL DIGIT SHAPES -->
107                         <int>0x206F</int>       <!-- NOMINAL DIGIT SHAPES -->
108                         <int>0x2800</int>       <!-- BRAILLE PATTERN BLANK -->
109                         <int>0x3000</int>       <!-- IDEOGRAPHIC SPACE -->
110                         <int>0x3164</int>       <!-- HANGUL FILLER -->
111                         <int>0xFEFF</int>       <!-- ZERO WIDTH NO-BREAK SPACE -->
112                         <int>0xFFA0</int>       <!-- HALFWIDTH HANGUL FILLER -->
113                         <int>0xFFF9</int>       <!-- INTERLINEAR ANNOTATION ANCHOR -->
114                         <int>0xFFFA</int>       <!-- INTERLINEAR ANNOTATION SEPARATOR -->
115                         <int>0xFFFB</int>       <!-- INTERLINEAR ANNOTATION TERMINATOR -->
116                 </blank>
117 <!--
118   Rescan configuration every 30 seconds when FcFontSetList is called
119  -->
120                 <rescan>
121                         <int>30</int>
122                 </rescan>
123         </config>
124
125 </fontconfig>
126