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
@@ -0,0 +1,146 @@
|
|
1
|
+
/*
|
2
|
+
* Summary: API to build regexp automata
|
3
|
+
* Description: the API to build regexp automata
|
4
|
+
*
|
5
|
+
* Copy: See Copyright for the status of this software.
|
6
|
+
*
|
7
|
+
* Author: Daniel Veillard
|
8
|
+
*/
|
9
|
+
|
10
|
+
#ifndef __XML_AUTOMATA_H__
|
11
|
+
#define __XML_AUTOMATA_H__
|
12
|
+
|
13
|
+
#include <libxml/xmlversion.h>
|
14
|
+
#include <libxml/tree.h>
|
15
|
+
|
16
|
+
#ifdef LIBXML_REGEXP_ENABLED
|
17
|
+
#ifdef LIBXML_AUTOMATA_ENABLED
|
18
|
+
#include <libxml/xmlregexp.h>
|
19
|
+
|
20
|
+
#ifdef __cplusplus
|
21
|
+
extern "C" {
|
22
|
+
#endif
|
23
|
+
|
24
|
+
/**
|
25
|
+
* xmlAutomataPtr:
|
26
|
+
*
|
27
|
+
* A libxml automata description, It can be compiled into a regexp
|
28
|
+
*/
|
29
|
+
typedef struct _xmlAutomata xmlAutomata;
|
30
|
+
typedef xmlAutomata *xmlAutomataPtr;
|
31
|
+
|
32
|
+
/**
|
33
|
+
* xmlAutomataStatePtr:
|
34
|
+
*
|
35
|
+
* A state int the automata description,
|
36
|
+
*/
|
37
|
+
typedef struct _xmlAutomataState xmlAutomataState;
|
38
|
+
typedef xmlAutomataState *xmlAutomataStatePtr;
|
39
|
+
|
40
|
+
/*
|
41
|
+
* Building API
|
42
|
+
*/
|
43
|
+
XMLPUBFUN xmlAutomataPtr XMLCALL
|
44
|
+
xmlNewAutomata (void);
|
45
|
+
XMLPUBFUN void XMLCALL
|
46
|
+
xmlFreeAutomata (xmlAutomataPtr am);
|
47
|
+
|
48
|
+
XMLPUBFUN xmlAutomataStatePtr XMLCALL
|
49
|
+
xmlAutomataGetInitState (xmlAutomataPtr am);
|
50
|
+
XMLPUBFUN int XMLCALL
|
51
|
+
xmlAutomataSetFinalState (xmlAutomataPtr am,
|
52
|
+
xmlAutomataStatePtr state);
|
53
|
+
XMLPUBFUN xmlAutomataStatePtr XMLCALL
|
54
|
+
xmlAutomataNewState (xmlAutomataPtr am);
|
55
|
+
XMLPUBFUN xmlAutomataStatePtr XMLCALL
|
56
|
+
xmlAutomataNewTransition (xmlAutomataPtr am,
|
57
|
+
xmlAutomataStatePtr from,
|
58
|
+
xmlAutomataStatePtr to,
|
59
|
+
const xmlChar *token,
|
60
|
+
void *data);
|
61
|
+
XMLPUBFUN xmlAutomataStatePtr XMLCALL
|
62
|
+
xmlAutomataNewTransition2 (xmlAutomataPtr am,
|
63
|
+
xmlAutomataStatePtr from,
|
64
|
+
xmlAutomataStatePtr to,
|
65
|
+
const xmlChar *token,
|
66
|
+
const xmlChar *token2,
|
67
|
+
void *data);
|
68
|
+
XMLPUBFUN xmlAutomataStatePtr XMLCALL
|
69
|
+
xmlAutomataNewNegTrans (xmlAutomataPtr am,
|
70
|
+
xmlAutomataStatePtr from,
|
71
|
+
xmlAutomataStatePtr to,
|
72
|
+
const xmlChar *token,
|
73
|
+
const xmlChar *token2,
|
74
|
+
void *data);
|
75
|
+
|
76
|
+
XMLPUBFUN xmlAutomataStatePtr XMLCALL
|
77
|
+
xmlAutomataNewCountTrans (xmlAutomataPtr am,
|
78
|
+
xmlAutomataStatePtr from,
|
79
|
+
xmlAutomataStatePtr to,
|
80
|
+
const xmlChar *token,
|
81
|
+
int min,
|
82
|
+
int max,
|
83
|
+
void *data);
|
84
|
+
XMLPUBFUN xmlAutomataStatePtr XMLCALL
|
85
|
+
xmlAutomataNewCountTrans2 (xmlAutomataPtr am,
|
86
|
+
xmlAutomataStatePtr from,
|
87
|
+
xmlAutomataStatePtr to,
|
88
|
+
const xmlChar *token,
|
89
|
+
const xmlChar *token2,
|
90
|
+
int min,
|
91
|
+
int max,
|
92
|
+
void *data);
|
93
|
+
XMLPUBFUN xmlAutomataStatePtr XMLCALL
|
94
|
+
xmlAutomataNewOnceTrans (xmlAutomataPtr am,
|
95
|
+
xmlAutomataStatePtr from,
|
96
|
+
xmlAutomataStatePtr to,
|
97
|
+
const xmlChar *token,
|
98
|
+
int min,
|
99
|
+
int max,
|
100
|
+
void *data);
|
101
|
+
XMLPUBFUN xmlAutomataStatePtr XMLCALL
|
102
|
+
xmlAutomataNewOnceTrans2 (xmlAutomataPtr am,
|
103
|
+
xmlAutomataStatePtr from,
|
104
|
+
xmlAutomataStatePtr to,
|
105
|
+
const xmlChar *token,
|
106
|
+
const xmlChar *token2,
|
107
|
+
int min,
|
108
|
+
int max,
|
109
|
+
void *data);
|
110
|
+
XMLPUBFUN xmlAutomataStatePtr XMLCALL
|
111
|
+
xmlAutomataNewAllTrans (xmlAutomataPtr am,
|
112
|
+
xmlAutomataStatePtr from,
|
113
|
+
xmlAutomataStatePtr to,
|
114
|
+
int lax);
|
115
|
+
XMLPUBFUN xmlAutomataStatePtr XMLCALL
|
116
|
+
xmlAutomataNewEpsilon (xmlAutomataPtr am,
|
117
|
+
xmlAutomataStatePtr from,
|
118
|
+
xmlAutomataStatePtr to);
|
119
|
+
XMLPUBFUN xmlAutomataStatePtr XMLCALL
|
120
|
+
xmlAutomataNewCountedTrans (xmlAutomataPtr am,
|
121
|
+
xmlAutomataStatePtr from,
|
122
|
+
xmlAutomataStatePtr to,
|
123
|
+
int counter);
|
124
|
+
XMLPUBFUN xmlAutomataStatePtr XMLCALL
|
125
|
+
xmlAutomataNewCounterTrans (xmlAutomataPtr am,
|
126
|
+
xmlAutomataStatePtr from,
|
127
|
+
xmlAutomataStatePtr to,
|
128
|
+
int counter);
|
129
|
+
XMLPUBFUN int XMLCALL
|
130
|
+
xmlAutomataNewCounter (xmlAutomataPtr am,
|
131
|
+
int min,
|
132
|
+
int max);
|
133
|
+
|
134
|
+
XMLPUBFUN xmlRegexpPtr XMLCALL
|
135
|
+
xmlAutomataCompile (xmlAutomataPtr am);
|
136
|
+
XMLPUBFUN int XMLCALL
|
137
|
+
xmlAutomataIsDeterminist (xmlAutomataPtr am);
|
138
|
+
|
139
|
+
#ifdef __cplusplus
|
140
|
+
}
|
141
|
+
#endif
|
142
|
+
|
143
|
+
#endif /* LIBXML_AUTOMATA_ENABLED */
|
144
|
+
#endif /* LIBXML_REGEXP_ENABLED */
|
145
|
+
|
146
|
+
#endif /* __XML_AUTOMATA_H__ */
|
@@ -0,0 +1,944 @@
|
|
1
|
+
/*
|
2
|
+
* Summary: error handling
|
3
|
+
* Description: the API used to report errors
|
4
|
+
*
|
5
|
+
* Copy: See Copyright for the status of this software.
|
6
|
+
*
|
7
|
+
* Author: Daniel Veillard
|
8
|
+
*/
|
9
|
+
|
10
|
+
#include <libxml/parser.h>
|
11
|
+
|
12
|
+
#ifndef __XML_ERROR_H__
|
13
|
+
#define __XML_ERROR_H__
|
14
|
+
|
15
|
+
#ifdef __cplusplus
|
16
|
+
extern "C" {
|
17
|
+
#endif
|
18
|
+
|
19
|
+
/**
|
20
|
+
* xmlErrorLevel:
|
21
|
+
*
|
22
|
+
* Indicates the level of an error
|
23
|
+
*/
|
24
|
+
typedef enum {
|
25
|
+
XML_ERR_NONE = 0,
|
26
|
+
XML_ERR_WARNING = 1, /* A simple warning */
|
27
|
+
XML_ERR_ERROR = 2, /* A recoverable error */
|
28
|
+
XML_ERR_FATAL = 3 /* A fatal error */
|
29
|
+
} xmlErrorLevel;
|
30
|
+
|
31
|
+
/**
|
32
|
+
* xmlErrorDomain:
|
33
|
+
*
|
34
|
+
* Indicates where an error may have come from
|
35
|
+
*/
|
36
|
+
typedef enum {
|
37
|
+
XML_FROM_NONE = 0,
|
38
|
+
XML_FROM_PARSER, /* The XML parser */
|
39
|
+
XML_FROM_TREE, /* The tree module */
|
40
|
+
XML_FROM_NAMESPACE, /* The XML Namespace module */
|
41
|
+
XML_FROM_DTD, /* The XML DTD validation with parser context*/
|
42
|
+
XML_FROM_HTML, /* The HTML parser */
|
43
|
+
XML_FROM_MEMORY, /* The memory allocator */
|
44
|
+
XML_FROM_OUTPUT, /* The serialization code */
|
45
|
+
XML_FROM_IO, /* The Input/Output stack */
|
46
|
+
XML_FROM_FTP, /* The FTP module */
|
47
|
+
XML_FROM_HTTP, /* The HTTP module */
|
48
|
+
XML_FROM_XINCLUDE, /* The XInclude processing */
|
49
|
+
XML_FROM_XPATH, /* The XPath module */
|
50
|
+
XML_FROM_XPOINTER, /* The XPointer module */
|
51
|
+
XML_FROM_REGEXP, /* The regular expressions module */
|
52
|
+
XML_FROM_DATATYPE, /* The W3C XML Schemas Datatype module */
|
53
|
+
XML_FROM_SCHEMASP, /* The W3C XML Schemas parser module */
|
54
|
+
XML_FROM_SCHEMASV, /* The W3C XML Schemas validation module */
|
55
|
+
XML_FROM_RELAXNGP, /* The Relax-NG parser module */
|
56
|
+
XML_FROM_RELAXNGV, /* The Relax-NG validator module */
|
57
|
+
XML_FROM_CATALOG, /* The Catalog module */
|
58
|
+
XML_FROM_C14N, /* The Canonicalization module */
|
59
|
+
XML_FROM_XSLT, /* The XSLT engine from libxslt */
|
60
|
+
XML_FROM_VALID, /* The XML DTD validation with valid context */
|
61
|
+
XML_FROM_CHECK, /* The error checking module */
|
62
|
+
XML_FROM_WRITER, /* The xmlwriter module */
|
63
|
+
XML_FROM_MODULE, /* The dynamically loaded module module*/
|
64
|
+
XML_FROM_I18N, /* The module handling character conversion */
|
65
|
+
XML_FROM_SCHEMATRONV,/* The Schematron validator module */
|
66
|
+
XML_FROM_BUFFER, /* The buffers module */
|
67
|
+
XML_FROM_URI /* The URI module */
|
68
|
+
} xmlErrorDomain;
|
69
|
+
|
70
|
+
/**
|
71
|
+
* xmlError:
|
72
|
+
*
|
73
|
+
* An XML Error instance.
|
74
|
+
*/
|
75
|
+
|
76
|
+
typedef struct _xmlError xmlError;
|
77
|
+
typedef xmlError *xmlErrorPtr;
|
78
|
+
struct _xmlError {
|
79
|
+
int domain; /* What part of the library raised this error */
|
80
|
+
int code; /* The error code, e.g. an xmlParserError */
|
81
|
+
char *message;/* human-readable informative error message */
|
82
|
+
xmlErrorLevel level;/* how consequent is the error */
|
83
|
+
char *file; /* the filename */
|
84
|
+
int line; /* the line number if available */
|
85
|
+
char *str1; /* extra string information */
|
86
|
+
char *str2; /* extra string information */
|
87
|
+
char *str3; /* extra string information */
|
88
|
+
int int1; /* extra number information */
|
89
|
+
int int2; /* column number of the error or 0 if N/A (todo: rename this field when we would break ABI) */
|
90
|
+
void *ctxt; /* the parser context if available */
|
91
|
+
void *node; /* the node in the tree */
|
92
|
+
};
|
93
|
+
|
94
|
+
/**
|
95
|
+
* xmlParserError:
|
96
|
+
*
|
97
|
+
* This is an error that the XML (or HTML) parser can generate
|
98
|
+
*/
|
99
|
+
typedef enum {
|
100
|
+
XML_ERR_OK = 0,
|
101
|
+
XML_ERR_INTERNAL_ERROR, /* 1 */
|
102
|
+
XML_ERR_NO_MEMORY, /* 2 */
|
103
|
+
XML_ERR_DOCUMENT_START, /* 3 */
|
104
|
+
XML_ERR_DOCUMENT_EMPTY, /* 4 */
|
105
|
+
XML_ERR_DOCUMENT_END, /* 5 */
|
106
|
+
XML_ERR_INVALID_HEX_CHARREF, /* 6 */
|
107
|
+
XML_ERR_INVALID_DEC_CHARREF, /* 7 */
|
108
|
+
XML_ERR_INVALID_CHARREF, /* 8 */
|
109
|
+
XML_ERR_INVALID_CHAR, /* 9 */
|
110
|
+
XML_ERR_CHARREF_AT_EOF, /* 10 */
|
111
|
+
XML_ERR_CHARREF_IN_PROLOG, /* 11 */
|
112
|
+
XML_ERR_CHARREF_IN_EPILOG, /* 12 */
|
113
|
+
XML_ERR_CHARREF_IN_DTD, /* 13 */
|
114
|
+
XML_ERR_ENTITYREF_AT_EOF, /* 14 */
|
115
|
+
XML_ERR_ENTITYREF_IN_PROLOG, /* 15 */
|
116
|
+
XML_ERR_ENTITYREF_IN_EPILOG, /* 16 */
|
117
|
+
XML_ERR_ENTITYREF_IN_DTD, /* 17 */
|
118
|
+
XML_ERR_PEREF_AT_EOF, /* 18 */
|
119
|
+
XML_ERR_PEREF_IN_PROLOG, /* 19 */
|
120
|
+
XML_ERR_PEREF_IN_EPILOG, /* 20 */
|
121
|
+
XML_ERR_PEREF_IN_INT_SUBSET, /* 21 */
|
122
|
+
XML_ERR_ENTITYREF_NO_NAME, /* 22 */
|
123
|
+
XML_ERR_ENTITYREF_SEMICOL_MISSING, /* 23 */
|
124
|
+
XML_ERR_PEREF_NO_NAME, /* 24 */
|
125
|
+
XML_ERR_PEREF_SEMICOL_MISSING, /* 25 */
|
126
|
+
XML_ERR_UNDECLARED_ENTITY, /* 26 */
|
127
|
+
XML_WAR_UNDECLARED_ENTITY, /* 27 */
|
128
|
+
XML_ERR_UNPARSED_ENTITY, /* 28 */
|
129
|
+
XML_ERR_ENTITY_IS_EXTERNAL, /* 29 */
|
130
|
+
XML_ERR_ENTITY_IS_PARAMETER, /* 30 */
|
131
|
+
XML_ERR_UNKNOWN_ENCODING, /* 31 */
|
132
|
+
XML_ERR_UNSUPPORTED_ENCODING, /* 32 */
|
133
|
+
XML_ERR_STRING_NOT_STARTED, /* 33 */
|
134
|
+
XML_ERR_STRING_NOT_CLOSED, /* 34 */
|
135
|
+
XML_ERR_NS_DECL_ERROR, /* 35 */
|
136
|
+
XML_ERR_ENTITY_NOT_STARTED, /* 36 */
|
137
|
+
XML_ERR_ENTITY_NOT_FINISHED, /* 37 */
|
138
|
+
XML_ERR_LT_IN_ATTRIBUTE, /* 38 */
|
139
|
+
XML_ERR_ATTRIBUTE_NOT_STARTED, /* 39 */
|
140
|
+
XML_ERR_ATTRIBUTE_NOT_FINISHED, /* 40 */
|
141
|
+
XML_ERR_ATTRIBUTE_WITHOUT_VALUE, /* 41 */
|
142
|
+
XML_ERR_ATTRIBUTE_REDEFINED, /* 42 */
|
143
|
+
XML_ERR_LITERAL_NOT_STARTED, /* 43 */
|
144
|
+
XML_ERR_LITERAL_NOT_FINISHED, /* 44 */
|
145
|
+
XML_ERR_COMMENT_NOT_FINISHED, /* 45 */
|
146
|
+
XML_ERR_PI_NOT_STARTED, /* 46 */
|
147
|
+
XML_ERR_PI_NOT_FINISHED, /* 47 */
|
148
|
+
XML_ERR_NOTATION_NOT_STARTED, /* 48 */
|
149
|
+
XML_ERR_NOTATION_NOT_FINISHED, /* 49 */
|
150
|
+
XML_ERR_ATTLIST_NOT_STARTED, /* 50 */
|
151
|
+
XML_ERR_ATTLIST_NOT_FINISHED, /* 51 */
|
152
|
+
XML_ERR_MIXED_NOT_STARTED, /* 52 */
|
153
|
+
XML_ERR_MIXED_NOT_FINISHED, /* 53 */
|
154
|
+
XML_ERR_ELEMCONTENT_NOT_STARTED, /* 54 */
|
155
|
+
XML_ERR_ELEMCONTENT_NOT_FINISHED, /* 55 */
|
156
|
+
XML_ERR_XMLDECL_NOT_STARTED, /* 56 */
|
157
|
+
XML_ERR_XMLDECL_NOT_FINISHED, /* 57 */
|
158
|
+
XML_ERR_CONDSEC_NOT_STARTED, /* 58 */
|
159
|
+
XML_ERR_CONDSEC_NOT_FINISHED, /* 59 */
|
160
|
+
XML_ERR_EXT_SUBSET_NOT_FINISHED, /* 60 */
|
161
|
+
XML_ERR_DOCTYPE_NOT_FINISHED, /* 61 */
|
162
|
+
XML_ERR_MISPLACED_CDATA_END, /* 62 */
|
163
|
+
XML_ERR_CDATA_NOT_FINISHED, /* 63 */
|
164
|
+
XML_ERR_RESERVED_XML_NAME, /* 64 */
|
165
|
+
XML_ERR_SPACE_REQUIRED, /* 65 */
|
166
|
+
XML_ERR_SEPARATOR_REQUIRED, /* 66 */
|
167
|
+
XML_ERR_NMTOKEN_REQUIRED, /* 67 */
|
168
|
+
XML_ERR_NAME_REQUIRED, /* 68 */
|
169
|
+
XML_ERR_PCDATA_REQUIRED, /* 69 */
|
170
|
+
XML_ERR_URI_REQUIRED, /* 70 */
|
171
|
+
XML_ERR_PUBID_REQUIRED, /* 71 */
|
172
|
+
XML_ERR_LT_REQUIRED, /* 72 */
|
173
|
+
XML_ERR_GT_REQUIRED, /* 73 */
|
174
|
+
XML_ERR_LTSLASH_REQUIRED, /* 74 */
|
175
|
+
XML_ERR_EQUAL_REQUIRED, /* 75 */
|
176
|
+
XML_ERR_TAG_NAME_MISMATCH, /* 76 */
|
177
|
+
XML_ERR_TAG_NOT_FINISHED, /* 77 */
|
178
|
+
XML_ERR_STANDALONE_VALUE, /* 78 */
|
179
|
+
XML_ERR_ENCODING_NAME, /* 79 */
|
180
|
+
XML_ERR_HYPHEN_IN_COMMENT, /* 80 */
|
181
|
+
XML_ERR_INVALID_ENCODING, /* 81 */
|
182
|
+
XML_ERR_EXT_ENTITY_STANDALONE, /* 82 */
|
183
|
+
XML_ERR_CONDSEC_INVALID, /* 83 */
|
184
|
+
XML_ERR_VALUE_REQUIRED, /* 84 */
|
185
|
+
XML_ERR_NOT_WELL_BALANCED, /* 85 */
|
186
|
+
XML_ERR_EXTRA_CONTENT, /* 86 */
|
187
|
+
XML_ERR_ENTITY_CHAR_ERROR, /* 87 */
|
188
|
+
XML_ERR_ENTITY_PE_INTERNAL, /* 88 */
|
189
|
+
XML_ERR_ENTITY_LOOP, /* 89 */
|
190
|
+
XML_ERR_ENTITY_BOUNDARY, /* 90 */
|
191
|
+
XML_ERR_INVALID_URI, /* 91 */
|
192
|
+
XML_ERR_URI_FRAGMENT, /* 92 */
|
193
|
+
XML_WAR_CATALOG_PI, /* 93 */
|
194
|
+
XML_ERR_NO_DTD, /* 94 */
|
195
|
+
XML_ERR_CONDSEC_INVALID_KEYWORD, /* 95 */
|
196
|
+
XML_ERR_VERSION_MISSING, /* 96 */
|
197
|
+
XML_WAR_UNKNOWN_VERSION, /* 97 */
|
198
|
+
XML_WAR_LANG_VALUE, /* 98 */
|
199
|
+
XML_WAR_NS_URI, /* 99 */
|
200
|
+
XML_WAR_NS_URI_RELATIVE, /* 100 */
|
201
|
+
XML_ERR_MISSING_ENCODING, /* 101 */
|
202
|
+
XML_WAR_SPACE_VALUE, /* 102 */
|
203
|
+
XML_ERR_NOT_STANDALONE, /* 103 */
|
204
|
+
XML_ERR_ENTITY_PROCESSING, /* 104 */
|
205
|
+
XML_ERR_NOTATION_PROCESSING, /* 105 */
|
206
|
+
XML_WAR_NS_COLUMN, /* 106 */
|
207
|
+
XML_WAR_ENTITY_REDEFINED, /* 107 */
|
208
|
+
XML_ERR_UNKNOWN_VERSION, /* 108 */
|
209
|
+
XML_ERR_VERSION_MISMATCH, /* 109 */
|
210
|
+
XML_ERR_NAME_TOO_LONG, /* 110 */
|
211
|
+
XML_NS_ERR_XML_NAMESPACE = 200,
|
212
|
+
XML_NS_ERR_UNDEFINED_NAMESPACE, /* 201 */
|
213
|
+
XML_NS_ERR_QNAME, /* 202 */
|
214
|
+
XML_NS_ERR_ATTRIBUTE_REDEFINED, /* 203 */
|
215
|
+
XML_NS_ERR_EMPTY, /* 204 */
|
216
|
+
XML_NS_ERR_COLON, /* 205 */
|
217
|
+
XML_DTD_ATTRIBUTE_DEFAULT = 500,
|
218
|
+
XML_DTD_ATTRIBUTE_REDEFINED, /* 501 */
|
219
|
+
XML_DTD_ATTRIBUTE_VALUE, /* 502 */
|
220
|
+
XML_DTD_CONTENT_ERROR, /* 503 */
|
221
|
+
XML_DTD_CONTENT_MODEL, /* 504 */
|
222
|
+
XML_DTD_CONTENT_NOT_DETERMINIST, /* 505 */
|
223
|
+
XML_DTD_DIFFERENT_PREFIX, /* 506 */
|
224
|
+
XML_DTD_ELEM_DEFAULT_NAMESPACE, /* 507 */
|
225
|
+
XML_DTD_ELEM_NAMESPACE, /* 508 */
|
226
|
+
XML_DTD_ELEM_REDEFINED, /* 509 */
|
227
|
+
XML_DTD_EMPTY_NOTATION, /* 510 */
|
228
|
+
XML_DTD_ENTITY_TYPE, /* 511 */
|
229
|
+
XML_DTD_ID_FIXED, /* 512 */
|
230
|
+
XML_DTD_ID_REDEFINED, /* 513 */
|
231
|
+
XML_DTD_ID_SUBSET, /* 514 */
|
232
|
+
XML_DTD_INVALID_CHILD, /* 515 */
|
233
|
+
XML_DTD_INVALID_DEFAULT, /* 516 */
|
234
|
+
XML_DTD_LOAD_ERROR, /* 517 */
|
235
|
+
XML_DTD_MISSING_ATTRIBUTE, /* 518 */
|
236
|
+
XML_DTD_MIXED_CORRUPT, /* 519 */
|
237
|
+
XML_DTD_MULTIPLE_ID, /* 520 */
|
238
|
+
XML_DTD_NO_DOC, /* 521 */
|
239
|
+
XML_DTD_NO_DTD, /* 522 */
|
240
|
+
XML_DTD_NO_ELEM_NAME, /* 523 */
|
241
|
+
XML_DTD_NO_PREFIX, /* 524 */
|
242
|
+
XML_DTD_NO_ROOT, /* 525 */
|
243
|
+
XML_DTD_NOTATION_REDEFINED, /* 526 */
|
244
|
+
XML_DTD_NOTATION_VALUE, /* 527 */
|
245
|
+
XML_DTD_NOT_EMPTY, /* 528 */
|
246
|
+
XML_DTD_NOT_PCDATA, /* 529 */
|
247
|
+
XML_DTD_NOT_STANDALONE, /* 530 */
|
248
|
+
XML_DTD_ROOT_NAME, /* 531 */
|
249
|
+
XML_DTD_STANDALONE_WHITE_SPACE, /* 532 */
|
250
|
+
XML_DTD_UNKNOWN_ATTRIBUTE, /* 533 */
|
251
|
+
XML_DTD_UNKNOWN_ELEM, /* 534 */
|
252
|
+
XML_DTD_UNKNOWN_ENTITY, /* 535 */
|
253
|
+
XML_DTD_UNKNOWN_ID, /* 536 */
|
254
|
+
XML_DTD_UNKNOWN_NOTATION, /* 537 */
|
255
|
+
XML_DTD_STANDALONE_DEFAULTED, /* 538 */
|
256
|
+
XML_DTD_XMLID_VALUE, /* 539 */
|
257
|
+
XML_DTD_XMLID_TYPE, /* 540 */
|
258
|
+
XML_DTD_DUP_TOKEN, /* 541 */
|
259
|
+
XML_HTML_STRUCURE_ERROR = 800,
|
260
|
+
XML_HTML_UNKNOWN_TAG, /* 801 */
|
261
|
+
XML_RNGP_ANYNAME_ATTR_ANCESTOR = 1000,
|
262
|
+
XML_RNGP_ATTR_CONFLICT, /* 1001 */
|
263
|
+
XML_RNGP_ATTRIBUTE_CHILDREN, /* 1002 */
|
264
|
+
XML_RNGP_ATTRIBUTE_CONTENT, /* 1003 */
|
265
|
+
XML_RNGP_ATTRIBUTE_EMPTY, /* 1004 */
|
266
|
+
XML_RNGP_ATTRIBUTE_NOOP, /* 1005 */
|
267
|
+
XML_RNGP_CHOICE_CONTENT, /* 1006 */
|
268
|
+
XML_RNGP_CHOICE_EMPTY, /* 1007 */
|
269
|
+
XML_RNGP_CREATE_FAILURE, /* 1008 */
|
270
|
+
XML_RNGP_DATA_CONTENT, /* 1009 */
|
271
|
+
XML_RNGP_DEF_CHOICE_AND_INTERLEAVE, /* 1010 */
|
272
|
+
XML_RNGP_DEFINE_CREATE_FAILED, /* 1011 */
|
273
|
+
XML_RNGP_DEFINE_EMPTY, /* 1012 */
|
274
|
+
XML_RNGP_DEFINE_MISSING, /* 1013 */
|
275
|
+
XML_RNGP_DEFINE_NAME_MISSING, /* 1014 */
|
276
|
+
XML_RNGP_ELEM_CONTENT_EMPTY, /* 1015 */
|
277
|
+
XML_RNGP_ELEM_CONTENT_ERROR, /* 1016 */
|
278
|
+
XML_RNGP_ELEMENT_EMPTY, /* 1017 */
|
279
|
+
XML_RNGP_ELEMENT_CONTENT, /* 1018 */
|
280
|
+
XML_RNGP_ELEMENT_NAME, /* 1019 */
|
281
|
+
XML_RNGP_ELEMENT_NO_CONTENT, /* 1020 */
|
282
|
+
XML_RNGP_ELEM_TEXT_CONFLICT, /* 1021 */
|
283
|
+
XML_RNGP_EMPTY, /* 1022 */
|
284
|
+
XML_RNGP_EMPTY_CONSTRUCT, /* 1023 */
|
285
|
+
XML_RNGP_EMPTY_CONTENT, /* 1024 */
|
286
|
+
XML_RNGP_EMPTY_NOT_EMPTY, /* 1025 */
|
287
|
+
XML_RNGP_ERROR_TYPE_LIB, /* 1026 */
|
288
|
+
XML_RNGP_EXCEPT_EMPTY, /* 1027 */
|
289
|
+
XML_RNGP_EXCEPT_MISSING, /* 1028 */
|
290
|
+
XML_RNGP_EXCEPT_MULTIPLE, /* 1029 */
|
291
|
+
XML_RNGP_EXCEPT_NO_CONTENT, /* 1030 */
|
292
|
+
XML_RNGP_EXTERNALREF_EMTPY, /* 1031 */
|
293
|
+
XML_RNGP_EXTERNAL_REF_FAILURE, /* 1032 */
|
294
|
+
XML_RNGP_EXTERNALREF_RECURSE, /* 1033 */
|
295
|
+
XML_RNGP_FORBIDDEN_ATTRIBUTE, /* 1034 */
|
296
|
+
XML_RNGP_FOREIGN_ELEMENT, /* 1035 */
|
297
|
+
XML_RNGP_GRAMMAR_CONTENT, /* 1036 */
|
298
|
+
XML_RNGP_GRAMMAR_EMPTY, /* 1037 */
|
299
|
+
XML_RNGP_GRAMMAR_MISSING, /* 1038 */
|
300
|
+
XML_RNGP_GRAMMAR_NO_START, /* 1039 */
|
301
|
+
XML_RNGP_GROUP_ATTR_CONFLICT, /* 1040 */
|
302
|
+
XML_RNGP_HREF_ERROR, /* 1041 */
|
303
|
+
XML_RNGP_INCLUDE_EMPTY, /* 1042 */
|
304
|
+
XML_RNGP_INCLUDE_FAILURE, /* 1043 */
|
305
|
+
XML_RNGP_INCLUDE_RECURSE, /* 1044 */
|
306
|
+
XML_RNGP_INTERLEAVE_ADD, /* 1045 */
|
307
|
+
XML_RNGP_INTERLEAVE_CREATE_FAILED, /* 1046 */
|
308
|
+
XML_RNGP_INTERLEAVE_EMPTY, /* 1047 */
|
309
|
+
XML_RNGP_INTERLEAVE_NO_CONTENT, /* 1048 */
|
310
|
+
XML_RNGP_INVALID_DEFINE_NAME, /* 1049 */
|
311
|
+
XML_RNGP_INVALID_URI, /* 1050 */
|
312
|
+
XML_RNGP_INVALID_VALUE, /* 1051 */
|
313
|
+
XML_RNGP_MISSING_HREF, /* 1052 */
|
314
|
+
XML_RNGP_NAME_MISSING, /* 1053 */
|
315
|
+
XML_RNGP_NEED_COMBINE, /* 1054 */
|
316
|
+
XML_RNGP_NOTALLOWED_NOT_EMPTY, /* 1055 */
|
317
|
+
XML_RNGP_NSNAME_ATTR_ANCESTOR, /* 1056 */
|
318
|
+
XML_RNGP_NSNAME_NO_NS, /* 1057 */
|
319
|
+
XML_RNGP_PARAM_FORBIDDEN, /* 1058 */
|
320
|
+
XML_RNGP_PARAM_NAME_MISSING, /* 1059 */
|
321
|
+
XML_RNGP_PARENTREF_CREATE_FAILED, /* 1060 */
|
322
|
+
XML_RNGP_PARENTREF_NAME_INVALID, /* 1061 */
|
323
|
+
XML_RNGP_PARENTREF_NO_NAME, /* 1062 */
|
324
|
+
XML_RNGP_PARENTREF_NO_PARENT, /* 1063 */
|
325
|
+
XML_RNGP_PARENTREF_NOT_EMPTY, /* 1064 */
|
326
|
+
XML_RNGP_PARSE_ERROR, /* 1065 */
|
327
|
+
XML_RNGP_PAT_ANYNAME_EXCEPT_ANYNAME, /* 1066 */
|
328
|
+
XML_RNGP_PAT_ATTR_ATTR, /* 1067 */
|
329
|
+
XML_RNGP_PAT_ATTR_ELEM, /* 1068 */
|
330
|
+
XML_RNGP_PAT_DATA_EXCEPT_ATTR, /* 1069 */
|
331
|
+
XML_RNGP_PAT_DATA_EXCEPT_ELEM, /* 1070 */
|
332
|
+
XML_RNGP_PAT_DATA_EXCEPT_EMPTY, /* 1071 */
|
333
|
+
XML_RNGP_PAT_DATA_EXCEPT_GROUP, /* 1072 */
|
334
|
+
XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE, /* 1073 */
|
335
|
+
XML_RNGP_PAT_DATA_EXCEPT_LIST, /* 1074 */
|
336
|
+
XML_RNGP_PAT_DATA_EXCEPT_ONEMORE, /* 1075 */
|
337
|
+
XML_RNGP_PAT_DATA_EXCEPT_REF, /* 1076 */
|
338
|
+
XML_RNGP_PAT_DATA_EXCEPT_TEXT, /* 1077 */
|
339
|
+
XML_RNGP_PAT_LIST_ATTR, /* 1078 */
|
340
|
+
XML_RNGP_PAT_LIST_ELEM, /* 1079 */
|
341
|
+
XML_RNGP_PAT_LIST_INTERLEAVE, /* 1080 */
|
342
|
+
XML_RNGP_PAT_LIST_LIST, /* 1081 */
|
343
|
+
XML_RNGP_PAT_LIST_REF, /* 1082 */
|
344
|
+
XML_RNGP_PAT_LIST_TEXT, /* 1083 */
|
345
|
+
XML_RNGP_PAT_NSNAME_EXCEPT_ANYNAME, /* 1084 */
|
346
|
+
XML_RNGP_PAT_NSNAME_EXCEPT_NSNAME, /* 1085 */
|
347
|
+
XML_RNGP_PAT_ONEMORE_GROUP_ATTR, /* 1086 */
|
348
|
+
XML_RNGP_PAT_ONEMORE_INTERLEAVE_ATTR, /* 1087 */
|
349
|
+
XML_RNGP_PAT_START_ATTR, /* 1088 */
|
350
|
+
XML_RNGP_PAT_START_DATA, /* 1089 */
|
351
|
+
XML_RNGP_PAT_START_EMPTY, /* 1090 */
|
352
|
+
XML_RNGP_PAT_START_GROUP, /* 1091 */
|
353
|
+
XML_RNGP_PAT_START_INTERLEAVE, /* 1092 */
|
354
|
+
XML_RNGP_PAT_START_LIST, /* 1093 */
|
355
|
+
XML_RNGP_PAT_START_ONEMORE, /* 1094 */
|
356
|
+
XML_RNGP_PAT_START_TEXT, /* 1095 */
|
357
|
+
XML_RNGP_PAT_START_VALUE, /* 1096 */
|
358
|
+
XML_RNGP_PREFIX_UNDEFINED, /* 1097 */
|
359
|
+
XML_RNGP_REF_CREATE_FAILED, /* 1098 */
|
360
|
+
XML_RNGP_REF_CYCLE, /* 1099 */
|
361
|
+
XML_RNGP_REF_NAME_INVALID, /* 1100 */
|
362
|
+
XML_RNGP_REF_NO_DEF, /* 1101 */
|
363
|
+
XML_RNGP_REF_NO_NAME, /* 1102 */
|
364
|
+
XML_RNGP_REF_NOT_EMPTY, /* 1103 */
|
365
|
+
XML_RNGP_START_CHOICE_AND_INTERLEAVE, /* 1104 */
|
366
|
+
XML_RNGP_START_CONTENT, /* 1105 */
|
367
|
+
XML_RNGP_START_EMPTY, /* 1106 */
|
368
|
+
XML_RNGP_START_MISSING, /* 1107 */
|
369
|
+
XML_RNGP_TEXT_EXPECTED, /* 1108 */
|
370
|
+
XML_RNGP_TEXT_HAS_CHILD, /* 1109 */
|
371
|
+
XML_RNGP_TYPE_MISSING, /* 1110 */
|
372
|
+
XML_RNGP_TYPE_NOT_FOUND, /* 1111 */
|
373
|
+
XML_RNGP_TYPE_VALUE, /* 1112 */
|
374
|
+
XML_RNGP_UNKNOWN_ATTRIBUTE, /* 1113 */
|
375
|
+
XML_RNGP_UNKNOWN_COMBINE, /* 1114 */
|
376
|
+
XML_RNGP_UNKNOWN_CONSTRUCT, /* 1115 */
|
377
|
+
XML_RNGP_UNKNOWN_TYPE_LIB, /* 1116 */
|
378
|
+
XML_RNGP_URI_FRAGMENT, /* 1117 */
|
379
|
+
XML_RNGP_URI_NOT_ABSOLUTE, /* 1118 */
|
380
|
+
XML_RNGP_VALUE_EMPTY, /* 1119 */
|
381
|
+
XML_RNGP_VALUE_NO_CONTENT, /* 1120 */
|
382
|
+
XML_RNGP_XMLNS_NAME, /* 1121 */
|
383
|
+
XML_RNGP_XML_NS, /* 1122 */
|
384
|
+
XML_XPATH_EXPRESSION_OK = 1200,
|
385
|
+
XML_XPATH_NUMBER_ERROR, /* 1201 */
|
386
|
+
XML_XPATH_UNFINISHED_LITERAL_ERROR, /* 1202 */
|
387
|
+
XML_XPATH_START_LITERAL_ERROR, /* 1203 */
|
388
|
+
XML_XPATH_VARIABLE_REF_ERROR, /* 1204 */
|
389
|
+
XML_XPATH_UNDEF_VARIABLE_ERROR, /* 1205 */
|
390
|
+
XML_XPATH_INVALID_PREDICATE_ERROR, /* 1206 */
|
391
|
+
XML_XPATH_EXPR_ERROR, /* 1207 */
|
392
|
+
XML_XPATH_UNCLOSED_ERROR, /* 1208 */
|
393
|
+
XML_XPATH_UNKNOWN_FUNC_ERROR, /* 1209 */
|
394
|
+
XML_XPATH_INVALID_OPERAND, /* 1210 */
|
395
|
+
XML_XPATH_INVALID_TYPE, /* 1211 */
|
396
|
+
XML_XPATH_INVALID_ARITY, /* 1212 */
|
397
|
+
XML_XPATH_INVALID_CTXT_SIZE, /* 1213 */
|
398
|
+
XML_XPATH_INVALID_CTXT_POSITION, /* 1214 */
|
399
|
+
XML_XPATH_MEMORY_ERROR, /* 1215 */
|
400
|
+
XML_XPTR_SYNTAX_ERROR, /* 1216 */
|
401
|
+
XML_XPTR_RESOURCE_ERROR, /* 1217 */
|
402
|
+
XML_XPTR_SUB_RESOURCE_ERROR, /* 1218 */
|
403
|
+
XML_XPATH_UNDEF_PREFIX_ERROR, /* 1219 */
|
404
|
+
XML_XPATH_ENCODING_ERROR, /* 1220 */
|
405
|
+
XML_XPATH_INVALID_CHAR_ERROR, /* 1221 */
|
406
|
+
XML_TREE_INVALID_HEX = 1300,
|
407
|
+
XML_TREE_INVALID_DEC, /* 1301 */
|
408
|
+
XML_TREE_UNTERMINATED_ENTITY, /* 1302 */
|
409
|
+
XML_TREE_NOT_UTF8, /* 1303 */
|
410
|
+
XML_SAVE_NOT_UTF8 = 1400,
|
411
|
+
XML_SAVE_CHAR_INVALID, /* 1401 */
|
412
|
+
XML_SAVE_NO_DOCTYPE, /* 1402 */
|
413
|
+
XML_SAVE_UNKNOWN_ENCODING, /* 1403 */
|
414
|
+
XML_REGEXP_COMPILE_ERROR = 1450,
|
415
|
+
XML_IO_UNKNOWN = 1500,
|
416
|
+
XML_IO_EACCES, /* 1501 */
|
417
|
+
XML_IO_EAGAIN, /* 1502 */
|
418
|
+
XML_IO_EBADF, /* 1503 */
|
419
|
+
XML_IO_EBADMSG, /* 1504 */
|
420
|
+
XML_IO_EBUSY, /* 1505 */
|
421
|
+
XML_IO_ECANCELED, /* 1506 */
|
422
|
+
XML_IO_ECHILD, /* 1507 */
|
423
|
+
XML_IO_EDEADLK, /* 1508 */
|
424
|
+
XML_IO_EDOM, /* 1509 */
|
425
|
+
XML_IO_EEXIST, /* 1510 */
|
426
|
+
XML_IO_EFAULT, /* 1511 */
|
427
|
+
XML_IO_EFBIG, /* 1512 */
|
428
|
+
XML_IO_EINPROGRESS, /* 1513 */
|
429
|
+
XML_IO_EINTR, /* 1514 */
|
430
|
+
XML_IO_EINVAL, /* 1515 */
|
431
|
+
XML_IO_EIO, /* 1516 */
|
432
|
+
XML_IO_EISDIR, /* 1517 */
|
433
|
+
XML_IO_EMFILE, /* 1518 */
|
434
|
+
XML_IO_EMLINK, /* 1519 */
|
435
|
+
XML_IO_EMSGSIZE, /* 1520 */
|
436
|
+
XML_IO_ENAMETOOLONG, /* 1521 */
|
437
|
+
XML_IO_ENFILE, /* 1522 */
|
438
|
+
XML_IO_ENODEV, /* 1523 */
|
439
|
+
XML_IO_ENOENT, /* 1524 */
|
440
|
+
XML_IO_ENOEXEC, /* 1525 */
|
441
|
+
XML_IO_ENOLCK, /* 1526 */
|
442
|
+
XML_IO_ENOMEM, /* 1527 */
|
443
|
+
XML_IO_ENOSPC, /* 1528 */
|
444
|
+
XML_IO_ENOSYS, /* 1529 */
|
445
|
+
XML_IO_ENOTDIR, /* 1530 */
|
446
|
+
XML_IO_ENOTEMPTY, /* 1531 */
|
447
|
+
XML_IO_ENOTSUP, /* 1532 */
|
448
|
+
XML_IO_ENOTTY, /* 1533 */
|
449
|
+
XML_IO_ENXIO, /* 1534 */
|
450
|
+
XML_IO_EPERM, /* 1535 */
|
451
|
+
XML_IO_EPIPE, /* 1536 */
|
452
|
+
XML_IO_ERANGE, /* 1537 */
|
453
|
+
XML_IO_EROFS, /* 1538 */
|
454
|
+
XML_IO_ESPIPE, /* 1539 */
|
455
|
+
XML_IO_ESRCH, /* 1540 */
|
456
|
+
XML_IO_ETIMEDOUT, /* 1541 */
|
457
|
+
XML_IO_EXDEV, /* 1542 */
|
458
|
+
XML_IO_NETWORK_ATTEMPT, /* 1543 */
|
459
|
+
XML_IO_ENCODER, /* 1544 */
|
460
|
+
XML_IO_FLUSH, /* 1545 */
|
461
|
+
XML_IO_WRITE, /* 1546 */
|
462
|
+
XML_IO_NO_INPUT, /* 1547 */
|
463
|
+
XML_IO_BUFFER_FULL, /* 1548 */
|
464
|
+
XML_IO_LOAD_ERROR, /* 1549 */
|
465
|
+
XML_IO_ENOTSOCK, /* 1550 */
|
466
|
+
XML_IO_EISCONN, /* 1551 */
|
467
|
+
XML_IO_ECONNREFUSED, /* 1552 */
|
468
|
+
XML_IO_ENETUNREACH, /* 1553 */
|
469
|
+
XML_IO_EADDRINUSE, /* 1554 */
|
470
|
+
XML_IO_EALREADY, /* 1555 */
|
471
|
+
XML_IO_EAFNOSUPPORT, /* 1556 */
|
472
|
+
XML_XINCLUDE_RECURSION=1600,
|
473
|
+
XML_XINCLUDE_PARSE_VALUE, /* 1601 */
|
474
|
+
XML_XINCLUDE_ENTITY_DEF_MISMATCH, /* 1602 */
|
475
|
+
XML_XINCLUDE_NO_HREF, /* 1603 */
|
476
|
+
XML_XINCLUDE_NO_FALLBACK, /* 1604 */
|
477
|
+
XML_XINCLUDE_HREF_URI, /* 1605 */
|
478
|
+
XML_XINCLUDE_TEXT_FRAGMENT, /* 1606 */
|
479
|
+
XML_XINCLUDE_TEXT_DOCUMENT, /* 1607 */
|
480
|
+
XML_XINCLUDE_INVALID_CHAR, /* 1608 */
|
481
|
+
XML_XINCLUDE_BUILD_FAILED, /* 1609 */
|
482
|
+
XML_XINCLUDE_UNKNOWN_ENCODING, /* 1610 */
|
483
|
+
XML_XINCLUDE_MULTIPLE_ROOT, /* 1611 */
|
484
|
+
XML_XINCLUDE_XPTR_FAILED, /* 1612 */
|
485
|
+
XML_XINCLUDE_XPTR_RESULT, /* 1613 */
|
486
|
+
XML_XINCLUDE_INCLUDE_IN_INCLUDE, /* 1614 */
|
487
|
+
XML_XINCLUDE_FALLBACKS_IN_INCLUDE, /* 1615 */
|
488
|
+
XML_XINCLUDE_FALLBACK_NOT_IN_INCLUDE, /* 1616 */
|
489
|
+
XML_XINCLUDE_DEPRECATED_NS, /* 1617 */
|
490
|
+
XML_XINCLUDE_FRAGMENT_ID, /* 1618 */
|
491
|
+
XML_CATALOG_MISSING_ATTR = 1650,
|
492
|
+
XML_CATALOG_ENTRY_BROKEN, /* 1651 */
|
493
|
+
XML_CATALOG_PREFER_VALUE, /* 1652 */
|
494
|
+
XML_CATALOG_NOT_CATALOG, /* 1653 */
|
495
|
+
XML_CATALOG_RECURSION, /* 1654 */
|
496
|
+
XML_SCHEMAP_PREFIX_UNDEFINED = 1700,
|
497
|
+
XML_SCHEMAP_ATTRFORMDEFAULT_VALUE, /* 1701 */
|
498
|
+
XML_SCHEMAP_ATTRGRP_NONAME_NOREF, /* 1702 */
|
499
|
+
XML_SCHEMAP_ATTR_NONAME_NOREF, /* 1703 */
|
500
|
+
XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF, /* 1704 */
|
501
|
+
XML_SCHEMAP_ELEMFORMDEFAULT_VALUE, /* 1705 */
|
502
|
+
XML_SCHEMAP_ELEM_NONAME_NOREF, /* 1706 */
|
503
|
+
XML_SCHEMAP_EXTENSION_NO_BASE, /* 1707 */
|
504
|
+
XML_SCHEMAP_FACET_NO_VALUE, /* 1708 */
|
505
|
+
XML_SCHEMAP_FAILED_BUILD_IMPORT, /* 1709 */
|
506
|
+
XML_SCHEMAP_GROUP_NONAME_NOREF, /* 1710 */
|
507
|
+
XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI, /* 1711 */
|
508
|
+
XML_SCHEMAP_IMPORT_REDEFINE_NSNAME, /* 1712 */
|
509
|
+
XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI, /* 1713 */
|
510
|
+
XML_SCHEMAP_INVALID_BOOLEAN, /* 1714 */
|
511
|
+
XML_SCHEMAP_INVALID_ENUM, /* 1715 */
|
512
|
+
XML_SCHEMAP_INVALID_FACET, /* 1716 */
|
513
|
+
XML_SCHEMAP_INVALID_FACET_VALUE, /* 1717 */
|
514
|
+
XML_SCHEMAP_INVALID_MAXOCCURS, /* 1718 */
|
515
|
+
XML_SCHEMAP_INVALID_MINOCCURS, /* 1719 */
|
516
|
+
XML_SCHEMAP_INVALID_REF_AND_SUBTYPE, /* 1720 */
|
517
|
+
XML_SCHEMAP_INVALID_WHITE_SPACE, /* 1721 */
|
518
|
+
XML_SCHEMAP_NOATTR_NOREF, /* 1722 */
|
519
|
+
XML_SCHEMAP_NOTATION_NO_NAME, /* 1723 */
|
520
|
+
XML_SCHEMAP_NOTYPE_NOREF, /* 1724 */
|
521
|
+
XML_SCHEMAP_REF_AND_SUBTYPE, /* 1725 */
|
522
|
+
XML_SCHEMAP_RESTRICTION_NONAME_NOREF, /* 1726 */
|
523
|
+
XML_SCHEMAP_SIMPLETYPE_NONAME, /* 1727 */
|
524
|
+
XML_SCHEMAP_TYPE_AND_SUBTYPE, /* 1728 */
|
525
|
+
XML_SCHEMAP_UNKNOWN_ALL_CHILD, /* 1729 */
|
526
|
+
XML_SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD, /* 1730 */
|
527
|
+
XML_SCHEMAP_UNKNOWN_ATTR_CHILD, /* 1731 */
|
528
|
+
XML_SCHEMAP_UNKNOWN_ATTRGRP_CHILD, /* 1732 */
|
529
|
+
XML_SCHEMAP_UNKNOWN_ATTRIBUTE_GROUP, /* 1733 */
|
530
|
+
XML_SCHEMAP_UNKNOWN_BASE_TYPE, /* 1734 */
|
531
|
+
XML_SCHEMAP_UNKNOWN_CHOICE_CHILD, /* 1735 */
|
532
|
+
XML_SCHEMAP_UNKNOWN_COMPLEXCONTENT_CHILD, /* 1736 */
|
533
|
+
XML_SCHEMAP_UNKNOWN_COMPLEXTYPE_CHILD, /* 1737 */
|
534
|
+
XML_SCHEMAP_UNKNOWN_ELEM_CHILD, /* 1738 */
|
535
|
+
XML_SCHEMAP_UNKNOWN_EXTENSION_CHILD, /* 1739 */
|
536
|
+
XML_SCHEMAP_UNKNOWN_FACET_CHILD, /* 1740 */
|
537
|
+
XML_SCHEMAP_UNKNOWN_FACET_TYPE, /* 1741 */
|
538
|
+
XML_SCHEMAP_UNKNOWN_GROUP_CHILD, /* 1742 */
|
539
|
+
XML_SCHEMAP_UNKNOWN_IMPORT_CHILD, /* 1743 */
|
540
|
+
XML_SCHEMAP_UNKNOWN_LIST_CHILD, /* 1744 */
|
541
|
+
XML_SCHEMAP_UNKNOWN_NOTATION_CHILD, /* 1745 */
|
542
|
+
XML_SCHEMAP_UNKNOWN_PROCESSCONTENT_CHILD, /* 1746 */
|
543
|
+
XML_SCHEMAP_UNKNOWN_REF, /* 1747 */
|
544
|
+
XML_SCHEMAP_UNKNOWN_RESTRICTION_CHILD, /* 1748 */
|
545
|
+
XML_SCHEMAP_UNKNOWN_SCHEMAS_CHILD, /* 1749 */
|
546
|
+
XML_SCHEMAP_UNKNOWN_SEQUENCE_CHILD, /* 1750 */
|
547
|
+
XML_SCHEMAP_UNKNOWN_SIMPLECONTENT_CHILD, /* 1751 */
|
548
|
+
XML_SCHEMAP_UNKNOWN_SIMPLETYPE_CHILD, /* 1752 */
|
549
|
+
XML_SCHEMAP_UNKNOWN_TYPE, /* 1753 */
|
550
|
+
XML_SCHEMAP_UNKNOWN_UNION_CHILD, /* 1754 */
|
551
|
+
XML_SCHEMAP_ELEM_DEFAULT_FIXED, /* 1755 */
|
552
|
+
XML_SCHEMAP_REGEXP_INVALID, /* 1756 */
|
553
|
+
XML_SCHEMAP_FAILED_LOAD, /* 1757 */
|
554
|
+
XML_SCHEMAP_NOTHING_TO_PARSE, /* 1758 */
|
555
|
+
XML_SCHEMAP_NOROOT, /* 1759 */
|
556
|
+
XML_SCHEMAP_REDEFINED_GROUP, /* 1760 */
|
557
|
+
XML_SCHEMAP_REDEFINED_TYPE, /* 1761 */
|
558
|
+
XML_SCHEMAP_REDEFINED_ELEMENT, /* 1762 */
|
559
|
+
XML_SCHEMAP_REDEFINED_ATTRGROUP, /* 1763 */
|
560
|
+
XML_SCHEMAP_REDEFINED_ATTR, /* 1764 */
|
561
|
+
XML_SCHEMAP_REDEFINED_NOTATION, /* 1765 */
|
562
|
+
XML_SCHEMAP_FAILED_PARSE, /* 1766 */
|
563
|
+
XML_SCHEMAP_UNKNOWN_PREFIX, /* 1767 */
|
564
|
+
XML_SCHEMAP_DEF_AND_PREFIX, /* 1768 */
|
565
|
+
XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD, /* 1769 */
|
566
|
+
XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI, /* 1770 */
|
567
|
+
XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI, /* 1771 */
|
568
|
+
XML_SCHEMAP_NOT_SCHEMA, /* 1772 */
|
569
|
+
XML_SCHEMAP_UNKNOWN_MEMBER_TYPE, /* 1773 */
|
570
|
+
XML_SCHEMAP_INVALID_ATTR_USE, /* 1774 */
|
571
|
+
XML_SCHEMAP_RECURSIVE, /* 1775 */
|
572
|
+
XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE, /* 1776 */
|
573
|
+
XML_SCHEMAP_INVALID_ATTR_COMBINATION, /* 1777 */
|
574
|
+
XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION, /* 1778 */
|
575
|
+
XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD, /* 1779 */
|
576
|
+
XML_SCHEMAP_INVALID_ATTR_NAME, /* 1780 */
|
577
|
+
XML_SCHEMAP_REF_AND_CONTENT, /* 1781 */
|
578
|
+
XML_SCHEMAP_CT_PROPS_CORRECT_1, /* 1782 */
|
579
|
+
XML_SCHEMAP_CT_PROPS_CORRECT_2, /* 1783 */
|
580
|
+
XML_SCHEMAP_CT_PROPS_CORRECT_3, /* 1784 */
|
581
|
+
XML_SCHEMAP_CT_PROPS_CORRECT_4, /* 1785 */
|
582
|
+
XML_SCHEMAP_CT_PROPS_CORRECT_5, /* 1786 */
|
583
|
+
XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1, /* 1787 */
|
584
|
+
XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1, /* 1788 */
|
585
|
+
XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2, /* 1789 */
|
586
|
+
XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2, /* 1790 */
|
587
|
+
XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3, /* 1791 */
|
588
|
+
XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER, /* 1792 */
|
589
|
+
XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE, /* 1793 */
|
590
|
+
XML_SCHEMAP_UNION_NOT_EXPRESSIBLE, /* 1794 */
|
591
|
+
XML_SCHEMAP_SRC_IMPORT_3_1, /* 1795 */
|
592
|
+
XML_SCHEMAP_SRC_IMPORT_3_2, /* 1796 */
|
593
|
+
XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1, /* 1797 */
|
594
|
+
XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2, /* 1798 */
|
595
|
+
XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3, /* 1799 */
|
596
|
+
XML_SCHEMAP_COS_CT_EXTENDS_1_3, /* 1800 */
|
597
|
+
XML_SCHEMAV_NOROOT = 1801,
|
598
|
+
XML_SCHEMAV_UNDECLAREDELEM, /* 1802 */
|
599
|
+
XML_SCHEMAV_NOTTOPLEVEL, /* 1803 */
|
600
|
+
XML_SCHEMAV_MISSING, /* 1804 */
|
601
|
+
XML_SCHEMAV_WRONGELEM, /* 1805 */
|
602
|
+
XML_SCHEMAV_NOTYPE, /* 1806 */
|
603
|
+
XML_SCHEMAV_NOROLLBACK, /* 1807 */
|
604
|
+
XML_SCHEMAV_ISABSTRACT, /* 1808 */
|
605
|
+
XML_SCHEMAV_NOTEMPTY, /* 1809 */
|
606
|
+
XML_SCHEMAV_ELEMCONT, /* 1810 */
|
607
|
+
XML_SCHEMAV_HAVEDEFAULT, /* 1811 */
|
608
|
+
XML_SCHEMAV_NOTNILLABLE, /* 1812 */
|
609
|
+
XML_SCHEMAV_EXTRACONTENT, /* 1813 */
|
610
|
+
XML_SCHEMAV_INVALIDATTR, /* 1814 */
|
611
|
+
XML_SCHEMAV_INVALIDELEM, /* 1815 */
|
612
|
+
XML_SCHEMAV_NOTDETERMINIST, /* 1816 */
|
613
|
+
XML_SCHEMAV_CONSTRUCT, /* 1817 */
|
614
|
+
XML_SCHEMAV_INTERNAL, /* 1818 */
|
615
|
+
XML_SCHEMAV_NOTSIMPLE, /* 1819 */
|
616
|
+
XML_SCHEMAV_ATTRUNKNOWN, /* 1820 */
|
617
|
+
XML_SCHEMAV_ATTRINVALID, /* 1821 */
|
618
|
+
XML_SCHEMAV_VALUE, /* 1822 */
|
619
|
+
XML_SCHEMAV_FACET, /* 1823 */
|
620
|
+
XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1, /* 1824 */
|
621
|
+
XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2, /* 1825 */
|
622
|
+
XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3, /* 1826 */
|
623
|
+
XML_SCHEMAV_CVC_TYPE_3_1_1, /* 1827 */
|
624
|
+
XML_SCHEMAV_CVC_TYPE_3_1_2, /* 1828 */
|
625
|
+
XML_SCHEMAV_CVC_FACET_VALID, /* 1829 */
|
626
|
+
XML_SCHEMAV_CVC_LENGTH_VALID, /* 1830 */
|
627
|
+
XML_SCHEMAV_CVC_MINLENGTH_VALID, /* 1831 */
|
628
|
+
XML_SCHEMAV_CVC_MAXLENGTH_VALID, /* 1832 */
|
629
|
+
XML_SCHEMAV_CVC_MININCLUSIVE_VALID, /* 1833 */
|
630
|
+
XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID, /* 1834 */
|
631
|
+
XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID, /* 1835 */
|
632
|
+
XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID, /* 1836 */
|
633
|
+
XML_SCHEMAV_CVC_TOTALDIGITS_VALID, /* 1837 */
|
634
|
+
XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID, /* 1838 */
|
635
|
+
XML_SCHEMAV_CVC_PATTERN_VALID, /* 1839 */
|
636
|
+
XML_SCHEMAV_CVC_ENUMERATION_VALID, /* 1840 */
|
637
|
+
XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1, /* 1841 */
|
638
|
+
XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2, /* 1842 */
|
639
|
+
XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3, /* 1843 */
|
640
|
+
XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4, /* 1844 */
|
641
|
+
XML_SCHEMAV_CVC_ELT_1, /* 1845 */
|
642
|
+
XML_SCHEMAV_CVC_ELT_2, /* 1846 */
|
643
|
+
XML_SCHEMAV_CVC_ELT_3_1, /* 1847 */
|
644
|
+
XML_SCHEMAV_CVC_ELT_3_2_1, /* 1848 */
|
645
|
+
XML_SCHEMAV_CVC_ELT_3_2_2, /* 1849 */
|
646
|
+
XML_SCHEMAV_CVC_ELT_4_1, /* 1850 */
|
647
|
+
XML_SCHEMAV_CVC_ELT_4_2, /* 1851 */
|
648
|
+
XML_SCHEMAV_CVC_ELT_4_3, /* 1852 */
|
649
|
+
XML_SCHEMAV_CVC_ELT_5_1_1, /* 1853 */
|
650
|
+
XML_SCHEMAV_CVC_ELT_5_1_2, /* 1854 */
|
651
|
+
XML_SCHEMAV_CVC_ELT_5_2_1, /* 1855 */
|
652
|
+
XML_SCHEMAV_CVC_ELT_5_2_2_1, /* 1856 */
|
653
|
+
XML_SCHEMAV_CVC_ELT_5_2_2_2_1, /* 1857 */
|
654
|
+
XML_SCHEMAV_CVC_ELT_5_2_2_2_2, /* 1858 */
|
655
|
+
XML_SCHEMAV_CVC_ELT_6, /* 1859 */
|
656
|
+
XML_SCHEMAV_CVC_ELT_7, /* 1860 */
|
657
|
+
XML_SCHEMAV_CVC_ATTRIBUTE_1, /* 1861 */
|
658
|
+
XML_SCHEMAV_CVC_ATTRIBUTE_2, /* 1862 */
|
659
|
+
XML_SCHEMAV_CVC_ATTRIBUTE_3, /* 1863 */
|
660
|
+
XML_SCHEMAV_CVC_ATTRIBUTE_4, /* 1864 */
|
661
|
+
XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1, /* 1865 */
|
662
|
+
XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1, /* 1866 */
|
663
|
+
XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2, /* 1867 */
|
664
|
+
XML_SCHEMAV_CVC_COMPLEX_TYPE_4, /* 1868 */
|
665
|
+
XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1, /* 1869 */
|
666
|
+
XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2, /* 1870 */
|
667
|
+
XML_SCHEMAV_ELEMENT_CONTENT, /* 1871 */
|
668
|
+
XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING, /* 1872 */
|
669
|
+
XML_SCHEMAV_CVC_COMPLEX_TYPE_1, /* 1873 */
|
670
|
+
XML_SCHEMAV_CVC_AU, /* 1874 */
|
671
|
+
XML_SCHEMAV_CVC_TYPE_1, /* 1875 */
|
672
|
+
XML_SCHEMAV_CVC_TYPE_2, /* 1876 */
|
673
|
+
XML_SCHEMAV_CVC_IDC, /* 1877 */
|
674
|
+
XML_SCHEMAV_CVC_WILDCARD, /* 1878 */
|
675
|
+
XML_SCHEMAV_MISC, /* 1879 */
|
676
|
+
XML_XPTR_UNKNOWN_SCHEME = 1900,
|
677
|
+
XML_XPTR_CHILDSEQ_START, /* 1901 */
|
678
|
+
XML_XPTR_EVAL_FAILED, /* 1902 */
|
679
|
+
XML_XPTR_EXTRA_OBJECTS, /* 1903 */
|
680
|
+
XML_C14N_CREATE_CTXT = 1950,
|
681
|
+
XML_C14N_REQUIRES_UTF8, /* 1951 */
|
682
|
+
XML_C14N_CREATE_STACK, /* 1952 */
|
683
|
+
XML_C14N_INVALID_NODE, /* 1953 */
|
684
|
+
XML_C14N_UNKNOW_NODE, /* 1954 */
|
685
|
+
XML_C14N_RELATIVE_NAMESPACE, /* 1955 */
|
686
|
+
XML_FTP_PASV_ANSWER = 2000,
|
687
|
+
XML_FTP_EPSV_ANSWER, /* 2001 */
|
688
|
+
XML_FTP_ACCNT, /* 2002 */
|
689
|
+
XML_FTP_URL_SYNTAX, /* 2003 */
|
690
|
+
XML_HTTP_URL_SYNTAX = 2020,
|
691
|
+
XML_HTTP_USE_IP, /* 2021 */
|
692
|
+
XML_HTTP_UNKNOWN_HOST, /* 2022 */
|
693
|
+
XML_SCHEMAP_SRC_SIMPLE_TYPE_1 = 3000,
|
694
|
+
XML_SCHEMAP_SRC_SIMPLE_TYPE_2, /* 3001 */
|
695
|
+
XML_SCHEMAP_SRC_SIMPLE_TYPE_3, /* 3002 */
|
696
|
+
XML_SCHEMAP_SRC_SIMPLE_TYPE_4, /* 3003 */
|
697
|
+
XML_SCHEMAP_SRC_RESOLVE, /* 3004 */
|
698
|
+
XML_SCHEMAP_SRC_RESTRICTION_BASE_OR_SIMPLETYPE, /* 3005 */
|
699
|
+
XML_SCHEMAP_SRC_LIST_ITEMTYPE_OR_SIMPLETYPE, /* 3006 */
|
700
|
+
XML_SCHEMAP_SRC_UNION_MEMBERTYPES_OR_SIMPLETYPES, /* 3007 */
|
701
|
+
XML_SCHEMAP_ST_PROPS_CORRECT_1, /* 3008 */
|
702
|
+
XML_SCHEMAP_ST_PROPS_CORRECT_2, /* 3009 */
|
703
|
+
XML_SCHEMAP_ST_PROPS_CORRECT_3, /* 3010 */
|
704
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_1_1, /* 3011 */
|
705
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_1_2, /* 3012 */
|
706
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_1_3_1, /* 3013 */
|
707
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_1_3_2, /* 3014 */
|
708
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_2_1, /* 3015 */
|
709
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_1, /* 3016 */
|
710
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_2, /* 3017 */
|
711
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_1, /* 3018 */
|
712
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_2, /* 3019 */
|
713
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_3, /* 3020 */
|
714
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_4, /* 3021 */
|
715
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_5, /* 3022 */
|
716
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_3_1, /* 3023 */
|
717
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1, /* 3024 */
|
718
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1_2, /* 3025 */
|
719
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_2, /* 3026 */
|
720
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_1, /* 3027 */
|
721
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_3, /* 3028 */
|
722
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_4, /* 3029 */
|
723
|
+
XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_5, /* 3030 */
|
724
|
+
XML_SCHEMAP_COS_ST_DERIVED_OK_2_1, /* 3031 */
|
725
|
+
XML_SCHEMAP_COS_ST_DERIVED_OK_2_2, /* 3032 */
|
726
|
+
XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED, /* 3033 */
|
727
|
+
XML_SCHEMAP_S4S_ELEM_MISSING, /* 3034 */
|
728
|
+
XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, /* 3035 */
|
729
|
+
XML_SCHEMAP_S4S_ATTR_MISSING, /* 3036 */
|
730
|
+
XML_SCHEMAP_S4S_ATTR_INVALID_VALUE, /* 3037 */
|
731
|
+
XML_SCHEMAP_SRC_ELEMENT_1, /* 3038 */
|
732
|
+
XML_SCHEMAP_SRC_ELEMENT_2_1, /* 3039 */
|
733
|
+
XML_SCHEMAP_SRC_ELEMENT_2_2, /* 3040 */
|
734
|
+
XML_SCHEMAP_SRC_ELEMENT_3, /* 3041 */
|
735
|
+
XML_SCHEMAP_P_PROPS_CORRECT_1, /* 3042 */
|
736
|
+
XML_SCHEMAP_P_PROPS_CORRECT_2_1, /* 3043 */
|
737
|
+
XML_SCHEMAP_P_PROPS_CORRECT_2_2, /* 3044 */
|
738
|
+
XML_SCHEMAP_E_PROPS_CORRECT_2, /* 3045 */
|
739
|
+
XML_SCHEMAP_E_PROPS_CORRECT_3, /* 3046 */
|
740
|
+
XML_SCHEMAP_E_PROPS_CORRECT_4, /* 3047 */
|
741
|
+
XML_SCHEMAP_E_PROPS_CORRECT_5, /* 3048 */
|
742
|
+
XML_SCHEMAP_E_PROPS_CORRECT_6, /* 3049 */
|
743
|
+
XML_SCHEMAP_SRC_INCLUDE, /* 3050 */
|
744
|
+
XML_SCHEMAP_SRC_ATTRIBUTE_1, /* 3051 */
|
745
|
+
XML_SCHEMAP_SRC_ATTRIBUTE_2, /* 3052 */
|
746
|
+
XML_SCHEMAP_SRC_ATTRIBUTE_3_1, /* 3053 */
|
747
|
+
XML_SCHEMAP_SRC_ATTRIBUTE_3_2, /* 3054 */
|
748
|
+
XML_SCHEMAP_SRC_ATTRIBUTE_4, /* 3055 */
|
749
|
+
XML_SCHEMAP_NO_XMLNS, /* 3056 */
|
750
|
+
XML_SCHEMAP_NO_XSI, /* 3057 */
|
751
|
+
XML_SCHEMAP_COS_VALID_DEFAULT_1, /* 3058 */
|
752
|
+
XML_SCHEMAP_COS_VALID_DEFAULT_2_1, /* 3059 */
|
753
|
+
XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1, /* 3060 */
|
754
|
+
XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2, /* 3061 */
|
755
|
+
XML_SCHEMAP_CVC_SIMPLE_TYPE, /* 3062 */
|
756
|
+
XML_SCHEMAP_COS_CT_EXTENDS_1_1, /* 3063 */
|
757
|
+
XML_SCHEMAP_SRC_IMPORT_1_1, /* 3064 */
|
758
|
+
XML_SCHEMAP_SRC_IMPORT_1_2, /* 3065 */
|
759
|
+
XML_SCHEMAP_SRC_IMPORT_2, /* 3066 */
|
760
|
+
XML_SCHEMAP_SRC_IMPORT_2_1, /* 3067 */
|
761
|
+
XML_SCHEMAP_SRC_IMPORT_2_2, /* 3068 */
|
762
|
+
XML_SCHEMAP_INTERNAL, /* 3069 non-W3C */
|
763
|
+
XML_SCHEMAP_NOT_DETERMINISTIC, /* 3070 non-W3C */
|
764
|
+
XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1, /* 3071 */
|
765
|
+
XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2, /* 3072 */
|
766
|
+
XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3, /* 3073 */
|
767
|
+
XML_SCHEMAP_MG_PROPS_CORRECT_1, /* 3074 */
|
768
|
+
XML_SCHEMAP_MG_PROPS_CORRECT_2, /* 3075 */
|
769
|
+
XML_SCHEMAP_SRC_CT_1, /* 3076 */
|
770
|
+
XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3, /* 3077 */
|
771
|
+
XML_SCHEMAP_AU_PROPS_CORRECT_2, /* 3078 */
|
772
|
+
XML_SCHEMAP_A_PROPS_CORRECT_2, /* 3079 */
|
773
|
+
XML_SCHEMAP_C_PROPS_CORRECT, /* 3080 */
|
774
|
+
XML_SCHEMAP_SRC_REDEFINE, /* 3081 */
|
775
|
+
XML_SCHEMAP_SRC_IMPORT, /* 3082 */
|
776
|
+
XML_SCHEMAP_WARN_SKIP_SCHEMA, /* 3083 */
|
777
|
+
XML_SCHEMAP_WARN_UNLOCATED_SCHEMA, /* 3084 */
|
778
|
+
XML_SCHEMAP_WARN_ATTR_REDECL_PROH, /* 3085 */
|
779
|
+
XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH, /* 3085 */
|
780
|
+
XML_SCHEMAP_AG_PROPS_CORRECT, /* 3086 */
|
781
|
+
XML_SCHEMAP_COS_CT_EXTENDS_1_2, /* 3087 */
|
782
|
+
XML_SCHEMAP_AU_PROPS_CORRECT, /* 3088 */
|
783
|
+
XML_SCHEMAP_A_PROPS_CORRECT_3, /* 3089 */
|
784
|
+
XML_SCHEMAP_COS_ALL_LIMITED, /* 3090 */
|
785
|
+
XML_SCHEMATRONV_ASSERT = 4000, /* 4000 */
|
786
|
+
XML_SCHEMATRONV_REPORT,
|
787
|
+
XML_MODULE_OPEN = 4900, /* 4900 */
|
788
|
+
XML_MODULE_CLOSE, /* 4901 */
|
789
|
+
XML_CHECK_FOUND_ELEMENT = 5000,
|
790
|
+
XML_CHECK_FOUND_ATTRIBUTE, /* 5001 */
|
791
|
+
XML_CHECK_FOUND_TEXT, /* 5002 */
|
792
|
+
XML_CHECK_FOUND_CDATA, /* 5003 */
|
793
|
+
XML_CHECK_FOUND_ENTITYREF, /* 5004 */
|
794
|
+
XML_CHECK_FOUND_ENTITY, /* 5005 */
|
795
|
+
XML_CHECK_FOUND_PI, /* 5006 */
|
796
|
+
XML_CHECK_FOUND_COMMENT, /* 5007 */
|
797
|
+
XML_CHECK_FOUND_DOCTYPE, /* 5008 */
|
798
|
+
XML_CHECK_FOUND_FRAGMENT, /* 5009 */
|
799
|
+
XML_CHECK_FOUND_NOTATION, /* 5010 */
|
800
|
+
XML_CHECK_UNKNOWN_NODE, /* 5011 */
|
801
|
+
XML_CHECK_ENTITY_TYPE, /* 5012 */
|
802
|
+
XML_CHECK_NO_PARENT, /* 5013 */
|
803
|
+
XML_CHECK_NO_DOC, /* 5014 */
|
804
|
+
XML_CHECK_NO_NAME, /* 5015 */
|
805
|
+
XML_CHECK_NO_ELEM, /* 5016 */
|
806
|
+
XML_CHECK_WRONG_DOC, /* 5017 */
|
807
|
+
XML_CHECK_NO_PREV, /* 5018 */
|
808
|
+
XML_CHECK_WRONG_PREV, /* 5019 */
|
809
|
+
XML_CHECK_NO_NEXT, /* 5020 */
|
810
|
+
XML_CHECK_WRONG_NEXT, /* 5021 */
|
811
|
+
XML_CHECK_NOT_DTD, /* 5022 */
|
812
|
+
XML_CHECK_NOT_ATTR, /* 5023 */
|
813
|
+
XML_CHECK_NOT_ATTR_DECL, /* 5024 */
|
814
|
+
XML_CHECK_NOT_ELEM_DECL, /* 5025 */
|
815
|
+
XML_CHECK_NOT_ENTITY_DECL, /* 5026 */
|
816
|
+
XML_CHECK_NOT_NS_DECL, /* 5027 */
|
817
|
+
XML_CHECK_NO_HREF, /* 5028 */
|
818
|
+
XML_CHECK_WRONG_PARENT,/* 5029 */
|
819
|
+
XML_CHECK_NS_SCOPE, /* 5030 */
|
820
|
+
XML_CHECK_NS_ANCESTOR, /* 5031 */
|
821
|
+
XML_CHECK_NOT_UTF8, /* 5032 */
|
822
|
+
XML_CHECK_NO_DICT, /* 5033 */
|
823
|
+
XML_CHECK_NOT_NCNAME, /* 5034 */
|
824
|
+
XML_CHECK_OUTSIDE_DICT, /* 5035 */
|
825
|
+
XML_CHECK_WRONG_NAME, /* 5036 */
|
826
|
+
XML_CHECK_NAME_NOT_NULL, /* 5037 */
|
827
|
+
XML_I18N_NO_NAME = 6000,
|
828
|
+
XML_I18N_NO_HANDLER, /* 6001 */
|
829
|
+
XML_I18N_EXCESS_HANDLER, /* 6002 */
|
830
|
+
XML_I18N_CONV_FAILED, /* 6003 */
|
831
|
+
XML_I18N_NO_OUTPUT, /* 6004 */
|
832
|
+
XML_BUF_OVERFLOW = 7000
|
833
|
+
} xmlParserErrors;
|
834
|
+
|
835
|
+
/**
|
836
|
+
* xmlGenericErrorFunc:
|
837
|
+
* @ctx: a parsing context
|
838
|
+
* @msg: the message
|
839
|
+
* @...: the extra arguments of the varags to format the message
|
840
|
+
*
|
841
|
+
* Signature of the function to use when there is an error and
|
842
|
+
* no parsing or validity context available .
|
843
|
+
*/
|
844
|
+
typedef void (XMLCDECL *xmlGenericErrorFunc) (void *ctx,
|
845
|
+
const char *msg,
|
846
|
+
...) LIBXML_ATTR_FORMAT(2,3);
|
847
|
+
/**
|
848
|
+
* xmlStructuredErrorFunc:
|
849
|
+
* @userData: user provided data for the error callback
|
850
|
+
* @error: the error being raised.
|
851
|
+
*
|
852
|
+
* Signature of the function to use when there is an error and
|
853
|
+
* the module handles the new error reporting mechanism.
|
854
|
+
*/
|
855
|
+
typedef void (XMLCALL *xmlStructuredErrorFunc) (void *userData, xmlErrorPtr error);
|
856
|
+
|
857
|
+
/*
|
858
|
+
* Use the following function to reset the two global variables
|
859
|
+
* xmlGenericError and xmlGenericErrorContext.
|
860
|
+
*/
|
861
|
+
XMLPUBFUN void XMLCALL
|
862
|
+
xmlSetGenericErrorFunc (void *ctx,
|
863
|
+
xmlGenericErrorFunc handler);
|
864
|
+
XMLPUBFUN void XMLCALL
|
865
|
+
initGenericErrorDefaultFunc (xmlGenericErrorFunc *handler);
|
866
|
+
|
867
|
+
XMLPUBFUN void XMLCALL
|
868
|
+
xmlSetStructuredErrorFunc (void *ctx,
|
869
|
+
xmlStructuredErrorFunc handler);
|
870
|
+
/*
|
871
|
+
* Default message routines used by SAX and Valid context for error
|
872
|
+
* and warning reporting.
|
873
|
+
*/
|
874
|
+
XMLPUBFUN void XMLCDECL
|
875
|
+
xmlParserError (void *ctx,
|
876
|
+
const char *msg,
|
877
|
+
...) LIBXML_ATTR_FORMAT(2,3);
|
878
|
+
XMLPUBFUN void XMLCDECL
|
879
|
+
xmlParserWarning (void *ctx,
|
880
|
+
const char *msg,
|
881
|
+
...) LIBXML_ATTR_FORMAT(2,3);
|
882
|
+
XMLPUBFUN void XMLCDECL
|
883
|
+
xmlParserValidityError (void *ctx,
|
884
|
+
const char *msg,
|
885
|
+
...) LIBXML_ATTR_FORMAT(2,3);
|
886
|
+
XMLPUBFUN void XMLCDECL
|
887
|
+
xmlParserValidityWarning (void *ctx,
|
888
|
+
const char *msg,
|
889
|
+
...) LIBXML_ATTR_FORMAT(2,3);
|
890
|
+
XMLPUBFUN void XMLCALL
|
891
|
+
xmlParserPrintFileInfo (xmlParserInputPtr input);
|
892
|
+
XMLPUBFUN void XMLCALL
|
893
|
+
xmlParserPrintFileContext (xmlParserInputPtr input);
|
894
|
+
|
895
|
+
/*
|
896
|
+
* Extended error information routines
|
897
|
+
*/
|
898
|
+
XMLPUBFUN xmlErrorPtr XMLCALL
|
899
|
+
xmlGetLastError (void);
|
900
|
+
XMLPUBFUN void XMLCALL
|
901
|
+
xmlResetLastError (void);
|
902
|
+
XMLPUBFUN xmlErrorPtr XMLCALL
|
903
|
+
xmlCtxtGetLastError (void *ctx);
|
904
|
+
XMLPUBFUN void XMLCALL
|
905
|
+
xmlCtxtResetLastError (void *ctx);
|
906
|
+
XMLPUBFUN void XMLCALL
|
907
|
+
xmlResetError (xmlErrorPtr err);
|
908
|
+
XMLPUBFUN int XMLCALL
|
909
|
+
xmlCopyError (xmlErrorPtr from,
|
910
|
+
xmlErrorPtr to);
|
911
|
+
|
912
|
+
#ifdef IN_LIBXML
|
913
|
+
/*
|
914
|
+
* Internal callback reporting routine
|
915
|
+
*/
|
916
|
+
XMLPUBFUN void XMLCALL
|
917
|
+
__xmlRaiseError (xmlStructuredErrorFunc schannel,
|
918
|
+
xmlGenericErrorFunc channel,
|
919
|
+
void *data,
|
920
|
+
void *ctx,
|
921
|
+
void *node,
|
922
|
+
int domain,
|
923
|
+
int code,
|
924
|
+
xmlErrorLevel level,
|
925
|
+
const char *file,
|
926
|
+
int line,
|
927
|
+
const char *str1,
|
928
|
+
const char *str2,
|
929
|
+
const char *str3,
|
930
|
+
int int1,
|
931
|
+
int col,
|
932
|
+
const char *msg,
|
933
|
+
...) LIBXML_ATTR_FORMAT(16,17);
|
934
|
+
XMLPUBFUN void XMLCALL
|
935
|
+
__xmlSimpleError (int domain,
|
936
|
+
int code,
|
937
|
+
xmlNodePtr node,
|
938
|
+
const char *msg,
|
939
|
+
const char *extra);
|
940
|
+
#endif
|
941
|
+
#ifdef __cplusplus
|
942
|
+
}
|
943
|
+
#endif
|
944
|
+
#endif /* __XML_ERROR_H__ */
|