swagr 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (359) hide show
  1. data/bin/swagr +15 -0
  2. data/examples/examples01/app.rb +6 -2
  3. data/examples/examples01/coffee/data_port.coffee +2 -0
  4. data/examples/examples01/static/css/codemirror.css +1247 -0
  5. data/examples/examples01/static/js/codemirror-compressed-3-0.js +5 -0
  6. data/examples/examples01/static/js/codemirror/keymap/emacs.js +30 -0
  7. data/examples/examples01/static/js/codemirror/keymap/vim.js +2298 -0
  8. data/examples/examples01/static/js/codemirror/lib/codemirror.css +239 -0
  9. data/examples/examples01/static/js/codemirror/lib/codemirror.js +4553 -0
  10. data/examples/examples01/static/js/codemirror/lib/util/closetag.js +85 -0
  11. data/examples/examples01/static/js/codemirror/lib/util/colorize.js +29 -0
  12. data/examples/examples01/static/js/codemirror/lib/util/continuecomment.js +36 -0
  13. data/examples/examples01/static/js/codemirror/lib/util/continuelist.js +28 -0
  14. data/examples/examples01/static/js/codemirror/lib/util/dialog.css +32 -0
  15. data/examples/examples01/static/js/codemirror/lib/util/dialog.js +75 -0
  16. data/examples/examples01/static/js/codemirror/lib/util/foldcode.js +182 -0
  17. data/examples/examples01/static/js/codemirror/lib/util/formatting.js +108 -0
  18. data/examples/examples01/static/js/codemirror/lib/util/javascript-hint.js +137 -0
  19. data/examples/examples01/static/js/codemirror/lib/util/loadmode.js +51 -0
  20. data/examples/examples01/static/js/codemirror/lib/util/match-highlighter.js +46 -0
  21. data/examples/examples01/static/js/codemirror/lib/util/matchbrackets.js +63 -0
  22. data/examples/examples01/static/js/codemirror/lib/util/multiplex.js +95 -0
  23. data/examples/examples01/static/js/codemirror/lib/util/overlay.js +59 -0
  24. data/examples/examples01/static/js/codemirror/lib/util/pig-hint.js +117 -0
  25. data/examples/examples01/static/js/codemirror/lib/util/runmode-standalone.js +90 -0
  26. data/examples/examples01/static/js/codemirror/lib/util/runmode.js +52 -0
  27. data/examples/examples01/static/js/codemirror/lib/util/search.js +119 -0
  28. data/examples/examples01/static/js/codemirror/lib/util/searchcursor.js +119 -0
  29. data/examples/examples01/static/js/codemirror/lib/util/simple-hint.css +16 -0
  30. data/examples/examples01/static/js/codemirror/lib/util/simple-hint.js +102 -0
  31. data/examples/examples01/static/js/codemirror/lib/util/xml-hint.js +131 -0
  32. data/examples/examples01/static/js/codemirror/mode/clike/clike.js +300 -0
  33. data/examples/examples01/static/js/codemirror/mode/clike/index.html +103 -0
  34. data/examples/examples01/static/js/codemirror/mode/clike/scala.html +767 -0
  35. data/examples/examples01/static/js/codemirror/mode/clojure/clojure.js +206 -0
  36. data/examples/examples01/static/js/codemirror/mode/clojure/index.html +67 -0
  37. data/examples/examples01/static/js/codemirror/mode/coffeescript/LICENSE +22 -0
  38. data/examples/examples01/static/js/codemirror/mode/coffeescript/coffeescript.js +346 -0
  39. data/examples/examples01/static/js/codemirror/mode/coffeescript/index.html +728 -0
  40. data/examples/examples01/static/js/codemirror/mode/commonlisp/commonlisp.js +101 -0
  41. data/examples/examples01/static/js/codemirror/mode/commonlisp/index.html +165 -0
  42. data/examples/examples01/static/js/codemirror/mode/css/css.js +465 -0
  43. data/examples/examples01/static/js/codemirror/mode/css/index.html +58 -0
  44. data/examples/examples01/static/js/codemirror/mode/css/test.js +501 -0
  45. data/examples/examples01/static/js/codemirror/mode/diff/diff.js +32 -0
  46. data/examples/examples01/static/js/codemirror/mode/diff/index.html +105 -0
  47. data/examples/examples01/static/js/codemirror/mode/ecl/ecl.js +192 -0
  48. data/examples/examples01/static/js/codemirror/mode/ecl/index.html +39 -0
  49. data/examples/examples01/static/js/codemirror/mode/erlang/erlang.js +463 -0
  50. data/examples/examples01/static/js/codemirror/mode/erlang/index.html +64 -0
  51. data/examples/examples01/static/js/codemirror/mode/gfm/gfm.js +94 -0
  52. data/examples/examples01/static/js/codemirror/mode/gfm/index.html +70 -0
  53. data/examples/examples01/static/js/codemirror/mode/gfm/test.js +225 -0
  54. data/examples/examples01/static/js/codemirror/mode/go/go.js +165 -0
  55. data/examples/examples01/static/js/codemirror/mode/go/index.html +74 -0
  56. data/examples/examples01/static/js/codemirror/mode/groovy/groovy.js +210 -0
  57. data/examples/examples01/static/js/codemirror/mode/groovy/index.html +73 -0
  58. data/examples/examples01/static/js/codemirror/mode/haskell/haskell.js +242 -0
  59. data/examples/examples01/static/js/codemirror/mode/haskell/index.html +62 -0
  60. data/examples/examples01/static/js/codemirror/mode/haxe/haxe.js +429 -0
  61. data/examples/examples01/static/js/codemirror/mode/haxe/index.html +90 -0
  62. data/examples/examples01/static/js/codemirror/mode/htmlembedded/htmlembedded.js +73 -0
  63. data/examples/examples01/static/js/codemirror/mode/htmlembedded/index.html +49 -0
  64. data/examples/examples01/static/js/codemirror/mode/htmlmixed/htmlmixed.js +84 -0
  65. data/examples/examples01/static/js/codemirror/mode/htmlmixed/index.html +52 -0
  66. data/examples/examples01/static/js/codemirror/mode/http/http.js +98 -0
  67. data/examples/examples01/static/js/codemirror/mode/http/index.html +32 -0
  68. data/examples/examples01/static/js/codemirror/mode/javascript/index.html +88 -0
  69. data/examples/examples01/static/js/codemirror/mode/javascript/javascript.js +411 -0
  70. data/examples/examples01/static/js/codemirror/mode/javascript/typescript.html +48 -0
  71. data/examples/examples01/static/js/codemirror/mode/jinja2/index.html +38 -0
  72. data/examples/examples01/static/js/codemirror/mode/jinja2/jinja2.js +42 -0
  73. data/examples/examples01/static/js/codemirror/mode/less/index.html +741 -0
  74. data/examples/examples01/static/js/codemirror/mode/less/less.js +266 -0
  75. data/examples/examples01/static/js/codemirror/mode/lua/index.html +74 -0
  76. data/examples/examples01/static/js/codemirror/mode/lua/lua.js +140 -0
  77. data/examples/examples01/static/js/codemirror/mode/markdown/index.html +344 -0
  78. data/examples/examples01/static/js/codemirror/mode/markdown/markdown.js +474 -0
  79. data/examples/examples01/static/js/codemirror/mode/markdown/test.js +1266 -0
  80. data/examples/examples01/static/js/codemirror/mode/mysql/index.html +41 -0
  81. data/examples/examples01/static/js/codemirror/mode/mysql/mysql.js +203 -0
  82. data/examples/examples01/static/js/codemirror/mode/ntriples/index.html +33 -0
  83. data/examples/examples01/static/js/codemirror/mode/ntriples/ntriples.js +170 -0
  84. data/examples/examples01/static/js/codemirror/mode/ocaml/index.html +131 -0
  85. data/examples/examples01/static/js/codemirror/mode/ocaml/ocaml.js +113 -0
  86. data/examples/examples01/static/js/codemirror/mode/pascal/LICENSE +7 -0
  87. data/examples/examples01/static/js/codemirror/mode/pascal/index.html +48 -0
  88. data/examples/examples01/static/js/codemirror/mode/pascal/pascal.js +94 -0
  89. data/examples/examples01/static/js/codemirror/mode/perl/LICENSE +19 -0
  90. data/examples/examples01/static/js/codemirror/mode/perl/index.html +62 -0
  91. data/examples/examples01/static/js/codemirror/mode/perl/perl.js +816 -0
  92. data/examples/examples01/static/js/codemirror/mode/php/index.html +51 -0
  93. data/examples/examples01/static/js/codemirror/mode/php/php.js +129 -0
  94. data/examples/examples01/static/js/codemirror/mode/pig/index.html +42 -0
  95. data/examples/examples01/static/js/codemirror/mode/pig/pig.js +171 -0
  96. data/examples/examples01/static/js/codemirror/mode/plsql/index.html +62 -0
  97. data/examples/examples01/static/js/codemirror/mode/plsql/plsql.js +216 -0
  98. data/examples/examples01/static/js/codemirror/mode/properties/index.html +41 -0
  99. data/examples/examples01/static/js/codemirror/mode/properties/properties.js +63 -0
  100. data/examples/examples01/static/js/codemirror/mode/python/LICENSE.txt +21 -0
  101. data/examples/examples01/static/js/codemirror/mode/python/index.html +124 -0
  102. data/examples/examples01/static/js/codemirror/mode/python/python.js +340 -0
  103. data/examples/examples01/static/js/codemirror/mode/r/LICENSE +24 -0
  104. data/examples/examples01/static/js/codemirror/mode/r/index.html +74 -0
  105. data/examples/examples01/static/js/codemirror/mode/r/r.js +141 -0
  106. data/examples/examples01/static/js/codemirror/mode/rpm/changes/changes.js +19 -0
  107. data/examples/examples01/static/js/codemirror/mode/rpm/changes/index.html +53 -0
  108. data/examples/examples01/static/js/codemirror/mode/rpm/spec/index.html +99 -0
  109. data/examples/examples01/static/js/codemirror/mode/rpm/spec/spec.css +5 -0
  110. data/examples/examples01/static/js/codemirror/mode/rpm/spec/spec.js +66 -0
  111. data/examples/examples01/static/js/codemirror/mode/rst/index.html +526 -0
  112. data/examples/examples01/static/js/codemirror/mode/rst/rst.js +314 -0
  113. data/examples/examples01/static/js/codemirror/mode/ruby/LICENSE +24 -0
  114. data/examples/examples01/static/js/codemirror/mode/ruby/index.html +173 -0
  115. data/examples/examples01/static/js/codemirror/mode/ruby/ruby.js +195 -0
  116. data/examples/examples01/static/js/codemirror/mode/rust/index.html +48 -0
  117. data/examples/examples01/static/js/codemirror/mode/rust/rust.js +432 -0
  118. data/examples/examples01/static/js/codemirror/mode/scheme/index.html +65 -0
  119. data/examples/examples01/static/js/codemirror/mode/scheme/scheme.js +230 -0
  120. data/examples/examples01/static/js/codemirror/mode/shell/index.html +51 -0
  121. data/examples/examples01/static/js/codemirror/mode/shell/shell.js +118 -0
  122. data/examples/examples01/static/js/codemirror/mode/sieve/LICENSE +23 -0
  123. data/examples/examples01/static/js/codemirror/mode/sieve/index.html +81 -0
  124. data/examples/examples01/static/js/codemirror/mode/sieve/sieve.js +156 -0
  125. data/examples/examples01/static/js/codemirror/mode/smalltalk/index.html +57 -0
  126. data/examples/examples01/static/js/codemirror/mode/smalltalk/smalltalk.js +139 -0
  127. data/examples/examples01/static/js/codemirror/mode/smarty/index.html +83 -0
  128. data/examples/examples01/static/js/codemirror/mode/smarty/smarty.js +148 -0
  129. data/examples/examples01/static/js/codemirror/mode/sparql/index.html +42 -0
  130. data/examples/examples01/static/js/codemirror/mode/sparql/sparql.js +143 -0
  131. data/examples/examples01/static/js/codemirror/mode/stex/index.html +98 -0
  132. data/examples/examples01/static/js/codemirror/mode/stex/stex.js +175 -0
  133. data/examples/examples01/static/js/codemirror/mode/stex/test.js +343 -0
  134. data/examples/examples01/static/js/codemirror/mode/tiddlywiki/index.html +142 -0
  135. data/examples/examples01/static/js/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  136. data/examples/examples01/static/js/codemirror/mode/tiddlywiki/tiddlywiki.js +353 -0
  137. data/examples/examples01/static/js/codemirror/mode/tiki/index.html +81 -0
  138. data/examples/examples01/static/js/codemirror/mode/tiki/tiki.css +26 -0
  139. data/examples/examples01/static/js/codemirror/mode/tiki/tiki.js +309 -0
  140. data/examples/examples01/static/js/codemirror/mode/vb/LICENSE.txt +21 -0
  141. data/examples/examples01/static/js/codemirror/mode/vb/index.html +88 -0
  142. data/examples/examples01/static/js/codemirror/mode/vb/vb.js +260 -0
  143. data/examples/examples01/static/js/codemirror/mode/vbscript/index.html +42 -0
  144. data/examples/examples01/static/js/codemirror/mode/vbscript/vbscript.js +26 -0
  145. data/examples/examples01/static/js/codemirror/mode/velocity/index.html +103 -0
  146. data/examples/examples01/static/js/codemirror/mode/velocity/velocity.js +144 -0
  147. data/examples/examples01/static/js/codemirror/mode/verilog/index.html +210 -0
  148. data/examples/examples01/static/js/codemirror/mode/verilog/verilog.js +182 -0
  149. data/examples/examples01/static/js/codemirror/mode/xml/index.html +45 -0
  150. data/examples/examples01/static/js/codemirror/mode/xml/xml.js +324 -0
  151. data/examples/examples01/static/js/codemirror/mode/xquery/LICENSE +20 -0
  152. data/examples/examples01/static/js/codemirror/mode/xquery/index.html +221 -0
  153. data/examples/examples01/static/js/codemirror/mode/xquery/test.js +77 -0
  154. data/examples/examples01/static/js/codemirror/mode/xquery/xquery.js +450 -0
  155. data/examples/examples01/static/js/codemirror/mode/yaml/index.html +68 -0
  156. data/examples/examples01/static/js/codemirror/mode/yaml/yaml.js +95 -0
  157. data/examples/examples01/static/js/codemirror/mode/z80/index.html +39 -0
  158. data/examples/examples01/static/js/codemirror/mode/z80/z80.js +113 -0
  159. data/examples/examples01/static/js/codemirror/theme/ambiance-mobile.css +6 -0
  160. data/examples/examples01/static/js/codemirror/theme/ambiance.css +76 -0
  161. data/examples/examples01/static/js/codemirror/theme/blackboard.css +25 -0
  162. data/examples/examples01/static/js/codemirror/theme/cobalt.css +18 -0
  163. data/examples/examples01/static/js/codemirror/theme/eclipse.css +25 -0
  164. data/examples/examples01/static/js/codemirror/theme/elegant.css +10 -0
  165. data/examples/examples01/static/js/codemirror/theme/erlang-dark.css +21 -0
  166. data/examples/examples01/static/js/codemirror/theme/lesser-dark.css +44 -0
  167. data/examples/examples01/static/js/codemirror/theme/monokai.css +28 -0
  168. data/examples/examples01/static/js/codemirror/theme/neat.css +9 -0
  169. data/examples/examples01/static/js/codemirror/theme/night.css +21 -0
  170. data/examples/examples01/static/js/codemirror/theme/rubyblue.css +21 -0
  171. data/examples/examples01/static/js/codemirror/theme/solarized.css +207 -0
  172. data/examples/examples01/static/js/codemirror/theme/twilight.css +26 -0
  173. data/examples/examples01/static/js/codemirror/theme/vibrant-ink.css +27 -0
  174. data/examples/examples01/static/js/codemirror/theme/xq-dark.css +46 -0
  175. data/examples/examples01/static/js/d3.v3.min.js +2 -2
  176. data/examples/examples01/static/test/cm.html +33 -0
  177. data/examples/examples01/views/about.slim +15 -0
  178. data/examples/examples01/views/index.slim +1 -1
  179. data/examples/examples01/views/layout.slim +1 -0
  180. data/examples/examples01/views/layout_cm.slim +17 -0
  181. data/examples/examples01/views/navbar.slim +4 -4
  182. data/lib/swagr/version.rb +1 -1
  183. data/templates/app.rb +4 -0
  184. data/templates/static/js/codemirror/keymap/emacs.js +30 -0
  185. data/templates/static/js/codemirror/keymap/vim.js +2298 -0
  186. data/templates/static/js/codemirror/lib/codemirror.css +239 -0
  187. data/templates/static/js/codemirror/lib/codemirror.js +4553 -0
  188. data/templates/static/js/codemirror/lib/util/closetag.js +85 -0
  189. data/templates/static/js/codemirror/lib/util/colorize.js +29 -0
  190. data/templates/static/js/codemirror/lib/util/continuecomment.js +36 -0
  191. data/templates/static/js/codemirror/lib/util/continuelist.js +28 -0
  192. data/templates/static/js/codemirror/lib/util/dialog.css +32 -0
  193. data/templates/static/js/codemirror/lib/util/dialog.js +75 -0
  194. data/templates/static/js/codemirror/lib/util/foldcode.js +182 -0
  195. data/templates/static/js/codemirror/lib/util/formatting.js +108 -0
  196. data/templates/static/js/codemirror/lib/util/javascript-hint.js +137 -0
  197. data/templates/static/js/codemirror/lib/util/loadmode.js +51 -0
  198. data/templates/static/js/codemirror/lib/util/match-highlighter.js +46 -0
  199. data/templates/static/js/codemirror/lib/util/matchbrackets.js +63 -0
  200. data/templates/static/js/codemirror/lib/util/multiplex.js +95 -0
  201. data/templates/static/js/codemirror/lib/util/overlay.js +59 -0
  202. data/templates/static/js/codemirror/lib/util/pig-hint.js +117 -0
  203. data/templates/static/js/codemirror/lib/util/runmode-standalone.js +90 -0
  204. data/templates/static/js/codemirror/lib/util/runmode.js +52 -0
  205. data/templates/static/js/codemirror/lib/util/search.js +119 -0
  206. data/templates/static/js/codemirror/lib/util/searchcursor.js +119 -0
  207. data/templates/static/js/codemirror/lib/util/simple-hint.css +16 -0
  208. data/templates/static/js/codemirror/lib/util/simple-hint.js +102 -0
  209. data/templates/static/js/codemirror/lib/util/xml-hint.js +131 -0
  210. data/templates/static/js/codemirror/mode/clike/clike.js +300 -0
  211. data/templates/static/js/codemirror/mode/clike/index.html +103 -0
  212. data/templates/static/js/codemirror/mode/clike/scala.html +767 -0
  213. data/templates/static/js/codemirror/mode/clojure/clojure.js +206 -0
  214. data/templates/static/js/codemirror/mode/clojure/index.html +67 -0
  215. data/templates/static/js/codemirror/mode/coffeescript/LICENSE +22 -0
  216. data/templates/static/js/codemirror/mode/coffeescript/coffeescript.js +346 -0
  217. data/templates/static/js/codemirror/mode/coffeescript/index.html +728 -0
  218. data/templates/static/js/codemirror/mode/commonlisp/commonlisp.js +101 -0
  219. data/templates/static/js/codemirror/mode/commonlisp/index.html +165 -0
  220. data/templates/static/js/codemirror/mode/css/css.js +465 -0
  221. data/templates/static/js/codemirror/mode/css/index.html +58 -0
  222. data/templates/static/js/codemirror/mode/css/test.js +501 -0
  223. data/templates/static/js/codemirror/mode/diff/diff.js +32 -0
  224. data/templates/static/js/codemirror/mode/diff/index.html +105 -0
  225. data/templates/static/js/codemirror/mode/ecl/ecl.js +192 -0
  226. data/templates/static/js/codemirror/mode/ecl/index.html +39 -0
  227. data/templates/static/js/codemirror/mode/erlang/erlang.js +463 -0
  228. data/templates/static/js/codemirror/mode/erlang/index.html +64 -0
  229. data/templates/static/js/codemirror/mode/gfm/gfm.js +94 -0
  230. data/templates/static/js/codemirror/mode/gfm/index.html +70 -0
  231. data/templates/static/js/codemirror/mode/gfm/test.js +225 -0
  232. data/templates/static/js/codemirror/mode/go/go.js +165 -0
  233. data/templates/static/js/codemirror/mode/go/index.html +74 -0
  234. data/templates/static/js/codemirror/mode/groovy/groovy.js +210 -0
  235. data/templates/static/js/codemirror/mode/groovy/index.html +73 -0
  236. data/templates/static/js/codemirror/mode/haskell/haskell.js +242 -0
  237. data/templates/static/js/codemirror/mode/haskell/index.html +62 -0
  238. data/templates/static/js/codemirror/mode/haxe/haxe.js +429 -0
  239. data/templates/static/js/codemirror/mode/haxe/index.html +90 -0
  240. data/templates/static/js/codemirror/mode/htmlembedded/htmlembedded.js +73 -0
  241. data/templates/static/js/codemirror/mode/htmlembedded/index.html +49 -0
  242. data/templates/static/js/codemirror/mode/htmlmixed/htmlmixed.js +84 -0
  243. data/templates/static/js/codemirror/mode/htmlmixed/index.html +52 -0
  244. data/templates/static/js/codemirror/mode/http/http.js +98 -0
  245. data/templates/static/js/codemirror/mode/http/index.html +32 -0
  246. data/templates/static/js/codemirror/mode/javascript/index.html +88 -0
  247. data/templates/static/js/codemirror/mode/javascript/javascript.js +411 -0
  248. data/templates/static/js/codemirror/mode/javascript/typescript.html +48 -0
  249. data/templates/static/js/codemirror/mode/jinja2/index.html +38 -0
  250. data/templates/static/js/codemirror/mode/jinja2/jinja2.js +42 -0
  251. data/templates/static/js/codemirror/mode/less/index.html +741 -0
  252. data/templates/static/js/codemirror/mode/less/less.js +266 -0
  253. data/templates/static/js/codemirror/mode/lua/index.html +74 -0
  254. data/templates/static/js/codemirror/mode/lua/lua.js +140 -0
  255. data/templates/static/js/codemirror/mode/markdown/index.html +344 -0
  256. data/templates/static/js/codemirror/mode/markdown/markdown.js +474 -0
  257. data/templates/static/js/codemirror/mode/markdown/test.js +1266 -0
  258. data/templates/static/js/codemirror/mode/mysql/index.html +41 -0
  259. data/templates/static/js/codemirror/mode/mysql/mysql.js +203 -0
  260. data/templates/static/js/codemirror/mode/ntriples/index.html +33 -0
  261. data/templates/static/js/codemirror/mode/ntriples/ntriples.js +170 -0
  262. data/templates/static/js/codemirror/mode/ocaml/index.html +131 -0
  263. data/templates/static/js/codemirror/mode/ocaml/ocaml.js +113 -0
  264. data/templates/static/js/codemirror/mode/pascal/LICENSE +7 -0
  265. data/templates/static/js/codemirror/mode/pascal/index.html +48 -0
  266. data/templates/static/js/codemirror/mode/pascal/pascal.js +94 -0
  267. data/templates/static/js/codemirror/mode/perl/LICENSE +19 -0
  268. data/templates/static/js/codemirror/mode/perl/index.html +62 -0
  269. data/templates/static/js/codemirror/mode/perl/perl.js +816 -0
  270. data/templates/static/js/codemirror/mode/php/index.html +51 -0
  271. data/templates/static/js/codemirror/mode/php/php.js +129 -0
  272. data/templates/static/js/codemirror/mode/pig/index.html +42 -0
  273. data/templates/static/js/codemirror/mode/pig/pig.js +171 -0
  274. data/templates/static/js/codemirror/mode/plsql/index.html +62 -0
  275. data/templates/static/js/codemirror/mode/plsql/plsql.js +216 -0
  276. data/templates/static/js/codemirror/mode/properties/index.html +41 -0
  277. data/templates/static/js/codemirror/mode/properties/properties.js +63 -0
  278. data/templates/static/js/codemirror/mode/python/LICENSE.txt +21 -0
  279. data/templates/static/js/codemirror/mode/python/index.html +124 -0
  280. data/templates/static/js/codemirror/mode/python/python.js +340 -0
  281. data/templates/static/js/codemirror/mode/r/LICENSE +24 -0
  282. data/templates/static/js/codemirror/mode/r/index.html +74 -0
  283. data/templates/static/js/codemirror/mode/r/r.js +141 -0
  284. data/templates/static/js/codemirror/mode/rpm/changes/changes.js +19 -0
  285. data/templates/static/js/codemirror/mode/rpm/changes/index.html +53 -0
  286. data/templates/static/js/codemirror/mode/rpm/spec/index.html +99 -0
  287. data/templates/static/js/codemirror/mode/rpm/spec/spec.css +5 -0
  288. data/templates/static/js/codemirror/mode/rpm/spec/spec.js +66 -0
  289. data/templates/static/js/codemirror/mode/rst/index.html +526 -0
  290. data/templates/static/js/codemirror/mode/rst/rst.js +314 -0
  291. data/templates/static/js/codemirror/mode/ruby/LICENSE +24 -0
  292. data/templates/static/js/codemirror/mode/ruby/index.html +173 -0
  293. data/templates/static/js/codemirror/mode/ruby/ruby.js +195 -0
  294. data/templates/static/js/codemirror/mode/rust/index.html +48 -0
  295. data/templates/static/js/codemirror/mode/rust/rust.js +432 -0
  296. data/templates/static/js/codemirror/mode/scheme/index.html +65 -0
  297. data/templates/static/js/codemirror/mode/scheme/scheme.js +230 -0
  298. data/templates/static/js/codemirror/mode/shell/index.html +51 -0
  299. data/templates/static/js/codemirror/mode/shell/shell.js +118 -0
  300. data/templates/static/js/codemirror/mode/sieve/LICENSE +23 -0
  301. data/templates/static/js/codemirror/mode/sieve/index.html +81 -0
  302. data/templates/static/js/codemirror/mode/sieve/sieve.js +156 -0
  303. data/templates/static/js/codemirror/mode/smalltalk/index.html +57 -0
  304. data/templates/static/js/codemirror/mode/smalltalk/smalltalk.js +139 -0
  305. data/templates/static/js/codemirror/mode/smarty/index.html +83 -0
  306. data/templates/static/js/codemirror/mode/smarty/smarty.js +148 -0
  307. data/templates/static/js/codemirror/mode/sparql/index.html +42 -0
  308. data/templates/static/js/codemirror/mode/sparql/sparql.js +143 -0
  309. data/templates/static/js/codemirror/mode/stex/index.html +98 -0
  310. data/templates/static/js/codemirror/mode/stex/stex.js +175 -0
  311. data/templates/static/js/codemirror/mode/stex/test.js +343 -0
  312. data/templates/static/js/codemirror/mode/tiddlywiki/index.html +142 -0
  313. data/templates/static/js/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  314. data/templates/static/js/codemirror/mode/tiddlywiki/tiddlywiki.js +353 -0
  315. data/templates/static/js/codemirror/mode/tiki/index.html +81 -0
  316. data/templates/static/js/codemirror/mode/tiki/tiki.css +26 -0
  317. data/templates/static/js/codemirror/mode/tiki/tiki.js +309 -0
  318. data/templates/static/js/codemirror/mode/vb/LICENSE.txt +21 -0
  319. data/templates/static/js/codemirror/mode/vb/index.html +88 -0
  320. data/templates/static/js/codemirror/mode/vb/vb.js +260 -0
  321. data/templates/static/js/codemirror/mode/vbscript/index.html +42 -0
  322. data/templates/static/js/codemirror/mode/vbscript/vbscript.js +26 -0
  323. data/templates/static/js/codemirror/mode/velocity/index.html +103 -0
  324. data/templates/static/js/codemirror/mode/velocity/velocity.js +144 -0
  325. data/templates/static/js/codemirror/mode/verilog/index.html +210 -0
  326. data/templates/static/js/codemirror/mode/verilog/verilog.js +182 -0
  327. data/templates/static/js/codemirror/mode/xml/index.html +45 -0
  328. data/templates/static/js/codemirror/mode/xml/xml.js +324 -0
  329. data/templates/static/js/codemirror/mode/xquery/LICENSE +20 -0
  330. data/templates/static/js/codemirror/mode/xquery/index.html +221 -0
  331. data/templates/static/js/codemirror/mode/xquery/test.js +77 -0
  332. data/templates/static/js/codemirror/mode/xquery/xquery.js +450 -0
  333. data/templates/static/js/codemirror/mode/yaml/index.html +68 -0
  334. data/templates/static/js/codemirror/mode/yaml/yaml.js +95 -0
  335. data/templates/static/js/codemirror/mode/z80/index.html +39 -0
  336. data/templates/static/js/codemirror/mode/z80/z80.js +113 -0
  337. data/templates/static/js/codemirror/theme/ambiance-mobile.css +6 -0
  338. data/templates/static/js/codemirror/theme/ambiance.css +76 -0
  339. data/templates/static/js/codemirror/theme/blackboard.css +25 -0
  340. data/templates/static/js/codemirror/theme/cobalt.css +18 -0
  341. data/templates/static/js/codemirror/theme/eclipse.css +25 -0
  342. data/templates/static/js/codemirror/theme/elegant.css +10 -0
  343. data/templates/static/js/codemirror/theme/erlang-dark.css +21 -0
  344. data/templates/static/js/codemirror/theme/lesser-dark.css +44 -0
  345. data/templates/static/js/codemirror/theme/monokai.css +28 -0
  346. data/templates/static/js/codemirror/theme/neat.css +9 -0
  347. data/templates/static/js/codemirror/theme/night.css +21 -0
  348. data/templates/static/js/codemirror/theme/rubyblue.css +21 -0
  349. data/templates/static/js/codemirror/theme/solarized.css +207 -0
  350. data/templates/static/js/codemirror/theme/twilight.css +26 -0
  351. data/templates/static/js/codemirror/theme/vibrant-ink.css +27 -0
  352. data/templates/static/js/codemirror/theme/xq-dark.css +46 -0
  353. data/templates/static/js/d3.v3.min.js +2 -2
  354. data/templates/static/test/cm.html +33 -0
  355. data/templates/views/about.slim +15 -0
  356. data/templates/views/index.slim +1 -1
  357. data/templates/views/layout.slim +1 -0
  358. data/templates/views/navbar.slim +4 -4
  359. metadata +347 -2
