cairo 1.14.0-x64-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.
- checksums.yaml +7 -0
- data/AUTHORS +7 -0
- data/COPYING +59 -0
- data/GPL +340 -0
- data/Gemfile +5 -0
- data/NEWS +429 -0
- data/README.rdoc +120 -0
- data/Rakefile +620 -0
- data/ext/cairo/cairo.def +140 -0
- data/ext/cairo/depend +3 -0
- data/ext/cairo/extconf.rb +202 -0
- data/ext/cairo/rb_cairo.c +111 -0
- data/ext/cairo/rb_cairo.h +348 -0
- data/ext/cairo/rb_cairo_constants.c +673 -0
- data/ext/cairo/rb_cairo_context.c +1741 -0
- data/ext/cairo/rb_cairo_device.c +475 -0
- data/ext/cairo/rb_cairo_exception.c +446 -0
- data/ext/cairo/rb_cairo_font_extents.c +200 -0
- data/ext/cairo/rb_cairo_font_face.c +726 -0
- data/ext/cairo/rb_cairo_font_options.c +197 -0
- data/ext/cairo/rb_cairo_glyph.c +161 -0
- data/ext/cairo/rb_cairo_io.c +166 -0
- data/ext/cairo/rb_cairo_io.h +44 -0
- data/ext/cairo/rb_cairo_matrix.c +366 -0
- data/ext/cairo/rb_cairo_path.c +459 -0
- data/ext/cairo/rb_cairo_pattern.c +1192 -0
- data/ext/cairo/rb_cairo_private.c +255 -0
- data/ext/cairo/rb_cairo_private.h +129 -0
- data/ext/cairo/rb_cairo_rectangle.c +83 -0
- data/ext/cairo/rb_cairo_region.c +385 -0
- data/ext/cairo/rb_cairo_scaled_font.c +235 -0
- data/ext/cairo/rb_cairo_surface.c +2284 -0
- data/ext/cairo/rb_cairo_text_cluster.c +151 -0
- data/ext/cairo/rb_cairo_text_extents.c +221 -0
- data/lib/2.0/cairo.so +0 -0
- data/lib/2.1/cairo.so +0 -0
- data/lib/2.2/cairo.so +0 -0
- data/lib/cairo.rb +154 -0
- data/lib/cairo/color.rb +267 -0
- data/lib/cairo/colors.rb +656 -0
- data/lib/cairo/constants.rb +24 -0
- data/lib/cairo/context.rb +29 -0
- data/lib/cairo/context/blur.rb +45 -0
- data/lib/cairo/context/circle.rb +9 -0
- data/lib/cairo/context/color.rb +11 -0
- data/lib/cairo/context/path.rb +117 -0
- data/lib/cairo/context/rectangle.rb +33 -0
- data/lib/cairo/context/triangle.rb +12 -0
- data/lib/cairo/device.rb +13 -0
- data/lib/cairo/paper.rb +183 -0
- data/lib/cairo/papers.rb +65 -0
- data/lib/cairo/path.rb +15 -0
- data/lib/cairo/pattern.rb +12 -0
- data/lib/cairo/point.rb +7 -0
- data/lib/cairo/surface.rb +13 -0
- data/samples/agg/aa_test.rb +304 -0
- data/samples/blur.rb +46 -0
- data/samples/pac-nomralize.rb +170 -0
- data/samples/pac-tee.rb +170 -0
- data/samples/pac.rb +98 -0
- data/samples/png.rb +44 -0
- data/samples/scalable.rb +55 -0
- data/samples/text-on-path.rb +59 -0
- data/samples/text2.rb +130 -0
- data/test/cairo-test-utils.rb +44 -0
- data/test/run-test.rb +29 -0
- data/test/test_color.rb +17 -0
- data/test/test_constants.rb +27 -0
- data/test/test_context.rb +105 -0
- data/test/test_exception.rb +36 -0
- data/test/test_font_extents.rb +36 -0
- data/test/test_font_face.rb +257 -0
- data/test/test_font_options.rb +13 -0
- data/test/test_image_surface.rb +28 -0
- data/test/test_paper.rb +81 -0
- data/test/test_quartz_image_surface.rb +13 -0
- data/test/test_raster_source_pattern.rb +162 -0
- data/test/test_recording_surface.rb +19 -0
- data/test/test_region.rb +102 -0
- data/test/test_scaled_font.rb +34 -0
- data/test/test_script_device.rb +46 -0
- data/test/test_script_surface.rb +13 -0
- data/test/test_surface.rb +61 -0
- data/test/test_tee_surface.rb +32 -0
- data/test/test_text_cluster.rb +32 -0
- data/test/test_text_extents.rb +40 -0
- data/test/test_text_to_glyphs_data.rb +51 -0
- data/test/test_xml_device.rb +22 -0
- data/test/test_xml_surface.rb +34 -0
- 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/fc-match.exe +0 -0
- data/vendor/local/bin/fc-pattern.exe +0 -0
- data/vendor/local/bin/fc-query.exe +0 -0
- data/vendor/local/bin/fc-scan.exe +0 -0
- data/vendor/local/bin/fc-validate.exe +0 -0
- data/vendor/local/bin/freetype-config +163 -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/libfontconfig-1.dll +0 -0
- data/vendor/local/bin/libfreetype-6.dll +0 -0
- data/vendor/local/bin/libgcc_s_seh-1.dll +0 -0
- data/vendor/local/bin/libpixman-1-0.dll +0 -0
- data/vendor/local/bin/libpng-config +127 -0
- data/vendor/local/bin/libpng16-16.dll +0 -0
- data/vendor/local/bin/libpng16-config +127 -0
- data/vendor/local/bin/libstdc++-6.dll +0 -0
- data/vendor/local/bin/libwinpthread-1.dll +0 -0
- data/vendor/local/bin/libxml2-2.dll +0 -0
- data/vendor/local/bin/png-fix-itxt.exe +0 -0
- data/vendor/local/bin/pngfix.exe +0 -0
- data/vendor/local/bin/xml2-config +106 -0
- data/vendor/local/bin/xmlcatalog.exe +0 -0
- data/vendor/local/bin/xmllint.exe +0 -0
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/etc/fonts/conf.d/10-scale-bitmap-fonts.conf +81 -0
- data/vendor/local/etc/fonts/conf.d/20-unhint-small-vera.conf +48 -0
- data/vendor/local/etc/fonts/conf.d/30-metric-aliases.conf +546 -0
- data/vendor/local/etc/fonts/conf.d/30-urw-aliases.conf +24 -0
- data/vendor/local/etc/fonts/conf.d/40-nonlatin.conf +231 -0
- data/vendor/local/etc/fonts/conf.d/45-latin.conf +189 -0
- data/vendor/local/etc/fonts/conf.d/49-sansserif.conf +21 -0
- data/vendor/local/etc/fonts/conf.d/50-user.conf +15 -0
- data/vendor/local/etc/fonts/conf.d/51-local.conf +6 -0
- data/vendor/local/etc/fonts/conf.d/60-latin.conf +70 -0
- data/vendor/local/etc/fonts/conf.d/65-fonts-persian.conf +419 -0
- data/vendor/local/etc/fonts/conf.d/65-nonlatin.conf +196 -0
- data/vendor/local/etc/fonts/conf.d/69-unifont.conf +28 -0
- data/vendor/local/etc/fonts/conf.d/80-delicious.conf +19 -0
- data/vendor/local/etc/fonts/conf.d/90-synthetic.conf +64 -0
- data/vendor/local/etc/fonts/conf.d/README +23 -0
- data/vendor/local/etc/fonts/fonts.conf +155 -0
- data/vendor/local/include/cairo/cairo-deprecated.h +123 -0
- data/vendor/local/include/cairo/cairo-features.h +31 -0
- data/vendor/local/include/cairo/cairo-ft.h +118 -0
- data/vendor/local/include/cairo/cairo-gobject.h +192 -0
- data/vendor/local/include/cairo/cairo-pdf.h +94 -0
- data/vendor/local/include/cairo/cairo-ps.h +116 -0
- data/vendor/local/include/cairo/cairo-script-interpreter.h +124 -0
- data/vendor/local/include/cairo/cairo-script.h +98 -0
- data/vendor/local/include/cairo/cairo-svg.h +84 -0
- data/vendor/local/include/cairo/cairo-version.h +8 -0
- data/vendor/local/include/cairo/cairo-win32.h +112 -0
- data/vendor/local/include/cairo/cairo.h +3153 -0
- data/vendor/local/include/fontconfig/fcfreetype.h +59 -0
- data/vendor/local/include/fontconfig/fcprivate.h +124 -0
- data/vendor/local/include/fontconfig/fontconfig.h +1010 -0
- data/vendor/local/include/freetype2/config/ftconfig.h +706 -0
- data/vendor/local/include/freetype2/config/ftheader.h +832 -0
- data/vendor/local/include/freetype2/config/ftmodule.h +20 -0
- data/vendor/local/include/freetype2/config/ftoption.h +846 -0
- data/vendor/local/include/freetype2/config/ftstdlib.h +174 -0
- data/vendor/local/include/freetype2/freetype.h +4076 -0
- data/vendor/local/include/freetype2/ft2build.h +42 -0
- data/vendor/local/include/freetype2/ftadvanc.h +182 -0
- data/vendor/local/include/freetype2/ftautoh.h +402 -0
- data/vendor/local/include/freetype2/ftbbox.h +102 -0
- data/vendor/local/include/freetype2/ftbdf.h +210 -0
- data/vendor/local/include/freetype2/ftbitmap.h +227 -0
- data/vendor/local/include/freetype2/ftbzip2.h +102 -0
- data/vendor/local/include/freetype2/ftcache.h +1057 -0
- data/vendor/local/include/freetype2/ftcffdrv.h +254 -0
- data/vendor/local/include/freetype2/ftchapters.h +121 -0
- data/vendor/local/include/freetype2/ftcid.h +166 -0
- data/vendor/local/include/freetype2/fterrdef.h +249 -0
- data/vendor/local/include/freetype2/fterrors.h +198 -0
- data/vendor/local/include/freetype2/ftgasp.h +128 -0
- data/vendor/local/include/freetype2/ftglyph.h +620 -0
- data/vendor/local/include/freetype2/ftgxval.h +358 -0
- data/vendor/local/include/freetype2/ftgzip.h +149 -0
- data/vendor/local/include/freetype2/ftimage.h +1322 -0
- data/vendor/local/include/freetype2/ftincrem.h +353 -0
- data/vendor/local/include/freetype2/ftlcdfil.h +251 -0
- data/vendor/local/include/freetype2/ftlist.h +277 -0
- data/vendor/local/include/freetype2/ftlzw.h +99 -0
- data/vendor/local/include/freetype2/ftmac.h +274 -0
- data/vendor/local/include/freetype2/ftmm.h +377 -0
- data/vendor/local/include/freetype2/ftmodapi.h +641 -0
- data/vendor/local/include/freetype2/ftmoderr.h +194 -0
- data/vendor/local/include/freetype2/ftotval.h +203 -0
- data/vendor/local/include/freetype2/ftoutln.h +572 -0
- data/vendor/local/include/freetype2/ftpfr.h +172 -0
- data/vendor/local/include/freetype2/ftrender.h +238 -0
- data/vendor/local/include/freetype2/ftsizes.h +159 -0
- data/vendor/local/include/freetype2/ftsnames.h +200 -0
- data/vendor/local/include/freetype2/ftstroke.h +751 -0
- data/vendor/local/include/freetype2/ftsynth.h +81 -0
- data/vendor/local/include/freetype2/ftsystem.h +347 -0
- data/vendor/local/include/freetype2/fttrigon.h +350 -0
- data/vendor/local/include/freetype2/ftttdrv.h +170 -0
- data/vendor/local/include/freetype2/fttypes.h +598 -0
- data/vendor/local/include/freetype2/ftwinfnt.h +275 -0
- data/vendor/local/include/freetype2/ftxf86.h +83 -0
- data/vendor/local/include/freetype2/t1tables.h +662 -0
- data/vendor/local/include/freetype2/ttnameid.h +1237 -0
- data/vendor/local/include/freetype2/tttables.h +787 -0
- data/vendor/local/include/freetype2/tttags.h +111 -0
- data/vendor/local/include/freetype2/ttunpat.h +59 -0
- data/vendor/local/include/libpng16/png.h +3276 -0
- data/vendor/local/include/libpng16/pngconf.h +644 -0
- data/vendor/local/include/libpng16/pnglibconf.h +208 -0
- data/vendor/local/include/libxml2/libxml/DOCBparser.h +96 -0
- data/vendor/local/include/libxml2/libxml/HTMLparser.h +306 -0
- data/vendor/local/include/libxml2/libxml/HTMLtree.h +147 -0
- data/vendor/local/include/libxml2/libxml/SAX.h +173 -0
- data/vendor/local/include/libxml2/libxml/SAX2.h +178 -0
- data/vendor/local/include/libxml2/libxml/c14n.h +126 -0
- data/vendor/local/include/libxml2/libxml/catalog.h +182 -0
- data/vendor/local/include/libxml2/libxml/chvalid.h +230 -0
- data/vendor/local/include/libxml2/libxml/debugXML.h +217 -0
- data/vendor/local/include/libxml2/libxml/dict.h +80 -0
- data/vendor/local/include/libxml2/libxml/encoding.h +240 -0
- data/vendor/local/include/libxml2/libxml/entities.h +151 -0
- data/vendor/local/include/libxml2/libxml/globals.h +509 -0
- data/vendor/local/include/libxml2/libxml/hash.h +233 -0
- data/vendor/local/include/libxml2/libxml/list.h +137 -0
- data/vendor/local/include/libxml2/libxml/nanoftp.h +163 -0
- data/vendor/local/include/libxml2/libxml/nanohttp.h +81 -0
- data/vendor/local/include/libxml2/libxml/parser.h +1241 -0
- data/vendor/local/include/libxml2/libxml/parserInternals.h +644 -0
- data/vendor/local/include/libxml2/libxml/pattern.h +100 -0
- data/vendor/local/include/libxml2/libxml/relaxng.h +217 -0
- data/vendor/local/include/libxml2/libxml/schemasInternals.h +958 -0
- data/vendor/local/include/libxml2/libxml/schematron.h +142 -0
- data/vendor/local/include/libxml2/libxml/threads.h +84 -0
- data/vendor/local/include/libxml2/libxml/tree.h +1310 -0
- data/vendor/local/include/libxml2/libxml/uri.h +94 -0
- data/vendor/local/include/libxml2/libxml/valid.h +458 -0
- data/vendor/local/include/libxml2/libxml/xinclude.h +129 -0
- data/vendor/local/include/libxml2/libxml/xlink.h +189 -0
- data/vendor/local/include/libxml2/libxml/xmlIO.h +366 -0
- data/vendor/local/include/libxml2/libxml/xmlautomata.h +146 -0
- data/vendor/local/include/libxml2/libxml/xmlerror.h +945 -0
- data/vendor/local/include/libxml2/libxml/xmlexports.h +162 -0
- data/vendor/local/include/libxml2/libxml/xmlmemory.h +224 -0
- data/vendor/local/include/libxml2/libxml/xmlmodule.h +57 -0
- data/vendor/local/include/libxml2/libxml/xmlreader.h +428 -0
- data/vendor/local/include/libxml2/libxml/xmlregexp.h +222 -0
- data/vendor/local/include/libxml2/libxml/xmlsave.h +88 -0
- data/vendor/local/include/libxml2/libxml/xmlschemas.h +246 -0
- data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +151 -0
- data/vendor/local/include/libxml2/libxml/xmlstring.h +140 -0
- data/vendor/local/include/libxml2/libxml/xmlunicode.h +202 -0
- data/vendor/local/include/libxml2/libxml/xmlversion.h +489 -0
- data/vendor/local/include/libxml2/libxml/xmlwriter.h +488 -0
- data/vendor/local/include/libxml2/libxml/xpath.h +557 -0
- data/vendor/local/include/libxml2/libxml/xpathInternals.h +632 -0
- data/vendor/local/include/libxml2/libxml/xpointer.h +114 -0
- data/vendor/local/include/pixman-1/pixman-version.h +50 -0
- data/vendor/local/include/pixman-1/pixman.h +1111 -0
- data/vendor/local/include/png.h +3276 -0
- data/vendor/local/include/pngconf.h +644 -0
- data/vendor/local/include/pnglibconf.h +208 -0
- data/vendor/local/include/zconf.h +511 -0
- data/vendor/local/include/zlib.h +1768 -0
- data/vendor/local/lib/cmake/libxml2/libxml2-config.cmake +50 -0
- data/vendor/local/lib/fontconfig.def +207 -0
- data/vendor/local/lib/libcairo-gobject.a +0 -0
- data/vendor/local/lib/libcairo-gobject.dll.a +0 -0
- data/vendor/local/lib/libcairo-gobject.la +41 -0
- data/vendor/local/lib/libcairo-script-interpreter.a +0 -0
- data/vendor/local/lib/libcairo-script-interpreter.dll.a +0 -0
- data/vendor/local/lib/libcairo-script-interpreter.la +41 -0
- data/vendor/local/lib/libcairo.a +0 -0
- data/vendor/local/lib/libcairo.dll.a +0 -0
- data/vendor/local/lib/libcairo.la +41 -0
- data/vendor/local/lib/libfontconfig.dll.a +0 -0
- data/vendor/local/lib/libfontconfig.la +41 -0
- data/vendor/local/lib/libfreetype.a +0 -0
- data/vendor/local/lib/libfreetype.dll.a +0 -0
- data/vendor/local/lib/libfreetype.la +41 -0
- data/vendor/local/lib/libpixman-1.a +0 -0
- data/vendor/local/lib/libpixman-1.dll.a +0 -0
- data/vendor/local/lib/libpixman-1.la +41 -0
- data/vendor/local/lib/libpng.a +0 -0
- data/vendor/local/lib/libpng.dll.a +0 -0
- data/vendor/local/lib/libpng.la +41 -0
- data/vendor/local/lib/libpng16.a +0 -0
- data/vendor/local/lib/libpng16.dll.a +0 -0
- data/vendor/local/lib/libpng16.la +41 -0
- data/vendor/local/lib/libxml2.a +0 -0
- data/vendor/local/lib/libxml2.dll.a +0 -0
- data/vendor/local/lib/libxml2.la +41 -0
- data/vendor/local/lib/libz.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/cairo-fc.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-ft.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-gobject.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-pdf.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-png.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-ps.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-script.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-svg.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-win32.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo.pc +13 -0
- data/vendor/local/lib/pkgconfig/fontconfig.pc +18 -0
- data/vendor/local/lib/pkgconfig/freetype2.pc +14 -0
- data/vendor/local/lib/pkgconfig/libpng.pc +11 -0
- data/vendor/local/lib/pkgconfig/libpng16.pc +11 -0
- data/vendor/local/lib/pkgconfig/libxml-2.0.pc +13 -0
- data/vendor/local/lib/pkgconfig/pixman-1.pc +11 -0
- data/vendor/local/lib/pkgconfig/zlib.pc +13 -0
- data/vendor/local/lib/xml2Conf.sh +8 -0
- data/vendor/local/share/aclocal/freetype2.m4 +194 -0
- data/vendor/local/share/aclocal/libxml.m4 +188 -0
- data/vendor/local/share/doc/libxml2-2.9.2/Copyright +23 -0
- data/vendor/local/share/doc/libxml2-2.9.2/examples/testHTML.c +880 -0
- data/vendor/local/share/doc/libxml2-2.9.2/examples/testSAX.c +1198 -0
- data/vendor/local/share/doc/libxml2-2.9.2/examples/testXPath.c +229 -0
- data/vendor/local/share/doc/libxml2-2.9.2/examples/xmllint.c +3801 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/DOM.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/FAQ.html +299 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/Libxml2-Logo-180x168.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/Libxml2-Logo-90x34.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/encoding.html +217 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/examples.xml +751 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/examples.xsl +174 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/book1.html +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/home.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/index.html +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/left.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-DOCBparser.html +51 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-HTMLparser.html +184 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-HTMLtree.html +73 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-SAX.html +125 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-SAX2.html +128 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-c14n.html +38 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-catalog.html +142 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-chvalid.html +72 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-debugXML.html +120 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-dict.html +58 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-encoding.html +124 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-entities.html +79 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-globals.html +152 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-hash.html +116 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-lib.html +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-list.html +120 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-nanoftp.html +94 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-nanohttp.html +65 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-parser.html +559 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-parserInternals.html +322 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-pattern.html +76 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-relaxng.html +162 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-schemasInternals.html +373 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-schematron.html +81 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-threads.html +72 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-tree.html +990 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-uri.html +73 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-valid.html +289 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xinclude.html +59 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xlink.html +82 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlIO.html +212 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlautomata.html +85 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlerror.html +865 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlexports.html +20 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlmemory.html +107 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlmodule.html +38 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlreader.html +330 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlregexp.html +143 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlsave.html +60 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlschemas.html +185 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlschemastypes.html +123 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlstring.html +108 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlunicode.html +512 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlversion.html +63 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlwriter.html +261 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpath.html +316 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpathInternals.html +394 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpointer.html +83 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xzlib.html +16 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/right.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/up.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/index.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/io1.c +166 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/io1.res +5 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/io2.c +58 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/io2.res +2 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/libxml.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/parse1.c +56 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/parse2.c +72 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/parse3.c +60 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/parse4.c +143 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader1.c +107 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader1.res +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader2.c +122 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader3.c +120 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader3.res +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader4.c +122 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader4.res +3 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/redhat.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/smallfootonly.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/structure.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/test1.xml +1 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/test2.xml +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/test3.xml +39 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/testWriter.c +1198 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tree1.c +94 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tree1.res +4 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tree2.c +118 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tree2.res +18 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tst.xml +7 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apa.html +8 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apb.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apc.html +82 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apd.html +76 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ape.html +78 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apf.html +67 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apg.html +75 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/aph.html +76 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/api.html +4 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s02.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s03.html +47 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s04.html +54 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s05.html +55 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s06.html +35 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s07.html +30 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s08.html +38 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s09.html +63 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/blank.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/1.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/10.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/2.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/3.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/4.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/5.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/6.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/7.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/8.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/9.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/caution.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/draft.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/home.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/important.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/next.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/note.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/prev.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/tip.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-blank.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-minus.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-plus.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/up.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/warning.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeaddattribute.c +64 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeaddkeyword.c +75 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeconvert.c +73 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includegetattribute.c +72 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includekeyword.c +79 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includexpath.c +74 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/index.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ix01.html +1 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/xmltutorial.pdf +1336 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/w3c.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/writer.xml +2 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xml.html +5995 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xpath1.c +250 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xpath1.res +5 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xpath2.c +190 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xpath2.res +30 -0
- data/vendor/local/share/fontconfig/conf.avail/10-autohint.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-no-sub-pixel.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf +81 -0
- data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-unhinted.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/11-lcdfilter-default.conf +16 -0
- data/vendor/local/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf +16 -0
- data/vendor/local/share/fontconfig/conf.avail/11-lcdfilter-light.conf +16 -0
- data/vendor/local/share/fontconfig/conf.avail/20-unhint-small-vera.conf +48 -0
- data/vendor/local/share/fontconfig/conf.avail/25-unhint-nonlatin.conf +128 -0
- data/vendor/local/share/fontconfig/conf.avail/30-metric-aliases.conf +546 -0
- data/vendor/local/share/fontconfig/conf.avail/30-urw-aliases.conf +24 -0
- data/vendor/local/share/fontconfig/conf.avail/40-nonlatin.conf +231 -0
- data/vendor/local/share/fontconfig/conf.avail/45-latin.conf +189 -0
- data/vendor/local/share/fontconfig/conf.avail/49-sansserif.conf +21 -0
- data/vendor/local/share/fontconfig/conf.avail/50-user.conf +15 -0
- data/vendor/local/share/fontconfig/conf.avail/51-local.conf +6 -0
- data/vendor/local/share/fontconfig/conf.avail/60-latin.conf +70 -0
- data/vendor/local/share/fontconfig/conf.avail/65-fonts-persian.conf +419 -0
- data/vendor/local/share/fontconfig/conf.avail/65-khmer.conf +16 -0
- data/vendor/local/share/fontconfig/conf.avail/65-nonlatin.conf +196 -0
- data/vendor/local/share/fontconfig/conf.avail/69-unifont.conf +28 -0
- data/vendor/local/share/fontconfig/conf.avail/70-no-bitmaps.conf +12 -0
- data/vendor/local/share/fontconfig/conf.avail/70-yes-bitmaps.conf +12 -0
- data/vendor/local/share/fontconfig/conf.avail/80-delicious.conf +19 -0
- data/vendor/local/share/fontconfig/conf.avail/90-synthetic.conf +64 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +122 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +53 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +123 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +121 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +117 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +75 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +120 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +92 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +93 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +397 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +428 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +452 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +342 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +315 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +1194 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +577 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +129 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +197 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Raster-Sources.html +600 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html +226 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +810 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +302 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Script-Surfaces.html +360 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +394 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +156 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +677 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +342 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +326 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +280 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XCB-Surfaces.html +527 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +535 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-XRender-Backend.html +170 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +636 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +380 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +653 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +559 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +2231 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +956 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +1637 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +2695 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +53 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +53 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +44 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +74 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +1138 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +747 -0
- data/vendor/local/share/gtk-doc/html/cairo/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +177 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.12.html +193 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +179 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +123 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +107 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +128 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-all.html +1122 -0
- data/vendor/local/share/gtk-doc/html/cairo/index.html +157 -0
- data/vendor/local/share/gtk-doc/html/cairo/index.sgml +833 -0
- data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +73 -0
- data/vendor/local/share/gtk-doc/html/cairo/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/cairo/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/general.html +38 -0
- data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/index.html +67 -0
- data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +138 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +373 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +172 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +243 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +247 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +91 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +278 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +241 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +225 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +134 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +218 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +383 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +214 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +226 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +187 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +142 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +766 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +688 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +278 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +860 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +161 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1597 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +154 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +528 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +169 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +160 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +347 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +176 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +953 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +87 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +186 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +97 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +565 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +280 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +133 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +314 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +237 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +217 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +887 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +292 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +479 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +542 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +787 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +171 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +3573 -0
- data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/style.css +66 -0
- data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
- data/vendor/local/share/license/cairo/AUTHORS +115 -0
- data/vendor/local/share/license/cairo/COPYING +33 -0
- data/vendor/local/share/license/cairo/COPYING-LGPL-2.1 +510 -0
- data/vendor/local/share/license/cairo/COPYING-MPL-1.1 +470 -0
- data/vendor/local/share/license/cairo/README +204 -0
- data/vendor/local/share/license/cairo/README.win32 +66 -0
- data/vendor/local/share/license/fontconfig/AUTHORS +3 -0
- data/vendor/local/share/license/fontconfig/COPYING +28 -0
- data/vendor/local/share/license/fontconfig/README +1484 -0
- data/vendor/local/share/license/freetype/README +83 -0
- data/vendor/local/share/license/freetype/README.git +50 -0
- data/vendor/local/share/license/libpng/README +215 -0
- data/vendor/local/share/license/libxml2/AUTHORS +5 -0
- data/vendor/local/share/license/libxml2/COPYING +23 -0
- data/vendor/local/share/license/libxml2/README +39 -0
- data/vendor/local/share/license/libxml2/README.tests +39 -0
- data/vendor/local/share/license/pixman/AUTHORS +0 -0
- data/vendor/local/share/license/pixman/COPYING +42 -0
- data/vendor/local/share/license/pixman/README +116 -0
- data/vendor/local/share/license/zlib/README +115 -0
- data/vendor/local/share/man/man1/freetype-config.1 +108 -0
- data/vendor/local/share/man/man1/xml2-config.1 +30 -0
- data/vendor/local/share/man/man1/xmlcatalog.1 +340 -0
- data/vendor/local/share/man/man1/xmllint.1 +647 -0
- data/vendor/local/share/man/man3/libpng.3 +6217 -0
- data/vendor/local/share/man/man3/libpngpf.3 +18 -0
- data/vendor/local/share/man/man3/libxml.3 +71 -0
- data/vendor/local/share/man/man5/png.5 +74 -0
- data/vendor/local/share/xml/fontconfig/fonts.dtd +233 -0
- metadata +774 -0
@@ -0,0 +1,18 @@
|
|
1
|
+
.TH LIBPNGPF 3 "October 23, 2014"
|
2
|
+
.SH NAME
|
3
|
+
libpng \- Portable Network Graphics (PNG) Reference Library 1.6.14
|
4
|
+
(private functions)
|
5
|
+
.SH SYNOPSIS
|
6
|
+
\fB#include \fI"pngpriv.h"
|
7
|
+
|
8
|
+
\fBAs of libpng version \fP\fI1.5.1\fP\fB, this section is no longer \fP\fImaintained\fP\fB, now that the private function prototypes are hidden in pngpriv.h and not accessible to applications. Look in pngpriv.h for the prototypes and a short description of each \fIfunction.
|
9
|
+
|
10
|
+
.SH DESCRIPTION
|
11
|
+
The functions previously listed here are used privately by libpng and are not
|
12
|
+
available for use by applications. They are not "exported" to applications
|
13
|
+
using shared libraries.
|
14
|
+
|
15
|
+
.SH SEE ALSO
|
16
|
+
.BR "png"(5), " libpng"(3), " zlib"(3), " deflate"(5), " " and " zlib"(5)
|
17
|
+
.SH AUTHOR
|
18
|
+
Glenn Randers-Pehrson
|
@@ -0,0 +1,71 @@
|
|
1
|
+
.TH libxml 3 "12 April 2000"
|
2
|
+
.SH NAME
|
3
|
+
libxml \- library used to parse XML files
|
4
|
+
.SH DESCRIPTION
|
5
|
+
The
|
6
|
+
.I libxml
|
7
|
+
library is used to parse XML files.
|
8
|
+
Its internal document representation is as close as possible to the
|
9
|
+
.I DOM
|
10
|
+
(Document Object Model) interface,
|
11
|
+
an API for accessing XML or HTML structured documents.
|
12
|
+
.LP
|
13
|
+
The
|
14
|
+
.I libxml
|
15
|
+
library also has a
|
16
|
+
.IR SAX -like
|
17
|
+
interface,
|
18
|
+
which is designed to be compatible with
|
19
|
+
.IR expat (1).
|
20
|
+
NOTE:
|
21
|
+
.IR SAX ,
|
22
|
+
the Simple API for XML,
|
23
|
+
is a standard interface for event-based XML parsing,
|
24
|
+
developed collaboratively by the members of the XML-DEV mailing list,
|
25
|
+
currently hosted by OASIS.
|
26
|
+
The
|
27
|
+
.I expat
|
28
|
+
library is a XML 1.0 parser written in C,
|
29
|
+
which aims to be fully conforming.
|
30
|
+
It is currently not a validating XML processor.
|
31
|
+
.LP
|
32
|
+
The
|
33
|
+
.I libxml
|
34
|
+
library now includes a nearly complete
|
35
|
+
.I XPath
|
36
|
+
implementation.
|
37
|
+
The
|
38
|
+
.I XPath
|
39
|
+
(XML Path Language) is a language for addressing parts of an
|
40
|
+
XML document,
|
41
|
+
designed to be used by both
|
42
|
+
.I XSLT
|
43
|
+
and
|
44
|
+
.IR XPointer .
|
45
|
+
.LP
|
46
|
+
The
|
47
|
+
.I libxml
|
48
|
+
library exports Push and Pull type parser interfaces for both XML and
|
49
|
+
.IR html .
|
50
|
+
.SH FILES
|
51
|
+
.TP 2.2i
|
52
|
+
.B /depot/lib/libxml_2.0.0/libxml.a
|
53
|
+
static library
|
54
|
+
.TP
|
55
|
+
.B /depot/lib/libxml_2.0.0/libxml.so
|
56
|
+
shared library
|
57
|
+
.TP
|
58
|
+
.B /depot/package/libxml_2.0.0/bin/xmllint
|
59
|
+
binary application for parsing XML files
|
60
|
+
.SH AUTHORS
|
61
|
+
Daniel Veillard (daniel@veillard.com).
|
62
|
+
Red Hat Inc.
|
63
|
+
Manual page by Ziying Sherwin (sherwin@nlm.nih.gov),
|
64
|
+
Lister Hill National Center for Biomedical Communications,
|
65
|
+
U.S. National Library of Medicine.
|
66
|
+
.SH SEE ALSO
|
67
|
+
.IR xmllint (1),
|
68
|
+
.IR libxslt (3),
|
69
|
+
.IR libexslt (3),
|
70
|
+
.IR xsltproc (1)
|
71
|
+
.\" end of manual page
|
@@ -0,0 +1,74 @@
|
|
1
|
+
.TH PNG 5 "October 23, 2014"
|
2
|
+
.SH NAME
|
3
|
+
png \- Portable Network Graphics (PNG) format
|
4
|
+
.SH DESCRIPTION
|
5
|
+
PNG (Portable Network Graphics) is an extensible file format for the
|
6
|
+
lossless, portable, well-compressed storage of raster images. PNG provides
|
7
|
+
a patent-free replacement for GIF and can also replace many
|
8
|
+
common uses of TIFF. Indexed-color, grayscale, and truecolor images are
|
9
|
+
supported, plus an optional alpha channel. Sample depths range from
|
10
|
+
1 to 16 bits.
|
11
|
+
.br
|
12
|
+
|
13
|
+
PNG is designed to work well in online viewing applications, such as the
|
14
|
+
World Wide Web, so it is fully streamable with a progressive display
|
15
|
+
option. PNG is robust, providing both full file integrity checking and
|
16
|
+
fast, simple detection of common transmission errors. Also, PNG can store
|
17
|
+
gamma and chromaticity data for improved color matching on heterogeneous
|
18
|
+
platforms.
|
19
|
+
|
20
|
+
.SH "SEE ALSO"
|
21
|
+
.BR "libpng"(3), " libpngpf"(3), " zlib"(3), " deflate"(5), " " and " zlib"(5)
|
22
|
+
.LP
|
23
|
+
PNG specification (second edition), November 2003:
|
24
|
+
.IP
|
25
|
+
.br
|
26
|
+
<http://www.w3.org/TR/2003/REC-PNG-20031110/
|
27
|
+
PNG 1.2 specification, July 1999:
|
28
|
+
.IP
|
29
|
+
.br
|
30
|
+
http://www.libpng.org/pub/png
|
31
|
+
.LP
|
32
|
+
PNG 1.0 specification, October 1996:
|
33
|
+
.IP
|
34
|
+
.br
|
35
|
+
RFC 2083
|
36
|
+
.IP
|
37
|
+
.br
|
38
|
+
ftp://ds.internic.net/rfc/rfc2083.txt
|
39
|
+
.br
|
40
|
+
or (as a W3C Recommendation) at
|
41
|
+
.br
|
42
|
+
http://www.w3.org/TR/REC-png.html
|
43
|
+
.SH AUTHORS
|
44
|
+
This man page: Glenn Randers-Pehrson
|
45
|
+
.LP
|
46
|
+
Portable Network Graphics (PNG) Specification (Second Edition)
|
47
|
+
Information technology - Computer graphics and image processing -
|
48
|
+
Portable Network Graphics (PNG): Functional specification.
|
49
|
+
ISO/IEC 15948:2003 (E) (November 10, 2003): David Duce and others.
|
50
|
+
.LP
|
51
|
+
Portable Network Graphics (PNG) Specification Version 1.2 (July 8, 1999):
|
52
|
+
Glenn Randers-Pehrson and others (png-list).
|
53
|
+
.LP
|
54
|
+
Portable Network Graphics (PNG) Specification Version 1.0 (October 1, 1996):
|
55
|
+
Thomas Boutell and others (png-list).
|
56
|
+
.LP
|
57
|
+
|
58
|
+
|
59
|
+
.SH COPYRIGHT NOTICE
|
60
|
+
.LP
|
61
|
+
This man page is Copyright (c) 1998-2006 Glenn Randers-Pehrson. See png.h
|
62
|
+
for conditions of use and distribution.
|
63
|
+
.LP
|
64
|
+
The PNG Specification (Second Edition) is
|
65
|
+
Copyright (c) 2003 W3C. (MIT, ERCIM, Keio), All Rights Reserved.
|
66
|
+
.LP
|
67
|
+
The PNG-1.2 specification is copyright (c) 1999 Glenn Randers-Pehrson.
|
68
|
+
See the specification for conditions of use and distribution.
|
69
|
+
.LP
|
70
|
+
The PNG-1.0 specification is copyright (c) 1996 Massachusetts Institute of
|
71
|
+
Technology. See the specification for conditions of use and distribution.
|
72
|
+
.LP
|
73
|
+
.\" end of man page
|
74
|
+
|
@@ -0,0 +1,233 @@
|
|
1
|
+
<!-- This is the Document Type Definition for font configuration files -->
|
2
|
+
<!ELEMENT fontconfig (dir |
|
3
|
+
cache |
|
4
|
+
cachedir |
|
5
|
+
include |
|
6
|
+
config |
|
7
|
+
selectfont |
|
8
|
+
match |
|
9
|
+
alias)* >
|
10
|
+
|
11
|
+
<!--
|
12
|
+
Add a directory that provides fonts
|
13
|
+
-->
|
14
|
+
<!ELEMENT dir (#PCDATA)>
|
15
|
+
<!ATTLIST dir
|
16
|
+
prefix CDATA "default"
|
17
|
+
xml:space (default|preserve) 'preserve'>
|
18
|
+
|
19
|
+
<!--
|
20
|
+
Define the per-user file that holds cache font information.
|
21
|
+
|
22
|
+
If the filename begins with '~', it is replaced with the users
|
23
|
+
home directory path.
|
24
|
+
-->
|
25
|
+
<!ELEMENT cache (#PCDATA)>
|
26
|
+
<!ATTLIST cache xml:space (default|preserve) 'preserve'>
|
27
|
+
|
28
|
+
<!--
|
29
|
+
Add a directory that is searched for font cache files.
|
30
|
+
These hold per-directory cache data and are searched in
|
31
|
+
order for each directory. When writing cache files, the first
|
32
|
+
directory which allows the cache file to be created is used.
|
33
|
+
|
34
|
+
A leading '~' in a directory name is replaced with the users
|
35
|
+
home directory path.
|
36
|
+
-->
|
37
|
+
<!ELEMENT cachedir (#PCDATA)>
|
38
|
+
<!ATTLIST cachedir
|
39
|
+
prefix CDATA "default"
|
40
|
+
xml:space (default|preserve) 'preserve'>
|
41
|
+
|
42
|
+
<!--
|
43
|
+
Reference another configuration file; note that this
|
44
|
+
is another complete font configuration file and not
|
45
|
+
just a file included by the XML parser.
|
46
|
+
|
47
|
+
Set 'ignore_missing' to 'yes' if errors are to be ignored.
|
48
|
+
|
49
|
+
If the filename begins with '~', it is replaced with the users
|
50
|
+
home directory path.
|
51
|
+
-->
|
52
|
+
<!ELEMENT include (#PCDATA)>
|
53
|
+
<!ATTLIST include
|
54
|
+
ignore_missing (no|yes) "no"
|
55
|
+
prefix CDATA "default"
|
56
|
+
deprecated (yes|no) "no"
|
57
|
+
xml:space (default|preserve) "preserve">
|
58
|
+
|
59
|
+
<!--
|
60
|
+
Global library configuration data
|
61
|
+
-->
|
62
|
+
<!ELEMENT config (blank|rescan)*>
|
63
|
+
|
64
|
+
<!--
|
65
|
+
Specify the set of Unicode encoding values which
|
66
|
+
represent glyphs that are allowed to contain no
|
67
|
+
data. With this list, fontconfig can examine
|
68
|
+
fonts for broken glyphs and eliminate them from
|
69
|
+
the set of valid Unicode chars. This idea
|
70
|
+
was borrowed from Mozilla
|
71
|
+
-->
|
72
|
+
<!ELEMENT blank (int|range)*>
|
73
|
+
|
74
|
+
<!--
|
75
|
+
Aliases are just a special case for multiple match elements
|
76
|
+
|
77
|
+
They are syntactically equivalent to:
|
78
|
+
|
79
|
+
<match>
|
80
|
+
<test name="family">
|
81
|
+
<string value=[family]/>
|
82
|
+
</test>
|
83
|
+
<edit name="family" mode="prepend">
|
84
|
+
<string value=[prefer]/>
|
85
|
+
...
|
86
|
+
</edit>
|
87
|
+
<edit name="family" mode="append">
|
88
|
+
<string value=[accept]/>
|
89
|
+
...
|
90
|
+
</edit>
|
91
|
+
<edit name="family" mode="append_last">
|
92
|
+
<string value=[default]/>
|
93
|
+
...
|
94
|
+
</edit>
|
95
|
+
</match>
|
96
|
+
-->
|
97
|
+
<!--
|
98
|
+
Periodically rescan the font configuration and
|
99
|
+
directories to synch internal state with filesystem
|
100
|
+
-->
|
101
|
+
<!ELEMENT rescan (int)>
|
102
|
+
|
103
|
+
<!--
|
104
|
+
Edit list of available fonts at startup/reload time
|
105
|
+
-->
|
106
|
+
<!ELEMENT selectfont (rejectfont | acceptfont)* >
|
107
|
+
|
108
|
+
<!ELEMENT rejectfont (glob | pattern)*>
|
109
|
+
|
110
|
+
<!ELEMENT acceptfont (glob | pattern)*>
|
111
|
+
|
112
|
+
<!ELEMENT glob (#PCDATA)>
|
113
|
+
|
114
|
+
<!ELEMENT pattern (patelt)*>
|
115
|
+
|
116
|
+
<!ENTITY % constant 'int|double|string|matrix|bool|charset|langset|const'>
|
117
|
+
|
118
|
+
<!ELEMENT patelt (%constant;)*>
|
119
|
+
<!ATTLIST patelt
|
120
|
+
name CDATA #REQUIRED>
|
121
|
+
|
122
|
+
<!ELEMENT alias (test?, family*, prefer?, accept?, default?)>
|
123
|
+
<!ATTLIST alias
|
124
|
+
binding (weak|strong|same) "weak">
|
125
|
+
<!ELEMENT prefer (family)*>
|
126
|
+
<!ELEMENT accept (family)*>
|
127
|
+
<!ELEMENT default (family)*>
|
128
|
+
<!ELEMENT family (#PCDATA)>
|
129
|
+
<!ATTLIST family xml:space (default|preserve) 'preserve'>
|
130
|
+
|
131
|
+
<!ENTITY % expr 'int|double|string|matrix|bool|charset|langset
|
132
|
+
|name|const
|
133
|
+
|or|and|eq|not_eq|less|less_eq|more|more_eq|contains|not_contains
|
134
|
+
|plus|minus|times|divide|not|if|floor|ceil|round|trunc'>
|
135
|
+
|
136
|
+
<!--
|
137
|
+
Match and edit patterns.
|
138
|
+
|
139
|
+
If 'target' is 'pattern', execute the match before selecting a font.
|
140
|
+
if 'target' is 'font', execute the match on the result of a font
|
141
|
+
selection.
|
142
|
+
-->
|
143
|
+
<!ELEMENT match (test|edit)+>
|
144
|
+
<!ATTLIST match
|
145
|
+
target (pattern|font|scan) "pattern">
|
146
|
+
|
147
|
+
<!--
|
148
|
+
Match a field in a pattern
|
149
|
+
|
150
|
+
if 'qual' is 'any', then the match succeeds if any value in the field matches.
|
151
|
+
if 'qual' is 'all', then the match succeeds only if all values match.
|
152
|
+
if 'qual' is 'first', then the match succeeds only if the first value matches.
|
153
|
+
if 'qual' is 'not_first', then the match succeeds only if any value other than
|
154
|
+
the first matches.
|
155
|
+
For match elements with target=font, if test 'target' is 'pattern',
|
156
|
+
then the test is applied to the pattern used in matching rather than
|
157
|
+
to the resulting font.
|
158
|
+
|
159
|
+
Match elements with target=scan are applied as fonts are scanned.
|
160
|
+
They edit the pattern generated from the scanned font and affect
|
161
|
+
what the fontconfig database contains.
|
162
|
+
-->
|
163
|
+
<!ELEMENT test (%expr;)*>
|
164
|
+
<!ATTLIST test
|
165
|
+
qual (any|all|first|not_first) "any"
|
166
|
+
name CDATA #REQUIRED
|
167
|
+
target (pattern|font|default) "default"
|
168
|
+
ignore-blanks (true|false) "false"
|
169
|
+
compare (eq|not_eq|less|less_eq|more|more_eq|contains|not_contains) "eq">
|
170
|
+
|
171
|
+
<!--
|
172
|
+
Edit a field in a pattern
|
173
|
+
|
174
|
+
The enclosed values are used together to edit the list of values
|
175
|
+
associated with 'name'.
|
176
|
+
|
177
|
+
If 'name' matches one of those used in a test element for this match element:
|
178
|
+
if 'mode' is 'assign', replace the matched value.
|
179
|
+
if 'mode' is 'assign_replace', replace all of the values
|
180
|
+
if 'mode' is 'prepend', insert before the matched value
|
181
|
+
if 'mode' is 'append', insert after the matched value
|
182
|
+
if 'mode' is 'prepend_first', insert before all of the values
|
183
|
+
if 'mode' is 'append_last', insert after all of the values
|
184
|
+
If 'name' doesn't match any of those used in a test element:
|
185
|
+
if 'mode' is 'assign' or 'assign_replace, replace all of the values
|
186
|
+
if 'mode' is 'prepend' or 'prepend_first', insert before all of the values
|
187
|
+
if 'mode' is 'append' or 'append_last', insert after all of the values
|
188
|
+
-->
|
189
|
+
<!ELEMENT edit (%expr;)*>
|
190
|
+
<!ATTLIST edit
|
191
|
+
name CDATA #REQUIRED
|
192
|
+
mode (assign|assign_replace|prepend|append|prepend_first|append_last|delete|delete_all) "assign"
|
193
|
+
binding (weak|strong|same) "weak">
|
194
|
+
|
195
|
+
<!--
|
196
|
+
Elements of expressions follow
|
197
|
+
-->
|
198
|
+
<!ELEMENT int (#PCDATA)>
|
199
|
+
<!ATTLIST int xml:space (default|preserve) 'preserve'>
|
200
|
+
<!ELEMENT double (#PCDATA)>
|
201
|
+
<!ATTLIST double xml:space (default|preserve) 'preserve'>
|
202
|
+
<!ELEMENT string (#PCDATA)>
|
203
|
+
<!ATTLIST string xml:space (default|preserve) 'preserve'>
|
204
|
+
<!ELEMENT matrix ((%expr;), (%expr;), (%expr;), (%expr;))>
|
205
|
+
<!ELEMENT bool (#PCDATA)>
|
206
|
+
<!ELEMENT charset (int|range)*>
|
207
|
+
<!ELEMENT range (int,int)>
|
208
|
+
<!ELEMENT langset (string)*>
|
209
|
+
<!ELEMENT name (#PCDATA)>
|
210
|
+
<!ATTLIST name xml:space (default|preserve) 'preserve'
|
211
|
+
target (default|font|pattern) 'default'>
|
212
|
+
<!ELEMENT const (#PCDATA)>
|
213
|
+
<!ATTLIST const xml:space (default|preserve) 'preserve'>
|
214
|
+
<!ELEMENT or (%expr;)*>
|
215
|
+
<!ELEMENT and (%expr;)*>
|
216
|
+
<!ELEMENT eq ((%expr;), (%expr;))>
|
217
|
+
<!ELEMENT not_eq ((%expr;), (%expr;))>
|
218
|
+
<!ELEMENT less ((%expr;), (%expr;))>
|
219
|
+
<!ELEMENT less_eq ((%expr;), (%expr;))>
|
220
|
+
<!ELEMENT more ((%expr;), (%expr;))>
|
221
|
+
<!ELEMENT more_eq ((%expr;), (%expr;))>
|
222
|
+
<!ELEMENT contains ((%expr;), (%expr;))>
|
223
|
+
<!ELEMENT not_contains ((%expr;), (%expr;))>
|
224
|
+
<!ELEMENT plus (%expr;)*>
|
225
|
+
<!ELEMENT minus (%expr;)*>
|
226
|
+
<!ELEMENT times (%expr;)*>
|
227
|
+
<!ELEMENT divide (%expr;)*>
|
228
|
+
<!ELEMENT not (%expr;)>
|
229
|
+
<!ELEMENT if ((%expr;), (%expr;), (%expr;))>
|
230
|
+
<!ELEMENT floor (%expr;)>
|
231
|
+
<!ELEMENT ceil (%expr;)>
|
232
|
+
<!ELEMENT round (%expr;)>
|
233
|
+
<!ELEMENT trunc (%expr;)>
|
metadata
ADDED
@@ -0,0 +1,774 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cairo
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.14.0
|
5
|
+
platform: x64-mingw32
|
6
|
+
authors:
|
7
|
+
- Kouhei Sutou
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-11-24 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: pkg-config
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 1.1.5
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 1.1.5
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: test-unit-notify
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake-compiler
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: packnga
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description: Ruby bindings for cairo
|
84
|
+
email:
|
85
|
+
- kou@cozmixng.org
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files:
|
89
|
+
- README.rdoc
|
90
|
+
files:
|
91
|
+
- AUTHORS
|
92
|
+
- COPYING
|
93
|
+
- GPL
|
94
|
+
- Gemfile
|
95
|
+
- NEWS
|
96
|
+
- README.rdoc
|
97
|
+
- Rakefile
|
98
|
+
- ext/cairo/cairo.def
|
99
|
+
- ext/cairo/depend
|
100
|
+
- ext/cairo/extconf.rb
|
101
|
+
- ext/cairo/rb_cairo.c
|
102
|
+
- ext/cairo/rb_cairo.h
|
103
|
+
- ext/cairo/rb_cairo_constants.c
|
104
|
+
- ext/cairo/rb_cairo_context.c
|
105
|
+
- ext/cairo/rb_cairo_device.c
|
106
|
+
- ext/cairo/rb_cairo_exception.c
|
107
|
+
- ext/cairo/rb_cairo_font_extents.c
|
108
|
+
- ext/cairo/rb_cairo_font_face.c
|
109
|
+
- ext/cairo/rb_cairo_font_options.c
|
110
|
+
- ext/cairo/rb_cairo_glyph.c
|
111
|
+
- ext/cairo/rb_cairo_io.c
|
112
|
+
- ext/cairo/rb_cairo_io.h
|
113
|
+
- ext/cairo/rb_cairo_matrix.c
|
114
|
+
- ext/cairo/rb_cairo_path.c
|
115
|
+
- ext/cairo/rb_cairo_pattern.c
|
116
|
+
- ext/cairo/rb_cairo_private.c
|
117
|
+
- ext/cairo/rb_cairo_private.h
|
118
|
+
- ext/cairo/rb_cairo_rectangle.c
|
119
|
+
- ext/cairo/rb_cairo_region.c
|
120
|
+
- ext/cairo/rb_cairo_scaled_font.c
|
121
|
+
- ext/cairo/rb_cairo_surface.c
|
122
|
+
- ext/cairo/rb_cairo_text_cluster.c
|
123
|
+
- ext/cairo/rb_cairo_text_extents.c
|
124
|
+
- lib/2.0/cairo.so
|
125
|
+
- lib/2.1/cairo.so
|
126
|
+
- lib/2.2/cairo.so
|
127
|
+
- lib/cairo.rb
|
128
|
+
- lib/cairo/color.rb
|
129
|
+
- lib/cairo/colors.rb
|
130
|
+
- lib/cairo/constants.rb
|
131
|
+
- lib/cairo/context.rb
|
132
|
+
- lib/cairo/context/blur.rb
|
133
|
+
- lib/cairo/context/circle.rb
|
134
|
+
- lib/cairo/context/color.rb
|
135
|
+
- lib/cairo/context/path.rb
|
136
|
+
- lib/cairo/context/rectangle.rb
|
137
|
+
- lib/cairo/context/triangle.rb
|
138
|
+
- lib/cairo/device.rb
|
139
|
+
- lib/cairo/paper.rb
|
140
|
+
- lib/cairo/papers.rb
|
141
|
+
- lib/cairo/path.rb
|
142
|
+
- lib/cairo/pattern.rb
|
143
|
+
- lib/cairo/point.rb
|
144
|
+
- lib/cairo/surface.rb
|
145
|
+
- samples/agg/aa_test.rb
|
146
|
+
- samples/blur.rb
|
147
|
+
- samples/pac-nomralize.rb
|
148
|
+
- samples/pac-tee.rb
|
149
|
+
- samples/pac.rb
|
150
|
+
- samples/png.rb
|
151
|
+
- samples/scalable.rb
|
152
|
+
- samples/text-on-path.rb
|
153
|
+
- samples/text2.rb
|
154
|
+
- test/cairo-test-utils.rb
|
155
|
+
- test/run-test.rb
|
156
|
+
- test/test_color.rb
|
157
|
+
- test/test_constants.rb
|
158
|
+
- test/test_context.rb
|
159
|
+
- test/test_exception.rb
|
160
|
+
- test/test_font_extents.rb
|
161
|
+
- test/test_font_face.rb
|
162
|
+
- test/test_font_options.rb
|
163
|
+
- test/test_image_surface.rb
|
164
|
+
- test/test_paper.rb
|
165
|
+
- test/test_quartz_image_surface.rb
|
166
|
+
- test/test_raster_source_pattern.rb
|
167
|
+
- test/test_recording_surface.rb
|
168
|
+
- test/test_region.rb
|
169
|
+
- test/test_scaled_font.rb
|
170
|
+
- test/test_script_device.rb
|
171
|
+
- test/test_script_surface.rb
|
172
|
+
- test/test_surface.rb
|
173
|
+
- test/test_tee_surface.rb
|
174
|
+
- test/test_text_cluster.rb
|
175
|
+
- test/test_text_extents.rb
|
176
|
+
- test/test_text_to_glyphs_data.rb
|
177
|
+
- test/test_xml_device.rb
|
178
|
+
- test/test_xml_surface.rb
|
179
|
+
- vendor/local/bin/fc-cache.exe
|
180
|
+
- vendor/local/bin/fc-cat.exe
|
181
|
+
- vendor/local/bin/fc-list.exe
|
182
|
+
- vendor/local/bin/fc-match.exe
|
183
|
+
- vendor/local/bin/fc-pattern.exe
|
184
|
+
- vendor/local/bin/fc-query.exe
|
185
|
+
- vendor/local/bin/fc-scan.exe
|
186
|
+
- vendor/local/bin/fc-validate.exe
|
187
|
+
- vendor/local/bin/freetype-config
|
188
|
+
- vendor/local/bin/libcairo-2.dll
|
189
|
+
- vendor/local/bin/libcairo-gobject-2.dll
|
190
|
+
- vendor/local/bin/libcairo-script-interpreter-2.dll
|
191
|
+
- vendor/local/bin/libfontconfig-1.dll
|
192
|
+
- vendor/local/bin/libfreetype-6.dll
|
193
|
+
- vendor/local/bin/libgcc_s_seh-1.dll
|
194
|
+
- vendor/local/bin/libpixman-1-0.dll
|
195
|
+
- vendor/local/bin/libpng-config
|
196
|
+
- vendor/local/bin/libpng16-16.dll
|
197
|
+
- vendor/local/bin/libpng16-config
|
198
|
+
- vendor/local/bin/libstdc++-6.dll
|
199
|
+
- vendor/local/bin/libwinpthread-1.dll
|
200
|
+
- vendor/local/bin/libxml2-2.dll
|
201
|
+
- vendor/local/bin/png-fix-itxt.exe
|
202
|
+
- vendor/local/bin/pngfix.exe
|
203
|
+
- vendor/local/bin/xml2-config
|
204
|
+
- vendor/local/bin/xmlcatalog.exe
|
205
|
+
- vendor/local/bin/xmllint.exe
|
206
|
+
- vendor/local/bin/zlib1.dll
|
207
|
+
- vendor/local/etc/fonts/conf.d/10-scale-bitmap-fonts.conf
|
208
|
+
- vendor/local/etc/fonts/conf.d/20-unhint-small-vera.conf
|
209
|
+
- vendor/local/etc/fonts/conf.d/30-metric-aliases.conf
|
210
|
+
- vendor/local/etc/fonts/conf.d/30-urw-aliases.conf
|
211
|
+
- vendor/local/etc/fonts/conf.d/40-nonlatin.conf
|
212
|
+
- vendor/local/etc/fonts/conf.d/45-latin.conf
|
213
|
+
- vendor/local/etc/fonts/conf.d/49-sansserif.conf
|
214
|
+
- vendor/local/etc/fonts/conf.d/50-user.conf
|
215
|
+
- vendor/local/etc/fonts/conf.d/51-local.conf
|
216
|
+
- vendor/local/etc/fonts/conf.d/60-latin.conf
|
217
|
+
- vendor/local/etc/fonts/conf.d/65-fonts-persian.conf
|
218
|
+
- vendor/local/etc/fonts/conf.d/65-nonlatin.conf
|
219
|
+
- vendor/local/etc/fonts/conf.d/69-unifont.conf
|
220
|
+
- vendor/local/etc/fonts/conf.d/80-delicious.conf
|
221
|
+
- vendor/local/etc/fonts/conf.d/90-synthetic.conf
|
222
|
+
- vendor/local/etc/fonts/conf.d/README
|
223
|
+
- vendor/local/etc/fonts/fonts.conf
|
224
|
+
- vendor/local/include/cairo/cairo-deprecated.h
|
225
|
+
- vendor/local/include/cairo/cairo-features.h
|
226
|
+
- vendor/local/include/cairo/cairo-ft.h
|
227
|
+
- vendor/local/include/cairo/cairo-gobject.h
|
228
|
+
- vendor/local/include/cairo/cairo-pdf.h
|
229
|
+
- vendor/local/include/cairo/cairo-ps.h
|
230
|
+
- vendor/local/include/cairo/cairo-script-interpreter.h
|
231
|
+
- vendor/local/include/cairo/cairo-script.h
|
232
|
+
- vendor/local/include/cairo/cairo-svg.h
|
233
|
+
- vendor/local/include/cairo/cairo-version.h
|
234
|
+
- vendor/local/include/cairo/cairo-win32.h
|
235
|
+
- vendor/local/include/cairo/cairo.h
|
236
|
+
- vendor/local/include/fontconfig/fcfreetype.h
|
237
|
+
- vendor/local/include/fontconfig/fcprivate.h
|
238
|
+
- vendor/local/include/fontconfig/fontconfig.h
|
239
|
+
- vendor/local/include/freetype2/config/ftconfig.h
|
240
|
+
- vendor/local/include/freetype2/config/ftheader.h
|
241
|
+
- vendor/local/include/freetype2/config/ftmodule.h
|
242
|
+
- vendor/local/include/freetype2/config/ftoption.h
|
243
|
+
- vendor/local/include/freetype2/config/ftstdlib.h
|
244
|
+
- vendor/local/include/freetype2/freetype.h
|
245
|
+
- vendor/local/include/freetype2/ft2build.h
|
246
|
+
- vendor/local/include/freetype2/ftadvanc.h
|
247
|
+
- vendor/local/include/freetype2/ftautoh.h
|
248
|
+
- vendor/local/include/freetype2/ftbbox.h
|
249
|
+
- vendor/local/include/freetype2/ftbdf.h
|
250
|
+
- vendor/local/include/freetype2/ftbitmap.h
|
251
|
+
- vendor/local/include/freetype2/ftbzip2.h
|
252
|
+
- vendor/local/include/freetype2/ftcache.h
|
253
|
+
- vendor/local/include/freetype2/ftcffdrv.h
|
254
|
+
- vendor/local/include/freetype2/ftchapters.h
|
255
|
+
- vendor/local/include/freetype2/ftcid.h
|
256
|
+
- vendor/local/include/freetype2/fterrdef.h
|
257
|
+
- vendor/local/include/freetype2/fterrors.h
|
258
|
+
- vendor/local/include/freetype2/ftgasp.h
|
259
|
+
- vendor/local/include/freetype2/ftglyph.h
|
260
|
+
- vendor/local/include/freetype2/ftgxval.h
|
261
|
+
- vendor/local/include/freetype2/ftgzip.h
|
262
|
+
- vendor/local/include/freetype2/ftimage.h
|
263
|
+
- vendor/local/include/freetype2/ftincrem.h
|
264
|
+
- vendor/local/include/freetype2/ftlcdfil.h
|
265
|
+
- vendor/local/include/freetype2/ftlist.h
|
266
|
+
- vendor/local/include/freetype2/ftlzw.h
|
267
|
+
- vendor/local/include/freetype2/ftmac.h
|
268
|
+
- vendor/local/include/freetype2/ftmm.h
|
269
|
+
- vendor/local/include/freetype2/ftmodapi.h
|
270
|
+
- vendor/local/include/freetype2/ftmoderr.h
|
271
|
+
- vendor/local/include/freetype2/ftotval.h
|
272
|
+
- vendor/local/include/freetype2/ftoutln.h
|
273
|
+
- vendor/local/include/freetype2/ftpfr.h
|
274
|
+
- vendor/local/include/freetype2/ftrender.h
|
275
|
+
- vendor/local/include/freetype2/ftsizes.h
|
276
|
+
- vendor/local/include/freetype2/ftsnames.h
|
277
|
+
- vendor/local/include/freetype2/ftstroke.h
|
278
|
+
- vendor/local/include/freetype2/ftsynth.h
|
279
|
+
- vendor/local/include/freetype2/ftsystem.h
|
280
|
+
- vendor/local/include/freetype2/fttrigon.h
|
281
|
+
- vendor/local/include/freetype2/ftttdrv.h
|
282
|
+
- vendor/local/include/freetype2/fttypes.h
|
283
|
+
- vendor/local/include/freetype2/ftwinfnt.h
|
284
|
+
- vendor/local/include/freetype2/ftxf86.h
|
285
|
+
- vendor/local/include/freetype2/t1tables.h
|
286
|
+
- vendor/local/include/freetype2/ttnameid.h
|
287
|
+
- vendor/local/include/freetype2/tttables.h
|
288
|
+
- vendor/local/include/freetype2/tttags.h
|
289
|
+
- vendor/local/include/freetype2/ttunpat.h
|
290
|
+
- vendor/local/include/libpng16/png.h
|
291
|
+
- vendor/local/include/libpng16/pngconf.h
|
292
|
+
- vendor/local/include/libpng16/pnglibconf.h
|
293
|
+
- vendor/local/include/libxml2/libxml/DOCBparser.h
|
294
|
+
- vendor/local/include/libxml2/libxml/HTMLparser.h
|
295
|
+
- vendor/local/include/libxml2/libxml/HTMLtree.h
|
296
|
+
- vendor/local/include/libxml2/libxml/SAX.h
|
297
|
+
- vendor/local/include/libxml2/libxml/SAX2.h
|
298
|
+
- vendor/local/include/libxml2/libxml/c14n.h
|
299
|
+
- vendor/local/include/libxml2/libxml/catalog.h
|
300
|
+
- vendor/local/include/libxml2/libxml/chvalid.h
|
301
|
+
- vendor/local/include/libxml2/libxml/debugXML.h
|
302
|
+
- vendor/local/include/libxml2/libxml/dict.h
|
303
|
+
- vendor/local/include/libxml2/libxml/encoding.h
|
304
|
+
- vendor/local/include/libxml2/libxml/entities.h
|
305
|
+
- vendor/local/include/libxml2/libxml/globals.h
|
306
|
+
- vendor/local/include/libxml2/libxml/hash.h
|
307
|
+
- vendor/local/include/libxml2/libxml/list.h
|
308
|
+
- vendor/local/include/libxml2/libxml/nanoftp.h
|
309
|
+
- vendor/local/include/libxml2/libxml/nanohttp.h
|
310
|
+
- vendor/local/include/libxml2/libxml/parser.h
|
311
|
+
- vendor/local/include/libxml2/libxml/parserInternals.h
|
312
|
+
- vendor/local/include/libxml2/libxml/pattern.h
|
313
|
+
- vendor/local/include/libxml2/libxml/relaxng.h
|
314
|
+
- vendor/local/include/libxml2/libxml/schemasInternals.h
|
315
|
+
- vendor/local/include/libxml2/libxml/schematron.h
|
316
|
+
- vendor/local/include/libxml2/libxml/threads.h
|
317
|
+
- vendor/local/include/libxml2/libxml/tree.h
|
318
|
+
- vendor/local/include/libxml2/libxml/uri.h
|
319
|
+
- vendor/local/include/libxml2/libxml/valid.h
|
320
|
+
- vendor/local/include/libxml2/libxml/xinclude.h
|
321
|
+
- vendor/local/include/libxml2/libxml/xlink.h
|
322
|
+
- vendor/local/include/libxml2/libxml/xmlIO.h
|
323
|
+
- vendor/local/include/libxml2/libxml/xmlautomata.h
|
324
|
+
- vendor/local/include/libxml2/libxml/xmlerror.h
|
325
|
+
- vendor/local/include/libxml2/libxml/xmlexports.h
|
326
|
+
- vendor/local/include/libxml2/libxml/xmlmemory.h
|
327
|
+
- vendor/local/include/libxml2/libxml/xmlmodule.h
|
328
|
+
- vendor/local/include/libxml2/libxml/xmlreader.h
|
329
|
+
- vendor/local/include/libxml2/libxml/xmlregexp.h
|
330
|
+
- vendor/local/include/libxml2/libxml/xmlsave.h
|
331
|
+
- vendor/local/include/libxml2/libxml/xmlschemas.h
|
332
|
+
- vendor/local/include/libxml2/libxml/xmlschemastypes.h
|
333
|
+
- vendor/local/include/libxml2/libxml/xmlstring.h
|
334
|
+
- vendor/local/include/libxml2/libxml/xmlunicode.h
|
335
|
+
- vendor/local/include/libxml2/libxml/xmlversion.h
|
336
|
+
- vendor/local/include/libxml2/libxml/xmlwriter.h
|
337
|
+
- vendor/local/include/libxml2/libxml/xpath.h
|
338
|
+
- vendor/local/include/libxml2/libxml/xpathInternals.h
|
339
|
+
- vendor/local/include/libxml2/libxml/xpointer.h
|
340
|
+
- vendor/local/include/pixman-1/pixman-version.h
|
341
|
+
- vendor/local/include/pixman-1/pixman.h
|
342
|
+
- vendor/local/include/png.h
|
343
|
+
- vendor/local/include/pngconf.h
|
344
|
+
- vendor/local/include/pnglibconf.h
|
345
|
+
- vendor/local/include/zconf.h
|
346
|
+
- vendor/local/include/zlib.h
|
347
|
+
- vendor/local/lib/cmake/libxml2/libxml2-config.cmake
|
348
|
+
- vendor/local/lib/fontconfig.def
|
349
|
+
- vendor/local/lib/libcairo-gobject.a
|
350
|
+
- vendor/local/lib/libcairo-gobject.dll.a
|
351
|
+
- vendor/local/lib/libcairo-gobject.la
|
352
|
+
- vendor/local/lib/libcairo-script-interpreter.a
|
353
|
+
- vendor/local/lib/libcairo-script-interpreter.dll.a
|
354
|
+
- vendor/local/lib/libcairo-script-interpreter.la
|
355
|
+
- vendor/local/lib/libcairo.a
|
356
|
+
- vendor/local/lib/libcairo.dll.a
|
357
|
+
- vendor/local/lib/libcairo.la
|
358
|
+
- vendor/local/lib/libfontconfig.dll.a
|
359
|
+
- vendor/local/lib/libfontconfig.la
|
360
|
+
- vendor/local/lib/libfreetype.a
|
361
|
+
- vendor/local/lib/libfreetype.dll.a
|
362
|
+
- vendor/local/lib/libfreetype.la
|
363
|
+
- vendor/local/lib/libpixman-1.a
|
364
|
+
- vendor/local/lib/libpixman-1.dll.a
|
365
|
+
- vendor/local/lib/libpixman-1.la
|
366
|
+
- vendor/local/lib/libpng.a
|
367
|
+
- vendor/local/lib/libpng.dll.a
|
368
|
+
- vendor/local/lib/libpng.la
|
369
|
+
- vendor/local/lib/libpng16.a
|
370
|
+
- vendor/local/lib/libpng16.dll.a
|
371
|
+
- vendor/local/lib/libpng16.la
|
372
|
+
- vendor/local/lib/libxml2.a
|
373
|
+
- vendor/local/lib/libxml2.dll.a
|
374
|
+
- vendor/local/lib/libxml2.la
|
375
|
+
- vendor/local/lib/libz.a
|
376
|
+
- vendor/local/lib/libz.dll.a
|
377
|
+
- vendor/local/lib/pkgconfig/cairo-fc.pc
|
378
|
+
- vendor/local/lib/pkgconfig/cairo-ft.pc
|
379
|
+
- vendor/local/lib/pkgconfig/cairo-gobject.pc
|
380
|
+
- vendor/local/lib/pkgconfig/cairo-pdf.pc
|
381
|
+
- vendor/local/lib/pkgconfig/cairo-png.pc
|
382
|
+
- vendor/local/lib/pkgconfig/cairo-ps.pc
|
383
|
+
- vendor/local/lib/pkgconfig/cairo-script.pc
|
384
|
+
- vendor/local/lib/pkgconfig/cairo-svg.pc
|
385
|
+
- vendor/local/lib/pkgconfig/cairo-win32-font.pc
|
386
|
+
- vendor/local/lib/pkgconfig/cairo-win32.pc
|
387
|
+
- vendor/local/lib/pkgconfig/cairo.pc
|
388
|
+
- vendor/local/lib/pkgconfig/fontconfig.pc
|
389
|
+
- vendor/local/lib/pkgconfig/freetype2.pc
|
390
|
+
- vendor/local/lib/pkgconfig/libpng.pc
|
391
|
+
- vendor/local/lib/pkgconfig/libpng16.pc
|
392
|
+
- vendor/local/lib/pkgconfig/libxml-2.0.pc
|
393
|
+
- vendor/local/lib/pkgconfig/pixman-1.pc
|
394
|
+
- vendor/local/lib/pkgconfig/zlib.pc
|
395
|
+
- vendor/local/lib/xml2Conf.sh
|
396
|
+
- vendor/local/share/aclocal/freetype2.m4
|
397
|
+
- vendor/local/share/aclocal/libxml.m4
|
398
|
+
- vendor/local/share/doc/libxml2-2.9.2/Copyright
|
399
|
+
- vendor/local/share/doc/libxml2-2.9.2/examples/testHTML.c
|
400
|
+
- vendor/local/share/doc/libxml2-2.9.2/examples/testSAX.c
|
401
|
+
- vendor/local/share/doc/libxml2-2.9.2/examples/testXPath.c
|
402
|
+
- vendor/local/share/doc/libxml2-2.9.2/examples/xmllint.c
|
403
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/DOM.gif
|
404
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/FAQ.html
|
405
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/Libxml2-Logo-180x168.gif
|
406
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/Libxml2-Logo-90x34.gif
|
407
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/encoding.html
|
408
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/examples.xml
|
409
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/examples.xsl
|
410
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/book1.html
|
411
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/home.png
|
412
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/index.html
|
413
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/left.png
|
414
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-DOCBparser.html
|
415
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-HTMLparser.html
|
416
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-HTMLtree.html
|
417
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-SAX.html
|
418
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-SAX2.html
|
419
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-c14n.html
|
420
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-catalog.html
|
421
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-chvalid.html
|
422
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-debugXML.html
|
423
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-dict.html
|
424
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-encoding.html
|
425
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-entities.html
|
426
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-globals.html
|
427
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-hash.html
|
428
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-lib.html
|
429
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-list.html
|
430
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-nanoftp.html
|
431
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-nanohttp.html
|
432
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-parser.html
|
433
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-parserInternals.html
|
434
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-pattern.html
|
435
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-relaxng.html
|
436
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-schemasInternals.html
|
437
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-schematron.html
|
438
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-threads.html
|
439
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-tree.html
|
440
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-uri.html
|
441
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-valid.html
|
442
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xinclude.html
|
443
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xlink.html
|
444
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlIO.html
|
445
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlautomata.html
|
446
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlerror.html
|
447
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlexports.html
|
448
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlmemory.html
|
449
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlmodule.html
|
450
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlreader.html
|
451
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlregexp.html
|
452
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlsave.html
|
453
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlschemas.html
|
454
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlschemastypes.html
|
455
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlstring.html
|
456
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlunicode.html
|
457
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlversion.html
|
458
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlwriter.html
|
459
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpath.html
|
460
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpathInternals.html
|
461
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpointer.html
|
462
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xzlib.html
|
463
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/right.png
|
464
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/html/up.png
|
465
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/index.html
|
466
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/io1.c
|
467
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/io1.res
|
468
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/io2.c
|
469
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/io2.res
|
470
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/libxml.gif
|
471
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/parse1.c
|
472
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/parse2.c
|
473
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/parse3.c
|
474
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/parse4.c
|
475
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/reader1.c
|
476
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/reader1.res
|
477
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/reader2.c
|
478
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/reader3.c
|
479
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/reader3.res
|
480
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/reader4.c
|
481
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/reader4.res
|
482
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/redhat.gif
|
483
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/smallfootonly.gif
|
484
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/structure.gif
|
485
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/test1.xml
|
486
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/test2.xml
|
487
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/test3.xml
|
488
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/testWriter.c
|
489
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tree1.c
|
490
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tree1.res
|
491
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tree2.c
|
492
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tree2.res
|
493
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tst.xml
|
494
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apa.html
|
495
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apb.html
|
496
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apc.html
|
497
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apd.html
|
498
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ape.html
|
499
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apf.html
|
500
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apg.html
|
501
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/aph.html
|
502
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/api.html
|
503
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s02.html
|
504
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s03.html
|
505
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s04.html
|
506
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s05.html
|
507
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s06.html
|
508
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s07.html
|
509
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s08.html
|
510
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s09.html
|
511
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/blank.png
|
512
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/1.png
|
513
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/10.png
|
514
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/2.png
|
515
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/3.png
|
516
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/4.png
|
517
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/5.png
|
518
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/6.png
|
519
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/7.png
|
520
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/8.png
|
521
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/9.png
|
522
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/caution.png
|
523
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/draft.png
|
524
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/home.png
|
525
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/important.png
|
526
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/next.png
|
527
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/note.png
|
528
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/prev.png
|
529
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/tip.png
|
530
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-blank.png
|
531
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-minus.png
|
532
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-plus.png
|
533
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/up.png
|
534
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/warning.png
|
535
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeaddattribute.c
|
536
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeaddkeyword.c
|
537
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeconvert.c
|
538
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includegetattribute.c
|
539
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includekeyword.c
|
540
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includexpath.c
|
541
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/index.html
|
542
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ix01.html
|
543
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/tutorial/xmltutorial.pdf
|
544
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/w3c.png
|
545
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/writer.xml
|
546
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/xml.html
|
547
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/xpath1.c
|
548
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/xpath1.res
|
549
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/xpath2.c
|
550
|
+
- vendor/local/share/doc/libxml2-2.9.2/html/xpath2.res
|
551
|
+
- vendor/local/share/fontconfig/conf.avail/10-autohint.conf
|
552
|
+
- vendor/local/share/fontconfig/conf.avail/10-no-sub-pixel.conf
|
553
|
+
- vendor/local/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf
|
554
|
+
- vendor/local/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf
|
555
|
+
- vendor/local/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf
|
556
|
+
- vendor/local/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf
|
557
|
+
- vendor/local/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf
|
558
|
+
- vendor/local/share/fontconfig/conf.avail/10-unhinted.conf
|
559
|
+
- vendor/local/share/fontconfig/conf.avail/11-lcdfilter-default.conf
|
560
|
+
- vendor/local/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf
|
561
|
+
- vendor/local/share/fontconfig/conf.avail/11-lcdfilter-light.conf
|
562
|
+
- vendor/local/share/fontconfig/conf.avail/20-unhint-small-vera.conf
|
563
|
+
- vendor/local/share/fontconfig/conf.avail/25-unhint-nonlatin.conf
|
564
|
+
- vendor/local/share/fontconfig/conf.avail/30-metric-aliases.conf
|
565
|
+
- vendor/local/share/fontconfig/conf.avail/30-urw-aliases.conf
|
566
|
+
- vendor/local/share/fontconfig/conf.avail/40-nonlatin.conf
|
567
|
+
- vendor/local/share/fontconfig/conf.avail/45-latin.conf
|
568
|
+
- vendor/local/share/fontconfig/conf.avail/49-sansserif.conf
|
569
|
+
- vendor/local/share/fontconfig/conf.avail/50-user.conf
|
570
|
+
- vendor/local/share/fontconfig/conf.avail/51-local.conf
|
571
|
+
- vendor/local/share/fontconfig/conf.avail/60-latin.conf
|
572
|
+
- vendor/local/share/fontconfig/conf.avail/65-fonts-persian.conf
|
573
|
+
- vendor/local/share/fontconfig/conf.avail/65-khmer.conf
|
574
|
+
- vendor/local/share/fontconfig/conf.avail/65-nonlatin.conf
|
575
|
+
- vendor/local/share/fontconfig/conf.avail/69-unifont.conf
|
576
|
+
- vendor/local/share/fontconfig/conf.avail/70-no-bitmaps.conf
|
577
|
+
- vendor/local/share/fontconfig/conf.avail/70-yes-bitmaps.conf
|
578
|
+
- vendor/local/share/fontconfig/conf.avail/80-delicious.conf
|
579
|
+
- vendor/local/share/fontconfig/conf.avail/90-synthetic.conf
|
580
|
+
- vendor/local/share/gtk-doc/html/cairo/bindings-errors.html
|
581
|
+
- vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html
|
582
|
+
- vendor/local/share/gtk-doc/html/cairo/bindings-memory.html
|
583
|
+
- vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html
|
584
|
+
- vendor/local/share/gtk-doc/html/cairo/bindings-path.html
|
585
|
+
- vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html
|
586
|
+
- vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html
|
587
|
+
- vendor/local/share/gtk-doc/html/cairo/bindings-streams.html
|
588
|
+
- vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html
|
589
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html
|
590
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html
|
591
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html
|
592
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html
|
593
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html
|
594
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html
|
595
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html
|
596
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html
|
597
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html
|
598
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-Raster-Sources.html
|
599
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html
|
600
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html
|
601
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html
|
602
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-Script-Surfaces.html
|
603
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html
|
604
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-Types.html
|
605
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html
|
606
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html
|
607
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html
|
608
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html
|
609
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-XCB-Surfaces.html
|
610
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html
|
611
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-XLib-XRender-Backend.html
|
612
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html
|
613
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html
|
614
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html
|
615
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html
|
616
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html
|
617
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html
|
618
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html
|
619
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html
|
620
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html
|
621
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html
|
622
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-support.html
|
623
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html
|
624
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo-text.html
|
625
|
+
- vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2
|
626
|
+
- vendor/local/share/gtk-doc/html/cairo/home.png
|
627
|
+
- vendor/local/share/gtk-doc/html/cairo/index-1.10.html
|
628
|
+
- vendor/local/share/gtk-doc/html/cairo/index-1.12.html
|
629
|
+
- vendor/local/share/gtk-doc/html/cairo/index-1.2.html
|
630
|
+
- vendor/local/share/gtk-doc/html/cairo/index-1.4.html
|
631
|
+
- vendor/local/share/gtk-doc/html/cairo/index-1.6.html
|
632
|
+
- vendor/local/share/gtk-doc/html/cairo/index-1.8.html
|
633
|
+
- vendor/local/share/gtk-doc/html/cairo/index-all.html
|
634
|
+
- vendor/local/share/gtk-doc/html/cairo/index.html
|
635
|
+
- vendor/local/share/gtk-doc/html/cairo/index.sgml
|
636
|
+
- vendor/local/share/gtk-doc/html/cairo/language-bindings.html
|
637
|
+
- vendor/local/share/gtk-doc/html/cairo/left.png
|
638
|
+
- vendor/local/share/gtk-doc/html/cairo/right.png
|
639
|
+
- vendor/local/share/gtk-doc/html/cairo/style.css
|
640
|
+
- vendor/local/share/gtk-doc/html/cairo/up.png
|
641
|
+
- vendor/local/share/gtk-doc/html/libxml2/general.html
|
642
|
+
- vendor/local/share/gtk-doc/html/libxml2/home.png
|
643
|
+
- vendor/local/share/gtk-doc/html/libxml2/index.html
|
644
|
+
- vendor/local/share/gtk-doc/html/libxml2/left.png
|
645
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html
|
646
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html
|
647
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html
|
648
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html
|
649
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html
|
650
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html
|
651
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html
|
652
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html
|
653
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html
|
654
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html
|
655
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html
|
656
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html
|
657
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html
|
658
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html
|
659
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html
|
660
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html
|
661
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html
|
662
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html
|
663
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html
|
664
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html
|
665
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html
|
666
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html
|
667
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html
|
668
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html
|
669
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html
|
670
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html
|
671
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html
|
672
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html
|
673
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html
|
674
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html
|
675
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html
|
676
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html
|
677
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html
|
678
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html
|
679
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html
|
680
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html
|
681
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html
|
682
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html
|
683
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html
|
684
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html
|
685
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html
|
686
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html
|
687
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html
|
688
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html
|
689
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html
|
690
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html
|
691
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html
|
692
|
+
- vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp
|
693
|
+
- vendor/local/share/gtk-doc/html/libxml2/right.png
|
694
|
+
- vendor/local/share/gtk-doc/html/libxml2/style.css
|
695
|
+
- vendor/local/share/gtk-doc/html/libxml2/up.png
|
696
|
+
- vendor/local/share/license/cairo/AUTHORS
|
697
|
+
- vendor/local/share/license/cairo/COPYING
|
698
|
+
- vendor/local/share/license/cairo/COPYING-LGPL-2.1
|
699
|
+
- vendor/local/share/license/cairo/COPYING-MPL-1.1
|
700
|
+
- vendor/local/share/license/cairo/README
|
701
|
+
- vendor/local/share/license/cairo/README.win32
|
702
|
+
- vendor/local/share/license/fontconfig/AUTHORS
|
703
|
+
- vendor/local/share/license/fontconfig/COPYING
|
704
|
+
- vendor/local/share/license/fontconfig/README
|
705
|
+
- vendor/local/share/license/freetype/README
|
706
|
+
- vendor/local/share/license/freetype/README.git
|
707
|
+
- vendor/local/share/license/libpng/README
|
708
|
+
- vendor/local/share/license/libxml2/AUTHORS
|
709
|
+
- vendor/local/share/license/libxml2/COPYING
|
710
|
+
- vendor/local/share/license/libxml2/README
|
711
|
+
- vendor/local/share/license/libxml2/README.tests
|
712
|
+
- vendor/local/share/license/pixman/AUTHORS
|
713
|
+
- vendor/local/share/license/pixman/COPYING
|
714
|
+
- vendor/local/share/license/pixman/README
|
715
|
+
- vendor/local/share/license/zlib/README
|
716
|
+
- vendor/local/share/man/man1/freetype-config.1
|
717
|
+
- vendor/local/share/man/man1/xml2-config.1
|
718
|
+
- vendor/local/share/man/man1/xmlcatalog.1
|
719
|
+
- vendor/local/share/man/man1/xmllint.1
|
720
|
+
- vendor/local/share/man/man3/libpng.3
|
721
|
+
- vendor/local/share/man/man3/libpngpf.3
|
722
|
+
- vendor/local/share/man/man3/libxml.3
|
723
|
+
- vendor/local/share/man/man5/png.5
|
724
|
+
- vendor/local/share/xml/fontconfig/fonts.dtd
|
725
|
+
homepage: http://cairographics.org/rcairo
|
726
|
+
licenses:
|
727
|
+
- Ruby's
|
728
|
+
metadata: {}
|
729
|
+
post_install_message:
|
730
|
+
rdoc_options: []
|
731
|
+
require_paths:
|
732
|
+
- lib
|
733
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
734
|
+
requirements:
|
735
|
+
- - ">="
|
736
|
+
- !ruby/object:Gem::Version
|
737
|
+
version: '0'
|
738
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
739
|
+
requirements:
|
740
|
+
- - ">="
|
741
|
+
- !ruby/object:Gem::Version
|
742
|
+
version: '0'
|
743
|
+
requirements: []
|
744
|
+
rubyforge_project:
|
745
|
+
rubygems_version: 2.2.2
|
746
|
+
signing_key:
|
747
|
+
specification_version: 4
|
748
|
+
summary: Ruby bindings for cairo
|
749
|
+
test_files:
|
750
|
+
- test/test_constants.rb
|
751
|
+
- test/test_color.rb
|
752
|
+
- test/test_paper.rb
|
753
|
+
- test/test_raster_source_pattern.rb
|
754
|
+
- test/test_quartz_image_surface.rb
|
755
|
+
- test/test_exception.rb
|
756
|
+
- test/test_region.rb
|
757
|
+
- test/test_surface.rb
|
758
|
+
- test/test_scaled_font.rb
|
759
|
+
- test/test_font_extents.rb
|
760
|
+
- test/test_text_to_glyphs_data.rb
|
761
|
+
- test/test_image_surface.rb
|
762
|
+
- test/test_tee_surface.rb
|
763
|
+
- test/run-test.rb
|
764
|
+
- test/test_xml_surface.rb
|
765
|
+
- test/test_text_cluster.rb
|
766
|
+
- test/test_script_device.rb
|
767
|
+
- test/test_font_face.rb
|
768
|
+
- test/test_recording_surface.rb
|
769
|
+
- test/test_context.rb
|
770
|
+
- test/test_font_options.rb
|
771
|
+
- test/cairo-test-utils.rb
|
772
|
+
- test/test_text_extents.rb
|
773
|
+
- test/test_xml_device.rb
|
774
|
+
- test/test_script_surface.rb
|