gollum 2.4.4 → 2.4.5

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of gollum might be problematic. Click here for more details.

Files changed (391) hide show
  1. data/gollum.gemspec +100 -19
  2. data/lib/gollum.rb +2 -3
  3. data/lib/gollum/frontend/public/gollum/css/gollum.css +3 -1
  4. data/lib/gollum/frontend/public/gollum/css/template.css +8 -12
  5. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/ace.js +64 -60
  6. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/anchor.js +56 -62
  7. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/anchor_test.js +25 -32
  8. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/background_tokenizer.js +56 -63
  9. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/background_tokenizer_test.js +25 -32
  10. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/commands/command_manager.js +11 -11
  11. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/commands/command_manager_test.js +59 -53
  12. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/commands/default_commands.js +46 -39
  13. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/commands/multi_select_commands.js +32 -36
  14. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/config.js +62 -47
  15. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/config_test.js +71 -0
  16. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/css/editor.css +82 -41
  17. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/document.js +126 -145
  18. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/document_test.js +25 -33
  19. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/edit_session.js +484 -467
  20. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/edit_session/bracket_match.js +30 -63
  21. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/edit_session/fold.js +29 -37
  22. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/edit_session/fold_line.js +27 -35
  23. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/edit_session/folding.js +47 -55
  24. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/edit_session_test.js +61 -41
  25. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/editor.js +506 -517
  26. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/editor_change_document_test.js +25 -32
  27. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/editor_highlight_selected_word_test.js +26 -34
  28. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/editor_navigation_test.js +25 -32
  29. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/editor_text_edit_test.js +25 -32
  30. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/ext/static_highlight.js +28 -38
  31. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/ext/static_highlight_test.js +9 -14
  32. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/ext/textarea.js +26 -36
  33. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/keyboard/emacs.js +44 -36
  34. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/keyboard/hash_handler.js +45 -52
  35. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/keyboard/keybinding.js +25 -34
  36. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/keyboard/state_handler.js +26 -33
  37. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/keyboard/textinput.js +230 -165
  38. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/keyboard/vim.js +76 -49
  39. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/keyboard/vim/commands.js +66 -61
  40. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/keyboard/vim/maps/aliases.js +36 -43
  41. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/keyboard/vim/maps/motions.js +138 -156
  42. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/keyboard/vim/maps/operators.js +35 -32
  43. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/keyboard/vim/maps/util.js +18 -18
  44. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/keyboard/vim/registers.js +25 -32
  45. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/layer/cursor.js +116 -101
  46. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/layer/gutter.js +117 -83
  47. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/layer/marker.js +60 -71
  48. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/layer/text.js +163 -102
  49. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/layer/text_test.js +60 -41
  50. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/lib/browser_focus.js +26 -36
  51. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/lib/dom.js +26 -36
  52. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/lib/es5-shim.js +24 -1
  53. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/lib/event.js +52 -54
  54. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/lib/event_emitter.js +32 -39
  55. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/lib/event_emitter_test.js +25 -32
  56. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/lib/keys.js +9 -1
  57. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/lib/lang.js +73 -33
  58. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/lib/net.js +10 -3
  59. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/lib/oop.js +25 -32
  60. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/lib/regexp.js +2 -2
  61. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/lib/useragent.js +55 -58
  62. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/package.json +8 -0
  63. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/test_highlight_rules.js +144 -0
  64. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/text_javascript.txt +52 -0
  65. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_c9search.json +175 -0
  66. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_c_cpp.json +124 -0
  67. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_clojure.json +248 -0
  68. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_coffee.json +188 -0
  69. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_coldfusion.json +41 -0
  70. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_csharp.json +42 -0
  71. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_css.json +231 -0
  72. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_diff.json +732 -0
  73. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_glsl.json +185 -0
  74. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_golang.json +362 -0
  75. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_groovy.json +529 -0
  76. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_haxe.json +195 -0
  77. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_html.json +150 -0
  78. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_java.json +139 -0
  79. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_javascript.json +555 -0
  80. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_json.json +611 -0
  81. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_jsx.json +79 -0
  82. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_latex.json +196 -0
  83. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_less.json +292 -0
  84. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_liquid.json +698 -0
  85. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_lua.json +451 -0
  86. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_luapage.json +824 -0
  87. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_markdown.json +1202 -0
  88. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_ocaml.json +260 -0
  89. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_perl.json +311 -0
  90. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_pgsql.json +1020 -0
  91. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_php.json +238 -0
  92. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_powershell.json +255 -0
  93. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_python.json +205 -0
  94. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_ruby.json +104 -0
  95. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_scad.json +267 -0
  96. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_scala.json +748 -0
  97. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_scss.json +181 -0
  98. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_sh.json +434 -0
  99. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_sql.json +73 -0
  100. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_svg.json +931 -0
  101. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_tcl.json +536 -0
  102. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_text.json +58 -0
  103. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_textile.json +195 -0
  104. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_xml.json +705 -0
  105. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_xquery.json +64 -0
  106. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/_test/tokens_yaml.json +260 -0
  107. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/abap.js +77 -0
  108. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/abap_highlight_rules.js +133 -0
  109. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/asciidoc.js +64 -0
  110. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/asciidoc_highlight_rules.js +234 -0
  111. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/behaviour.js +26 -34
  112. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/behaviour/cstyle.js +195 -55
  113. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/behaviour/html.js +26 -34
  114. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/behaviour/xml.js +26 -34
  115. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/behaviour/xquery.js +31 -31
  116. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/c9search.js +25 -32
  117. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/c9search_highlight_rules.js +25 -32
  118. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/c_cpp.js +25 -33
  119. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/c_cpp_highlight_rules.js +67 -60
  120. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/clojure.js +25 -34
  121. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/clojure_highlight_rules.js +112 -130
  122. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/coffee.js +29 -36
  123. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/coffee/coffee-script.js +25 -32
  124. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/coffee/helpers.js +22 -7
  125. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/coffee/lexer.js +140 -64
  126. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/coffee/nodes.js +479 -237
  127. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/coffee/parser.js +321 -230
  128. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/coffee/parser_test.js +25 -32
  129. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/coffee/rewriter.js +62 -28
  130. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/coffee/scope.js +39 -20
  131. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/coffee_highlight_rules.js +183 -82
  132. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/coffee_highlight_rules_test.js +226 -32
  133. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/coffee_worker.js +25 -32
  134. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/coldfusion.js +25 -32
  135. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/coldfusion_highlight_rules.js +28 -35
  136. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/coldfusion_test.js +25 -32
  137. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/csharp_highlight_rules.js +7 -21
  138. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/css.js +36 -47
  139. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/css/csslint.js +202 -697
  140. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/css_highlight_rules.js +51 -84
  141. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/css_highlight_rules_test.js +25 -32
  142. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/css_test.js +25 -32
  143. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/css_worker.js +68 -40
  144. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/css_worker_test.js +25 -32
  145. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/dart.js +62 -0
  146. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/dart_highlight_rules.js +192 -0
  147. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/diff.js +25 -31
  148. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/diff_highlight_rules.js +27 -33
  149. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/doc_comment_highlight_rules.js +25 -32
  150. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/folding/asciidoc.js +142 -0
  151. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/folding/c9search.js +31 -37
  152. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/folding/coffee.js +26 -33
  153. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/folding/coffee_test.js +25 -32
  154. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/folding/cstyle.js +30 -51
  155. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/folding/cstyle_test.js +25 -32
  156. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/folding/diff.js +28 -35
  157. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/folding/fold_mode.js +35 -30
  158. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/folding/html.js +25 -32
  159. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/folding/html_test.js +25 -32
  160. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/folding/latex.js +162 -0
  161. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/folding/lua.js +163 -0
  162. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/folding/markdown.js +125 -0
  163. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/folding/mixed.js +25 -32
  164. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/folding/pythonic.js +25 -32
  165. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/folding/pythonic_test.js +26 -33
  166. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/folding/xml.js +25 -32
  167. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/folding/xml_test.js +25 -32
  168. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/glsl.js +52 -0
  169. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/glsl_highlight_rules.js +81 -0
  170. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/golang.js +0 -1
  171. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/golang_highlight_rules.js +15 -22
  172. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/groovy_highlight_rules.js +28 -36
  173. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/haml.js +62 -0
  174. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/haml_highlight_rules.js +132 -0
  175. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/haxe.js +20 -25
  176. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/haxe_highlight_rules.js +11 -15
  177. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/html.js +25 -32
  178. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/html_highlight_rules.js +32 -38
  179. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/html_highlight_rules_test.js +162 -69
  180. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/html_test.js +25 -32
  181. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/jade.js +58 -0
  182. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/jade_highlight_rules.js +347 -0
  183. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/java_highlight_rules.js +18 -29
  184. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/javascript.js +28 -51
  185. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/javascript/jshint.js +4838 -0
  186. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/javascript_highlight_rules.js +98 -180
  187. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/javascript_highlight_rules_test.js +26 -33
  188. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/javascript_test.js +25 -32
  189. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/javascript_worker.js +163 -64
  190. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/javascript_worker_test.js +38 -40
  191. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/json.js +26 -33
  192. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/json_highlight_rules.js +26 -34
  193. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/json_worker.js +25 -32
  194. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/json_worker_test.js +25 -32
  195. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/jsp.js +56 -0
  196. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/jsp_highlight_rules.js +85 -0
  197. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/latex.js +3 -2
  198. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/latex_highlight_rules.js +1 -1
  199. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/less.js +25 -33
  200. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/less_highlight_rules.js +25 -33
  201. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/liquid.js +25 -32
  202. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/liquid_highlight_rules.js +146 -161
  203. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/liquid_highlight_rules_test.js +25 -32
  204. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/lisp.js +60 -0
  205. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/lisp_highlight_rules.js +127 -0
  206. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/lua.js +116 -56
  207. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/lua_highlight_rules.js +75 -101
  208. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/lucene.js +16 -0
  209. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/lucene_highlight_rules.js +49 -0
  210. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/lucene_highlight_rules_test.js +99 -0
  211. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/makefile.js +62 -0
  212. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/makefile_highlight_rules.js +75 -0
  213. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/markdown.js +35 -41
  214. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/markdown_highlight_rules.js +29 -37
  215. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/markdown_highlight_rules_test.js +100 -0
  216. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/matching_brace_outdent.js +25 -32
  217. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/matching_parens_outdent.js +25 -32
  218. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/objectivec.js +62 -0
  219. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/objectivec_highlight_rules.js +343 -0
  220. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/ocaml.js +25 -32
  221. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/ocaml_highlight_rules.js +39 -53
  222. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/perl.js +25 -32
  223. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/perl_highlight_rules.js +39 -52
  224. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/pgsql.js +33 -24
  225. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/pgsql_highlight_rules.js +55 -51
  226. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/php.js +57 -36
  227. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/php_highlight_rules.js +53 -153
  228. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/powershell_highlight_rules.js +31 -21
  229. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/python.js +28 -36
  230. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/python_highlight_rules.js +44 -61
  231. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/python_test.js +25 -32
  232. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/r.js +135 -0
  233. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/r_highlight_rules.js +190 -0
  234. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/rdoc.js +36 -0
  235. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/rdoc_highlight_rules.js +99 -0
  236. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/rhtml.js +67 -0
  237. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/rhtml_highlight_rules.js +49 -0
  238. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/ruby.js +27 -33
  239. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/ruby_highlight_rules.js +102 -90
  240. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/ruby_highlight_rules_test.js +29 -37
  241. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/scad.js +25 -33
  242. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/scad_highlight_rules.js +32 -54
  243. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/scala_highlight_rules.js +18 -32
  244. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/scss.js +25 -32
  245. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/scss_highlight_rules.js +25 -32
  246. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/sh.js +28 -35
  247. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/sh_highlight_rules.js +48 -64
  248. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/sql.js +28 -18
  249. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/sql_highlight_rules.js +41 -36
  250. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/stylus.js +62 -0
  251. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/stylus_highlight_rules.js +175 -0
  252. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/svg.js +25 -32
  253. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/svg_highlight_rules.js +26 -33
  254. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/tcl.js +110 -0
  255. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/tcl_highlight_rules.js +180 -0
  256. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/tex.js +48 -0
  257. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/tex_highlight_rules.js +107 -0
  258. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/text.js +26 -36
  259. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/text_highlight_rules.js +57 -46
  260. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/text_test.js +25 -32
  261. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/textile.js +25 -32
  262. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/textile_highlight_rules.js +26 -33
  263. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/typescript.js +68 -0
  264. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/typescript_highlight_rules.js +98 -0
  265. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xml.js +25 -32
  266. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xml_highlight_rules.js +27 -34
  267. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xml_highlight_rules_test.js +183 -78
  268. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xml_test.js +25 -32
  269. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xml_util.js +30 -38
  270. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xquery.js +32 -37
  271. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xquery/JSONParseTreeHandler.js +92 -0
  272. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xquery/XQueryParser.js +32954 -42497
  273. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xquery/visitors/SyntaxHighlighter.js +316 -0
  274. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xquery_highlight_rules.js +31 -44
  275. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xquery_worker.js +48 -57
  276. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/yaml.js +30 -18
  277. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/yaml_highlight_rules.js +48 -40
  278. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/model/editor.js +26 -34
  279. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mouse/default_gutter_handler.js +126 -40
  280. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mouse/default_handlers.js +35 -43
  281. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mouse/dragdrop.js +28 -35
  282. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mouse/fold_handler.js +78 -39
  283. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mouse/mouse_event.js +26 -34
  284. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mouse/mouse_handler.js +39 -36
  285. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mouse/multi_select_handler.js +26 -34
  286. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/multi_select.js +234 -103
  287. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/multi_select_test.js +26 -34
  288. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/placeholder.js +30 -39
  289. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/placeholder_test.js +27 -35
  290. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/range.js +190 -201
  291. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/range_list.js +25 -32
  292. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/range_list_test.js +25 -32
  293. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/range_test.js +25 -32
  294. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/renderloop.js +31 -49
  295. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/requirejs/text.js +27 -34
  296. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/scrollbar.js +52 -55
  297. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/search.js +91 -105
  298. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/search_highlight.js +31 -34
  299. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/search_test.js +47 -37
  300. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/selection.js +138 -153
  301. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/selection_test.js +25 -32
  302. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/split.js +67 -105
  303. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/test/all.js +25 -32
  304. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/test/all_browser.js +3 -2
  305. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/test/assertions.js +25 -32
  306. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/test/benchmark.js +25 -32
  307. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/test/mockrenderer.js +30 -34
  308. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/ambiance.css +217 -0
  309. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/ambiance.js +33 -0
  310. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/chrome.css +37 -38
  311. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/chrome.js +27 -34
  312. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/clouds.css +53 -47
  313. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/clouds.js +28 -35
  314. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/clouds_midnight.css +54 -48
  315. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/clouds_midnight.js +28 -35
  316. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/cobalt.css +58 -59
  317. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/cobalt.js +28 -35
  318. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/crimson_editor.css +33 -33
  319. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/crimson_editor.js +26 -33
  320. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/dawn.css +52 -64
  321. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/dawn.js +28 -35
  322. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/dreamweaver.css +33 -36
  323. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/dreamweaver.js +26 -33
  324. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/eclipse.css +29 -25
  325. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/eclipse.js +26 -33
  326. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/github.css +14 -21
  327. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/github.js +26 -33
  328. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/idle_fingers.css +48 -60
  329. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/idle_fingers.js +28 -35
  330. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/kr_theme.css +52 -57
  331. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/kr_theme.js +28 -35
  332. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/merbivore.css +53 -71
  333. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/merbivore.js +28 -35
  334. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/merbivore_soft.css +54 -77
  335. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/merbivore_soft.js +28 -35
  336. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/mono_industrial.css +60 -70
  337. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/mono_industrial.js +28 -35
  338. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/monokai.css +55 -72
  339. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/monokai.js +28 -35
  340. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/pastel_on_dark.css +55 -64
  341. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/pastel_on_dark.js +28 -35
  342. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/solarized_dark.css +48 -66
  343. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/solarized_dark.js +28 -35
  344. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/solarized_light.css +49 -61
  345. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/solarized_light.js +28 -35
  346. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/textmate.css +38 -44
  347. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/textmate.js +26 -33
  348. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/tomorrow.css +59 -87
  349. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/tomorrow.js +28 -35
  350. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/tomorrow_night.css +59 -87
  351. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/tomorrow_night.js +28 -35
  352. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/tomorrow_night_blue.css +59 -90
  353. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/tomorrow_night_blue.js +28 -35
  354. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/tomorrow_night_bright.css +59 -87
  355. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/tomorrow_night_bright.js +28 -35
  356. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/tomorrow_night_eighties.css +57 -85
  357. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/tomorrow_night_eighties.js +28 -35
  358. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/twilight.css +54 -78
  359. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/twilight.js +28 -35
  360. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/vibrant_ink.css +45 -68
  361. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/vibrant_ink.js +28 -35
  362. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/xcode.css +111 -0
  363. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/theme/xcode.js +39 -0
  364. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/token_iterator.js +37 -50
  365. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/token_iterator_test.js +26 -33
  366. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/tokenizer.js +40 -41
  367. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/tokenizer_dev.js +205 -0
  368. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/undomanager.js +48 -55
  369. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/virtual_renderer.js +254 -277
  370. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/virtual_renderer_test.js +25 -32
  371. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/worker/worker.js +22 -4
  372. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/worker/worker_client.js +97 -56
  373. data/lib/gollum/frontend/public/gollum/livepreview/licenses/ace/LICENSE.txt +24 -476
  374. data/lib/gollum/frontend/public/gollum/livepreview/licenses/licenses.txt +2 -2
  375. data/lib/gollum/frontend/views/page.rb +3 -2
  376. metadata +102 -21
  377. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xquery/Position.js +0 -59
  378. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xquery/StringLexer.js +0 -1686
  379. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xquery/XMLLexer.js +0 -2993
  380. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xquery/XQDTLexer.js +0 -69
  381. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xquery/XQDTParser.js +0 -63
  382. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xquery/XQueryLexer.js +0 -10363
  383. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xquery/XQuerySemanticHighlighter.js +0 -165
  384. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xquery/antlr3-all.js +0 -6177
  385. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/mode/xquery/xquery.js +0 -55
  386. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/narcissus/definitions.js +0 -696
  387. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/narcissus/lexer.js +0 -598
  388. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/narcissus/options.js +0 -61
  389. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/narcissus/parser.js +0 -2072
  390. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/worker/jshint.js +0 -4469
  391. data/lib/gollum/frontend/public/gollum/livepreview/js/ace/lib/ace/worker/jslint.js +0 -6396