@@ -0,0 +1,206 @@
1
+ /**
2
+ * Author: Hans Engel
3
+ * Branched from CodeMirror's Scheme mode (by Koh Zi Han, based on implementation by Koh Zi Chun)
4
+ */
5
+ CodeMirror.defineMode("clojure", function () {
6
+ var BUILTIN = "builtin", COMMENT = "comment", STRING = "string",
7
+ ATOM = "atom", NUMBER = "number", BRACKET = "bracket", KEYWORD = "keyword";
8
+ var INDENT_WORD_SKIP = 2;
9
+
10
+ function makeKeywords(str) {
11
+ var obj = {}, words = str.split(" ");
12
+ for (var i = 0; i < words.length; ++i) obj[words[i]] = true;
13
+ return obj;
14
+ }
15
+
16
+ var atoms = makeKeywords("true false nil");
17
+
18
+ var keywords = makeKeywords(
19
+ "defn defn- def def- defonce defmulti defmethod defmacro defstruct deftype defprotocol defrecord defproject deftest slice defalias defhinted defmacro- defn-memo defnk defnk defonce- defunbound defunbound- defvar defvar- let letfn do case cond condp for loop recur when when-not when-let when-first if if-let if-not . .. -> ->> doto and or dosync doseq dotimes dorun doall load import unimport ns in-ns refer try catch finally throw with-open with-local-vars binding gen-class gen-and-load-class gen-and-save-class handler-case handle");
20
+
21
+ var builtins = makeKeywords(
22
+ "* *1 *2 *3 *agent* *allow-unresolved-vars* *assert *clojure-version* *command-line-args* *compile-files* *compile-path* *e *err* *file* *flush-on-newline* *in* *macro-meta* *math-context* *ns* *out* *print-dup* *print-length* *print-level* *print-meta* *print-readably* *read-eval* *source-path* *use-context-classloader* *warn-on-reflection* + - / < <= = == > >= accessor aclone agent agent-errors aget alength alias all-ns alter alter-meta! alter-var-root amap ancestors and apply areduce array-map aset aset-boolean aset-byte aset-char aset-double aset-float aset-int aset-long aset-short assert assoc assoc! assoc-in associative? atom await await-for await1 bases bean bigdec bigint binding bit-and bit-and-not bit-clear bit-flip bit-not bit-or bit-set bit-shift-left bit-shift-right bit-test bit-xor boolean boolean-array booleans bound-fn bound-fn* butlast byte byte-array bytes case cast char char-array char-escape-string char-name-string char? chars chunk chunk-append chunk-buffer chunk-cons chunk-first chunk-next chunk-rest chunked-seq? class class? clear-agent-errors clojure-version coll? comment commute comp comparator compare compare-and-set! compile complement concat cond condp conj conj! cons constantly construct-proxy contains? count counted? create-ns create-struct cycle dec decimal? declare definline defmacro defmethod defmulti defn defn- defonce defstruct delay delay? deliver deref derive descendants destructure disj disj! dissoc dissoc! distinct distinct? doall doc dorun doseq dosync dotimes doto double double-array doubles drop drop-last drop-while empty empty? ensure enumeration-seq eval even? every? extend extend-protocol extend-type extends? extenders false? ffirst file-seq filter find find-doc find-ns find-var first float float-array float? floats flush fn fn? fnext for force format future future-call future-cancel future-cancelled? future-done? future? gen-class gen-interface gensym get get-in get-method get-proxy-class get-thread-bindings get-validator hash hash-map hash-set identical? identity if-let if-not ifn? import in-ns inc init-proxy instance? int int-array integer? interleave intern interpose into into-array ints io! isa? iterate iterator-seq juxt key keys keyword keyword? last lazy-cat lazy-seq let letfn line-seq list list* list? load load-file load-reader load-string loaded-libs locking long long-array longs loop macroexpand macroexpand-1 make-array make-hierarchy map map? mapcat max max-key memfn memoize merge merge-with meta method-sig methods min min-key mod name namespace neg? newline next nfirst nil? nnext not not-any? not-empty not-every? not= ns ns-aliases ns-imports ns-interns ns-map ns-name ns-publics ns-refers ns-resolve ns-unalias ns-unmap nth nthnext num number? odd? or parents partial partition pcalls peek persistent! pmap pop pop! pop-thread-bindings pos? pr pr-str prefer-method prefers primitives-classnames print print-ctor print-doc print-dup print-method print-namespace-doc print-simple print-special-doc print-str printf println println-str prn prn-str promise proxy proxy-call-with-super proxy-mappings proxy-name proxy-super push-thread-bindings pvalues quot rand rand-int range ratio? rational? rationalize re-find re-groups re-matcher re-matches re-pattern re-seq read read-line read-string reify reduce ref ref-history-count ref-max-history ref-min-history ref-set refer refer-clojure release-pending-sends rem remove remove-method remove-ns repeat repeatedly replace replicate require reset! reset-meta! resolve rest resultset-seq reverse reversible? rseq rsubseq satisfies? second select-keys send send-off seq seq? seque sequence sequential? set set-validator! set? short short-array shorts shutdown-agents slurp some sort sort-by sorted-map sorted-map-by sorted-set sorted-set-by sorted? special-form-anchor special-symbol? split-at split-with str stream? string? struct struct-map subs subseq subvec supers swap! symbol symbol? sync syntax-symbol-anchor take take-last take-nth take-while test the-ns time to-array to-array-2d trampoline transient tree-seq true? type unchecked-add unchecked-dec unchecked-divide unchecked-inc unchecked-multiply unchecked-negate unchecked-remainder unchecked-subtract underive unquote unquote-splicing update-in update-proxy use val vals var-get var-set var? vary-meta vec vector vector? when when-first when-let when-not while with-bindings with-bindings* with-in-str with-loading-context with-local-vars with-meta with-open with-out-str with-precision xml-seq");
23
+
24
+ var indentKeys = makeKeywords(
25
+ // Built-ins
26
+ "ns fn def defn defmethod bound-fn if if-not case condp when while when-not when-first do future comment doto locking proxy with-open with-precision reify deftype defrecord defprotocol extend extend-protocol extend-type try catch " +
27
+
28
+ // Binding forms
29
+ "let letfn binding loop for doseq dotimes when-let if-let " +
30
+
31
+ // Data structures
32
+ "defstruct struct-map assoc " +
33
+
34
+ // clojure.test
35
+ "testing deftest " +
36
+
37
+ // contrib
38
+ "handler-case handle dotrace deftrace");
39
+
40
+ var tests = {
41
+ digit: /\d/,
42
+ digit_or_colon: /[\d:]/,
43
+ hex: /[0-9a-f]/i,
44
+ sign: /[+-]/,
45
+ exponent: /e/i,
46
+ keyword_char: /[^\s\(\[\;\)\]]/,
47
+ basic: /[\w\$_\-]/,
48
+ lang_keyword: /[\w*+!\-_?:\/]/
49
+ };
50
+
51
+ function stateStack(indent, type, prev) { // represents a state stack object
52
+ this.indent = indent;
53
+ this.type = type;
54
+ this.prev = prev;
55
+ }
56
+
57
+ function pushStack(state, indent, type) {
58
+ state.indentStack = new stateStack(indent, type, state.indentStack);
59
+ }
60
+
61
+ function popStack(state) {
62
+ state.indentStack = state.indentStack.prev;
63
+ }
64
+
65
+ function isNumber(ch, stream){
66
+ // hex
67
+ if ( ch === '0' && stream.eat(/x/i) ) {
68
+ stream.eatWhile(tests.hex);
69
+ return true;
70
+ }
71
+
72
+ // leading sign
73
+ if ( ( ch == '+' || ch == '-' ) && ( tests.digit.test(stream.peek()) ) ) {
74
+ stream.eat(tests.sign);
75
+ ch = stream.next();
76
+ }
77
+
78
+ if ( tests.digit.test(ch) ) {
79
+ stream.eat(ch);
80
+ stream.eatWhile(tests.digit);
81
+
82
+ if ( '.' == stream.peek() ) {
83
+ stream.eat('.');
84
+ stream.eatWhile(tests.digit);
85
+ }
86
+
87
+ if ( stream.eat(tests.exponent) ) {
88
+ stream.eat(tests.sign);
89
+ stream.eatWhile(tests.digit);
90
+ }
91
+
92
+ return true;
93
+ }
94
+
95
+ return false;
96
+ }
97
+
98
+ return {
99
+ startState: function () {
100
+ return {
101
+ indentStack: null,
102
+ indentation: 0,
103
+ mode: false
104
+ };
105
+ },
106
+
107
+ token: function (stream, state) {
108
+ if (state.indentStack == null && stream.sol()) {
109
+ // update indentation, but only if indentStack is empty
110
+ state.indentation = stream.indentation();
111
+ }
112
+
113
+ // skip spaces
114
+ if (stream.eatSpace()) {
115
+ return null;
116
+ }
117
+ var returnType = null;
118
+
119
+ switch(state.mode){
120
+ case "string": // multi-line string parsing mode
121
+ var next, escaped = false;
122
+ while ((next = stream.next()) != null) {
123
+ if (next == "\"" && !escaped) {
124
+
125
+ state.mode = false;
126
+ break;
127
+ }
128
+ escaped = !escaped && next == "\\";
129
+ }
130
+ returnType = STRING; // continue on in string mode
131
+ break;
132
+ default: // default parsing mode
133
+ var ch = stream.next();
134
+
135
+ if (ch == "\"") {
136
+ state.mode = "string";
137
+ returnType = STRING;
138
+ } else if (ch == "'" && !( tests.digit_or_colon.test(stream.peek()) )) {
139
+ returnType = ATOM;
140
+ } else if (ch == ";") { // comment
141
+ stream.skipToEnd(); // rest of the line is a comment
142
+ returnType = COMMENT;
143
+ } else if (isNumber(ch,stream)){
144
+ returnType = NUMBER;
145
+ } else if (ch == "(" || ch == "[") {
146
+ var keyWord = '', indentTemp = stream.column(), letter;
147
+ /**
148
+ Either
149
+ (indent-word ..
150
+ (non-indent-word ..
151
+ (;something else, bracket, etc.
152
+ */
153
+
154
+ if (ch == "(") while ((letter = stream.eat(tests.keyword_char)) != null) {
155
+ keyWord += letter;
156
+ }
157
+
158
+ if (keyWord.length > 0 && (indentKeys.propertyIsEnumerable(keyWord) ||
159
+ /^(?:def|with)/.test(keyWord))) { // indent-word
160
+ pushStack(state, indentTemp + INDENT_WORD_SKIP, ch);
161
+ } else { // non-indent word
162
+ // we continue eating the spaces
163
+ stream.eatSpace();
164
+ if (stream.eol() || stream.peek() == ";") {
165
+ // nothing significant after
166
+ // we restart indentation 1 space after
167
+ pushStack(state, indentTemp + 1, ch);
168
+ } else {
169
+ pushStack(state, indentTemp + stream.current().length, ch); // else we match
170
+ }
171
+ }
172
+ stream.backUp(stream.current().length - 1); // undo all the eating
173
+
174
+ returnType = BRACKET;
175
+ } else if (ch == ")" || ch == "]") {
176
+ returnType = BRACKET;
177
+ if (state.indentStack != null && state.indentStack.type == (ch == ")" ? "(" : "[")) {
178
+ popStack(state);
179
+ }
180
+ } else if ( ch == ":" ) {
181
+ stream.eatWhile(tests.lang_keyword);
182
+ return ATOM;
183
+ } else {
184
+ stream.eatWhile(tests.basic);
185
+
186
+ if (keywords && keywords.propertyIsEnumerable(stream.current())) {
187
+ returnType = KEYWORD;
188
+ } else if (builtins && builtins.propertyIsEnumerable(stream.current())) {
189
+ returnType = BUILTIN;
190
+ } else if (atoms && atoms.propertyIsEnumerable(stream.current())) {
191
+ returnType = ATOM;
192
+ } else returnType = null;
193
+ }
194
+ }
195
+
196
+ return returnType;
197
+ },
198
+
199
+ indent: function (state) {
200
+ if (state.indentStack == null) return state.indentation;
201
+ return state.indentStack.indent;
202
+ }
203
+ };
204
+ });
205
+
206
+ CodeMirror.defineMIME("text/x-clojure", "clojure");
@@ -0,0 +1,67 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>CodeMirror: Clojure mode</title>
6
+ <link rel="stylesheet" href="../../lib/codemirror.css">
7
+ <script src="../../lib/codemirror.js"></script>
8
+ <script src="clojure.js"></script>
9
+ <style>.CodeMirror {background: #f8f8f8;}</style>
10
+ <link rel="stylesheet" href="../../doc/docs.css">
11
+ </head>
12
+ <body>
13
+ <h1>CodeMirror: Clojure mode</h1>
14
+ <form><textarea id="code" name="code">
15
+ ; Conway's Game of Life, based on the work of:
16
+ ;; Laurent Petit https://gist.github.com/1200343
17
+ ;; Christophe Grand http://clj-me.cgrand.net/2011/08/19/conways-game-of-life
18
+
19
+ (ns ^{:doc "Conway's Game of Life."}
20
+ game-of-life)
21
+
22
+ ;; Core game of life's algorithm functions
23
+
24
+ (defn neighbours
25
+ "Given a cell's coordinates, returns the coordinates of its neighbours."
26
+ [[x y]]
27
+ (for [dx [-1 0 1] dy (if (zero? dx) [-1 1] [-1 0 1])]
28
+ [(+ dx x) (+ dy y)]))
29
+
30
+ (defn step
31
+ "Given a set of living cells, computes the new set of living cells."
32
+ [cells]
33
+ (set (for [[cell n] (frequencies (mapcat neighbours cells))
34
+ :when (or (= n 3) (and (= n 2) (cells cell)))]
35
+ cell)))
36
+
37
+ ;; Utility methods for displaying game on a text terminal
38
+
39
+ (defn print-board
40
+ "Prints a board on *out*, representing a step in the game."
41
+ [board w h]
42
+ (doseq [x (range (inc w)) y (range (inc h))]
43
+ (if (= y 0) (print "\n"))
44
+ (print (if (board [x y]) "[X]" " . "))))
45
+
46
+ (defn display-grids
47
+ "Prints a squence of boards on *out*, representing several steps."
48
+ [grids w h]
49
+ (doseq [board grids]
50
+ (print-board board w h)
51
+ (print "\n")))
52
+
53
+ ;; Launches an example board
54
+
55
+ (def
56
+ ^{:doc "board represents the initial set of living cells"}
57
+ board #{[2 1] [2 2] [2 3]})
58
+
59
+ (display-grids (take 3 (iterate step board)) 5 5) </textarea></form>
60
+ <script>
61
+ var editor = CodeMirror.fromTextArea(document.getElementById("code"), {});
62
+ </script>
63
+
64
+ <p><strong>MIME types defined:</strong> <code>text/x-clojure</code>.</p>
65
+
66
+ </body>
67
+ </html>
@@ -0,0 +1,22 @@
1
+ The MIT License
2
+
3
+ Copyright (c) 2011 Jeff Pickhardt
4
+ Modified from the Python CodeMirror mode, Copyright (c) 2010 Timothy Farrell
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in
14
+ all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ THE SOFTWARE.
@@ -0,0 +1,346 @@
1
+ /**
2
+ * Link to the project's GitHub page:
3
+ * https://github.com/pickhardt/coffeescript-codemirror-mode
4
+ */
5
+ CodeMirror.defineMode('coffeescript', function(conf) {
6
+ var ERRORCLASS = 'error';
7
+
8
+ function wordRegexp(words) {
9
+ return new RegExp("^((" + words.join(")|(") + "))\\b");
10
+ }
11
+
12
+ var singleOperators = new RegExp("^[\\+\\-\\*/%&|\\^~<>!\?]");
13
+ var singleDelimiters = new RegExp('^[\\(\\)\\[\\]\\{\\},:`=;\\.]');
14
+ var doubleOperators = new RegExp("^((\->)|(\=>)|(\\+\\+)|(\\+\\=)|(\\-\\-)|(\\-\\=)|(\\*\\*)|(\\*\\=)|(\\/\\/)|(\\/\\=)|(==)|(!=)|(<=)|(>=)|(<>)|(<<)|(>>)|(//))");
15
+ var doubleDelimiters = new RegExp("^((\\.\\.)|(\\+=)|(\\-=)|(\\*=)|(%=)|(/=)|(&=)|(\\|=)|(\\^=))");
16
+ var tripleDelimiters = new RegExp("^((\\.\\.\\.)|(//=)|(>>=)|(<<=)|(\\*\\*=))");
17
+ var identifiers = new RegExp("^[_A-Za-z$][_A-Za-z$0-9]*");
18
+ var properties = new RegExp("^(@|this\.)[_A-Za-z$][_A-Za-z$0-9]*");
19
+
20
+ var wordOperators = wordRegexp(['and', 'or', 'not',
21
+ 'is', 'isnt', 'in',
22
+ 'instanceof', 'typeof']);
23
+ var indentKeywords = ['for', 'while', 'loop', 'if', 'unless', 'else',
24
+ 'switch', 'try', 'catch', 'finally', 'class'];
25
+ var commonKeywords = ['break', 'by', 'continue', 'debugger', 'delete',
26
+ 'do', 'in', 'of', 'new', 'return', 'then',
27
+ 'this', 'throw', 'when', 'until'];
28
+
29
+ var keywords = wordRegexp(indentKeywords.concat(commonKeywords));
30
+
31
+ indentKeywords = wordRegexp(indentKeywords);
32
+
33
+
34
+ var stringPrefixes = new RegExp("^('{3}|\"{3}|['\"])");
35
+ var regexPrefixes = new RegExp("^(/{3}|/)");
36
+ var commonConstants = ['Infinity', 'NaN', 'undefined', 'null', 'true', 'false', 'on', 'off', 'yes', 'no'];
37
+ var constants = wordRegexp(commonConstants);
38
+
39
+ // Tokenizers
40
+ function tokenBase(stream, state) {
41
+ // Handle scope changes
42
+ if (stream.sol()) {
43
+ var scopeOffset = state.scopes[0].offset;
44
+ if (stream.eatSpace()) {
45
+ var lineOffset = stream.indentation();
46
+ if (lineOffset > scopeOffset) {
47
+ return 'indent';
48
+ } else if (lineOffset < scopeOffset) {
49
+ return 'dedent';
50
+ }
51
+ return null;
52
+ } else {
53
+ if (scopeOffset > 0) {
54
+ dedent(stream, state);
55
+ }
56
+ }
57
+ }
58
+ if (stream.eatSpace()) {
59
+ return null;
60
+ }
61
+
62
+ var ch = stream.peek();
63
+
64
+ // Handle docco title comment (single line)
65
+ if (stream.match("####")) {
66
+ stream.skipToEnd();
67
+ return 'comment';
68
+ }
69
+
70
+ // Handle multi line comments
71
+ if (stream.match("###")) {
72
+ state.tokenize = longComment;
73
+ return state.tokenize(stream, state);
74
+ }
75
+
76
+ // Single line comment
77
+ if (ch === '#') {
78
+ stream.skipToEnd();
79
+ return 'comment';
80
+ }
81
+
82
+ // Handle number literals
83
+ if (stream.match(/^-?[0-9\.]/, false)) {
84
+ var floatLiteral = false;
85
+ // Floats
86
+ if (stream.match(/^-?\d*\.\d+(e[\+\-]?\d+)?/i)) {
87
+ floatLiteral = true;
88
+ }
89
+ if (stream.match(/^-?\d+\.\d*/)) {
90
+ floatLiteral = true;
91
+ }
92
+ if (stream.match(/^-?\.\d+/)) {
93
+ floatLiteral = true;
94
+ }
95
+
96
+ if (floatLiteral) {
97
+ // prevent from getting extra . on 1..
98
+ if (stream.peek() == "."){
99
+ stream.backUp(1);
100
+ }
101
+ return 'number';
102
+ }
103
+ // Integers
104
+ var intLiteral = false;
105
+ // Hex
106
+ if (stream.match(/^-?0x[0-9a-f]+/i)) {
107
+ intLiteral = true;
108
+ }
109
+ // Decimal
110
+ if (stream.match(/^-?[1-9]\d*(e[\+\-]?\d+)?/)) {
111
+ intLiteral = true;
112
+ }
113
+ // Zero by itself with no other piece of number.
114
+ if (stream.match(/^-?0(?![\dx])/i)) {
115
+ intLiteral = true;
116
+ }
117
+ if (intLiteral) {
118
+ return 'number';
119
+ }
120
+ }
121
+
122
+ // Handle strings
123
+ if (stream.match(stringPrefixes)) {
124
+ state.tokenize = tokenFactory(stream.current(), 'string');
125
+ return state.tokenize(stream, state);
126
+ }
127
+ // Handle regex literals
128
+ if (stream.match(regexPrefixes)) {
129
+ if (stream.current() != '/' || stream.match(/^.*\//, false)) { // prevent highlight of division
130
+ state.tokenize = tokenFactory(stream.current(), 'string-2');
131
+ return state.tokenize(stream, state);
132
+ } else {
133
+ stream.backUp(1);
134
+ }
135
+ }
136
+
137
+ // Handle operators and delimiters
138
+ if (stream.match(tripleDelimiters) || stream.match(doubleDelimiters)) {
139
+ return 'punctuation';
140
+ }
141
+ if (stream.match(doubleOperators)
142
+ || stream.match(singleOperators)
143
+ || stream.match(wordOperators)) {
144
+ return 'operator';
145
+ }
146
+ if (stream.match(singleDelimiters)) {
147
+ return 'punctuation';
148
+ }
149
+
150
+ if (stream.match(constants)) {
151
+ return 'atom';
152
+ }
153
+
154
+ if (stream.match(keywords)) {
155
+ return 'keyword';
156
+ }
157
+
158
+ if (stream.match(identifiers)) {
159
+ return 'variable';
160
+ }
161
+
162
+ if (stream.match(properties)) {
163
+ return 'property';
164
+ }
165
+
166
+ // Handle non-detected items
167
+ stream.next();
168
+ return ERRORCLASS;
169
+ }
170
+
171
+ function tokenFactory(delimiter, outclass) {
172
+ var singleline = delimiter.length == 1;
173
+ return function tokenString(stream, state) {
174
+ while (!stream.eol()) {
175
+ stream.eatWhile(/[^'"\/\\]/);
176
+ if (stream.eat('\\')) {
177
+ stream.next();
178
+ if (singleline && stream.eol()) {
179
+ return outclass;
180
+ }
181
+ } else if (stream.match(delimiter)) {
182
+ state.tokenize = tokenBase;
183
+ return outclass;
184
+ } else {
185
+ stream.eat(/['"\/]/);
186
+ }
187
+ }
188
+ if (singleline) {
189
+ if (conf.mode.singleLineStringErrors) {
190
+ outclass = ERRORCLASS;
191
+ } else {
192
+ state.tokenize = tokenBase;
193
+ }
194
+ }
195
+ return outclass;
196
+ };
197
+ }
198
+
199
+ function longComment(stream, state) {
200
+ while (!stream.eol()) {
201
+ stream.eatWhile(/[^#]/);
202
+ if (stream.match("###")) {
203
+ state.tokenize = tokenBase;
204
+ break;
205
+ }
206
+ stream.eatWhile("#");
207
+ }
208
+ return "comment";
209
+ }
210
+
211
+ function indent(stream, state, type) {
212
+ type = type || 'coffee';
213
+ var indentUnit = 0;
214
+ if (type === 'coffee') {
215
+ for (var i = 0; i < state.scopes.length; i++) {
216
+ if (state.scopes[i].type === 'coffee') {
217
+ indentUnit = state.scopes[i].offset + conf.indentUnit;
218
+ break;
219
+ }
220
+ }
221
+ } else {
222
+ indentUnit = stream.column() + stream.current().length;
223
+ }
224
+ state.scopes.unshift({
225
+ offset: indentUnit,
226
+ type: type
227
+ });
228
+ }
229
+
230
+ function dedent(stream, state) {
231
+ if (state.scopes.length == 1) return;
232
+ if (state.scopes[0].type === 'coffee') {
233
+ var _indent = stream.indentation();
234
+ var _indent_index = -1;
235
+ for (var i = 0; i < state.scopes.length; ++i) {
236
+ if (_indent === state.scopes[i].offset) {
237
+ _indent_index = i;
238
+ break;
239
+ }
240
+ }
241
+ if (_indent_index === -1) {
242
+ return true;
243
+ }
244
+ while (state.scopes[0].offset !== _indent) {
245
+ state.scopes.shift();
246
+ }
247
+ return false;
248
+ } else {
249
+ state.scopes.shift();
250
+ return false;
251
+ }
252
+ }
253
+
254
+ function tokenLexer(stream, state) {
255
+ var style = state.tokenize(stream, state);
256
+ var current = stream.current();
257
+
258
+ // Handle '.' connected identifiers
259
+ if (current === '.') {
260
+ style = state.tokenize(stream, state);
261
+ current = stream.current();
262
+ if (style === 'variable') {
263
+ return 'variable';
264
+ } else {
265
+ return ERRORCLASS;
266
+ }
267
+ }
268
+
269
+ // Handle scope changes.
270
+ if (current === 'return') {
271
+ state.dedent += 1;
272
+ }
273
+ if (((current === '->' || current === '=>') &&
274
+ !state.lambda &&
275
+ state.scopes[0].type == 'coffee' &&
276
+ stream.peek() === '')
277
+ || style === 'indent') {
278
+ indent(stream, state);
279
+ }
280
+ var delimiter_index = '[({'.indexOf(current);
281
+ if (delimiter_index !== -1) {
282
+ indent(stream, state, '])}'.slice(delimiter_index, delimiter_index+1));
283
+ }
284
+ if (indentKeywords.exec(current)){
285
+ indent(stream, state);
286
+ }
287
+ if (current == 'then'){
288
+ dedent(stream, state);
289
+ }
290
+
291
+
292
+ if (style === 'dedent') {
293
+ if (dedent(stream, state)) {
294
+ return ERRORCLASS;
295
+ }
296
+ }
297
+ delimiter_index = '])}'.indexOf(current);
298
+ if (delimiter_index !== -1) {
299
+ if (dedent(stream, state)) {
300
+ return ERRORCLASS;
301
+ }
302
+ }
303
+ if (state.dedent > 0 && stream.eol() && state.scopes[0].type == 'coffee') {
304
+ if (state.scopes.length > 1) state.scopes.shift();
305
+ state.dedent -= 1;
306
+ }
307
+
308
+ return style;
309
+ }
310
+
311
+ var external = {
312
+ startState: function(basecolumn) {
313
+ return {
314
+ tokenize: tokenBase,
315
+ scopes: [{offset:basecolumn || 0, type:'coffee'}],
316
+ lastToken: null,
317
+ lambda: false,
318
+ dedent: 0
319
+ };
320
+ },
321
+
322
+ token: function(stream, state) {
323
+ var style = tokenLexer(stream, state);
324
+
325
+ state.lastToken = {style:style, content: stream.current()};
326
+
327
+ if (stream.eol() && stream.lambda) {
328
+ state.lambda = false;
329
+ }
330
+
331
+ return style;
332
+ },
333
+
334
+ indent: function(state) {
335
+ if (state.tokenize != tokenBase) {
336
+ return 0;
337
+ }
338
+
339
+ return state.scopes[0].offset;
340
+ }
341
+
342
+ };
343
+ return external;
344
+ });
345
+
346
+ CodeMirror.defineMIME('text/x-coffeescript', 'coffeescript');