gtksourceview3 1.2.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (562) hide show
  1. data/README +29 -0
  2. data/Rakefile +29 -0
  3. data/ext/gtksourceview3/depend +6 -0
  4. data/ext/gtksourceview3/extconf.rb +76 -0
  5. data/ext/gtksourceview3/gtksourceview3.def +2 -0
  6. data/ext/gtksourceview3/rbgtksource.c +53 -0
  7. data/ext/gtksourceview3/rbgtksourcebuffer.c +318 -0
  8. data/ext/gtksourceview3/rbgtksourcegutter.c +82 -0
  9. data/ext/gtksourceview3/rbgtksourcegutterrenderer.c +143 -0
  10. data/ext/gtksourceview3/rbgtksourcegutterrendererpixbuf.c +42 -0
  11. data/ext/gtksourceview3/rbgtksourcegutterrenderertext.c +64 -0
  12. data/ext/gtksourceview3/rbgtksourcelanguage.c +124 -0
  13. data/ext/gtksourceview3/rbgtksourcelanguagemanager.c +114 -0
  14. data/ext/gtksourceview3/rbgtksourcemark.c +85 -0
  15. data/ext/gtksourceview3/rbgtksourcemarkattributes.c +77 -0
  16. data/ext/gtksourceview3/rbgtksourceprintcompositor.c +171 -0
  17. data/ext/gtksourceview3/rbgtksourcestyle.c +42 -0
  18. data/ext/gtksourceview3/rbgtksourcestylescheme.c +72 -0
  19. data/ext/gtksourceview3/rbgtksourcestyleschememanager.c +140 -0
  20. data/ext/gtksourceview3/rbgtksourceundomanager.c +83 -0
  21. data/ext/gtksourceview3/rbgtksourceview.c +94 -0
  22. data/ext/gtksourceview3/rbgtksourceview3conversions.h +43 -0
  23. data/ext/gtksourceview3/rbgtksourceview3private.h +54 -0
  24. data/extconf.rb +49 -0
  25. data/lib/1.8/gtksourceview3.so +0 -0
  26. data/lib/1.9/gtksourceview3.so +0 -0
  27. data/lib/gtksourceview3.rb +20 -0
  28. data/lib/gtksourceview3/deprecated.rb +47 -0
  29. data/sample/sourcelanguagemanager.rb +21 -0
  30. data/sample/test.rb +32 -0
  31. data/test/run-test.rb +33 -0
  32. data/test/test_source_view.rb +17 -0
  33. data/vendor/local/bin/libgtksourceview-3.0-0.dll +0 -0
  34. data/vendor/local/bin/libxml2-2.dll +0 -0
  35. data/vendor/local/bin/xmlcatalog.exe +0 -0
  36. data/vendor/local/bin/xmllint.exe +0 -0
  37. data/vendor/local/include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +66 -0
  38. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksource.h +46 -0
  39. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h +199 -0
  40. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h +129 -0
  41. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h +94 -0
  42. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h +73 -0
  43. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h +71 -0
  44. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h +76 -0
  45. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h +118 -0
  46. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h +90 -0
  47. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h +222 -0
  48. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h +85 -0
  49. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h +83 -0
  50. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h +87 -0
  51. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h +85 -0
  52. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemark.h +71 -0
  53. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h +99 -0
  54. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h +176 -0
  55. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h +41 -0
  56. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h +93 -0
  57. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h +89 -0
  58. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h +62 -0
  59. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h +77 -0
  60. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h +55 -0
  61. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview.h +223 -0
  62. data/vendor/local/include/libxml2/libxml/DOCBparser.h +96 -0
  63. data/vendor/local/include/libxml2/libxml/HTMLparser.h +306 -0
  64. data/vendor/local/include/libxml2/libxml/HTMLtree.h +147 -0
  65. data/vendor/local/include/libxml2/libxml/SAX.h +173 -0
  66. data/vendor/local/include/libxml2/libxml/SAX2.h +176 -0
  67. data/vendor/local/include/libxml2/libxml/c14n.h +126 -0
  68. data/vendor/local/include/libxml2/libxml/catalog.h +182 -0
  69. data/vendor/local/include/libxml2/libxml/chvalid.h +230 -0
  70. data/vendor/local/include/libxml2/libxml/debugXML.h +217 -0
  71. data/vendor/local/include/libxml2/libxml/dict.h +80 -0
  72. data/vendor/local/include/libxml2/libxml/encoding.h +240 -0
  73. data/vendor/local/include/libxml2/libxml/entities.h +150 -0
  74. data/vendor/local/include/libxml2/libxml/globals.h +502 -0
  75. data/vendor/local/include/libxml2/libxml/hash.h +233 -0
  76. data/vendor/local/include/libxml2/libxml/list.h +137 -0
  77. data/vendor/local/include/libxml2/libxml/nanoftp.h +163 -0
  78. data/vendor/local/include/libxml2/libxml/nanohttp.h +81 -0
  79. data/vendor/local/include/libxml2/libxml/parser.h +1240 -0
  80. data/vendor/local/include/libxml2/libxml/parserInternals.h +644 -0
  81. data/vendor/local/include/libxml2/libxml/pattern.h +100 -0
  82. data/vendor/local/include/libxml2/libxml/relaxng.h +213 -0
  83. data/vendor/local/include/libxml2/libxml/schemasInternals.h +958 -0
  84. data/vendor/local/include/libxml2/libxml/schematron.h +142 -0
  85. data/vendor/local/include/libxml2/libxml/threads.h +84 -0
  86. data/vendor/local/include/libxml2/libxml/tree.h +1303 -0
  87. data/vendor/local/include/libxml2/libxml/uri.h +94 -0
  88. data/vendor/local/include/libxml2/libxml/valid.h +458 -0
  89. data/vendor/local/include/libxml2/libxml/xinclude.h +129 -0
  90. data/vendor/local/include/libxml2/libxml/xlink.h +189 -0
  91. data/vendor/local/include/libxml2/libxml/xmlIO.h +366 -0
  92. data/vendor/local/include/libxml2/libxml/xmlautomata.h +146 -0
  93. data/vendor/local/include/libxml2/libxml/xmlerror.h +944 -0
  94. data/vendor/local/include/libxml2/libxml/xmlexports.h +162 -0
  95. data/vendor/local/include/libxml2/libxml/xmlmemory.h +224 -0
  96. data/vendor/local/include/libxml2/libxml/xmlmodule.h +57 -0
  97. data/vendor/local/include/libxml2/libxml/xmlreader.h +428 -0
  98. data/vendor/local/include/libxml2/libxml/xmlregexp.h +222 -0
  99. data/vendor/local/include/libxml2/libxml/xmlsave.h +88 -0
  100. data/vendor/local/include/libxml2/libxml/xmlschemas.h +246 -0
  101. data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +151 -0
  102. data/vendor/local/include/libxml2/libxml/xmlstring.h +140 -0
  103. data/vendor/local/include/libxml2/libxml/xmlunicode.h +202 -0
  104. data/vendor/local/include/libxml2/libxml/xmlversion.h +480 -0
  105. data/vendor/local/include/libxml2/libxml/xmlwriter.h +488 -0
  106. data/vendor/local/include/libxml2/libxml/xpath.h +550 -0
  107. data/vendor/local/include/libxml2/libxml/xpathInternals.h +632 -0
  108. data/vendor/local/include/libxml2/libxml/xpointer.h +114 -0
  109. data/vendor/local/lib/libgtksourceview-3.0.dll.a +0 -0
  110. data/vendor/local/lib/libgtksourceview-3.0.la +41 -0
  111. data/vendor/local/lib/libxml2.def +1659 -0
  112. data/vendor/local/lib/libxml2.dll.a +0 -0
  113. data/vendor/local/lib/libxml2.lib +0 -0
  114. data/vendor/local/lib/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  115. data/vendor/local/lib/locale/as/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  116. data/vendor/local/lib/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  117. data/vendor/local/lib/locale/az/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  118. data/vendor/local/lib/locale/be/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  119. data/vendor/local/lib/locale/bg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  120. data/vendor/local/lib/locale/bn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  121. data/vendor/local/lib/locale/bn_IN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  122. data/vendor/local/lib/locale/bs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  123. data/vendor/local/lib/locale/ca/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  124. data/vendor/local/lib/locale/ca@valencia/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  125. data/vendor/local/lib/locale/cs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  126. data/vendor/local/lib/locale/cy/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  127. data/vendor/local/lib/locale/da/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  128. data/vendor/local/lib/locale/de/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  129. data/vendor/local/lib/locale/dz/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  130. data/vendor/local/lib/locale/el/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  131. data/vendor/local/lib/locale/en@shaw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  132. data/vendor/local/lib/locale/en_CA/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  133. data/vendor/local/lib/locale/en_GB/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  134. data/vendor/local/lib/locale/eo/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  135. data/vendor/local/lib/locale/es/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  136. data/vendor/local/lib/locale/et/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  137. data/vendor/local/lib/locale/eu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  138. data/vendor/local/lib/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  139. data/vendor/local/lib/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  140. data/vendor/local/lib/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  141. data/vendor/local/lib/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  142. data/vendor/local/lib/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  143. data/vendor/local/lib/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  144. data/vendor/local/lib/locale/he/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  145. data/vendor/local/lib/locale/hi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  146. data/vendor/local/lib/locale/hr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  147. data/vendor/local/lib/locale/hu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  148. data/vendor/local/lib/locale/id/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  149. data/vendor/local/lib/locale/it/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  150. data/vendor/local/lib/locale/ja/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  151. data/vendor/local/lib/locale/kn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  152. data/vendor/local/lib/locale/ko/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  153. data/vendor/local/lib/locale/lt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  154. data/vendor/local/lib/locale/lv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  155. data/vendor/local/lib/locale/mai/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  156. data/vendor/local/lib/locale/mg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  157. data/vendor/local/lib/locale/mk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  158. data/vendor/local/lib/locale/ml/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  159. data/vendor/local/lib/locale/mn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  160. data/vendor/local/lib/locale/mr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  161. data/vendor/local/lib/locale/ms/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  162. data/vendor/local/lib/locale/nb/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  163. data/vendor/local/lib/locale/ne/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  164. data/vendor/local/lib/locale/nl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  165. data/vendor/local/lib/locale/nn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  166. data/vendor/local/lib/locale/oc/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  167. data/vendor/local/lib/locale/or/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  168. data/vendor/local/lib/locale/pa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  169. data/vendor/local/lib/locale/pl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  170. data/vendor/local/lib/locale/pt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  171. data/vendor/local/lib/locale/pt_BR/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  172. data/vendor/local/lib/locale/ro/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  173. data/vendor/local/lib/locale/ru/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  174. data/vendor/local/lib/locale/rw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  175. data/vendor/local/lib/locale/si/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  176. data/vendor/local/lib/locale/sk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  177. data/vendor/local/lib/locale/sl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  178. data/vendor/local/lib/locale/sq/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  179. data/vendor/local/lib/locale/sr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  180. data/vendor/local/lib/locale/sr@latin/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  181. data/vendor/local/lib/locale/sv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  182. data/vendor/local/lib/locale/ta/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  183. data/vendor/local/lib/locale/te/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  184. data/vendor/local/lib/locale/th/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  185. data/vendor/local/lib/locale/tr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  186. data/vendor/local/lib/locale/ug/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  187. data/vendor/local/lib/locale/uk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  188. data/vendor/local/lib/locale/vi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  189. data/vendor/local/lib/locale/xh/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  190. data/vendor/local/lib/locale/zh_CN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  191. data/vendor/local/lib/locale/zh_HK/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  192. data/vendor/local/lib/locale/zh_TW/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  193. data/vendor/local/lib/pkgconfig/gtksourceview-3.0.pc +12 -0
  194. data/vendor/local/lib/pkgconfig/libxml-2.0.pc +13 -0
  195. data/vendor/local/manifest/libxml2-dev_2.9.0-1_win32.mft +268 -0
  196. data/vendor/local/manifest/libxml2_2.9.0-1_win32.mft +2 -0
  197. data/vendor/local/share/aclocal/libxml.m4 +188 -0
  198. data/vendor/local/share/doc/libxml2-2.9.0/Copyright +27 -0
  199. data/vendor/local/share/doc/libxml2-2.9.0/examples/testHTML.c +880 -0
  200. data/vendor/local/share/doc/libxml2-2.9.0/examples/testSAX.c +1198 -0
  201. data/vendor/local/share/doc/libxml2-2.9.0/examples/testXPath.c +229 -0
  202. data/vendor/local/share/doc/libxml2-2.9.0/examples/xmllint.c +3770 -0
  203. data/vendor/local/share/doc/libxml2-2.9.0/html/DOM.gif +0 -0
  204. data/vendor/local/share/doc/libxml2-2.9.0/html/FAQ.html +282 -0
  205. data/vendor/local/share/doc/libxml2-2.9.0/html/Libxml2-Logo-180x168.gif +0 -0
  206. data/vendor/local/share/doc/libxml2-2.9.0/html/Libxml2-Logo-90x34.gif +0 -0
  207. data/vendor/local/share/doc/libxml2-2.9.0/html/encoding.html +207 -0
  208. data/vendor/local/share/doc/libxml2-2.9.0/html/examples.xml +751 -0
  209. data/vendor/local/share/doc/libxml2-2.9.0/html/examples.xsl +174 -0
  210. data/vendor/local/share/doc/libxml2-2.9.0/html/html/book1.html +13 -0
  211. data/vendor/local/share/doc/libxml2-2.9.0/html/html/home.png +0 -0
  212. data/vendor/local/share/doc/libxml2-2.9.0/html/html/index.html +13 -0
  213. data/vendor/local/share/doc/libxml2-2.9.0/html/html/left.png +0 -0
  214. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-DOCBparser.html +51 -0
  215. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-HTMLparser.html +184 -0
  216. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-HTMLtree.html +73 -0
  217. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-SAX.html +125 -0
  218. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-SAX2.html +128 -0
  219. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-c14n.html +38 -0
  220. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-catalog.html +142 -0
  221. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-chvalid.html +72 -0
  222. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-debugXML.html +120 -0
  223. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-dict.html +58 -0
  224. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-encoding.html +124 -0
  225. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-entities.html +79 -0
  226. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-globals.html +152 -0
  227. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-hash.html +116 -0
  228. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-lib.html +13 -0
  229. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-list.html +120 -0
  230. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-nanoftp.html +94 -0
  231. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-nanohttp.html +65 -0
  232. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-parser.html +559 -0
  233. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-parserInternals.html +322 -0
  234. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-pattern.html +76 -0
  235. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-relaxng.html +162 -0
  236. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-schemasInternals.html +373 -0
  237. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-schematron.html +81 -0
  238. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-threads.html +72 -0
  239. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-tree.html +989 -0
  240. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-uri.html +73 -0
  241. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-valid.html +289 -0
  242. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xinclude.html +59 -0
  243. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xlink.html +82 -0
  244. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlIO.html +212 -0
  245. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlautomata.html +85 -0
  246. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlerror.html +864 -0
  247. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlexports.html +20 -0
  248. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlmemory.html +107 -0
  249. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlmodule.html +38 -0
  250. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlreader.html +330 -0
  251. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlregexp.html +143 -0
  252. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlsave.html +60 -0
  253. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlschemas.html +185 -0
  254. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlschemastypes.html +123 -0
  255. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlstring.html +108 -0
  256. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlunicode.html +512 -0
  257. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlversion.html +62 -0
  258. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlwriter.html +261 -0
  259. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpath.html +310 -0
  260. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpathInternals.html +394 -0
  261. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpointer.html +83 -0
  262. data/vendor/local/share/doc/libxml2-2.9.0/html/html/right.png +0 -0
  263. data/vendor/local/share/doc/libxml2-2.9.0/html/html/up.png +0 -0
  264. data/vendor/local/share/doc/libxml2-2.9.0/html/index.html +14 -0
  265. data/vendor/local/share/doc/libxml2-2.9.0/html/io1.c +166 -0
  266. data/vendor/local/share/doc/libxml2-2.9.0/html/io1.res +5 -0
  267. data/vendor/local/share/doc/libxml2-2.9.0/html/io2.c +58 -0
  268. data/vendor/local/share/doc/libxml2-2.9.0/html/io2.res +2 -0
  269. data/vendor/local/share/doc/libxml2-2.9.0/html/libxml.gif +0 -0
  270. data/vendor/local/share/doc/libxml2-2.9.0/html/parse1.c +56 -0
  271. data/vendor/local/share/doc/libxml2-2.9.0/html/parse2.c +72 -0
  272. data/vendor/local/share/doc/libxml2-2.9.0/html/parse3.c +60 -0
  273. data/vendor/local/share/doc/libxml2-2.9.0/html/parse4.c +143 -0
  274. data/vendor/local/share/doc/libxml2-2.9.0/html/reader1.c +107 -0
  275. data/vendor/local/share/doc/libxml2-2.9.0/html/reader1.res +14 -0
  276. data/vendor/local/share/doc/libxml2-2.9.0/html/reader2.c +122 -0
  277. data/vendor/local/share/doc/libxml2-2.9.0/html/reader3.c +120 -0
  278. data/vendor/local/share/doc/libxml2-2.9.0/html/reader3.res +13 -0
  279. data/vendor/local/share/doc/libxml2-2.9.0/html/reader4.c +122 -0
  280. data/vendor/local/share/doc/libxml2-2.9.0/html/reader4.res +3 -0
  281. data/vendor/local/share/doc/libxml2-2.9.0/html/redhat.gif +0 -0
  282. data/vendor/local/share/doc/libxml2-2.9.0/html/smallfootonly.gif +0 -0
  283. data/vendor/local/share/doc/libxml2-2.9.0/html/structure.gif +0 -0
  284. data/vendor/local/share/doc/libxml2-2.9.0/html/test1.xml +1 -0
  285. data/vendor/local/share/doc/libxml2-2.9.0/html/test2.xml +13 -0
  286. data/vendor/local/share/doc/libxml2-2.9.0/html/test3.xml +39 -0
  287. data/vendor/local/share/doc/libxml2-2.9.0/html/testWriter.c +1198 -0
  288. data/vendor/local/share/doc/libxml2-2.9.0/html/tree1.c +94 -0
  289. data/vendor/local/share/doc/libxml2-2.9.0/html/tree1.res +4 -0
  290. data/vendor/local/share/doc/libxml2-2.9.0/html/tree2.c +118 -0
  291. data/vendor/local/share/doc/libxml2-2.9.0/html/tree2.res +18 -0
  292. data/vendor/local/share/doc/libxml2-2.9.0/html/tst.xml +7 -0
  293. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apa.html +8 -0
  294. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apb.html +14 -0
  295. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apc.html +82 -0
  296. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apd.html +76 -0
  297. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ape.html +78 -0
  298. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apf.html +67 -0
  299. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apg.html +75 -0
  300. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/aph.html +76 -0
  301. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/api.html +4 -0
  302. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s02.html +14 -0
  303. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s03.html +47 -0
  304. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s04.html +54 -0
  305. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s05.html +55 -0
  306. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s06.html +35 -0
  307. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s07.html +30 -0
  308. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s08.html +38 -0
  309. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s09.html +63 -0
  310. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/blank.png +0 -0
  311. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/1.png +0 -0
  312. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/10.png +0 -0
  313. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/2.png +0 -0
  314. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/3.png +0 -0
  315. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/4.png +0 -0
  316. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/5.png +0 -0
  317. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/6.png +0 -0
  318. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/7.png +0 -0
  319. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/8.png +0 -0
  320. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/9.png +0 -0
  321. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/caution.png +0 -0
  322. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/draft.png +0 -0
  323. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/home.png +0 -0
  324. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/important.png +0 -0
  325. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/next.png +0 -0
  326. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/note.png +0 -0
  327. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/prev.png +0 -0
  328. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/tip.png +0 -0
  329. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-blank.png +0 -0
  330. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-minus.png +0 -0
  331. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-plus.png +0 -0
  332. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/up.png +0 -0
  333. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/warning.png +0 -0
  334. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeaddattribute.c +64 -0
  335. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeaddkeyword.c +75 -0
  336. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeconvert.c +73 -0
  337. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includegetattribute.c +72 -0
  338. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includekeyword.c +79 -0
  339. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includexpath.c +74 -0
  340. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/index.html +14 -0
  341. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ix01.html +1 -0
  342. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/xmltutorial.pdf +1336 -0
  343. data/vendor/local/share/doc/libxml2-2.9.0/html/w3c.png +0 -0
  344. data/vendor/local/share/doc/libxml2-2.9.0/html/writer.xml +2 -0
  345. data/vendor/local/share/doc/libxml2-2.9.0/html/xml.html +5715 -0
  346. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath1.c +250 -0
  347. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath1.res +5 -0
  348. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath2.c +190 -0
  349. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath2.res +30 -0
  350. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceBuffer.html +1346 -0
  351. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletion.html +756 -0
  352. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionContext.html +300 -0
  353. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionInfo.html +243 -0
  354. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionItem.html +282 -0
  355. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProposal.html +364 -0
  356. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProvider.html +474 -0
  357. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutter.html +288 -0
  358. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguage.html +425 -0
  359. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguageManager.html +414 -0
  360. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMark.html +250 -0
  361. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMarkAttributes.html +699 -0
  362. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourcePrintCompositor.html +1822 -0
  363. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyle.html +228 -0
  364. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleScheme.html +296 -0
  365. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeManager.html +357 -0
  366. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceUndoManager.html +346 -0
  367. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceView.html +1462 -0
  368. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/annotation-glossary.html +80 -0
  369. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-0.html +46 -0
  370. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-deprecated.html +31 -0
  371. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-full.html +1538 -0
  372. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRenderer.html +956 -0
  373. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html +199 -0
  374. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRendererText.html +137 -0
  375. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0.devhelp2 +445 -0
  376. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/home.png +0 -0
  377. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.html +117 -0
  378. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.sgml +578 -0
  379. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-reference.html +771 -0
  380. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-tutorial.html +651 -0
  381. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left.png +0 -0
  382. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right.png +0 -0
  383. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/rn01.html +101 -0
  384. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/rn02.html +53 -0
  385. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style-reference.html +252 -0
  386. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style.css +266 -0
  387. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up.png +0 -0
  388. data/vendor/local/share/gtk-doc/html/libxml2/general.html +38 -0
  389. data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
  390. data/vendor/local/share/gtk-doc/html/libxml2/index.html +67 -0
  391. data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
  392. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +138 -0
  393. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +373 -0
  394. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +172 -0
  395. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +243 -0
  396. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +247 -0
  397. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +91 -0
  398. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +278 -0
  399. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +241 -0
  400. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +225 -0
  401. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +134 -0
  402. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +218 -0
  403. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +166 -0
  404. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +383 -0
  405. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +214 -0
  406. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +226 -0
  407. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +187 -0
  408. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +142 -0
  409. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +766 -0
  410. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +688 -0
  411. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +166 -0
  412. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +278 -0
  413. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +860 -0
  414. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +166 -0
  415. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +161 -0
  416. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1596 -0
  417. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +154 -0
  418. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +528 -0
  419. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +169 -0
  420. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +160 -0
  421. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +347 -0
  422. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +176 -0
  423. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +952 -0
  424. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +87 -0
  425. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +186 -0
  426. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +97 -0
  427. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +565 -0
  428. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +280 -0
  429. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +133 -0
  430. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +314 -0
  431. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +237 -0
  432. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +217 -0
  433. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +887 -0
  434. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +287 -0
  435. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +479 -0
  436. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +532 -0
  437. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +787 -0
  438. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +171 -0
  439. data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +3569 -0
  440. data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
  441. data/vendor/local/share/gtk-doc/html/libxml2/style.css +66 -0
  442. data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
  443. data/vendor/local/share/gtksourceview-3.0/language-specs/R.lang +130 -0
  444. data/vendor/local/share/gtksourceview-3.0/language-specs/actionscript.lang +268 -0
  445. data/vendor/local/share/gtksourceview-3.0/language-specs/ada.lang +221 -0
  446. data/vendor/local/share/gtksourceview-3.0/language-specs/asp.lang +1097 -0
  447. data/vendor/local/share/gtksourceview-3.0/language-specs/automake.lang +329 -0
  448. data/vendor/local/share/gtksourceview-3.0/language-specs/awk.lang +138 -0
  449. data/vendor/local/share/gtksourceview-3.0/language-specs/bennugd.lang +267 -0
  450. data/vendor/local/share/gtksourceview-3.0/language-specs/bibtex.lang +93 -0
  451. data/vendor/local/share/gtksourceview-3.0/language-specs/boo.lang +257 -0
  452. data/vendor/local/share/gtksourceview-3.0/language-specs/c.lang +332 -0
  453. data/vendor/local/share/gtksourceview-3.0/language-specs/cg.lang +232 -0
  454. data/vendor/local/share/gtksourceview-3.0/language-specs/changelog.lang +92 -0
  455. data/vendor/local/share/gtksourceview-3.0/language-specs/chdr.lang +43 -0
  456. data/vendor/local/share/gtksourceview-3.0/language-specs/check-language.sh +32 -0
  457. data/vendor/local/share/gtksourceview-3.0/language-specs/cmake.lang +408 -0
  458. data/vendor/local/share/gtksourceview-3.0/language-specs/cobol.lang +456 -0
  459. data/vendor/local/share/gtksourceview-3.0/language-specs/cpp.lang +114 -0
  460. data/vendor/local/share/gtksourceview-3.0/language-specs/csharp.lang +282 -0
  461. data/vendor/local/share/gtksourceview-3.0/language-specs/css.lang +537 -0
  462. data/vendor/local/share/gtksourceview-3.0/language-specs/cuda.lang +292 -0
  463. data/vendor/local/share/gtksourceview-3.0/language-specs/d.lang +296 -0
  464. data/vendor/local/share/gtksourceview-3.0/language-specs/def.lang +252 -0
  465. data/vendor/local/share/gtksourceview-3.0/language-specs/desktop.lang +300 -0
  466. data/vendor/local/share/gtksourceview-3.0/language-specs/diff.lang +85 -0
  467. data/vendor/local/share/gtksourceview-3.0/language-specs/docbook.lang +476 -0
  468. data/vendor/local/share/gtksourceview-3.0/language-specs/dosbatch.lang +167 -0
  469. data/vendor/local/share/gtksourceview-3.0/language-specs/dot.lang +140 -0
  470. data/vendor/local/share/gtksourceview-3.0/language-specs/dpatch.lang +48 -0
  471. data/vendor/local/share/gtksourceview-3.0/language-specs/dtd.lang +140 -0
  472. data/vendor/local/share/gtksourceview-3.0/language-specs/eiffel.lang +239 -0
  473. data/vendor/local/share/gtksourceview-3.0/language-specs/erlang.lang +258 -0
  474. data/vendor/local/share/gtksourceview-3.0/language-specs/fcl.lang +115 -0
  475. data/vendor/local/share/gtksourceview-3.0/language-specs/forth.lang +235 -0
  476. data/vendor/local/share/gtksourceview-3.0/language-specs/fortran.lang +512 -0
  477. data/vendor/local/share/gtksourceview-3.0/language-specs/fsharp.lang +325 -0
  478. data/vendor/local/share/gtksourceview-3.0/language-specs/gap.lang +85 -0
  479. data/vendor/local/share/gtksourceview-3.0/language-specs/gdb-log.lang +152 -0
  480. data/vendor/local/share/gtksourceview-3.0/language-specs/glsl.lang +483 -0
  481. data/vendor/local/share/gtksourceview-3.0/language-specs/go.lang +275 -0
  482. data/vendor/local/share/gtksourceview-3.0/language-specs/gtk-doc.lang +91 -0
  483. data/vendor/local/share/gtksourceview-3.0/language-specs/gtkrc.lang +116 -0
  484. data/vendor/local/share/gtksourceview-3.0/language-specs/haddock.lang +162 -0
  485. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell-literate.lang +59 -0
  486. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell.lang +228 -0
  487. data/vendor/local/share/gtksourceview-3.0/language-specs/html.lang +180 -0
  488. data/vendor/local/share/gtksourceview-3.0/language-specs/idl.lang +154 -0
  489. data/vendor/local/share/gtksourceview-3.0/language-specs/imagej.lang +784 -0
  490. data/vendor/local/share/gtksourceview-3.0/language-specs/ini.lang +95 -0
  491. data/vendor/local/share/gtksourceview-3.0/language-specs/j.lang +240 -0
  492. data/vendor/local/share/gtksourceview-3.0/language-specs/java.lang +190 -0
  493. data/vendor/local/share/gtksourceview-3.0/language-specs/javascript.lang +338 -0
  494. data/vendor/local/share/gtksourceview-3.0/language-specs/json.lang +123 -0
  495. data/vendor/local/share/gtksourceview-3.0/language-specs/language.dtd +73 -0
  496. data/vendor/local/share/gtksourceview-3.0/language-specs/language.rng +373 -0
  497. data/vendor/local/share/gtksourceview-3.0/language-specs/language2.rng +482 -0
  498. data/vendor/local/share/gtksourceview-3.0/language-specs/latex.lang +300 -0
  499. data/vendor/local/share/gtksourceview-3.0/language-specs/libtool.lang +56 -0
  500. data/vendor/local/share/gtksourceview-3.0/language-specs/lua.lang +157 -0
  501. data/vendor/local/share/gtksourceview-3.0/language-specs/m4.lang +1375 -0
  502. data/vendor/local/share/gtksourceview-3.0/language-specs/makefile.lang +193 -0
  503. data/vendor/local/share/gtksourceview-3.0/language-specs/mallard.lang +124 -0
  504. data/vendor/local/share/gtksourceview-3.0/language-specs/markdown.lang +402 -0
  505. data/vendor/local/share/gtksourceview-3.0/language-specs/matlab.lang +171 -0
  506. data/vendor/local/share/gtksourceview-3.0/language-specs/mxml.lang +65 -0
  507. data/vendor/local/share/gtksourceview-3.0/language-specs/nemerle.lang +263 -0
  508. data/vendor/local/share/gtksourceview-3.0/language-specs/netrexx.lang +319 -0
  509. data/vendor/local/share/gtksourceview-3.0/language-specs/nsis.lang +88 -0
  510. data/vendor/local/share/gtksourceview-3.0/language-specs/objc.lang +120 -0
  511. data/vendor/local/share/gtksourceview-3.0/language-specs/objj.lang +128 -0
  512. data/vendor/local/share/gtksourceview-3.0/language-specs/ocaml.lang +302 -0
  513. data/vendor/local/share/gtksourceview-3.0/language-specs/ocl.lang +139 -0
  514. data/vendor/local/share/gtksourceview-3.0/language-specs/octave.lang +859 -0
  515. data/vendor/local/share/gtksourceview-3.0/language-specs/ooc.lang +265 -0
  516. data/vendor/local/share/gtksourceview-3.0/language-specs/opal.lang +343 -0
  517. data/vendor/local/share/gtksourceview-3.0/language-specs/opencl.lang +600 -0
  518. data/vendor/local/share/gtksourceview-3.0/language-specs/pascal.lang +268 -0
  519. data/vendor/local/share/gtksourceview-3.0/language-specs/perl.lang +1028 -0
  520. data/vendor/local/share/gtksourceview-3.0/language-specs/php.lang +361 -0
  521. data/vendor/local/share/gtksourceview-3.0/language-specs/pkgconfig.lang +62 -0
  522. data/vendor/local/share/gtksourceview-3.0/language-specs/po.lang +94 -0
  523. data/vendor/local/share/gtksourceview-3.0/language-specs/prolog.lang +249 -0
  524. data/vendor/local/share/gtksourceview-3.0/language-specs/protobuf.lang +103 -0
  525. data/vendor/local/share/gtksourceview-3.0/language-specs/puppet.lang +697 -0
  526. data/vendor/local/share/gtksourceview-3.0/language-specs/python.lang +413 -0
  527. data/vendor/local/share/gtksourceview-3.0/language-specs/python3.lang +192 -0
  528. data/vendor/local/share/gtksourceview-3.0/language-specs/rpmspec.lang +210 -0
  529. data/vendor/local/share/gtksourceview-3.0/language-specs/ruby.lang +591 -0
  530. data/vendor/local/share/gtksourceview-3.0/language-specs/scheme.lang +302 -0
  531. data/vendor/local/share/gtksourceview-3.0/language-specs/scilab.lang +209 -0
  532. data/vendor/local/share/gtksourceview-3.0/language-specs/sh.lang +499 -0
  533. data/vendor/local/share/gtksourceview-3.0/language-specs/sml.lang +201 -0
  534. data/vendor/local/share/gtksourceview-3.0/language-specs/sparql.lang +448 -0
  535. data/vendor/local/share/gtksourceview-3.0/language-specs/sql.lang +618 -0
  536. data/vendor/local/share/gtksourceview-3.0/language-specs/systemverilog.lang +263 -0
  537. data/vendor/local/share/gtksourceview-3.0/language-specs/t2t.lang +150 -0
  538. data/vendor/local/share/gtksourceview-3.0/language-specs/tcl.lang +146 -0
  539. data/vendor/local/share/gtksourceview-3.0/language-specs/texinfo.lang +448 -0
  540. data/vendor/local/share/gtksourceview-3.0/language-specs/vala.lang +365 -0
  541. data/vendor/local/share/gtksourceview-3.0/language-specs/vbnet.lang +245 -0
  542. data/vendor/local/share/gtksourceview-3.0/language-specs/verilog.lang +464 -0
  543. data/vendor/local/share/gtksourceview-3.0/language-specs/vhdl.lang +248 -0
  544. data/vendor/local/share/gtksourceview-3.0/language-specs/xml.lang +220 -0
  545. data/vendor/local/share/gtksourceview-3.0/language-specs/xslt.lang +108 -0
  546. data/vendor/local/share/gtksourceview-3.0/language-specs/yacc.lang +177 -0
  547. data/vendor/local/share/gtksourceview-3.0/styles/check-style.sh +20 -0
  548. data/vendor/local/share/gtksourceview-3.0/styles/classic.xml +107 -0
  549. data/vendor/local/share/gtksourceview-3.0/styles/cobalt.xml +135 -0
  550. data/vendor/local/share/gtksourceview-3.0/styles/kate.xml +161 -0
  551. data/vendor/local/share/gtksourceview-3.0/styles/oblivion.xml +117 -0
  552. data/vendor/local/share/gtksourceview-3.0/styles/styles.rng +139 -0
  553. data/vendor/local/share/gtksourceview-3.0/styles/tango.xml +117 -0
  554. data/vendor/local/share/license/gtksourceview/AUTHORS +12 -0
  555. data/vendor/local/share/license/gtksourceview/COPYING +340 -0
  556. data/vendor/local/share/man/man1/xml2-config.1 +30 -0
  557. data/vendor/local/share/man/man1/xmlcatalog.1 +340 -0
  558. data/vendor/local/share/man/man1/xmllint.1 +427 -0
  559. data/vendor/local/share/man/man3/libxml.3 +71 -0
  560. data/vendor/local/src/dieterv/packaging/libxml2_2.9.0-1_win32.log +867 -0
  561. data/vendor/local/src/dieterv/packaging/libxml2_2.9.0-1_win32.sh +68 -0
  562. metadata +642 -0
