gtksourceview3 1.2.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/README +29 -0
- data/Rakefile +29 -0
- data/ext/gtksourceview3/depend +6 -0
- data/ext/gtksourceview3/extconf.rb +76 -0
- data/ext/gtksourceview3/gtksourceview3.def +2 -0
- data/ext/gtksourceview3/rbgtksource.c +53 -0
- data/ext/gtksourceview3/rbgtksourcebuffer.c +318 -0
- data/ext/gtksourceview3/rbgtksourcegutter.c +82 -0
- data/ext/gtksourceview3/rbgtksourcegutterrenderer.c +143 -0
- data/ext/gtksourceview3/rbgtksourcegutterrendererpixbuf.c +42 -0
- data/ext/gtksourceview3/rbgtksourcegutterrenderertext.c +64 -0
- data/ext/gtksourceview3/rbgtksourcelanguage.c +124 -0
- data/ext/gtksourceview3/rbgtksourcelanguagemanager.c +114 -0
- data/ext/gtksourceview3/rbgtksourcemark.c +85 -0
- data/ext/gtksourceview3/rbgtksourcemarkattributes.c +77 -0
- data/ext/gtksourceview3/rbgtksourceprintcompositor.c +171 -0
- data/ext/gtksourceview3/rbgtksourcestyle.c +42 -0
- data/ext/gtksourceview3/rbgtksourcestylescheme.c +72 -0
- data/ext/gtksourceview3/rbgtksourcestyleschememanager.c +140 -0
- data/ext/gtksourceview3/rbgtksourceundomanager.c +83 -0
- data/ext/gtksourceview3/rbgtksourceview.c +94 -0
- data/ext/gtksourceview3/rbgtksourceview3conversions.h +43 -0
- data/ext/gtksourceview3/rbgtksourceview3private.h +54 -0
- data/extconf.rb +49 -0
- data/lib/1.8/gtksourceview3.so +0 -0
- data/lib/1.9/gtksourceview3.so +0 -0
- data/lib/gtksourceview3.rb +20 -0
- data/lib/gtksourceview3/deprecated.rb +47 -0
- data/sample/sourcelanguagemanager.rb +21 -0
- data/sample/test.rb +32 -0
- data/test/run-test.rb +33 -0
- data/test/test_source_view.rb +17 -0
- data/vendor/local/bin/libgtksourceview-3.0-0.dll +0 -0
- data/vendor/local/bin/libxml2-2.dll +0 -0
- data/vendor/local/bin/xmlcatalog.exe +0 -0
- data/vendor/local/bin/xmllint.exe +0 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +66 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksource.h +46 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h +199 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h +129 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h +94 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h +73 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h +71 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h +76 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h +118 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h +90 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h +222 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h +85 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h +83 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h +87 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h +85 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemark.h +71 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h +99 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h +176 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h +41 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h +93 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h +89 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h +62 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h +77 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h +55 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview.h +223 -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 +176 -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 +150 -0
- data/vendor/local/include/libxml2/libxml/globals.h +502 -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 +1240 -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 +213 -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 +1303 -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 +944 -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 +480 -0
- data/vendor/local/include/libxml2/libxml/xmlwriter.h +488 -0
- data/vendor/local/include/libxml2/libxml/xpath.h +550 -0
- data/vendor/local/include/libxml2/libxml/xpathInternals.h +632 -0
- data/vendor/local/include/libxml2/libxml/xpointer.h +114 -0
- data/vendor/local/lib/libgtksourceview-3.0.dll.a +0 -0
- data/vendor/local/lib/libgtksourceview-3.0.la +41 -0
- data/vendor/local/lib/libxml2.def +1659 -0
- data/vendor/local/lib/libxml2.dll.a +0 -0
- data/vendor/local/lib/libxml2.lib +0 -0
- data/vendor/local/lib/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/as/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/az/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/be/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/bg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/bn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/bn_IN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/bs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ca/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ca@valencia/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/cs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/cy/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/da/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/de/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/dz/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/el/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/en@shaw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/en_CA/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/en_GB/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/eo/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/es/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/et/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/eu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/he/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/hi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/hr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/hu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/id/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/it/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ja/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/kn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ko/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/lt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/lv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mai/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ml/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ms/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/nb/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ne/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/nl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/nn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/oc/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/or/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/pa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/pl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/pt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/pt_BR/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ro/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ru/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/rw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/si/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sq/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sr@latin/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ta/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/te/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/th/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/tr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ug/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/uk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/vi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/xh/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/zh_CN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/zh_HK/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/zh_TW/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/pkgconfig/gtksourceview-3.0.pc +12 -0
- data/vendor/local/lib/pkgconfig/libxml-2.0.pc +13 -0
- data/vendor/local/manifest/libxml2-dev_2.9.0-1_win32.mft +268 -0
- data/vendor/local/manifest/libxml2_2.9.0-1_win32.mft +2 -0
- data/vendor/local/share/aclocal/libxml.m4 +188 -0
- data/vendor/local/share/doc/libxml2-2.9.0/Copyright +27 -0
- data/vendor/local/share/doc/libxml2-2.9.0/examples/testHTML.c +880 -0
- data/vendor/local/share/doc/libxml2-2.9.0/examples/testSAX.c +1198 -0
- data/vendor/local/share/doc/libxml2-2.9.0/examples/testXPath.c +229 -0
- data/vendor/local/share/doc/libxml2-2.9.0/examples/xmllint.c +3770 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/DOM.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/FAQ.html +282 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/Libxml2-Logo-180x168.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/Libxml2-Logo-90x34.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/encoding.html +207 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/examples.xml +751 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/examples.xsl +174 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/book1.html +13 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/home.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/index.html +13 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/left.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-DOCBparser.html +51 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-HTMLparser.html +184 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-HTMLtree.html +73 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-SAX.html +125 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-SAX2.html +128 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-c14n.html +38 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-catalog.html +142 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-chvalid.html +72 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-debugXML.html +120 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-dict.html +58 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-encoding.html +124 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-entities.html +79 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-globals.html +152 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-hash.html +116 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-lib.html +13 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-list.html +120 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-nanoftp.html +94 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-nanohttp.html +65 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-parser.html +559 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-parserInternals.html +322 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-pattern.html +76 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-relaxng.html +162 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-schemasInternals.html +373 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-schematron.html +81 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-threads.html +72 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-tree.html +989 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-uri.html +73 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-valid.html +289 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xinclude.html +59 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xlink.html +82 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlIO.html +212 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlautomata.html +85 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlerror.html +864 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlexports.html +20 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlmemory.html +107 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlmodule.html +38 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlreader.html +330 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlregexp.html +143 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlsave.html +60 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlschemas.html +185 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlschemastypes.html +123 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlstring.html +108 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlunicode.html +512 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlversion.html +62 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlwriter.html +261 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpath.html +310 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpathInternals.html +394 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpointer.html +83 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/right.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/up.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/index.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/io1.c +166 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/io1.res +5 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/io2.c +58 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/io2.res +2 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/libxml.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/parse1.c +56 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/parse2.c +72 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/parse3.c +60 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/parse4.c +143 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/reader1.c +107 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/reader1.res +14 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/reader2.c +122 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/reader3.c +120 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/reader3.res +13 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/reader4.c +122 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/reader4.res +3 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/redhat.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/smallfootonly.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/structure.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/test1.xml +1 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/test2.xml +13 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/test3.xml +39 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/testWriter.c +1198 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tree1.c +94 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tree1.res +4 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tree2.c +118 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tree2.res +18 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tst.xml +7 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apa.html +8 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apb.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apc.html +82 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apd.html +76 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ape.html +78 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apf.html +67 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apg.html +75 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/aph.html +76 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/api.html +4 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s02.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s03.html +47 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s04.html +54 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s05.html +55 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s06.html +35 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s07.html +30 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s08.html +38 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s09.html +63 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/blank.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/1.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/10.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/2.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/3.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/4.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/5.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/6.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/7.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/8.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/9.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/caution.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/draft.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/home.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/important.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/next.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/note.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/prev.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/tip.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-blank.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-minus.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-plus.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/up.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/warning.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeaddattribute.c +64 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeaddkeyword.c +75 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeconvert.c +73 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includegetattribute.c +72 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includekeyword.c +79 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includexpath.c +74 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/index.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ix01.html +1 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/xmltutorial.pdf +1336 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/w3c.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/writer.xml +2 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/xml.html +5715 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/xpath1.c +250 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/xpath1.res +5 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/xpath2.c +190 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/xpath2.res +30 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceBuffer.html +1346 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletion.html +756 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionContext.html +300 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionInfo.html +243 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionItem.html +282 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProposal.html +364 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProvider.html +474 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutter.html +288 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguage.html +425 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguageManager.html +414 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMark.html +250 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMarkAttributes.html +699 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourcePrintCompositor.html +1822 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyle.html +228 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleScheme.html +296 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeManager.html +357 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceUndoManager.html +346 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceView.html +1462 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/annotation-glossary.html +80 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-0.html +46 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-deprecated.html +31 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-full.html +1538 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRenderer.html +956 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html +199 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRendererText.html +137 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0.devhelp2 +445 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.html +117 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.sgml +578 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-reference.html +771 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-tutorial.html +651 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/rn01.html +101 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/rn02.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style-reference.html +252 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/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 +1596 -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 +952 -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 +287 -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 +532 -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 +3569 -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/gtksourceview-3.0/language-specs/R.lang +130 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/actionscript.lang +268 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ada.lang +221 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/asp.lang +1097 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/automake.lang +329 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/awk.lang +138 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/bennugd.lang +267 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/bibtex.lang +93 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/boo.lang +257 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/c.lang +332 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cg.lang +232 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/changelog.lang +92 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/chdr.lang +43 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/check-language.sh +32 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cmake.lang +408 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cobol.lang +456 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cpp.lang +114 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/csharp.lang +282 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/css.lang +537 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cuda.lang +292 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/d.lang +296 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/def.lang +252 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/desktop.lang +300 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/diff.lang +85 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/docbook.lang +476 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/dosbatch.lang +167 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/dot.lang +140 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/dpatch.lang +48 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/dtd.lang +140 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/eiffel.lang +239 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/erlang.lang +258 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/fcl.lang +115 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/forth.lang +235 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/fortran.lang +512 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/fsharp.lang +325 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/gap.lang +85 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/gdb-log.lang +152 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/glsl.lang +483 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/go.lang +275 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/gtk-doc.lang +91 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/gtkrc.lang +116 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/haddock.lang +162 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/haskell-literate.lang +59 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/haskell.lang +228 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/html.lang +180 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/idl.lang +154 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/imagej.lang +784 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ini.lang +95 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/j.lang +240 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/java.lang +190 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/javascript.lang +338 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/json.lang +123 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/language.dtd +73 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/language.rng +373 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/language2.rng +482 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/latex.lang +300 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/libtool.lang +56 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/lua.lang +157 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/m4.lang +1375 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/makefile.lang +193 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/mallard.lang +124 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/markdown.lang +402 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/matlab.lang +171 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/mxml.lang +65 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/nemerle.lang +263 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/netrexx.lang +319 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/nsis.lang +88 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/objc.lang +120 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/objj.lang +128 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ocaml.lang +302 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ocl.lang +139 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/octave.lang +859 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ooc.lang +265 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/opal.lang +343 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/opencl.lang +600 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/pascal.lang +268 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/perl.lang +1028 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/php.lang +361 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/pkgconfig.lang +62 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/po.lang +94 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/prolog.lang +249 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/protobuf.lang +103 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/puppet.lang +697 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/python.lang +413 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/python3.lang +192 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/rpmspec.lang +210 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ruby.lang +591 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/scheme.lang +302 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/scilab.lang +209 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sh.lang +499 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sml.lang +201 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sparql.lang +448 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sql.lang +618 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/systemverilog.lang +263 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/t2t.lang +150 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/tcl.lang +146 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/texinfo.lang +448 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/vala.lang +365 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/vbnet.lang +245 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/verilog.lang +464 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/vhdl.lang +248 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/xml.lang +220 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/xslt.lang +108 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/yacc.lang +177 -0
- data/vendor/local/share/gtksourceview-3.0/styles/check-style.sh +20 -0
- data/vendor/local/share/gtksourceview-3.0/styles/classic.xml +107 -0
- data/vendor/local/share/gtksourceview-3.0/styles/cobalt.xml +135 -0
- data/vendor/local/share/gtksourceview-3.0/styles/kate.xml +161 -0
- data/vendor/local/share/gtksourceview-3.0/styles/oblivion.xml +117 -0
- data/vendor/local/share/gtksourceview-3.0/styles/styles.rng +139 -0
- data/vendor/local/share/gtksourceview-3.0/styles/tango.xml +117 -0
- data/vendor/local/share/license/gtksourceview/AUTHORS +12 -0
- data/vendor/local/share/license/gtksourceview/COPYING +340 -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 +427 -0
- data/vendor/local/share/man/man3/libxml.3 +71 -0
- data/vendor/local/src/dieterv/packaging/libxml2_2.9.0-1_win32.log +867 -0
- data/vendor/local/src/dieterv/packaging/libxml2_2.9.0-1_win32.sh +68 -0
- metadata +642 -0
Binary file
|
Binary file
|
@@ -0,0 +1,101 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>API reference</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
|
7
|
+
<link rel="home" href="index.html" title="GtkSourceView 3 Reference Manual">
|
8
|
+
<link rel="up" href="index.html" title="GtkSourceView 3 Reference Manual">
|
9
|
+
<link rel="prev" href="index.html" title="GtkSourceView 3 Reference Manual">
|
10
|
+
<link rel="next" href="GtkSourceBuffer.html" title="GtkSourceBuffer">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
16
|
+
<td><a accesskey="p" href="index.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
17
|
+
<td> </td>
|
18
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
19
|
+
<th width="100%" align="center">GtkSourceView 3 Reference Manual</th>
|
20
|
+
<td><a accesskey="n" href="GtkSourceBuffer.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
21
|
+
</tr></table>
|
22
|
+
<div class="reference">
|
23
|
+
<div class="titlepage">
|
24
|
+
<div><div><h1 class="title">
|
25
|
+
<a name="idp2486304"></a>API reference</h1></div></div>
|
26
|
+
<hr>
|
27
|
+
</div>
|
28
|
+
<div class="toc">
|
29
|
+
<p><b>Table of Contents</b></p>
|
30
|
+
<dl>
|
31
|
+
<dt>
|
32
|
+
<span class="refentrytitle"><a href="GtkSourceBuffer.html">GtkSourceBuffer</a></span><span class="refpurpose">Buffer object for <span class="type">GtkSourceView</span></span>
|
33
|
+
</dt>
|
34
|
+
<dt>
|
35
|
+
<span class="refentrytitle"><a href="GtkSourceCompletion.html">GtkSourceCompletion</a></span><span class="refpurpose"> — Main Completion Object</span>
|
36
|
+
</dt>
|
37
|
+
<dt>
|
38
|
+
<span class="refentrytitle"><a href="GtkSourceCompletionContext.html">GtkSourceCompletionContext</a></span><span class="refpurpose"> — The context of a completion</span>
|
39
|
+
</dt>
|
40
|
+
<dt>
|
41
|
+
<span class="refentrytitle"><a href="GtkSourceCompletionInfo.html">GtkSourceCompletionInfo</a></span><span class="refpurpose"> — Calltips object</span>
|
42
|
+
</dt>
|
43
|
+
<dt>
|
44
|
+
<span class="refentrytitle"><a href="GtkSourceCompletionItem.html">GtkSourceCompletionItem</a></span><span class="refpurpose"></span>
|
45
|
+
</dt>
|
46
|
+
<dt>
|
47
|
+
<span class="refentrytitle"><a href="GtkSourceCompletionProposal.html">GtkSourceCompletionProposal</a></span><span class="refpurpose"> — Completion proposal interface</span>
|
48
|
+
</dt>
|
49
|
+
<dt>
|
50
|
+
<span class="refentrytitle"><a href="GtkSourceCompletionProvider.html">GtkSourceCompletionProvider</a></span><span class="refpurpose"> — Completion provider interface</span>
|
51
|
+
</dt>
|
52
|
+
<dt>
|
53
|
+
<span class="refentrytitle"><a href="GtkSourceGutter.html">GtkSourceGutter</a></span><span class="refpurpose">Gutter object for <span class="type">GtkSourceView</span></span>
|
54
|
+
</dt>
|
55
|
+
<dt>
|
56
|
+
<span class="refentrytitle"><a href="gtksourceview-3.0-GtkSourceGutterRenderer.html">GtkSourceGutterRenderer</a></span><span class="refpurpose"></span>
|
57
|
+
</dt>
|
58
|
+
<dt>
|
59
|
+
<span class="refentrytitle"><a href="gtksourceview-3.0-GtkSourceGutterRendererText.html">GtkSourceGutterRendererText</a></span><span class="refpurpose"></span>
|
60
|
+
</dt>
|
61
|
+
<dt>
|
62
|
+
<span class="refentrytitle"><a href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html">GtkSourceGutterRendererPixbuf</a></span><span class="refpurpose"></span>
|
63
|
+
</dt>
|
64
|
+
<dt>
|
65
|
+
<span class="refentrytitle"><a href="GtkSourceMark.html">GtkSourceMark</a></span><span class="refpurpose">mark object for <span class="type">GtkSourceBuffer</span></span>
|
66
|
+
</dt>
|
67
|
+
<dt>
|
68
|
+
<span class="refentrytitle"><a href="GtkSourceMarkAttributes.html">GtkSourceMarkAttributes</a></span><span class="refpurpose"> — The source mark attributes object</span>
|
69
|
+
</dt>
|
70
|
+
<dt>
|
71
|
+
<span class="refentrytitle"><a href="GtkSourceView.html">GtkSourceView</a></span><span class="refpurpose"> — The view object</span>
|
72
|
+
</dt>
|
73
|
+
<dt>
|
74
|
+
<span class="refentrytitle"><a href="GtkSourceLanguage.html">GtkSourceLanguage</a></span><span class="refpurpose"> — Object representing a syntax highlighted language</span>
|
75
|
+
</dt>
|
76
|
+
<dt>
|
77
|
+
<span class="refentrytitle"><a href="GtkSourceLanguageManager.html">GtkSourceLanguageManager</a></span><span class="refpurpose">Object which provides access to <span class="type">GtkSourceLanguage</span>s</span>
|
78
|
+
</dt>
|
79
|
+
<dt>
|
80
|
+
<span class="refentrytitle"><a href="GtkSourcePrintCompositor.html">GtkSourcePrintCompositor</a></span><span class="refpurpose">Compose a <span class="type">GtkSourceBuffer</span> for printing</span>
|
81
|
+
</dt>
|
82
|
+
<dt>
|
83
|
+
<span class="refentrytitle"><a href="GtkSourceStyle.html">GtkSourceStyle</a></span><span class="refpurpose"> — Object representyng a style</span>
|
84
|
+
</dt>
|
85
|
+
<dt>
|
86
|
+
<span class="refentrytitle"><a href="GtkSourceStyleScheme.html">GtkSourceStyleScheme</a></span><span class="refpurpose">Object controlling apperance of <span class="type">GtkSourceView</span></span>
|
87
|
+
</dt>
|
88
|
+
<dt>
|
89
|
+
<span class="refentrytitle"><a href="GtkSourceStyleSchemeManager.html">GtkSourceStyleSchemeManager</a></span><span class="refpurpose">Object which provides access to <span class="type">GtkSourceStyleScheme</span>s</span>
|
90
|
+
</dt>
|
91
|
+
<dt>
|
92
|
+
<span class="refentrytitle"><a href="GtkSourceUndoManager.html">GtkSourceUndoManager</a></span><span class="refpurpose">Undo manager interface for <span class="type">GtkSourceView</span></span>
|
93
|
+
</dt>
|
94
|
+
</dl>
|
95
|
+
</div>
|
96
|
+
</div>
|
97
|
+
<div class="footer">
|
98
|
+
<hr>
|
99
|
+
Generated by GTK-Doc V1.18.1</div>
|
100
|
+
</body>
|
101
|
+
</html>
|
@@ -0,0 +1,53 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>Syntax highlighting reference</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
|
7
|
+
<link rel="home" href="index.html" title="GtkSourceView 3 Reference Manual">
|
8
|
+
<link rel="up" href="index.html" title="GtkSourceView 3 Reference Manual">
|
9
|
+
<link rel="prev" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">
|
10
|
+
<link rel="next" href="lang-tutorial.html" title="Language Definition v2.0 Tutorial">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
16
|
+
<td><a accesskey="p" href="GtkSourceUndoManager.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
17
|
+
<td> </td>
|
18
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
19
|
+
<th width="100%" align="center">GtkSourceView 3 Reference Manual</th>
|
20
|
+
<td><a accesskey="n" href="lang-tutorial.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
21
|
+
</tr></table>
|
22
|
+
<div class="reference">
|
23
|
+
<div class="titlepage">
|
24
|
+
<div><div><h1 class="title">
|
25
|
+
<a name="idp164000"></a>Syntax highlighting reference</h1></div></div>
|
26
|
+
<hr>
|
27
|
+
</div>
|
28
|
+
<div class="toc">
|
29
|
+
<p><b>Table of Contents</b></p>
|
30
|
+
<dl>
|
31
|
+
<dt>
|
32
|
+
<span class="refentrytitle"><a href="lang-tutorial.html">Language Definition v2.0 Tutorial</a></span><span class="refpurpose"> —
|
33
|
+
Guide to the GtkSourceView language definition file format
|
34
|
+
</span>
|
35
|
+
</dt>
|
36
|
+
<dt>
|
37
|
+
<span class="refentrytitle"><a href="lang-reference.html">Language Definition v2.0 Reference</a></span><span class="refpurpose"> —
|
38
|
+
Reference to the GtkSourceView language definition file format
|
39
|
+
</span>
|
40
|
+
</dt>
|
41
|
+
<dt>
|
42
|
+
<span class="refentrytitle"><a href="style-reference.html">Style Scheme Definition Reference</a></span><span class="refpurpose"> —
|
43
|
+
Reference to the GtkSourceView style scheme definition file format
|
44
|
+
</span>
|
45
|
+
</dt>
|
46
|
+
</dl>
|
47
|
+
</div>
|
48
|
+
</div>
|
49
|
+
<div class="footer">
|
50
|
+
<hr>
|
51
|
+
Generated by GTK-Doc V1.18.1</div>
|
52
|
+
</body>
|
53
|
+
</html>
|
@@ -0,0 +1,252 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>Style Scheme Definition Reference</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
|
7
|
+
<link rel="home" href="index.html" title="GtkSourceView 3 Reference Manual">
|
8
|
+
<link rel="up" href="rn02.html" title="Syntax highlighting reference">
|
9
|
+
<link rel="prev" href="lang-reference.html" title="Language Definition v2.0 Reference">
|
10
|
+
<link rel="next" href="api-index-full.html" title="Index of all symbols">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
16
|
+
<td><a accesskey="p" href="lang-reference.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
17
|
+
<td><a accesskey="u" href="rn02.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
18
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
19
|
+
<th width="100%" align="center">GtkSourceView 3 Reference Manual</th>
|
20
|
+
<td><a accesskey="n" href="api-index-full.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
21
|
+
</tr></table>
|
22
|
+
<div class="refentry">
|
23
|
+
<a name="style-reference"></a><div class="titlepage"></div>
|
24
|
+
<div class="refnamediv"><table width="100%"><tr>
|
25
|
+
<td valign="top">
|
26
|
+
<h2><span class="refentrytitle">Style Scheme Definition Reference</span></h2>
|
27
|
+
<p>Style Scheme Definition Reference —
|
28
|
+
Reference to the GtkSourceView style scheme definition file format
|
29
|
+
</p>
|
30
|
+
</td>
|
31
|
+
<td valign="top" align="right"></td>
|
32
|
+
</tr></table></div>
|
33
|
+
<div class="refsect1">
|
34
|
+
<a name="idp5007072"></a><h2>Overview</h2>
|
35
|
+
<p>
|
36
|
+
This is an overview of the Style Scheme Definition XML format, describing the
|
37
|
+
meaning and usage of every element and attribute. The formal definition is
|
38
|
+
stored in the RelaxNG schema file <code class="filename">style.rng</code> which
|
39
|
+
should be installed on your system in the directory
|
40
|
+
<code class="filename">${PREFIX}/share/gtksourceview-2.0/</code> (where
|
41
|
+
<code class="filename">${PREFIX}</code> can be <code class="filename">/usr/</code> or
|
42
|
+
<code class="filename">/usr/local/</code> if you have installed from source.
|
43
|
+
</p>
|
44
|
+
</div>
|
45
|
+
<p>
|
46
|
+
The toplevel tag in a style scheme file is <code class="code"><style-scheme></code>.
|
47
|
+
It has the following attributes:
|
48
|
+
</p>
|
49
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
50
|
+
<colgroup>
|
51
|
+
<col align="left" valign="top">
|
52
|
+
<col>
|
53
|
+
</colgroup>
|
54
|
+
<tbody>
|
55
|
+
<tr>
|
56
|
+
<td><p><span class="term"><code class="code">id</code> (mandatory)</span></p></td>
|
57
|
+
<td><p>
|
58
|
+
Identifier for the style scheme. This is must be unique among style schemes.
|
59
|
+
</p></td>
|
60
|
+
</tr>
|
61
|
+
<tr>
|
62
|
+
<td><p><span class="term"><code class="code">name</code> (mandatory)</span></p></td>
|
63
|
+
<td><p>
|
64
|
+
Name of the style scheme. This is the name of the scheme to display to user, e.g.
|
65
|
+
in a preferences dialog.
|
66
|
+
</p></td>
|
67
|
+
</tr>
|
68
|
+
<tr>
|
69
|
+
<td><p><span class="term"><code class="code">_name</code></span></p></td>
|
70
|
+
<td><p>
|
71
|
+
This is the same as <code class="code">name</code> attribute, except it will be translated.
|
72
|
+
<code class="code">name</code> and <code class="code">_name</code> may not be used simultaneously.
|
73
|
+
</p></td>
|
74
|
+
</tr>
|
75
|
+
<tr>
|
76
|
+
<td><p><span class="term"><code class="code">parent-scheme</code> (optional)</span></p></td>
|
77
|
+
<td><p>
|
78
|
+
Style schemes may have <span class="emphasis"><em>parent</em></span> schemes: all styles but those specified
|
79
|
+
in the scheme will be taken from the parent scheme. In this way a scheme may
|
80
|
+
be customized without copying all its content.
|
81
|
+
</p></td>
|
82
|
+
</tr>
|
83
|
+
<tr>
|
84
|
+
<td><p><span class="term"><code class="code">version</code> (mandatory)</span></p></td>
|
85
|
+
<td><p>
|
86
|
+
Style scheme format identifier. At the moment it must be "1.0".
|
87
|
+
</p></td>
|
88
|
+
</tr>
|
89
|
+
</tbody>
|
90
|
+
</table></div>
|
91
|
+
<p>
|
92
|
+
</p>
|
93
|
+
<p>
|
94
|
+
<code class="code">style-scheme</code> tag may contain the following tags:
|
95
|
+
</p>
|
96
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
97
|
+
<colgroup>
|
98
|
+
<col align="left" valign="top">
|
99
|
+
<col>
|
100
|
+
</colgroup>
|
101
|
+
<tbody>
|
102
|
+
<tr>
|
103
|
+
<td><p><span class="term"><code class="code">author</code></span></p></td>
|
104
|
+
<td><p>
|
105
|
+
Name of the style scheme author.
|
106
|
+
</p></td>
|
107
|
+
</tr>
|
108
|
+
<tr>
|
109
|
+
<td><p><span class="term"><code class="code">description</code></span></p></td>
|
110
|
+
<td><p>
|
111
|
+
Description of the style scheme.
|
112
|
+
</p></td>
|
113
|
+
</tr>
|
114
|
+
<tr>
|
115
|
+
<td><p><span class="term"><code class="code">_description</code></span></p></td>
|
116
|
+
<td><p>
|
117
|
+
Same as <code class="code">description</code> except it will be localized.
|
118
|
+
</p></td>
|
119
|
+
</tr>
|
120
|
+
<tr>
|
121
|
+
<td><p><span class="term"><code class="code">color</code> tags</span></p></td>
|
122
|
+
<td><p>
|
123
|
+
These define color names to be used in <code class="code">style</code> tags.
|
124
|
+
It has two attributes: <code class="code">name</code> and <code class="code">value</code>.
|
125
|
+
<code class="code">value</code> is the hexadecimal color specification like
|
126
|
+
"#000000" or named color understood by Gdk prefixed with "#",
|
127
|
+
e.g. "#beige".
|
128
|
+
</p></td>
|
129
|
+
</tr>
|
130
|
+
<tr>
|
131
|
+
<td><p><span class="term"><code class="code">style</code> tags</span></p></td>
|
132
|
+
<td><p>
|
133
|
+
See below for their format description.
|
134
|
+
</p></td>
|
135
|
+
</tr>
|
136
|
+
</tbody>
|
137
|
+
</table></div>
|
138
|
+
<p>
|
139
|
+
</p>
|
140
|
+
<p>
|
141
|
+
Each <code class="code">style</code> tag describes a single element of style scheme (it corresponds
|
142
|
+
to #GtkSourceStyle object). It has the following attributes:
|
143
|
+
</p>
|
144
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
145
|
+
<colgroup>
|
146
|
+
<col align="left" valign="top">
|
147
|
+
<col>
|
148
|
+
</colgroup>
|
149
|
+
<tbody>
|
150
|
+
<tr>
|
151
|
+
<td><p><span class="term"><code class="code">name</code> (mandatory)</span></p></td>
|
152
|
+
<td><p>
|
153
|
+
Name of the style. It can be anything, syntax highlighting uses <span class="emphasis"><em>lang-id:style-id</em></span>,
|
154
|
+
and there are few special styles which are used to control general appearance
|
155
|
+
of the text. Style scheme may contain other names to be used in an application. For instance,
|
156
|
+
it may define color to highlight compilation errors in a build log or a color for
|
157
|
+
bookmarks.
|
158
|
+
</p></td>
|
159
|
+
</tr>
|
160
|
+
<tr>
|
161
|
+
<td><p><span class="term"><code class="code">foreground</code></span></p></td>
|
162
|
+
<td><p>
|
163
|
+
Foreground color. It may be name defined in one of <code class="code">color</code> tags, or value in
|
164
|
+
hexadecimal format, e.g. "#000000", or symbolic name understood
|
165
|
+
by Gdk, prefixed with "#", e.g. "#magenta" or "#darkred".
|
166
|
+
</p></td>
|
167
|
+
</tr>
|
168
|
+
<tr>
|
169
|
+
<td><p><span class="term"><code class="code">background</code></span></p></td>
|
170
|
+
<td><p>
|
171
|
+
Background color.
|
172
|
+
</p></td>
|
173
|
+
</tr>
|
174
|
+
<tr>
|
175
|
+
<td><p><span class="term"><code class="code">italic</code></span></p></td>
|
176
|
+
<td><p>"true" or "false"</p></td>
|
177
|
+
</tr>
|
178
|
+
<tr>
|
179
|
+
<td><p><span class="term"><code class="code">bold</code></span></p></td>
|
180
|
+
<td><p>"true" or "false"</p></td>
|
181
|
+
</tr>
|
182
|
+
<tr>
|
183
|
+
<td><p><span class="term"><code class="code">underline</code></span></p></td>
|
184
|
+
<td><p>"true" or "false"</p></td>
|
185
|
+
</tr>
|
186
|
+
<tr>
|
187
|
+
<td><p><span class="term"><code class="code">strikethrough</code></span></p></td>
|
188
|
+
<td><p>"true" or "false"</p></td>
|
189
|
+
</tr>
|
190
|
+
</tbody>
|
191
|
+
</table></div>
|
192
|
+
<p>
|
193
|
+
</p>
|
194
|
+
<p>
|
195
|
+
The following are names of styles which control #GtkSourceView appearance:
|
196
|
+
</p>
|
197
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
198
|
+
<colgroup>
|
199
|
+
<col align="left" valign="top">
|
200
|
+
<col>
|
201
|
+
</colgroup>
|
202
|
+
<tbody>
|
203
|
+
<tr>
|
204
|
+
<td><p><span class="term"><code class="code">text</code></span></p></td>
|
205
|
+
<td><p>Default style of text.</p></td>
|
206
|
+
</tr>
|
207
|
+
<tr>
|
208
|
+
<td><p><span class="term"><code class="code">selection</code></span></p></td>
|
209
|
+
<td><p>Style of selected text.</p></td>
|
210
|
+
</tr>
|
211
|
+
<tr>
|
212
|
+
<td><p><span class="term"><code class="code">selection-unfocused</code></span></p></td>
|
213
|
+
<td><p>Style of selected text when the widget doesn't have input focus.</p></td>
|
214
|
+
</tr>
|
215
|
+
<tr>
|
216
|
+
<td><p><span class="term"><code class="code">cursor</code></span></p></td>
|
217
|
+
<td><p>Text cursor style. Only <code class="code">foreground</code> attribute is used
|
218
|
+
for this style</p></td>
|
219
|
+
</tr>
|
220
|
+
<tr>
|
221
|
+
<td><p><span class="term"><code class="code">secondary-cursor</code></span></p></td>
|
222
|
+
<td><p>Secondary cursor style (used in bidi text). Only <code class="code">foreground</code> attribute
|
223
|
+
is used for this style. If this is not set while "cursor" is, then a color between text background
|
224
|
+
and cursor colors is chosen, so it is enough to use "cursor" style only.</p></td>
|
225
|
+
</tr>
|
226
|
+
<tr>
|
227
|
+
<td><p><span class="term"><code class="code">current-line</code></span></p></td>
|
228
|
+
<td><p>Current line style. Only <code class="code">background</code> attribute is used</p></td>
|
229
|
+
</tr>
|
230
|
+
<tr>
|
231
|
+
<td><p><span class="term"><code class="code">line-numbers</code></span></p></td>
|
232
|
+
<td><p>Text and background colors for the left margin, on which line numbers are
|
233
|
+
drawn</p></td>
|
234
|
+
</tr>
|
235
|
+
<tr>
|
236
|
+
<td><p><span class="term"><code class="code">bracket-match</code></span></p></td>
|
237
|
+
<td><p>Style to use for matching brackets.</p></td>
|
238
|
+
</tr>
|
239
|
+
<tr>
|
240
|
+
<td><p><span class="term"><code class="code">bracket-mismatch</code></span></p></td>
|
241
|
+
<td><p>Style to use for mismatching brackets.</p></td>
|
242
|
+
</tr>
|
243
|
+
</tbody>
|
244
|
+
</table></div>
|
245
|
+
<p>
|
246
|
+
</p>
|
247
|
+
</div>
|
248
|
+
<div class="footer">
|
249
|
+
<hr>
|
250
|
+
Generated by GTK-Doc V1.18.1</div>
|
251
|
+
</body>
|
252
|
+
</html>
|
@@ -0,0 +1,266 @@
|
|
1
|
+
.synopsis, .classsynopsis
|
2
|
+
{
|
3
|
+
/* tango:aluminium 1/2 */
|
4
|
+
background: #eeeeec;
|
5
|
+
border: solid 1px #d3d7cf;
|
6
|
+
padding: 0.5em;
|
7
|
+
}
|
8
|
+
.programlisting
|
9
|
+
{
|
10
|
+
/* tango:sky blue 0/1 */
|
11
|
+
background: #e6f3ff;
|
12
|
+
border: solid 1px #729fcf;
|
13
|
+
padding: 0.5em;
|
14
|
+
}
|
15
|
+
.variablelist
|
16
|
+
{
|
17
|
+
padding: 4px;
|
18
|
+
margin-left: 3em;
|
19
|
+
}
|
20
|
+
.variablelist td:first-child
|
21
|
+
{
|
22
|
+
vertical-align: top;
|
23
|
+
}
|
24
|
+
|
25
|
+
@media screen {
|
26
|
+
sup a.footnote
|
27
|
+
{
|
28
|
+
position: relative;
|
29
|
+
top: 0em ! important;
|
30
|
+
|
31
|
+
}
|
32
|
+
/* this is needed so that the local anchors are displayed below the naviagtion */
|
33
|
+
div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name]
|
34
|
+
{
|
35
|
+
display: inline-block;
|
36
|
+
position: relative;
|
37
|
+
top:-5em;
|
38
|
+
}
|
39
|
+
/* this seems to be a bug in the xsl style sheets when generating indexes */
|
40
|
+
div.index div.index
|
41
|
+
{
|
42
|
+
top: 0em;
|
43
|
+
}
|
44
|
+
/* make space for the fixed navigation bar and add space at the bottom so that
|
45
|
+
* link targets appear somewhat close to top
|
46
|
+
*/
|
47
|
+
body
|
48
|
+
{
|
49
|
+
padding-top: 3.2em;
|
50
|
+
padding-bottom: 20em;
|
51
|
+
}
|
52
|
+
/* style and size the navigation bar */
|
53
|
+
table.navigation#top
|
54
|
+
{
|
55
|
+
position: fixed;
|
56
|
+
/* tango:scarlet red 0/1 */
|
57
|
+
background: #ffe6e6;
|
58
|
+
border: solid 1px #ef2929;
|
59
|
+
margin-top: 0;
|
60
|
+
margin-bottom: 0;
|
61
|
+
top: 0;
|
62
|
+
left: 0;
|
63
|
+
height: 3em;
|
64
|
+
z-index: 10;
|
65
|
+
}
|
66
|
+
.navigation a, .navigation a:visited
|
67
|
+
{
|
68
|
+
/* tango:scarlet red 3 */
|
69
|
+
color: #a40000;
|
70
|
+
}
|
71
|
+
.navigation a:hover
|
72
|
+
{
|
73
|
+
/* tango:scarlet red 1 */
|
74
|
+
color: #ef2929;
|
75
|
+
}
|
76
|
+
td.shortcuts
|
77
|
+
{
|
78
|
+
/* tango:scarlet red 1 */
|
79
|
+
color: #ef2929;
|
80
|
+
font-size: 80%;
|
81
|
+
white-space: nowrap;
|
82
|
+
}
|
83
|
+
}
|
84
|
+
@media print {
|
85
|
+
table.navigation {
|
86
|
+
visibility: collapse;
|
87
|
+
display: none;
|
88
|
+
}
|
89
|
+
div.titlepage table.navigation {
|
90
|
+
visibility: visible;
|
91
|
+
display: table;
|
92
|
+
/* tango:scarlet red 0/1 */
|
93
|
+
background: #ffe6e6;
|
94
|
+
border: solid 1px #ef2929;
|
95
|
+
margin-top: 0;
|
96
|
+
margin-bottom: 0;
|
97
|
+
top: 0;
|
98
|
+
left: 0;
|
99
|
+
height: 3em;
|
100
|
+
}
|
101
|
+
}
|
102
|
+
|
103
|
+
.navigation .title
|
104
|
+
{
|
105
|
+
font-size: 200%;
|
106
|
+
}
|
107
|
+
|
108
|
+
div.gallery-float
|
109
|
+
{
|
110
|
+
float: left;
|
111
|
+
padding: 10px;
|
112
|
+
}
|
113
|
+
div.gallery-float img
|
114
|
+
{
|
115
|
+
border-style: none;
|
116
|
+
}
|
117
|
+
div.gallery-spacer
|
118
|
+
{
|
119
|
+
clear: both;
|
120
|
+
}
|
121
|
+
|
122
|
+
a, a:visited
|
123
|
+
{
|
124
|
+
text-decoration: none;
|
125
|
+
/* tango:sky blue 2 */
|
126
|
+
color: #3465a4;
|
127
|
+
}
|
128
|
+
a:hover
|
129
|
+
{
|
130
|
+
text-decoration: underline;
|
131
|
+
/* tango:sky blue 1 */
|
132
|
+
color: #729fcf;
|
133
|
+
}
|
134
|
+
|
135
|
+
div.table table
|
136
|
+
{
|
137
|
+
border-collapse: collapse;
|
138
|
+
border-spacing: 0px;
|
139
|
+
/* tango:aluminium 3 */
|
140
|
+
border: solid 1px #babdb6;
|
141
|
+
}
|
142
|
+
|
143
|
+
div.table table td, div.table table th
|
144
|
+
{
|
145
|
+
/* tango:aluminium 3 */
|
146
|
+
border: solid 1px #babdb6;
|
147
|
+
padding: 3px;
|
148
|
+
vertical-align: top;
|
149
|
+
}
|
150
|
+
|
151
|
+
div.table table th
|
152
|
+
{
|
153
|
+
/* tango:aluminium 2 */
|
154
|
+
background-color: #d3d7cf;
|
155
|
+
}
|
156
|
+
|
157
|
+
hr
|
158
|
+
{
|
159
|
+
/* tango:aluminium 3 */
|
160
|
+
color: #babdb6;
|
161
|
+
background: #babdb6;
|
162
|
+
border: none 0px;
|
163
|
+
height: 1px;
|
164
|
+
clear: both;
|
165
|
+
}
|
166
|
+
|
167
|
+
.footer
|
168
|
+
{
|
169
|
+
padding-top: 3.5em;
|
170
|
+
/* tango:aluminium 3 */
|
171
|
+
color: #babdb6;
|
172
|
+
text-align: center;
|
173
|
+
font-size: 80%;
|
174
|
+
}
|
175
|
+
|
176
|
+
.warning
|
177
|
+
{
|
178
|
+
/* tango:orange 0/1 */
|
179
|
+
background: #ffeed9;
|
180
|
+
border-color: #ffb04f;
|
181
|
+
}
|
182
|
+
.note
|
183
|
+
{
|
184
|
+
/* tango:chameleon 0/0.5 */
|
185
|
+
background: #d8ffb2;
|
186
|
+
border-color: #abf562;
|
187
|
+
}
|
188
|
+
.note, .warning
|
189
|
+
{
|
190
|
+
padding: 0.5em;
|
191
|
+
border-width: 1px;
|
192
|
+
border-style: solid;
|
193
|
+
}
|
194
|
+
.note h3, .warning h3
|
195
|
+
{
|
196
|
+
margin-top: 0.0em
|
197
|
+
}
|
198
|
+
.note p, .warning p
|
199
|
+
{
|
200
|
+
margin-bottom: 0.0em
|
201
|
+
}
|
202
|
+
|
203
|
+
/* blob links */
|
204
|
+
h2 .extralinks, h3 .extralinks
|
205
|
+
{
|
206
|
+
float: right;
|
207
|
+
/* tango:aluminium 3 */
|
208
|
+
color: #babdb6;
|
209
|
+
font-size: 80%;
|
210
|
+
font-weight: normal;
|
211
|
+
}
|
212
|
+
|
213
|
+
.annotation
|
214
|
+
{
|
215
|
+
/* tango:aluminium 5 */
|
216
|
+
color: #555753;
|
217
|
+
font-size: 80%;
|
218
|
+
font-weight: normal;
|
219
|
+
}
|
220
|
+
|
221
|
+
/* code listings */
|
222
|
+
|
223
|
+
.listing_code .programlisting .cbracket { color: #a40000; } /* tango: scarlet red 3 */
|
224
|
+
.listing_code .programlisting .comment { color: #a1a39d; } /* tango: aluminium 4 */
|
225
|
+
.listing_code .programlisting .function { color: #000000; font-weight: bold; }
|
226
|
+
.listing_code .programlisting .function a { color: #11326b; font-weight: bold; } /* tango: sky blue 4 */
|
227
|
+
.listing_code .programlisting .keyword { color: #4e9a06; } /* tango: chameleon 3 */
|
228
|
+
.listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */
|
229
|
+
.listing_code .programlisting .normal { color: #000000; }
|
230
|
+
.listing_code .programlisting .number { color: #75507b; } /* tango: plum 2 */
|
231
|
+
.listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */
|
232
|
+
.listing_code .programlisting .string { color: #c17d11; } /* tango: chocolate 2 */
|
233
|
+
.listing_code .programlisting .type { color: #000000; }
|
234
|
+
.listing_code .programlisting .type a { color: #11326b; } /* tango: sky blue 4 */
|
235
|
+
.listing_code .programlisting .symbol { color: #ce5c00; } /* tango: orange 3 */
|
236
|
+
|
237
|
+
.listing_frame {
|
238
|
+
/* tango:sky blue 1 */
|
239
|
+
border: solid 1px #729fcf;
|
240
|
+
padding: 0px;
|
241
|
+
}
|
242
|
+
|
243
|
+
.listing_lines, .listing_code {
|
244
|
+
margin-top: 0px;
|
245
|
+
margin-bottom: 0px;
|
246
|
+
padding: 0.5em;
|
247
|
+
}
|
248
|
+
.listing_lines {
|
249
|
+
/* tango:sky blue 0.5 */
|
250
|
+
background: #a6c5e3;
|
251
|
+
/* tango:aluminium 6 */
|
252
|
+
color: #2e3436;
|
253
|
+
}
|
254
|
+
.listing_code {
|
255
|
+
/* tango:sky blue 0 */
|
256
|
+
background: #e6f3ff;
|
257
|
+
}
|
258
|
+
.listing_code .programlisting {
|
259
|
+
/* override from previous */
|
260
|
+
border: none 0px;
|
261
|
+
padding: 0px;
|
262
|
+
}
|
263
|
+
.listing_lines pre, .listing_code pre {
|
264
|
+
margin: 0px;
|
265
|
+
}
|
266
|
+
|