@@ -0,0 +1,1020 @@
1
+ [
2
+ {
3
+ "state": "start",
4
+ "data": []
5
+ },
6
+ {
7
+ "state": "start",
8
+ "data": [
9
+ [ "keyword.statementBegin", "BEGIN" ],
10
+ [ "statementEnd", ";" ]
11
+ ]
12
+ },
13
+ {
14
+ "state": "start",
15
+ "data": []
16
+ },
17
+ {
18
+ "state": "doc-start",
19
+ "data": [
20
+ [ "comment.doc", "/**" ]
21
+ ]
22
+ },
23
+ {
24
+ "state": "doc-start",
25
+ "data": [
26
+ [ "comment.doc", "* Samples from PostgreSQL src/tutorial/basics.source" ]
27
+ ]
28
+ },
29
+ {
30
+ "state": "start",
31
+ "data": [
32
+ [ "comment.doc", "*/" ]
33
+ ]
34
+ },
35
+ {
36
+ "state": "statement",
37
+ "data": [
38
+ [ "keyword.statementBegin", "CREATE" ],
39
+ [ "text", " " ],
40
+ [ "keyword", "TABLE" ],
41
+ [ "text", " " ],
42
+ [ "identifier", "weather" ],
43
+ [ "text", " " ],
44
+ [ "paren.lparen", "(" ]
45
+ ]
46
+ },
47
+ {
48
+ "state": "statement",
49
+ "data": [
50
+ [ "text", "\t" ],
51
+ [ "identifier", "city" ],
52
+ [ "text", "\t\t" ],
53
+ [ "keyword", "varchar" ],
54
+ [ "paren.lparen", "(" ],
55
+ [ "constant.numeric", "80" ],
56
+ [ "paren.rparen", ")" ],
57
+ [ "text", "," ]
58
+ ]
59
+ },
60
+ {
61
+ "state": "statement",
62
+ "data": [
63
+ [ "text", "\t" ],
64
+ [ "identifier", "temp_lo" ],
65
+ [ "text", "\t\t" ],
66
+ [ "keyword", "int" ],
67
+ [ "text", ",\t\t" ],
68
+ [ "comment", "-- low temperature" ]
69
+ ]
70
+ },
71
+ {
72
+ "state": "statement",
73
+ "data": [
74
+ [ "text", "\t" ],
75
+ [ "identifier", "temp_hi" ],
76
+ [ "text", "\t\t" ],
77
+ [ "keyword", "int" ],
78
+ [ "text", ",\t\t" ],
79
+ [ "comment", "-- high temperature" ]
80
+ ]
81
+ },
82
+ {
83
+ "state": "statement",
84
+ "data": [
85
+ [ "text", "\t" ],
86
+ [ "identifier", "prcp" ],
87
+ [ "text", "\t\t" ],
88
+ [ "keyword", "real" ],
89
+ [ "text", ",\t\t" ],
90
+ [ "comment", "-- precipitation" ]
91
+ ]
92
+ },
93
+ {
94
+ "state": "statement",
95
+ "data": [
96
+ [ "text", "\t" ],
97
+ [ "variable.language", "\"date\"" ],
98
+ [ "text", "\t\t" ],
99
+ [ "keyword", "date" ]
100
+ ]
101
+ },
102
+ {
103
+ "state": "start",
104
+ "data": [
105
+ [ "paren.rparen", ")" ],
106
+ [ "statementEnd", ";" ]
107
+ ]
108
+ },
109
+ {
110
+ "state": "start",
111
+ "data": []
112
+ },
113
+ {
114
+ "state": "statement",
115
+ "data": [
116
+ [ "keyword.statementBegin", "CREATE" ],
117
+ [ "text", " " ],
118
+ [ "keyword", "TABLE" ],
119
+ [ "text", " " ],
120
+ [ "identifier", "cities" ],
121
+ [ "text", " " ],
122
+ [ "paren.lparen", "(" ]
123
+ ]
124
+ },
125
+ {
126
+ "state": "statement",
127
+ "data": [
128
+ [ "text", "\t" ],
129
+ [ "keyword", "name" ],
130
+ [ "text", "\t\t" ],
131
+ [ "keyword", "varchar" ],
132
+ [ "paren.lparen", "(" ],
133
+ [ "constant.numeric", "80" ],
134
+ [ "paren.rparen", ")" ],
135
+ [ "text", "," ]
136
+ ]
137
+ },
138
+ {
139
+ "state": "statement",
140
+ "data": [
141
+ [ "text", "\t" ],
142
+ [ "keyword", "location" ],
143
+ [ "text", "\t" ],
144
+ [ "keyword", "point" ]
145
+ ]
146
+ },
147
+ {
148
+ "state": "start",
149
+ "data": [
150
+ [ "paren.rparen", ")" ],
151
+ [ "statementEnd", ";" ]
152
+ ]
153
+ },
154
+ {
155
+ "state": "start",
156
+ "data": []
157
+ },
158
+ {
159
+ "state": "start",
160
+ "data": []
161
+ },
162
+ {
163
+ "state": "statement",
164
+ "data": [
165
+ [ "keyword.statementBegin", "INSERT" ],
166
+ [ "text", " " ],
167
+ [ "keyword", "INTO" ],
168
+ [ "text", " " ],
169
+ [ "identifier", "weather" ]
170
+ ]
171
+ },
172
+ {
173
+ "state": "start",
174
+ "data": [
175
+ [ "text", " " ],
176
+ [ "keyword", "VALUES" ],
177
+ [ "text", " " ],
178
+ [ "paren.lparen", "(" ],
179
+ [ "string", "'San Francisco'" ],
180
+ [ "text", ", " ],
181
+ [ "constant.numeric", "46" ],
182
+ [ "text", ", " ],
183
+ [ "constant.numeric", "50" ],
184
+ [ "text", ", " ],
185
+ [ "constant.numeric", "0.25" ],
186
+ [ "text", ", " ],
187
+ [ "string", "'1994-11-27'" ],
188
+ [ "paren.rparen", ")" ],
189
+ [ "statementEnd", ";" ]
190
+ ]
191
+ },
192
+ {
193
+ "state": "start",
194
+ "data": []
195
+ },
196
+ {
197
+ "state": "statement",
198
+ "data": [
199
+ [ "keyword.statementBegin", "INSERT" ],
200
+ [ "text", " " ],
201
+ [ "keyword", "INTO" ],
202
+ [ "text", " " ],
203
+ [ "identifier", "cities" ]
204
+ ]
205
+ },
206
+ {
207
+ "state": "start",
208
+ "data": [
209
+ [ "text", " " ],
210
+ [ "keyword", "VALUES" ],
211
+ [ "text", " " ],
212
+ [ "paren.lparen", "(" ],
213
+ [ "string", "'San Francisco'" ],
214
+ [ "text", ", " ],
215
+ [ "string", "'(-194.0, 53.0)'" ],
216
+ [ "paren.rparen", ")" ],
217
+ [ "statementEnd", ";" ]
218
+ ]
219
+ },
220
+ {
221
+ "state": "start",
222
+ "data": []
223
+ },
224
+ {
225
+ "state": "statement",
226
+ "data": [
227
+ [ "keyword.statementBegin", "INSERT" ],
228
+ [ "text", " " ],
229
+ [ "keyword", "INTO" ],
230
+ [ "text", " " ],
231
+ [ "identifier", "weather" ],
232
+ [ "text", " " ],
233
+ [ "paren.lparen", "(" ],
234
+ [ "identifier", "city" ],
235
+ [ "text", ", " ],
236
+ [ "identifier", "temp_lo" ],
237
+ [ "text", ", " ],
238
+ [ "identifier", "temp_hi" ],
239
+ [ "text", ", " ],
240
+ [ "identifier", "prcp" ],
241
+ [ "text", ", " ],
242
+ [ "variable.language", "\"date\"" ],
243
+ [ "paren.rparen", ")" ]
244
+ ]
245
+ },
246
+ {
247
+ "state": "start",
248
+ "data": [
249
+ [ "text", " " ],
250
+ [ "keyword", "VALUES" ],
251
+ [ "text", " " ],
252
+ [ "paren.lparen", "(" ],
253
+ [ "string", "'San Francisco'" ],
254
+ [ "text", ", " ],
255
+ [ "constant.numeric", "43" ],
256
+ [ "text", ", " ],
257
+ [ "constant.numeric", "57" ],
258
+ [ "text", ", " ],
259
+ [ "constant.numeric", "0.0" ],
260
+ [ "text", ", " ],
261
+ [ "string", "'1994-11-29'" ],
262
+ [ "paren.rparen", ")" ],
263
+ [ "statementEnd", ";" ]
264
+ ]
265
+ },
266
+ {
267
+ "state": "start",
268
+ "data": []
269
+ },
270
+ {
271
+ "state": "statement",
272
+ "data": [
273
+ [ "keyword.statementBegin", "INSERT" ],
274
+ [ "text", " " ],
275
+ [ "keyword", "INTO" ],
276
+ [ "text", " " ],
277
+ [ "identifier", "weather" ],
278
+ [ "text", " " ],
279
+ [ "paren.lparen", "(" ],
280
+ [ "keyword", "date" ],
281
+ [ "text", ", " ],
282
+ [ "identifier", "city" ],
283
+ [ "text", ", " ],
284
+ [ "identifier", "temp_hi" ],
285
+ [ "text", ", " ],
286
+ [ "identifier", "temp_lo" ],
287
+ [ "paren.rparen", ")" ]
288
+ ]
289
+ },
290
+ {
291
+ "state": "start",
292
+ "data": [
293
+ [ "text", " " ],
294
+ [ "keyword", "VALUES" ],
295
+ [ "text", " " ],
296
+ [ "paren.lparen", "(" ],
297
+ [ "string", "'1994-11-29'" ],
298
+ [ "text", ", " ],
299
+ [ "string", "'Hayward'" ],
300
+ [ "text", ", " ],
301
+ [ "constant.numeric", "54" ],
302
+ [ "text", ", " ],
303
+ [ "constant.numeric", "37" ],
304
+ [ "paren.rparen", ")" ],
305
+ [ "statementEnd", ";" ]
306
+ ]
307
+ },
308
+ {
309
+ "state": "start",
310
+ "data": []
311
+ },
312
+ {
313
+ "state": "start",
314
+ "data": []
315
+ },
316
+ {
317
+ "state": "start",
318
+ "data": [
319
+ [ "keyword.statementBegin", "SELECT" ],
320
+ [ "text", " " ],
321
+ [ "identifier", "city" ],
322
+ [ "text", ", " ],
323
+ [ "paren.lparen", "(" ],
324
+ [ "identifier", "temp_hi" ],
325
+ [ "keyword.operator", "+" ],
326
+ [ "identifier", "temp_lo" ],
327
+ [ "paren.rparen", ")" ],
328
+ [ "keyword.operator", "/" ],
329
+ [ "constant.numeric", "2" ],
330
+ [ "text", " " ],
331
+ [ "keyword", "AS" ],
332
+ [ "text", " " ],
333
+ [ "identifier", "temp_avg" ],
334
+ [ "text", ", " ],
335
+ [ "variable.language", "\"date\"" ],
336
+ [ "text", " " ],
337
+ [ "keyword", "FROM" ],
338
+ [ "text", " " ],
339
+ [ "identifier", "weather" ],
340
+ [ "statementEnd", ";" ]
341
+ ]
342
+ },
343
+ {
344
+ "state": "start",
345
+ "data": []
346
+ },
347
+ {
348
+ "state": "statement",
349
+ "data": [
350
+ [ "keyword.statementBegin", "SELECT" ],
351
+ [ "text", " " ],
352
+ [ "identifier", "city" ],
353
+ [ "text", ", " ],
354
+ [ "identifier", "temp_lo" ],
355
+ [ "text", ", " ],
356
+ [ "identifier", "temp_hi" ],
357
+ [ "text", ", " ],
358
+ [ "identifier", "prcp" ],
359
+ [ "text", ", " ],
360
+ [ "variable.language", "\"date\"" ],
361
+ [ "text", ", " ],
362
+ [ "keyword", "location" ]
363
+ ]
364
+ },
365
+ {
366
+ "state": "statement",
367
+ "data": [
368
+ [ "text", " " ],
369
+ [ "keyword", "FROM" ],
370
+ [ "text", " " ],
371
+ [ "identifier", "weather" ],
372
+ [ "text", ", " ],
373
+ [ "identifier", "cities" ]
374
+ ]
375
+ },
376
+ {
377
+ "state": "start",
378
+ "data": [
379
+ [ "text", " " ],
380
+ [ "keyword", "WHERE" ],
381
+ [ "text", " " ],
382
+ [ "identifier", "city" ],
383
+ [ "text", " " ],
384
+ [ "keyword.operator", "=" ],
385
+ [ "text", " " ],
386
+ [ "keyword", "name" ],
387
+ [ "statementEnd", ";" ]
388
+ ]
389
+ },
390
+ {
391
+ "state": "start",
392
+ "data": []
393
+ },
394
+ {
395
+ "state": "start",
396
+ "data": []
397
+ },
398
+ {
399
+ "state": "start",
400
+ "data": []
401
+ },
402
+ {
403
+ "state": "doc-start",
404
+ "data": [
405
+ [ "comment.doc", "/**" ]
406
+ ]
407
+ },
408
+ {
409
+ "state": "doc-start",
410
+ "data": [
411
+ [ "comment.doc", "* Dollar quotes starting at the end of the line are colored as SQL unless" ]
412
+ ]
413
+ },
414
+ {
415
+ "state": "doc-start",
416
+ "data": [
417
+ [ "comment.doc", "* a special language tag is used. Pearl and Python are currently implemented" ]
418
+ ]
419
+ },
420
+ {
421
+ "state": "doc-start",
422
+ "data": [
423
+ [ "comment.doc", "* but lots of others are possible." ]
424
+ ]
425
+ },
426
+ {
427
+ "state": "start",
428
+ "data": [
429
+ [ "comment.doc", "*/" ]
430
+ ]
431
+ },
432
+ {
433
+ "state": "statement",
434
+ "data": [
435
+ [ "keyword.statementBegin", "create" ],
436
+ [ "text", " " ],
437
+ [ "keyword", "or" ],
438
+ [ "text", " " ],
439
+ [ "keyword", "replace" ],
440
+ [ "text", " " ],
441
+ [ "keyword", "function" ],
442
+ [ "text", " " ],
443
+ [ "identifier", "blob_content_chunked" ],
444
+ [ "paren.lparen", "(" ]
445
+ ]
446
+ },
447
+ {
448
+ "state": "statement",
449
+ "data": [
450
+ [ "text", " " ],
451
+ [ "keyword", "in" ],
452
+ [ "text", " " ],
453
+ [ "identifier", "p_data" ],
454
+ [ "text", " " ],
455
+ [ "keyword", "bytea" ],
456
+ [ "text", ", " ]
457
+ ]
458
+ },
459
+ {
460
+ "state": "statement",
461
+ "data": [
462
+ [ "text", " " ],
463
+ [ "keyword", "in" ],
464
+ [ "text", " " ],
465
+ [ "identifier", "p_chunk" ],
466
+ [ "text", " " ],
467
+ [ "keyword", "integer" ],
468
+ [ "paren.rparen", ")" ]
469
+ ]
470
+ },
471
+ {
472
+ "state": "dollarSql",
473
+ "data": [
474
+ [ "keyword", "returns" ],
475
+ [ "text", " " ],
476
+ [ "keyword", "setof" ],
477
+ [ "text", " " ],
478
+ [ "keyword", "bytea" ],
479
+ [ "text", " " ],
480
+ [ "keyword", "as" ],
481
+ [ "text", " " ],
482
+ [ "string", "$$" ]
483
+ ]
484
+ },
485
+ {
486
+ "state": "dollarSql",
487
+ "data": [
488
+ [ "comment", "-- Still SQL comments" ]
489
+ ]
490
+ },
491
+ {
492
+ "state": "dollarSql",
493
+ "data": [
494
+ [ "keyword", "declare" ]
495
+ ]
496
+ },
497
+ {
498
+ "state": "dollarSql",
499
+ "data": [
500
+ [ "text", "\t" ],
501
+ [ "identifier", "v_size" ],
502
+ [ "text", " " ],
503
+ [ "keyword", "integer" ],
504
+ [ "text", " " ],
505
+ [ "keyword.operator", "=" ],
506
+ [ "text", " " ],
507
+ [ "support.function", "octet_length" ],
508
+ [ "paren.lparen", "(" ],
509
+ [ "identifier", "p_data" ],
510
+ [ "paren.rparen", ")" ],
511
+ [ "text", ";" ]
512
+ ]
513
+ },
514
+ {
515
+ "state": "dollarSql",
516
+ "data": [
517
+ [ "keyword", "begin" ]
518
+ ]
519
+ },
520
+ {
521
+ "state": "dollarSql",
522
+ "data": [
523
+ [ "text", "\t" ],
524
+ [ "keyword", "for" ],
525
+ [ "text", " " ],
526
+ [ "identifier", "i" ],
527
+ [ "text", " " ],
528
+ [ "keyword", "in" ],
529
+ [ "text", " " ],
530
+ [ "constant.numeric", "1" ],
531
+ [ "text", ".." ],
532
+ [ "identifier", "v_size" ],
533
+ [ "text", " " ],
534
+ [ "keyword", "by" ],
535
+ [ "text", " " ],
536
+ [ "identifier", "p_chunk" ],
537
+ [ "text", " " ],
538
+ [ "identifier", "loop" ]
539
+ ]
540
+ },
541
+ {
542
+ "state": "dollarSql",
543
+ "data": [
544
+ [ "text", "\t\t" ],
545
+ [ "identifier", "return" ],
546
+ [ "text", " " ],
547
+ [ "keyword", "next" ],
548
+ [ "text", " " ],
549
+ [ "keyword", "substring" ],
550
+ [ "paren.lparen", "(" ],
551
+ [ "identifier", "p_data" ],
552
+ [ "text", " " ],
553
+ [ "keyword", "from" ],
554
+ [ "text", " " ],
555
+ [ "identifier", "i" ],
556
+ [ "text", " " ],
557
+ [ "keyword", "for" ],
558
+ [ "text", " " ],
559
+ [ "identifier", "p_chunk" ],
560
+ [ "paren.rparen", ")" ],
561
+ [ "text", ";" ]
562
+ ]
563
+ },
564
+ {
565
+ "state": "dollarSql",
566
+ "data": [
567
+ [ "text", "\t" ],
568
+ [ "keyword", "end" ],
569
+ [ "text", " " ],
570
+ [ "identifier", "loop" ],
571
+ [ "text", ";" ]
572
+ ]
573
+ },
574
+ {
575
+ "state": "dollarSql",
576
+ "data": [
577
+ [ "keyword", "end" ],
578
+ [ "text", ";" ]
579
+ ]
580
+ },
581
+ {
582
+ "state": "start",
583
+ "data": [
584
+ [ "string", "$$" ],
585
+ [ "text", " " ],
586
+ [ "keyword", "language" ],
587
+ [ "text", " " ],
588
+ [ "identifier", "plpgsql" ],
589
+ [ "text", " " ],
590
+ [ "keyword", "stable" ],
591
+ [ "statementEnd", ";" ]
592
+ ]
593
+ },
594
+ {
595
+ "state": "start",
596
+ "data": []
597
+ },
598
+ {
599
+ "state": "start",
600
+ "data": []
601
+ },
602
+ {
603
+ "state": "start",
604
+ "data": [
605
+ [ "comment", "-- pl/perl" ]
606
+ ]
607
+ },
608
+ {
609
+ "state": "perl-start",
610
+ "data": [
611
+ [ "keyword.statementBegin", "CREATE" ],
612
+ [ "text", " " ],
613
+ [ "keyword", "FUNCTION" ],
614
+ [ "text", " " ],
615
+ [ "identifier", "perl_max" ],
616
+ [ "text", " " ],
617
+ [ "paren.lparen", "(" ],
618
+ [ "keyword", "integer" ],
619
+ [ "text", ", " ],
620
+ [ "keyword", "integer" ],
621
+ [ "paren.rparen", ")" ],
622
+ [ "text", " " ],
623
+ [ "keyword", "RETURNS" ],
624
+ [ "text", " " ],
625
+ [ "keyword", "integer" ],
626
+ [ "text", " " ],
627
+ [ "keyword", "AS" ],
628
+ [ "text", " " ],
629
+ [ "string", "$perl$" ]
630
+ ]
631
+ },
632
+ {
633
+ "state": "perl-start",
634
+ "data": [
635
+ [ "text", " " ],
636
+ [ "comment", "# perl comment..." ]
637
+ ]
638
+ },
639
+ {
640
+ "state": "perl-start",
641
+ "data": [
642
+ [ "text", " " ],
643
+ [ "keyword", "my" ],
644
+ [ "text", " " ],
645
+ [ "lparen", "(" ],
646
+ [ "identifier", "$x" ],
647
+ [ "keyword.operator", "," ],
648
+ [ "identifier", "$y" ],
649
+ [ "rparen", ")" ],
650
+ [ "text", " " ],
651
+ [ "keyword.operator", "=" ],
652
+ [ "text", " @" ],
653
+ [ "identifier", "_" ],
654
+ [ "text", ";" ]
655
+ ]
656
+ },
657
+ {
658
+ "state": "perl-start",
659
+ "data": [
660
+ [ "text", " " ],
661
+ [ "keyword", "if" ],
662
+ [ "text", " " ],
663
+ [ "lparen", "(" ],
664
+ [ "keyword.operator", "!" ],
665
+ [ "text", " " ],
666
+ [ "support.function", "defined" ],
667
+ [ "text", " " ],
668
+ [ "identifier", "$x" ],
669
+ [ "rparen", ")" ],
670
+ [ "text", " " ],
671
+ [ "lparen", "{" ]
672
+ ]
673
+ },
674
+ {
675
+ "state": "perl-start",
676
+ "data": [
677
+ [ "text", " " ],
678
+ [ "keyword", "if" ],
679
+ [ "text", " " ],
680
+ [ "lparen", "(" ],
681
+ [ "keyword.operator", "!" ],
682
+ [ "text", " " ],
683
+ [ "support.function", "defined" ],
684
+ [ "text", " " ],
685
+ [ "identifier", "$y" ],
686
+ [ "rparen", ")" ],
687
+ [ "text", " " ],
688
+ [ "lparen", "{" ],
689
+ [ "text", " " ],
690
+ [ "support.function", "return" ],
691
+ [ "text", " " ],
692
+ [ "support.function", "undef" ],
693
+ [ "text", "; " ],
694
+ [ "rparen", "}" ]
695
+ ]
696
+ },
697
+ {
698
+ "state": "perl-start",
699
+ "data": [
700
+ [ "text", " " ],
701
+ [ "support.function", "return" ],
702
+ [ "text", " " ],
703
+ [ "identifier", "$y" ],
704
+ [ "text", ";" ]
705
+ ]
706
+ },
707
+ {
708
+ "state": "perl-start",
709
+ "data": [
710
+ [ "text", " " ],
711
+ [ "rparen", "}" ]
712
+ ]
713
+ },
714
+ {
715
+ "state": "perl-start",
716
+ "data": [
717
+ [ "text", " " ],
718
+ [ "keyword", "if" ],
719
+ [ "text", " " ],
720
+ [ "lparen", "(" ],
721
+ [ "keyword.operator", "!" ],
722
+ [ "text", " " ],
723
+ [ "support.function", "defined" ],
724
+ [ "text", " " ],
725
+ [ "identifier", "$y" ],
726
+ [ "rparen", ")" ],
727
+ [ "text", " " ],
728
+ [ "lparen", "{" ],
729
+ [ "text", " " ],
730
+ [ "support.function", "return" ],
731
+ [ "text", " " ],
732
+ [ "identifier", "$x" ],
733
+ [ "text", "; " ],
734
+ [ "rparen", "}" ]
735
+ ]
736
+ },
737
+ {
738
+ "state": "perl-start",
739
+ "data": [
740
+ [ "text", " " ],
741
+ [ "keyword", "if" ],
742
+ [ "text", " " ],
743
+ [ "lparen", "(" ],
744
+ [ "identifier", "$x" ],
745
+ [ "text", " " ],
746
+ [ "keyword.operator", ">" ],
747
+ [ "text", " " ],
748
+ [ "identifier", "$y" ],
749
+ [ "rparen", ")" ],
750
+ [ "text", " " ],
751
+ [ "lparen", "{" ],
752
+ [ "text", " " ],
753
+ [ "support.function", "return" ],
754
+ [ "text", " " ],
755
+ [ "identifier", "$x" ],
756
+ [ "text", "; " ],
757
+ [ "rparen", "}" ]
758
+ ]
759
+ },
760
+ {
761
+ "state": "perl-start",
762
+ "data": [
763
+ [ "text", " " ],
764
+ [ "support.function", "return" ],
765
+ [ "text", " " ],
766
+ [ "identifier", "$y" ],
767
+ [ "text", ";" ]
768
+ ]
769
+ },
770
+ {
771
+ "state": "start",
772
+ "data": [
773
+ [ "string", "$perl$" ],
774
+ [ "text", " " ],
775
+ [ "keyword", "LANGUAGE" ],
776
+ [ "text", " " ],
777
+ [ "identifier", "plperl" ],
778
+ [ "statementEnd", ";" ]
779
+ ]
780
+ },
781
+ {
782
+ "state": "start",
783
+ "data": []
784
+ },
785
+ {
786
+ "state": "start",
787
+ "data": [
788
+ [ "comment", "-- pl/python" ]
789
+ ]
790
+ },
791
+ {
792
+ "state": "python-start",
793
+ "data": [
794
+ [ "keyword.statementBegin", "CREATE" ],
795
+ [ "text", " " ],
796
+ [ "keyword", "FUNCTION" ],
797
+ [ "text", " " ],
798
+ [ "identifier", "usesavedplan" ],
799
+ [ "paren.lparen", "(" ],
800
+ [ "paren.rparen", ")" ],
801
+ [ "text", " " ],
802
+ [ "keyword", "RETURNS" ],
803
+ [ "text", " " ],
804
+ [ "keyword", "trigger" ],
805
+ [ "text", " " ],
806
+ [ "keyword", "AS" ],
807
+ [ "text", " " ],
808
+ [ "string", "$python$" ]
809
+ ]
810
+ },
811
+ {
812
+ "state": "python-start",
813
+ "data": [
814
+ [ "text", " " ],
815
+ [ "comment", "# python comment..." ]
816
+ ]
817
+ },
818
+ {
819
+ "state": "python-start",
820
+ "data": [
821
+ [ "text", " " ],
822
+ [ "keyword", "if" ],
823
+ [ "text", " " ],
824
+ [ "identifier", "SD" ],
825
+ [ "text", "." ],
826
+ [ "identifier", "has_key" ],
827
+ [ "paren.lparen", "(" ],
828
+ [ "string", "\"plan\"" ],
829
+ [ "paren.rparen", ")" ],
830
+ [ "text", ":" ]
831
+ ]
832
+ },
833
+ {
834
+ "state": "python-start",
835
+ "data": [
836
+ [ "text", " " ],
837
+ [ "identifier", "plan" ],
838
+ [ "text", " " ],
839
+ [ "keyword.operator", "=" ],
840
+ [ "text", " " ],
841
+ [ "identifier", "SD" ],
842
+ [ "paren.lparen", "[" ],
843
+ [ "string", "\"plan\"" ],
844
+ [ "paren.rparen", "]" ]
845
+ ]
846
+ },
847
+ {
848
+ "state": "python-start",
849
+ "data": [
850
+ [ "text", " " ],
851
+ [ "keyword", "else" ],
852
+ [ "text", ":" ]
853
+ ]
854
+ },
855
+ {
856
+ "state": "python-start",
857
+ "data": [
858
+ [ "text", " " ],
859
+ [ "identifier", "plan" ],
860
+ [ "text", " " ],
861
+ [ "keyword.operator", "=" ],
862
+ [ "text", " " ],
863
+ [ "identifier", "plpy" ],
864
+ [ "text", "." ],
865
+ [ "identifier", "prepare" ],
866
+ [ "paren.lparen", "(" ],
867
+ [ "string", "\"SELECT 1\"" ],
868
+ [ "paren.rparen", ")" ]
869
+ ]
870
+ },
871
+ {
872
+ "state": "python-start",
873
+ "data": [
874
+ [ "text", " " ],
875
+ [ "identifier", "SD" ],
876
+ [ "paren.lparen", "[" ],
877
+ [ "string", "\"plan\"" ],
878
+ [ "paren.rparen", "]" ],
879
+ [ "text", " " ],
880
+ [ "keyword.operator", "=" ],
881
+ [ "text", " " ],
882
+ [ "identifier", "plan" ]
883
+ ]
884
+ },
885
+ {
886
+ "state": "start",
887
+ "data": [
888
+ [ "string", "$python$" ],
889
+ [ "text", " " ],
890
+ [ "keyword", "LANGUAGE" ],
891
+ [ "text", " " ],
892
+ [ "identifier", "plpythonu" ],
893
+ [ "statementEnd", ";" ]
894
+ ]
895
+ },
896
+ {
897
+ "state": "start",
898
+ "data": []
899
+ },
900
+ {
901
+ "state": "start",
902
+ "data": []
903
+ },
904
+ {
905
+ "state": "start",
906
+ "data": [
907
+ [ "comment", "-- psql commands" ]
908
+ ]
909
+ },
910
+ {
911
+ "state": "start",
912
+ "data": [
913
+ [ "support.buildin", "\\df cash*" ]
914
+ ]
915
+ },
916
+ {
917
+ "state": "start",
918
+ "data": []
919
+ },
920
+ {
921
+ "state": "start",
922
+ "data": []
923
+ },
924
+ {
925
+ "state": "start",
926
+ "data": [
927
+ [ "comment", "-- Some string samples." ]
928
+ ]
929
+ },
930
+ {
931
+ "state": "start",
932
+ "data": [
933
+ [ "keyword.statementBegin", "select" ],
934
+ [ "text", " " ],
935
+ [ "string", "'don'" ],
936
+ [ "string", "'t do it now;'" ],
937
+ [ "text", " " ],
938
+ [ "keyword.operator", "|" ],
939
+ [ "keyword.operator", "|" ],
940
+ [ "text", " " ],
941
+ [ "string", "'maybe later'" ],
942
+ [ "statementEnd", ";" ]
943
+ ]
944
+ },
945
+ {
946
+ "state": "start",
947
+ "data": [
948
+ [ "keyword.statementBegin", "select" ],
949
+ [ "text", " " ],
950
+ [ "identifier", "E" ],
951
+ [ "string", "'dont\\'t do it'" ],
952
+ [ "statementEnd", ";" ]
953
+ ]
954
+ },
955
+ {
956
+ "state": "start",
957
+ "data": [
958
+ [ "keyword.statementBegin", "select" ],
959
+ [ "text", " " ],
960
+ [ "support.function", "length" ],
961
+ [ "paren.lparen", "(" ],
962
+ [ "string", "'some other'" ],
963
+ [ "string", "'s stuff'" ],
964
+ [ "text", " " ],
965
+ [ "keyword.operator", "|" ],
966
+ [ "keyword.operator", "|" ],
967
+ [ "text", " " ],
968
+ [ "string", "$$" ],
969
+ [ "string", "cat in hat's stuff $$" ],
970
+ [ "paren.rparen", ")" ],
971
+ [ "statementEnd", ";" ]
972
+ ]
973
+ },
974
+ {
975
+ "state": "start",
976
+ "data": []
977
+ },
978
+ {
979
+ "state": "dollarStatementString",
980
+ "data": [
981
+ [ "keyword.statementBegin", "select" ],
982
+ [ "text", " " ],
983
+ [ "string", "$$ strings" ]
984
+ ]
985
+ },
986
+ {
987
+ "state": "dollarStatementString",
988
+ "data": [
989
+ [ "string", "over multiple " ]
990
+ ]
991
+ },
992
+ {
993
+ "state": "dollarStatementString",
994
+ "data": [
995
+ [ "string", "lines - use dollar quotes" ]
996
+ ]
997
+ },
998
+ {
999
+ "state": "start",
1000
+ "data": [
1001
+ [ "string", "$$" ],
1002
+ [ "statementEnd", ";" ]
1003
+ ]
1004
+ },
1005
+ {
1006
+ "state": "start",
1007
+ "data": []
1008
+ },
1009
+ {
1010
+ "state": "start",
1011
+ "data": [
1012
+ [ "keyword.statementBegin", "END" ],
1013
+ [ "statementEnd", ";" ]
1014
+ ]
1015
+ },
1016
+ {
1017
+ "state": "start",
1018
+ "data": []
1019
+ }
1020
+ ]