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,268 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+
4
+ This file is part of GtkSourceView
5
+
6
+ Author: Andrew Johnson <acjgenius@earthlink.net>
7
+ Copyright (C) 2004 Andrew Johnson <acjgenius@earthlink.net>
8
+ Copyright (C) 2005 Thierry Moisan <thierryn@videotron.ca>
9
+
10
+ This library is free software; you can redistribute it and/or modify
11
+ it under the terms of the GNU General Public License as published by
12
+ the Free Software Foundation; either version 2 of the License, or
13
+ (at your option) any later version.
14
+
15
+ This program is distributed in the hope that it will be useful,
16
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
17
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
+ GNU General Public License for more details.
19
+
20
+ You should have received a copy of the GNU General Public License
21
+ along with this program; if not, write to the Free Software
22
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23
+
24
+ -->
25
+ <language id="pascal" _name="Pascal" version="2.0" _section="Sources">
26
+ <metadata>
27
+ <property name="mimetypes">text/x-pascal</property>
28
+ <property name="globs">*.p;*.pas</property>
29
+ <property name="line-comment-start">//</property>
30
+ </metadata>
31
+
32
+ <styles>
33
+ <style id="comment" _name="Comment" map-to="def:comment"/>
34
+ <style id="string" _name="String" map-to="def:string"/>
35
+ <style id="keyword" _name="Keyword" map-to="def:keyword"/>
36
+ <style id="decimal" _name="Decimal" map-to="def:decimal"/>
37
+ <style id="type" _name="Data Type" map-to="def:type"/>
38
+ <style id="preprocessor" _name="Preprocessor" map-to="def:preprocessor"/>
39
+ </styles>
40
+
41
+ <default-regex-options case-sensitive="false"/>
42
+
43
+ <definitions>
44
+
45
+ <context id="string" style-ref="string" class="string" class-disabled="no-spell-check">
46
+ <start>[uUrR]?'</start>
47
+ <end>'</end>
48
+ </context>
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-comment"/>
54
+ </include>
55
+ </context>
56
+
57
+ <context id="block-comment-1" style-ref="comment" class="comment" class-disabled="no-spell-check">
58
+ <start>\(\*</start>
59
+ <end>\*\)</end>
60
+ <include>
61
+ <context ref="def:in-comment"/>
62
+ </include>
63
+ </context>
64
+
65
+ <context id="block-comment-2" style-ref="comment" class="comment" class-disabled="no-spell-check">
66
+ <start>\{</start>
67
+ <end>\}</end>
68
+ <include>
69
+ <context ref="def:in-comment"/>
70
+ </include>
71
+ </context>
72
+
73
+ <context id="preprocessor-defines" style-ref="preprocessor" end-at-line-end="true">
74
+ <start>\{\$</start>
75
+ <end>\}</end>
76
+ </context>
77
+
78
+ <context id="general-format" style-ref="keyword">
79
+ <keyword>Program</keyword>
80
+ <keyword>Library</keyword>
81
+ <keyword>Unit</keyword>
82
+ <keyword>Uses</keyword>
83
+ <keyword>Interface</keyword>
84
+ <keyword>Implementation</keyword>
85
+ <keyword>Initialization</keyword>
86
+ <keyword>Finalization</keyword>
87
+ <keyword>Begin</keyword>
88
+ <keyword>End</keyword>
89
+ <keyword>Var</keyword>
90
+ <keyword>Const</keyword>
91
+ </context>
92
+
93
+ <context id="functions-and-function-modifiers" style-ref="keyword">
94
+ <keyword>Function</keyword>
95
+ <keyword>Procedure</keyword>
96
+ <keyword>Overload</keyword>
97
+ <keyword>cdecl</keyword>
98
+ </context>
99
+
100
+ <context id="boolean-bitwise-operators" style-ref="keyword">
101
+ <keyword>if</keyword>
102
+ <keyword>then</keyword>
103
+ <keyword>else</keyword>
104
+ <keyword>is</keyword>
105
+ <keyword>and</keyword>
106
+ <keyword>and_then</keyword>
107
+ <keyword>not</keyword>
108
+ <keyword>or</keyword>
109
+ <keyword>or_else</keyword>
110
+ <keyword>xor</keyword>
111
+ <keyword>shr</keyword>
112
+ <keyword>shl</keyword>
113
+ <keyword>otherwise</keyword>
114
+ </context>
115
+
116
+ <context id="math-operators" style-ref="keyword">
117
+ <keyword>div</keyword>
118
+ <keyword>mod</keyword>
119
+ </context>
120
+
121
+ <context id="loop-flow-and-exceptions-keywords" style-ref="keyword">
122
+ <keyword>while</keyword>
123
+ <keyword>do</keyword>
124
+ <keyword>for</keyword>
125
+ <keyword>to</keyword>
126
+ <keyword>case</keyword>
127
+ <keyword>of</keyword>
128
+ <keyword>repeat</keyword>
129
+ <keyword>until</keyword>
130
+ <keyword>break</keyword>
131
+ <keyword>continue</keyword>
132
+ <keyword>try</keyword>
133
+ <keyword>except</keyword>
134
+ <keyword>finally</keyword>
135
+ <keyword>raise</keyword>
136
+ <keyword>downto</keyword>
137
+ <keyword>in</keyword>
138
+ </context>
139
+
140
+ <context id="type-class-and-object-keywords" style-ref="keyword">
141
+ <keyword>Type</keyword>
142
+ <keyword>Packed</keyword>
143
+ <keyword>Array</keyword>
144
+ <keyword>Record</keyword>
145
+ <keyword>Object</keyword>
146
+ <keyword>Class</keyword>
147
+ <keyword>Interface</keyword>
148
+ <keyword>Public</keyword>
149
+ <keyword>Private</keyword>
150
+ <keyword>Protected</keyword>
151
+ <keyword>Constructor</keyword>
152
+ <keyword>Destructor</keyword>
153
+ <keyword>Virtual</keyword>
154
+ <keyword>Abstract</keyword>
155
+ <keyword>Override</keyword>
156
+ <keyword>Property</keyword>
157
+ <keyword>ReadLn</keyword>
158
+ <keyword>Read</keyword>
159
+ <keyword>WriteLn</keyword>
160
+ <keyword>Write</keyword>
161
+ <keyword>default</keyword>
162
+ <keyword>With</keyword>
163
+ <keyword>As</keyword>
164
+ <keyword>self</keyword>
165
+ <keyword>Inherited</keyword>
166
+ <keyword>Forward</keyword>
167
+ <keyword>Implements</keyword>
168
+ <keyword>varargs</keyword>
169
+ <keyword>far</keyword>
170
+ <keyword>near</keyword>
171
+ <keyword>absolute</keyword>
172
+ <keyword>all</keyword>
173
+ <keyword>asm</keyword>
174
+ <keyword>attribute</keyword>
175
+ <keyword>bindable</keyword>
176
+ <keyword>export</keyword>
177
+ <keyword>exports</keyword>
178
+ <keyword>external</keyword>
179
+ <keyword>file</keyword>
180
+ <keyword>goto</keyword>
181
+ <keyword>import</keyword>
182
+ <keyword>interrupt</keyword>
183
+ <keyword>published</keyword>
184
+ <keyword>qualified</keyword>
185
+ <keyword>resident</keyword>
186
+ <keyword>restricted</keyword>
187
+ <keyword>segment</keyword>
188
+ <keyword>set</keyword>
189
+ <keyword>value</keyword>
190
+ </context>
191
+
192
+ <context id="builtin-types" style-ref="type">
193
+ <keyword>Char</keyword>
194
+ <keyword>String</keyword>
195
+ <keyword>Integer</keyword>
196
+ <keyword>Real</keyword>
197
+ <keyword>Boolean</keyword>
198
+ <keyword>Pointer</keyword>
199
+ <keyword>Byte</keyword>
200
+ <keyword>LongInt</keyword>
201
+ </context>
202
+
203
+ <context id="builtin-functions" style-ref="keyword">
204
+ <keyword>chr</keyword>
205
+ <keyword>ord</keyword>
206
+ <keyword>succ</keyword>
207
+ <keyword>pred</keyword>
208
+ <keyword>abs</keyword>
209
+ <keyword>round</keyword>
210
+ <keyword>trunc</keyword>
211
+ <keyword>sqr</keyword>
212
+ <keyword>sqrt</keyword>
213
+ <keyword>arctan</keyword>
214
+ <keyword>cos</keyword>
215
+ <keyword>sin</keyword>
216
+ <keyword>exp</keyword>
217
+ <keyword>ln</keyword>
218
+ <keyword>odd</keyword>
219
+ <keyword>eof</keyword>
220
+ <keyword>eoln</keyword>
221
+ <keyword>pow</keyword>
222
+ </context>
223
+
224
+ <context id="builtin-values" style-ref="keyword">
225
+ <keyword>nil</keyword>
226
+ <keyword>False</keyword>
227
+ <keyword>True</keyword>
228
+ </context>
229
+
230
+ <context id="number" style-ref="decimal">
231
+ <match extended="true">
232
+ (?&lt;![\w\.])
233
+ (([0-9]+)|([0-9]+\.[0-9]+([Ee][-]?[0-9]+)?))
234
+ (?![\w\.])
235
+ </match>
236
+ </context>
237
+
238
+ <context id="hex-number" style-ref="decimal">
239
+ <match extended="true">
240
+ (?&lt;![\w\.])
241
+ \$[0-9a-fA-F]*
242
+ (?![\w\.])
243
+ </match>
244
+ </context>
245
+
246
+ <context id="pascal" class="no-spell-check">
247
+ <include>
248
+ <context ref="string"/>
249
+ <context ref="line-comment"/>
250
+ <context ref="preprocessor-defines"/>
251
+ <context ref="block-comment-1"/>
252
+ <context ref="block-comment-2"/>
253
+ <context ref="general-format"/>
254
+ <context ref="functions-and-function-modifiers"/>
255
+ <context ref="boolean-bitwise-operators"/>
256
+ <context ref="math-operators"/>
257
+ <context ref="loop-flow-and-exceptions-keywords"/>
258
+ <context ref="type-class-and-object-keywords"/>
259
+ <context ref="builtin-types"/>
260
+ <context ref="builtin-functions"/>
261
+ <context ref="builtin-values"/>
262
+ <context ref="number"/>
263
+ <context ref="hex-number"/>
264
+ </include>
265
+ </context>
266
+
267
+ </definitions>
268
+ </language>
@@ -0,0 +1,1028 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- ex:set ts=2 et:
3
+
4
+ This file is part of GtkSourceView
5
+
6
+ Copyright (C) 2006, 2007 Steve Frécinaux <code@istique.net>
7
+
8
+ GtkSourceView is free software; you can redistribute it and/or
9
+ modify it under the terms of the GNU Lesser General Public
10
+ License as published by the Free Software Foundation; either
11
+ version 2.1 of the License, or (at your option) any later version.
12
+
13
+ GtkSourceView is distributed in the hope that it will be useful,
14
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16
+ Lesser General Public License for more details.
17
+
18
+ You should have received a copy of the GNU Lesser General Public
19
+ License along with this library; if not, write to the Free Software
20
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
+
22
+ TODO: extended regex support
23
+ FIXME: =pod should require an empty line before/after, as written in perlpod
24
+
25
+ -->
26
+ <language id="perl" _name="Perl" version="2.0" _section="Scripts">
27
+ <metadata>
28
+ <property name="mimetypes">text/x-perl;application/x-perl</property>
29
+ <property name="globs">*.pl;*.pm;*.al;*.perl</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="line-directive" _name="Line Directive" map-to="def:preprocessor"/>
36
+ <style id="include-statement" _name="Include Statement" map-to="def:preprocessor"/>
37
+ <style id="string" _name="String" map-to="def:string"/>
38
+ <style id="keyword" _name="Keyword" map-to="def:keyword"/>
39
+ <style id="builtin" _name="Builtin Function" map-to="def:builtin"/>
40
+ <style id="here-doc" _name="Heredoc" map-to="def:string" />
41
+ <style id="here-doc-bound" _name="Heredoc Bound" map-to="def:string"/>
42
+ <style id="system-command" _name="System Command" map-to="def:string"/>
43
+ <style id="operator" _name="Operator" map-to="def:keyword"/>
44
+ <style id="variable" _name="Variable" map-to="def:type"/>
45
+ <style id="file-descriptor" _name="File Descriptor" map-to="def:special-constant"/>
46
+ <style id="control" _name="Control" map-to="def:preprocessor"/>
47
+ <style id="regex" _name="Regular Expression" map-to="def:string"/>
48
+ <style id="error" _name="Error" map-to="def:error"/>
49
+ <style id="pod" _name="POD" map-to="def:comment"/>
50
+ <style id="pod-escape" _name="POD Escape" map-to="def:special-char"/>
51
+ <style id="pod-keyword" _name="POD keyword" map-to="def:keyword"/>
52
+ <style id="pod-heading" _name="POD heading" map-to="def:doc-comment-element"/>
53
+ </styles>
54
+
55
+ <definitions>
56
+ <context id="perl" class="no-spell-check">
57
+ <include>
58
+ <context ref="def:shebang"/>
59
+ <context ref="line-directive"/>
60
+ <context ref="def:shell-like-comment"/>
61
+ <context ref="pod"/>
62
+ <context ref="data"/>
63
+
64
+ <context ref="double-quoted-string"/>
65
+ <context ref="single-quoted-string"/>
66
+ <context ref="system-command"/>
67
+ <context ref="word-list"/>
68
+ <context ref="regular-expression"/>
69
+ <context ref="match"/>
70
+ <context ref="substitution"/>
71
+ <context ref="transliteration"/>
72
+
73
+ <context ref="match-slashslash"/>
74
+
75
+ <context ref="here-doc-no-ve"/>
76
+ <context ref="here-doc"/>
77
+
78
+ <context ref="sub"/>
79
+ <context ref="variable"/>
80
+ <context ref="include-statement"/>
81
+ <context ref="operator"/>
82
+ <context ref="keyword"/>
83
+ <context ref="control"/>
84
+ <context ref="file-descriptor"/>
85
+ <context ref="builtin"/>
86
+ </include>
87
+ </context>
88
+
89
+ <!-- in case we have an obviously wrong piece of code to highlight.
90
+ We put it last so it can highlight everything not handled yet. -->
91
+ <context id="error" style-ref="error" extend-parent="false">
92
+ <match>\S</match>
93
+ </context>
94
+
95
+ <define-regex id="operator" extended="true">
96
+ \-&gt; |
97
+ \+\+ | \-\- |
98
+ \*\* |
99
+ \! | \~ | \\ | \+ | \- |
100
+ [!=]\~ |
101
+ \* | / | % |
102
+ &lt;&lt; | &gt;&gt; |
103
+ &lt; | &gt; | [&lt;&gt;=!]= | &lt;=&gt; |
104
+ &amp; | \| | \^ |
105
+ &amp;&amp; |
106
+ \.\.\.? |
107
+ \? | : |
108
+ = | \*\*= | \+= | \*= | &amp;= | &lt;&lt;= | &amp;&amp;= | \-= | /= |
109
+ \|= | &gt;&gt;= | \|\|= | \.= | %= | \^= | \bx= |
110
+ =&gt; |
111
+ \b(x|lt|gt|le|ge|eq|ne|cmp|not|and|or|xor)\b
112
+ </define-regex>
113
+
114
+ <context id="operator" style-ref="operator"><!-- see `man perlop` -->
115
+ <match>\%{operator}</match>
116
+ </context>
117
+
118
+ <!-- #### VARIABLES ################################################### -->
119
+
120
+ <!-- $ is not defined in this regexp because it would conflict with
121
+ \%{plain-variable}. $ is the current module. -->
122
+ <define-regex id="special-variable" extended="true">
123
+ \$^[ADEFHILMOPSTWX]? | # ($^A, ...)
124
+ \$[\\\&quot;\[\]'&amp;`+*.,;=%~?@$&gt;&lt;\(|/!-] | # ($|, $', ...)
125
+ \$:[^:] | # avoid confusion with $::foo (equiv. to $main::foo)
126
+ \$(0|[1-9][0-9]*) # numbered variables (regex matches)
127
+ </define-regex>
128
+
129
+ <define-regex id="plain-variable" extended="true">
130
+ ([$@%]|\$\#)\$*[a-zA-Z_][a-zA-Z0-9_]*
131
+ </define-regex>
132
+
133
+ <context id="plain-variable">
134
+ <include>
135
+ <context style-ref="variable">
136
+ <start>[$@%]{</start>
137
+ <end>}</end>
138
+ </context>
139
+ <context style-ref="variable">
140
+ <match>\%{plain-variable}</match>
141
+ </context>
142
+ </include>
143
+ </context>
144
+
145
+ <context id="special-variable" style-ref="variable">
146
+ <match>\%{special-variable}</match>
147
+ </context>
148
+
149
+ <context id="variable">
150
+ <include>
151
+ <context ref="plain-variable"/>
152
+ <context ref="special-variable"/>
153
+ </include>
154
+ </context>
155
+
156
+ <!-- #### PATTERNS / STRINGS / REGEX ################################## -->
157
+ <!-- see `man perlop` -->
158
+
159
+ <!-- available delimiters for m// or s///-style patterns (probably not
160
+ complete yet). -->
161
+ <define-regex id="pattern-delimiter" extended="true">
162
+ [&amp;+|!/@#\^\-=:;,.?*\\%`"']
163
+ </define-regex>
164
+
165
+ <!-- this assertion is shared by all the regex contexts to avoid wrong
166
+ highlighing of function calls, etc.
167
+ \b can't be used because of $var, @var, &func, %func. -->
168
+ <!-- FIXME I added { and ( to the list to fix #507075 and #535703. Someone
169
+ please look at it, it seems wrong. It probably should be a positive
170
+ look-behind. -->
171
+ <define-regex id="pattern-before" extended="true">
172
+ (?&lt;![a-zA-Z0-9@%{(])
173
+ </define-regex>
174
+
175
+ <context id="in-pattern">
176
+ <include>
177
+ <context ref="def:escape"/>
178
+ <context ref="plain-variable"/>
179
+ <context extend-parent="false">
180
+ <start>(?=\$)</start>
181
+ <include>
182
+ <!-- some variables are not recognized in patterns -->
183
+ <context><match>\$(?=[|)])</match></context>
184
+ <context ref="special-variable"/>
185
+ </include>
186
+ </context>
187
+ </include>
188
+ </context>
189
+
190
+
191
+ <!-- The following context definitions are there to handle nesting of
192
+ brackets in bracket-delimited regexes. -->
193
+
194
+ <context id="in-pattern-curly-no-ve">
195
+ <include>
196
+ <context>
197
+ <start>{</start><end>}</end>
198
+ <include><context ref="in-pattern-curly-no-ve"/></include>
199
+ </context>
200
+ </include>
201
+ </context>
202
+
203
+ <context id="in-pattern-curly">
204
+ <include>
205
+ <context>
206
+ <start>{</start><end>}</end>
207
+ <include><context ref="in-pattern-curly"/></include>
208
+ </context>
209
+ <context ref="in-pattern"/>
210
+ </include>
211
+ </context>
212
+
213
+ <context id="in-pattern-square-no-ve">
214
+ <include>
215
+ <context>
216
+ <start>\[</start><end>\]</end>
217
+ <include><context ref="in-pattern-square-no-ve"/></include>
218
+ </context>
219
+ </include>
220
+ </context>
221
+
222
+ <context id="in-pattern-square">
223
+ <include>
224
+ <context>
225
+ <start>\[</start><end>\]</end>
226
+ <include><context ref="in-pattern-square"/></include>
227
+ </context>
228
+ <context ref="in-pattern"/>
229
+ </include>
230
+ </context>
231
+
232
+ <context id="in-pattern-round-no-ve">
233
+ <include>
234
+ <context>
235
+ <start>\(</start><end>}</end>
236
+ <include><context ref="in-pattern-round-no-ve"/></include>
237
+ </context>
238
+ </include>
239
+ </context>
240
+
241
+ <context id="in-pattern-round">
242
+ <include>
243
+ <context>
244
+ <start>\(</start><end>\)</end>
245
+ <include><context ref="in-pattern-round"/></include>
246
+ </context>
247
+ <context ref="in-pattern"/>
248
+ </include>
249
+ </context>
250
+
251
+ <context id="in-pattern-angle-no-ve">
252
+ <include>
253
+ <context>
254
+ <start>&lt;</start><end>&gt;</end>
255
+ <include><context ref="in-pattern-angle-no-ve"/></include>
256
+ </context>
257
+ </include>
258
+ </context>
259
+
260
+ <context id="in-pattern-angle">
261
+ <include>
262
+ <context>
263
+ <start>&lt;</start><end>&gt;</end>
264
+ <include><context ref="in-pattern-angle"/></include>
265
+ </context>
266
+ <context ref="in-pattern"/>
267
+ </include>
268
+ </context>
269
+
270
+ <!-- One level higher: the following contexts define single and double
271
+ patterns in general, in ve and no-ve version. -->
272
+
273
+ <define-regex id="end-of-pattern" extended="true">
274
+ (?&lt;=
275
+ [}\]\)&gt;]|
276
+ \%{pattern-delimiter}
277
+ )
278
+ </define-regex>
279
+
280
+ <context id="simple-pattern" once-only="true">
281
+ <start/>
282
+ <include>
283
+ <context ref="asserted-comment"/>
284
+ <context end-parent="true">
285
+ <start>{</start><end>}</end>
286
+ <include><context ref="in-pattern-curly"/></include>
287
+ </context>
288
+ <context end-parent="true">
289
+ <start>\[</start><end>\]</end>
290
+ <include><context ref="in-pattern-square"/></include>
291
+ </context>
292
+ <context end-parent="true">
293
+ <start>\(</start><end>\)</end>
294
+ <include><context ref="in-pattern-round"/></include>
295
+ </context>
296
+ <context end-parent="true">
297
+ <start>&lt;</start><end>&gt;</end>
298
+ <include><context ref="in-pattern-angle"/></include>
299
+ </context>
300
+ <context end-parent="true">
301
+ <!-- '' doesn't usually have var expansion. -->
302
+ <start>'</start><end>'</end>
303
+ <include>
304
+ <context style-ref="def:special-char">
305
+ <match>\\\\|\\'</match>
306
+ </context>
307
+ </include>
308
+ </context>
309
+ <context end-parent="true">
310
+ <start>(?P&lt;RD&gt;\%{pattern-delimiter})</start>
311
+ <end>\%{RD@start}</end>
312
+ <include><context ref="in-pattern"/></include>
313
+ </context>
314
+ <context ref="asserted-comment"/>
315
+ <context ref="error"/>
316
+ </include>
317
+ </context>
318
+
319
+ <context id="simple-pattern-no-ve" once-only="true">
320
+ <start/>
321
+ <include>
322
+ <context end-parent="true">
323
+ <start>{</start><end>}</end>
324
+ <include><context ref="in-pattern-curly-no-ve"/></include>
325
+ </context>
326
+ <context end-parent="true">
327
+ <start>\[</start><end>\]</end>
328
+ <include><context ref="in-pattern-square-no-ve"/></include>
329
+ </context>
330
+ <context end-parent="true">
331
+ <start>\(</start><end>\)</end>
332
+ <include><context ref="in-pattern-round-no-ve"/></include>
333
+ </context>
334
+ <context end-parent="true">
335
+ <start>&lt;</start><end>&gt;</end>
336
+ <include><context ref="in-pattern-angle-no-ve"/></include>
337
+ </context>
338
+ <context end-parent="true">
339
+ <start>(?P&lt;RD&gt;\%{pattern-delimiter})</start>
340
+ <end>\%{RD@start}</end>
341
+ </context>
342
+ <context ref="asserted-comment"/>
343
+ <context ref="error"/>
344
+ </include>
345
+ </context>
346
+
347
+ <context id="double-pattern" once-only="true">
348
+ <start/>
349
+ <include>
350
+ <context end-parent="true">
351
+ <start>'</start>
352
+ <end>'</end>
353
+ <include>
354
+ <context once-only="true">
355
+ <start>(?&lt;=(?P&lt;RD&gt;.))</start>
356
+ <end>\%{RD@start}</end>
357
+ </context>
358
+ </include>
359
+ </context>
360
+ <context end-parent="true">
361
+ <start>(?P&lt;RD&gt;\%{pattern-delimiter})</start>
362
+ <end>\%{RD@start}</end>
363
+ <include>
364
+ <context once-only="true">
365
+ <start>(?&lt;=(?P&lt;RD&gt;.))</start>
366
+ <end>\%{RD@start}</end>
367
+ <include><context ref="in-pattern"/></include>
368
+ </context>
369
+ <context ref="in-pattern"/>
370
+ </include>
371
+ </context>
372
+ <context end-parent="true">
373
+ <start/>
374
+ <include>
375
+ <context ref="simple-pattern"/>
376
+ <!-- quick hack to include the same pattern twice: we surround it
377
+ with a house-keeping context -->
378
+ <context once-only="true" end-parent="true">
379
+ <start>\%{end-of-pattern}</start>
380
+ <end>\%{end-of-pattern}</end>
381
+ <include><context ref="simple-pattern"/></include>
382
+ </context>
383
+ </include>
384
+ </context>
385
+ </include>
386
+ </context>
387
+
388
+ <context id="double-pattern-no-ve" once-only="true">
389
+ <start/>
390
+ <include>
391
+ <context end-parent="true">
392
+ <start>(?P&lt;RD&gt;\%{pattern-delimiter})</start>
393
+ <end>\%{RD@start}</end>
394
+ <include>
395
+ <context once-only="true">
396
+ <start>(?&lt;=(?P&lt;RD&gt;.))</start>
397
+ <end>\%{RD@start}</end>
398
+ </context>
399
+ </include>
400
+ </context>
401
+ <context end-parent="true">
402
+ <start/>
403
+ <include>
404
+ <context ref="simple-pattern-no-ve"/>
405
+ <context once-only="true" end-parent="true">
406
+ <start>\%{end-of-pattern}</start>
407
+ <end>\%{end-of-pattern}</end>
408
+ <include><context ref="simple-pattern-no-ve"/></include>
409
+ </context>
410
+ </include>
411
+ </context>
412
+ </include>
413
+ </context>
414
+
415
+ <context id="single-quoted-string" class="string" class-disabled="no-spell-check">
416
+ <include>
417
+ <context style-ref="string">
418
+ <start>'</start><end>'</end>
419
+ <include>
420
+ <context style-ref="def:special-char">
421
+ <match>\\\\|\\'</match>
422
+ </context>
423
+ </include>
424
+ </context>
425
+ <context style-ref="string">
426
+ <start>\%{pattern-before}q\b</start>
427
+ <end>\%{end-of-pattern}</end>
428
+ <include><context ref="simple-pattern-no-ve"/></include>
429
+ </context>
430
+ </include>
431
+ </context>
432
+
433
+ <context id="double-quoted-string" class="string" class-disabled="no-spell-check">
434
+ <include>
435
+ <context style-ref="string">
436
+ <start>"</start><end>"</end>
437
+ <include><context ref="in-pattern"/></include>
438
+ </context>
439
+ <context style-ref="string">
440
+ <start>\%{pattern-before}qq\b</start>
441
+ <end>\%{end-of-pattern}</end>
442
+ <include>
443
+ <context ref="asserted-comment"/>
444
+ <!-- qq'' *has* var expansion, so we can't just use
445
+ <context ref="single-pattern"/>. -->
446
+ <context end-parent="true">
447
+ <start>{</start><end>}</end>
448
+ <include><context ref="in-pattern-curly"/></include>
449
+ </context>
450
+ <context end-parent="true">
451
+ <start>\[</start><end>\]</end>
452
+ <include><context ref="in-pattern-square"/></include>
453
+ </context>
454
+ <context end-parent="true">
455
+ <start>\(</start><end>\)</end>
456
+ <include><context ref="in-pattern-round"/></include>
457
+ </context>
458
+ <context end-parent="true">
459
+ <start>&lt;</start><end>&gt;</end>
460
+ <include><context ref="in-pattern-angle"/></include>
461
+ </context>
462
+ <context end-parent="true">
463
+ <start>(?P&lt;RD&gt;\%{pattern-delimiter})</start>
464
+ <end>\%{RD@start}</end>
465
+ <include><context ref="in-pattern"/></include>
466
+ </context>
467
+ <context ref="error"/>
468
+ </include>
469
+ </context>
470
+ </include>
471
+ </context>
472
+
473
+ <context id="word-list" style-ref="string">
474
+ <start>\%{pattern-before}qw\b</start>
475
+ <end>\%{end-of-pattern}</end>
476
+ <include><context ref="simple-pattern-no-ve"/></include>
477
+ </context>
478
+
479
+ <context id="regular-expression" style-ref="regex">
480
+ <start>\%{pattern-before}qr\b</start>
481
+ <end>\%{end-of-pattern}[imosx]*</end>
482
+ <include><context ref="simple-pattern"/></include>
483
+ </context>
484
+
485
+ <context id="system-command">
486
+ <include>
487
+ <context style-ref="system-command">
488
+ <start>`</start><end>`</end>
489
+ <include><context ref="in-pattern"/></include>
490
+ </context>
491
+ <context style-ref="system-command">
492
+ <start>\%{pattern-before}qx\b</start>
493
+ <end>\%{end-of-pattern}</end>
494
+ <include><context ref="simple-pattern"/></include>
495
+ </context>
496
+ </include>
497
+ </context>
498
+
499
+ <context id="match" style-ref="regex">
500
+ <start>\%{pattern-before}m\b</start>
501
+ <end>\%{end-of-pattern}[cgimosx]*</end>
502
+ <include><context ref="simple-pattern"/></include>
503
+ </context>
504
+
505
+ <context id="substitution" style-ref="regex">
506
+ <start>\%{pattern-before}s\b</start>
507
+ <end>\%{end-of-pattern}[ecgimosx]*</end>
508
+ <include><context ref="double-pattern"/></include>
509
+ </context>
510
+
511
+ <context id="transliteration" style-ref="regex">
512
+ <start>\%{pattern-before}(tr|y)\b</start>
513
+ <end>\%{end-of-pattern}[cds]*</end>
514
+ <include><context ref="double-pattern-no-ve"/></include>
515
+ </context>
516
+
517
+ <!-- hacks, mostly taken from vim's perl.vim. As they say:
518
+ “Below some hacks to recognise the // variant. This is virtually
519
+ impossible to catch in all cases as the / is used in so many other
520
+ ways, but these should be the most obvious ones.” -->
521
+ <context id="match-slashslash">
522
+ <include>
523
+ <context style-inside="true" style-ref="regex">
524
+ <start>(^|[^$@%&amp;])(split|while|if)\s+(/)</start>
525
+ <end>/[cgimosx]*</end>
526
+ <include>
527
+ <context sub-pattern="2" where="start" style-ref="builtin"/>
528
+ <context sub-pattern="3" where="start" style-ref="regex"/>
529
+ <context sub-pattern="0" where="end" style-ref="regex"/>
530
+ <context ref="in-pattern"/>
531
+ </include>
532
+ </context>
533
+ <context style-inside="true" style-ref="regex">
534
+ <start>(^|(?&lt;=[\(\{]))\s*(/)</start>
535
+ <end>/[cgimosx]*</end>
536
+ <include>
537
+ <context sub-pattern="2" where="start" style-ref="regex"/>
538
+ <context sub-pattern="0" where="end" style-ref="regex"/>
539
+ <context ref="in-pattern"/>
540
+ </include>
541
+ </context>
542
+ <context style-inside="true" style-ref="regex">
543
+ <start>\%{operator}\s*(/)</start>
544
+ <end>/[cgimosx]*</end>
545
+ <include>
546
+ <context sub-pattern="1" where="start" style-ref="operator"/>
547
+ <context sub-pattern="2" where="start" style-ref="regex"/>
548
+ <context sub-pattern="0" where="end" style-ref="regex"/>
549
+ <context ref="in-pattern"/>
550
+ </include>
551
+ </context>
552
+ </include>
553
+ </context>
554
+
555
+ <!-- #### HEREDOC STRINGS ############################################# -->
556
+
557
+ <define-regex id="here-doc-bound-char">[^\s'"=;]</define-regex>
558
+
559
+ <context id="here-doc-no-ve">
560
+ <start>&lt;&lt;\'(?P&lt;HDB&gt;\%{here-doc-bound-char}*)\'</start>
561
+ <end>^\%{HDB@start}$</end>
562
+ <include>
563
+ <context sub-pattern="0" where="start" style-ref="here-doc-bound"/>
564
+ <context sub-pattern="0" where="end" style-ref="here-doc-bound"/>
565
+ <context once-only="true" end-at-line-end="true">
566
+ <start/><include><context ref="perl"/></include>
567
+ </context>
568
+ <context style-ref="here-doc" extend-parent="false"><start/></context>
569
+ </include>
570
+ </context>
571
+
572
+ <context id="here-doc">
573
+ <start extended="true" dupnames="true">
574
+ &lt;&lt;
575
+ (
576
+ \"(?P&lt;HDB&gt;\%{here-doc-bound-char}*)\"| # "EOF"
577
+ (?P&lt;HDB&gt;\%{here-doc-bound-char}*) # EOF
578
+ )
579
+ </start>
580
+ <end>^\%{HDB@start}$</end>
581
+ <include>
582
+ <context sub-pattern="0" where="start" style-ref="here-doc-bound"/>
583
+ <context sub-pattern="0" where="end" style-ref="here-doc-bound"/>
584
+ <context once-only="true" end-at-line-end="true">
585
+ <start/><include><context ref="perl"/></include>
586
+ </context>
587
+ <context style-ref="here-doc" extend-parent="false">
588
+ <start/>
589
+ <include>
590
+ <context ref="def:escape"/>
591
+ <context ref="variable"/>
592
+ </include>
593
+ </context>
594
+ </include>
595
+ </context>
596
+
597
+ <!-- #### KEYWORDS / BUILTINS / ETC ################################### -->
598
+
599
+ <define-regex id="function">[a-zA-Z_][a-zA-Z0-9_]*</define-regex>
600
+
601
+ <!-- in sub context, everything is a function -->
602
+ <context id="sub">
603
+ <match>(sub)\s+\%{function}\b</match>
604
+ <include><context sub-pattern="1" style-ref="keyword"/></include>
605
+ </context>
606
+
607
+ <context id="file-descriptor" style-ref="file-descriptor">
608
+ <keyword>STDIN</keyword>
609
+ <keyword>STDOUT</keyword>
610
+ <keyword>STDERR</keyword>
611
+ </context>
612
+
613
+ <context id="control" style-ref="control">
614
+ <keyword>BEGIN</keyword>
615
+ <keyword>END</keyword>
616
+ <keyword>CHECK</keyword>
617
+ <keyword>INIT</keyword>
618
+ </context>
619
+
620
+ <context id="include-statement">
621
+ <include>
622
+ <context style-ref="include-statement">
623
+ <keyword>require</keyword>
624
+ </context>
625
+ <context>
626
+ <!-- 'use' and 'no' can be used with special flags, so we try to
627
+ highlight them as well. -->
628
+ <start>(use|no)\s</start>
629
+ <end>;</end>
630
+ <include>
631
+ <context sub-pattern="0" where="start" style-ref="include-statement"/>
632
+ <context once-only="true" style-ref="include-statement">
633
+ <keyword>attributes</keyword>
634
+ <keyword>autodie</keyword>
635
+ <keyword>autouse</keyword>
636
+ <keyword>base</keyword>
637
+ <keyword>bigint</keyword>
638
+ <keyword>bignum</keyword>
639
+ <keyword>bigrat</keyword>
640
+ <keyword>blib</keyword>
641
+ <keyword>bytes</keyword>
642
+ <keyword>charnames</keyword>
643
+ <keyword>constant</keyword>
644
+ <keyword>diagnostics</keyword>
645
+ <keyword>encoding</keyword>
646
+ <keyword>feature</keyword>
647
+ <keyword>fields</keyword>
648
+ <keyword>fileset</keyword>
649
+ <keyword>if</keyword>
650
+ <keyword>integer</keyword>
651
+ <keyword>less</keyword>
652
+ <keyword>lib</keyword>
653
+ <keyword>locale</keyword>
654
+ <keyword>mro</keyword>
655
+ <keyword>open</keyword>
656
+ <keyword>ops</keyword>
657
+ <keyword>overload</keyword>
658
+ <keyword>overloading</keyword>
659
+ <keyword>parent</keyword>
660
+ <keyword>re</keyword>
661
+ <keyword>sigtrap</keyword>
662
+ <keyword>sort</keyword>
663
+ <keyword>strict</keyword>
664
+ <keyword>subs</keyword>
665
+ <keyword>threads</keyword>
666
+ <keyword>threads::shared</keyword>
667
+ <keyword>utf8</keyword>
668
+ <keyword>vars</keyword>
669
+ <keyword>vmish</keyword>
670
+ <keyword>warnings</keyword>
671
+ <keyword>warnings::register</keyword>
672
+ </context>
673
+ <context ref="perl"/>
674
+ </include>
675
+ </context>
676
+ </include>
677
+ </context>
678
+
679
+ <context id="keyword" style-ref="keyword">
680
+ <keyword>break</keyword>
681
+ <keyword>continue</keyword>
682
+ <keyword>do</keyword>
683
+ <keyword>default</keyword>
684
+ <keyword>each</keyword>
685
+ <keyword>else</keyword>
686
+ <keyword>elsif</keyword>
687
+ <keyword>foreach</keyword>
688
+ <keyword>for</keyword>
689
+ <keyword>given</keyword>
690
+ <keyword>if</keyword>
691
+ <keyword>last</keyword>
692
+ <keyword>local</keyword>
693
+ <keyword>my</keyword>
694
+ <keyword>next</keyword>
695
+ <keyword>our</keyword>
696
+ <keyword>package</keyword>
697
+ <keyword>return</keyword>
698
+ <keyword>sub</keyword>
699
+ <keyword>state</keyword>
700
+ <keyword>unless</keyword>
701
+ <keyword>until</keyword>
702
+ <keyword>when</keyword>
703
+ <keyword>while</keyword>
704
+ <keyword>__FILE__</keyword>
705
+ <keyword>__LINE__</keyword>
706
+ <keyword>__PACKAGE__</keyword>
707
+ </context>
708
+
709
+ <context id="builtin" style-ref="builtin">
710
+ <!-- see `man perlfunc` -->
711
+ <keyword>abs</keyword>
712
+ <keyword>accept</keyword>
713
+ <keyword>alarm</keyword>
714
+ <keyword>atan2</keyword>
715
+ <keyword>bind</keyword>
716
+ <keyword>binmode</keyword>
717
+ <keyword>bless</keyword>
718
+ <keyword>caller</keyword>
719
+ <keyword>chdir</keyword>
720
+ <keyword>chmod</keyword>
721
+ <keyword>chomp</keyword>
722
+ <keyword>chop</keyword>
723
+ <keyword>chown</keyword>
724
+ <keyword>chr</keyword>
725
+ <keyword>chroot</keyword>
726
+ <keyword>closedir</keyword>
727
+ <keyword>close</keyword>
728
+ <keyword>connect</keyword>
729
+ <keyword>cos</keyword>
730
+ <keyword>crypt</keyword>
731
+ <keyword>dbmclose</keyword>
732
+ <keyword>dbmopen</keyword>
733
+ <keyword>defined</keyword>
734
+ <keyword>delete</keyword>
735
+ <keyword>die</keyword>
736
+ <keyword>dump</keyword>
737
+ <keyword>each</keyword>
738
+ <keyword>endgrent</keyword>
739
+ <keyword>endhostent</keyword>
740
+ <keyword>endnetent</keyword>
741
+ <keyword>endprotoent</keyword>
742
+ <keyword>endpwent</keyword>
743
+ <keyword>endservent</keyword>
744
+ <keyword>eof</keyword>
745
+ <keyword>eval</keyword>
746
+ <keyword>exec</keyword>
747
+ <keyword>exists</keyword>
748
+ <keyword>exit</keyword>
749
+ <keyword>exp</keyword>
750
+ <keyword>fcntl</keyword>
751
+ <keyword>fileno</keyword>
752
+ <keyword>flock</keyword>
753
+ <keyword>fork</keyword>
754
+ <keyword>format</keyword>
755
+ <keyword>formline</keyword>
756
+ <keyword>getc</keyword>
757
+ <keyword>getgrent</keyword>
758
+ <keyword>getgrgid</keyword>
759
+ <keyword>getgrnam</keyword>
760
+ <keyword>gethostbyaddr</keyword>
761
+ <keyword>gethostbyname</keyword>
762
+ <keyword>gethostent</keyword>
763
+ <keyword>getlogin</keyword>
764
+ <keyword>getnetbyaddr</keyword>
765
+ <keyword>getnetbyname</keyword>
766
+ <keyword>getnetent</keyword>
767
+ <keyword>getpeername</keyword>
768
+ <keyword>getpgrp</keyword>
769
+ <keyword>getppid</keyword>
770
+ <keyword>getpriority</keyword>
771
+ <keyword>getprotobyname</keyword>
772
+ <keyword>getprotobynumber</keyword>
773
+ <keyword>getprotoent</keyword>
774
+ <keyword>getpwent</keyword>
775
+ <keyword>getpwnam</keyword>
776
+ <keyword>getpwuid</keyword>
777
+ <keyword>getservbyname</keyword>
778
+ <keyword>getservbyport</keyword>
779
+ <keyword>getservent</keyword>
780
+ <keyword>getsockname</keyword>
781
+ <keyword>getsockopt</keyword>
782
+ <keyword>glob</keyword>
783
+ <keyword>gmtime</keyword>
784
+ <keyword>goto</keyword>
785
+ <keyword>grep</keyword>
786
+ <keyword>hex</keyword>
787
+ <keyword>import</keyword>
788
+ <keyword>index</keyword>
789
+ <keyword>int</keyword>
790
+ <keyword>ioctl</keyword>
791
+ <keyword>join</keyword>
792
+ <keyword>keys</keyword>
793
+ <keyword>kill</keyword>
794
+ <keyword>lcfirst</keyword>
795
+ <keyword>lc</keyword>
796
+ <keyword>length</keyword>
797
+ <keyword>link</keyword>
798
+ <keyword>listen</keyword>
799
+ <keyword>localtime</keyword>
800
+ <keyword>log</keyword>
801
+ <keyword>lstat</keyword>
802
+ <keyword>map</keyword>
803
+ <keyword>mkdir</keyword>
804
+ <keyword>msgctl</keyword>
805
+ <keyword>msgget</keyword>
806
+ <keyword>msgrcv</keyword>
807
+ <keyword>msgsnd</keyword>
808
+ <keyword>new</keyword>
809
+ <keyword>oct</keyword>
810
+ <keyword>opendir</keyword>
811
+ <keyword>open</keyword>
812
+ <keyword>ord</keyword>
813
+ <keyword>pack</keyword>
814
+ <keyword>pipe</keyword>
815
+ <keyword>pop</keyword>
816
+ <keyword>pos</keyword>
817
+ <keyword>printf</keyword>
818
+ <keyword>print</keyword>
819
+ <keyword>prototype</keyword>
820
+ <keyword>push</keyword>
821
+ <keyword>quotemeta</keyword>
822
+ <keyword>rand</keyword>
823
+ <keyword>readdir</keyword>
824
+ <keyword>read</keyword>
825
+ <keyword>readlink</keyword>
826
+ <keyword>recv</keyword>
827
+ <keyword>redo</keyword>
828
+ <keyword>ref</keyword>
829
+ <keyword>rename</keyword>
830
+ <keyword>reset</keyword>
831
+ <keyword>reverse</keyword>
832
+ <keyword>rewinddir</keyword>
833
+ <keyword>rindex</keyword>
834
+ <keyword>rmdir</keyword>
835
+ <keyword>say</keyword>
836
+ <keyword>scalar</keyword>
837
+ <keyword>seekdir</keyword>
838
+ <keyword>seek</keyword>
839
+ <keyword>select</keyword>
840
+ <keyword>semctl</keyword>
841
+ <keyword>semget</keyword>
842
+ <keyword>semop</keyword>
843
+ <keyword>send</keyword>
844
+ <keyword>setgrent</keyword>
845
+ <keyword>sethostent</keyword>
846
+ <keyword>setnetent</keyword>
847
+ <keyword>setpgrp</keyword>
848
+ <keyword>setpriority</keyword>
849
+ <keyword>setprotoent</keyword>
850
+ <keyword>setpwent</keyword>
851
+ <keyword>setservent</keyword>
852
+ <keyword>setsockopt</keyword>
853
+ <keyword>shift</keyword>
854
+ <keyword>shmctl</keyword>
855
+ <keyword>shmget</keyword>
856
+ <keyword>shmread</keyword>
857
+ <keyword>shmwrite</keyword>
858
+ <keyword>shutdown</keyword>
859
+ <keyword>sin</keyword>
860
+ <keyword>sleep</keyword>
861
+ <keyword>socket</keyword>
862
+ <keyword>socketpair</keyword>
863
+ <keyword>sort</keyword>
864
+ <keyword>splice</keyword>
865
+ <keyword>split</keyword>
866
+ <keyword>sprintf</keyword>
867
+ <keyword>sqrt</keyword>
868
+ <keyword>srand</keyword>
869
+ <keyword>stat</keyword>
870
+ <keyword>study</keyword>
871
+ <keyword>substr</keyword>
872
+ <keyword>symlink</keyword>
873
+ <keyword>syscall</keyword>
874
+ <keyword>sysread</keyword>
875
+ <keyword>sysseek</keyword>
876
+ <keyword>system</keyword>
877
+ <keyword>syswrite</keyword>
878
+ <keyword>telldir</keyword>
879
+ <keyword>tell</keyword>
880
+ <keyword>tied</keyword>
881
+ <keyword>tie</keyword>
882
+ <keyword>time</keyword>
883
+ <keyword>times</keyword>
884
+ <keyword>truncate</keyword>
885
+ <keyword>ucfirst</keyword>
886
+ <keyword>uc</keyword>
887
+ <keyword>umask</keyword>
888
+ <keyword>undef</keyword>
889
+ <keyword>unlink</keyword>
890
+ <keyword>unpack</keyword>
891
+ <keyword>unshift</keyword>
892
+ <keyword>untie</keyword>
893
+ <keyword>utime</keyword>
894
+ <keyword>values</keyword>
895
+ <keyword>vec</keyword>
896
+ <keyword>wait</keyword>
897
+ <keyword>waitpid</keyword>
898
+ <keyword>wantarray</keyword>
899
+ <keyword>warn</keyword>
900
+ <keyword>write</keyword>
901
+ </context>
902
+
903
+ <!-- #### COMMENTS / POD / DATA ####################################### -->
904
+
905
+ <!-- usual comments for perl are def:shell-style-comment -->
906
+ <!-- comment that must have a whitespace before (used in s{}{}, because
907
+ perl bugs if there is no space between '}' and '#') -->
908
+ <context id="asserted-comment" style-ref="comment" end-at-line-end="true" class="comment" class-disabled="no-spell-check">
909
+ <start>(?&lt;![^\s])#</start>
910
+ <include><context ref="def:in-comment"/></include>
911
+ </context>
912
+
913
+ <context id="line-directive" style-ref="line-directive">
914
+ <!-- see `man perlsyn` line 676 -->
915
+ <match extended="true">
916
+ ^\# \s*
917
+ (line \s+ (\d+)) \s*
918
+ (?:(\s"([^"]+)"|[^"]+))? \s*
919
+ $
920
+ </match>
921
+ <include>
922
+ <context sub-pattern="3" style-ref="string"/>
923
+ </include>
924
+ </context>
925
+
926
+ <context id="in-pod">
927
+ <include>
928
+ <context ref="def:in-comment"/>
929
+ <context ref="pod-escape"/>
930
+ </include>
931
+ </context>
932
+
933
+ <context id="pod-escape">
934
+ <include>
935
+ <context>
936
+ <start>[IBCLEFSXZ]&lt;(?!&lt;)</start><end>(?&lt;!&gt;)&gt;</end>
937
+ <include>
938
+ <context sub-pattern="0" where="start" style-ref="pod-escape"/>
939
+ <context sub-pattern="0" where="end" style-ref="pod-escape"/>
940
+ <context ref="in-pod"/>
941
+ </include>
942
+ </context>
943
+ <!-- doubled angle brackets ("<<" and ">>") may be used if and only if
944
+ there is whitespace right after the opening delimiter and
945
+ whitespace right before the closing delimiter! (`man perlpod`) -->
946
+ <context>
947
+ <start>[IBCLEFSXZ]&lt;{2}\s</start><end>\s&gt;{2}</end>
948
+ <include>
949
+ <context sub-pattern="0" where="start" style-ref="pod-escape"/>
950
+ <context sub-pattern="0" where="end" style-ref="pod-escape"/>
951
+ <context ref="in-pod"/>
952
+ </include>
953
+ </context>
954
+ <context>
955
+ <start>[IBCLEFSXZ]&lt;{3}\s</start><end>\s&gt;{3}</end>
956
+ <include>
957
+ <context sub-pattern="0" where="start" style-ref="pod-escape"/>
958
+ <context sub-pattern="0" where="end" style-ref="pod-escape"/>
959
+ <context ref="in-pod"/>
960
+ </include>
961
+ </context>
962
+ <context>
963
+ <start>[IBCLEFSXZ]&lt;{4}\s</start><end>\s&gt;{4}</end>
964
+ <include>
965
+ <context sub-pattern="0" where="start" style-ref="pod-escape"/>
966
+ <context sub-pattern="0" where="end" style-ref="pod-escape"/>
967
+ <context ref="in-pod"/>
968
+ </include>
969
+ </context>
970
+ <context>
971
+ <start>[IBCLEFSXZ]&lt;{5}\s</start><end>\s&gt;{5}</end>
972
+ <include>
973
+ <context sub-pattern="0" where="start" style-ref="pod-escape"/>
974
+ <context sub-pattern="0" where="end" style-ref="pod-escape"/>
975
+ <context ref="in-pod"/>
976
+ </include>
977
+ </context>
978
+ <context>
979
+ <start>[IBCLEFSXZ]&lt;{6}\s</start><end>\s&gt;{6}</end>
980
+ <include>
981
+ <context sub-pattern="0" where="start" style-ref="pod-escape"/>
982
+ <context sub-pattern="0" where="end" style-ref="pod-escape"/>
983
+ <context ref="in-pod"/>
984
+ </include>
985
+ </context>
986
+ <!-- one should be insane to put there more than 6 brackets -->
987
+ </include>
988
+ </context>
989
+
990
+ <context id="pod-heading" end-at-line-end="true" style-inside="true" style-ref="pod-heading">
991
+ <start>^=(head[1-4])</start>
992
+ <include>
993
+ <context sub-pattern="1" where="start" style-ref="pod-keyword"/>
994
+ <context ref="in-pod"/>
995
+ </include>
996
+ </context>
997
+
998
+ <context id="pod" style-ref="pod">
999
+ <start>^(?=(=[a-z]))</start>
1000
+ <end>^=(cut)$</end>
1001
+ <include>
1002
+ <context sub-pattern="1" where="end" style-ref="pod-keyword"/>
1003
+ <context ref="pod-heading"/>
1004
+ <context>
1005
+ <match>^=(pod|encoding|over|item|back)</match>
1006
+ <include><context sub-pattern="1" style-ref="pod-keyword"/></include>
1007
+ </context>
1008
+ <context>
1009
+ <start>^=(begin)\s+(.*)$</start>
1010
+ <end>^=(end)\s+\%{1@start}$</end>
1011
+ <include>
1012
+ <context sub-pattern="1" where="start" style-ref="pod-keyword"/>
1013
+ <context sub-pattern="1" where="end" style-ref="pod-keyword"/>
1014
+ <context ref="pod"/>
1015
+ </include>
1016
+ </context>
1017
+ <context ref="in-pod"/>
1018
+ </include>
1019
+ </context>
1020
+
1021
+ <context id="data" style-ref="comment">
1022
+ <start>__(DATA|END)__</start>
1023
+ <include>
1024
+ <context sub-pattern="0" where="start" style-ref="keyword"/>
1025
+ </include>
1026
+ </context>
1027
+ </definitions>
1028
+ </language>