gump 0.1.6

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 (359) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +24 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +71 -0
  6. data/Rakefile +2 -0
  7. data/bin/gump +37 -0
  8. data/gump.gemspec +17 -0
  9. data/lib/gump.rb +50 -0
  10. data/lib/version.rb +3 -0
  11. data/server/assets/css/style.css +6949 -0
  12. data/server/assets/images/arrow.png +0 -0
  13. data/server/assets/images/logo.png +0 -0
  14. data/server/assets/js/bootstrap/dist/css/bootstrap-theme.css +347 -0
  15. data/server/assets/js/bootstrap/dist/css/bootstrap-theme.css.map +1 -0
  16. data/server/assets/js/bootstrap/dist/css/bootstrap-theme.min.css +7 -0
  17. data/server/assets/js/bootstrap/dist/css/bootstrap.css +5785 -0
  18. data/server/assets/js/bootstrap/dist/css/bootstrap.css.map +1 -0
  19. data/server/assets/js/bootstrap/dist/css/bootstrap.min.css +7 -0
  20. data/server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.eot +0 -0
  21. data/server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.svg +229 -0
  22. data/server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf +0 -0
  23. data/server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.woff +0 -0
  24. data/server/assets/js/bootstrap/dist/js/bootstrap.js +1951 -0
  25. data/server/assets/js/bootstrap/dist/js/bootstrap.min.js +6 -0
  26. data/server/assets/js/jquery.codemirror/.gitattributes +8 -0
  27. data/server/assets/js/jquery.codemirror/.gitignore +6 -0
  28. data/server/assets/js/jquery.codemirror/.travis.yml +3 -0
  29. data/server/assets/js/jquery.codemirror/AUTHORS +255 -0
  30. data/server/assets/js/jquery.codemirror/CONTRIBUTING.md +72 -0
  31. data/server/assets/js/jquery.codemirror/LICENSE +19 -0
  32. data/server/assets/js/jquery.codemirror/README.md +11 -0
  33. data/server/assets/js/jquery.codemirror/addon/comment/comment.js +145 -0
  34. data/server/assets/js/jquery.codemirror/addon/comment/continuecomment.js +54 -0
  35. data/server/assets/js/jquery.codemirror/addon/dialog/dialog.css +32 -0
  36. data/server/assets/js/jquery.codemirror/addon/dialog/dialog.js +121 -0
  37. data/server/assets/js/jquery.codemirror/addon/display/fullscreen.css +6 -0
  38. data/server/assets/js/jquery.codemirror/addon/display/fullscreen.js +31 -0
  39. data/server/assets/js/jquery.codemirror/addon/display/placeholder.js +48 -0
  40. data/server/assets/js/jquery.codemirror/addon/edit/closebrackets.js +82 -0
  41. data/server/assets/js/jquery.codemirror/addon/edit/closetag.js +89 -0
  42. data/server/assets/js/jquery.codemirror/addon/edit/continuelist.js +25 -0
  43. data/server/assets/js/jquery.codemirror/addon/edit/matchbrackets.js +87 -0
  44. data/server/assets/js/jquery.codemirror/addon/edit/matchtags.js +56 -0
  45. data/server/assets/js/jquery.codemirror/addon/edit/trailingspace.js +15 -0
  46. data/server/assets/js/jquery.codemirror/addon/fold/brace-fold.js +93 -0
  47. data/server/assets/js/jquery.codemirror/addon/fold/comment-fold.js +40 -0
  48. data/server/assets/js/jquery.codemirror/addon/fold/foldcode.js +75 -0
  49. data/server/assets/js/jquery.codemirror/addon/fold/foldgutter.css +21 -0
  50. data/server/assets/js/jquery.codemirror/addon/fold/foldgutter.js +124 -0
  51. data/server/assets/js/jquery.codemirror/addon/fold/indent-fold.js +30 -0
  52. data/server/assets/js/jquery.codemirror/addon/fold/xml-fold.js +167 -0
  53. data/server/assets/js/jquery.codemirror/addon/hint/anyword-hint.js +34 -0
  54. data/server/assets/js/jquery.codemirror/addon/hint/css-hint.js +50 -0
  55. data/server/assets/js/jquery.codemirror/addon/hint/html-hint.js +337 -0
  56. data/server/assets/js/jquery.codemirror/addon/hint/javascript-hint.js +131 -0
  57. data/server/assets/js/jquery.codemirror/addon/hint/pig-hint.js +121 -0
  58. data/server/assets/js/jquery.codemirror/addon/hint/python-hint.js +95 -0
  59. data/server/assets/js/jquery.codemirror/addon/hint/show-hint.css +38 -0
  60. data/server/assets/js/jquery.codemirror/addon/hint/show-hint.js +286 -0
  61. data/server/assets/js/jquery.codemirror/addon/hint/sql-hint.js +105 -0
  62. data/server/assets/js/jquery.codemirror/addon/hint/xml-hint.js +69 -0
  63. data/server/assets/js/jquery.codemirror/addon/lint/coffeescript-lint.js +27 -0
  64. data/server/assets/js/jquery.codemirror/addon/lint/css-lint.js +19 -0
  65. data/server/assets/js/jquery.codemirror/addon/lint/javascript-lint.js +126 -0
  66. data/server/assets/js/jquery.codemirror/addon/lint/json-lint.js +17 -0
  67. data/server/assets/js/jquery.codemirror/addon/lint/lint.css +73 -0
  68. data/server/assets/js/jquery.codemirror/addon/lint/lint.js +203 -0
  69. data/server/assets/js/jquery.codemirror/addon/merge/dep/diff_match_patch.js +50 -0
  70. data/server/assets/js/jquery.codemirror/addon/merge/merge.css +92 -0
  71. data/server/assets/js/jquery.codemirror/addon/merge/merge.js +474 -0
  72. data/server/assets/js/jquery.codemirror/addon/mode/loadmode.js +51 -0
  73. data/server/assets/js/jquery.codemirror/addon/mode/multiplex.js +101 -0
  74. data/server/assets/js/jquery.codemirror/addon/mode/multiplex_test.js +30 -0
  75. data/server/assets/js/jquery.codemirror/addon/mode/overlay.js +59 -0
  76. data/server/assets/js/jquery.codemirror/addon/runmode/colorize.js +29 -0
  77. data/server/assets/js/jquery.codemirror/addon/runmode/runmode-standalone.js +136 -0
  78. data/server/assets/js/jquery.codemirror/addon/runmode/runmode.js +56 -0
  79. data/server/assets/js/jquery.codemirror/addon/runmode/runmode.node.js +103 -0
  80. data/server/assets/js/jquery.codemirror/addon/scroll/scrollpastend.js +34 -0
  81. data/server/assets/js/jquery.codemirror/addon/search/match-highlighter.js +91 -0
  82. data/server/assets/js/jquery.codemirror/addon/search/search.js +133 -0
  83. data/server/assets/js/jquery.codemirror/addon/search/searchcursor.js +143 -0
  84. data/server/assets/js/jquery.codemirror/addon/selection/active-line.js +39 -0
  85. data/server/assets/js/jquery.codemirror/addon/selection/mark-selection.js +108 -0
  86. data/server/assets/js/jquery.codemirror/addon/tern/tern.css +85 -0
  87. data/server/assets/js/jquery.codemirror/addon/tern/tern.js +632 -0
  88. data/server/assets/js/jquery.codemirror/addon/tern/worker.js +41 -0
  89. data/server/assets/js/jquery.codemirror/addon/wrap/hardwrap.js +99 -0
  90. data/server/assets/js/jquery.codemirror/bin/authors.sh +6 -0
  91. data/server/assets/js/jquery.codemirror/bin/compress +92 -0
  92. data/server/assets/js/jquery.codemirror/bin/lint +16 -0
  93. data/server/assets/js/jquery.codemirror/bin/source-highlight +61 -0
  94. data/server/assets/js/jquery.codemirror/bower.json +15 -0
  95. data/server/assets/js/jquery.codemirror/demo/activeline.html +78 -0
  96. data/server/assets/js/jquery.codemirror/demo/anywordhint.html +79 -0
  97. data/server/assets/js/jquery.codemirror/demo/bidi.html +74 -0
  98. data/server/assets/js/jquery.codemirror/demo/btree.html +86 -0
  99. data/server/assets/js/jquery.codemirror/demo/buffers.html +109 -0
  100. data/server/assets/js/jquery.codemirror/demo/changemode.html +59 -0
  101. data/server/assets/js/jquery.codemirror/demo/closebrackets.html +63 -0
  102. data/server/assets/js/jquery.codemirror/demo/closetag.html +40 -0
  103. data/server/assets/js/jquery.codemirror/demo/complete.html +80 -0
  104. data/server/assets/js/jquery.codemirror/demo/emacs.html +75 -0
  105. data/server/assets/js/jquery.codemirror/demo/folding.html +75 -0
  106. data/server/assets/js/jquery.codemirror/demo/fullscreen.html +130 -0
  107. data/server/assets/js/jquery.codemirror/demo/hardwrap.html +69 -0
  108. data/server/assets/js/jquery.codemirror/demo/html5complete.html +54 -0
  109. data/server/assets/js/jquery.codemirror/demo/indentwrap.html +58 -0
  110. data/server/assets/js/jquery.codemirror/demo/lint.html +171 -0
  111. data/server/assets/js/jquery.codemirror/demo/loadmode.html +49 -0
  112. data/server/assets/js/jquery.codemirror/demo/marker.html +52 -0
  113. data/server/assets/js/jquery.codemirror/demo/markselection.html +45 -0
  114. data/server/assets/js/jquery.codemirror/demo/matchhighlighter.html +47 -0
  115. data/server/assets/js/jquery.codemirror/demo/matchtags.html +49 -0
  116. data/server/assets/js/jquery.codemirror/demo/merge.html +82 -0
  117. data/server/assets/js/jquery.codemirror/demo/multiplex.html +75 -0
  118. data/server/assets/js/jquery.codemirror/demo/mustache.html +68 -0
  119. data/server/assets/js/jquery.codemirror/demo/placeholder.html +45 -0
  120. data/server/assets/js/jquery.codemirror/demo/preview.html +88 -0
  121. data/server/assets/js/jquery.codemirror/demo/resize.html +58 -0
  122. data/server/assets/js/jquery.codemirror/demo/runmode.html +62 -0
  123. data/server/assets/js/jquery.codemirror/demo/search.html +94 -0
  124. data/server/assets/js/jquery.codemirror/demo/spanaffectswrapping_shim.html +85 -0
  125. data/server/assets/js/jquery.codemirror/demo/tern.html +129 -0
  126. data/server/assets/js/jquery.codemirror/demo/theme.html +121 -0
  127. data/server/assets/js/jquery.codemirror/demo/trailingspace.html +48 -0
  128. data/server/assets/js/jquery.codemirror/demo/variableheight.html +67 -0
  129. data/server/assets/js/jquery.codemirror/demo/vim.html +74 -0
  130. data/server/assets/js/jquery.codemirror/demo/visibletabs.html +62 -0
  131. data/server/assets/js/jquery.codemirror/demo/widget.html +85 -0
  132. data/server/assets/js/jquery.codemirror/demo/xmlcomplete.html +116 -0
  133. data/server/assets/js/jquery.codemirror/index.html +192 -0
  134. data/server/assets/js/jquery.codemirror/keymap/emacs.js +387 -0
  135. data/server/assets/js/jquery.codemirror/keymap/extra.js +43 -0
  136. data/server/assets/js/jquery.codemirror/keymap/vim.js +3703 -0
  137. data/server/assets/js/jquery.codemirror/lib/codemirror.css +263 -0
  138. data/server/assets/js/jquery.codemirror/lib/codemirror.js +5944 -0
  139. data/server/assets/js/jquery.codemirror/mode/apl/apl.js +160 -0
  140. data/server/assets/js/jquery.codemirror/mode/apl/index.html +72 -0
  141. data/server/assets/js/jquery.codemirror/mode/asterisk/asterisk.js +183 -0
  142. data/server/assets/js/jquery.codemirror/mode/asterisk/index.html +154 -0
  143. data/server/assets/js/jquery.codemirror/mode/clike/clike.js +362 -0
  144. data/server/assets/js/jquery.codemirror/mode/clike/index.html +195 -0
  145. data/server/assets/js/jquery.codemirror/mode/clike/scala.html +767 -0
  146. data/server/assets/js/jquery.codemirror/mode/clojure/clojure.js +224 -0
  147. data/server/assets/js/jquery.codemirror/mode/clojure/index.html +88 -0
  148. data/server/assets/js/jquery.codemirror/mode/cobol/cobol.js +240 -0
  149. data/server/assets/js/jquery.codemirror/mode/cobol/index.html +210 -0
  150. data/server/assets/js/jquery.codemirror/mode/coffeescript/coffeescript.js +354 -0
  151. data/server/assets/js/jquery.codemirror/mode/coffeescript/index.html +740 -0
  152. data/server/assets/js/jquery.codemirror/mode/commonlisp/commonlisp.js +105 -0
  153. data/server/assets/js/jquery.codemirror/mode/commonlisp/index.html +177 -0
  154. data/server/assets/js/jquery.codemirror/mode/css/css.js +639 -0
  155. data/server/assets/js/jquery.codemirror/mode/css/index.html +70 -0
  156. data/server/assets/js/jquery.codemirror/mode/css/scss.html +157 -0
  157. data/server/assets/js/jquery.codemirror/mode/css/scss_test.js +93 -0
  158. data/server/assets/js/jquery.codemirror/mode/css/test.js +142 -0
  159. data/server/assets/js/jquery.codemirror/mode/d/d.js +205 -0
  160. data/server/assets/js/jquery.codemirror/mode/d/index.html +273 -0
  161. data/server/assets/js/jquery.codemirror/mode/diff/diff.js +32 -0
  162. data/server/assets/js/jquery.codemirror/mode/diff/index.html +117 -0
  163. data/server/assets/js/jquery.codemirror/mode/dtd/dtd.js +127 -0
  164. data/server/assets/js/jquery.codemirror/mode/dtd/index.html +89 -0
  165. data/server/assets/js/jquery.codemirror/mode/ecl/ecl.js +192 -0
  166. data/server/assets/js/jquery.codemirror/mode/ecl/index.html +52 -0
  167. data/server/assets/js/jquery.codemirror/mode/eiffel/eiffel.js +147 -0
  168. data/server/assets/js/jquery.codemirror/mode/eiffel/index.html +430 -0
  169. data/server/assets/js/jquery.codemirror/mode/erlang/erlang.js +484 -0
  170. data/server/assets/js/jquery.codemirror/mode/erlang/index.html +75 -0
  171. data/server/assets/js/jquery.codemirror/mode/fortran/fortran.js +173 -0
  172. data/server/assets/js/jquery.codemirror/mode/fortran/index.html +81 -0
  173. data/server/assets/js/jquery.codemirror/mode/gas/gas.js +330 -0
  174. data/server/assets/js/jquery.codemirror/mode/gas/index.html +68 -0
  175. data/server/assets/js/jquery.codemirror/mode/gfm/gfm.js +97 -0
  176. data/server/assets/js/jquery.codemirror/mode/gfm/index.html +82 -0
  177. data/server/assets/js/jquery.codemirror/mode/gfm/test.js +112 -0
  178. data/server/assets/js/jquery.codemirror/mode/gherkin/gherkin.js +168 -0
  179. data/server/assets/js/jquery.codemirror/mode/gherkin/index.html +48 -0
  180. data/server/assets/js/jquery.codemirror/mode/go/go.js +168 -0
  181. data/server/assets/js/jquery.codemirror/mode/go/index.html +85 -0
  182. data/server/assets/js/jquery.codemirror/mode/groovy/groovy.js +211 -0
  183. data/server/assets/js/jquery.codemirror/mode/groovy/index.html +84 -0
  184. data/server/assets/js/jquery.codemirror/mode/haml/haml.js +153 -0
  185. data/server/assets/js/jquery.codemirror/mode/haml/index.html +79 -0
  186. data/server/assets/js/jquery.codemirror/mode/haml/test.js +94 -0
  187. data/server/assets/js/jquery.codemirror/mode/haskell/haskell.js +250 -0
  188. data/server/assets/js/jquery.codemirror/mode/haskell/index.html +73 -0
  189. data/server/assets/js/jquery.codemirror/mode/haxe/haxe.js +429 -0
  190. data/server/assets/js/jquery.codemirror/mode/haxe/index.html +103 -0
  191. data/server/assets/js/jquery.codemirror/mode/htmlembedded/htmlembedded.js +73 -0
  192. data/server/assets/js/jquery.codemirror/mode/htmlembedded/index.html +60 -0
  193. data/server/assets/js/jquery.codemirror/mode/htmlmixed/htmlmixed.js +104 -0
  194. data/server/assets/js/jquery.codemirror/mode/htmlmixed/index.html +85 -0
  195. data/server/assets/js/jquery.codemirror/mode/http/http.js +98 -0
  196. data/server/assets/js/jquery.codemirror/mode/http/index.html +45 -0
  197. data/server/assets/js/jquery.codemirror/mode/index.html +114 -0
  198. data/server/assets/js/jquery.codemirror/mode/jade/index.html +66 -0
  199. data/server/assets/js/jquery.codemirror/mode/jade/jade.js +90 -0
  200. data/server/assets/js/jquery.codemirror/mode/javascript/index.html +107 -0
  201. data/server/assets/js/jquery.codemirror/mode/javascript/javascript.js +617 -0
  202. data/server/assets/js/jquery.codemirror/mode/javascript/test.js +72 -0
  203. data/server/assets/js/jquery.codemirror/mode/javascript/typescript.html +61 -0
  204. data/server/assets/js/jquery.codemirror/mode/jinja2/index.html +50 -0
  205. data/server/assets/js/jquery.codemirror/mode/jinja2/jinja2.js +42 -0
  206. data/server/assets/js/jquery.codemirror/mode/julia/index.html +187 -0
  207. data/server/assets/js/jquery.codemirror/mode/julia/julia.js +262 -0
  208. data/server/assets/js/jquery.codemirror/mode/less/index.html +753 -0
  209. data/server/assets/js/jquery.codemirror/mode/less/less.js +346 -0
  210. data/server/assets/js/jquery.codemirror/mode/livescript/index.html +459 -0
  211. data/server/assets/js/jquery.codemirror/mode/livescript/livescript.js +267 -0
  212. data/server/assets/js/jquery.codemirror/mode/livescript/livescript.ls +266 -0
  213. data/server/assets/js/jquery.codemirror/mode/lua/index.html +86 -0
  214. data/server/assets/js/jquery.codemirror/mode/lua/lua.js +144 -0
  215. data/server/assets/js/jquery.codemirror/mode/markdown/index.html +359 -0
  216. data/server/assets/js/jquery.codemirror/mode/markdown/markdown.js +560 -0
  217. data/server/assets/js/jquery.codemirror/mode/markdown/test.js +664 -0
  218. data/server/assets/js/jquery.codemirror/mode/meta.js +91 -0
  219. data/server/assets/js/jquery.codemirror/mode/mirc/index.html +161 -0
  220. data/server/assets/js/jquery.codemirror/mode/mirc/mirc.js +177 -0
  221. data/server/assets/js/jquery.codemirror/mode/nginx/index.html +181 -0
  222. data/server/assets/js/jquery.codemirror/mode/nginx/nginx.js +163 -0
  223. data/server/assets/js/jquery.codemirror/mode/ntriples/index.html +45 -0
  224. data/server/assets/js/jquery.codemirror/mode/ntriples/ntriples.js +170 -0
  225. data/server/assets/js/jquery.codemirror/mode/ocaml/index.html +146 -0
  226. data/server/assets/js/jquery.codemirror/mode/ocaml/ocaml.js +116 -0
  227. data/server/assets/js/jquery.codemirror/mode/octave/index.html +95 -0
  228. data/server/assets/js/jquery.codemirror/mode/octave/octave.js +118 -0
  229. data/server/assets/js/jquery.codemirror/mode/pascal/index.html +61 -0
  230. data/server/assets/js/jquery.codemirror/mode/pascal/pascal.js +94 -0
  231. data/server/assets/js/jquery.codemirror/mode/pegjs/index.html +66 -0
  232. data/server/assets/js/jquery.codemirror/mode/pegjs/pegjs.js +103 -0
  233. data/server/assets/js/jquery.codemirror/mode/perl/index.html +75 -0
  234. data/server/assets/js/jquery.codemirror/mode/perl/perl.js +816 -0
  235. data/server/assets/js/jquery.codemirror/mode/php/index.html +62 -0
  236. data/server/assets/js/jquery.codemirror/mode/php/php.js +132 -0
  237. data/server/assets/js/jquery.codemirror/mode/pig/index.html +55 -0
  238. data/server/assets/js/jquery.codemirror/mode/pig/pig.js +171 -0
  239. data/server/assets/js/jquery.codemirror/mode/properties/index.html +53 -0
  240. data/server/assets/js/jquery.codemirror/mode/properties/properties.js +63 -0
  241. data/server/assets/js/jquery.codemirror/mode/python/index.html +187 -0
  242. data/server/assets/js/jquery.codemirror/mode/python/python.js +368 -0
  243. data/server/assets/js/jquery.codemirror/mode/q/index.html +144 -0
  244. data/server/assets/js/jquery.codemirror/mode/q/q.js +124 -0
  245. data/server/assets/js/jquery.codemirror/mode/r/index.html +86 -0
  246. data/server/assets/js/jquery.codemirror/mode/r/r.js +141 -0
  247. data/server/assets/js/jquery.codemirror/mode/rpm/changes/changes.js +19 -0
  248. data/server/assets/js/jquery.codemirror/mode/rpm/changes/index.html +67 -0
  249. data/server/assets/js/jquery.codemirror/mode/rpm/spec/index.html +114 -0
  250. data/server/assets/js/jquery.codemirror/mode/rpm/spec/spec.css +5 -0
  251. data/server/assets/js/jquery.codemirror/mode/rpm/spec/spec.js +66 -0
  252. data/server/assets/js/jquery.codemirror/mode/rst/index.html +534 -0
  253. data/server/assets/js/jquery.codemirror/mode/rst/rst.js +560 -0
  254. data/server/assets/js/jquery.codemirror/mode/ruby/index.html +185 -0
  255. data/server/assets/js/jquery.codemirror/mode/ruby/ruby.js +247 -0
  256. data/server/assets/js/jquery.codemirror/mode/rust/index.html +61 -0
  257. data/server/assets/js/jquery.codemirror/mode/rust/rust.js +436 -0
  258. data/server/assets/js/jquery.codemirror/mode/sass/index.html +66 -0
  259. data/server/assets/js/jquery.codemirror/mode/sass/sass.js +330 -0
  260. data/server/assets/js/jquery.codemirror/mode/scheme/index.html +77 -0
  261. data/server/assets/js/jquery.codemirror/mode/scheme/scheme.js +232 -0
  262. data/server/assets/js/jquery.codemirror/mode/shell/index.html +66 -0
  263. data/server/assets/js/jquery.codemirror/mode/shell/shell.js +118 -0
  264. data/server/assets/js/jquery.codemirror/mode/sieve/index.html +93 -0
  265. data/server/assets/js/jquery.codemirror/mode/sieve/sieve.js +183 -0
  266. data/server/assets/js/jquery.codemirror/mode/smalltalk/index.html +68 -0
  267. data/server/assets/js/jquery.codemirror/mode/smalltalk/smalltalk.js +151 -0
  268. data/server/assets/js/jquery.codemirror/mode/smarty/index.html +136 -0
  269. data/server/assets/js/jquery.codemirror/mode/smarty/smarty.js +205 -0
  270. data/server/assets/js/jquery.codemirror/mode/smartymixed/index.html +114 -0
  271. data/server/assets/js/jquery.codemirror/mode/smartymixed/smartymixed.js +175 -0
  272. data/server/assets/js/jquery.codemirror/mode/sparql/index.html +54 -0
  273. data/server/assets/js/jquery.codemirror/mode/sparql/sparql.js +145 -0
  274. data/server/assets/js/jquery.codemirror/mode/sql/index.html +75 -0
  275. data/server/assets/js/jquery.codemirror/mode/sql/sql.js +365 -0
  276. data/server/assets/js/jquery.codemirror/mode/stex/index.html +110 -0
  277. data/server/assets/js/jquery.codemirror/mode/stex/stex.js +246 -0
  278. data/server/assets/js/jquery.codemirror/mode/stex/test.js +120 -0
  279. data/server/assets/js/jquery.codemirror/mode/tcl/index.html +143 -0
  280. data/server/assets/js/jquery.codemirror/mode/tcl/tcl.js +131 -0
  281. data/server/assets/js/jquery.codemirror/mode/tiddlywiki/index.html +155 -0
  282. data/server/assets/js/jquery.codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  283. data/server/assets/js/jquery.codemirror/mode/tiddlywiki/tiddlywiki.js +353 -0
  284. data/server/assets/js/jquery.codemirror/mode/tiki/index.html +95 -0
  285. data/server/assets/js/jquery.codemirror/mode/tiki/tiki.css +26 -0
  286. data/server/assets/js/jquery.codemirror/mode/tiki/tiki.js +308 -0
  287. data/server/assets/js/jquery.codemirror/mode/toml/index.html +73 -0
  288. data/server/assets/js/jquery.codemirror/mode/toml/toml.js +71 -0
  289. data/server/assets/js/jquery.codemirror/mode/turtle/index.html +51 -0
  290. data/server/assets/js/jquery.codemirror/mode/turtle/turtle.js +145 -0
  291. data/server/assets/js/jquery.codemirror/mode/vb/index.html +103 -0
  292. data/server/assets/js/jquery.codemirror/mode/vb/vb.js +259 -0
  293. data/server/assets/js/jquery.codemirror/mode/vbscript/index.html +55 -0
  294. data/server/assets/js/jquery.codemirror/mode/vbscript/vbscript.js +334 -0
  295. data/server/assets/js/jquery.codemirror/mode/velocity/index.html +119 -0
  296. data/server/assets/js/jquery.codemirror/mode/velocity/velocity.js +186 -0
  297. data/server/assets/js/jquery.codemirror/mode/verilog/index.html +132 -0
  298. data/server/assets/js/jquery.codemirror/mode/verilog/verilog.js +182 -0
  299. data/server/assets/js/jquery.codemirror/mode/xml/index.html +57 -0
  300. data/server/assets/js/jquery.codemirror/mode/xml/xml.js +345 -0
  301. data/server/assets/js/jquery.codemirror/mode/xquery/index.html +210 -0
  302. data/server/assets/js/jquery.codemirror/mode/xquery/test.js +64 -0
  303. data/server/assets/js/jquery.codemirror/mode/xquery/xquery.js +432 -0
  304. data/server/assets/js/jquery.codemirror/mode/yaml/index.html +80 -0
  305. data/server/assets/js/jquery.codemirror/mode/yaml/yaml.js +97 -0
  306. data/server/assets/js/jquery.codemirror/mode/z80/index.html +52 -0
  307. data/server/assets/js/jquery.codemirror/mode/z80/z80.js +85 -0
  308. data/server/assets/js/jquery.codemirror/package.json +19 -0
  309. data/server/assets/js/jquery.codemirror/test/comment_test.js +51 -0
  310. data/server/assets/js/jquery.codemirror/test/doc_test.js +329 -0
  311. data/server/assets/js/jquery.codemirror/test/driver.js +139 -0
  312. data/server/assets/js/jquery.codemirror/test/emacs_test.js +135 -0
  313. data/server/assets/js/jquery.codemirror/test/index.html +209 -0
  314. data/server/assets/js/jquery.codemirror/test/lint/acorn.js +1593 -0
  315. data/server/assets/js/jquery.codemirror/test/lint/lint.js +139 -0
  316. data/server/assets/js/jquery.codemirror/test/lint/walk.js +216 -0
  317. data/server/assets/js/jquery.codemirror/test/mode_test.css +10 -0
  318. data/server/assets/js/jquery.codemirror/test/mode_test.js +200 -0
  319. data/server/assets/js/jquery.codemirror/test/phantom_driver.js +31 -0
  320. data/server/assets/js/jquery.codemirror/test/run.js +34 -0
  321. data/server/assets/js/jquery.codemirror/test/test.js +1562 -0
  322. data/server/assets/js/jquery.codemirror/test/vim_test.js +2391 -0
  323. data/server/assets/js/jquery.codemirror/theme/3024-day.css +34 -0
  324. data/server/assets/js/jquery.codemirror/theme/3024-night.css +34 -0
  325. data/server/assets/js/jquery.codemirror/theme/ambiance-mobile.css +5 -0
  326. data/server/assets/js/jquery.codemirror/theme/ambiance.css +70 -0
  327. data/server/assets/js/jquery.codemirror/theme/base16-dark.css +34 -0
  328. data/server/assets/js/jquery.codemirror/theme/base16-light.css +34 -0
  329. data/server/assets/js/jquery.codemirror/theme/blackboard.css +28 -0
  330. data/server/assets/js/jquery.codemirror/theme/cobalt.css +21 -0
  331. data/server/assets/js/jquery.codemirror/theme/eclipse.css +23 -0
  332. data/server/assets/js/jquery.codemirror/theme/elegant.css +13 -0
  333. data/server/assets/js/jquery.codemirror/theme/erlang-dark.css +30 -0
  334. data/server/assets/js/jquery.codemirror/theme/lesser-dark.css +47 -0
  335. data/server/assets/js/jquery.codemirror/theme/mbo.css +37 -0
  336. data/server/assets/js/jquery.codemirror/theme/midnight.css +43 -0
  337. data/server/assets/js/jquery.codemirror/theme/monokai.css +29 -0
  338. data/server/assets/js/jquery.codemirror/theme/neat.css +12 -0
  339. data/server/assets/js/jquery.codemirror/theme/night.css +24 -0
  340. data/server/assets/js/jquery.codemirror/theme/paraiso-dark.css +34 -0
  341. data/server/assets/js/jquery.codemirror/theme/paraiso-light.css +34 -0
  342. data/server/assets/js/jquery.codemirror/theme/rubyblue.css +23 -0
  343. data/server/assets/js/jquery.codemirror/theme/solarized.css +180 -0
  344. data/server/assets/js/jquery.codemirror/theme/the-matrix.css +26 -0
  345. data/server/assets/js/jquery.codemirror/theme/tomorrow-night-eighties.css +34 -0
  346. data/server/assets/js/jquery.codemirror/theme/twilight.css +28 -0
  347. data/server/assets/js/jquery.codemirror/theme/vibrant-ink.css +30 -0
  348. data/server/assets/js/jquery.codemirror/theme/xq-dark.css +49 -0
  349. data/server/assets/js/jquery.codemirror/theme/xq-light.css +43 -0
  350. data/server/assets/js/jquery.js +4 -0
  351. data/server/assets/js/jquery.nanoscroller/jquery.nanoscroller.js +2 -0
  352. data/server/assets/js/jquery.nanoscroller/nanoscroller.css +49 -0
  353. data/server/assets/js/tester.js +161 -0
  354. data/server/config.ru +2 -0
  355. data/server/server.rb +41 -0
  356. data/server/views/_content.erb +65 -0
  357. data/server/views/_sidebar.erb +32 -0
  358. data/server/views/index.erb +40 -0
  359. metadata +402 -0
