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,58 @@
1
+ [
2
+ {
3
+ "state": "start",
4
+ "data": [
5
+ [ "text", "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet." ]
6
+ ]
7
+ },
8
+ {
9
+ "state": "start",
10
+ "data": []
11
+ },
12
+ {
13
+ "state": "start",
14
+ "data": [
15
+ [ "text", "Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat." ]
16
+ ]
17
+ },
18
+ {
19
+ "state": "start",
20
+ "data": []
21
+ },
22
+ {
23
+ "state": "start",
24
+ "data": [
25
+ [ "text", "Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." ]
26
+ ]
27
+ },
28
+ {
29
+ "state": "start",
30
+ "data": []
31
+ },
32
+ {
33
+ "state": "start",
34
+ "data": [
35
+ [ "text", "Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat." ]
36
+ ]
37
+ },
38
+ {
39
+ "state": "start",
40
+ "data": []
41
+ },
42
+ {
43
+ "state": "start",
44
+ "data": [
45
+ [ "text", "Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis." ]
46
+ ]
47
+ },
48
+ {
49
+ "state": "start",
50
+ "data": []
51
+ },
52
+ {
53
+ "state": "start",
54
+ "data": [
55
+ [ "text", "At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores duo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet clita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero voluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur" ]
56
+ ]
57
+ }
58
+ ]
@@ -0,0 +1,195 @@
1
+ [
2
+ {
3
+ "state": "start",
4
+ "data": [
5
+ [ "markup.heading.1", "h1" ],
6
+ [ "keyword", ". " ],
7
+ [ "text", "Textile document" ]
8
+ ]
9
+ },
10
+ {
11
+ "state": "start",
12
+ "data": []
13
+ },
14
+ {
15
+ "state": "start",
16
+ "data": [
17
+ [ "markup.heading.2", "h2" ],
18
+ [ "keyword", ". " ],
19
+ [ "text", "Heading Two" ]
20
+ ]
21
+ },
22
+ {
23
+ "state": "start",
24
+ "data": []
25
+ },
26
+ {
27
+ "state": "start",
28
+ "data": [
29
+ [ "markup.heading.3", "h3" ],
30
+ [ "keyword", ". " ],
31
+ [ "text", "A two-line" ]
32
+ ]
33
+ },
34
+ {
35
+ "state": "start",
36
+ "data": [
37
+ [ "text", " header" ]
38
+ ]
39
+ },
40
+ {
41
+ "state": "start",
42
+ "data": []
43
+ },
44
+ {
45
+ "state": "start",
46
+ "data": [
47
+ [ "markup.heading.2", "h2" ],
48
+ [ "keyword", ". " ],
49
+ [ "text", "Another two-line" ]
50
+ ]
51
+ },
52
+ {
53
+ "state": "start",
54
+ "data": [
55
+ [ "text", "header" ]
56
+ ]
57
+ },
58
+ {
59
+ "state": "start",
60
+ "data": []
61
+ },
62
+ {
63
+ "state": "start",
64
+ "data": [
65
+ [ "text", "Paragraph:" ]
66
+ ]
67
+ },
68
+ {
69
+ "state": "start",
70
+ "data": [
71
+ [ "text", "one, two," ]
72
+ ]
73
+ },
74
+ {
75
+ "state": "start",
76
+ "data": [
77
+ [ "text", "thee lines!" ]
78
+ ]
79
+ },
80
+ {
81
+ "state": "start",
82
+ "data": []
83
+ },
84
+ {
85
+ "state": "start",
86
+ "data": [
87
+ [ "markup.heading", "p" ],
88
+ [ "keyword", "(" ],
89
+ [ "string", "classone" ],
90
+ [ "text", " " ],
91
+ [ "string", "two" ],
92
+ [ "text", " " ],
93
+ [ "string", "three" ],
94
+ [ "keyword", ")" ],
95
+ [ "keyword", ". " ],
96
+ [ "text", "This is a paragraph with classes" ]
97
+ ]
98
+ },
99
+ {
100
+ "state": "start",
101
+ "data": []
102
+ },
103
+ {
104
+ "state": "start",
105
+ "data": [
106
+ [ "markup.heading", "p" ],
107
+ [ "keyword", "(" ],
108
+ [ "keyword", "#" ],
109
+ [ "string", "id" ],
110
+ [ "keyword", ")" ],
111
+ [ "keyword", ". " ],
112
+ [ "text", "(one with an id)" ]
113
+ ]
114
+ },
115
+ {
116
+ "state": "start",
117
+ "data": []
118
+ },
119
+ {
120
+ "state": "start",
121
+ "data": [
122
+ [ "markup.heading", "p" ],
123
+ [ "keyword", "(" ],
124
+ [ "string", "one" ],
125
+ [ "text", " " ],
126
+ [ "string", "two" ],
127
+ [ "text", " " ],
128
+ [ "string", "three" ],
129
+ [ "keyword", "#" ],
130
+ [ "string", "my_id" ],
131
+ [ "keyword", ")" ],
132
+ [ "keyword", ". " ],
133
+ [ "text", "..classes + id" ]
134
+ ]
135
+ },
136
+ {
137
+ "state": "start",
138
+ "data": []
139
+ },
140
+ {
141
+ "state": "start",
142
+ "data": [
143
+ [ "keyword", "*" ],
144
+ [ "text", " Unordered list" ]
145
+ ]
146
+ },
147
+ {
148
+ "state": "start",
149
+ "data": [
150
+ [ "keyword", "**" ],
151
+ [ "text", " sublist" ]
152
+ ]
153
+ },
154
+ {
155
+ "state": "start",
156
+ "data": [
157
+ [ "keyword", "*" ],
158
+ [ "text", " back again!" ]
159
+ ]
160
+ },
161
+ {
162
+ "state": "start",
163
+ "data": [
164
+ [ "keyword", "**" ],
165
+ [ "text", " sublist again.." ]
166
+ ]
167
+ },
168
+ {
169
+ "state": "start",
170
+ "data": []
171
+ },
172
+ {
173
+ "state": "start",
174
+ "data": [
175
+ [ "keyword", "#" ],
176
+ [ "text", " ordered" ]
177
+ ]
178
+ },
179
+ {
180
+ "state": "start",
181
+ "data": []
182
+ },
183
+ {
184
+ "state": "start",
185
+ "data": [
186
+ [ "text", "bg. Blockquote!" ]
187
+ ]
188
+ },
189
+ {
190
+ "state": "start",
191
+ "data": [
192
+ [ "text", " This is a two-list blockquote..!" ]
193
+ ]
194
+ }
195
+ ]
@@ -0,0 +1,705 @@
1
+ [
2
+ {
3
+ "state": "start",
4
+ "data": [
5
+ [ "xml-pe", "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" ]
6
+ ]
7
+ },
8
+ {
9
+ "state": "tag_embed_attribute_list",
10
+ "data": [
11
+ [ "meta.tag", "<" ],
12
+ [ "meta.tag.tag-name", "query" ],
13
+ [ "text", " " ],
14
+ [ "entity.other.attribute-name", "xmlns:yahoo" ],
15
+ [ "keyword.operator", "=" ],
16
+ [ "string", "\"http://www.yahooapis.com/v1/base.rng\"" ]
17
+ ]
18
+ },
19
+ {
20
+ "state": "start",
21
+ "data": [
22
+ [ "text", " " ],
23
+ [ "entity.other.attribute-name", "yahoo:count" ],
24
+ [ "keyword.operator", "=" ],
25
+ [ "string", "\"7\"" ],
26
+ [ "text", " " ],
27
+ [ "entity.other.attribute-name", "yahoo:created" ],
28
+ [ "keyword.operator", "=" ],
29
+ [ "string", "\"2011-10-11T08:40:23Z\"" ],
30
+ [ "text", " " ],
31
+ [ "entity.other.attribute-name", "yahoo:lang" ],
32
+ [ "keyword.operator", "=" ],
33
+ [ "string", "\"en-US\"" ],
34
+ [ "meta.tag", ">" ]
35
+ ]
36
+ },
37
+ {
38
+ "state": "start",
39
+ "data": [
40
+ [ "text", " " ],
41
+ [ "meta.tag", "<" ],
42
+ [ "meta.tag.tag-name", "diagnostics" ],
43
+ [ "meta.tag", ">" ]
44
+ ]
45
+ },
46
+ {
47
+ "state": "start",
48
+ "data": [
49
+ [ "text", " " ],
50
+ [ "meta.tag", "<" ],
51
+ [ "meta.tag.tag-name", "publiclyCallable" ],
52
+ [ "meta.tag", ">" ],
53
+ [ "text", "true" ],
54
+ [ "meta.tag", "</" ],
55
+ [ "meta.tag.tag-name", "publiclyCallable" ],
56
+ [ "meta.tag", ">" ]
57
+ ]
58
+ },
59
+ {
60
+ "state": "start",
61
+ "data": [
62
+ [ "text", " " ],
63
+ [ "meta.tag", "<" ],
64
+ [ "meta.tag.tag-name", "url" ],
65
+ [ "text", " " ],
66
+ [ "entity.other.attribute-name", "execution-start-time" ],
67
+ [ "keyword.operator", "=" ],
68
+ [ "string", "\"0\"" ],
69
+ [ "text", " " ],
70
+ [ "entity.other.attribute-name", "execution-stop-time" ],
71
+ [ "keyword.operator", "=" ],
72
+ [ "string", "\"25\"" ],
73
+ [ "text", " " ],
74
+ [ "entity.other.attribute-name", "execution-time" ],
75
+ [ "keyword.operator", "=" ],
76
+ [ "string", "\"25\"" ],
77
+ [ "meta.tag", ">" ],
78
+ [ "text", "<![CDATA[http://where.yahooapis.com/v1/continents;start=0;count=10]]>" ],
79
+ [ "meta.tag", "</" ],
80
+ [ "meta.tag.tag-name", "url" ],
81
+ [ "meta.tag", ">" ]
82
+ ]
83
+ },
84
+ {
85
+ "state": "start",
86
+ "data": [
87
+ [ "text", " " ],
88
+ [ "meta.tag", "<" ],
89
+ [ "meta.tag.tag-name", "user-time" ],
90
+ [ "meta.tag", ">" ],
91
+ [ "text", "26" ],
92
+ [ "meta.tag", "</" ],
93
+ [ "meta.tag.tag-name", "user-time" ],
94
+ [ "meta.tag", ">" ]
95
+ ]
96
+ },
97
+ {
98
+ "state": "start",
99
+ "data": [
100
+ [ "text", " " ],
101
+ [ "meta.tag", "<" ],
102
+ [ "meta.tag.tag-name", "service-time" ],
103
+ [ "meta.tag", ">" ],
104
+ [ "text", "25" ],
105
+ [ "meta.tag", "</" ],
106
+ [ "meta.tag.tag-name", "service-time" ],
107
+ [ "meta.tag", ">" ]
108
+ ]
109
+ },
110
+ {
111
+ "state": "start",
112
+ "data": [
113
+ [ "text", " " ],
114
+ [ "meta.tag", "<" ],
115
+ [ "meta.tag.tag-name", "build-version" ],
116
+ [ "meta.tag", ">" ],
117
+ [ "text", "21978" ],
118
+ [ "meta.tag", "</" ],
119
+ [ "meta.tag.tag-name", "build-version" ],
120
+ [ "meta.tag", ">" ]
121
+ ]
122
+ },
123
+ {
124
+ "state": "start",
125
+ "data": [
126
+ [ "text", " " ],
127
+ [ "meta.tag", "</" ],
128
+ [ "meta.tag.tag-name", "diagnostics" ],
129
+ [ "meta.tag", ">" ],
130
+ [ "text", " " ]
131
+ ]
132
+ },
133
+ {
134
+ "state": "start",
135
+ "data": [
136
+ [ "text", " " ],
137
+ [ "meta.tag", "<" ],
138
+ [ "meta.tag.tag-name", "results" ],
139
+ [ "meta.tag", ">" ]
140
+ ]
141
+ },
142
+ {
143
+ "state": "tag_embed_attribute_list",
144
+ "data": [
145
+ [ "text", " " ],
146
+ [ "meta.tag", "<" ],
147
+ [ "meta.tag.tag-name", "place" ],
148
+ [ "text", " " ],
149
+ [ "entity.other.attribute-name", "xmlns" ],
150
+ [ "keyword.operator", "=" ],
151
+ [ "string", "\"http://where.yahooapis.com/v1/schema.rng\"" ]
152
+ ]
153
+ },
154
+ {
155
+ "state": "start",
156
+ "data": [
157
+ [ "text", " " ],
158
+ [ "entity.other.attribute-name", "xml:lang" ],
159
+ [ "keyword.operator", "=" ],
160
+ [ "string", "\"en-US\"" ],
161
+ [ "text", " " ],
162
+ [ "entity.other.attribute-name", "yahoo:uri" ],
163
+ [ "keyword.operator", "=" ],
164
+ [ "string", "\"http://where.yahooapis.com/v1/place/24865670\"" ],
165
+ [ "meta.tag", ">" ]
166
+ ]
167
+ },
168
+ {
169
+ "state": "start",
170
+ "data": [
171
+ [ "text", " " ],
172
+ [ "meta.tag", "<" ],
173
+ [ "meta.tag.tag-name", "woeid" ],
174
+ [ "meta.tag", ">" ],
175
+ [ "text", "24865670" ],
176
+ [ "meta.tag", "</" ],
177
+ [ "meta.tag.tag-name", "woeid" ],
178
+ [ "meta.tag", ">" ]
179
+ ]
180
+ },
181
+ {
182
+ "state": "start",
183
+ "data": [
184
+ [ "text", " " ],
185
+ [ "meta.tag", "<" ],
186
+ [ "meta.tag.tag-name", "placeTypeName" ],
187
+ [ "text", " " ],
188
+ [ "entity.other.attribute-name", "code" ],
189
+ [ "keyword.operator", "=" ],
190
+ [ "string", "\"29\"" ],
191
+ [ "meta.tag", ">" ],
192
+ [ "text", "Continent" ],
193
+ [ "meta.tag", "</" ],
194
+ [ "meta.tag.tag-name", "placeTypeName" ],
195
+ [ "meta.tag", ">" ]
196
+ ]
197
+ },
198
+ {
199
+ "state": "start",
200
+ "data": [
201
+ [ "text", " " ],
202
+ [ "meta.tag", "<" ],
203
+ [ "meta.tag.tag-name", "name" ],
204
+ [ "meta.tag", ">" ],
205
+ [ "text", "Africa" ],
206
+ [ "meta.tag", "</" ],
207
+ [ "meta.tag.tag-name", "name" ],
208
+ [ "meta.tag", ">" ]
209
+ ]
210
+ },
211
+ {
212
+ "state": "start",
213
+ "data": [
214
+ [ "text", " " ],
215
+ [ "meta.tag", "</" ],
216
+ [ "meta.tag.tag-name", "place" ],
217
+ [ "meta.tag", ">" ]
218
+ ]
219
+ },
220
+ {
221
+ "state": "tag_embed_attribute_list",
222
+ "data": [
223
+ [ "text", " " ],
224
+ [ "meta.tag", "<" ],
225
+ [ "meta.tag.tag-name", "place" ],
226
+ [ "text", " " ],
227
+ [ "entity.other.attribute-name", "xmlns" ],
228
+ [ "keyword.operator", "=" ],
229
+ [ "string", "\"http://where.yahooapis.com/v1/schema.rng\"" ]
230
+ ]
231
+ },
232
+ {
233
+ "state": "start",
234
+ "data": [
235
+ [ "text", " " ],
236
+ [ "entity.other.attribute-name", "xml:lang" ],
237
+ [ "keyword.operator", "=" ],
238
+ [ "string", "\"en-US\"" ],
239
+ [ "text", " " ],
240
+ [ "entity.other.attribute-name", "yahoo:uri" ],
241
+ [ "keyword.operator", "=" ],
242
+ [ "string", "\"http://where.yahooapis.com/v1/place/24865675\"" ],
243
+ [ "meta.tag", ">" ]
244
+ ]
245
+ },
246
+ {
247
+ "state": "start",
248
+ "data": [
249
+ [ "text", " " ],
250
+ [ "meta.tag", "<" ],
251
+ [ "meta.tag.tag-name", "woeid" ],
252
+ [ "meta.tag", ">" ],
253
+ [ "text", "24865675" ],
254
+ [ "meta.tag", "</" ],
255
+ [ "meta.tag.tag-name", "woeid" ],
256
+ [ "meta.tag", ">" ]
257
+ ]
258
+ },
259
+ {
260
+ "state": "start",
261
+ "data": [
262
+ [ "text", " " ],
263
+ [ "meta.tag", "<" ],
264
+ [ "meta.tag.tag-name", "placeTypeName" ],
265
+ [ "text", " " ],
266
+ [ "entity.other.attribute-name", "code" ],
267
+ [ "keyword.operator", "=" ],
268
+ [ "string", "\"29\"" ],
269
+ [ "meta.tag", ">" ],
270
+ [ "text", "Continent" ],
271
+ [ "meta.tag", "</" ],
272
+ [ "meta.tag.tag-name", "placeTypeName" ],
273
+ [ "meta.tag", ">" ]
274
+ ]
275
+ },
276
+ {
277
+ "state": "start",
278
+ "data": [
279
+ [ "text", " " ],
280
+ [ "meta.tag", "<" ],
281
+ [ "meta.tag.tag-name", "name" ],
282
+ [ "meta.tag", ">" ],
283
+ [ "text", "Europe" ],
284
+ [ "meta.tag", "</" ],
285
+ [ "meta.tag.tag-name", "name" ],
286
+ [ "meta.tag", ">" ]
287
+ ]
288
+ },
289
+ {
290
+ "state": "start",
291
+ "data": [
292
+ [ "text", " " ],
293
+ [ "meta.tag", "</" ],
294
+ [ "meta.tag.tag-name", "place" ],
295
+ [ "meta.tag", ">" ]
296
+ ]
297
+ },
298
+ {
299
+ "state": "tag_embed_attribute_list",
300
+ "data": [
301
+ [ "text", " " ],
302
+ [ "meta.tag", "<" ],
303
+ [ "meta.tag.tag-name", "place" ],
304
+ [ "text", " " ],
305
+ [ "entity.other.attribute-name", "xmlns" ],
306
+ [ "keyword.operator", "=" ],
307
+ [ "string", "\"http://where.yahooapis.com/v1/schema.rng\"" ]
308
+ ]
309
+ },
310
+ {
311
+ "state": "start",
312
+ "data": [
313
+ [ "text", " " ],
314
+ [ "entity.other.attribute-name", "xml:lang" ],
315
+ [ "keyword.operator", "=" ],
316
+ [ "string", "\"en-US\"" ],
317
+ [ "text", " " ],
318
+ [ "entity.other.attribute-name", "yahoo:uri" ],
319
+ [ "keyword.operator", "=" ],
320
+ [ "string", "\"http://where.yahooapis.com/v1/place/24865673\"" ],
321
+ [ "meta.tag", ">" ]
322
+ ]
323
+ },
324
+ {
325
+ "state": "start",
326
+ "data": [
327
+ [ "text", " " ],
328
+ [ "meta.tag", "<" ],
329
+ [ "meta.tag.tag-name", "woeid" ],
330
+ [ "meta.tag", ">" ],
331
+ [ "text", "24865673" ],
332
+ [ "meta.tag", "</" ],
333
+ [ "meta.tag.tag-name", "woeid" ],
334
+ [ "meta.tag", ">" ]
335
+ ]
336
+ },
337
+ {
338
+ "state": "start",
339
+ "data": [
340
+ [ "text", " " ],
341
+ [ "meta.tag", "<" ],
342
+ [ "meta.tag.tag-name", "placeTypeName" ],
343
+ [ "text", " " ],
344
+ [ "entity.other.attribute-name", "code" ],
345
+ [ "keyword.operator", "=" ],
346
+ [ "string", "\"29\"" ],
347
+ [ "meta.tag", ">" ],
348
+ [ "text", "Continent" ],
349
+ [ "meta.tag", "</" ],
350
+ [ "meta.tag.tag-name", "placeTypeName" ],
351
+ [ "meta.tag", ">" ]
352
+ ]
353
+ },
354
+ {
355
+ "state": "start",
356
+ "data": [
357
+ [ "text", " " ],
358
+ [ "meta.tag", "<" ],
359
+ [ "meta.tag.tag-name", "name" ],
360
+ [ "meta.tag", ">" ],
361
+ [ "text", "South America" ],
362
+ [ "meta.tag", "</" ],
363
+ [ "meta.tag.tag-name", "name" ],
364
+ [ "meta.tag", ">" ]
365
+ ]
366
+ },
367
+ {
368
+ "state": "start",
369
+ "data": [
370
+ [ "text", " " ],
371
+ [ "meta.tag", "</" ],
372
+ [ "meta.tag.tag-name", "place" ],
373
+ [ "meta.tag", ">" ]
374
+ ]
375
+ },
376
+ {
377
+ "state": "tag_embed_attribute_list",
378
+ "data": [
379
+ [ "text", " " ],
380
+ [ "meta.tag", "<" ],
381
+ [ "meta.tag.tag-name", "place" ],
382
+ [ "text", " " ],
383
+ [ "entity.other.attribute-name", "xmlns" ],
384
+ [ "keyword.operator", "=" ],
385
+ [ "string", "\"http://where.yahooapis.com/v1/schema.rng\"" ]
386
+ ]
387
+ },
388
+ {
389
+ "state": "start",
390
+ "data": [
391
+ [ "text", " " ],
392
+ [ "entity.other.attribute-name", "xml:lang" ],
393
+ [ "keyword.operator", "=" ],
394
+ [ "string", "\"en-US\"" ],
395
+ [ "text", " " ],
396
+ [ "entity.other.attribute-name", "yahoo:uri" ],
397
+ [ "keyword.operator", "=" ],
398
+ [ "string", "\"http://where.yahooapis.com/v1/place/28289421\"" ],
399
+ [ "meta.tag", ">" ]
400
+ ]
401
+ },
402
+ {
403
+ "state": "start",
404
+ "data": [
405
+ [ "text", " " ],
406
+ [ "meta.tag", "<" ],
407
+ [ "meta.tag.tag-name", "woeid" ],
408
+ [ "meta.tag", ">" ],
409
+ [ "text", "28289421" ],
410
+ [ "meta.tag", "</" ],
411
+ [ "meta.tag.tag-name", "woeid" ],
412
+ [ "meta.tag", ">" ]
413
+ ]
414
+ },
415
+ {
416
+ "state": "start",
417
+ "data": [
418
+ [ "text", " " ],
419
+ [ "meta.tag", "<" ],
420
+ [ "meta.tag.tag-name", "placeTypeName" ],
421
+ [ "text", " " ],
422
+ [ "entity.other.attribute-name", "code" ],
423
+ [ "keyword.operator", "=" ],
424
+ [ "string", "\"29\"" ],
425
+ [ "meta.tag", ">" ],
426
+ [ "text", "Continent" ],
427
+ [ "meta.tag", "</" ],
428
+ [ "meta.tag.tag-name", "placeTypeName" ],
429
+ [ "meta.tag", ">" ]
430
+ ]
431
+ },
432
+ {
433
+ "state": "start",
434
+ "data": [
435
+ [ "text", " " ],
436
+ [ "meta.tag", "<" ],
437
+ [ "meta.tag.tag-name", "name" ],
438
+ [ "meta.tag", ">" ],
439
+ [ "text", "Antarctic" ],
440
+ [ "meta.tag", "</" ],
441
+ [ "meta.tag.tag-name", "name" ],
442
+ [ "meta.tag", ">" ]
443
+ ]
444
+ },
445
+ {
446
+ "state": "start",
447
+ "data": [
448
+ [ "text", " " ],
449
+ [ "meta.tag", "</" ],
450
+ [ "meta.tag.tag-name", "place" ],
451
+ [ "meta.tag", ">" ]
452
+ ]
453
+ },
454
+ {
455
+ "state": "tag_embed_attribute_list",
456
+ "data": [
457
+ [ "text", " " ],
458
+ [ "meta.tag", "<" ],
459
+ [ "meta.tag.tag-name", "place" ],
460
+ [ "text", " " ],
461
+ [ "entity.other.attribute-name", "xmlns" ],
462
+ [ "keyword.operator", "=" ],
463
+ [ "string", "\"http://where.yahooapis.com/v1/schema.rng\"" ]
464
+ ]
465
+ },
466
+ {
467
+ "state": "start",
468
+ "data": [
469
+ [ "text", " " ],
470
+ [ "entity.other.attribute-name", "xml:lang" ],
471
+ [ "keyword.operator", "=" ],
472
+ [ "string", "\"en-US\"" ],
473
+ [ "text", " " ],
474
+ [ "entity.other.attribute-name", "yahoo:uri" ],
475
+ [ "keyword.operator", "=" ],
476
+ [ "string", "\"http://where.yahooapis.com/v1/place/24865671\"" ],
477
+ [ "meta.tag", ">" ]
478
+ ]
479
+ },
480
+ {
481
+ "state": "start",
482
+ "data": [
483
+ [ "text", " " ],
484
+ [ "meta.tag", "<" ],
485
+ [ "meta.tag.tag-name", "woeid" ],
486
+ [ "meta.tag", ">" ],
487
+ [ "text", "24865671" ],
488
+ [ "meta.tag", "</" ],
489
+ [ "meta.tag.tag-name", "woeid" ],
490
+ [ "meta.tag", ">" ]
491
+ ]
492
+ },
493
+ {
494
+ "state": "start",
495
+ "data": [
496
+ [ "text", " " ],
497
+ [ "meta.tag", "<" ],
498
+ [ "meta.tag.tag-name", "placeTypeName" ],
499
+ [ "text", " " ],
500
+ [ "entity.other.attribute-name", "code" ],
501
+ [ "keyword.operator", "=" ],
502
+ [ "string", "\"29\"" ],
503
+ [ "meta.tag", ">" ],
504
+ [ "text", "Continent" ],
505
+ [ "meta.tag", "</" ],
506
+ [ "meta.tag.tag-name", "placeTypeName" ],
507
+ [ "meta.tag", ">" ]
508
+ ]
509
+ },
510
+ {
511
+ "state": "start",
512
+ "data": [
513
+ [ "text", " " ],
514
+ [ "meta.tag", "<" ],
515
+ [ "meta.tag.tag-name", "name" ],
516
+ [ "meta.tag", ">" ],
517
+ [ "text", "Asia" ],
518
+ [ "meta.tag", "</" ],
519
+ [ "meta.tag.tag-name", "name" ],
520
+ [ "meta.tag", ">" ]
521
+ ]
522
+ },
523
+ {
524
+ "state": "start",
525
+ "data": [
526
+ [ "text", " " ],
527
+ [ "meta.tag", "</" ],
528
+ [ "meta.tag.tag-name", "place" ],
529
+ [ "meta.tag", ">" ]
530
+ ]
531
+ },
532
+ {
533
+ "state": "tag_embed_attribute_list",
534
+ "data": [
535
+ [ "text", " " ],
536
+ [ "meta.tag", "<" ],
537
+ [ "meta.tag.tag-name", "place" ],
538
+ [ "text", " " ],
539
+ [ "entity.other.attribute-name", "xmlns" ],
540
+ [ "keyword.operator", "=" ],
541
+ [ "string", "\"http://where.yahooapis.com/v1/schema.rng\"" ]
542
+ ]
543
+ },
544
+ {
545
+ "state": "start",
546
+ "data": [
547
+ [ "text", " " ],
548
+ [ "entity.other.attribute-name", "xml:lang" ],
549
+ [ "keyword.operator", "=" ],
550
+ [ "string", "\"en-US\"" ],
551
+ [ "text", " " ],
552
+ [ "entity.other.attribute-name", "yahoo:uri" ],
553
+ [ "keyword.operator", "=" ],
554
+ [ "string", "\"http://where.yahooapis.com/v1/place/24865672\"" ],
555
+ [ "meta.tag", ">" ]
556
+ ]
557
+ },
558
+ {
559
+ "state": "start",
560
+ "data": [
561
+ [ "text", " " ],
562
+ [ "meta.tag", "<" ],
563
+ [ "meta.tag.tag-name", "woeid" ],
564
+ [ "meta.tag", ">" ],
565
+ [ "text", "24865672" ],
566
+ [ "meta.tag", "</" ],
567
+ [ "meta.tag.tag-name", "woeid" ],
568
+ [ "meta.tag", ">" ]
569
+ ]
570
+ },
571
+ {
572
+ "state": "start",
573
+ "data": [
574
+ [ "text", " " ],
575
+ [ "meta.tag", "<" ],
576
+ [ "meta.tag.tag-name", "placeTypeName" ],
577
+ [ "text", " " ],
578
+ [ "entity.other.attribute-name", "code" ],
579
+ [ "keyword.operator", "=" ],
580
+ [ "string", "\"29\"" ],
581
+ [ "meta.tag", ">" ],
582
+ [ "text", "Continent" ],
583
+ [ "meta.tag", "</" ],
584
+ [ "meta.tag.tag-name", "placeTypeName" ],
585
+ [ "meta.tag", ">" ]
586
+ ]
587
+ },
588
+ {
589
+ "state": "start",
590
+ "data": [
591
+ [ "text", " " ],
592
+ [ "meta.tag", "<" ],
593
+ [ "meta.tag.tag-name", "name" ],
594
+ [ "meta.tag", ">" ],
595
+ [ "text", "North America" ],
596
+ [ "meta.tag", "</" ],
597
+ [ "meta.tag.tag-name", "name" ],
598
+ [ "meta.tag", ">" ]
599
+ ]
600
+ },
601
+ {
602
+ "state": "start",
603
+ "data": [
604
+ [ "text", " " ],
605
+ [ "meta.tag", "</" ],
606
+ [ "meta.tag.tag-name", "place" ],
607
+ [ "meta.tag", ">" ]
608
+ ]
609
+ },
610
+ {
611
+ "state": "tag_embed_attribute_list",
612
+ "data": [
613
+ [ "text", " " ],
614
+ [ "meta.tag", "<" ],
615
+ [ "meta.tag.tag-name", "place" ],
616
+ [ "text", " " ],
617
+ [ "entity.other.attribute-name", "xmlns" ],
618
+ [ "keyword.operator", "=" ],
619
+ [ "string", "\"http://where.yahooapis.com/v1/schema.rng\"" ]
620
+ ]
621
+ },
622
+ {
623
+ "state": "start",
624
+ "data": [
625
+ [ "text", " " ],
626
+ [ "entity.other.attribute-name", "xml:lang" ],
627
+ [ "keyword.operator", "=" ],
628
+ [ "string", "\"en-US\"" ],
629
+ [ "text", " " ],
630
+ [ "entity.other.attribute-name", "yahoo:uri" ],
631
+ [ "keyword.operator", "=" ],
632
+ [ "string", "\"http://where.yahooapis.com/v1/place/55949070\"" ],
633
+ [ "meta.tag", ">" ]
634
+ ]
635
+ },
636
+ {
637
+ "state": "start",
638
+ "data": [
639
+ [ "text", " " ],
640
+ [ "meta.tag", "<" ],
641
+ [ "meta.tag.tag-name", "woeid" ],
642
+ [ "meta.tag", ">" ],
643
+ [ "text", "55949070" ],
644
+ [ "meta.tag", "</" ],
645
+ [ "meta.tag.tag-name", "woeid" ],
646
+ [ "meta.tag", ">" ]
647
+ ]
648
+ },
649
+ {
650
+ "state": "start",
651
+ "data": [
652
+ [ "text", " " ],
653
+ [ "meta.tag", "<" ],
654
+ [ "meta.tag.tag-name", "placeTypeName" ],
655
+ [ "text", " " ],
656
+ [ "entity.other.attribute-name", "code" ],
657
+ [ "keyword.operator", "=" ],
658
+ [ "string", "\"29\"" ],
659
+ [ "meta.tag", ">" ],
660
+ [ "text", "Continent" ],
661
+ [ "meta.tag", "</" ],
662
+ [ "meta.tag.tag-name", "placeTypeName" ],
663
+ [ "meta.tag", ">" ]
664
+ ]
665
+ },
666
+ {
667
+ "state": "start",
668
+ "data": [
669
+ [ "text", " " ],
670
+ [ "meta.tag", "<" ],
671
+ [ "meta.tag.tag-name", "name" ],
672
+ [ "meta.tag", ">" ],
673
+ [ "text", "Australia" ],
674
+ [ "meta.tag", "</" ],
675
+ [ "meta.tag.tag-name", "name" ],
676
+ [ "meta.tag", ">" ]
677
+ ]
678
+ },
679
+ {
680
+ "state": "start",
681
+ "data": [
682
+ [ "text", " " ],
683
+ [ "meta.tag", "</" ],
684
+ [ "meta.tag.tag-name", "place" ],
685
+ [ "meta.tag", ">" ]
686
+ ]
687
+ },
688
+ {
689
+ "state": "start",
690
+ "data": [
691
+ [ "text", " " ],
692
+ [ "meta.tag", "</" ],
693
+ [ "meta.tag.tag-name", "results" ],
694
+ [ "meta.tag", ">" ]
695
+ ]
696
+ },
697
+ {
698
+ "state": "start",
699
+ "data": [
700
+ [ "meta.tag", "</" ],
701
+ [ "meta.tag.tag-name", "query" ],
702
+ [ "meta.tag", ">" ]
703
+ ]
704
+ }
705
+ ]