cairo 1.10.0-x86-mingw32 → 1.10.1-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of cairo might be problematic. Click here for more details.
- data/Gemfile +14 -0
- data/NEWS +33 -0
- data/README.rdoc +115 -0
- data/Rakefile +69 -80
- data/ext/cairo/cairo.def +1 -1
- data/ext/cairo/depend +2 -0
- data/ext/cairo/extconf.rb +7 -5
- data/ext/cairo/rb_cairo.c +4 -1
- data/ext/cairo/rb_cairo.h +4 -0
- data/ext/cairo/rb_cairo_constants.c +6 -2
- data/ext/cairo/rb_cairo_context.c +3 -2
- data/ext/cairo/rb_cairo_device.c +8 -0
- data/ext/cairo/rb_cairo_font_face.c +1 -1
- data/ext/cairo/rb_cairo_surface.c +40 -0
- data/lib/1.8/cairo.so +0 -0
- data/lib/1.9/cairo.so +0 -0
- data/lib/cairo.rb +3 -3
- data/lib/cairo/color.rb +4 -4
- data/lib/cairo/context/path.rb +2 -1
- data/test/run-test.rb +1 -1
- data/test/test_context.rb +1 -1
- data/test/test_font_face.rb +1 -1
- data/test/test_recording_surface.rb +4 -1
- data/test/test_xml_surface.rb +2 -1
- data/vendor/local/bin/fc-cache.exe +0 -0
- data/vendor/local/bin/fc-cat.exe +0 -0
- data/vendor/local/bin/fc-list.exe +0 -0
- data/vendor/local/bin/freetype-config +160 -0
- data/vendor/local/bin/libcairo-2.dll +0 -0
- data/vendor/local/bin/libcairo-gobject-2.dll +0 -0
- data/vendor/local/bin/libcairo-script-interpreter-2.dll +0 -0
- data/vendor/local/bin/xmlwf.exe +0 -0
- data/vendor/local/etc/fonts/fonts.dtd +224 -0
- data/vendor/local/include/cairo/cairo-version.h +1 -1
- data/vendor/local/include/cairo/cairo.h +1 -1
- data/vendor/local/include/expat.h +1014 -0
- data/vendor/local/include/expat_external.h +115 -0
- data/vendor/local/include/fontconfig/fcfreetype.h +59 -0
- data/vendor/local/include/fontconfig/fcprivate.h +123 -0
- data/vendor/local/include/fontconfig/fontconfig.h +963 -0
- data/vendor/local/include/freetype2/freetype/config/ftconfig.h +477 -0
- data/vendor/local/include/freetype2/freetype/config/ftheader.h +780 -0
- data/vendor/local/include/freetype2/freetype/config/ftmodule.h +20 -0
- data/vendor/local/include/freetype2/freetype/config/ftoption.h +733 -0
- data/vendor/local/include/freetype2/freetype/config/ftstdlib.h +173 -0
- data/vendor/local/include/freetype2/freetype/freetype.h +3919 -0
- data/vendor/local/include/freetype2/freetype/ftadvanc.h +179 -0
- data/vendor/local/include/freetype2/freetype/ftbbox.h +94 -0
- data/vendor/local/include/freetype2/freetype/ftbdf.h +209 -0
- data/vendor/local/include/freetype2/freetype/ftbitmap.h +227 -0
- data/vendor/local/include/freetype2/freetype/ftcache.h +1125 -0
- data/vendor/local/include/freetype2/freetype/ftchapters.h +103 -0
- data/vendor/local/include/freetype2/freetype/ftcid.h +166 -0
- data/vendor/local/include/freetype2/freetype/fterrdef.h +244 -0
- data/vendor/local/include/freetype2/freetype/fterrors.h +206 -0
- data/vendor/local/include/freetype2/freetype/ftgasp.h +120 -0
- data/vendor/local/include/freetype2/freetype/ftglyph.h +613 -0
- data/vendor/local/include/freetype2/freetype/ftgxval.h +358 -0
- data/vendor/local/include/freetype2/freetype/ftgzip.h +102 -0
- data/vendor/local/include/freetype2/freetype/ftimage.h +1301 -0
- data/vendor/local/include/freetype2/freetype/ftincrem.h +353 -0
- data/vendor/local/include/freetype2/freetype/ftlcdfil.h +213 -0
- data/vendor/local/include/freetype2/freetype/ftlist.h +277 -0
- data/vendor/local/include/freetype2/freetype/ftlzw.h +99 -0
- data/vendor/local/include/freetype2/freetype/ftmac.h +274 -0
- data/vendor/local/include/freetype2/freetype/ftmm.h +378 -0
- data/vendor/local/include/freetype2/freetype/ftmodapi.h +483 -0
- data/vendor/local/include/freetype2/freetype/ftmoderr.h +155 -0
- data/vendor/local/include/freetype2/freetype/ftotval.h +203 -0
- data/vendor/local/include/freetype2/freetype/ftoutln.h +537 -0
- data/vendor/local/include/freetype2/freetype/ftpfr.h +172 -0
- data/vendor/local/include/freetype2/freetype/ftrender.h +230 -0
- data/vendor/local/include/freetype2/freetype/ftsizes.h +159 -0
- data/vendor/local/include/freetype2/freetype/ftsnames.h +200 -0
- data/vendor/local/include/freetype2/freetype/ftstroke.h +716 -0
- data/vendor/local/include/freetype2/freetype/ftsynth.h +80 -0
- data/vendor/local/include/freetype2/freetype/ftsystem.h +347 -0
- data/vendor/local/include/freetype2/freetype/fttrigon.h +350 -0
- data/vendor/local/include/freetype2/freetype/fttypes.h +588 -0
- data/vendor/local/include/freetype2/freetype/ftwinfnt.h +274 -0
- data/vendor/local/include/freetype2/freetype/ftxf86.h +83 -0
- data/vendor/local/include/freetype2/freetype/t1tables.h +504 -0
- data/vendor/local/include/freetype2/freetype/ttnameid.h +1247 -0
- data/vendor/local/include/freetype2/freetype/tttables.h +759 -0
- data/vendor/local/include/freetype2/freetype/tttags.h +107 -0
- data/vendor/local/include/freetype2/freetype/ttunpat.h +59 -0
- data/vendor/local/include/ft2build.h +61 -0
- data/vendor/local/include/libpng14/png.h +2701 -0
- data/vendor/local/include/libpng14/pngconf.h +1525 -0
- data/vendor/local/include/png.h +2701 -0
- data/vendor/local/include/pngconf.h +1525 -0
- data/vendor/local/include/zconf.h +461 -0
- data/vendor/local/include/zlib.h +1589 -0
- data/vendor/local/lib/cairo.lib +0 -0
- data/vendor/local/lib/expat.lib +0 -0
- data/vendor/local/lib/fontconfig.def +195 -0
- data/vendor/local/lib/fontconfig.lib +0 -0
- data/vendor/local/lib/freetype.def +186 -0
- data/vendor/local/lib/freetype.lib +0 -0
- data/vendor/local/lib/libcairo-gobject.dll.a +0 -0
- data/vendor/local/lib/libcairo-script-interpreter.dll.a +0 -0
- data/vendor/local/lib/libcairo.dll.a +0 -0
- data/vendor/local/lib/libexpat.def +73 -0
- data/vendor/local/lib/libexpat.dll.a +0 -0
- data/vendor/local/lib/libfontconfig.dll.a +0 -0
- data/vendor/local/lib/libfreetype.dll.a +0 -0
- data/vendor/local/lib/libpng.def +192 -0
- data/vendor/local/lib/libpng.lib +0 -0
- data/vendor/local/lib/libpng14.dll.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/cairo-fc.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-ft.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-gobject.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-pdf.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-png.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-ps.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-svg.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-win32.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo.pc +2 -2
- data/vendor/local/lib/pkgconfig/fontconfig.pc +11 -0
- data/vendor/local/lib/pkgconfig/freetype2.pc +12 -0
- data/vendor/local/lib/pkgconfig/libpng.pc +11 -0
- data/vendor/local/lib/pkgconfig/libpng14.pc +11 -0
- data/vendor/local/lib/zdll.lib +0 -0
- data/vendor/local/lib/zlib.def +67 -0
- data/vendor/local/man/man1/xmlwf.1 +251 -0
- data/vendor/local/manifest/{cairo-dev_1.10.0-1_win32.mft → cairo-dev_1.10.2-1_win32.mft} +6 -3
- data/vendor/local/manifest/cairo_1.10.2-1_win32.mft +7 -0
- data/vendor/local/manifest/expat-dev_2.0.1-1_win32.mft +10 -0
- data/vendor/local/manifest/fontconfig-dev_2.8.0-2_win32.mft +387 -0
- data/vendor/local/manifest/freetype-dev_2.4.2-1_win32.mft +56 -0
- data/vendor/local/manifest/libpng-dev_1.4.3-1_win32.mft +15 -0
- data/vendor/local/manifest/zlib-dev_1.2.5-2_win32.mft +8 -0
- data/vendor/local/share/aclocal/freetype2.m4 +194 -0
- data/vendor/local/share/doc/{cairo_1.10.0-1_win32 → cairo_1.10.2-1_win32}/COPYING +0 -0
- data/vendor/local/share/doc/{cairo_1.10.0-1_win32 → cairo_1.10.2-1_win32}/COPYING-LGPL-2.1 +0 -0
- data/vendor/local/share/doc/{cairo_1.10.0-1_win32 → cairo_1.10.2-1_win32}/COPYING-MPL-1.1 +0 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel.pdf +42484 -4
- data/vendor/local/share/doc/fontconfig/fontconfig-devel.txt +5046 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomiccreate.html +224 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicdeletenew.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicdestroy.html +210 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomiclock.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicnewfile.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicorigfile.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicreplaceorig.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicunlock.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblanksadd.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblankscreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblanksdestroy.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblanksismember.html +211 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachecopyset.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachedir.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachenumfont.html +211 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachenumsubdir.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachesubdir.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetaddchar.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcopy.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcount.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcoverage.html +249 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcreate.html +220 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetdestroy.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetequal.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetfirstpage.html +238 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsethaschar.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetintersect.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetintersectcount.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetissubset.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetmerge.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetnew.html +208 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetnextpage.html +243 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetsubtract.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetsubtractcount.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetunion.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigappfontadddir.html +229 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigappfontaddfile.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigappfontclear.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigbuildfonts.html +224 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigcreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigdestroy.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigenablehome.html +230 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigfilename.html +237 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetblanks.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetcache.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetcachedirs.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetconfigdirs.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetconfigfiles.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetcurrent.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetfontdirs.html +229 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetfonts.html +234 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetrescaninterval.html +230 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfighome.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigparseandload.html +220 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigreference.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsetcurrent.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsetrescaninterval.html +229 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsubstitute.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsubstitutewithpat.html +251 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiguptodate.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdefaultsubstitute.html +234 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheload.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheloadfile.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheread.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheunlink.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheunload.html +211 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircachevalid.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdirsave.html +245 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdirscan.html +266 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfileisdir.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfilescan.html +276 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfini.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontlist.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontmatch.html +262 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontrenderprepare.html +259 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetadd.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetcreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetdestroy.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetlist.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetmatch.html +273 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetprint.html +224 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetsort.html +303 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetsortdestroy.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsort.html +289 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypecharindex.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypecharset.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypecharsetandspacing.html +241 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypequery.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypequeryface.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcgetlangs.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcgetversion.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinit.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitbringuptodate.html +208 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitloadconfig.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitloadconfigandfonts.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitreinitialize.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcislower.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcisupper.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclanggetcharset.html +205 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetadd.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcompare.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcontains.html +259 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcopy.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcreate.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetdestroy.html +220 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetequal.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetgetlangs.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsethash.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsethaslang.html +255 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixcopy.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixequal.html +236 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixinit.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixmultiply.html +246 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixrotate.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixscale.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixshear.html +250 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameconstant.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnamegetconstant.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnamegetobjecttype.html +210 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameparse.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameregisterconstants.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameregisterobjecttypes.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameunparse.html +218 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameunregisterconstants.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameunregisterobjecttypes.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetadd.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetbuild.html +262 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetcreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetdestroy.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternadd-type.html +404 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternadd.html +240 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternaddweak.html +242 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternbuild.html +313 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatterncreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatterndel.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatterndestroy.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternduplicate.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternequal.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternequalsubset.html +242 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternfilter.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternformat.html +602 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternget-type.html +435 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternget.html +249 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternhash.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternprint.html +218 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternreference.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternremove.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrbasename.html +212 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcmp.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcmpignorecase.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcopy.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcopyfilename.html +234 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrdirname.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrdowncase.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrfree.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrlistcreate.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrlistdone.html +210 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrlistnext.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrplus.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetadd.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetaddfilename.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetcreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetdel.html +237 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetdestroy.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetequal.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetmember.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrstr.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrstrignorecase.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fctolower.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcucs4toutf8.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf16len.html +278 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf16toucs4.html +265 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf8len.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf8toucs4.html +249 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvaluedestroy.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvalueequal.html +212 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvalueprint.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvaluesave.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/ln12.html +128 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/t1.html +133 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/x102.html +1463 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/x19.html +264 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/x31.html +590 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-user.html +1352 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-user.pdf +0 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-user.txt +644 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +11 -28
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +10 -26
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +42 -99
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +22 -47
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +1 -2
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +5 -15
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html +201 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +5 -15
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +43 -113
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +1 -2
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +3 -4
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +21 -48
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +8 -26
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +61 -148
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +19 -45
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +15 -39
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +3 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp +6 -2
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +6 -2
- data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +9 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-all.html +6 -0
- data/vendor/local/share/gtk-doc/html/cairo/index.html +4 -1
- data/vendor/local/share/gtk-doc/html/cairo/index.sgml +8 -0
- data/vendor/local/share/man/man1/fc-cache.1 +70 -0
- data/vendor/local/share/man/man1/fc-cat.1 +44 -0
- data/vendor/local/share/man/man1/fc-list.1 +72 -0
- data/vendor/local/share/man/man1/fc-match.1 +73 -0
- data/vendor/local/share/man/man1/fc-query.1 +57 -0
- data/vendor/local/share/man/man1/fc-scan.1 +52 -0
- data/vendor/local/share/man/man3/FcAtomicCreate.3 +19 -0
- data/vendor/local/share/man/man3/FcAtomicDeleteNew.3 +16 -0
- data/vendor/local/share/man/man3/FcAtomicDestroy.3 +16 -0
- data/vendor/local/share/man/man3/FcAtomicLock.3 +18 -0
- data/vendor/local/share/man/man3/FcAtomicNewFile.3 +17 -0
- data/vendor/local/share/man/man3/FcAtomicOrigFile.3 +16 -0
- data/vendor/local/share/man/man3/FcAtomicReplaceOrig.3 +18 -0
- data/vendor/local/share/man/man3/FcAtomicUnlock.3 +16 -0
- data/vendor/local/share/man/man3/FcBlanksAdd.3 +18 -0
- data/vendor/local/share/man/man3/FcBlanksCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcBlanksDestroy.3 +16 -0
- data/vendor/local/share/man/man3/FcBlanksIsMember.3 +18 -0
- data/vendor/local/share/man/man3/FcCacheCopySet.3 +18 -0
- data/vendor/local/share/man/man3/FcCacheDir.3 +16 -0
- data/vendor/local/share/man/man3/FcCacheNumFont.3 +17 -0
- data/vendor/local/share/man/man3/FcCacheNumSubdir.3 +16 -0
- data/vendor/local/share/man/man3/FcCacheSubdir.3 +20 -0
- data/vendor/local/share/man/man3/FcCharSetAddChar.3 +19 -0
- data/vendor/local/share/man/man3/FcCharSetCopy.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetCount.3 +16 -0
- data/vendor/local/share/man/man3/FcCharSetCoverage.3 +23 -0
- data/vendor/local/share/man/man3/FcCharSetCreate.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetDestroy.3 +18 -0
- data/vendor/local/share/man/man3/FcCharSetEqual.3 +18 -0
- data/vendor/local/share/man/man3/FcCharSetFirstPage.3 +20 -0
- data/vendor/local/share/man/man3/FcCharSetHasChar.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetIntersect.3 +18 -0
- data/vendor/local/share/man/man3/FcCharSetIntersectCount.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetIsSubset.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetMerge.3 +23 -0
- data/vendor/local/share/man/man3/FcCharSetNew.3 +16 -0
- data/vendor/local/share/man/man3/FcCharSetNextPage.3 +20 -0
- data/vendor/local/share/man/man3/FcCharSetSubtract.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetSubtractCount.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetUnion.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigAppFontAddDir.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigAppFontAddFile.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigAppFontClear.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigBuildFonts.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcConfigDestroy.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigEnableHome.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigFilename.3 +26 -0
- data/vendor/local/share/man/man3/FcConfigGetBlanks.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigGetCache.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigGetCacheDirs.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigGetConfigDirs.3 +18 -0
- data/vendor/local/share/man/man3/FcConfigGetConfigFiles.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigGetCurrent.3 +16 -0
- data/vendor/local/share/man/man3/FcConfigGetFontDirs.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigGetFonts.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigGetRescanInterval.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigHome.3 +18 -0
- data/vendor/local/share/man/man3/FcConfigParseAndLoad.3 +23 -0
- data/vendor/local/share/man/man3/FcConfigReference.3 +21 -0
- data/vendor/local/share/man/man3/FcConfigSetCurrent.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigSetRescanInterval.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigSubstitute.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigSubstituteWithPat.3 +24 -0
- data/vendor/local/share/man/man3/FcConfigUptoDate.3 +18 -0
- data/vendor/local/share/man/man3/FcDefaultSubstitute.3 +27 -0
- data/vendor/local/share/man/man3/FcDirCacheLoad.3 +21 -0
- data/vendor/local/share/man/man3/FcDirCacheLoadFile.3 +19 -0
- data/vendor/local/share/man/man3/FcDirCacheRead.3 +21 -0
- data/vendor/local/share/man/man3/FcDirCacheUnlink.3 +20 -0
- data/vendor/local/share/man/man3/FcDirCacheUnload.3 +17 -0
- data/vendor/local/share/man/man3/FcDirCacheValid.3 +17 -0
- data/vendor/local/share/man/man3/FcDirSave.3 +22 -0
- data/vendor/local/share/man/man3/FcDirScan.3 +26 -0
- data/vendor/local/share/man/man3/FcFileIsDir.3 +17 -0
- data/vendor/local/share/man/man3/FcFileScan.3 +31 -0
- data/vendor/local/share/man/man3/FcFini.3 +19 -0
- data/vendor/local/share/man/man3/FcFontList.3 +21 -0
- data/vendor/local/share/man/man3/FcFontMatch.3 +25 -0
- data/vendor/local/share/man/man3/FcFontRenderPrepare.3 +21 -0
- data/vendor/local/share/man/man3/FcFontSetAdd.3 +19 -0
- data/vendor/local/share/man/man3/FcFontSetCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcFontSetDestroy.3 +17 -0
- data/vendor/local/share/man/man3/FcFontSetList.3 +25 -0
- data/vendor/local/share/man/man3/FcFontSetMatch.3 +28 -0
- data/vendor/local/share/man/man3/FcFontSetPrint.3 +19 -0
- data/vendor/local/share/man/man3/FcFontSetSort.3 +39 -0
- data/vendor/local/share/man/man3/FcFontSetSortDestroy.3 +19 -0
- data/vendor/local/share/man/man3/FcFontSort.3 +33 -0
- data/vendor/local/share/man/man3/FcFreeTypeCharIndex.3 +22 -0
- data/vendor/local/share/man/man3/FcFreeTypeCharSet.3 +21 -0
- data/vendor/local/share/man/man3/FcFreeTypeCharSetAndSpacing.3 +28 -0
- data/vendor/local/share/man/man3/FcFreeTypeQuery.3 +21 -0
- data/vendor/local/share/man/man3/FcFreeTypeQueryFace.3 +21 -0
- data/vendor/local/share/man/man3/FcGetLangs.3 +16 -0
- data/vendor/local/share/man/man3/FcGetVersion.3 +16 -0
- data/vendor/local/share/man/man3/FcInit.3 +19 -0
- data/vendor/local/share/man/man3/FcInitBringUptoDate.3 +19 -0
- data/vendor/local/share/man/man3/FcInitLoadConfig.3 +17 -0
- data/vendor/local/share/man/man3/FcInitLoadConfigAndFonts.3 +17 -0
- data/vendor/local/share/man/man3/FcInitReinitialize.3 +19 -0
- data/vendor/local/share/man/man3/FcIsLower.3 +17 -0
- data/vendor/local/share/man/man3/FcIsUpper.3 +17 -0
- data/vendor/local/share/man/man3/FcLangGetCharSet.3 +16 -0
- data/vendor/local/share/man/man3/FcLangSetAdd.3 +20 -0
- data/vendor/local/share/man/man3/FcLangSetCompare.3 +22 -0
- data/vendor/local/share/man/man3/FcLangSetContains.3 +22 -0
- data/vendor/local/share/man/man3/FcLangSetCopy.3 +17 -0
- data/vendor/local/share/man/man3/FcLangSetCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcLangSetDestroy.3 +17 -0
- data/vendor/local/share/man/man3/FcLangSetEqual.3 +18 -0
- data/vendor/local/share/man/man3/FcLangSetGetLangs.3 +16 -0
- data/vendor/local/share/man/man3/FcLangSetHasLang.3 +23 -0
- data/vendor/local/share/man/man3/FcLangSetHash.3 +20 -0
- data/vendor/local/share/man/man3/FcMatrixCopy.3 +17 -0
- data/vendor/local/share/man/man3/FcMatrixEqual.3 +19 -0
- data/vendor/local/share/man/man3/FcMatrixInit.3 +17 -0
- data/vendor/local/share/man/man3/FcMatrixMultiply.3 +20 -0
- data/vendor/local/share/man/man3/FcMatrixRotate.3 +27 -0
- data/vendor/local/share/man/man3/FcMatrixScale.3 +27 -0
- data/vendor/local/share/man/man3/FcMatrixShear.3 +27 -0
- data/vendor/local/share/man/man3/FcNameConstant.3 +18 -0
- data/vendor/local/share/man/man3/FcNameGetConstant.3 +16 -0
- data/vendor/local/share/man/man3/FcNameGetObjectType.3 +16 -0
- data/vendor/local/share/man/man3/FcNameParse.3 +16 -0
- data/vendor/local/share/man/man3/FcNameRegisterConstants.3 +19 -0
- data/vendor/local/share/man/man3/FcNameRegisterObjectTypes.3 +19 -0
- data/vendor/local/share/man/man3/FcNameUnparse.3 +18 -0
- data/vendor/local/share/man/man3/FcNameUnregisterConstants.3 +19 -0
- data/vendor/local/share/man/man3/FcNameUnregisterObjectTypes.3 +17 -0
- data/vendor/local/share/man/man3/FcObjectSetAdd.3 +18 -0
- data/vendor/local/share/man/man3/FcObjectSetBuild.3 +26 -0
- data/vendor/local/share/man/man3/FcObjectSetCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcObjectSetDestroy.3 +16 -0
- data/vendor/local/share/man/man3/FcPatternAdd-Type.3 +49 -0
- data/vendor/local/share/man/man3/FcPatternAdd.3 +23 -0
- data/vendor/local/share/man/man3/FcPatternAddWeak.3 +20 -0
- data/vendor/local/share/man/man3/FcPatternBuild.3 +50 -0
- data/vendor/local/share/man/man3/FcPatternCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcPatternDel.3 +18 -0
- data/vendor/local/share/man/man3/FcPatternDestroy.3 +17 -0
- data/vendor/local/share/man/man3/FcPatternDuplicate.3 +18 -0
- data/vendor/local/share/man/man3/FcPatternEqual.3 +17 -0
- data/vendor/local/share/man/man3/FcPatternEqualSubset.3 +19 -0
- data/vendor/local/share/man/man3/FcPatternFilter.3 +20 -0
- data/vendor/local/share/man/man3/FcPatternFormat.3 +205 -0
- data/vendor/local/share/man/man3/FcPatternGet-Type.3 +56 -0
- data/vendor/local/share/man/man3/FcPatternGet.3 +22 -0
- data/vendor/local/share/man/man3/FcPatternHash.3 +17 -0
- data/vendor/local/share/man/man3/FcPatternPrint.3 +18 -0
- data/vendor/local/share/man/man3/FcPatternReference.3 +17 -0
- data/vendor/local/share/man/man3/FcPatternRemove.3 +19 -0
- data/vendor/local/share/man/man3/FcStrBasename.3 +18 -0
- data/vendor/local/share/man/man3/FcStrCmp.3 +18 -0
- data/vendor/local/share/man/man3/FcStrCmpIgnoreCase.3 +19 -0
- data/vendor/local/share/man/man3/FcStrCopy.3 +18 -0
- data/vendor/local/share/man/man3/FcStrCopyFilename.3 +23 -0
- data/vendor/local/share/man/man3/FcStrDirname.3 +18 -0
- data/vendor/local/share/man/man3/FcStrDowncase.3 +17 -0
- data/vendor/local/share/man/man3/FcStrFree.3 +17 -0
- data/vendor/local/share/man/man3/FcStrListCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcStrListDone.3 +16 -0
- data/vendor/local/share/man/man3/FcStrListNext.3 +16 -0
- data/vendor/local/share/man/man3/FcStrPlus.3 +19 -0
- data/vendor/local/share/man/man3/FcStrSetAdd.3 +17 -0
- data/vendor/local/share/man/man3/FcStrSetAddFilename.3 +19 -0
- data/vendor/local/share/man/man3/FcStrSetCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcStrSetDel.3 +18 -0
- data/vendor/local/share/man/man3/FcStrSetDestroy.3 +16 -0
- data/vendor/local/share/man/man3/FcStrSetEqual.3 +19 -0
- data/vendor/local/share/man/man3/FcStrSetMember.3 +18 -0
- data/vendor/local/share/man/man3/FcStrStr.3 +20 -0
- data/vendor/local/share/man/man3/FcStrStrIgnoreCase.3 +20 -0
- data/vendor/local/share/man/man3/FcToLower.3 +17 -0
- data/vendor/local/share/man/man3/FcUcs4ToUtf8.3 +19 -0
- data/vendor/local/share/man/man3/FcUtf16Len.3 +27 -0
- data/vendor/local/share/man/man3/FcUtf16ToUcs4.3 +23 -0
- data/vendor/local/share/man/man3/FcUtf8Len.3 +24 -0
- data/vendor/local/share/man/man3/FcUtf8ToUcs4.3 +21 -0
- data/vendor/local/share/man/man3/FcValueDestroy.3 +17 -0
- data/vendor/local/share/man/man3/FcValueEqual.3 +19 -0
- data/vendor/local/share/man/man3/FcValuePrint.3 +18 -0
- data/vendor/local/share/man/man3/FcValueSave.3 +17 -0
- data/vendor/local/share/man/man3/libpng.3 +4455 -0
- data/vendor/local/share/man/man3/libpngpf.3 +808 -0
- data/vendor/local/share/man/man5/fonts-conf.5 +644 -0
- data/vendor/local/share/man/man5/png.5 +74 -0
- data/vendor/local/src/tml/packaging/{cairo_1.10.0-1_win32.log → cairo_1.10.2-1_win32.log} +242 -235
- data/vendor/local/src/tml/packaging/{cairo_1.10.0-1_win32.sh → cairo_1.10.2-1_win32.sh} +11 -3
- data/vendor/local/src/tml/packaging/expat_2.0.1-1_win32.log +188 -0
- data/vendor/local/src/tml/packaging/expat_2.0.1-1_win32.sh +68 -0
- data/vendor/local/src/tml/packaging/fontconfig_2.8.0-2_win32.log +999 -0
- data/vendor/local/src/tml/packaging/fontconfig_2.8.0-2_win32.sh +79 -0
- data/vendor/local/src/tml/packaging/freetype_2.4.2-1_win32.log +364 -0
- data/vendor/local/src/tml/packaging/freetype_2.4.2-1_win32.sh +93 -0
- data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.log +272 -0
- data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.sh +71 -0
- data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.log +42 -0
- data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.sh +189 -0
- metadata +586 -122
- data/extconf.rb +0 -45
- data/misc/update-colors.rb +0 -143
- data/samples/agg/README +0 -4
- data/tmp/i386-mingw32/cairo/1.8.7/fake.rb +0 -6
- data/tmp/i386-mingw32/cairo/1.8.7/mkmf.rb +0 -1836
- data/tmp/i386-mingw32/cairo/1.8.7/rbconfig.rb +0 -183
- data/tmp/i386-mingw32/cairo/1.9.2/fake.rb +0 -6
- data/tmp/i386-mingw32/cairo/1.9.2/mkmf.rb +0 -2079
- data/tmp/i386-mingw32/cairo/1.9.2/rbconfig.rb +0 -226
- data/vendor/local/manifest/cairo_1.10.0-1_win32.mft +0 -5
@@ -0,0 +1,244 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
2
|
+
<HTML
|
3
|
+
><HEAD
|
4
|
+
><TITLE
|
5
|
+
>FcPatternFilter</TITLE
|
6
|
+
><META
|
7
|
+
NAME="GENERATOR"
|
8
|
+
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
|
9
|
+
REL="HOME"
|
10
|
+
HREF="t1.html"><LINK
|
11
|
+
REL="UP"
|
12
|
+
TITLE="FcPattern"
|
13
|
+
HREF="x102.html#AEN255"><LINK
|
14
|
+
REL="PREVIOUS"
|
15
|
+
TITLE="FcPatternEqualSubset"
|
16
|
+
HREF="fcpatternequalsubset.html"><LINK
|
17
|
+
REL="NEXT"
|
18
|
+
TITLE="FcPatternHash"
|
19
|
+
HREF="fcpatternhash.html"></HEAD
|
20
|
+
><BODY
|
21
|
+
CLASS="REFENTRY"
|
22
|
+
BGCOLOR="#FFFFFF"
|
23
|
+
TEXT="#000000"
|
24
|
+
LINK="#0000FF"
|
25
|
+
VLINK="#840084"
|
26
|
+
ALINK="#0000FF"
|
27
|
+
><DIV
|
28
|
+
CLASS="NAVHEADER"
|
29
|
+
><TABLE
|
30
|
+
SUMMARY="Header navigation table"
|
31
|
+
WIDTH="100%"
|
32
|
+
BORDER="0"
|
33
|
+
CELLPADDING="0"
|
34
|
+
CELLSPACING="0"
|
35
|
+
><TR
|
36
|
+
><TH
|
37
|
+
COLSPAN="3"
|
38
|
+
ALIGN="center"
|
39
|
+
></TH
|
40
|
+
></TR
|
41
|
+
><TR
|
42
|
+
><TD
|
43
|
+
WIDTH="10%"
|
44
|
+
ALIGN="left"
|
45
|
+
VALIGN="bottom"
|
46
|
+
><A
|
47
|
+
HREF="fcpatternequalsubset.html"
|
48
|
+
ACCESSKEY="P"
|
49
|
+
><<< Previous</A
|
50
|
+
></TD
|
51
|
+
><TD
|
52
|
+
WIDTH="80%"
|
53
|
+
ALIGN="center"
|
54
|
+
VALIGN="bottom"
|
55
|
+
></TD
|
56
|
+
><TD
|
57
|
+
WIDTH="10%"
|
58
|
+
ALIGN="right"
|
59
|
+
VALIGN="bottom"
|
60
|
+
><A
|
61
|
+
HREF="fcpatternhash.html"
|
62
|
+
ACCESSKEY="N"
|
63
|
+
>Next >>></A
|
64
|
+
></TD
|
65
|
+
></TR
|
66
|
+
></TABLE
|
67
|
+
><HR
|
68
|
+
ALIGN="LEFT"
|
69
|
+
WIDTH="100%"></DIV
|
70
|
+
><H1
|
71
|
+
><A
|
72
|
+
NAME="FCPATTERNFILTER"
|
73
|
+
></A
|
74
|
+
>FcPatternFilter</H1
|
75
|
+
><DIV
|
76
|
+
CLASS="REFNAMEDIV"
|
77
|
+
><A
|
78
|
+
NAME="AEN401"
|
79
|
+
></A
|
80
|
+
><H2
|
81
|
+
>Name</H2
|
82
|
+
>FcPatternFilter -- Filter the objects of pattern</DIV
|
83
|
+
><DIV
|
84
|
+
CLASS="REFSYNOPSISDIV"
|
85
|
+
><A
|
86
|
+
NAME="AEN404"
|
87
|
+
></A
|
88
|
+
><H2
|
89
|
+
>Synopsis</H2
|
90
|
+
><DIV
|
91
|
+
CLASS="FUNCSYNOPSIS"
|
92
|
+
><P
|
93
|
+
></P
|
94
|
+
><A
|
95
|
+
NAME="AEN405"
|
96
|
+
></A
|
97
|
+
><TABLE
|
98
|
+
BORDER="0"
|
99
|
+
BGCOLOR="#E0E0E0"
|
100
|
+
WIDTH="100%"
|
101
|
+
><TR
|
102
|
+
><TD
|
103
|
+
><PRE
|
104
|
+
CLASS="FUNCSYNOPSISINFO"
|
105
|
+
>#include <fontconfig.h>
|
106
|
+
</PRE
|
107
|
+
></TD
|
108
|
+
></TR
|
109
|
+
></TABLE
|
110
|
+
><P
|
111
|
+
><CODE
|
112
|
+
><CODE
|
113
|
+
CLASS="FUNCDEF"
|
114
|
+
>FcPattern * <TT
|
115
|
+
CLASS="FUNCTION"
|
116
|
+
>FcPatternFilter</TT
|
117
|
+
></CODE
|
118
|
+
>(FcPattern *<TT
|
119
|
+
CLASS="PARAMETER"
|
120
|
+
><I
|
121
|
+
>p</I
|
122
|
+
></TT
|
123
|
+
>, const FcObjectSet *<TT
|
124
|
+
CLASS="PARAMETER"
|
125
|
+
><I
|
126
|
+
></I
|
127
|
+
></TT
|
128
|
+
>);</CODE
|
129
|
+
></P
|
130
|
+
><P
|
131
|
+
></P
|
132
|
+
></DIV
|
133
|
+
></DIV
|
134
|
+
><DIV
|
135
|
+
CLASS="REFSECT1"
|
136
|
+
><A
|
137
|
+
NAME="AEN414"
|
138
|
+
></A
|
139
|
+
><H2
|
140
|
+
>Description</H2
|
141
|
+
><P
|
142
|
+
>Returns a new pattern that only has those objects from
|
143
|
+
<TT
|
144
|
+
CLASS="PARAMETER"
|
145
|
+
><I
|
146
|
+
>p</I
|
147
|
+
></TT
|
148
|
+
> that are in <TT
|
149
|
+
CLASS="PARAMETER"
|
150
|
+
><I
|
151
|
+
>os</I
|
152
|
+
></TT
|
153
|
+
>.
|
154
|
+
If <TT
|
155
|
+
CLASS="PARAMETER"
|
156
|
+
><I
|
157
|
+
>os</I
|
158
|
+
></TT
|
159
|
+
> is NULL, a duplicate of
|
160
|
+
<TT
|
161
|
+
CLASS="PARAMETER"
|
162
|
+
><I
|
163
|
+
>p</I
|
164
|
+
></TT
|
165
|
+
> is returned.
|
166
|
+
</P
|
167
|
+
></DIV
|
168
|
+
><DIV
|
169
|
+
CLASS="REFSECT1"
|
170
|
+
><A
|
171
|
+
NAME="AEN421"
|
172
|
+
></A
|
173
|
+
><H2
|
174
|
+
>Version</H2
|
175
|
+
><P
|
176
|
+
>Fontconfig version 2.8.0
|
177
|
+
|
178
|
+
</P
|
179
|
+
></DIV
|
180
|
+
><DIV
|
181
|
+
CLASS="NAVFOOTER"
|
182
|
+
><HR
|
183
|
+
ALIGN="LEFT"
|
184
|
+
WIDTH="100%"><TABLE
|
185
|
+
SUMMARY="Footer navigation table"
|
186
|
+
WIDTH="100%"
|
187
|
+
BORDER="0"
|
188
|
+
CELLPADDING="0"
|
189
|
+
CELLSPACING="0"
|
190
|
+
><TR
|
191
|
+
><TD
|
192
|
+
WIDTH="33%"
|
193
|
+
ALIGN="left"
|
194
|
+
VALIGN="top"
|
195
|
+
><A
|
196
|
+
HREF="fcpatternequalsubset.html"
|
197
|
+
ACCESSKEY="P"
|
198
|
+
><<< Previous</A
|
199
|
+
></TD
|
200
|
+
><TD
|
201
|
+
WIDTH="34%"
|
202
|
+
ALIGN="center"
|
203
|
+
VALIGN="top"
|
204
|
+
><A
|
205
|
+
HREF="t1.html"
|
206
|
+
ACCESSKEY="H"
|
207
|
+
>Home</A
|
208
|
+
></TD
|
209
|
+
><TD
|
210
|
+
WIDTH="33%"
|
211
|
+
ALIGN="right"
|
212
|
+
VALIGN="top"
|
213
|
+
><A
|
214
|
+
HREF="fcpatternhash.html"
|
215
|
+
ACCESSKEY="N"
|
216
|
+
>Next >>></A
|
217
|
+
></TD
|
218
|
+
></TR
|
219
|
+
><TR
|
220
|
+
><TD
|
221
|
+
WIDTH="33%"
|
222
|
+
ALIGN="left"
|
223
|
+
VALIGN="top"
|
224
|
+
>FcPatternEqualSubset</TD
|
225
|
+
><TD
|
226
|
+
WIDTH="34%"
|
227
|
+
ALIGN="center"
|
228
|
+
VALIGN="top"
|
229
|
+
><A
|
230
|
+
HREF="x102.html#AEN255"
|
231
|
+
ACCESSKEY="U"
|
232
|
+
>Up</A
|
233
|
+
></TD
|
234
|
+
><TD
|
235
|
+
WIDTH="33%"
|
236
|
+
ALIGN="right"
|
237
|
+
VALIGN="top"
|
238
|
+
>FcPatternHash</TD
|
239
|
+
></TR
|
240
|
+
></TABLE
|
241
|
+
></DIV
|
242
|
+
></BODY
|
243
|
+
></HTML
|
244
|
+
>
|
@@ -0,0 +1,602 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
2
|
+
<HTML
|
3
|
+
><HEAD
|
4
|
+
><TITLE
|
5
|
+
>FcPatternFormat</TITLE
|
6
|
+
><META
|
7
|
+
NAME="GENERATOR"
|
8
|
+
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
|
9
|
+
REL="HOME"
|
10
|
+
HREF="t1.html"><LINK
|
11
|
+
REL="UP"
|
12
|
+
TITLE="FcPattern"
|
13
|
+
HREF="x102.html#AEN255"><LINK
|
14
|
+
REL="PREVIOUS"
|
15
|
+
TITLE="FcNameUnparse"
|
16
|
+
HREF="fcnameunparse.html"></HEAD
|
17
|
+
><BODY
|
18
|
+
CLASS="REFENTRY"
|
19
|
+
BGCOLOR="#FFFFFF"
|
20
|
+
TEXT="#000000"
|
21
|
+
LINK="#0000FF"
|
22
|
+
VLINK="#840084"
|
23
|
+
ALINK="#0000FF"
|
24
|
+
><DIV
|
25
|
+
CLASS="NAVHEADER"
|
26
|
+
><TABLE
|
27
|
+
SUMMARY="Header navigation table"
|
28
|
+
WIDTH="100%"
|
29
|
+
BORDER="0"
|
30
|
+
CELLPADDING="0"
|
31
|
+
CELLSPACING="0"
|
32
|
+
><TR
|
33
|
+
><TH
|
34
|
+
COLSPAN="3"
|
35
|
+
ALIGN="center"
|
36
|
+
></TH
|
37
|
+
></TR
|
38
|
+
><TR
|
39
|
+
><TD
|
40
|
+
WIDTH="10%"
|
41
|
+
ALIGN="left"
|
42
|
+
VALIGN="bottom"
|
43
|
+
><A
|
44
|
+
HREF="fcnameunparse.html"
|
45
|
+
ACCESSKEY="P"
|
46
|
+
><<< Previous</A
|
47
|
+
></TD
|
48
|
+
><TD
|
49
|
+
WIDTH="80%"
|
50
|
+
ALIGN="center"
|
51
|
+
VALIGN="bottom"
|
52
|
+
></TD
|
53
|
+
><TD
|
54
|
+
WIDTH="10%"
|
55
|
+
ALIGN="right"
|
56
|
+
VALIGN="bottom"
|
57
|
+
> </TD
|
58
|
+
></TR
|
59
|
+
></TABLE
|
60
|
+
><HR
|
61
|
+
ALIGN="LEFT"
|
62
|
+
WIDTH="100%"></DIV
|
63
|
+
><H1
|
64
|
+
><A
|
65
|
+
NAME="FCPATTERNFORMAT"
|
66
|
+
></A
|
67
|
+
>FcPatternFormat</H1
|
68
|
+
><DIV
|
69
|
+
CLASS="REFNAMEDIV"
|
70
|
+
><A
|
71
|
+
NAME="AEN930"
|
72
|
+
></A
|
73
|
+
><H2
|
74
|
+
>Name</H2
|
75
|
+
>FcPatternFormat -- Format a pattern into a string according to a format specifier</DIV
|
76
|
+
><DIV
|
77
|
+
CLASS="REFSYNOPSISDIV"
|
78
|
+
><A
|
79
|
+
NAME="AEN933"
|
80
|
+
></A
|
81
|
+
><H2
|
82
|
+
>Synopsis</H2
|
83
|
+
><DIV
|
84
|
+
CLASS="FUNCSYNOPSIS"
|
85
|
+
><P
|
86
|
+
></P
|
87
|
+
><A
|
88
|
+
NAME="AEN934"
|
89
|
+
></A
|
90
|
+
><TABLE
|
91
|
+
BORDER="0"
|
92
|
+
BGCOLOR="#E0E0E0"
|
93
|
+
WIDTH="100%"
|
94
|
+
><TR
|
95
|
+
><TD
|
96
|
+
><PRE
|
97
|
+
CLASS="FUNCSYNOPSISINFO"
|
98
|
+
>#include <fontconfig.h>
|
99
|
+
</PRE
|
100
|
+
></TD
|
101
|
+
></TR
|
102
|
+
></TABLE
|
103
|
+
><P
|
104
|
+
><CODE
|
105
|
+
><CODE
|
106
|
+
CLASS="FUNCDEF"
|
107
|
+
>FcChar8 * <TT
|
108
|
+
CLASS="FUNCTION"
|
109
|
+
>FcPatternFormat</TT
|
110
|
+
></CODE
|
111
|
+
>(FcPattern *<TT
|
112
|
+
CLASS="PARAMETER"
|
113
|
+
><I
|
114
|
+
>pat</I
|
115
|
+
></TT
|
116
|
+
>, const FcChar8 *<TT
|
117
|
+
CLASS="PARAMETER"
|
118
|
+
><I
|
119
|
+
>format</I
|
120
|
+
></TT
|
121
|
+
>);</CODE
|
122
|
+
></P
|
123
|
+
><P
|
124
|
+
></P
|
125
|
+
></DIV
|
126
|
+
></DIV
|
127
|
+
><DIV
|
128
|
+
CLASS="REFSECT1"
|
129
|
+
><A
|
130
|
+
NAME="AEN943"
|
131
|
+
></A
|
132
|
+
><H2
|
133
|
+
>Description</H2
|
134
|
+
><P
|
135
|
+
>Converts given pattern <TT
|
136
|
+
CLASS="PARAMETER"
|
137
|
+
><I
|
138
|
+
>pat</I
|
139
|
+
></TT
|
140
|
+
> into text described by
|
141
|
+
the format specifier <TT
|
142
|
+
CLASS="PARAMETER"
|
143
|
+
><I
|
144
|
+
>format</I
|
145
|
+
></TT
|
146
|
+
>.
|
147
|
+
The return value refers to newly allocated memory which should be freed by the
|
148
|
+
caller using free(), or NULL if <TT
|
149
|
+
CLASS="PARAMETER"
|
150
|
+
><I
|
151
|
+
>format</I
|
152
|
+
></TT
|
153
|
+
> is invalid. </P
|
154
|
+
><P
|
155
|
+
> The format is loosely modelled after printf-style format string.
|
156
|
+
The format string is composed of zero or more directives: ordinary
|
157
|
+
characters (not "%"), which are copied unchanged to the output stream;
|
158
|
+
and tags which are interpreted to construct text from the pattern in a
|
159
|
+
variety of ways (explained below).
|
160
|
+
Special characters can be escaped
|
161
|
+
using backslash. C-string style special characters like \n and \r are
|
162
|
+
also supported (this is useful when the format string is not a C string
|
163
|
+
literal).
|
164
|
+
It is advisable to always escape curly braces that
|
165
|
+
are meant to be copied to the output as ordinary characters. </P
|
166
|
+
><P
|
167
|
+
> Each tags is introduced by the character "%",
|
168
|
+
followed by an optional minimum field width,
|
169
|
+
followed by tag contents in curly braces ({}).
|
170
|
+
If the minimum field width value is provided the tag
|
171
|
+
will be expanded and the result padded to achieve the minimum width.
|
172
|
+
If the minimum field width is positive, the padding will right-align
|
173
|
+
the text. Negative field width will left-align.
|
174
|
+
The rest of this section describes various supported tag contents
|
175
|
+
and their expansion. </P
|
176
|
+
><P
|
177
|
+
> A <I
|
178
|
+
CLASS="FIRSTTERM"
|
179
|
+
>simple</I
|
180
|
+
> tag
|
181
|
+
is one where the content is an identifier. When simple
|
182
|
+
tags are expanded, the named identifier will be looked up in
|
183
|
+
<TT
|
184
|
+
CLASS="PARAMETER"
|
185
|
+
><I
|
186
|
+
>pattern</I
|
187
|
+
></TT
|
188
|
+
> and the resulting list of values returned,
|
189
|
+
joined together using comma. For example, to print the family name and style the
|
190
|
+
pattern, use the format "%{family} %{style}\n". To extend the family column
|
191
|
+
to forty characters use "%-40{family}%{style}\n". </P
|
192
|
+
><P
|
193
|
+
> Simple tags expand to list of all values for an element. To only choose
|
194
|
+
one of the values, one can index using the syntax "%{elt[idx]}". For example,
|
195
|
+
to get the first family name only, use "%{family[0]}". </P
|
196
|
+
><P
|
197
|
+
> If a simple tag ends with "=" and the element is found in the pattern, the
|
198
|
+
name of the element followed by "=" will be output before the list of values.
|
199
|
+
For example, "%{weight=}" may expand to the string "weight=80". Or to the empty
|
200
|
+
string if <TT
|
201
|
+
CLASS="PARAMETER"
|
202
|
+
><I
|
203
|
+
>pattern</I
|
204
|
+
></TT
|
205
|
+
> does not have weight set. </P
|
206
|
+
><P
|
207
|
+
> If a simple tag starts with ":" and the element is found in the pattern, ":"
|
208
|
+
will be printed first. For example, combining this with the =, the format
|
209
|
+
"%{:weight=}" may expand to ":weight=80" or to the empty string
|
210
|
+
if <TT
|
211
|
+
CLASS="PARAMETER"
|
212
|
+
><I
|
213
|
+
>pattern</I
|
214
|
+
></TT
|
215
|
+
> does not have weight set. </P
|
216
|
+
><P
|
217
|
+
> If a simple tag contains the string ":-", the rest of the the tag contents
|
218
|
+
will be used as a default string. The default string is output if the element
|
219
|
+
is not found in the pattern. For example, the format
|
220
|
+
"%{:weight=:-123}" may expand to ":weight=80" or to the string
|
221
|
+
":weight=123" if <TT
|
222
|
+
CLASS="PARAMETER"
|
223
|
+
><I
|
224
|
+
>pattern</I
|
225
|
+
></TT
|
226
|
+
> does not have weight set. </P
|
227
|
+
><P
|
228
|
+
> A <I
|
229
|
+
CLASS="FIRSTTERM"
|
230
|
+
>count</I
|
231
|
+
> tag
|
232
|
+
is one that starts with the character "#" followed by an element
|
233
|
+
name, and expands to the number of values for the element in the pattern.
|
234
|
+
For example, "%{#family}" expands to the number of family names
|
235
|
+
<TT
|
236
|
+
CLASS="PARAMETER"
|
237
|
+
><I
|
238
|
+
>pattern</I
|
239
|
+
></TT
|
240
|
+
> has set, which may be zero. </P
|
241
|
+
><P
|
242
|
+
> A <I
|
243
|
+
CLASS="FIRSTTERM"
|
244
|
+
>sub-expression</I
|
245
|
+
> tag
|
246
|
+
is one that expands a sub-expression. The tag contents
|
247
|
+
are the sub-expression to expand placed inside another set of curly braces.
|
248
|
+
Sub-expression tags are useful for aligning an entire sub-expression, or to
|
249
|
+
apply converters (explained later) on an entire sub-expression.
|
250
|
+
For example, the format "%40{{%{family} %{style}}}" expands the sub-expression
|
251
|
+
to construct the family name followed by the style, then takes the entire
|
252
|
+
string and pads it on the left to be at least forty characters. </P
|
253
|
+
><P
|
254
|
+
> A <I
|
255
|
+
CLASS="FIRSTTERM"
|
256
|
+
>filter-out</I
|
257
|
+
> tag
|
258
|
+
is one starting with the character "-" followed by a
|
259
|
+
comma-separated list of element names, followed by a sub-expression enclosed
|
260
|
+
in curly braces. The sub-expression will be expanded but with a pattern that
|
261
|
+
has the listed elements removed from it.
|
262
|
+
For example, the format "%{-size,pixelsize{sub-expr}}" will expand "sub-expr"
|
263
|
+
with <TT
|
264
|
+
CLASS="PARAMETER"
|
265
|
+
><I
|
266
|
+
>pattern</I
|
267
|
+
></TT
|
268
|
+
> sans the size and pixelsize elements. </P
|
269
|
+
><P
|
270
|
+
> A <I
|
271
|
+
CLASS="FIRSTTERM"
|
272
|
+
>filter-in</I
|
273
|
+
> tag
|
274
|
+
is one starting with the character "+" followed by a
|
275
|
+
comma-separated list of element names, followed by a sub-expression enclosed
|
276
|
+
in curly braces. The sub-expression will be expanded but with a pattern that
|
277
|
+
only has the listed elements from the surrounding pattern.
|
278
|
+
For example, the format "%{+family,familylang{sub-expr}}" will expand "sub-expr"
|
279
|
+
with a sub-pattern consisting only the family and family lang elements of
|
280
|
+
<TT
|
281
|
+
CLASS="PARAMETER"
|
282
|
+
><I
|
283
|
+
>pattern</I
|
284
|
+
></TT
|
285
|
+
>. </P
|
286
|
+
><P
|
287
|
+
> A <I
|
288
|
+
CLASS="FIRSTTERM"
|
289
|
+
>conditional</I
|
290
|
+
> tag
|
291
|
+
is one starting with the character "?" followed by a
|
292
|
+
comma-separated list of element conditions, followed by two sub-expression
|
293
|
+
enclosed in curly braces. An element condition can be an element name,
|
294
|
+
in which case it tests whether the element is defined in pattern, or
|
295
|
+
the character "!" followed by an element name, in which case the test
|
296
|
+
is negated. The conditional passes if all the element conditions pass.
|
297
|
+
The tag expands the first sub-expression if the conditional passes, and
|
298
|
+
expands the second sub-expression otherwise.
|
299
|
+
For example, the format "%{?size,dpi,!pixelsize{pass}{fail}}" will expand
|
300
|
+
to "pass" if <TT
|
301
|
+
CLASS="PARAMETER"
|
302
|
+
><I
|
303
|
+
>pattern</I
|
304
|
+
></TT
|
305
|
+
> has size and dpi elements but
|
306
|
+
no pixelsize element, and to "fail" otherwise. </P
|
307
|
+
><P
|
308
|
+
> An <I
|
309
|
+
CLASS="FIRSTTERM"
|
310
|
+
>enumerate</I
|
311
|
+
> tag
|
312
|
+
is one starting with the string "[]" followed by a
|
313
|
+
comma-separated list of element names, followed by a sub-expression enclosed
|
314
|
+
in curly braces. The list of values for the named elements are walked in
|
315
|
+
parallel and the sub-expression expanded each time with a pattern just having
|
316
|
+
a single value for those elements, starting from the first value and
|
317
|
+
continuing as long as any of those elements has a value.
|
318
|
+
For example, the format "%{[]family,familylang{%{family} (%{familylang})\n}}"
|
319
|
+
will expand the pattern "%{family} (%{familylang})\n" with a pattern
|
320
|
+
having only the first value of the family and familylang elemtns, then expands
|
321
|
+
it with the second values, then the third, etc. </P
|
322
|
+
><P
|
323
|
+
> As a special case, if an enumerate tag has only one element, and that element
|
324
|
+
has only one value in the pattern, and that value is of type FcLangSet, the
|
325
|
+
individual languages in the language set are enumerated. </P
|
326
|
+
><P
|
327
|
+
> A <I
|
328
|
+
CLASS="FIRSTTERM"
|
329
|
+
>builtin</I
|
330
|
+
> tag
|
331
|
+
is one starting with the character "=" followed by a builtin
|
332
|
+
name. The following builtins are defined:
|
333
|
+
|
334
|
+
<P
|
335
|
+
></P
|
336
|
+
><DIV
|
337
|
+
CLASS="VARIABLELIST"
|
338
|
+
><DL
|
339
|
+
><DT
|
340
|
+
>unparse</DT
|
341
|
+
><DD
|
342
|
+
><P
|
343
|
+
>Expands to the result of calling FcNameUnparse() on the pattern.</P
|
344
|
+
></DD
|
345
|
+
><DT
|
346
|
+
>fcmatch</DT
|
347
|
+
><DD
|
348
|
+
><P
|
349
|
+
>Expands to the output of the default output format of the fc-match
|
350
|
+
command on the pattern, without the final newline.</P
|
351
|
+
></DD
|
352
|
+
><DT
|
353
|
+
>fclist</DT
|
354
|
+
><DD
|
355
|
+
><P
|
356
|
+
>Expands to the output of the default output format of the fc-list
|
357
|
+
command on the pattern, without the final newline.</P
|
358
|
+
></DD
|
359
|
+
><DT
|
360
|
+
>pkgkit</DT
|
361
|
+
><DD
|
362
|
+
><P
|
363
|
+
>Expands to the list of PackageKit font() tags for the pattern.
|
364
|
+
Currently this includes tags for each family name, and each language
|
365
|
+
from the pattern, enumerated and sanitized into a set of tags terminated
|
366
|
+
by newline. Package management systems can use these tags to tag their
|
367
|
+
packages accordingly.</P
|
368
|
+
></DD
|
369
|
+
></DL
|
370
|
+
></DIV
|
371
|
+
>
|
372
|
+
|
373
|
+
For example, the format "%{+family,style{%{=unparse}}}\n" will expand
|
374
|
+
to an unparsed name containing only the family and style element values
|
375
|
+
from <TT
|
376
|
+
CLASS="PARAMETER"
|
377
|
+
><I
|
378
|
+
>pattern</I
|
379
|
+
></TT
|
380
|
+
>. </P
|
381
|
+
><P
|
382
|
+
> The contents of any tag can be followed by a set of zero or more
|
383
|
+
<I
|
384
|
+
CLASS="FIRSTTERM"
|
385
|
+
>converter</I
|
386
|
+
>s. A converter is specified by the
|
387
|
+
character "|" followed by the converter name and arguments. The
|
388
|
+
following converters are defined:
|
389
|
+
|
390
|
+
<P
|
391
|
+
></P
|
392
|
+
><DIV
|
393
|
+
CLASS="VARIABLELIST"
|
394
|
+
><DL
|
395
|
+
><DT
|
396
|
+
>basename</DT
|
397
|
+
><DD
|
398
|
+
><P
|
399
|
+
>Replaces text with the results of calling FcStrBasename() on it.</P
|
400
|
+
></DD
|
401
|
+
><DT
|
402
|
+
>dirname</DT
|
403
|
+
><DD
|
404
|
+
><P
|
405
|
+
>Replaces text with the results of calling FcStrDirname() on it.</P
|
406
|
+
></DD
|
407
|
+
><DT
|
408
|
+
>downcase</DT
|
409
|
+
><DD
|
410
|
+
><P
|
411
|
+
>Replaces text with the results of calling FcStrDowncase() on it.</P
|
412
|
+
></DD
|
413
|
+
><DT
|
414
|
+
>shescape</DT
|
415
|
+
><DD
|
416
|
+
><P
|
417
|
+
>Escapes text for one level of shell expansion.
|
418
|
+
(Escapes single-quotes, also encloses text in single-quotes.)</P
|
419
|
+
></DD
|
420
|
+
><DT
|
421
|
+
>cescape</DT
|
422
|
+
><DD
|
423
|
+
><P
|
424
|
+
>Escapes text such that it can be used as part of a C string literal.
|
425
|
+
(Escapes backslash and double-quotes.)</P
|
426
|
+
></DD
|
427
|
+
><DT
|
428
|
+
>xmlescape</DT
|
429
|
+
><DD
|
430
|
+
><P
|
431
|
+
>Escapes text such that it can be used in XML and HTML.
|
432
|
+
(Escapes less-than, greater-than, and ampersand.)</P
|
433
|
+
></DD
|
434
|
+
><DT
|
435
|
+
>delete(<TT
|
436
|
+
CLASS="PARAMETER"
|
437
|
+
><I
|
438
|
+
>chars</I
|
439
|
+
></TT
|
440
|
+
>)</DT
|
441
|
+
><DD
|
442
|
+
><P
|
443
|
+
>Deletes all occurrences of each of the characters in <TT
|
444
|
+
CLASS="PARAMETER"
|
445
|
+
><I
|
446
|
+
>chars</I
|
447
|
+
></TT
|
448
|
+
>
|
449
|
+
from the text.
|
450
|
+
FIXME: This converter is not UTF-8 aware yet.</P
|
451
|
+
></DD
|
452
|
+
><DT
|
453
|
+
>escape(<TT
|
454
|
+
CLASS="PARAMETER"
|
455
|
+
><I
|
456
|
+
>chars</I
|
457
|
+
></TT
|
458
|
+
>)</DT
|
459
|
+
><DD
|
460
|
+
><P
|
461
|
+
>Escapes all occurrences of each of the characters in <TT
|
462
|
+
CLASS="PARAMETER"
|
463
|
+
><I
|
464
|
+
>chars</I
|
465
|
+
></TT
|
466
|
+
>
|
467
|
+
by prepending it by the first character in <TT
|
468
|
+
CLASS="PARAMETER"
|
469
|
+
><I
|
470
|
+
>chars</I
|
471
|
+
></TT
|
472
|
+
>.
|
473
|
+
FIXME: This converter is not UTF-8 aware yet.</P
|
474
|
+
></DD
|
475
|
+
><DT
|
476
|
+
>translate(<TT
|
477
|
+
CLASS="PARAMETER"
|
478
|
+
><I
|
479
|
+
>from</I
|
480
|
+
></TT
|
481
|
+
>,<TT
|
482
|
+
CLASS="PARAMETER"
|
483
|
+
><I
|
484
|
+
>to</I
|
485
|
+
></TT
|
486
|
+
>)</DT
|
487
|
+
><DD
|
488
|
+
><P
|
489
|
+
>Translates all occurrences of each of the characters in <TT
|
490
|
+
CLASS="PARAMETER"
|
491
|
+
><I
|
492
|
+
>from</I
|
493
|
+
></TT
|
494
|
+
>
|
495
|
+
by replacing them with their corresponding character in <TT
|
496
|
+
CLASS="PARAMETER"
|
497
|
+
><I
|
498
|
+
>to</I
|
499
|
+
></TT
|
500
|
+
>.
|
501
|
+
If <TT
|
502
|
+
CLASS="PARAMETER"
|
503
|
+
><I
|
504
|
+
>to</I
|
505
|
+
></TT
|
506
|
+
> has fewer characters than
|
507
|
+
<TT
|
508
|
+
CLASS="PARAMETER"
|
509
|
+
><I
|
510
|
+
>from</I
|
511
|
+
></TT
|
512
|
+
>, it will be extended by repeating its last
|
513
|
+
character.
|
514
|
+
FIXME: This converter is not UTF-8 aware yet.</P
|
515
|
+
></DD
|
516
|
+
></DL
|
517
|
+
></DIV
|
518
|
+
>
|
519
|
+
|
520
|
+
For example, the format "%{family|downcase|delete( )}\n" will expand
|
521
|
+
to the values of the family element in <TT
|
522
|
+
CLASS="PARAMETER"
|
523
|
+
><I
|
524
|
+
>pattern</I
|
525
|
+
></TT
|
526
|
+
>,
|
527
|
+
lower-cased and with spaces removed.
|
528
|
+
</P
|
529
|
+
></DIV
|
530
|
+
><DIV
|
531
|
+
CLASS="REFSECT1"
|
532
|
+
><A
|
533
|
+
NAME="AEN1049"
|
534
|
+
></A
|
535
|
+
><H2
|
536
|
+
>Version</H2
|
537
|
+
><P
|
538
|
+
>Fontconfig version 2.8.0
|
539
|
+
|
540
|
+
</P
|
541
|
+
></DIV
|
542
|
+
><DIV
|
543
|
+
CLASS="NAVFOOTER"
|
544
|
+
><HR
|
545
|
+
ALIGN="LEFT"
|
546
|
+
WIDTH="100%"><TABLE
|
547
|
+
SUMMARY="Footer navigation table"
|
548
|
+
WIDTH="100%"
|
549
|
+
BORDER="0"
|
550
|
+
CELLPADDING="0"
|
551
|
+
CELLSPACING="0"
|
552
|
+
><TR
|
553
|
+
><TD
|
554
|
+
WIDTH="33%"
|
555
|
+
ALIGN="left"
|
556
|
+
VALIGN="top"
|
557
|
+
><A
|
558
|
+
HREF="fcnameunparse.html"
|
559
|
+
ACCESSKEY="P"
|
560
|
+
><<< Previous</A
|
561
|
+
></TD
|
562
|
+
><TD
|
563
|
+
WIDTH="34%"
|
564
|
+
ALIGN="center"
|
565
|
+
VALIGN="top"
|
566
|
+
><A
|
567
|
+
HREF="t1.html"
|
568
|
+
ACCESSKEY="H"
|
569
|
+
>Home</A
|
570
|
+
></TD
|
571
|
+
><TD
|
572
|
+
WIDTH="33%"
|
573
|
+
ALIGN="right"
|
574
|
+
VALIGN="top"
|
575
|
+
> </TD
|
576
|
+
></TR
|
577
|
+
><TR
|
578
|
+
><TD
|
579
|
+
WIDTH="33%"
|
580
|
+
ALIGN="left"
|
581
|
+
VALIGN="top"
|
582
|
+
>FcNameUnparse</TD
|
583
|
+
><TD
|
584
|
+
WIDTH="34%"
|
585
|
+
ALIGN="center"
|
586
|
+
VALIGN="top"
|
587
|
+
><A
|
588
|
+
HREF="x102.html#AEN255"
|
589
|
+
ACCESSKEY="U"
|
590
|
+
>Up</A
|
591
|
+
></TD
|
592
|
+
><TD
|
593
|
+
WIDTH="33%"
|
594
|
+
ALIGN="right"
|
595
|
+
VALIGN="top"
|
596
|
+
> </TD
|
597
|
+
></TR
|
598
|
+
></TABLE
|
599
|
+
></DIV
|
600
|
+
></BODY
|
601
|
+
></HTML
|
602
|
+
>
|