pygments.rb 0.6.3 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (606) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +11 -0
  3. data/README.md +6 -6
  4. data/Rakefile +2 -1
  5. data/cache-lexers.rb +1 -1
  6. data/circle.yml +7 -0
  7. data/lib/pygments/lexer.rb +3 -3
  8. data/lib/pygments/popen.rb +67 -30
  9. data/lib/pygments/version.rb +1 -1
  10. data/pygments.rb.gemspec +2 -1
  11. data/test/test_pygments.rb +16 -16
  12. data/vendor/pygments-main/AUTHORS +54 -8
  13. data/vendor/pygments-main/CHANGES +247 -25
  14. data/vendor/pygments-main/LICENSE +1 -1
  15. data/vendor/pygments-main/Makefile +15 -6
  16. data/vendor/pygments-main/README.rst +39 -0
  17. data/vendor/pygments-main/REVISION +1 -1
  18. data/vendor/pygments-main/TODO +0 -3
  19. data/vendor/pygments-main/doc/_themes/pygments14/layout.html +1 -1
  20. data/vendor/pygments-main/doc/_themes/pygments14/static/pygments14.css_t +1 -1
  21. data/vendor/pygments-main/doc/conf.py +3 -11
  22. data/vendor/pygments-main/doc/docs/api.rst +15 -0
  23. data/vendor/pygments-main/doc/docs/cmdline.rst +6 -2
  24. data/vendor/pygments-main/doc/docs/filterdevelopment.rst +4 -3
  25. data/vendor/pygments-main/doc/docs/integrate.rst +11 -15
  26. data/vendor/pygments-main/doc/docs/java.rst +7 -7
  27. data/vendor/pygments-main/doc/docs/lexerdevelopment.rst +258 -171
  28. data/vendor/pygments-main/doc/docs/lexers.rst +2 -2
  29. data/vendor/pygments-main/doc/docs/styles.rst +58 -0
  30. data/vendor/pygments-main/doc/docs/tokens.rst +22 -2
  31. data/vendor/pygments-main/doc/docs/unicode.rst +15 -7
  32. data/vendor/pygments-main/doc/faq.rst +17 -21
  33. data/vendor/pygments-main/doc/index.rst +12 -11
  34. data/vendor/pygments-main/doc/languages.rst +10 -7
  35. data/vendor/pygments-main/external/autopygmentize +9 -6
  36. data/vendor/pygments-main/external/lasso-builtins-generator-9.lasso +70 -52
  37. data/vendor/pygments-main/external/markdown-processor.py +1 -1
  38. data/vendor/pygments-main/external/moin-parser.py +1 -1
  39. data/vendor/pygments-main/external/rst-directive.py +1 -1
  40. data/vendor/pygments-main/pygmentize +2 -1
  41. data/vendor/pygments-main/pygments/__init__.py +14 -15
  42. data/vendor/pygments-main/pygments/cmdline.py +188 -113
  43. data/vendor/pygments-main/pygments/console.py +13 -13
  44. data/vendor/pygments-main/pygments/filter.py +7 -7
  45. data/vendor/pygments-main/pygments/filters/__init__.py +24 -32
  46. data/vendor/pygments-main/pygments/formatter.py +5 -5
  47. data/vendor/pygments-main/pygments/formatters/__init__.py +92 -44
  48. data/vendor/pygments-main/pygments/formatters/_mapping.py +51 -69
  49. data/vendor/pygments-main/pygments/formatters/bbcode.py +1 -1
  50. data/vendor/pygments-main/pygments/formatters/html.py +63 -51
  51. data/vendor/pygments-main/pygments/formatters/img.py +25 -22
  52. data/vendor/pygments-main/pygments/formatters/irc.py +182 -0
  53. data/vendor/pygments-main/pygments/formatters/latex.py +34 -22
  54. data/vendor/pygments-main/pygments/formatters/other.py +5 -7
  55. data/vendor/pygments-main/pygments/formatters/rtf.py +28 -31
  56. data/vendor/pygments-main/pygments/formatters/svg.py +1 -2
  57. data/vendor/pygments-main/pygments/formatters/terminal.py +29 -45
  58. data/vendor/pygments-main/pygments/formatters/terminal256.py +118 -31
  59. data/vendor/pygments-main/pygments/lexer.py +120 -34
  60. data/vendor/pygments-main/pygments/lexers/__init__.py +85 -53
  61. data/vendor/pygments-main/pygments/lexers/{_asybuiltins.py → _asy_builtins.py} +7 -7
  62. data/vendor/pygments-main/pygments/lexers/{_clbuiltins.py → _cl_builtins.py} +17 -17
  63. data/vendor/pygments-main/pygments/lexers/_cocoa_builtins.py +72 -0
  64. data/vendor/pygments-main/pygments/lexers/_csound_builtins.py +1346 -0
  65. data/vendor/pygments-main/pygments/lexers/{_lassobuiltins.py → _lasso_builtins.py} +4699 -4561
  66. data/vendor/pygments-main/pygments/lexers/{_luabuiltins.py → _lua_builtins.py} +91 -51
  67. data/vendor/pygments-main/pygments/lexers/_mapping.py +342 -242
  68. data/vendor/pygments-main/pygments/lexers/_mql_builtins.py +1172 -0
  69. data/vendor/pygments-main/pygments/lexers/_openedge_builtins.py +2547 -0
  70. data/vendor/pygments-main/pygments/lexers/{_phpbuiltins.py → _php_builtins.py} +350 -353
  71. data/vendor/pygments-main/pygments/lexers/_postgres_builtins.py +600 -212
  72. data/vendor/pygments-main/pygments/lexers/_scilab_builtins.py +3084 -30
  73. data/vendor/pygments-main/pygments/lexers/_sourcemod_builtins.py +1163 -0
  74. data/vendor/pygments-main/pygments/lexers/_stan_builtins.py +91 -13
  75. data/vendor/pygments-main/pygments/lexers/_stata_builtins.py +419 -0
  76. data/vendor/pygments-main/pygments/lexers/_tsql_builtins.py +1004 -0
  77. data/vendor/pygments-main/pygments/lexers/_vim_builtins.py +1939 -0
  78. data/vendor/pygments-main/pygments/lexers/actionscript.py +240 -0
  79. data/vendor/pygments-main/pygments/lexers/agile.py +14 -2542
  80. data/vendor/pygments-main/pygments/lexers/algebra.py +221 -0
  81. data/vendor/pygments-main/pygments/lexers/ambient.py +76 -0
  82. data/vendor/pygments-main/pygments/lexers/ampl.py +87 -0
  83. data/vendor/pygments-main/pygments/lexers/apl.py +101 -0
  84. data/vendor/pygments-main/pygments/lexers/archetype.py +318 -0
  85. data/vendor/pygments-main/pygments/lexers/asm.py +276 -81
  86. data/vendor/pygments-main/pygments/lexers/automation.py +374 -0
  87. data/vendor/pygments-main/pygments/lexers/basic.py +500 -0
  88. data/vendor/pygments-main/pygments/lexers/bibtex.py +156 -0
  89. data/vendor/pygments-main/pygments/lexers/business.py +594 -0
  90. data/vendor/pygments-main/pygments/lexers/c_cpp.py +252 -0
  91. data/vendor/pygments-main/pygments/lexers/c_like.py +541 -0
  92. data/vendor/pygments-main/pygments/lexers/capnproto.py +79 -0
  93. data/vendor/pygments-main/pygments/lexers/chapel.py +101 -0
  94. data/vendor/pygments-main/pygments/lexers/clean.py +288 -0
  95. data/vendor/pygments-main/pygments/lexers/compiled.py +24 -5182
  96. data/vendor/pygments-main/pygments/lexers/configs.py +833 -0
  97. data/vendor/pygments-main/pygments/lexers/console.py +114 -0
  98. data/vendor/pygments-main/pygments/lexers/crystal.py +384 -0
  99. data/vendor/pygments-main/pygments/lexers/csound.py +366 -0
  100. data/vendor/pygments-main/pygments/lexers/css.py +689 -0
  101. data/vendor/pygments-main/pygments/lexers/d.py +251 -0
  102. data/vendor/pygments-main/pygments/lexers/dalvik.py +6 -6
  103. data/vendor/pygments-main/pygments/lexers/data.py +555 -0
  104. data/vendor/pygments-main/pygments/lexers/diff.py +165 -0
  105. data/vendor/pygments-main/pygments/lexers/dotnet.py +96 -88
  106. data/vendor/pygments-main/pygments/lexers/dsls.py +878 -0
  107. data/vendor/pygments-main/pygments/lexers/dylan.py +289 -0
  108. data/vendor/pygments-main/pygments/lexers/ecl.py +125 -0
  109. data/vendor/pygments-main/pygments/lexers/eiffel.py +65 -0
  110. data/vendor/pygments-main/pygments/lexers/elm.py +121 -0
  111. data/vendor/pygments-main/pygments/lexers/erlang.py +533 -0
  112. data/vendor/pygments-main/pygments/lexers/esoteric.py +275 -0
  113. data/vendor/pygments-main/pygments/lexers/ezhil.py +68 -0
  114. data/vendor/pygments-main/pygments/lexers/factor.py +344 -0
  115. data/vendor/pygments-main/pygments/lexers/fantom.py +250 -0
  116. data/vendor/pygments-main/pygments/lexers/felix.py +273 -0
  117. data/vendor/pygments-main/pygments/lexers/forth.py +177 -0
  118. data/vendor/pygments-main/pygments/lexers/fortran.py +205 -0
  119. data/vendor/pygments-main/pygments/lexers/foxpro.py +1 -1
  120. data/vendor/pygments-main/pygments/lexers/functional.py +11 -3661
  121. data/vendor/pygments-main/pygments/lexers/go.py +101 -0
  122. data/vendor/pygments-main/pygments/lexers/grammar_notation.py +213 -0
  123. data/vendor/pygments-main/pygments/lexers/graph.py +7 -8
  124. data/vendor/pygments-main/pygments/lexers/graphics.py +553 -0
  125. data/vendor/pygments-main/pygments/lexers/haskell.py +840 -0
  126. data/vendor/pygments-main/pygments/lexers/haxe.py +936 -0
  127. data/vendor/pygments-main/pygments/lexers/hdl.py +172 -145
  128. data/vendor/pygments-main/pygments/lexers/hexdump.py +97 -0
  129. data/vendor/pygments-main/pygments/lexers/html.py +602 -0
  130. data/vendor/pygments-main/pygments/lexers/idl.py +270 -0
  131. data/vendor/pygments-main/pygments/lexers/igor.py +288 -0
  132. data/vendor/pygments-main/pygments/lexers/inferno.py +3 -3
  133. data/vendor/pygments-main/pygments/lexers/installers.py +322 -0
  134. data/vendor/pygments-main/pygments/lexers/int_fiction.py +1343 -0
  135. data/vendor/pygments-main/pygments/lexers/iolang.py +63 -0
  136. data/vendor/pygments-main/pygments/lexers/j.py +146 -0
  137. data/vendor/pygments-main/pygments/lexers/javascript.py +1506 -0
  138. data/vendor/pygments-main/pygments/lexers/julia.py +333 -0
  139. data/vendor/pygments-main/pygments/lexers/jvm.py +232 -186
  140. data/vendor/pygments-main/pygments/lexers/lisp.py +2621 -0
  141. data/vendor/pygments-main/pygments/lexers/make.py +202 -0
  142. data/vendor/pygments-main/pygments/lexers/markup.py +595 -0
  143. data/vendor/pygments-main/pygments/lexers/math.py +11 -2276
  144. data/vendor/pygments-main/pygments/lexers/matlab.py +663 -0
  145. data/vendor/pygments-main/pygments/lexers/ml.py +769 -0
  146. data/vendor/pygments-main/pygments/lexers/modeling.py +358 -0
  147. data/vendor/pygments-main/pygments/lexers/modula2.py +1561 -0
  148. data/vendor/pygments-main/pygments/lexers/monte.py +203 -0
  149. data/vendor/pygments-main/pygments/lexers/ncl.py +1053 -0
  150. data/vendor/pygments-main/pygments/lexers/nimrod.py +159 -0
  151. data/vendor/pygments-main/pygments/lexers/nit.py +64 -0
  152. data/vendor/pygments-main/pygments/lexers/nix.py +136 -0
  153. data/vendor/pygments-main/pygments/lexers/oberon.py +105 -0
  154. data/vendor/pygments-main/pygments/lexers/objective.py +504 -0
  155. data/vendor/pygments-main/pygments/lexers/ooc.py +85 -0
  156. data/vendor/pygments-main/pygments/lexers/other.py +30 -4481
  157. data/vendor/pygments-main/pygments/lexers/parasail.py +79 -0
  158. data/vendor/pygments-main/pygments/lexers/parsers.py +171 -114
  159. data/vendor/pygments-main/pygments/lexers/pascal.py +644 -0
  160. data/vendor/pygments-main/pygments/lexers/pawn.py +199 -0
  161. data/vendor/pygments-main/pygments/lexers/perl.py +616 -0
  162. data/vendor/pygments-main/pygments/lexers/php.py +267 -0
  163. data/vendor/pygments-main/pygments/lexers/praat.py +294 -0
  164. data/vendor/pygments-main/pygments/lexers/prolog.py +306 -0
  165. data/vendor/pygments-main/pygments/lexers/python.py +938 -0
  166. data/vendor/pygments-main/pygments/lexers/qvt.py +152 -0
  167. data/vendor/pygments-main/pygments/lexers/r.py +453 -0
  168. data/vendor/pygments-main/pygments/lexers/rdf.py +195 -24
  169. data/vendor/pygments-main/pygments/lexers/rebol.py +431 -0
  170. data/vendor/pygments-main/pygments/lexers/resource.py +85 -0
  171. data/vendor/pygments-main/pygments/lexers/rnc.py +67 -0
  172. data/vendor/pygments-main/pygments/lexers/roboconf.py +82 -0
  173. data/vendor/pygments-main/pygments/lexers/{_robotframeworklexer.py → robotframework.py} +20 -18
  174. data/vendor/pygments-main/pygments/lexers/ruby.py +519 -0
  175. data/vendor/pygments-main/pygments/lexers/rust.py +209 -0
  176. data/vendor/pygments-main/pygments/lexers/sas.py +228 -0
  177. data/vendor/pygments-main/pygments/lexers/scripting.py +1222 -0
  178. data/vendor/pygments-main/pygments/lexers/shell.py +478 -115
  179. data/vendor/pygments-main/pygments/lexers/smalltalk.py +195 -0
  180. data/vendor/pygments-main/pygments/lexers/smv.py +75 -0
  181. data/vendor/pygments-main/pygments/lexers/snobol.py +83 -0
  182. data/vendor/pygments-main/pygments/lexers/special.py +6 -2
  183. data/vendor/pygments-main/pygments/lexers/sql.py +209 -120
  184. data/vendor/pygments-main/pygments/lexers/stata.py +106 -0
  185. data/vendor/pygments-main/pygments/lexers/supercollider.py +90 -0
  186. data/vendor/pygments-main/pygments/lexers/tcl.py +145 -0
  187. data/vendor/pygments-main/pygments/lexers/templates.py +282 -90
  188. data/vendor/pygments-main/pygments/lexers/testing.py +207 -0
  189. data/vendor/pygments-main/pygments/lexers/text.py +15 -2045
  190. data/vendor/pygments-main/pygments/lexers/textedit.py +169 -0
  191. data/vendor/pygments-main/pygments/lexers/textfmts.py +297 -0
  192. data/vendor/pygments-main/pygments/lexers/theorem.py +458 -0
  193. data/vendor/pygments-main/pygments/lexers/trafficscript.py +54 -0
  194. data/vendor/pygments-main/pygments/lexers/typoscript.py +225 -0
  195. data/vendor/pygments-main/pygments/lexers/urbi.py +133 -0
  196. data/vendor/pygments-main/pygments/lexers/varnish.py +190 -0
  197. data/vendor/pygments-main/pygments/lexers/verification.py +111 -0
  198. data/vendor/pygments-main/pygments/lexers/web.py +13 -4499
  199. data/vendor/pygments-main/pygments/lexers/webmisc.py +979 -0
  200. data/vendor/pygments-main/pygments/lexers/whiley.py +117 -0
  201. data/vendor/pygments-main/pygments/lexers/x10.py +69 -0
  202. data/vendor/pygments-main/pygments/modeline.py +5 -2
  203. data/vendor/pygments-main/pygments/plugin.py +1 -1
  204. data/vendor/pygments-main/pygments/regexopt.py +92 -0
  205. data/vendor/pygments-main/pygments/scanner.py +3 -2
  206. data/vendor/pygments-main/pygments/sphinxext.py +11 -6
  207. data/vendor/pygments-main/pygments/style.py +41 -4
  208. data/vendor/pygments-main/pygments/styles/__init__.py +5 -1
  209. data/vendor/pygments-main/pygments/styles/algol.py +63 -0
  210. data/vendor/pygments-main/pygments/styles/algol_nu.py +63 -0
  211. data/vendor/pygments-main/pygments/styles/arduino.py +98 -0
  212. data/vendor/pygments-main/pygments/styles/autumn.py +1 -1
  213. data/vendor/pygments-main/pygments/styles/borland.py +1 -1
  214. data/vendor/pygments-main/pygments/styles/bw.py +1 -1
  215. data/vendor/pygments-main/pygments/styles/colorful.py +1 -1
  216. data/vendor/pygments-main/pygments/styles/default.py +1 -1
  217. data/vendor/pygments-main/pygments/styles/emacs.py +1 -1
  218. data/vendor/pygments-main/pygments/styles/friendly.py +1 -1
  219. data/vendor/pygments-main/pygments/styles/fruity.py +1 -1
  220. data/vendor/pygments-main/pygments/styles/igor.py +1 -1
  221. data/vendor/pygments-main/pygments/styles/lovelace.py +97 -0
  222. data/vendor/pygments-main/pygments/styles/manni.py +1 -1
  223. data/vendor/pygments-main/pygments/styles/monokai.py +1 -1
  224. data/vendor/pygments-main/pygments/styles/murphy.py +1 -1
  225. data/vendor/pygments-main/pygments/styles/native.py +1 -1
  226. data/vendor/pygments-main/pygments/styles/paraiso_dark.py +1 -1
  227. data/vendor/pygments-main/pygments/styles/paraiso_light.py +1 -1
  228. data/vendor/pygments-main/pygments/styles/pastie.py +1 -1
  229. data/vendor/pygments-main/pygments/styles/perldoc.py +2 -2
  230. data/vendor/pygments-main/pygments/styles/rrt.py +1 -1
  231. data/vendor/pygments-main/pygments/styles/sas.py +41 -0
  232. data/vendor/pygments-main/pygments/styles/stata.py +37 -0
  233. data/vendor/pygments-main/pygments/styles/tango.py +1 -1
  234. data/vendor/pygments-main/pygments/styles/trac.py +1 -1
  235. data/vendor/pygments-main/pygments/styles/vim.py +1 -1
  236. data/vendor/pygments-main/pygments/styles/vs.py +1 -1
  237. data/vendor/pygments-main/pygments/styles/xcode.py +1 -1
  238. data/vendor/pygments-main/pygments/token.py +31 -16
  239. data/vendor/pygments-main/pygments/unistring.py +141 -65
  240. data/vendor/pygments-main/pygments/util.py +129 -33
  241. data/vendor/pygments-main/requirements.txt +5 -0
  242. data/vendor/pygments-main/scripts/check_sources.py +25 -40
  243. data/vendor/pygments-main/scripts/debug_lexer.py +246 -0
  244. data/vendor/pygments-main/scripts/find_error.py +1 -0
  245. data/vendor/pygments-main/scripts/get_vimkw.py +35 -4
  246. data/vendor/pygments-main/setup.cfg +3 -0
  247. data/vendor/pygments-main/setup.py +17 -30
  248. data/vendor/pygments-main/tox.ini +7 -0
  249. metadata +159 -387
  250. data/vendor/pygments-main/ez_setup.py +0 -382
  251. data/vendor/pygments-main/pygments/lexers/_cocoabuiltins.py +0 -73
  252. data/vendor/pygments-main/pygments/lexers/_openedgebuiltins.py +0 -562
  253. data/vendor/pygments-main/pygments/lexers/_sourcemodbuiltins.py +0 -1077
  254. data/vendor/pygments-main/pygments/lexers/_vimbuiltins.py +0 -13
  255. data/vendor/pygments-main/pygments/lexers/qbasic.py +0 -157
  256. data/vendor/pygments-main/scripts/find_codetags.py +0 -213
  257. data/vendor/pygments-main/scripts/find_error.py +0 -173
  258. data/vendor/pygments-main/tests/dtds/HTML4-f.dtd +0 -37
  259. data/vendor/pygments-main/tests/dtds/HTML4-s.dtd +0 -869
  260. data/vendor/pygments-main/tests/dtds/HTML4.dcl +0 -88
  261. data/vendor/pygments-main/tests/dtds/HTML4.dtd +0 -1092
  262. data/vendor/pygments-main/tests/dtds/HTML4.soc +0 -9
  263. data/vendor/pygments-main/tests/dtds/HTMLlat1.ent +0 -195
  264. data/vendor/pygments-main/tests/dtds/HTMLspec.ent +0 -77
  265. data/vendor/pygments-main/tests/dtds/HTMLsym.ent +0 -241
  266. data/vendor/pygments-main/tests/examplefiles/99_bottles_of_beer.chpl +0 -118
  267. data/vendor/pygments-main/tests/examplefiles/AcidStateAdvanced.hs +0 -209
  268. data/vendor/pygments-main/tests/examplefiles/AlternatingGroup.mu +0 -102
  269. data/vendor/pygments-main/tests/examplefiles/BOM.js +0 -1
  270. data/vendor/pygments-main/tests/examplefiles/CPDictionary.j +0 -611
  271. data/vendor/pygments-main/tests/examplefiles/Config.in.cache +0 -1973
  272. data/vendor/pygments-main/tests/examplefiles/Constants.mo +0 -158
  273. data/vendor/pygments-main/tests/examplefiles/DancingSudoku.lhs +0 -411
  274. data/vendor/pygments-main/tests/examplefiles/Deflate.fs +0 -578
  275. data/vendor/pygments-main/tests/examplefiles/Error.pmod +0 -38
  276. data/vendor/pygments-main/tests/examplefiles/Errors.scala +0 -18
  277. data/vendor/pygments-main/tests/examplefiles/FakeFile.pike +0 -360
  278. data/vendor/pygments-main/tests/examplefiles/Get-CommandDefinitionHtml.ps1 +0 -66
  279. data/vendor/pygments-main/tests/examplefiles/IPDispatchC.nc +0 -104
  280. data/vendor/pygments-main/tests/examplefiles/IPDispatchP.nc +0 -671
  281. data/vendor/pygments-main/tests/examplefiles/Intro.java +0 -1660
  282. data/vendor/pygments-main/tests/examplefiles/Makefile +0 -1131
  283. data/vendor/pygments-main/tests/examplefiles/Object.st +0 -4394
  284. data/vendor/pygments-main/tests/examplefiles/OrderedMap.hx +0 -584
  285. data/vendor/pygments-main/tests/examplefiles/RoleQ.pm6 +0 -23
  286. data/vendor/pygments-main/tests/examplefiles/SmallCheck.hs +0 -378
  287. data/vendor/pygments-main/tests/examplefiles/Sorting.mod +0 -470
  288. data/vendor/pygments-main/tests/examplefiles/Sudoku.lhs +0 -382
  289. data/vendor/pygments-main/tests/examplefiles/addressbook.proto +0 -30
  290. data/vendor/pygments-main/tests/examplefiles/antlr_ANTLRv3.g +0 -608
  291. data/vendor/pygments-main/tests/examplefiles/antlr_throws +0 -1
  292. data/vendor/pygments-main/tests/examplefiles/apache2.conf +0 -393
  293. data/vendor/pygments-main/tests/examplefiles/as3_test.as +0 -143
  294. data/vendor/pygments-main/tests/examplefiles/as3_test2.as +0 -46
  295. data/vendor/pygments-main/tests/examplefiles/as3_test3.as +0 -3
  296. data/vendor/pygments-main/tests/examplefiles/aspx-cs_example +0 -27
  297. data/vendor/pygments-main/tests/examplefiles/autoit_submit.au3 +0 -25
  298. data/vendor/pygments-main/tests/examplefiles/badcase.java +0 -2
  299. data/vendor/pygments-main/tests/examplefiles/batchfile.bat +0 -49
  300. data/vendor/pygments-main/tests/examplefiles/bigtest.nsi +0 -308
  301. data/vendor/pygments-main/tests/examplefiles/boot-9.scm +0 -1557
  302. data/vendor/pygments-main/tests/examplefiles/ca65_example +0 -284
  303. data/vendor/pygments-main/tests/examplefiles/cbmbas_example +0 -9
  304. data/vendor/pygments-main/tests/examplefiles/cells.ps +0 -515
  305. data/vendor/pygments-main/tests/examplefiles/ceval.c +0 -2604
  306. data/vendor/pygments-main/tests/examplefiles/cheetah_example.html +0 -13
  307. data/vendor/pygments-main/tests/examplefiles/classes.dylan +0 -125
  308. data/vendor/pygments-main/tests/examplefiles/clojure-weird-keywords.clj +0 -5
  309. data/vendor/pygments-main/tests/examplefiles/condensed_ruby.rb +0 -10
  310. data/vendor/pygments-main/tests/examplefiles/coq_RelationClasses +0 -447
  311. data/vendor/pygments-main/tests/examplefiles/core.cljs +0 -52
  312. data/vendor/pygments-main/tests/examplefiles/database.pytb +0 -20
  313. data/vendor/pygments-main/tests/examplefiles/de.MoinMoin.po +0 -2461
  314. data/vendor/pygments-main/tests/examplefiles/demo.ahk +0 -181
  315. data/vendor/pygments-main/tests/examplefiles/demo.cfm +0 -50
  316. data/vendor/pygments-main/tests/examplefiles/demo.hbs +0 -12
  317. data/vendor/pygments-main/tests/examplefiles/django_sample.html+django +0 -68
  318. data/vendor/pygments-main/tests/examplefiles/dwarf.cw +0 -17
  319. data/vendor/pygments-main/tests/examplefiles/ember.handlebars +0 -33
  320. data/vendor/pygments-main/tests/examplefiles/erl_session +0 -10
  321. data/vendor/pygments-main/tests/examplefiles/escape_semicolon.clj +0 -1
  322. data/vendor/pygments-main/tests/examplefiles/evil_regex.js +0 -48
  323. data/vendor/pygments-main/tests/examplefiles/example.Rd +0 -78
  324. data/vendor/pygments-main/tests/examplefiles/example.als +0 -217
  325. data/vendor/pygments-main/tests/examplefiles/example.bug +0 -54
  326. data/vendor/pygments-main/tests/examplefiles/example.c +0 -2080
  327. data/vendor/pygments-main/tests/examplefiles/example.ceylon +0 -52
  328. data/vendor/pygments-main/tests/examplefiles/example.chai +0 -6
  329. data/vendor/pygments-main/tests/examplefiles/example.clay +0 -33
  330. data/vendor/pygments-main/tests/examplefiles/example.cls +0 -15
  331. data/vendor/pygments-main/tests/examplefiles/example.cob +0 -3556
  332. data/vendor/pygments-main/tests/examplefiles/example.coffee +0 -27
  333. data/vendor/pygments-main/tests/examplefiles/example.cpp +0 -2363
  334. data/vendor/pygments-main/tests/examplefiles/example.e +0 -124
  335. data/vendor/pygments-main/tests/examplefiles/example.f90 +0 -8
  336. data/vendor/pygments-main/tests/examplefiles/example.feature +0 -16
  337. data/vendor/pygments-main/tests/examplefiles/example.gd +0 -23
  338. data/vendor/pygments-main/tests/examplefiles/example.gi +0 -64
  339. data/vendor/pygments-main/tests/examplefiles/example.groovy +0 -2
  340. data/vendor/pygments-main/tests/examplefiles/example.gs +0 -106
  341. data/vendor/pygments-main/tests/examplefiles/example.gst +0 -7
  342. data/vendor/pygments-main/tests/examplefiles/example.hs +0 -27
  343. data/vendor/pygments-main/tests/examplefiles/example.hx +0 -185
  344. data/vendor/pygments-main/tests/examplefiles/example.i6t +0 -32
  345. data/vendor/pygments-main/tests/examplefiles/example.i7x +0 -45
  346. data/vendor/pygments-main/tests/examplefiles/example.inf +0 -374
  347. data/vendor/pygments-main/tests/examplefiles/example.j +0 -564
  348. data/vendor/pygments-main/tests/examplefiles/example.jag +0 -48
  349. data/vendor/pygments-main/tests/examplefiles/example.java +0 -16
  350. data/vendor/pygments-main/tests/examplefiles/example.kal +0 -75
  351. data/vendor/pygments-main/tests/examplefiles/example.kt +0 -47
  352. data/vendor/pygments-main/tests/examplefiles/example.lagda +0 -19
  353. data/vendor/pygments-main/tests/examplefiles/example.liquid +0 -42
  354. data/vendor/pygments-main/tests/examplefiles/example.lua +0 -250
  355. data/vendor/pygments-main/tests/examplefiles/example.ma +0 -8
  356. data/vendor/pygments-main/tests/examplefiles/example.monkey +0 -152
  357. data/vendor/pygments-main/tests/examplefiles/example.moo +0 -26
  358. data/vendor/pygments-main/tests/examplefiles/example.moon +0 -629
  359. data/vendor/pygments-main/tests/examplefiles/example.mq4 +0 -187
  360. data/vendor/pygments-main/tests/examplefiles/example.mqh +0 -123
  361. data/vendor/pygments-main/tests/examplefiles/example.msc +0 -43
  362. data/vendor/pygments-main/tests/examplefiles/example.ni +0 -57
  363. data/vendor/pygments-main/tests/examplefiles/example.nim +0 -1010
  364. data/vendor/pygments-main/tests/examplefiles/example.nix +0 -80
  365. data/vendor/pygments-main/tests/examplefiles/example.ns2 +0 -69
  366. data/vendor/pygments-main/tests/examplefiles/example.pas +0 -2708
  367. data/vendor/pygments-main/tests/examplefiles/example.pp +0 -8
  368. data/vendor/pygments-main/tests/examplefiles/example.prg +0 -161
  369. data/vendor/pygments-main/tests/examplefiles/example.rb +0 -1852
  370. data/vendor/pygments-main/tests/examplefiles/example.red +0 -257
  371. data/vendor/pygments-main/tests/examplefiles/example.reds +0 -150
  372. data/vendor/pygments-main/tests/examplefiles/example.reg +0 -19
  373. data/vendor/pygments-main/tests/examplefiles/example.rexx +0 -50
  374. data/vendor/pygments-main/tests/examplefiles/example.rhtml +0 -561
  375. data/vendor/pygments-main/tests/examplefiles/example.rkt +0 -743
  376. data/vendor/pygments-main/tests/examplefiles/example.rpf +0 -4
  377. data/vendor/pygments-main/tests/examplefiles/example.sh +0 -22
  378. data/vendor/pygments-main/tests/examplefiles/example.sh-session +0 -19
  379. data/vendor/pygments-main/tests/examplefiles/example.shell-session +0 -45
  380. data/vendor/pygments-main/tests/examplefiles/example.slim +0 -31
  381. data/vendor/pygments-main/tests/examplefiles/example.sls +0 -51
  382. data/vendor/pygments-main/tests/examplefiles/example.sml +0 -156
  383. data/vendor/pygments-main/tests/examplefiles/example.snobol +0 -15
  384. data/vendor/pygments-main/tests/examplefiles/example.stan +0 -110
  385. data/vendor/pygments-main/tests/examplefiles/example.tea +0 -34
  386. data/vendor/pygments-main/tests/examplefiles/example.todotxt +0 -9
  387. data/vendor/pygments-main/tests/examplefiles/example.ts +0 -28
  388. data/vendor/pygments-main/tests/examplefiles/example.u +0 -548
  389. data/vendor/pygments-main/tests/examplefiles/example.weechatlog +0 -9
  390. data/vendor/pygments-main/tests/examplefiles/example.xhtml +0 -376
  391. data/vendor/pygments-main/tests/examplefiles/example.xtend +0 -34
  392. data/vendor/pygments-main/tests/examplefiles/example.yaml +0 -302
  393. data/vendor/pygments-main/tests/examplefiles/example2.aspx +0 -29
  394. data/vendor/pygments-main/tests/examplefiles/example2.msc +0 -79
  395. data/vendor/pygments-main/tests/examplefiles/exampleScript.cfc +0 -241
  396. data/vendor/pygments-main/tests/examplefiles/exampleTag.cfc +0 -18
  397. data/vendor/pygments-main/tests/examplefiles/example_elixir.ex +0 -205
  398. data/vendor/pygments-main/tests/examplefiles/example_file.fy +0 -128
  399. data/vendor/pygments-main/tests/examplefiles/firefox.mak +0 -586
  400. data/vendor/pygments-main/tests/examplefiles/flipflop.sv +0 -19
  401. data/vendor/pygments-main/tests/examplefiles/foo.sce +0 -6
  402. data/vendor/pygments-main/tests/examplefiles/format.ml +0 -1213
  403. data/vendor/pygments-main/tests/examplefiles/fucked_up.rb +0 -77
  404. data/vendor/pygments-main/tests/examplefiles/function.mu +0 -1
  405. data/vendor/pygments-main/tests/examplefiles/functional.rst +0 -1472
  406. data/vendor/pygments-main/tests/examplefiles/garcia-wachs.kk +0 -133
  407. data/vendor/pygments-main/tests/examplefiles/genclass.clj +0 -510
  408. data/vendor/pygments-main/tests/examplefiles/genshi_example.xml+genshi +0 -193
  409. data/vendor/pygments-main/tests/examplefiles/genshitext_example.genshitext +0 -33
  410. data/vendor/pygments-main/tests/examplefiles/glsl.frag +0 -7
  411. data/vendor/pygments-main/tests/examplefiles/glsl.vert +0 -13
  412. data/vendor/pygments-main/tests/examplefiles/grammar-test.p6 +0 -22
  413. data/vendor/pygments-main/tests/examplefiles/hash_syntax.rb +0 -5
  414. data/vendor/pygments-main/tests/examplefiles/hello.at +0 -6
  415. data/vendor/pygments-main/tests/examplefiles/hello.golo +0 -5
  416. data/vendor/pygments-main/tests/examplefiles/hello.lsl +0 -12
  417. data/vendor/pygments-main/tests/examplefiles/hello.smali +0 -40
  418. data/vendor/pygments-main/tests/examplefiles/hello.sp +0 -9
  419. data/vendor/pygments-main/tests/examplefiles/html+php_faulty.php +0 -1
  420. data/vendor/pygments-main/tests/examplefiles/http_request_example +0 -15
  421. data/vendor/pygments-main/tests/examplefiles/http_response_example +0 -29
  422. data/vendor/pygments-main/tests/examplefiles/hybris_File.hy +0 -174
  423. data/vendor/pygments-main/tests/examplefiles/idl_sample.pro +0 -73
  424. data/vendor/pygments-main/tests/examplefiles/iex_example +0 -23
  425. data/vendor/pygments-main/tests/examplefiles/inet_pton6.dg +0 -71
  426. data/vendor/pygments-main/tests/examplefiles/intro.ik +0 -24
  427. data/vendor/pygments-main/tests/examplefiles/ints.php +0 -10
  428. data/vendor/pygments-main/tests/examplefiles/intsyn.fun +0 -675
  429. data/vendor/pygments-main/tests/examplefiles/intsyn.sig +0 -286
  430. data/vendor/pygments-main/tests/examplefiles/irb_heredoc +0 -8
  431. data/vendor/pygments-main/tests/examplefiles/irc.lsp +0 -214
  432. data/vendor/pygments-main/tests/examplefiles/java.properties +0 -16
  433. data/vendor/pygments-main/tests/examplefiles/jbst_example1.jbst +0 -28
  434. data/vendor/pygments-main/tests/examplefiles/jbst_example2.jbst +0 -45
  435. data/vendor/pygments-main/tests/examplefiles/jinjadesignerdoc.rst +0 -713
  436. data/vendor/pygments-main/tests/examplefiles/json.lasso +0 -301
  437. data/vendor/pygments-main/tests/examplefiles/json.lasso9 +0 -213
  438. data/vendor/pygments-main/tests/examplefiles/language.hy +0 -165
  439. data/vendor/pygments-main/tests/examplefiles/lighttpd_config.conf +0 -13
  440. data/vendor/pygments-main/tests/examplefiles/limbo.b +0 -456
  441. data/vendor/pygments-main/tests/examplefiles/linecontinuation.py +0 -47
  442. data/vendor/pygments-main/tests/examplefiles/livescript-demo.ls +0 -43
  443. data/vendor/pygments-main/tests/examplefiles/logos_example.xm +0 -28
  444. data/vendor/pygments-main/tests/examplefiles/ltmain.sh +0 -2849
  445. data/vendor/pygments-main/tests/examplefiles/main.cmake +0 -44
  446. data/vendor/pygments-main/tests/examplefiles/markdown.lsp +0 -679
  447. data/vendor/pygments-main/tests/examplefiles/matlab_noreturn +0 -3
  448. data/vendor/pygments-main/tests/examplefiles/matlab_sample +0 -30
  449. data/vendor/pygments-main/tests/examplefiles/matlabsession_sample.txt +0 -37
  450. data/vendor/pygments-main/tests/examplefiles/metagrammar.treetop +0 -455
  451. data/vendor/pygments-main/tests/examplefiles/minehunt.qml +0 -112
  452. data/vendor/pygments-main/tests/examplefiles/minimal.ns2 +0 -4
  453. data/vendor/pygments-main/tests/examplefiles/moin_SyntaxReference.txt +0 -340
  454. data/vendor/pygments-main/tests/examplefiles/multiline_regexes.rb +0 -38
  455. data/vendor/pygments-main/tests/examplefiles/nanomsg.intr +0 -95
  456. data/vendor/pygments-main/tests/examplefiles/nasm_aoutso.asm +0 -96
  457. data/vendor/pygments-main/tests/examplefiles/nasm_objexe.asm +0 -30
  458. data/vendor/pygments-main/tests/examplefiles/nemerle_sample.n +0 -87
  459. data/vendor/pygments-main/tests/examplefiles/nginx_nginx.conf +0 -118
  460. data/vendor/pygments-main/tests/examplefiles/numbers.c +0 -12
  461. data/vendor/pygments-main/tests/examplefiles/objc_example.m +0 -179
  462. data/vendor/pygments-main/tests/examplefiles/openedge_example +0 -34
  463. data/vendor/pygments-main/tests/examplefiles/pawn_example +0 -25
  464. data/vendor/pygments-main/tests/examplefiles/perl_misc +0 -62
  465. data/vendor/pygments-main/tests/examplefiles/perl_perl5db +0 -998
  466. data/vendor/pygments-main/tests/examplefiles/perl_regex-delims +0 -120
  467. data/vendor/pygments-main/tests/examplefiles/perlfunc.1 +0 -856
  468. data/vendor/pygments-main/tests/examplefiles/phpMyAdmin.spec +0 -163
  469. data/vendor/pygments-main/tests/examplefiles/phpcomplete.vim +0 -567
  470. data/vendor/pygments-main/tests/examplefiles/pleac.in.rb +0 -1223
  471. data/vendor/pygments-main/tests/examplefiles/postgresql_test.txt +0 -47
  472. data/vendor/pygments-main/tests/examplefiles/pppoe.applescript +0 -10
  473. data/vendor/pygments-main/tests/examplefiles/psql_session.txt +0 -122
  474. data/vendor/pygments-main/tests/examplefiles/py3_test.txt +0 -2
  475. data/vendor/pygments-main/tests/examplefiles/py3tb_test.py3tb +0 -4
  476. data/vendor/pygments-main/tests/examplefiles/pycon_test.pycon +0 -14
  477. data/vendor/pygments-main/tests/examplefiles/pytb_test2.pytb +0 -2
  478. data/vendor/pygments-main/tests/examplefiles/pytb_test3.pytb +0 -4
  479. data/vendor/pygments-main/tests/examplefiles/python25-bsd.mak +0 -234
  480. data/vendor/pygments-main/tests/examplefiles/qbasic_example +0 -2
  481. data/vendor/pygments-main/tests/examplefiles/qsort.prolog +0 -13
  482. data/vendor/pygments-main/tests/examplefiles/r-console-transcript.Rout +0 -38
  483. data/vendor/pygments-main/tests/examplefiles/r6rs-comments.scm +0 -23
  484. data/vendor/pygments-main/tests/examplefiles/ragel-cpp_rlscan +0 -280
  485. data/vendor/pygments-main/tests/examplefiles/ragel-cpp_snippet +0 -2
  486. data/vendor/pygments-main/tests/examplefiles/regex.js +0 -22
  487. data/vendor/pygments-main/tests/examplefiles/reversi.lsp +0 -427
  488. data/vendor/pygments-main/tests/examplefiles/robotframework_test.txt +0 -39
  489. data/vendor/pygments-main/tests/examplefiles/rql-queries.rql +0 -34
  490. data/vendor/pygments-main/tests/examplefiles/ruby_func_def.rb +0 -11
  491. data/vendor/pygments-main/tests/examplefiles/rust_example.rs +0 -233
  492. data/vendor/pygments-main/tests/examplefiles/scilab.sci +0 -30
  493. data/vendor/pygments-main/tests/examplefiles/scope.cirru +0 -43
  494. data/vendor/pygments-main/tests/examplefiles/session.dylan-console +0 -9
  495. data/vendor/pygments-main/tests/examplefiles/sibling.prolog +0 -19
  496. data/vendor/pygments-main/tests/examplefiles/simple.md +0 -747
  497. data/vendor/pygments-main/tests/examplefiles/smarty_example.html +0 -209
  498. data/vendor/pygments-main/tests/examplefiles/source.lgt +0 -343
  499. data/vendor/pygments-main/tests/examplefiles/sources.list +0 -62
  500. data/vendor/pygments-main/tests/examplefiles/sparql.rq +0 -23
  501. data/vendor/pygments-main/tests/examplefiles/sphere.pov +0 -18
  502. data/vendor/pygments-main/tests/examplefiles/sqlite3.sqlite3-console +0 -27
  503. data/vendor/pygments-main/tests/examplefiles/squid.conf +0 -30
  504. data/vendor/pygments-main/tests/examplefiles/string.jl +0 -1031
  505. data/vendor/pygments-main/tests/examplefiles/string_delimiters.d +0 -21
  506. data/vendor/pygments-main/tests/examplefiles/stripheredoc.sh +0 -3
  507. data/vendor/pygments-main/tests/examplefiles/swig_java.swg +0 -1329
  508. data/vendor/pygments-main/tests/examplefiles/swig_std_vector.i +0 -225
  509. data/vendor/pygments-main/tests/examplefiles/test.R +0 -185
  510. data/vendor/pygments-main/tests/examplefiles/test.adb +0 -211
  511. data/vendor/pygments-main/tests/examplefiles/test.agda +0 -102
  512. data/vendor/pygments-main/tests/examplefiles/test.apl +0 -26
  513. data/vendor/pygments-main/tests/examplefiles/test.asy +0 -131
  514. data/vendor/pygments-main/tests/examplefiles/test.awk +0 -121
  515. data/vendor/pygments-main/tests/examplefiles/test.bb +0 -95
  516. data/vendor/pygments-main/tests/examplefiles/test.bmx +0 -145
  517. data/vendor/pygments-main/tests/examplefiles/test.boo +0 -39
  518. data/vendor/pygments-main/tests/examplefiles/test.bro +0 -250
  519. data/vendor/pygments-main/tests/examplefiles/test.cs +0 -374
  520. data/vendor/pygments-main/tests/examplefiles/test.css +0 -54
  521. data/vendor/pygments-main/tests/examplefiles/test.cu +0 -36
  522. data/vendor/pygments-main/tests/examplefiles/test.cyp +0 -123
  523. data/vendor/pygments-main/tests/examplefiles/test.d +0 -135
  524. data/vendor/pygments-main/tests/examplefiles/test.dart +0 -23
  525. data/vendor/pygments-main/tests/examplefiles/test.dtd +0 -89
  526. data/vendor/pygments-main/tests/examplefiles/test.ebnf +0 -31
  527. data/vendor/pygments-main/tests/examplefiles/test.ec +0 -605
  528. data/vendor/pygments-main/tests/examplefiles/test.ecl +0 -58
  529. data/vendor/pygments-main/tests/examplefiles/test.eh +0 -315
  530. data/vendor/pygments-main/tests/examplefiles/test.erl +0 -169
  531. data/vendor/pygments-main/tests/examplefiles/test.evoque +0 -33
  532. data/vendor/pygments-main/tests/examplefiles/test.fan +0 -818
  533. data/vendor/pygments-main/tests/examplefiles/test.flx +0 -57
  534. data/vendor/pygments-main/tests/examplefiles/test.gdc +0 -13
  535. data/vendor/pygments-main/tests/examplefiles/test.groovy +0 -97
  536. data/vendor/pygments-main/tests/examplefiles/test.html +0 -339
  537. data/vendor/pygments-main/tests/examplefiles/test.idr +0 -93
  538. data/vendor/pygments-main/tests/examplefiles/test.ini +0 -10
  539. data/vendor/pygments-main/tests/examplefiles/test.java +0 -653
  540. data/vendor/pygments-main/tests/examplefiles/test.jsp +0 -24
  541. data/vendor/pygments-main/tests/examplefiles/test.maql +0 -45
  542. data/vendor/pygments-main/tests/examplefiles/test.mask +0 -41
  543. data/vendor/pygments-main/tests/examplefiles/test.mod +0 -374
  544. data/vendor/pygments-main/tests/examplefiles/test.moo +0 -51
  545. data/vendor/pygments-main/tests/examplefiles/test.myt +0 -166
  546. data/vendor/pygments-main/tests/examplefiles/test.nim +0 -93
  547. data/vendor/pygments-main/tests/examplefiles/test.opa +0 -10
  548. data/vendor/pygments-main/tests/examplefiles/test.p6 +0 -252
  549. data/vendor/pygments-main/tests/examplefiles/test.pan +0 -54
  550. data/vendor/pygments-main/tests/examplefiles/test.pas +0 -743
  551. data/vendor/pygments-main/tests/examplefiles/test.php +0 -507
  552. data/vendor/pygments-main/tests/examplefiles/test.pig +0 -148
  553. data/vendor/pygments-main/tests/examplefiles/test.plot +0 -333
  554. data/vendor/pygments-main/tests/examplefiles/test.ps1 +0 -108
  555. data/vendor/pygments-main/tests/examplefiles/test.pwn +0 -253
  556. data/vendor/pygments-main/tests/examplefiles/test.pypylog +0 -1839
  557. data/vendor/pygments-main/tests/examplefiles/test.r3 +0 -114
  558. data/vendor/pygments-main/tests/examplefiles/test.rb +0 -177
  559. data/vendor/pygments-main/tests/examplefiles/test.rhtml +0 -43
  560. data/vendor/pygments-main/tests/examplefiles/test.rsl +0 -111
  561. data/vendor/pygments-main/tests/examplefiles/test.scaml +0 -8
  562. data/vendor/pygments-main/tests/examplefiles/test.ssp +0 -12
  563. data/vendor/pygments-main/tests/examplefiles/test.swift +0 -65
  564. data/vendor/pygments-main/tests/examplefiles/test.tcsh +0 -830
  565. data/vendor/pygments-main/tests/examplefiles/test.vb +0 -407
  566. data/vendor/pygments-main/tests/examplefiles/test.vhdl +0 -161
  567. data/vendor/pygments-main/tests/examplefiles/test.xqy +0 -138
  568. data/vendor/pygments-main/tests/examplefiles/test.xsl +0 -23
  569. data/vendor/pygments-main/tests/examplefiles/test.zep +0 -33
  570. data/vendor/pygments-main/tests/examplefiles/test2.pypylog +0 -120
  571. data/vendor/pygments-main/tests/examplefiles/truncated.pytb +0 -15
  572. data/vendor/pygments-main/tests/examplefiles/type.lisp +0 -1218
  573. data/vendor/pygments-main/tests/examplefiles/underscore.coffee +0 -603
  574. data/vendor/pygments-main/tests/examplefiles/unicode.applescript +0 -5
  575. data/vendor/pygments-main/tests/examplefiles/unicode.go +0 -10
  576. data/vendor/pygments-main/tests/examplefiles/unicodedoc.py +0 -11
  577. data/vendor/pygments-main/tests/examplefiles/unix-io.lid +0 -37
  578. data/vendor/pygments-main/tests/examplefiles/vbnet_test.bas +0 -29
  579. data/vendor/pygments-main/tests/examplefiles/vctreestatus_hg +0 -4
  580. data/vendor/pygments-main/tests/examplefiles/vimrc +0 -21
  581. data/vendor/pygments-main/tests/examplefiles/webkit-transition.css +0 -3
  582. data/vendor/pygments-main/tests/examplefiles/while.pov +0 -13
  583. data/vendor/pygments-main/tests/examplefiles/wiki.factor +0 -384
  584. data/vendor/pygments-main/tests/examplefiles/xml_example +0 -1897
  585. data/vendor/pygments-main/tests/examplefiles/zmlrpc.f90 +0 -798
  586. data/vendor/pygments-main/tests/run.py +0 -44
  587. data/vendor/pygments-main/tests/string_asserts.py +0 -22
  588. data/vendor/pygments-main/tests/support.py +0 -15
  589. data/vendor/pygments-main/tests/support/tags +0 -36
  590. data/vendor/pygments-main/tests/test_basic_api.py +0 -309
  591. data/vendor/pygments-main/tests/test_cfm.py +0 -46
  592. data/vendor/pygments-main/tests/test_clexer.py +0 -236
  593. data/vendor/pygments-main/tests/test_cmdline.py +0 -106
  594. data/vendor/pygments-main/tests/test_examplefiles.py +0 -110
  595. data/vendor/pygments-main/tests/test_html_formatter.py +0 -180
  596. data/vendor/pygments-main/tests/test_latex_formatter.py +0 -57
  597. data/vendor/pygments-main/tests/test_lexers_other.py +0 -68
  598. data/vendor/pygments-main/tests/test_objectiveclexer.py +0 -81
  599. data/vendor/pygments-main/tests/test_perllexer.py +0 -137
  600. data/vendor/pygments-main/tests/test_qbasiclexer.py +0 -43
  601. data/vendor/pygments-main/tests/test_regexlexer.py +0 -54
  602. data/vendor/pygments-main/tests/test_rtf_formatter.py +0 -109
  603. data/vendor/pygments-main/tests/test_string_asserts.py +0 -39
  604. data/vendor/pygments-main/tests/test_token.py +0 -46
  605. data/vendor/pygments-main/tests/test_using_api.py +0 -40
  606. data/vendor/pygments-main/tests/test_util.py +0 -135