@@ -0,0 +1,57 @@
1
+ <!doctype html>
2
+
3
+ <title>CodeMirror: XML mode</title>
4
+ <meta charset="utf-8"/>
5
+ <link rel=stylesheet href="../../doc/docs.css">
6
+
7
+ <link rel="stylesheet" href="../../lib/codemirror.css">
8
+ <script src="../../lib/codemirror.js"></script>
9
+ <script src="xml.js"></script>
10
+ <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
11
+ <div id=nav>
12
+ <a href="http://codemirror.net"><img id=logo src="../../doc/logo.png"></a>
13
+
14
+ <ul>
15
+ <li><a href="../../index.html">Home</a>
16
+ <li><a href="../../doc/manual.html">Manual</a>
17
+ <li><a href="https://github.com/marijnh/codemirror">Code</a>
18
+ </ul>
19
+ <ul>
20
+ <li><a href="../index.html">Language modes</a>
21
+ <li><a class=active href="#">XML</a>
22
+ </ul>
23
+ </div>
24
+
25
+ <article>
26
+ <h2>XML mode</h2>
27
+ <form><textarea id="code" name="code">
28
+ &lt;html style="color: green"&gt;
29
+ &lt;!-- this is a comment --&gt;
30
+ &lt;head&gt;
31
+ &lt;title&gt;HTML Example&lt;/title&gt;
32
+ &lt;/head&gt;
33
+ &lt;body&gt;
34
+ The indentation tries to be &lt;em&gt;somewhat &amp;quot;do what
35
+ I mean&amp;quot;&lt;/em&gt;... but might not match your style.
36
+ &lt;/body&gt;
37
+ &lt;/html&gt;
38
+ </textarea></form>
39
+ <script>
40
+ var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
41
+ mode: {name: "xml", alignCDATA: true},
42
+ lineNumbers: true
43
+ });
44
+ </script>
45
+ <p>The XML mode supports two configuration parameters:</p>
46
+ <dl>
47
+ <dt><code>htmlMode (boolean)</code></dt>
48
+ <dd>This switches the mode to parse HTML instead of XML. This
49
+ means attributes do not have to be quoted, and some elements
50
+ (such as <code>br</code>) do not require a closing tag.</dd>
51
+ <dt><code>alignCDATA (boolean)</code></dt>
52
+ <dd>Setting this to true will force the opening tag of CDATA
53
+ blocks to not be indented.</dd>
54
+ </dl>
55
+
56
+ <p><strong>MIME types defined:</strong> <code>application/xml</code>, <code>text/html</code>.</p>
57
+ </article>
@@ -0,0 +1,345 @@
1
+ CodeMirror.defineMode("xml", function(config, parserConfig) {
2
+ var indentUnit = config.indentUnit;
3
+ var multilineTagIndentFactor = parserConfig.multilineTagIndentFactor || 1;
4
+ var multilineTagIndentPastTag = parserConfig.multilineTagIndentPastTag || true;
5
+
6
+ var Kludges = parserConfig.htmlMode ? {
7
+ autoSelfClosers: {'area': true, 'base': true, 'br': true, 'col': true, 'command': true,
8
+ 'embed': true, 'frame': true, 'hr': true, 'img': true, 'input': true,
9
+ 'keygen': true, 'link': true, 'meta': true, 'param': true, 'source': true,
10
+ 'track': true, 'wbr': true},
11
+ implicitlyClosed: {'dd': true, 'li': true, 'optgroup': true, 'option': true, 'p': true,
12
+ 'rp': true, 'rt': true, 'tbody': true, 'td': true, 'tfoot': true,
13
+ 'th': true, 'tr': true},
14
+ contextGrabbers: {
15
+ 'dd': {'dd': true, 'dt': true},
16
+ 'dt': {'dd': true, 'dt': true},
17
+ 'li': {'li': true},
18
+ 'option': {'option': true, 'optgroup': true},
19
+ 'optgroup': {'optgroup': true},
20
+ 'p': {'address': true, 'article': true, 'aside': true, 'blockquote': true, 'dir': true,
21
+ 'div': true, 'dl': true, 'fieldset': true, 'footer': true, 'form': true,
22
+ 'h1': true, 'h2': true, 'h3': true, 'h4': true, 'h5': true, 'h6': true,
23
+ 'header': true, 'hgroup': true, 'hr': true, 'menu': true, 'nav': true, 'ol': true,
24
+ 'p': true, 'pre': true, 'section': true, 'table': true, 'ul': true},
25
+ 'rp': {'rp': true, 'rt': true},
26
+ 'rt': {'rp': true, 'rt': true},
27
+ 'tbody': {'tbody': true, 'tfoot': true},
28
+ 'td': {'td': true, 'th': true},
29
+ 'tfoot': {'tbody': true},
30
+ 'th': {'td': true, 'th': true},
31
+ 'thead': {'tbody': true, 'tfoot': true},
32
+ 'tr': {'tr': true}
33
+ },
34
+ doNotIndent: {"pre": true},
35
+ allowUnquoted: true,
36
+ allowMissing: true
37
+ } : {
38
+ autoSelfClosers: {},
39
+ implicitlyClosed: {},
40
+ contextGrabbers: {},
41
+ doNotIndent: {},
42
+ allowUnquoted: false,
43
+ allowMissing: false
44
+ };
45
+ var alignCDATA = parserConfig.alignCDATA;
46
+
47
+ // Return variables for tokenizers
48
+ var tagName, type;
49
+
50
+ function inText(stream, state) {
51
+ function chain(parser) {
52
+ state.tokenize = parser;
53
+ return parser(stream, state);
54
+ }
55
+
56
+ var ch = stream.next();
57
+ if (ch == "<") {
58
+ if (stream.eat("!")) {
59
+ if (stream.eat("[")) {
60
+ if (stream.match("CDATA[")) return chain(inBlock("atom", "]]>"));
61
+ else return null;
62
+ } else if (stream.match("--")) {
63
+ return chain(inBlock("comment", "-->"));
64
+ } else if (stream.match("DOCTYPE", true, true)) {
65
+ stream.eatWhile(/[\w\._\-]/);
66
+ return chain(doctype(1));
67
+ } else {
68
+ return null;
69
+ }
70
+ } else if (stream.eat("?")) {
71
+ stream.eatWhile(/[\w\._\-]/);
72
+ state.tokenize = inBlock("meta", "?>");
73
+ return "meta";
74
+ } else {
75
+ var isClose = stream.eat("/");
76
+ tagName = "";
77
+ var c;
78
+ while ((c = stream.eat(/[^\s\u00a0=<>\"\'\/?]/))) tagName += c;
79
+ if (!tagName) return "tag error";
80
+ type = isClose ? "closeTag" : "openTag";
81
+ state.tokenize = inTag;
82
+ return "tag";
83
+ }
84
+ } else if (ch == "&") {
85
+ var ok;
86
+ if (stream.eat("#")) {
87
+ if (stream.eat("x")) {
88
+ ok = stream.eatWhile(/[a-fA-F\d]/) && stream.eat(";");
89
+ } else {
90
+ ok = stream.eatWhile(/[\d]/) && stream.eat(";");
91
+ }
92
+ } else {
93
+ ok = stream.eatWhile(/[\w\.\-:]/) && stream.eat(";");
94
+ }
95
+ return ok ? "atom" : "error";
96
+ } else {
97
+ stream.eatWhile(/[^&<]/);
98
+ return null;
99
+ }
100
+ }
101
+
102
+ function inTag(stream, state) {
103
+ var ch = stream.next();
104
+ if (ch == ">" || (ch == "/" && stream.eat(">"))) {
105
+ state.tokenize = inText;
106
+ type = ch == ">" ? "endTag" : "selfcloseTag";
107
+ return "tag";
108
+ } else if (ch == "=") {
109
+ type = "equals";
110
+ return null;
111
+ } else if (ch == "<") {
112
+ state.tokenize = inText;
113
+ var next = state.tokenize(stream, state);
114
+ return next ? next + " error" : "error";
115
+ } else if (/[\'\"]/.test(ch)) {
116
+ state.tokenize = inAttribute(ch);
117
+ state.stringStartCol = stream.column();
118
+ return state.tokenize(stream, state);
119
+ } else {
120
+ stream.eatWhile(/[^\s\u00a0=<>\"\']/);
121
+ return "word";
122
+ }
123
+ }
124
+
125
+ function inAttribute(quote) {
126
+ var closure = function(stream, state) {
127
+ while (!stream.eol()) {
128
+ if (stream.next() == quote) {
129
+ state.tokenize = inTag;
130
+ break;
131
+ }
132
+ }
133
+ return "string";
134
+ };
135
+ closure.isInAttribute = true;
136
+ return closure;
137
+ }
138
+
139
+ function inBlock(style, terminator) {
140
+ return function(stream, state) {
141
+ while (!stream.eol()) {
142
+ if (stream.match(terminator)) {
143
+ state.tokenize = inText;
144
+ break;
145
+ }
146
+ stream.next();
147
+ }
148
+ return style;
149
+ };
150
+ }
151
+ function doctype(depth) {
152
+ return function(stream, state) {
153
+ var ch;
154
+ while ((ch = stream.next()) != null) {
155
+ if (ch == "<") {
156
+ state.tokenize = doctype(depth + 1);
157
+ return state.tokenize(stream, state);
158
+ } else if (ch == ">") {
159
+ if (depth == 1) {
160
+ state.tokenize = inText;
161
+ break;
162
+ } else {
163
+ state.tokenize = doctype(depth - 1);
164
+ return state.tokenize(stream, state);
165
+ }
166
+ }
167
+ }
168
+ return "meta";
169
+ };
170
+ }
171
+
172
+ var curState, curStream, setStyle;
173
+ function pass() {
174
+ for (var i = arguments.length - 1; i >= 0; i--) curState.cc.push(arguments[i]);
175
+ }
176
+ function cont() {
177
+ pass.apply(null, arguments);
178
+ return true;
179
+ }
180
+
181
+ function pushContext(tagName, startOfLine) {
182
+ var noIndent = Kludges.doNotIndent.hasOwnProperty(tagName) || (curState.context && curState.context.noIndent);
183
+ curState.context = {
184
+ prev: curState.context,
185
+ tagName: tagName,
186
+ indent: curState.indented,
187
+ startOfLine: startOfLine,
188
+ noIndent: noIndent
189
+ };
190
+ }
191
+ function popContext() {
192
+ if (curState.context) curState.context = curState.context.prev;
193
+ }
194
+
195
+ function element(type) {
196
+ if (type == "openTag") {
197
+ curState.tagName = tagName;
198
+ curState.tagStart = curStream.column();
199
+ return cont(attributes, endtag(curState.startOfLine));
200
+ } else if (type == "closeTag") {
201
+ var err = false;
202
+ if (curState.context) {
203
+ if (curState.context.tagName != tagName) {
204
+ if (Kludges.implicitlyClosed.hasOwnProperty(curState.context.tagName.toLowerCase())) {
205
+ popContext();
206
+ }
207
+ err = !curState.context || curState.context.tagName != tagName;
208
+ }
209
+ } else {
210
+ err = true;
211
+ }
212
+ if (err) setStyle = "error";
213
+ return cont(endclosetag(err));
214
+ }
215
+ return cont();
216
+ }
217
+ function endtag(startOfLine) {
218
+ return function(type) {
219
+ var tagName = curState.tagName;
220
+ curState.tagName = curState.tagStart = null;
221
+ if (type == "selfcloseTag" ||
222
+ (type == "endTag" && Kludges.autoSelfClosers.hasOwnProperty(tagName.toLowerCase()))) {
223
+ maybePopContext(tagName.toLowerCase());
224
+ return cont();
225
+ }
226
+ if (type == "endTag") {
227
+ maybePopContext(tagName.toLowerCase());
228
+ pushContext(tagName, startOfLine);
229
+ return cont();
230
+ }
231
+ return cont();
232
+ };
233
+ }
234
+ function endclosetag(err) {
235
+ return function(type) {
236
+ if (err) setStyle = "error";
237
+ if (type == "endTag") { popContext(); return cont(); }
238
+ setStyle = "error";
239
+ return cont(arguments.callee);
240
+ };
241
+ }
242
+ function maybePopContext(nextTagName) {
243
+ var parentTagName;
244
+ while (true) {
245
+ if (!curState.context) {
246
+ return;
247
+ }
248
+ parentTagName = curState.context.tagName.toLowerCase();
249
+ if (!Kludges.contextGrabbers.hasOwnProperty(parentTagName) ||
250
+ !Kludges.contextGrabbers[parentTagName].hasOwnProperty(nextTagName)) {
251
+ return;
252
+ }
253
+ popContext();
254
+ }
255
+ }
256
+
257
+ function attributes(type) {
258
+ if (type == "word") {setStyle = "attribute"; return cont(attribute, attributes);}
259
+ if (type == "endTag" || type == "selfcloseTag") return pass();
260
+ setStyle = "error";
261
+ return cont(attributes);
262
+ }
263
+ function attribute(type) {
264
+ if (type == "equals") return cont(attvalue, attributes);
265
+ if (!Kludges.allowMissing) setStyle = "error";
266
+ else if (type == "word") {setStyle = "attribute"; return cont(attribute, attributes);}
267
+ return (type == "endTag" || type == "selfcloseTag") ? pass() : cont();
268
+ }
269
+ function attvalue(type) {
270
+ if (type == "string") return cont(attvaluemaybe);
271
+ if (type == "word" && Kludges.allowUnquoted) {setStyle = "string"; return cont();}
272
+ setStyle = "error";
273
+ return (type == "endTag" || type == "selfCloseTag") ? pass() : cont();
274
+ }
275
+ function attvaluemaybe(type) {
276
+ if (type == "string") return cont(attvaluemaybe);
277
+ else return pass();
278
+ }
279
+
280
+ return {
281
+ startState: function() {
282
+ return {tokenize: inText, cc: [], indented: 0, startOfLine: true, tagName: null, tagStart: null, context: null};
283
+ },
284
+
285
+ token: function(stream, state) {
286
+ if (!state.tagName && stream.sol()) {
287
+ state.startOfLine = true;
288
+ state.indented = stream.indentation();
289
+ }
290
+ if (stream.eatSpace()) return null;
291
+
292
+ setStyle = type = tagName = null;
293
+ var style = state.tokenize(stream, state);
294
+ state.type = type;
295
+ if ((style || type) && style != "comment") {
296
+ curState = state; curStream = stream;
297
+ while (true) {
298
+ var comb = state.cc.pop() || element;
299
+ if (comb(type || style)) break;
300
+ }
301
+ }
302
+ state.startOfLine = false;
303
+ if (setStyle)
304
+ style = setStyle == "error" ? style + " error" : setStyle;
305
+ return style;
306
+ },
307
+
308
+ indent: function(state, textAfter, fullLine) {
309
+ var context = state.context;
310
+ // Indent multi-line strings (e.g. css).
311
+ if (state.tokenize.isInAttribute) {
312
+ return state.stringStartCol + 1;
313
+ }
314
+ if ((state.tokenize != inTag && state.tokenize != inText) ||
315
+ context && context.noIndent)
316
+ return fullLine ? fullLine.match(/^(\s*)/)[0].length : 0;
317
+ // Indent the starts of attribute names.
318
+ if (state.tagName) {
319
+ if (multilineTagIndentPastTag)
320
+ return state.tagStart + state.tagName.length + 2;
321
+ else
322
+ return state.tagStart + indentUnit * multilineTagIndentFactor;
323
+ }
324
+ if (alignCDATA && /<!\[CDATA\[/.test(textAfter)) return 0;
325
+ if (context && /^<\//.test(textAfter))
326
+ context = context.prev;
327
+ while (context && !context.startOfLine)
328
+ context = context.prev;
329
+ if (context) return context.indent + indentUnit;
330
+ else return 0;
331
+ },
332
+
333
+ electricChars: "/",
334
+ blockCommentStart: "<!--",
335
+ blockCommentEnd: "-->",
336
+
337
+ configuration: parserConfig.htmlMode ? "html" : "xml",
338
+ helperType: parserConfig.htmlMode ? "html" : "xml"
339
+ };
340
+ });
341
+
342
+ CodeMirror.defineMIME("text/xml", "xml");
343
+ CodeMirror.defineMIME("application/xml", "xml");
344
+ if (!CodeMirror.mimeModes.hasOwnProperty("text/html"))
345
+ CodeMirror.defineMIME("text/html", {name: "xml", htmlMode: true});
@@ -0,0 +1,210 @@
1
+ <!doctype html>
2
+
3
+ <title>CodeMirror: XQuery mode</title>
4
+ <meta charset="utf-8"/>
5
+ <link rel=stylesheet href="../../doc/docs.css">
6
+
7
+ <link rel="stylesheet" href="../../lib/codemirror.css">
8
+ <link rel="stylesheet" href="../../theme/xq-dark.css">
9
+ <script src="../../lib/codemirror.js"></script>
10
+ <script src="xquery.js"></script>
11
+ <style type="text/css">
12
+ .CodeMirror {
13
+ border-top: 1px solid black; border-bottom: 1px solid black;
14
+ height:400px;
15
+ }
16
+ </style>
17
+ <div id=nav>
18
+ <a href="http://codemirror.net"><img id=logo src="../../doc/logo.png"></a>
19
+
20
+ <ul>
21
+ <li><a href="../../index.html">Home</a>
22
+ <li><a href="../../doc/manual.html">Manual</a>
23
+ <li><a href="https://github.com/marijnh/codemirror">Code</a>
24
+ </ul>
25
+ <ul>
26
+ <li><a href="../index.html">Language modes</a>
27
+ <li><a class=active href="#">XQuery</a>
28
+ </ul>
29
+ </div>
30
+
31
+ <article>
32
+ <h2>XQuery mode</h2>
33
+
34
+
35
+ <div class="cm-s-default">
36
+ <textarea id="code" name="code">
37
+ xquery version &quot;1.0-ml&quot;;
38
+ (: this is
39
+ : a
40
+ "comment" :)
41
+ let $let := &lt;x attr=&quot;value&quot;&gt;&quot;test&quot;&lt;func&gt;function() $var {function()} {$var}&lt;/func&gt;&lt;/x&gt;
42
+ let $joe:=1
43
+ return element element {
44
+ attribute attribute { 1 },
45
+ element test { &#39;a&#39; },
46
+ attribute foo { &quot;bar&quot; },
47
+ fn:doc()[ foo/@bar eq $let ],
48
+ //x }
49
+
50
+ (: a more 'evil' test :)
51
+ (: Modified Blakeley example (: with nested comment :) ... :)
52
+ declare private function local:declare() {()};
53
+ declare private function local:private() {()};
54
+ declare private function local:function() {()};
55
+ declare private function local:local() {()};
56
+ let $let := &lt;let&gt;let $let := &quot;let&quot;&lt;/let&gt;
57
+ return element element {
58
+ attribute attribute { try { xdmp:version() } catch($e) { xdmp:log($e) } },
59
+ attribute fn:doc { &quot;bar&quot; castable as xs:string },
60
+ element text { text { &quot;text&quot; } },
61
+ fn:doc()[ child::eq/(@bar | attribute::attribute) eq $let ],
62
+ //fn:doc
63
+ }
64
+
65
+
66
+
67
+ xquery version &quot;1.0-ml&quot;;
68
+
69
+ (: Copyright 2006-2010 Mark Logic Corporation. :)
70
+
71
+ (:
72
+ : Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
73
+ : you may not use this file except in compliance with the License.
74
+ : You may obtain a copy of the License at
75
+ :
76
+ : http://www.apache.org/licenses/LICENSE-2.0
77
+ :
78
+ : Unless required by applicable law or agreed to in writing, software
79
+ : distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
80
+ : WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
81
+ : See the License for the specific language governing permissions and
82
+ : limitations under the License.
83
+ :)
84
+
85
+ module namespace json = &quot;http://marklogic.com/json&quot;;
86
+ declare default function namespace &quot;http://www.w3.org/2005/xpath-functions&quot;;
87
+
88
+ (: Need to backslash escape any double quotes, backslashes, and newlines :)
89
+ declare function json:escape($s as xs:string) as xs:string {
90
+ let $s := replace($s, &quot;\\&quot;, &quot;\\\\&quot;)
91
+ let $s := replace($s, &quot;&quot;&quot;&quot;, &quot;\\&quot;&quot;&quot;)
92
+ let $s := replace($s, codepoints-to-string((13, 10)), &quot;\\n&quot;)
93
+ let $s := replace($s, codepoints-to-string(13), &quot;\\n&quot;)
94
+ let $s := replace($s, codepoints-to-string(10), &quot;\\n&quot;)
95
+ return $s
96
+ };
97
+
98
+ declare function json:atomize($x as element()) as xs:string {
99
+ if (count($x/node()) = 0) then 'null'
100
+ else if ($x/@type = &quot;number&quot;) then
101
+ let $castable := $x castable as xs:float or
102
+ $x castable as xs:double or
103
+ $x castable as xs:decimal
104
+ return
105
+ if ($castable) then xs:string($x)
106
+ else error(concat(&quot;Not a number: &quot;, xdmp:describe($x)))
107
+ else if ($x/@type = &quot;boolean&quot;) then
108
+ let $castable := $x castable as xs:boolean
109
+ return
110
+ if ($castable) then xs:string(xs:boolean($x))
111
+ else error(concat(&quot;Not a boolean: &quot;, xdmp:describe($x)))
112
+ else concat('&quot;', json:escape($x), '&quot;')
113
+ };
114
+
115
+ (: Print the thing that comes after the colon :)
116
+ declare function json:print-value($x as element()) as xs:string {
117
+ if (count($x/*) = 0) then
118
+ json:atomize($x)
119
+ else if ($x/@quote = &quot;true&quot;) then
120
+ concat('&quot;', json:escape(xdmp:quote($x/node())), '&quot;')
121
+ else
122
+ string-join(('{',
123
+ string-join(for $i in $x/* return json:print-name-value($i), &quot;,&quot;),
124
+ '}'), &quot;&quot;)
125
+ };
126
+
127
+ (: Print the name and value both :)
128
+ declare function json:print-name-value($x as element()) as xs:string? {
129
+ let $name := name($x)
130
+ let $first-in-array :=
131
+ count($x/preceding-sibling::*[name(.) = $name]) = 0 and
132
+ (count($x/following-sibling::*[name(.) = $name]) &gt; 0 or $x/@array = &quot;true&quot;)
133
+ let $later-in-array := count($x/preceding-sibling::*[name(.) = $name]) &gt; 0
134
+ return
135
+
136
+ if ($later-in-array) then
137
+ () (: I was handled previously :)
138
+ else if ($first-in-array) then
139
+ string-join(('&quot;', json:escape($name), '&quot;:[',
140
+ string-join((for $i in ($x, $x/following-sibling::*[name(.) = $name]) return json:print-value($i)), &quot;,&quot;),
141
+ ']'), &quot;&quot;)
142
+ else
143
+ string-join(('&quot;', json:escape($name), '&quot;:', json:print-value($x)), &quot;&quot;)
144
+ };
145
+
146
+ (:~
147
+ Transforms an XML element into a JSON string representation. See http://json.org.
148
+ &lt;p/&gt;
149
+ Sample usage:
150
+ &lt;pre&gt;
151
+ xquery version &quot;1.0-ml&quot;;
152
+ import module namespace json=&quot;http://marklogic.com/json&quot; at &quot;json.xqy&quot;;
153
+ json:serialize(&amp;lt;foo&amp;gt;&amp;lt;bar&amp;gt;kid&amp;lt;/bar&amp;gt;&amp;lt;/foo&amp;gt;)
154
+ &lt;/pre&gt;
155
+ Sample transformations:
156
+ &lt;pre&gt;
157
+ &amp;lt;e/&amp;gt; becomes {&quot;e&quot;:null}
158
+ &amp;lt;e&amp;gt;text&amp;lt;/e&amp;gt; becomes {&quot;e&quot;:&quot;text&quot;}
159
+ &amp;lt;e&amp;gt;quote &quot; escaping&amp;lt;/e&amp;gt; becomes {&quot;e&quot;:&quot;quote \&quot; escaping&quot;}
160
+ &amp;lt;e&amp;gt;backslash \ escaping&amp;lt;/e&amp;gt; becomes {&quot;e&quot;:&quot;backslash \\ escaping&quot;}
161
+ &amp;lt;e&amp;gt;&amp;lt;a&amp;gt;text1&amp;lt;/a&amp;gt;&amp;lt;b&amp;gt;text2&amp;lt;/b&amp;gt;&amp;lt;/e&amp;gt; becomes {&quot;e&quot;:{&quot;a&quot;:&quot;text1&quot;,&quot;b&quot;:&quot;text2&quot;}}
162
+ &amp;lt;e&amp;gt;&amp;lt;a&amp;gt;text1&amp;lt;/a&amp;gt;&amp;lt;a&amp;gt;text2&amp;lt;/a&amp;gt;&amp;lt;/e&amp;gt; becomes {&quot;e&quot;:{&quot;a&quot;:[&quot;text1&quot;,&quot;text2&quot;]}}
163
+ &amp;lt;e&amp;gt;&amp;lt;a array=&quot;true&quot;&amp;gt;text1&amp;lt;/a&amp;gt;&amp;lt;/e&amp;gt; becomes {&quot;e&quot;:{&quot;a&quot;:[&quot;text1&quot;]}}
164
+ &amp;lt;e&amp;gt;&amp;lt;a type=&quot;boolean&quot;&amp;gt;false&amp;lt;/a&amp;gt;&amp;lt;/e&amp;gt; becomes {&quot;e&quot;:{&quot;a&quot;:false}}
165
+ &amp;lt;e&amp;gt;&amp;lt;a type=&quot;number&quot;&amp;gt;123.5&amp;lt;/a&amp;gt;&amp;lt;/e&amp;gt; becomes {&quot;e&quot;:{&quot;a&quot;:123.5}}
166
+ &amp;lt;e quote=&quot;true&quot;&amp;gt;&amp;lt;div attrib=&quot;value&quot;/&amp;gt;&amp;lt;/e&amp;gt; becomes {&quot;e&quot;:&quot;&amp;lt;div attrib=\&quot;value\&quot;/&amp;gt;&quot;}
167
+ &lt;/pre&gt;
168
+ &lt;p/&gt;
169
+ Namespace URIs are ignored. Namespace prefixes are included in the JSON name.
170
+ &lt;p/&gt;
171
+ Attributes are ignored, except for the special attribute @array=&quot;true&quot; that
172
+ indicates the JSON serialization should write the node, even if single, as an
173
+ array, and the attribute @type that can be set to &quot;boolean&quot; or &quot;number&quot; to
174
+ dictate the value should be written as that type (unquoted). There's also
175
+ an @quote attribute that when set to true writes the inner content as text
176
+ rather than as structured JSON, useful for sending some XHTML over the
177
+ wire.
178
+ &lt;p/&gt;
179
+ Text nodes within mixed content are ignored.
180
+
181
+ @param $x Element node to convert
182
+ @return String holding JSON serialized representation of $x
183
+
184
+ @author Jason Hunter
185
+ @version 1.0.1
186
+
187
+ Ported to xquery 1.0-ml; double escaped backslashes in json:escape
188
+ :)
189
+ declare function json:serialize($x as element()) as xs:string {
190
+ string-join(('{', json:print-name-value($x), '}'), &quot;&quot;)
191
+ };
192
+ </textarea>
193
+ </div>
194
+
195
+ <script>
196
+ var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
197
+ lineNumbers: true,
198
+ matchBrackets: true,
199
+ theme: "xq-dark"
200
+ });
201
+ </script>
202
+
203
+ <p><strong>MIME types defined:</strong> <code>application/xquery</code>.</p>
204
+
205
+ <p>Development of the CodeMirror XQuery mode was sponsored by
206
+ <a href="http://marklogic.com">MarkLogic</a> and developed by
207
+ <a href="https://twitter.com/mbrevoort">Mike Brevoort</a>.
208
+ </p>
209
+
210
+ </article>