@@ -0,0 +1,221 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+
4
+ This file is part of GtkSourceView
5
+
6
+ Author: Gustavo Giráldez <gustavo.giraldez@gmx.net>
7
+ Copyright (C) 2003 Gustavo Giráldez <gustavo.giraldez@gmx.net>
8
+ Copyright (C) 2003 Michael Terry <mike@mterry.name>
9
+ Copyright (C) 2004 Benoît Dejean <tazforever@dlfp.org>
10
+
11
+ GtkSourceView is free software; you can redistribute it and/or
12
+ modify it under the terms of the GNU Lesser General Public
13
+ License as published by the Free Software Foundation; either
14
+ version 2.1 of the License, or (at your option) any later version.
15
+
16
+ GtkSourceView is distributed in the hope that it will be useful,
17
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19
+ Lesser General Public License for more details.
20
+
21
+ You should have received a copy of the GNU Lesser General Public
22
+ License along with this library; if not, write to the Free Software
23
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24
+
25
+ -->
26
+ <language id="ada" _name="Ada" version="2.0" _section="Sources">
27
+ <metadata>
28
+ <property name="mimetypes">text/x-ada;text/x-adasrc</property>
29
+ <property name="globs">*.adb;*.ads</property>
30
+ <property name="line-comment-start">--</property>
31
+ </metadata>
32
+
33
+ <styles>
34
+ <style id="comment" _name="Comment" map-to="def:comment"/>
35
+ <style id="string" _name="String" map-to="def:string"/>
36
+ <style id="keyword" _name="Keyword" map-to="def:keyword"/>
37
+ <style id="decimal" _name="Decimal number" map-to="def:decimal"/>
38
+ <style id="boolean" _name="Boolean value" map-to="def:boolean"/>
39
+ <style id="storage-class" _name="Storage Class" map-to="def:type"/>
40
+ <style id="type" _name="Data Type" map-to="def:type"/>
41
+ <style id="preprocessor" _name="Preprocessor" map-to="def:preprocessor"/>
42
+ <style id="base-n-number" _name="Arbitrary base number" map-to="def:base-n-integer"/>
43
+ <style id="real" _name="Real number" map-to="def:floating-point"/>
44
+ <style id="escaped-character" _name="Escaped Character" map-to="def:special-char"/>
45
+ </styles>
46
+
47
+ <default-regex-options case-sensitive="false"/>
48
+
49
+ <definitions>
50
+
51
+ <context id="line-comment" style-ref="comment" end-at-line-end="true" class="comment" class-disabled="no-spell-check">
52
+ <start>--</start>
53
+ <include>
54
+ <context ref="def:in-line-comment"/>
55
+ </include>
56
+ </context>
57
+
58
+ <context id="string" style-ref="string" end-at-line-end="true" class="string" class-disabled="no-spell-check">
59
+ <start>"</start>
60
+ <end>"</end>
61
+ <!-- no escapes possible except for "" = literal " -->
62
+ <include>
63
+ <context id="string-esc" style-ref="escaped-character" extend-parent="true">
64
+ <match>""</match>
65
+ </context>
66
+ </include>
67
+ </context>
68
+
69
+ <context id="character-constant" style-ref="string">
70
+ <match>'.'</match>
71
+ </context>
72
+
73
+ <context id="preprocessor-keyword" style-ref="preprocessor">
74
+ <keyword>package</keyword>
75
+ <keyword>pragma</keyword>
76
+ <keyword>use</keyword>
77
+ <keyword>with</keyword>
78
+ </context>
79
+
80
+ <context id="function" style-ref="keyword">
81
+ <keyword>function</keyword>
82
+ <keyword>procedure</keyword>
83
+ <keyword>return</keyword>
84
+ </context>
85
+
86
+ <context id="keyword" style-ref="keyword">
87
+ <keyword>abort</keyword>
88
+ <keyword>abs</keyword>
89
+ <keyword>accept</keyword>
90
+ <keyword>all</keyword>
91
+ <keyword>and</keyword>
92
+ <keyword>begin</keyword>
93
+ <keyword>body</keyword>
94
+ <keyword>case</keyword>
95
+ <keyword>declare</keyword>
96
+ <keyword>delay</keyword>
97
+ <keyword>do</keyword>
98
+ <keyword>else</keyword>
99
+ <keyword>elsif</keyword>
100
+ <keyword>end</keyword>
101
+ <keyword>entry</keyword>
102
+ <keyword>exception</keyword>
103
+ <keyword>exit</keyword>
104
+ <keyword>for</keyword>
105
+ <keyword>generic</keyword>
106
+ <keyword>goto</keyword>
107
+ <keyword>if</keyword>
108
+ <keyword>in</keyword>
109
+ <keyword>is</keyword>
110
+ <keyword>loop</keyword>
111
+ <keyword>mod</keyword>
112
+ <keyword>new</keyword>
113
+ <keyword>not</keyword>
114
+ <keyword>null</keyword>
115
+ <keyword>or</keyword>
116
+ <keyword>others</keyword>
117
+ <keyword>out</keyword>
118
+ <keyword>protected</keyword>
119
+ <keyword>raise</keyword>
120
+ <keyword>record</keyword>
121
+ <keyword>rem</keyword>
122
+ <keyword>renames</keyword>
123
+ <keyword>requeue</keyword>
124
+ <keyword>reverse</keyword>
125
+ <keyword>select</keyword>
126
+ <keyword>separate</keyword>
127
+ <keyword>subtype</keyword>
128
+ <keyword>task</keyword>
129
+ <keyword>terminate</keyword>
130
+ <keyword>then</keyword>
131
+ <keyword>type</keyword>
132
+ <keyword>until</keyword>
133
+ <keyword>when</keyword>
134
+ <keyword>while</keyword>
135
+ <keyword>xor</keyword>
136
+ </context>
137
+
138
+ <context id="storage-class" style-ref="storage-class">
139
+ <keyword>abstract</keyword>
140
+ <keyword>access</keyword>
141
+ <keyword>aliased</keyword>
142
+ <keyword>array</keyword>
143
+ <keyword>at</keyword>
144
+ <keyword>constant</keyword>
145
+ <keyword>delta</keyword>
146
+ <keyword>digits</keyword>
147
+ <keyword>interface</keyword>
148
+ <keyword>limited</keyword>
149
+ <keyword>of</keyword>
150
+ <keyword>private</keyword>
151
+ <keyword>range</keyword>
152
+ <keyword>tagged</keyword>
153
+ <keyword>synchronized</keyword>
154
+ </context>
155
+
156
+ <context id="type" style-ref="type">
157
+ <keyword>boolean</keyword>
158
+ <keyword>character</keyword>
159
+ <keyword>count</keyword>
160
+ <keyword>duration</keyword>
161
+ <keyword>float</keyword>
162
+ <keyword>integer</keyword>
163
+ <keyword>long_float</keyword>
164
+ <keyword>long_integer</keyword>
165
+ <keyword>priority</keyword>
166
+ <keyword>short_float</keyword>
167
+ <keyword>short_integer</keyword>
168
+ <keyword>string</keyword>
169
+ </context>
170
+
171
+ <define-regex id="hexnum">[0-9a-f][0-9a-f_]*</define-regex>
172
+ <define-regex id="exponent">[Ee][+-]?[0-9][0-9_]*</define-regex>
173
+
174
+ <context id="based-numeral" style-ref="base-n-number">
175
+ <match extended="true">
176
+ (?&lt;![\w\.])
177
+ [0-9][0-9_]*\#\%{hexnum}(\.\%{hexnum})?\#\%{exponent}?
178
+ (?![\w\.])
179
+ </match>
180
+ </context>
181
+
182
+ <context id="real" style-ref="real">
183
+ <match extended="true">
184
+ (?&lt;![\w\.])
185
+ [0-9][0-9_]*\.[0-9][0-9_]*\%{exponent}?
186
+ (?![\w\.])
187
+ </match>
188
+ </context>
189
+
190
+ <context id="number" style-ref="decimal">
191
+ <match extended="true">
192
+ (?&lt;![\w\.])
193
+ [0-9][0-9_]*(E[+]?[0-9][0-9_]*)?
194
+ (?![\w\.])
195
+ </match>
196
+ </context>
197
+
198
+ <context id="boolean" style-ref="boolean">
199
+ <keyword>true</keyword>
200
+ <keyword>false</keyword>
201
+ </context>
202
+
203
+ <context id="ada" class="no-spell-check">
204
+ <include>
205
+ <context ref="line-comment"/>
206
+ <context ref="string"/>
207
+ <context ref="character-constant"/>
208
+ <context ref="preprocessor-keyword"/>
209
+ <context ref="function"/>
210
+ <context ref="keyword"/>
211
+ <context ref="storage-class"/>
212
+ <context ref="type"/>
213
+ <context ref="based-numeral"/>
214
+ <context ref="real"/>
215
+ <context ref="number"/>
216
+ <context ref="boolean"/>
217
+ </include>
218
+ </context>
219
+
220
+ </definitions>
221
+ </language>
@@ -0,0 +1,1097 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+
4
+ This file is part of GtkSourceView
5
+
6
+ Author: Fabio Zendhi Nagao <nagaozen@evolved.com.br>
7
+ Copyright (C) 2009 Fabio Zendhi Nagao <nagaozen@evolved.com.br>
8
+
9
+ GtkSourceView is free software; you can redistribute it and/or
10
+ modify it under the terms of the GNU Lesser General Public
11
+ License as published by the Free Software Foundation; either
12
+ version 2.1 of the License, or (at your option) any later version.
13
+
14
+ GtkSourceView is distributed in the hope that it will be useful,
15
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17
+ Lesser General Public License for more details.
18
+
19
+ You should have received a copy of the GNU Lesser General Public
20
+ License along with this library; if not, write to the Free Software
21
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22
+
23
+ -->
24
+ <language id="asp" _name="ASP" version="2.0" _section="Sources">
25
+ <metadata>
26
+ <property name="mimetypes">text/x-asp;application/x-asp;application/x-asap</property>
27
+ <property name="globs">*.asp</property>
28
+ <property name="line-comment-start">'</property>
29
+ </metadata>
30
+
31
+ <styles>
32
+ <style id="comment" _name="Comment" map-to="def:comment"/>
33
+ <style id="string" _name="String" map-to="def:string"/>
34
+ <style id="preprocessor" _name="Preprocessor" map-to="def:preprocessor"/>
35
+ <style id="keyword" _name="Keyword" map-to="def:keyword"/>
36
+ <style id="function" _name="Function" map-to="def:function"/>
37
+ <style id="operator" _name="Operator" map-to="def:operator"/>
38
+ <style id="object" _name="ASP Object" map-to="def:type"/>
39
+ <style id="constant" _name="VBScript and ADO constants" map-to="def:constant"/>
40
+ <style id="type" _name="Data Type" map-to="def:type"/>
41
+ <style id="special-constant" _name="Special constant" map-to="def:special-constant"/>
42
+ <style id="boolean" _name="Boolean value" map-to="def:boolean"/>
43
+ <style id="number" _name="Number" map-to="def:decimal"/>
44
+ </styles>
45
+
46
+ <default-regex-options case-sensitive="false"/>
47
+
48
+ <definitions>
49
+
50
+ <context id="line-comment" style-ref="comment" end-at-line-end="true" class="comment" class-disabled="no-spell-check">
51
+ <start>'</start>
52
+ <include>
53
+ <context ref="def:in-line-comment"/>
54
+ </include>
55
+ </context>
56
+
57
+ <context id="old-style-comment" style-ref="comment" end-at-line-end="true" class="comment" class-disabled="no-spell-check">
58
+ <start>^rem</start>
59
+ <include>
60
+ <context ref="def:in-line-comment"/>
61
+ </include>
62
+ </context>
63
+
64
+ <context id="string" style-ref="string" end-at-line-end="true" class="string" class-disabled="no-spell-check">
65
+ <start>"</start>
66
+ <end>"</end>
67
+ </context>
68
+
69
+ <context id="preprocessor" style-ref="preprocessor" end-at-line-end="true">
70
+ <start extended="true">
71
+ ^\s*@\s*(codepage|enablesessionstate|language|lcid|transaction)\b
72
+ </start>
73
+ <include>
74
+ <context ref="line-comment"/>
75
+ </include>
76
+ </context>
77
+
78
+ <context id="keywords" style-ref="keyword">
79
+ <!-- VBScript statements -->
80
+ <keyword>call</keyword>
81
+ <keyword>case</keyword>
82
+ <keyword>class</keyword>
83
+ <keyword>const</keyword>
84
+ <keyword>dim</keyword>
85
+ <keyword>do</keyword>
86
+ <keyword>each</keyword>
87
+ <keyword>else</keyword>
88
+ <keyword>elseif</keyword>
89
+ <keyword>end</keyword>
90
+ <keyword>erase</keyword>
91
+ <keyword>error</keyword>
92
+ <keyword>executeGlobal</keyword>
93
+ <keyword>execute</keyword>
94
+ <keyword>exit</keyword>
95
+ <keyword>explicit</keyword>
96
+ <keyword>for</keyword>
97
+ <keyword>function</keyword>
98
+ <keyword>get</keyword>
99
+ <keyword>goto</keyword>
100
+ <keyword>if</keyword>
101
+ <keyword>in</keyword>
102
+ <keyword>let</keyword>
103
+ <keyword>loop</keyword>
104
+ <keyword>me</keyword>
105
+ <keyword>new</keyword>
106
+ <keyword>next</keyword>
107
+ <keyword>on</keyword>
108
+ <keyword>option</keyword>
109
+ <keyword>private</keyword>
110
+ <keyword>property</keyword>
111
+ <keyword>public</keyword>
112
+ <keyword>randomize</keyword>
113
+ <keyword>redim</keyword>
114
+ <keyword>rem</keyword>
115
+ <keyword>resume</keyword>
116
+ <keyword>select</keyword>
117
+ <keyword>set</keyword>
118
+ <keyword>stop</keyword>
119
+ <keyword>sub</keyword>
120
+ <keyword>then</keyword>
121
+ <keyword>to</keyword>
122
+ <keyword>wend</keyword>
123
+ <keyword>while</keyword>
124
+ <keyword>with</keyword>
125
+ <!-- VBScript text operators -->
126
+ <keyword>and</keyword>
127
+ <keyword>mod</keyword>
128
+ <keyword>not</keyword>
129
+ <keyword>or</keyword>
130
+ <keyword>xor</keyword>
131
+ </context>
132
+
133
+ <context id="functions" style-ref="function">
134
+ <keyword>abs</keyword>
135
+ <keyword>array</keyword>
136
+ <keyword>asc</keyword>
137
+ <keyword>atn</keyword>
138
+ <keyword>cbool</keyword>
139
+ <keyword>cbyte</keyword>
140
+ <keyword>ccur</keyword>
141
+ <keyword>cdate</keyword>
142
+ <keyword>cdbl</keyword>
143
+ <keyword>chr</keyword>
144
+ <keyword>cint</keyword>
145
+ <keyword>clng</keyword>
146
+ <keyword>cos</keyword>
147
+ <keyword>createobject</keyword>
148
+ <keyword>csng</keyword>
149
+ <keyword>cstr</keyword>
150
+ <keyword>date</keyword>
151
+ <keyword>dateadd</keyword>
152
+ <keyword>datediff</keyword>
153
+ <keyword>datepart</keyword>
154
+ <keyword>dateserial</keyword>
155
+ <keyword>datevalue</keyword>
156
+ <keyword>day</keyword>
157
+ <keyword>escape</keyword>
158
+ <keyword>eval</keyword>
159
+ <keyword>exp</keyword>
160
+ <keyword>filter</keyword>
161
+ <keyword>formatcurrency</keyword>
162
+ <keyword>formatdatetime</keyword>
163
+ <keyword>formatnumber</keyword>
164
+ <keyword>formatpercent</keyword>
165
+ <keyword>getlocale</keyword>
166
+ <keyword>getobject</keyword>
167
+ <keyword>getref</keyword>
168
+ <keyword>hex</keyword>
169
+ <keyword>hour</keyword>
170
+ <keyword>instr</keyword>
171
+ <keyword>instrrev</keyword>
172
+ <keyword>isarray</keyword>
173
+ <keyword>isdate</keyword>
174
+ <keyword>isempty</keyword>
175
+ <keyword>isnull</keyword>
176
+ <keyword>isnumeric</keyword>
177
+ <keyword>isobject</keyword>
178
+ <keyword>join</keyword>
179
+ <keyword>lbound</keyword>
180
+ <keyword>lcase</keyword>
181
+ <keyword>left</keyword>
182
+ <keyword>len</keyword>
183
+ <keyword>log</keyword>
184
+ <keyword>ltrim</keyword>
185
+ <keyword>rtrim</keyword>
186
+ <keyword>trim</keyword>
187
+ <keyword>mid</keyword>
188
+ <keyword>minute</keyword>
189
+ <keyword>month</keyword>
190
+ <keyword>monthname</keyword>
191
+ <keyword>now</keyword>
192
+ <keyword>oct</keyword>
193
+ <keyword>replace</keyword>
194
+ <keyword>rgb</keyword>
195
+ <keyword>right</keyword>
196
+ <keyword>rnd</keyword>
197
+ <keyword>round</keyword>
198
+ <keyword>scriptengine</keyword>
199
+ <keyword>scriptenginebuildversion</keyword>
200
+ <keyword>scriptenginemajorversion</keyword>
201
+ <keyword>scriptengineminorversion</keyword>
202
+ <keyword>second</keyword>
203
+ <keyword>setlocale</keyword>
204
+ <keyword>sgn</keyword>
205
+ <keyword>sin</keyword>
206
+ <keyword>space</keyword>
207
+ <keyword>split</keyword>
208
+ <keyword>sqr</keyword>
209
+ <keyword>strcomp</keyword>
210
+ <keyword>strreverse</keyword>
211
+ <keyword>tan</keyword>
212
+ <keyword>time</keyword>
213
+ <keyword>timer</keyword>
214
+ <keyword>timeserial</keyword>
215
+ <keyword>timevalue</keyword>
216
+ <keyword>typename</keyword>
217
+ <keyword>ubound</keyword>
218
+ <keyword>ucase</keyword>
219
+ <keyword>unescape</keyword>
220
+ <keyword>vartype</keyword>
221
+ <keyword>weekday</keyword>
222
+ <keyword>weekdayname</keyword>
223
+ <keyword>year</keyword>
224
+ <!-- ASP Response properties and Methods -->
225
+ <keyword>\.buffer</keyword>
226
+ <keyword>\.charset</keyword>
227
+ <keyword>\.cachecontrol</keyword>
228
+ <keyword>\.contenttype</keyword>
229
+ <keyword>\.expires</keyword>
230
+ <keyword>\.expiresabsolute</keyword>
231
+ <keyword>\.isclientconnected</keyword>
232
+ <keyword>\.pics</keyword>
233
+ <keyword>\.status</keyword>
234
+ <keyword>\.addheader</keyword>
235
+ <keyword>\.appendtolog</keyword>
236
+ <keyword>\.binarywrite</keyword>
237
+ <keyword>\.clear</keyword>
238
+ <keyword>\.end</keyword>
239
+ <keyword>\.flush</keyword>
240
+ <keyword>\.redirect</keyword>
241
+ <keyword>\.write</keyword>
242
+ <!-- ASP Request properties and Methods -->
243
+ <keyword>\.totalbytes</keyword>
244
+ <keyword>\.binaryread</keyword>
245
+ <!-- ASP Application properties and Methods -->
246
+ <keyword>\.remove</keyword>
247
+ <keyword>\.removeAll</keyword>
248
+ <keyword>\.lock</keyword>
249
+ <keyword>\.unlock</keyword>
250
+ <keyword>\.application_onstart</keyword>
251
+ <keyword>\.application_onend</keyword>
252
+ <!-- ASP Session properties and Methods -->
253
+ <keyword>\.codepage</keyword>
254
+ <keyword>\.lcid</keyword>
255
+ <keyword>\.sessionid</keyword>
256
+ <keyword>\.timeout</keyword>
257
+ <keyword>\.abandon</keyword>
258
+ <keyword>\.session_onstart</keyword>
259
+ <keyword>\.session_onend</keyword>
260
+ <!-- ASP Server properties and Methods -->
261
+ <keyword>\.scripttimeout</keyword>
262
+ <keyword>\.execute</keyword>
263
+ <keyword>\.getlasterror</keyword>
264
+ <keyword>\.htmlencode</keyword>
265
+ <keyword>\.mappath</keyword>
266
+ <keyword>\.transfer</keyword>
267
+ <keyword>\.urlencode</keyword>
268
+ <!-- ASP Error properties and Methods - won't implement this -->
269
+ <keyword>\.aspcode</keyword>
270
+ <keyword>\.aspdescription</keyword>
271
+ <keyword>\.category</keyword>
272
+ <keyword>\.column</keyword>
273
+ <keyword>\.description</keyword>
274
+ <keyword>\.file</keyword>
275
+ <keyword>\.line</keyword>
276
+ <keyword>\.number</keyword>
277
+ <keyword>\.source</keyword>
278
+ <!-- ASP FileSystem properties and Methods -->
279
+ <keyword>\.drives</keyword>
280
+ <keyword>\.buildpath</keyword>
281
+ <keyword>\.copyfile</keyword>
282
+ <keyword>\.copyfolder</keyword>
283
+ <keyword>\.createfolder</keyword>
284
+ <keyword>\.createtextfile</keyword>
285
+ <keyword>\.deletefile</keyword>
286
+ <keyword>\.deletefolder</keyword>
287
+ <keyword>\.driveexists</keyword>
288
+ <keyword>\.fileexists</keyword>
289
+ <keyword>\.folderexists</keyword>
290
+ <keyword>\.getabsolutepathname</keyword>
291
+ <keyword>\.getbasename</keyword>
292
+ <keyword>\.getdrive</keyword>
293
+ <keyword>\.getdrivename</keyword>
294
+ <keyword>\.getextensionname</keyword>
295
+ <keyword>\.getfile</keyword>
296
+ <keyword>\.getfilename</keyword>
297
+ <keyword>\.getfolder</keyword>
298
+ <keyword>\.getparentfoldername</keyword>
299
+ <keyword>\.getspecialfolder</keyword>
300
+ <keyword>\.gettempname</keyword>
301
+ <keyword>\.movefile</keyword>
302
+ <keyword>\.movefolder</keyword>
303
+ <keyword>\.opentextfile</keyword>
304
+ <!-- ASP TextStream properties and Methods -->
305
+ <keyword>\.atendofline</keyword>
306
+ <keyword>\.atendofstream</keyword>
307
+ <keyword>\.close</keyword>
308
+ <keyword>\.read</keyword>
309
+ <keyword>\.readall</keyword>
310
+ <keyword>\.readline</keyword>
311
+ <keyword>\.skip</keyword>
312
+ <keyword>\.skipline</keyword>
313
+ <keyword>\.writeline</keyword>
314
+ <keyword>\.writeblanklines</keyword>
315
+ <!-- ASP Drive properties and Methods -->
316
+ <keyword>\.availablespace</keyword>
317
+ <keyword>\.driveletter</keyword>
318
+ <keyword>\.drivetype</keyword>
319
+ <keyword>\.filesystem</keyword>
320
+ <keyword>\.freespace</keyword>
321
+ <keyword>\.isready</keyword>
322
+ <keyword>\.path</keyword>
323
+ <keyword>\.rootfolder</keyword>
324
+ <keyword>\.serialnumber</keyword>
325
+ <keyword>\.sharename</keyword>
326
+ <keyword>\.totalsize</keyword>
327
+ <keyword>\.volumename</keyword>
328
+ <!-- ASP Folder and File properties and Methods -->
329
+ <keyword>\.attributes</keyword>
330
+ <keyword>\.datecreated</keyword>
331
+ <keyword>\.datelastaccessed</keyword>
332
+ <keyword>\.datelastmodified</keyword>
333
+ <keyword>\.drive</keyword>
334
+ <keyword>\.name</keyword>
335
+ <keyword>\.parentfolder</keyword>
336
+ <keyword>\.shortname</keyword>
337
+ <keyword>\.shortpath</keyword>
338
+ <keyword>\.size</keyword>
339
+ <keyword>\.type</keyword>
340
+ <keyword>\.copy</keyword>
341
+ <keyword>\.delete</keyword>
342
+ <keyword>\.move</keyword>
343
+ <keyword>\.openastextstream</keyword>
344
+ <keyword>\.isrootfolder</keyword>
345
+ <!-- ASP Dictionary properties and Methods -->
346
+ <keyword>\.comparemode</keyword>
347
+ <keyword>\.count</keyword>
348
+ <keyword>\.item</keyword>
349
+ <keyword>\.key</keyword>
350
+ <keyword>\.add</keyword>
351
+ <keyword>\.exists</keyword>
352
+ <keyword>\.items</keyword>
353
+ <keyword>\.keys</keyword>
354
+ <!-- ADO Command properties and Methods -->
355
+ <keyword>\.activeconnection</keyword>
356
+ <keyword>\.commandtext</keyword>
357
+ <keyword>\.commandtimeout</keyword>
358
+ <keyword>\.commandtype</keyword>
359
+ <keyword>\.prepared</keyword>
360
+ <keyword>\.state</keyword>
361
+ <keyword>\.cancel</keyword>
362
+ <keyword>\.createparameter</keyword>
363
+ <!-- ADO Connection properties and Methods -->
364
+ <keyword>\.commadtimeout</keyword>
365
+ <keyword>\.connectionstring</keyword>
366
+ <keyword>\.connectiontimeout</keyword>
367
+ <keyword>\.cursorlocation</keyword>
368
+ <keyword>\.defaultdatabase</keyword>
369
+ <keyword>\.isolationlevel</keyword>
370
+ <keyword>\.mode</keyword>
371
+ <keyword>\.provider</keyword>
372
+ <keyword>\.version</keyword>
373
+ <keyword>\.begintrans</keyword>
374
+ <keyword>\.close</keyword>
375
+ <keyword>\.committrans</keyword>
376
+ <keyword>\.open</keyword>
377
+ <keyword>\.openschema</keyword>
378
+ <keyword>\.rollbacktrans</keyword>
379
+ <!-- ADO Error properties and Methods -->
380
+ <keyword>\.helpcontext</keyword>
381
+ <keyword>\.helpfile</keyword>
382
+ <keyword>\.nativeerror</keyword>
383
+ <keyword>\.sqlstate</keyword>
384
+ <!-- ADO Field properties and Methods -->
385
+ <keyword>\.actualsize</keyword>
386
+ <keyword>\.definedsize</keyword>
387
+ <keyword>\.numericscale</keyword>
388
+ <keyword>\.originalvalue</keyword>
389
+ <keyword>\.precision</keyword>
390
+ <keyword>\.underlyingvalue</keyword>
391
+ <keyword>\.value</keyword>
392
+ <keyword>\.appendChunk</keyword>
393
+ <keyword>\.getChunk</keyword>
394
+ <!-- ADO Parameter properties and Methods -->
395
+ <keyword>\.direction</keyword>
396
+ <!-- ADO Property (everything is already defined) -->
397
+ <!-- ADO Record properties and Methods -->
398
+ <keyword>\.parenturl</keyword>
399
+ <keyword>\.recordtype</keyword>
400
+ <keyword>\.copyrecord</keyword>
401
+ <keyword>\.deleterecord</keyword>
402
+ <keyword>\.getchildren</keyword>
403
+ <keyword>\.moverecord</keyword>
404
+ <!-- ADO Recordset properties and Methods -->
405
+ <keyword>\.absolutepage</keyword>
406
+ <keyword>\.absoluteposition</keyword>
407
+ <keyword>\.activeCommand</keyword>
408
+ <keyword>\.bof</keyword>
409
+ <keyword>\.bookmark</keyword>
410
+ <keyword>\.cachesize</keyword>
411
+ <keyword>\.cursortype</keyword>
412
+ <keyword>\.datamember</keyword>
413
+ <keyword>\.editmode</keyword>
414
+ <keyword>\.eof</keyword>
415
+ <keyword>\.index</keyword>
416
+ <keyword>\.locktype</keyword>
417
+ <keyword>\.marshaloptions</keyword>
418
+ <keyword>\.maxrecords</keyword>
419
+ <keyword>\.pagecount</keyword>
420
+ <keyword>\.pagesize</keyword>
421
+ <keyword>\.recordcount</keyword>
422
+ <keyword>\.sort</keyword>
423
+ <keyword>\.stayinsync</keyword>
424
+ <keyword>\.addnew</keyword>
425
+ <keyword>\.cancelbatch</keyword>
426
+ <keyword>\.cancelupdate</keyword>
427
+ <keyword>\.clone</keyword>
428
+ <keyword>\.comparebookmarks</keyword>
429
+ <keyword>\.find</keyword>
430
+ <keyword>\.getrows</keyword>
431
+ <keyword>\.getstring</keyword>
432
+ <keyword>\.movefirst</keyword>
433
+ <keyword>\.movelast</keyword>
434
+ <keyword>\.movenext</keyword>
435
+ <keyword>\.moveprevious</keyword>
436
+ <keyword>\.nextrecordset</keyword>
437
+ <keyword>\.requery</keyword>
438
+ <keyword>\.resync</keyword>
439
+ <keyword>\.save</keyword>
440
+ <keyword>\.seek</keyword>
441
+ <keyword>\.supports</keyword>
442
+ <keyword>\.update</keyword>
443
+ <keyword>\.updatebatch</keyword>
444
+ <!-- ADO Stream properties and Methods -->
445
+ <keyword>\.eos</keyword>
446
+ <keyword>\.lineseparator</keyword>
447
+ <keyword>\.position</keyword>
448
+ <keyword>\.copyto</keyword>
449
+ <keyword>\.loadfromfile</keyword>
450
+ <keyword>\.readtext</keyword>
451
+ <keyword>\.savetofile</keyword>
452
+ <keyword>\.seteos</keyword>
453
+ <keyword>\.writetext</keyword>
454
+ </context>
455
+
456
+ <context id="operators" style-ref="operator" extend-parent="false">
457
+ <match>[-^:/\=\+\*&amp;&lt;&gt;]</match>
458
+ </context>
459
+
460
+ <context id="objects" style-ref="object">
461
+ <!-- ASP Objects -->
462
+ <keyword>response</keyword>
463
+ <keyword>request</keyword>
464
+ <keyword>application</keyword>
465
+ <keyword>session</keyword>
466
+ <keyword>server</keyword>
467
+ <!-- ASP Collections -->
468
+ <keyword>\.querystring</keyword>
469
+ <keyword>\.form</keyword>
470
+ <keyword>\.cookies</keyword>
471
+ <keyword>\.servervariables</keyword>
472
+ <keyword>\.clientcertificate</keyword>
473
+ <keyword>\.contents</keyword>
474
+ <keyword>\.staticobjects</keyword>
475
+ <keyword>\.files</keyword>
476
+ <keyword>\.subfolders</keyword>
477
+ <keyword>\.parameters</keyword>
478
+ <keyword>\.properties</keyword>
479
+ <keyword>\.errors</keyword>
480
+ </context>
481
+
482
+ <context id="constants" style-ref="constant">
483
+ <!-- VBScript constants -->
484
+ <keyword>vbBlack</keyword>
485
+ <keyword>vbRed</keyword>
486
+ <keyword>vbGreen</keyword>
487
+ <keyword>vbYellow</keyword>
488
+ <keyword>vbBlue</keyword>
489
+ <keyword>vbMagenta</keyword>
490
+ <keyword>vbCyan</keyword>
491
+ <keyword>vbWhite</keyword>
492
+ <keyword>vbBinaryCompare</keyword>
493
+ <keyword>vbTextCompare</keyword>
494
+ <keyword>vbSunday</keyword>
495
+ <keyword>vbMonday</keyword>
496
+ <keyword>vbTuesday</keyword>
497
+ <keyword>vbWednesday</keyword>
498
+ <keyword>vbThursday</keyword>
499
+ <keyword>vbFriday</keyword>
500
+ <keyword>vbSaturday</keyword>
501
+ <keyword>vbUseSystemDayOfWeek</keyword>
502
+ <keyword>vbFirstJan1</keyword>
503
+ <keyword>vbFirstFourDays</keyword>
504
+ <keyword>vbFirstFullWeek</keyword>
505
+ <keyword>vbGeneralDate</keyword>
506
+ <keyword>vbLongDate</keyword>
507
+ <keyword>vbShortDate</keyword>
508
+ <keyword>vbLongTime</keyword>
509
+ <keyword>vbShortTime</keyword>
510
+ <keyword>vbObjectError</keyword>
511
+ <keyword>vbOKOnly</keyword>
512
+ <keyword>vbOKCancel</keyword>
513
+ <keyword>vbAbortRetryIgnore</keyword>
514
+ <keyword>vbYesNoCancel</keyword>
515
+ <keyword>vbYesNo</keyword>
516
+ <keyword>vbRetryCancel</keyword>
517
+ <keyword>vbCritical</keyword>
518
+ <keyword>vbQuestion</keyword>
519
+ <keyword>vbExclamation</keyword>
520
+ <keyword>vbInformation</keyword>
521
+ <keyword>vbDefaultButton1</keyword>
522
+ <keyword>vbDefaultButton2</keyword>
523
+ <keyword>vbDefaultButton3</keyword>
524
+ <keyword>vbDefaultButton4</keyword>
525
+ <keyword>vbApplicationModal</keyword>
526
+ <keyword>vbSystemModal</keyword>
527
+ <keyword>vbCr</keyword>
528
+ <keyword>vbCrLf</keyword>
529
+ <keyword>vbFormFeed</keyword>
530
+ <keyword>vbLf</keyword>
531
+ <keyword>vbNewLine</keyword>
532
+ <keyword>vbNullChar</keyword>
533
+ <keyword>vbNullString</keyword>
534
+ <keyword>vbTab</keyword>
535
+ <keyword>vbVerticalTab</keyword>
536
+ <keyword>vbUseDefault</keyword>
537
+ <keyword>vbTrue</keyword>
538
+ <keyword>vbFalse</keyword>
539
+ <keyword>vbEmpty</keyword>
540
+ <keyword>vbNull</keyword>
541
+ <keyword>vbInteger</keyword>
542
+ <keyword>vbLong</keyword>
543
+ <keyword>vbSingle</keyword>
544
+ <keyword>vbDouble</keyword>
545
+ <keyword>vbCurrency</keyword>
546
+ <keyword>vbDate</keyword>
547
+ <keyword>vbString</keyword>
548
+ <keyword>vbObject</keyword>
549
+ <keyword>vbError</keyword>
550
+ <keyword>vbBoolean</keyword>
551
+ <keyword>vbVariant</keyword>
552
+ <keyword>vbDataObject</keyword>
553
+ <keyword>vbDecimal</keyword>
554
+ <keyword>vbByte</keyword>
555
+ <keyword>vbArray</keyword>
556
+ <!-- ADO constants -->
557
+ <!-- CursorTypeEnum Values -->
558
+ <keyword>adOpenForwardOnly</keyword>
559
+ <keyword>adOpenKeyset</keyword>
560
+ <keyword>adOpenDynamic</keyword>
561
+ <keyword>adOpenStatic</keyword>
562
+ <!-- CursorOptionEnum Values -->
563
+ <keyword>adHoldRecords</keyword>
564
+ <keyword>adMovePrevious</keyword>
565
+ <keyword>adAddNew</keyword>
566
+ <keyword>adDelete</keyword>
567
+ <keyword>adUpdate</keyword>
568
+ <keyword>adBookmark</keyword>
569
+ <keyword>adApproxPosition</keyword>
570
+ <keyword>adUpdateBatch</keyword>
571
+ <keyword>adResync</keyword>
572
+ <keyword>adNotify</keyword>
573
+ <keyword>adFind</keyword>
574
+ <keyword>adSeek</keyword>
575
+ <keyword>adIndex</keyword>
576
+ <!-- LockTypeEnum Values -->
577
+ <keyword>adLockReadOnly</keyword>
578
+ <keyword>adLockPessimistic</keyword>
579
+ <keyword>adLockOptimistic</keyword>
580
+ <keyword>adLockBatchOptimistic</keyword>
581
+ <!-- ExecuteOptionEnum Values -->
582
+ <keyword>adAsyncExecute</keyword>
583
+ <keyword>adAsyncFetch</keyword>
584
+ <keyword>adAsyncFetchNonBlocking</keyword>
585
+ <keyword>adExecuteNoRecords</keyword>
586
+ <keyword>adExecuteStream</keyword>
587
+ <!-- ConnectOptionEnum Values -->
588
+ <keyword>adAsyncConnect</keyword>
589
+ <!-- ObjectStateEnum Values -->
590
+ <keyword>adStateClosed</keyword>
591
+ <keyword>adStateOpen</keyword>
592
+ <keyword>adStateConnecting</keyword>
593
+ <keyword>adStateExecuting</keyword>
594
+ <keyword>adStateFetching</keyword>
595
+ <!-- CursorLocationEnum Values -->
596
+ <keyword>adUseServer</keyword>
597
+ <keyword>adUseClient</keyword>
598
+ <!-- DataTypeEnum Values -->
599
+ <keyword>adEmpty</keyword>
600
+ <keyword>adTinyInt</keyword>
601
+ <keyword>adSmallInt</keyword>
602
+ <keyword>adInteger</keyword>
603
+ <keyword>adBigInt</keyword>
604
+ <keyword>adUnsignedTinyInt</keyword>
605
+ <keyword>adUnsignedSmallInt</keyword>
606
+ <keyword>adUnsignedInt</keyword>
607
+ <keyword>adUnsignedBigInt</keyword>
608
+ <keyword>adSingle</keyword>
609
+ <keyword>adDouble</keyword>
610
+ <keyword>adCurrency</keyword>
611
+ <keyword>adDecimal</keyword>
612
+ <keyword>adNumeric</keyword>
613
+ <keyword>adBoolean</keyword>
614
+ <keyword>adError</keyword>
615
+ <keyword>adUserDefined</keyword>
616
+ <keyword>adVariant</keyword>
617
+ <keyword>adIDispatch</keyword>
618
+ <keyword>adIUnknown</keyword>
619
+ <keyword>adGUID</keyword>
620
+ <keyword>adDate</keyword>
621
+ <keyword>adDBDate</keyword>
622
+ <keyword>adDBTime</keyword>
623
+ <keyword>adDBTimeStamp</keyword>
624
+ <keyword>adBSTR</keyword>
625
+ <keyword>adChar</keyword>
626
+ <keyword>adVarChar</keyword>
627
+ <keyword>adLongVarChar</keyword>
628
+ <keyword>adWChar</keyword>
629
+ <keyword>adVarWChar</keyword>
630
+ <keyword>adLongVarWChar</keyword>
631
+ <keyword>adBinary</keyword>
632
+ <keyword>adVarBinary</keyword>
633
+ <keyword>adLongVarBinary</keyword>
634
+ <keyword>adChapter</keyword>
635
+ <keyword>adFileTime</keyword>
636
+ <keyword>adPropVariant</keyword>
637
+ <keyword>adVarNumeric</keyword>
638
+ <keyword>adArray</keyword>
639
+ <!-- FieldAttributeEnum Values -->
640
+ <keyword>adFldMayDefer</keyword>
641
+ <keyword>adFldUpdatable</keyword>
642
+ <keyword>adFldUnknownUpdatable</keyword>
643
+ <keyword>adFldFixed</keyword>
644
+ <keyword>adFldIsNullable</keyword>
645
+ <keyword>adFldMayBeNull</keyword>
646
+ <keyword>adFldLong</keyword>
647
+ <keyword>adFldRowID</keyword>
648
+ <keyword>adFldRowVersion</keyword>
649
+ <keyword>adFldCacheDeferred</keyword>
650
+ <keyword>adFldIsChapter</keyword>
651
+ <keyword>adFldNegativeScale</keyword>
652
+ <keyword>adFldKeyColumn</keyword>
653
+ <keyword>adFldIsRowURL</keyword>
654
+ <keyword>adFldIsDefaultStream</keyword>
655
+ <keyword>adFldIsCollection</keyword>
656
+ <!-- EditModeEnum Values -->
657
+ <keyword>adEditNone</keyword>
658
+ <keyword>adEditInProgress</keyword>
659
+ <keyword>adEditAdd</keyword>
660
+ <keyword>adEditDelete</keyword>
661
+ <!-- RecordStatusEnum Values -->
662
+ <keyword>adRecOK</keyword>
663
+ <keyword>adRecNew</keyword>
664
+ <keyword>adRecModified</keyword>
665
+ <keyword>adRecDeleted</keyword>
666
+ <keyword>adRecUnmodified</keyword>
667
+ <keyword>adRecInvalid</keyword>
668
+ <keyword>adRecMultipleChanges</keyword>
669
+ <keyword>adRecPendingChanges</keyword>
670
+ <keyword>adRecCanceled</keyword>
671
+ <keyword>adRecCantRelease</keyword>
672
+ <keyword>adRecConcurrencyViolation</keyword>
673
+ <keyword>adRecIntegrityViolation</keyword>
674
+ <keyword>adRecMaxChangesExceeded</keyword>
675
+ <keyword>adRecObjectOpen</keyword>
676
+ <keyword>adRecOutOfMemory</keyword>
677
+ <keyword>adRecPermissionDenied</keyword>
678
+ <keyword>adRecSchemaViolation</keyword>
679
+ <keyword>adRecDBDeleted</keyword>
680
+ <!-- GetRowsOptionEnum Values -->
681
+ <keyword>adGetRowsRest</keyword>
682
+ <!-- PositionEnum Values -->
683
+ <keyword>adPosUnknown</keyword>
684
+ <keyword>adPosBOF</keyword>
685
+ <keyword>adPosEOF</keyword>
686
+ <!-- BookmarkEnum Values -->
687
+ <keyword>adBookmarkCurrent</keyword>
688
+ <keyword>adBookmarkFirst</keyword>
689
+ <keyword>adBookmarkLast</keyword>
690
+ <!-- MarshalOptionsEnum Values -->
691
+ <keyword>adMarshalAll</keyword>
692
+ <keyword>adMarshalModifiedOnly</keyword>
693
+ <!-- AffectEnum Values -->
694
+ <keyword>adAffectCurrent</keyword>
695
+ <keyword>adAffectGroup</keyword>
696
+ <keyword>adAffectAllChapters</keyword>
697
+ <!-- ResyncEnum Values -->
698
+ <keyword>adResyncUnderlyingValues</keyword>
699
+ <keyword>adResyncAllValues</keyword>
700
+ <!-- CompareEnum Values -->
701
+ <keyword>adCompareLessThan</keyword>
702
+ <keyword>adCompareEqual</keyword>
703
+ <keyword>adCompareGreaterThan</keyword>
704
+ <keyword>adCompareNotEqual</keyword>
705
+ <keyword>adCompareNotComparable</keyword>
706
+ <!-- FilterGroupEnum Values -->
707
+ <keyword>adFilterNone</keyword>
708
+ <keyword>adFilterPendingRecords</keyword>
709
+ <keyword>adFilterAffectedRecords</keyword>
710
+ <keyword>adFilterFetchedRecords</keyword>
711
+ <keyword>adFilterConflictingRecords</keyword>
712
+ <!-- SearchDirectionEnum Values -->
713
+ <keyword>adSearchForward</keyword>
714
+ <keyword>adSearchBackward</keyword>
715
+ <!-- PersistFormatEnum Values -->
716
+ <keyword>adPersistADTG</keyword>
717
+ <keyword>adPersistXML</keyword>
718
+ <!-- StringFormatEnum Values -->
719
+ <keyword>adClipString</keyword>
720
+ <!-- ConnectPromptEnum Values -->
721
+ <keyword>adPromptAlways</keyword>
722
+ <keyword>adPromptComplete</keyword>
723
+ <keyword>adPromptCompleteRequired</keyword>
724
+ <keyword>adPromptNever</keyword>
725
+ <!-- ConnectModeEnum Values -->
726
+ <keyword>adModeUnknown</keyword>
727
+ <keyword>adModeRead</keyword>
728
+ <keyword>adModeWrite</keyword>
729
+ <keyword>adModeReadWrite</keyword>
730
+ <keyword>adModeShareDenyRead</keyword>
731
+ <keyword>adModeShareDenyWrite</keyword>
732
+ <keyword>adModeShareExclusive</keyword>
733
+ <keyword>adModeShareDenyNone</keyword>
734
+ <keyword>adModeRecursive</keyword>
735
+ <!-- RecordCreateOptionsEnum Values -->
736
+ <keyword>adCreateCollection</keyword>
737
+ <keyword>adCreateStructDoc</keyword>
738
+ <keyword>adCreateNonCollection</keyword>
739
+ <keyword>adOpenIfExists</keyword>
740
+ <keyword>adCreateOverwrite</keyword>
741
+ <keyword>adFailIfNotExists</keyword>
742
+ <!-- RecordOpenOptionsEnum Values -->
743
+ <keyword>adOpenRecordUnspecified</keyword>
744
+ <keyword>adOpenOutput</keyword>
745
+ <keyword>adOpenAsync</keyword>
746
+ <keyword>adDelayFetchStream</keyword>
747
+ <keyword>adDelayFetchFields</keyword>
748
+ <keyword>adOpenExecuteCommand</keyword>
749
+ <!-- IsolationLevelEnum Values -->
750
+ <keyword>adXactUnspecified</keyword>
751
+ <keyword>adXactChaos</keyword>
752
+ <keyword>adXactReadUncommitted</keyword>
753
+ <keyword>adXactBrowse</keyword>
754
+ <keyword>adXactCursorStability</keyword>
755
+ <keyword>adXactReadCommitted</keyword>
756
+ <keyword>adXactRepeatableRead</keyword>
757
+ <keyword>adXactSerializable</keyword>
758
+ <keyword>adXactIsolated</keyword>
759
+ <!-- XactAttributeEnum Values -->
760
+ <keyword>adXactCommitRetaining</keyword>
761
+ <keyword>adXactAbortRetaining</keyword>
762
+ <!-- PropertyAttributesEnum Values -->
763
+ <keyword>adPropNotSupported</keyword>
764
+ <keyword>adPropRequired</keyword>
765
+ <keyword>adPropOptional</keyword>
766
+ <keyword>adPropRead</keyword>
767
+ <keyword>adPropWrite</keyword>
768
+ <!-- ErrorValueEnum Values -->
769
+ <keyword>adErrProviderFailed</keyword>
770
+ <keyword>adErrInvalidArgument</keyword>
771
+ <keyword>adErrOpeningFile</keyword>
772
+ <keyword>adErrReadFile</keyword>
773
+ <keyword>adErrWriteFile</keyword>
774
+ <keyword>adErrNoCurrentRecord</keyword>
775
+ <keyword>adErrIllegalOperation</keyword>
776
+ <keyword>adErrCantChangeProvider</keyword>
777
+ <keyword>adErrInTransaction</keyword>
778
+ <keyword>adErrFeatureNotAvailable</keyword>
779
+ <keyword>adErrItemNotFound</keyword>
780
+ <keyword>adErrObjectInCollection</keyword>
781
+ <keyword>adErrObjectNotSet</keyword>
782
+ <keyword>adErrDataConversion</keyword>
783
+ <keyword>adErrObjectClosed</keyword>
784
+ <keyword>adErrObjectOpen</keyword>
785
+ <keyword>adErrProviderNotFound</keyword>
786
+ <keyword>adErrBoundToCommand</keyword>
787
+ <keyword>adErrInvalidParamInfo</keyword>
788
+ <keyword>adErrInvalidConnection</keyword>
789
+ <keyword>adErrNotReentrant</keyword>
790
+ <keyword>adErrStillExecuting</keyword>
791
+ <keyword>adErrOperationCancelled</keyword>
792
+ <keyword>adErrStillConnecting</keyword>
793
+ <keyword>adErrInvalidTransaction</keyword>
794
+ <keyword>adErrUnsafeOperation</keyword>
795
+ <keyword>adwrnSecurityDialog</keyword>
796
+ <keyword>adwrnSecurityDialogHeader</keyword>
797
+ <keyword>adErrIntegrityViolation</keyword>
798
+ <keyword>adErrPermissionDenied</keyword>
799
+ <keyword>adErrDataOverflow</keyword>
800
+ <keyword>adErrSchemaViolation</keyword>
801
+ <keyword>adErrSignMismatch</keyword>
802
+ <keyword>adErrCantConvertvalue</keyword>
803
+ <keyword>adErrCantCreate</keyword>
804
+ <keyword>adErrColumnNotOnThisRow</keyword>
805
+ <keyword>adErrURLIntegrViolSetColumns</keyword>
806
+ <keyword>adErrURLDoesNotExist</keyword>
807
+ <keyword>adErrTreePermissionDenied</keyword>
808
+ <keyword>adErrInvalidURL</keyword>
809
+ <keyword>adErrResourceLocked</keyword>
810
+ <keyword>adErrResourceExists</keyword>
811
+ <keyword>adErrCannotComplete</keyword>
812
+ <keyword>adErrVolumeNotFound</keyword>
813
+ <keyword>adErrOutOfSpace</keyword>
814
+ <keyword>adErrResourceOutOfScope</keyword>
815
+ <keyword>adErrUnavailable</keyword>
816
+ <keyword>adErrURLNamedRowDoesNotExist</keyword>
817
+ <keyword>adErrDelResOutOfScope</keyword>
818
+ <keyword>adErrPropInvalidColumn</keyword>
819
+ <keyword>adErrPropInvalidOption</keyword>
820
+ <keyword>adErrPropInvalidValue</keyword>
821
+ <keyword>adErrPropConflicting</keyword>
822
+ <keyword>adErrPropNotAllSettable</keyword>
823
+ <keyword>adErrPropNotSet</keyword>
824
+ <keyword>adErrPropNotSettable</keyword>
825
+ <keyword>adErrPropNotSupported</keyword>
826
+ <keyword>adErrCatalogNotSet</keyword>
827
+ <keyword>adErrCantChangeConnection</keyword>
828
+ <keyword>adErrFieldsUpdateFailed</keyword>
829
+ <keyword>adErrDenyNotSupported</keyword>
830
+ <keyword>adErrDenyTypeNotSupported</keyword>
831
+ <keyword>adErrProviderNotSpecified</keyword>
832
+ <keyword>adErrConnectionStringTooLong</keyword>
833
+ <!-- ParameterAttributesEnum Values -->
834
+ <keyword>adParamSigned</keyword>
835
+ <keyword>adParamNullable</keyword>
836
+ <keyword>adParamLong</keyword>
837
+ <!-- ParameterDirectionEnum Values -->
838
+ <keyword>adParamUnknown</keyword>
839
+ <keyword>adParamInput</keyword>
840
+ <keyword>adParamOutput</keyword>
841
+ <keyword>adParamInputOutput</keyword>
842
+ <keyword>adParamReturnValue</keyword>
843
+ <!-- CommandTypeEnum Values -->
844
+ <keyword>adCmdUnknown</keyword>
845
+ <keyword>adCmdText</keyword>
846
+ <keyword>adCmdTable</keyword>
847
+ <keyword>adCmdStoredProc</keyword>
848
+ <keyword>adCmdFile</keyword>
849
+ <keyword>adCmdTableDirect</keyword>
850
+ <!-- EventStatusEnum Values -->
851
+ <keyword>adStatusOK</keyword>
852
+ <keyword>adStatusErrorsOccurred</keyword>
853
+ <keyword>adStatusCantDeny</keyword>
854
+ <keyword>adStatusCancel</keyword>
855
+ <keyword>adStatusUnwantedEvent</keyword>
856
+ <!-- EventReasonEnum Values -->
857
+ <keyword>adRsnAddNew</keyword>
858
+ <keyword>adRsnDelete</keyword>
859
+ <keyword>adRsnUpdate</keyword>
860
+ <keyword>adRsnUndoUpdate</keyword>
861
+ <keyword>adRsnUndoAddNew</keyword>
862
+ <keyword>adRsnUndoDelete</keyword>
863
+ <keyword>adRsnRequery</keyword>
864
+ <keyword>adRsnResynch</keyword>
865
+ <keyword>adRsnClose</keyword>
866
+ <keyword>adRsnMove</keyword>
867
+ <keyword>adRsnFirstChange</keyword>
868
+ <keyword>adRsnMoveFirst</keyword>
869
+ <keyword>adRsnMoveNext</keyword>
870
+ <keyword>adRsnMovePrevious</keyword>
871
+ <keyword>adRsnMoveLast</keyword>
872
+ <!-- SchemaEnum Values -->
873
+ <keyword>adSchemaProviderSpecific</keyword>
874
+ <keyword>adSchemaAsserts</keyword>
875
+ <keyword>adSchemaCatalogs</keyword>
876
+ <keyword>adSchemaCharacterSets</keyword>
877
+ <keyword>adSchemaCollations</keyword>
878
+ <keyword>adSchemaColumns</keyword>
879
+ <keyword>adSchemaCheckConstraints</keyword>
880
+ <keyword>adSchemaConstraintColumnUsage</keyword>
881
+ <keyword>adSchemaConstraintTableUsage</keyword>
882
+ <keyword>adSchemaKeyColumnUsage</keyword>
883
+ <keyword>adSchemaReferentialConstraints</keyword>
884
+ <keyword>adSchemaTableConstraints</keyword>
885
+ <keyword>adSchemaColumnsDomainUsage</keyword>
886
+ <keyword>adSchemaIndexes</keyword>
887
+ <keyword>adSchemaColumnPrivileges</keyword>
888
+ <keyword>adSchemaTablePrivileges</keyword>
889
+ <keyword>adSchemaUsagePrivileges</keyword>
890
+ <keyword>adSchemaProcedures</keyword>
891
+ <keyword>adSchemaSchemata</keyword>
892
+ <keyword>adSchemaSQLLanguages</keyword>
893
+ <keyword>adSchemaStatistics</keyword>
894
+ <keyword>adSchemaTables</keyword>
895
+ <keyword>adSchemaTranslations</keyword>
896
+ <keyword>adSchemaProviderTypes</keyword>
897
+ <keyword>adSchemaViews</keyword>
898
+ <keyword>adSchemaViewColumnUsage</keyword>
899
+ <keyword>adSchemaViewTableUsage</keyword>
900
+ <keyword>adSchemaProcedureParameters</keyword>
901
+ <keyword>adSchemaForeignKeys</keyword>
902
+ <keyword>adSchemaPrimaryKeys</keyword>
903
+ <keyword>adSchemaProcedureColumns</keyword>
904
+ <keyword>adSchemaDBInfoKeywords</keyword>
905
+ <keyword>adSchemaDBInfoLiterals</keyword>
906
+ <keyword>adSchemaCubes</keyword>
907
+ <keyword>adSchemaDimensions</keyword>
908
+ <keyword>adSchemaHierarchies</keyword>
909
+ <keyword>adSchemaLevels</keyword>
910
+ <keyword>adSchemaMeasures</keyword>
911
+ <keyword>adSchemaProperties</keyword>
912
+ <keyword>adSchemaMembers</keyword>
913
+ <keyword>adSchemaTrustees</keyword>
914
+ <keyword>adSchemaFunctions</keyword>
915
+ <keyword>adSchemaActions</keyword>
916
+ <keyword>adSchemaCommands</keyword>
917
+ <keyword>adSchemaSets</keyword>
918
+ <!-- FieldStatusEnum Values -->
919
+ <keyword>adFieldOK</keyword>
920
+ <keyword>adFieldCantConvertValue</keyword>
921
+ <keyword>adFieldIsNull</keyword>
922
+ <keyword>adFieldTruncated</keyword>
923
+ <keyword>adFieldSignMismatch</keyword>
924
+ <keyword>adFieldDataOverflow</keyword>
925
+ <keyword>adFieldCantCreate</keyword>
926
+ <keyword>adFieldUnavailable</keyword>
927
+ <keyword>adFieldPermissionDenied</keyword>
928
+ <keyword>adFieldIntegrityViolation</keyword>
929
+ <keyword>adFieldSchemaViolation</keyword>
930
+ <keyword>adFieldBadStatus</keyword>
931
+ <keyword>adFieldDefault</keyword>
932
+ <keyword>adFieldIgnore</keyword>
933
+ <keyword>adFieldDoesNotExist</keyword>
934
+ <keyword>adFieldInvalidURL</keyword>
935
+ <keyword>adFieldResourceLocked</keyword>
936
+ <keyword>adFieldResourceExists</keyword>
937
+ <keyword>adFieldCannotComplete</keyword>
938
+ <keyword>adFieldVolumeNotFound</keyword>
939
+ <keyword>adFieldOutOfSpace</keyword>
940
+ <keyword>adFieldCannotDeleteSource</keyword>
941
+ <keyword>adFieldReadOnly</keyword>
942
+ <keyword>adFieldResourceOutOfScope</keyword>
943
+ <keyword>adFieldAlreadyExists</keyword>
944
+ <keyword>adFieldPendingInsert</keyword>
945
+ <keyword>adFieldPendingDelete</keyword>
946
+ <keyword>adFieldPendingChange</keyword>
947
+ <keyword>adFieldPendingUnknown</keyword>
948
+ <keyword>adFieldPendingUnknownDelete</keyword>
949
+ <!-- SeekEnum Values -->
950
+ <keyword>adSeekFirstEQ</keyword>
951
+ <keyword>adSeekLastEQ</keyword>
952
+ <keyword>adSeekAfterEQ</keyword>
953
+ <keyword>adSeekAfter</keyword>
954
+ <keyword>adSeekBeforeEQ</keyword>
955
+ <keyword>adSeekBefore</keyword>
956
+ <!-- ADCPROP_UPDATECRITERIA_ENUM Values -->
957
+ <keyword>adCriteriaKey</keyword>
958
+ <keyword>adCriteriaAllCols</keyword>
959
+ <keyword>adCriteriaUpdCols</keyword>
960
+ <keyword>adCriteriaTimeStamp</keyword>
961
+ <!-- ADCPROP_ASYNCTHREADPRIORITY_ENUM Values -->
962
+ <keyword>adPriorityLowest</keyword>
963
+ <keyword>adPriorityBelowNormal</keyword>
964
+ <keyword>adPriorityNormal</keyword>
965
+ <keyword>adPriorityAboveNormal</keyword>
966
+ <keyword>adPriorityHighest</keyword>
967
+ <!-- ADCPROP_AUTORECALC_ENUM Values -->
968
+ <keyword>adRecalcUpFront</keyword>
969
+ <keyword>adRecalcAlways</keyword>
970
+ <!-- ADCPROP_UPDATERESYNC_ENUM Values -->
971
+ <keyword>adResyncNone</keyword>
972
+ <keyword>adResyncAutoIncrement</keyword>
973
+ <keyword>adResyncConflicts</keyword>
974
+ <keyword>adResyncUpdates</keyword>
975
+ <keyword>adResyncInserts</keyword>
976
+ <keyword>adResyncAll</keyword>
977
+ <!-- MoveRecordOptionsEnum Values -->
978
+ <keyword>adMoveUnspecified</keyword>
979
+ <keyword>adMoveOverWrite</keyword>
980
+ <keyword>adMoveDontUpdateLinks</keyword>
981
+ <keyword>adMoveAllowEmulation</keyword>
982
+ <!-- CopyRecordOptionsEnum Values -->
983
+ <keyword>adCopyUnspecified</keyword>
984
+ <keyword>adCopyOverWrite</keyword>
985
+ <keyword>adCopyAllowEmulation</keyword>
986
+ <keyword>adCopyNonRecursive</keyword>
987
+ <!-- StreamTypeEnum Values -->
988
+ <keyword>adTypeBinary</keyword>
989
+ <keyword>adTypeText</keyword>
990
+ <!-- LineSeparatorEnum Values -->
991
+ <keyword>adLF</keyword>
992
+ <keyword>adCR</keyword>
993
+ <keyword>adCRLF</keyword>
994
+ <!-- StreamOpenOptionsEnum Values -->
995
+ <keyword>adOpenStreamUnspecified</keyword>
996
+ <keyword>adOpenStreamAsync</keyword>
997
+ <keyword>adOpenStreamFromRecord</keyword>
998
+ <!-- StreamWriteEnum Values -->
999
+ <keyword>adWriteChar</keyword>
1000
+ <keyword>adWriteLine</keyword>
1001
+ <!-- SaveOptionsEnum Values -->
1002
+ <keyword>adSaveCreateNotExist</keyword>
1003
+ <keyword>adSaveCreateOverWrite</keyword>
1004
+ <!-- FieldEnum Values -->
1005
+ <keyword>adDefaultStream</keyword>
1006
+ <keyword>adRecordURL</keyword>
1007
+ <!-- StreamReadEnum Values -->
1008
+ <keyword>adReadAll</keyword>
1009
+ <keyword>adReadLine</keyword>
1010
+ <!-- RecordTypeEnum Values -->
1011
+ <keyword>adSimpleRecord</keyword>
1012
+ <keyword>adCollectionRecord</keyword>
1013
+ <keyword>adStructDoc</keyword>
1014
+ </context>
1015
+
1016
+ <context id="types" style-ref="type">
1017
+ <keyword>boolean</keyword>
1018
+ <keyword>byte</keyword>
1019
+ <keyword>currency</keyword>
1020
+ <keyword>date</keyword>
1021
+ <keyword>double</keyword>
1022
+ <keyword>empty</keyword>
1023
+ <keyword>error</keyword>
1024
+ <keyword>integer</keyword>
1025
+ <keyword>long</keyword>
1026
+ <keyword>object</keyword>
1027
+ <keyword>single</keyword>
1028
+ <keyword>string</keyword>
1029
+ </context>
1030
+
1031
+ <context id="special-constants" style-ref="special-constant">
1032
+ <keyword>nothing</keyword>
1033
+ <keyword>null</keyword>
1034
+ </context>
1035
+
1036
+ <context id="boolean" style-ref="boolean">
1037
+ <keyword>false</keyword>
1038
+ <keyword>true</keyword>
1039
+ </context>
1040
+
1041
+ <context id="numeric" style-ref="number">
1042
+ <match extended="true">
1043
+ (\b([0-9]+|0[xX][0-9a-fA-F]+)[Ll]?\b|
1044
+ \b(([0-9]+[Ee][-]?[0-9]+|
1045
+ ([0-9]*\.[0-9]+|[0-9]+\.)([Ee][-]?[0-9]+)?)[fFdD]?|
1046
+ [0-9]+[FfDd]))
1047
+ </match>
1048
+ </context>
1049
+
1050
+ <context id="asp-block">
1051
+ <start>&lt;[%]</start>
1052
+ <end>[%]&gt;</end>
1053
+ <include>
1054
+ <context sub-pattern="0" where="start" style-ref="preprocessor"/>
1055
+ <context sub-pattern="0" where="end" style-ref="preprocessor"/>
1056
+ <context ref="line-comment"/>
1057
+ <context ref="old-style-comment"/>
1058
+ <context ref="string"/>
1059
+ <context ref="preprocessor"/>
1060
+ <context ref="keywords"/>
1061
+ <context ref="functions"/>
1062
+ <context ref="operators"/>
1063
+ <context ref="objects"/>
1064
+ <context ref="constants"/>
1065
+ <context ref="types"/>
1066
+ <context ref="special-constants"/>
1067
+ <context ref="boolean"/>
1068
+ <context ref="numeric"/>
1069
+ <!--//
1070
+
1071
+ ASP(Active Server Pages) technology allows almost any programming language with
1072
+ support to ActiveScripting to be used with it, but including the languages below
1073
+ doesn't work as expected because of definitions conflicts between them. I've
1074
+ tested and recommend to just change the Syntax Highlighting to the desired
1075
+ language if it's another than VBScript. VBScript was chosen here because it's
1076
+ the standard language for ASP.
1077
+
1078
+ <context ref="js:js"/>
1079
+ <context ref="perl:perl"/>
1080
+ <context ref="python:python"/>
1081
+ <context ref="tcl:tcl"/>
1082
+ <context ref="php:php"/>
1083
+
1084
+ //-->
1085
+ </include>
1086
+ </context>
1087
+
1088
+ <context id="asp" class="no-spell-check">
1089
+ <include>
1090
+ <context ref="asp-block"/>
1091
+ <context ref="html:html"/>
1092
+ </include>
1093
+ </context>
1094
+
1095
+ </definitions>
1096
+
1097
+ </language>