@@ -1,118 +0,0 @@
1
- /***********************************************************************
2
- * Chapel implementation of "99 bottles of beer"
3
- *
4
- * by Brad Chamberlain and Steve Deitz
5
- * 07/13/2006 in Knoxville airport while waiting for flight home from
6
- * HPLS workshop
7
- * compiles and runs with chpl compiler version 1.7.0
8
- * for more information, contact: chapel_info@cray.com
9
- *
10
- *
11
- * Notes:
12
- * o as in all good parallel computations, boundary conditions
13
- * constitute the vast bulk of complexity in this code (invite Brad to
14
- * tell you about his zany boundary condition simplification scheme)
15
- * o uses type inference for variables, arguments
16
- * o relies on integer->string coercions
17
- * o uses named argument passing (for documentation purposes only)
18
- ***********************************************************************/
19
-
20
- // allow executable command-line specification of number of bottles
21
- // (e.g., ./a.out -snumBottles=999999)
22
- config const numBottles = 99;
23
- const numVerses = numBottles+1;
24
-
25
- // a domain to describe the space of lyrics
26
- var LyricsSpace: domain(1) = {1..numVerses};
27
-
28
- // array of lyrics
29
- var Lyrics: [LyricsSpace] string;
30
-
31
- // parallel computation of lyrics array
32
- [verse in LyricsSpace] Lyrics(verse) = computeLyric(verse);
33
-
34
- // as in any good parallel language, I/O to stdout is serialized.
35
- // (Note that I/O to a file could be parallelized using a parallel
36
- // prefix computation on the verse strings' lengths with file seeking)
37
- writeln(Lyrics);
38
-
39
-
40
- // HELPER FUNCTIONS:
41
-
42
- proc computeLyric(verseNum) {
43
- var bottleNum = numBottles - (verseNum - 1);
44
- var nextBottle = (bottleNum + numVerses - 1)%numVerses;
45
- return "\n" // disguise space used to separate elements in array I/O
46
- + describeBottles(bottleNum, startOfVerse=true) + " on the wall, "
47
- + describeBottles(bottleNum) + ".\n"
48
- + computeAction(bottleNum)
49
- + describeBottles(nextBottle) + " on the wall.\n";
50
- }
51
-
52
-
53
- proc describeBottles(bottleNum, startOfVerse:bool = false) {
54
- // NOTE: bool should not be necessary here (^^^^); working around bug
55
- var bottleDescription = if (bottleNum) then bottleNum:string
56
- else (if startOfVerse then "N"
57
- else "n")
58
- + "o more";
59
- return bottleDescription
60
- + " bottle" + (if (bottleNum == 1) then "" else "s")
61
- + " of beer";
62
- }
63
-
64
-
65
- proc computeAction(bottleNum) {
66
- return if (bottleNum == 0) then "Go to the store and buy some more, "
67
- else "Take one down and pass it around, ";
68
- }
69
-
70
-
71
- // Modules...
72
- module M1 {
73
- var x = 10;
74
- }
75
-
76
- module M2 {
77
- use M1;
78
- proc main() {
79
- writeln("M2 -> M1 -> x " + x);
80
- }
81
- }
82
-
83
-
84
- // Classes, records, unions...
85
- const PI: real = 3.14159;
86
-
87
- record Point {
88
- var x, y: real;
89
- }
90
- var p: Point;
91
- writeln("Distance from origin: " + sqrt(p.x ** 2 + p.y ** 2));
92
- p = new Point(1.0, 2.0);
93
- writeln("Distance from origin: " + sqrt(p.x ** 2 + p.y ** 2));
94
-
95
- class Circle {
96
- var p: Point;
97
- var r: real;
98
- }
99
- var c = new Circle(r=2.0);
100
- proc Circle.area()
101
- return PI * r ** 2;
102
- writeln("Area of circle: " + c.area());
103
-
104
- class Oval: Circle {
105
- var r2: real;
106
- }
107
- proc Oval.area()
108
- return PI * r * r2;
109
-
110
- delete c;
111
- c = nil;
112
- c = new Oval(r=1.0, r2=2.0);
113
- writeln("Area of oval: " + c.area());
114
-
115
- union U {
116
- var i: int;
117
- var r: real;
118
- }
@@ -1,209 +0,0 @@
1
- {-# LANGUAGE DeriveDataTypeable, FlexibleContexts, GeneralizedNewtypeDeriving
2
- , MultiParamTypeClasses, OverloadedStrings, ScopedTypeVariables, TemplateHaskell
3
- , TypeFamilies, FlexibleInstances #-}
4
- module Main where
5
- import Control.Applicative (Applicative, Alternative, (<$>))
6
- import Control.Exception.Lifted (bracket)
7
- import Control.Monad.Trans.Control (MonadBaseControl)
8
- import Control.Monad (MonadPlus, mplus)
9
- import Control.Monad.Reader (MonadReader, ReaderT(..), ask)
10
- import Control.Monad.Trans (MonadIO(..))
11
- import Data.Acid ( AcidState(..), EventState(..), EventResult(..)
12
- , Query(..), QueryEvent(..), Update(..), UpdateEvent(..)
13
- , IsAcidic(..), makeAcidic, openLocalState
14
- )
15
- import Data.Acid.Local ( createCheckpointAndClose
16
- , openLocalStateFrom
17
- )
18
- import Data.Acid.Advanced (query', update')
19
- import Data.Maybe (fromMaybe)
20
- import Data.SafeCopy (SafeCopy, base, deriveSafeCopy)
21
- import Data.Data (Data, Typeable)
22
- import Data.Lens ((%=), (!=))
23
- import Data.Lens.Template (makeLens)
24
- import Data.Text.Lazy (Text)
25
- import Happstack.Server ( Happstack, HasRqData, Method(GET, POST), Request(rqMethod)
26
- , Response
27
- , ServerPartT(..), WebMonad, FilterMonad, ServerMonad
28
- , askRq, decodeBody, dir, defaultBodyPolicy, lookText
29
- , mapServerPartT, nullConf, nullDir, ok, simpleHTTP
30
- , toResponse
31
- )
32
- import Prelude hiding (head, id)
33
- import System.FilePath ((</>))
34
- import Text.Blaze ((!))
35
- import Text.Blaze.Html4.Strict (body, head, html, input, form, label, p, title, toHtml)
36
- import Text.Blaze.Html4.Strict.Attributes (action, enctype, for, id, method, name, type_, value)
37
- class HasAcidState m st where
38
- getAcidState :: m (AcidState st)
39
- query :: forall event m.
40
- ( Functor m
41
- , MonadIO m
42
- , QueryEvent event
43
- , HasAcidState m (EventState event)
44
- ) =>
45
- event
46
- -> m (EventResult event)
47
- query event =
48
- do as <- getAcidState
49
- query' (as :: AcidState (EventState event)) event
50
- update :: forall event m.
51
- ( Functor m
52
- , MonadIO m
53
- , UpdateEvent event
54
- , HasAcidState m (EventState event)
55
- ) =>
56
- event
57
- -> m (EventResult event)
58
- update event =
59
- do as <- getAcidState
60
- update' (as :: AcidState (EventState event)) event
61
- -- | bracket the opening and close of the `AcidState` handle.
62
-
63
- -- automatically creates a checkpoint on close
64
- withLocalState :: (MonadBaseControl IO m, MonadIO m, IsAcidic st, Typeable st) =>
65
- Maybe FilePath -- ^ path to state directory
66
- -> st -- ^ initial state value
67
- -> (AcidState st -> m a) -- ^ function which uses the `AcidState` handle
68
- -> m a
69
- withLocalState mPath initialState =
70
- bracket (liftIO $ (maybe openLocalState openLocalStateFrom mPath) initialState)
71
- (liftIO . createCheckpointAndClose)
72
- -- State that stores a hit count
73
-
74
- data CountState = CountState { _count :: Integer }
75
- deriving (Eq, Ord, Data, Typeable, Show)
76
-
77
- $(deriveSafeCopy 0 'base ''CountState)
78
- $(makeLens ''CountState)
79
-
80
- initialCountState :: CountState
81
- initialCountState = CountState { _count = 0 }
82
-
83
- incCount :: Update CountState Integer
84
- incCount = count %= succ
85
-
86
- $(makeAcidic ''CountState ['incCount])
87
- -- State that stores a greeting
88
- data GreetingState = GreetingState { _greeting :: Text }
89
- deriving (Eq, Ord, Data, Typeable, Show)
90
-
91
- $(deriveSafeCopy 0 'base ''GreetingState)
92
- $(makeLens ''GreetingState)
93
-
94
- initialGreetingState :: GreetingState
95
- initialGreetingState = GreetingState { _greeting = "Hello" }
96
-
97
- getGreeting :: Query GreetingState Text
98
- getGreeting = _greeting <$> ask
99
-
100
- setGreeting :: Text -> Update GreetingState Text
101
- setGreeting txt = greeting != txt
102
-
103
- $(makeAcidic ''GreetingState ['getGreeting, 'setGreeting])
104
- data Acid = Acid { acidCountState :: AcidState CountState
105
- , acidGreetingState :: AcidState GreetingState
106
- }
107
-
108
- withAcid :: Maybe FilePath -> (Acid -> IO a) -> IO a
109
- withAcid mBasePath action =
110
- let basePath = fromMaybe "_state" mBasePath
111
- in withLocalState (Just $ basePath </> "count") initialCountState $ \c ->
112
- withLocalState (Just $ basePath </> "greeting") initialGreetingState $ \g ->
113
- action (Acid c g)
114
- newtype App a = App { unApp :: ServerPartT (ReaderT Acid IO) a }
115
- deriving ( Functor, Alternative, Applicative, Monad, MonadPlus, MonadIO
116
- , HasRqData, ServerMonad ,WebMonad Response, FilterMonad Response
117
- , Happstack, MonadReader Acid)
118
-
119
- runApp :: Acid -> App a -> ServerPartT IO a
120
- runApp acid (App sp) = mapServerPartT (flip runReaderT acid) sp
121
- instance HasAcidState App CountState where
122
- getAcidState = acidCountState <$> ask
123
-
124
- instance HasAcidState App GreetingState where
125
- getAcidState = acidGreetingState <$> ask
126
- page :: App Response
127
- page =
128
- do nullDir
129
- g <- greet
130
- c <- update IncCount -- ^ a CountState event
131
- ok $ toResponse $
132
- html $ do
133
- head $ do
134
- title "acid-state demo"
135
- body $ do
136
- form ! action "/" ! method "POST" ! enctype "multipart/form-data" $ do
137
- label "new message: " ! for "msg"
138
- input ! type_ "text" ! id "msg" ! name "greeting"
139
- input ! type_ "submit" ! value "update message"
140
- p $ toHtml g
141
- p $ do "This page has been loaded "
142
- toHtml c
143
- " time(s)."
144
- where
145
- greet =
146
- do m <- rqMethod <$> askRq
147
- case m of
148
- POST ->
149
- do decodeBody (defaultBodyPolicy "/tmp/" 0 1000 1000)
150
- newGreeting <- lookText "greeting"
151
- update (SetGreeting newGreeting) -- ^ a GreetingState event
152
- return newGreeting
153
- GET ->
154
- do query GetGreeting -- ^ a GreetingState event
155
- main :: IO ()
156
- main =
157
- withAcid Nothing $ \acid ->
158
- simpleHTTP nullConf $ runApp acid page
159
- newtype FooState = FooState { foo :: Text }
160
- deriving (Eq, Ord, Data, Typeable, SafeCopy)
161
-
162
- initialFooState :: FooState
163
- initialFooState = FooState { foo = "foo" }
164
-
165
- askFoo :: Query FooState Text
166
- askFoo = foo <$> ask
167
-
168
- $(makeAcidic ''FooState ['askFoo])
169
- fooPlugin :: (Happstack m, HasAcidState m FooState) => m Response
170
- fooPlugin =
171
- dir "foo" $ do
172
- txt <- query AskFoo
173
- ok $ toResponse txt
174
- data Acid' = Acid' { acidCountState' :: AcidState CountState
175
- , acidGreetingState' :: AcidState GreetingState
176
- , acidFooState' :: AcidState FooState
177
- }
178
- withAcid' :: Maybe FilePath -> (Acid' -> IO a) -> IO a
179
- withAcid' mBasePath action =
180
- let basePath = fromMaybe "_state" mBasePath
181
- in withLocalState (Just $ basePath </> "count") initialCountState $ \c ->
182
- withLocalState (Just $ basePath </> "greeting") initialGreetingState $ \g ->
183
- withLocalState (Just $ basePath </> "foo") initialFooState $ \f ->
184
- action (Acid' c g f)
185
- newtype App' a = App' { unApp' :: ServerPartT (ReaderT Acid' IO) a }
186
- deriving ( Functor, Alternative, Applicative, Monad, MonadPlus, MonadIO
187
- , HasRqData, ServerMonad ,WebMonad Response, FilterMonad Response
188
- , Happstack, MonadReader Acid')
189
-
190
- instance HasAcidState App' FooState where
191
- getAcidState = acidFooState' <$> ask
192
- fooAppPlugin :: App' Response
193
- fooAppPlugin = fooPlugin
194
- fooReaderPlugin :: ReaderT (AcidState FooState) (ServerPartT IO) Response
195
- fooReaderPlugin = fooPlugin
196
- instance HasAcidState (ReaderT (AcidState FooState) (ServerPartT IO)) FooState where
197
- getAcidState = ask
198
- withFooPlugin :: (MonadIO m, MonadBaseControl IO m) =>
199
- FilePath -- ^ path to state directory
200
- -> (ServerPartT IO Response -> m a) -- ^ function that uses fooPlugin
201
- -> m a
202
- withFooPlugin basePath f =
203
- do withLocalState (Just $ basePath </> "foo") initialFooState $ \fooState ->
204
- f $ runReaderT fooReaderPlugin fooState
205
- main' :: IO ()
206
- main' =
207
- withFooPlugin "_state" $ \fooPlugin' ->
208
- withAcid Nothing $ \acid ->
209
- simpleHTTP nullConf $ fooPlugin' `mplus` runApp acid page
@@ -1,102 +0,0 @@
1
- /*++ $Id: AlternatingGroup.mu,v 1.4 2003/09/08 15:00:47 nthiery Exp $
2
-
3
- Dom::AlternatingGroup(n) -- the Alternating Group of {1..n}
4
-
5
- n - integer >= 1
6
-
7
- Elements are represented as in Dom::PermutationGroup(n)
8
-
9
- Author: Nicolas M. Thi�ry <nthiery@users.sourceforge.net>
10
- License: LGPL
11
- Created: August 8th, 1999
12
- Last update: $Date: 2003/09/08 15:00:47 $
13
- ++*/
14
-
15
- domain Dom::AlternatingGroup(n: Type::PosInt)
16
- inherits Dom::PermutationGroup(n,toBeDefined);
17
- category Cat::PermutationGroup;
18
- axiom Ax::canonicalRep;
19
-
20
- /*--
21
- size
22
-
23
- Size of the group.
24
- --*/
25
-
26
- size := fact(n)/2;
27
-
28
- /*--
29
- generators
30
-
31
- A list of generators of the group
32
-
33
- The first 3-cycle (1,2,3), and a maximal even cycle (1,...,n) or
34
- (2,...,n) depending on the parity of n
35
-
36
- --*/
37
-
38
- generators :=
39
- if n<=2 then generators:=[dom([[1]])];
40
- elif n=3 then generators:=[dom([[1,2,3]])];
41
- elif n mod 2=0 then generators:=[dom([[1,2,3]]), dom([[$2..n]])];
42
- else generators:=[dom([[1,2,3]]), dom([[$1..n]])];
43
- end_if;
44
-
45
- /*--
46
- allElements
47
-
48
- List of all the elements of the group
49
- --*/
50
-
51
- allElements :=
52
- proc()
53
- option remember;
54
- local p;
55
- begin
56
- [new(dom,p) $ p in select(combinat::permutations(n),
57
- p->bool(combinat::permutations::sign(p)=1))];
58
- end_proc;
59
-
60
- /*--
61
- cycleTypes:
62
-
63
- Count the elements of the group by cycle type.
64
- (Cf Cat::PermutationGroupModule).
65
-
66
- Same algorithm as for Dom::SymmetricGroup, but only even permutations
67
- are considered. This is done by disregarding partitions p such
68
- that n-length(p) is odd.
69
- --*/
70
-
71
- cycleTypes :=
72
- proc()
73
- option remember;
74
- local t, p, gen;
75
- begin
76
- userinfo(3, "cycleTypes: starting computation");
77
- t:=table();
78
-
79
- gen := combinat::partitions::generator(n);
80
- while (p:=gen()) <> FAIL do
81
- userinfo(5, "working on partition", p);
82
- if(n-nops(p) mod 2=0) then
83
- // Compute the size of the conjugacy class of Sn indexed by p
84
- // and the cycle type of a permutation in this conjugacy class
85
- t[combinat::partitions::toExp(p,n)]
86
- := combinat::partitions::conjugacyClassSize(p);
87
- end_if;
88
- end_while;
89
- t;
90
- end_proc;
91
-
92
- begin
93
- if testargs() then
94
- if args(0) <> 1 then error("wrong no of args"); end_if;
95
- if not testtype(n,DOM_INT) then
96
- error("argument must be integer")
97
- end_if;
98
- if n < 1 then
99
- error("argument must be positive")
100
- end_if;
101
- end_if;
102
- end_domain:
@@ -1 +0,0 @@
1
- /* There is a BOM at the beginning of this file. */
@@ -1,611 +0,0 @@
1
- /*
2
- * CPDictionary.j
3
- * Foundation
4
- *
5
- * Created by Francisco Tolmasky.
6
- * Copyright 2008, 280 North, Inc.
7
- *
8
- * This library 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
- * This library 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 Street, Fifth Floor, Boston, MA 02110-1301 USA
21
- */
22
-
23
- //@import "CPRange.j"
24
- @import "CPObject.j"
25
- @import "CPEnumerator.j"
26
- @import "CPException.j"
27
-
28
- /* @ignore */
29
- @implementation _CPDictionaryValueEnumerator : CPEnumerator
30
- {
31
- CPEnumerator _keyEnumerator;
32
- CPDictionary _dictionary;
33
- }
34
-
35
- - (id)initWithDictionary:(CPDictionary)aDictionary
36
- {
37
- self = [super init];
38
-
39
- if (self)
40
- {
41
- _keyEnumerator = [aDictionary keyEnumerator];
42
- _dictionary = aDictionary;
43
- }
44
-
45
- return self;
46
- }
47
-
48
- - (id)nextObject
49
- {
50
- var key = [_keyEnumerator nextObject];
51
-
52
- if (!key)
53
- return nil;
54
-
55
- return [_dictionary objectForKey:key];
56
- }
57
-
58
- @end
59
-
60
- /*!
61
- @class CPDictionary
62
- @ingroup foundation
63
- @brief A mutable key-value pair collection.
64
-
65
- A dictionary is the standard way of passing around key-value pairs in
66
- the Cappuccino framework. It is similar to the
67
- <a href="http://java.sun.com/javase/6/docs/api/index.html">Java map interface</a>,
68
- except all keys are CPStrings and values can be any
69
- Cappuccino or JavaScript object.
70
-
71
- If you are familiar with dictionaries in Cocoa, you'll notice that
72
- there is no CPMutableDictionary class. The regular CPDictionary
73
- has \c -setObject:forKey: and \c -removeObjectForKey: methods.
74
- In Cappuccino there is no distinction between immutable and mutable classes.
75
- They are all mutable.
76
- */
77
- @implementation CPDictionary : CPObject
78
- {
79
- }
80
-
81
- /*
82
- @ignore
83
- */
84
- + (id)alloc
85
- {
86
- return new objj_dictionary();
87
- }
88
-
89
- /*!
90
- Returns a new empty CPDictionary.
91
- */
92
- + (id)dictionary
93
- {
94
- return [[self alloc] init];
95
- }
96
-
97
- /*!
98
- Returns a new dictionary, initialized with the contents of \c aDictionary.
99
- @param aDictionary the dictionary to copy key-value pairs from
100
- @return the new CPDictionary
101
- */
102
- + (id)dictionaryWithDictionary:(CPDictionary)aDictionary
103
- {
104
- return [[self alloc] initWithDictionary:aDictionary];
105
- }
106
-
107
- /*!
108
- Creates a new dictionary with single key-value pair.
109
- @param anObject the object for the paring
110
- @param aKey the key for the pairing
111
- @return the new CPDictionary
112
- */
113
- + (id)dictionaryWithObject:(id)anObject forKey:(id)aKey
114
- {
115
- return [[self alloc] initWithObjects:[anObject] forKeys:[aKey]];
116
- }
117
-
118
- /*!
119
- Creates a dictionary with multiple key-value pairs.
120
- @param objects the objects to place in the dictionary
121
- @param keys the keys for each of the objects
122
- @throws CPInvalidArgumentException if the number of objects and keys is different
123
- @return the new CPDictionary
124
- */
125
- + (id)dictionaryWithObjects:(CPArray)objects forKeys:(CPArray)keys
126
- {
127
- return [[self alloc] initWithObjects:objects forKeys:keys];
128
- }
129
-
130
- /*!
131
- Creates a dictionary with multiple key-value pairs.
132
- @param JavaScript object
133
- @return the new CPDictionary
134
- */
135
- + (id)dictionaryWithJSObject:(JSObject)object
136
- {
137
- return [self dictionaryWithJSObject:object recursively:NO];
138
- }
139
-
140
- /*!
141
- Creates a dictionary with multiple key-value pairs, recursively.
142
- @param JavaScript object
143
- @return the new CPDictionary
144
- */
145
- + (id)dictionaryWithJSObject:(JSObject)object recursively:(BOOL)recursively
146
- {
147
- var dictionary = [[self alloc] init];
148
-
149
- for (var key in object)
150
- {
151
- var value = object[key];
152
-
153
- if (recursively && value.constructor === Object)
154
- value = [CPDictionary dictionaryWithJSObject:value recursively:YES];
155
-
156
- [dictionary setObject:value forKey:key];
157
- }
158
-
159
- return dictionary;
160
- }
161
-
162
- /*!
163
- Creates and returns a dictionary constructed by a given pairs of keys and values.
164
- @param firstObject first object value
165
- @param ... key for the first object and ongoing value-key pairs for more objects.
166
- @throws CPInvalidArgumentException if the number of objects and keys is different
167
- @return the new CPDictionary
168
-
169
- Assuming that there's no object retaining in Cappuccino, you can create
170
- dictionaries same way as with alloc and initWithObjectsAndKeys:
171
- var dict = [CPDictionary dictionaryWithObjectsAndKeys:
172
- @"value1", @"key1",
173
- @"value2", @"key2"];
174
-
175
- Note, that there's no final nil like in Objective-C/Cocoa.
176
-
177
- @see [CPDictionary initWithObjectsAndKeys:]
178
- */
179
- + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...
180
- {
181
- arguments[0] = [self alloc];
182
- arguments[1] = @selector(initWithObjectsAndKeys:);
183
-
184
- return objj_msgSend.apply(this, arguments);
185
- }
186
-
187
- /*!
188
- Initializes the dictionary with the contents of another dictionary.
189
- @param aDictionary the dictionary to copy key-value pairs from
190
- @return the initialized dictionary
191
- */
192
- - (id)initWithDictionary:(CPDictionary)aDictionary
193
- {
194
- var key = "",
195
- dictionary = [[CPDictionary alloc] init];
196
-
197
- for (key in aDictionary._buckets)
198
- [dictionary setObject:[aDictionary objectForKey:key] forKey:key];
199
-
200
- return dictionary;
201
- }
202
-
203
- /*!
204
- Initializes the dictionary from the arrays of keys and objects.
205
- @param objects the objects to put in the dictionary
206
- @param keyArray the keys for the objects to put in the dictionary
207
- @throws CPInvalidArgumentException if the number of objects and keys is different
208
- @return the initialized dictionary
209
- */
210
- - (id)initWithObjects:(CPArray)objects forKeys:(CPArray)keyArray
211
- {
212
- self = [super init];
213
-
214
- if ([objects count] != [keyArray count])
215
- [CPException raise:CPInvalidArgumentException reason:"Counts are different.("+[objects count]+"!="+[keyArray count]+")"];
216
-
217
- if (self)
218
- {
219
- var i = [keyArray count];
220
-
221
- while (i--)
222
- [self setObject:objects[i] forKey:keyArray[i]];
223
- }
224
-
225
- return self;
226
- }
227
-
228
- /*!
229
- Creates and returns a dictionary constructed by a given pairs of keys and values.
230
- @param firstObject first object value
231
- @param ... key for the first object and ongoing value-key pairs for more objects.
232
- @throws CPInvalidArgumentException if the number of objects and keys is different
233
- @return the new CPDictionary
234
-
235
- You can create dictionaries this way:
236
- var dict = [[CPDictionary alloc] initWithObjectsAndKeys:
237
- @"value1", @"key1",
238
- @"value2", @"key2"];
239
-
240
- Note, that there's no final nil like in Objective-C/Cocoa.
241
- */
242
- - (id)initWithObjectsAndKeys:(id)firstObject, ...
243
- {
244
- var argCount = arguments.length;
245
-
246
- if (argCount % 2 !== 0)
247
- [CPException raise:CPInvalidArgumentException reason:"Key-value count is mismatched. (" + argCount + " arguments passed)"];
248
-
249
- self = [super init];
250
-
251
- if (self)
252
- {
253
- // The arguments array contains self and _cmd, so the first object is at position 2.
254
- var index = 2;
255
-
256
- for(; index < argCount; index += 2)
257
- {
258
- var value = arguments[index];
259
-
260
- if (value === nil)
261
- break;
262
-
263
- [self setObject:value forKey:arguments[index + 1]];
264
- }
265
- }
266
-
267
- return self;
268
- }
269
-
270
- /*!
271
- return a copy of the receiver (does not deep copy the objects contained in the dictionary).
272
- */
273
- - (CPDictionary)copy
274
- {
275
- return [CPDictionary dictionaryWithDictionary:self];
276
- }
277
-
278
- /*!
279
- Returns the number of entries in the dictionary
280
- */
281
- - (int)count
282
- {
283
- return count;
284
- }
285
-
286
- /*!
287
- Returns an array of keys for all the entries in the dictionary.
288
- */
289
- - (CPArray)allKeys
290
- {
291
- return _keys;
292
- }
293
-
294
- /*!
295
- Returns an array of values for all the entries in the dictionary.
296
- */
297
- - (CPArray)allValues
298
- {
299
- var index = _keys.length,
300
- values = [];
301
-
302
- while (index--)
303
- values.push(dictionary_getValue(self, [_keys[index]]));
304
-
305
- return values;
306
- }
307
-
308
- /*!
309
- Returns an enumerator that enumerates over all the dictionary's keys.
310
- */
311
- - (CPEnumerator)keyEnumerator
312
- {
313
- return [_keys objectEnumerator];
314
- }
315
-
316
- /*!
317
- Returns an enumerator that enumerates over all the dictionary's values.
318
- */
319
- - (CPEnumerator)objectEnumerator
320
- {
321
- return [[_CPDictionaryValueEnumerator alloc] initWithDictionary:self];
322
- }
323
-
324
- /*!
325
- Compare the receiver to this dictionary, and return whether or not they are equal.
326
- */
327
- - (BOOL)isEqualToDictionary:(CPDictionary)aDictionary
328
- {
329
- if (count !== [aDictionary count])
330
- return NO;
331
-
332
- var index = count;
333
- while (index--)
334
- {
335
- var currentKey = _keys[index],
336
- lhsObject = _buckets[currentKey],
337
- rhsObject = aDictionary._buckets[currentKey];
338
-
339
- if (lhsObject === rhsObject)
340
- continue;
341
-
342
- if (lhsObject.isa && rhsObject.isa && [lhsObject respondsToSelector:@selector(isEqual:)] && [lhsObject isEqual:rhsObject])
343
- continue;
344
-
345
- return NO;
346
- }
347
-
348
- return YES;
349
- }
350
-
351
- /*
352
- Instance.isEqualToDictionary(aDictionary)
353
- {
354
- if(this.count()!=aDictionary.count()) return NO;
355
-
356
- var i= this._keys.count();
357
- while(i--) if(this.objectForKey(this._keys[i])!=aDictionary.objectForKey(this._keys[i])) return NO;
358
-
359
- return YES;
360
- }
361
-
362
- Instance.allKeys()
363
- {
364
- return this._keys;
365
- }
366
-
367
- Instance.allKeysForObject(anObject)
368
- {
369
- var i= 0,
370
- keys= CPArray.array(),
371
- count= this.count();
372
-
373
- while((i= this._objects.indexOfObjectInRage(0, count-i))!=CPNotFound) keys.addObject(this._keys[i]);
374
-
375
- return keys;
376
- }
377
-
378
- Instance.allValues()
379
- {
380
- return this._objects;
381
- }
382
-
383
- Instance.keyEnumerator()
384
- {
385
- return this._keys.objectEnumerator();
386
- }
387
-
388
- Instance.keysSortedByValueUsingSelector(aSelector)
389
- {
390
- var dictionary= this,
391
- objectSelector= function(rhs)
392
- {
393
- return aSelector.apply(dictionary.objectForKey(this), [dictionary.objectForKey(rhs)]);
394
- };
395
-
396
- return this._keys.sortedArrayUsingSelector(objectSelector);
397
- }
398
-
399
- Instance.objectEnumerator()
400
- {
401
- return this._objects.objectEnumerator();
402
- }
403
- */
404
- /*!
405
- Returns the object for the entry with key \c aKey.
406
- @param aKey the key for the object's entry
407
- @return the object for the entry
408
- */
409
- - (id)objectForKey:(CPString)aKey
410
- {
411
- var object = _buckets[aKey];
412
-
413
- return (object === undefined) ? nil : object;
414
- }
415
- /*
416
- Instance.objectsForKeys(keys, aNotFoundMarker)
417
- {
418
- var i= keys.length,
419
- objects= CPArray.array();
420
-
421
- while(i--)
422
- {
423
- var object= this.objectForKey(keys[i]);
424
- objects.addObject(object==nil?aNotFoundMarker:object);
425
- }
426
-
427
- return objects;
428
- }
429
-
430
- Instance.valueForKey(aKey)
431
- {
432
- if(aKey.length && aKey[0]=="@") return this.objectForKey(aKey.substr(1));
433
-
434
- return base.valueForKey(aKey);
435
- }
436
-
437
- //
438
-
439
- Instance.addEntriesFromDictionary(aDictionary)
440
- {
441
- var key,
442
- keyEnumerator= aDictionary.keyEnumerator();
443
-
444
- while(key= keyEnumerator.nextObject()) this.setObjectForKey(aDictionary.objectForKey(key), key);
445
- }
446
- */
447
- /*!
448
- Removes all the entries from the dictionary.
449
- */
450
- - (void)removeAllObjects
451
- {
452
- _keys = [];
453
- count = 0;
454
- _buckets = {};
455
- }
456
-
457
- /*!
458
- Removes the entry for the specified key.
459
- @param aKey the key of the entry to be removed
460
- */
461
- - (void)removeObjectForKey:(id)aKey
462
- {
463
- dictionary_removeValue(self, aKey);
464
- }
465
-
466
- /*!
467
- Removes each entry in allKeys from the receiver.
468
- @param allKeys an array of keys that will be removed from the dictionary
469
- */
470
- - (void)removeObjectsForKeys:(CPArray)allKeys
471
- {
472
- var index = allKeys.length;
473
-
474
- while (index--)
475
- dictionary_removeValue(self, allKeys[index]);
476
- }
477
-
478
- /*
479
- Instance.removeObjectForKey(aKey)
480
- {
481
- var entry= this._dictionary[aKey];
482
-
483
- if(entry)
484
- {
485
- var range= CPMakeRange(entry.index, 1);
486
-
487
- this._keys.removeObjectsInRange(range);
488
- this._objects.removeObjectsInRange(range);
489
-
490
- delete this._dictionary[aKey];
491
- }
492
- }
493
-
494
- Instance.setDictionary(aDictionary)
495
- {
496
- this._keys= CPArray.arrayWithArray(aDictionary.allKeys());
497
- this._objects= CPArray.arrayWithArray(aDictionary.allValues());
498
-
499
- this._dictionary= { };
500
-
501
- var i= this._keys.count();
502
- while(i--) this._dictionary[this._keys[i]]= { object: this._objects[i], index: i };
503
- }
504
- */
505
- /*!
506
- Adds an entry into the dictionary.
507
- @param anObject the object for the entry
508
- @param aKey the entry's key
509
- */
510
- - (void)setObject:(id)anObject forKey:(id)aKey
511
- {
512
- dictionary_setValue(self, aKey, anObject);
513
- }
514
- /*
515
- Instance.setValueForKey(aValue, aKey)
516
- {
517
- if(!aValue) this.removeObjectForKey(aKey);
518
- else this.setObjectForKey(aValue, aKey);
519
- }
520
-
521
- Instance.copy()
522
- {
523
- return CPDictionary.alloc().dictionaryWithDictionary(this);
524
- }
525
- */
526
-
527
- /*!
528
- Take all the key/value pairs in aDictionary and apply them to this dictionary.
529
- */
530
- - (void)addEntriesFromDictionary:(CPDictionary)aDictionary
531
- {
532
- if (!aDictionary)
533
- return;
534
-
535
- var keys = [aDictionary allKeys],
536
- index = [keys count];
537
-
538
- while (index--)
539
- {
540
- var key = keys[index];
541
-
542
- [self setObject:[aDictionary objectForKey:key] forKey:key];
543
- }
544
- }
545
-
546
- /*!
547
- Returns a human readable description of the dictionary.
548
- */
549
- - (CPString)description
550
- {
551
- var description = @"CPDictionary {\n";
552
-
553
- var i = _keys.length;
554
-
555
- while (i--)
556
- {
557
- description += _keys[i] + ":";
558
-
559
- var object = _buckets[_keys[i]];
560
-
561
- if (object && object.isa)
562
- description += [object description];
563
- else
564
- description += object;
565
-
566
- description += "\n";
567
- }
568
-
569
- description += "}";
570
-
571
- return description;
572
- }
573
-
574
- @end
575
-
576
- @implementation CPDictionary (CPCoding)
577
-
578
- /*
579
- Initializes the dictionary by unarchiving the data from a coder.
580
- @param aCoder the coder from which the data will be unarchived.
581
- @return the initialized dictionary
582
- */
583
- - (id)initWithCoder:(CPCoder)aCoder
584
- {
585
- return [aCoder _decodeDictionaryOfObjectsForKey:@"CP.objects"];
586
- }
587
-
588
- /*!
589
- Archives the dictionary to a provided coder.
590
- @param aCoder the coder to which the dictionary data will be archived.
591
- */
592
- - (void)encodeWithCoder:(CPCoder)aCoder
593
- {
594
- [aCoder _encodeDictionaryOfObjects:self forKey:@"CP.objects"];
595
- }
596
-
597
- @end
598
-
599
- /*!
600
- @class CPMutableDictionary
601
- @ingroup compatability
602
-
603
- This class is just an empty subclass of CPDictionary.
604
- CPDictionary already implements mutable methods and
605
- this class only exists for source compatability.
606
- */
607
- @implementation CPMutableDictionary : CPDictionary
608
-
609
- @end
610
-
611
- objj_dictionary.prototype.isa = CPDictionary;