administrate-field-simple_mde_markdown 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (419) hide show
  1. checksums.yaml +7 -0
  2. data/.circleci/config.yml +72 -0
  3. data/.circleci/setup-rubygems.sh +3 -0
  4. data/.gitignore +11 -0
  5. data/.rspec +3 -0
  6. data/CODE_OF_CONDUCT.md +74 -0
  7. data/Gemfile +8 -0
  8. data/Gemfile.lock +196 -0
  9. data/LICENSE.txt +21 -0
  10. data/README.md +44 -0
  11. data/Rakefile +8 -0
  12. data/administrate-field-simple_mde_markdown.gemspec +31 -0
  13. data/app/assets/javascripts/administrate-field-simple_mde_markdown/application.js +6 -0
  14. data/app/assets/stylesheets/administrate-field-simple_mde_markdown/application.css +3 -0
  15. data/app/views/fields/simple_mde_markdown/_form.html.erb +6 -0
  16. data/app/views/fields/simple_mde_markdown/_index.html.erb +1 -0
  17. data/app/views/fields/simple_mde_markdown/_show.html.erb +1 -0
  18. data/lib/administrate/field/simple_mde_markdown.rb +31 -0
  19. data/node_modules/.bin/marked +1 -0
  20. data/node_modules/codemirror-spell-checker/.eslintrc +23 -0
  21. data/node_modules/codemirror-spell-checker/.npmignore +2 -0
  22. data/node_modules/codemirror-spell-checker/.travis.yml +18 -0
  23. data/node_modules/codemirror-spell-checker/CONTRIBUTING 2.md +10 -0
  24. data/node_modules/codemirror-spell-checker/CONTRIBUTING.md +10 -0
  25. data/node_modules/codemirror-spell-checker/LICENSE +22 -0
  26. data/node_modules/codemirror-spell-checker/README.md +50 -0
  27. data/node_modules/codemirror-spell-checker/bower.json +27 -0
  28. data/node_modules/codemirror-spell-checker/debug/.spell-checker 2.css.icloud +0 -0
  29. data/node_modules/codemirror-spell-checker/debug/spell-checker.css +9 -0
  30. data/node_modules/codemirror-spell-checker/debug/spell-checker.debug.js +2844 -0
  31. data/node_modules/codemirror-spell-checker/debug/spell-checker.js +2841 -0
  32. data/node_modules/codemirror-spell-checker/dist/.spell-checker.min 2.css.icloud +0 -0
  33. data/node_modules/codemirror-spell-checker/dist/en_US.aff +201 -0
  34. data/node_modules/codemirror-spell-checker/dist/en_US.dic +62120 -0
  35. data/node_modules/codemirror-spell-checker/dist/spell-checker.min 2.js +7 -0
  36. data/node_modules/codemirror-spell-checker/dist/spell-checker.min.css +7 -0
  37. data/node_modules/codemirror-spell-checker/dist/spell-checker.min.js +7 -0
  38. data/node_modules/codemirror-spell-checker/gulpfile.js +94 -0
  39. data/node_modules/codemirror-spell-checker/package.json +75 -0
  40. data/node_modules/codemirror-spell-checker/src/css/spell-checker.css +3 -0
  41. data/node_modules/codemirror-spell-checker/src/data/en_US.aff +201 -0
  42. data/node_modules/codemirror-spell-checker/src/data/en_US.dic +62120 -0
  43. data/node_modules/codemirror-spell-checker/src/js/spell-checker.js +119 -0
  44. data/node_modules/codemirror/.package 2.json.icloud +0 -0
  45. data/node_modules/codemirror/AUTHORS +773 -0
  46. data/node_modules/codemirror/CHANGELOG.md +1486 -0
  47. data/node_modules/codemirror/CONTRIBUTING.md +92 -0
  48. data/node_modules/codemirror/LICENSE +21 -0
  49. data/node_modules/codemirror/README.md +49 -0
  50. data/node_modules/codemirror/addon/comment/comment.js +209 -0
  51. data/node_modules/codemirror/addon/comment/continuecomment.js +78 -0
  52. data/node_modules/codemirror/addon/dialog/dialog.css +32 -0
  53. data/node_modules/codemirror/addon/dialog/dialog.js +161 -0
  54. data/node_modules/codemirror/addon/display/autorefresh.js +47 -0
  55. data/node_modules/codemirror/addon/display/fullscreen.css +6 -0
  56. data/node_modules/codemirror/addon/display/fullscreen.js +41 -0
  57. data/node_modules/codemirror/addon/display/panel.js +127 -0
  58. data/node_modules/codemirror/addon/display/placeholder.js +63 -0
  59. data/node_modules/codemirror/addon/display/rulers.js +51 -0
  60. data/node_modules/codemirror/addon/edit/closebrackets.js +187 -0
  61. data/node_modules/codemirror/addon/edit/closetag.js +175 -0
  62. data/node_modules/codemirror/addon/edit/continuelist.js +89 -0
  63. data/node_modules/codemirror/addon/edit/matchbrackets.js +145 -0
  64. data/node_modules/codemirror/addon/edit/matchtags.js +66 -0
  65. data/node_modules/codemirror/addon/edit/trailingspace.js +27 -0
  66. data/node_modules/codemirror/addon/fold/brace-fold.js +105 -0
  67. data/node_modules/codemirror/addon/fold/comment-fold.js +59 -0
  68. data/node_modules/codemirror/addon/fold/foldcode.js +152 -0
  69. data/node_modules/codemirror/addon/fold/foldgutter.css +20 -0
  70. data/node_modules/codemirror/addon/fold/foldgutter.js +146 -0
  71. data/node_modules/codemirror/addon/fold/indent-fold.js +48 -0
  72. data/node_modules/codemirror/addon/fold/markdown-fold.js +49 -0
  73. data/node_modules/codemirror/addon/fold/xml-fold.js +184 -0
  74. data/node_modules/codemirror/addon/hint/anyword-hint.js +41 -0
  75. data/node_modules/codemirror/addon/hint/css-hint.js +60 -0
  76. data/node_modules/codemirror/addon/hint/html-hint.js +348 -0
  77. data/node_modules/codemirror/addon/hint/javascript-hint.js +157 -0
  78. data/node_modules/codemirror/addon/hint/show-hint.css +36 -0
  79. data/node_modules/codemirror/addon/hint/show-hint.js +434 -0
  80. data/node_modules/codemirror/addon/hint/sql-hint.js +299 -0
  81. data/node_modules/codemirror/addon/hint/xml-hint.js +110 -0
  82. data/node_modules/codemirror/addon/lint/coffeescript-lint.js +47 -0
  83. data/node_modules/codemirror/addon/lint/css-lint.js +40 -0
  84. data/node_modules/codemirror/addon/lint/html-lint.js +53 -0
  85. data/node_modules/codemirror/addon/lint/javascript-lint.js +63 -0
  86. data/node_modules/codemirror/addon/lint/json-lint.js +40 -0
  87. data/node_modules/codemirror/addon/lint/lint.css +73 -0
  88. data/node_modules/codemirror/addon/lint/lint.js +252 -0
  89. data/node_modules/codemirror/addon/lint/yaml-lint.js +41 -0
  90. data/node_modules/codemirror/addon/merge/merge.css +119 -0
  91. data/node_modules/codemirror/addon/merge/merge.js +1002 -0
  92. data/node_modules/codemirror/addon/mode/loadmode.js +64 -0
  93. data/node_modules/codemirror/addon/mode/multiplex.js +131 -0
  94. data/node_modules/codemirror/addon/mode/multiplex_test.js +33 -0
  95. data/node_modules/codemirror/addon/mode/overlay.js +90 -0
  96. data/node_modules/codemirror/addon/mode/simple.js +216 -0
  97. data/node_modules/codemirror/addon/runmode/colorize.js +40 -0
  98. data/node_modules/codemirror/addon/runmode/runmode-standalone.js +158 -0
  99. data/node_modules/codemirror/addon/runmode/runmode.js +72 -0
  100. data/node_modules/codemirror/addon/runmode/runmode.node.js +197 -0
  101. data/node_modules/codemirror/addon/scroll/annotatescrollbar.js +122 -0
  102. data/node_modules/codemirror/addon/scroll/scrollpastend.js +48 -0
  103. data/node_modules/codemirror/addon/scroll/simplescrollbars.css +66 -0
  104. data/node_modules/codemirror/addon/scroll/simplescrollbars.js +152 -0
  105. data/node_modules/codemirror/addon/search/jump-to-line.js +50 -0
  106. data/node_modules/codemirror/addon/search/match-highlighter.js +165 -0
  107. data/node_modules/codemirror/addon/search/matchesonscrollbar.css +8 -0
  108. data/node_modules/codemirror/addon/search/matchesonscrollbar.js +97 -0
  109. data/node_modules/codemirror/addon/search/search.js +258 -0
  110. data/node_modules/codemirror/addon/search/searchcursor.js +293 -0
  111. data/node_modules/codemirror/addon/selection/active-line.js +72 -0
  112. data/node_modules/codemirror/addon/selection/mark-selection.js +119 -0
  113. data/node_modules/codemirror/addon/selection/selection-pointer.js +98 -0
  114. data/node_modules/codemirror/addon/tern/tern.css +87 -0
  115. data/node_modules/codemirror/addon/tern/tern.js +718 -0
  116. data/node_modules/codemirror/addon/tern/worker.js +44 -0
  117. data/node_modules/codemirror/addon/wrap/hardwrap.js +145 -0
  118. data/node_modules/codemirror/bin/source-highlight +48 -0
  119. data/node_modules/codemirror/keymap/emacs.js +417 -0
  120. data/node_modules/codemirror/keymap/sublime.js +691 -0
  121. data/node_modules/codemirror/keymap/vim.js +5467 -0
  122. data/node_modules/codemirror/lib/codemirror.css +346 -0
  123. data/node_modules/codemirror/lib/codemirror.js +9698 -0
  124. data/node_modules/codemirror/mode/apl/apl.js +174 -0
  125. data/node_modules/codemirror/mode/asciiarmor/asciiarmor.js +74 -0
  126. data/node_modules/codemirror/mode/asn.1/asn.1.js +204 -0
  127. data/node_modules/codemirror/mode/asterisk/asterisk.js +196 -0
  128. data/node_modules/codemirror/mode/brainfuck/brainfuck.js +85 -0
  129. data/node_modules/codemirror/mode/clike/clike.js +879 -0
  130. data/node_modules/codemirror/mode/clojure/clojure.js +292 -0
  131. data/node_modules/codemirror/mode/cmake/cmake.js +97 -0
  132. data/node_modules/codemirror/mode/cobol/cobol.js +255 -0
  133. data/node_modules/codemirror/mode/coffeescript/coffeescript.js +359 -0
  134. data/node_modules/codemirror/mode/commonlisp/commonlisp.js +124 -0
  135. data/node_modules/codemirror/mode/crystal/crystal.js +433 -0
  136. data/node_modules/codemirror/mode/css/css.js +832 -0
  137. data/node_modules/codemirror/mode/cypher/cypher.js +150 -0
  138. data/node_modules/codemirror/mode/d/d.js +223 -0
  139. data/node_modules/codemirror/mode/dart/dart.js +157 -0
  140. data/node_modules/codemirror/mode/diff/diff.js +47 -0
  141. data/node_modules/codemirror/mode/django/django.js +356 -0
  142. data/node_modules/codemirror/mode/dockerfile/dockerfile.js +211 -0
  143. data/node_modules/codemirror/mode/dtd/dtd.js +142 -0
  144. data/node_modules/codemirror/mode/dylan/dylan.js +352 -0
  145. data/node_modules/codemirror/mode/ebnf/ebnf.js +195 -0
  146. data/node_modules/codemirror/mode/ecl/ecl.js +206 -0
  147. data/node_modules/codemirror/mode/eiffel/eiffel.js +160 -0
  148. data/node_modules/codemirror/mode/elm/elm.js +205 -0
  149. data/node_modules/codemirror/mode/erlang/erlang.js +619 -0
  150. data/node_modules/codemirror/mode/factor/factor.js +85 -0
  151. data/node_modules/codemirror/mode/fcl/fcl.js +173 -0
  152. data/node_modules/codemirror/mode/forth/forth.js +180 -0
  153. data/node_modules/codemirror/mode/fortran/fortran.js +188 -0
  154. data/node_modules/codemirror/mode/gas/gas.js +345 -0
  155. data/node_modules/codemirror/mode/gfm/gfm.js +129 -0
  156. data/node_modules/codemirror/mode/gherkin/gherkin.js +178 -0
  157. data/node_modules/codemirror/mode/go/go.js +187 -0
  158. data/node_modules/codemirror/mode/groovy/groovy.js +230 -0
  159. data/node_modules/codemirror/mode/haml/haml.js +161 -0
  160. data/node_modules/codemirror/mode/handlebars/handlebars.js +66 -0
  161. data/node_modules/codemirror/mode/haskell-literate/haskell-literate.js +43 -0
  162. data/node_modules/codemirror/mode/haskell/haskell.js +268 -0
  163. data/node_modules/codemirror/mode/haxe/haxe.js +515 -0
  164. data/node_modules/codemirror/mode/htmlembedded/htmlembedded.js +37 -0
  165. data/node_modules/codemirror/mode/htmlmixed/htmlmixed.js +152 -0
  166. data/node_modules/codemirror/mode/http/http.js +113 -0
  167. data/node_modules/codemirror/mode/idl/idl.js +290 -0
  168. data/node_modules/codemirror/mode/javascript/javascript.js +899 -0
  169. data/node_modules/codemirror/mode/jinja2/jinja2.js +144 -0
  170. data/node_modules/codemirror/mode/jsx/jsx.js +148 -0
  171. data/node_modules/codemirror/mode/julia/julia.js +433 -0
  172. data/node_modules/codemirror/mode/livescript/livescript.js +280 -0
  173. data/node_modules/codemirror/mode/lua/lua.js +159 -0
  174. data/node_modules/codemirror/mode/markdown/markdown.js +884 -0
  175. data/node_modules/codemirror/mode/mathematica/mathematica.js +176 -0
  176. data/node_modules/codemirror/mode/mbox/mbox.js +129 -0
  177. data/node_modules/codemirror/mode/meta.js +217 -0
  178. data/node_modules/codemirror/mode/mirc/mirc.js +193 -0
  179. data/node_modules/codemirror/mode/mllike/mllike.js +359 -0
  180. data/node_modules/codemirror/mode/modelica/modelica.js +245 -0
  181. data/node_modules/codemirror/mode/mscgen/mscgen.js +175 -0
  182. data/node_modules/codemirror/mode/mumps/mumps.js +148 -0
  183. data/node_modules/codemirror/mode/nginx/nginx.js +178 -0
  184. data/node_modules/codemirror/mode/nsis/nsis.js +95 -0
  185. data/node_modules/codemirror/mode/ntriples/ntriples.js +195 -0
  186. data/node_modules/codemirror/mode/octave/octave.js +139 -0
  187. data/node_modules/codemirror/mode/oz/oz.js +252 -0
  188. data/node_modules/codemirror/mode/pascal/pascal.js +121 -0
  189. data/node_modules/codemirror/mode/pegjs/pegjs.js +114 -0
  190. data/node_modules/codemirror/mode/perl/perl.js +837 -0
  191. data/node_modules/codemirror/mode/php/php.js +234 -0
  192. data/node_modules/codemirror/mode/pig/pig.js +178 -0
  193. data/node_modules/codemirror/mode/powershell/powershell.js +398 -0
  194. data/node_modules/codemirror/mode/properties/properties 2.js +78 -0
  195. data/node_modules/codemirror/mode/properties/properties.js +78 -0
  196. data/node_modules/codemirror/mode/protobuf/protobuf.js +69 -0
  197. data/node_modules/codemirror/mode/pug/pug.js +591 -0
  198. data/node_modules/codemirror/mode/puppet/puppet.js +220 -0
  199. data/node_modules/codemirror/mode/python/python.js +409 -0
  200. data/node_modules/codemirror/mode/q/q.js +139 -0
  201. data/node_modules/codemirror/mode/r/r.js +190 -0
  202. data/node_modules/codemirror/mode/rpm/changes/index.html +66 -0
  203. data/node_modules/codemirror/mode/rpm/rpm.js +109 -0
  204. data/node_modules/codemirror/mode/rst/rst.js +557 -0
  205. data/node_modules/codemirror/mode/ruby/ruby.js +296 -0
  206. data/node_modules/codemirror/mode/rust/rust.js +72 -0
  207. data/node_modules/codemirror/mode/sas/sas.js +303 -0
  208. data/node_modules/codemirror/mode/sass/sass.js +454 -0
  209. data/node_modules/codemirror/mode/scheme/scheme.js +265 -0
  210. data/node_modules/codemirror/mode/shell/shell.js +152 -0
  211. data/node_modules/codemirror/mode/sieve/sieve.js +193 -0
  212. data/node_modules/codemirror/mode/slim/slim.js +575 -0
  213. data/node_modules/codemirror/mode/smalltalk/smalltalk.js +168 -0
  214. data/node_modules/codemirror/mode/smarty/smarty.js +225 -0
  215. data/node_modules/codemirror/mode/solr/solr.js +104 -0
  216. data/node_modules/codemirror/mode/soy/soy 2.js +359 -0
  217. data/node_modules/codemirror/mode/soy/soy.js +235 -0
  218. data/node_modules/codemirror/mode/sparql/sparql.js +180 -0
  219. data/node_modules/codemirror/mode/spreadsheet/spreadsheet.js +112 -0
  220. data/node_modules/codemirror/mode/sql/sql.js +499 -0
  221. data/node_modules/codemirror/mode/stex/stex.js +264 -0
  222. data/node_modules/codemirror/mode/stylus/stylus.js +771 -0
  223. data/node_modules/codemirror/mode/swift/swift.js +219 -0
  224. data/node_modules/codemirror/mode/tcl/tcl.js +139 -0
  225. data/node_modules/codemirror/mode/textile/textile.js +469 -0
  226. data/node_modules/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  227. data/node_modules/codemirror/mode/tiddlywiki/tiddlywiki.js +308 -0
  228. data/node_modules/codemirror/mode/tiki/tiki.css +26 -0
  229. data/node_modules/codemirror/mode/tiki/tiki.js +312 -0
  230. data/node_modules/codemirror/mode/toml/toml.js +88 -0
  231. data/node_modules/codemirror/mode/tornado/tornado.js +68 -0
  232. data/node_modules/codemirror/mode/troff/troff.js +84 -0
  233. data/node_modules/codemirror/mode/ttcn-cfg/ttcn-cfg.js +214 -0
  234. data/node_modules/codemirror/mode/ttcn/ttcn.js +283 -0
  235. data/node_modules/codemirror/mode/turtle/turtle.js +162 -0
  236. data/node_modules/codemirror/mode/twig/twig.js +141 -0
  237. data/node_modules/codemirror/mode/vb/vb.js +275 -0
  238. data/node_modules/codemirror/mode/vbscript/vbscript.js +350 -0
  239. data/node_modules/codemirror/mode/velocity/velocity.js +201 -0
  240. data/node_modules/codemirror/mode/verilog/verilog.js +675 -0
  241. data/node_modules/codemirror/mode/vhdl/vhdl.js +189 -0
  242. data/node_modules/codemirror/mode/vue/vue.js +77 -0
  243. data/node_modules/codemirror/mode/webidl/webidl.js +195 -0
  244. data/node_modules/codemirror/mode/xml/xml.js +402 -0
  245. data/node_modules/codemirror/mode/xquery/xquery.js +448 -0
  246. data/node_modules/codemirror/mode/yacas/yacas.js +204 -0
  247. data/node_modules/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js +68 -0
  248. data/node_modules/codemirror/mode/yaml/yaml.js +120 -0
  249. data/node_modules/codemirror/mode/z80/z80.js +116 -0
  250. data/node_modules/codemirror/package.json +2395 -0
  251. data/node_modules/codemirror/rollup.config.js +20 -0
  252. data/node_modules/codemirror/src/codemirror.js +3 -0
  253. data/node_modules/codemirror/src/display/Display.js +106 -0
  254. data/node_modules/codemirror/src/display/focus.js +47 -0
  255. data/node_modules/codemirror/src/display/gutters.js +34 -0
  256. data/node_modules/codemirror/src/display/highlight_worker.js +55 -0
  257. data/node_modules/codemirror/src/display/line_numbers.js +48 -0
  258. data/node_modules/codemirror/src/display/mode_state.js +22 -0
  259. data/node_modules/codemirror/src/display/operations.js +205 -0
  260. data/node_modules/codemirror/src/display/scroll_events.js +115 -0
  261. data/node_modules/codemirror/src/display/scrollbars.js +193 -0
  262. data/node_modules/codemirror/src/display/scrolling.js +184 -0
  263. data/node_modules/codemirror/src/display/selection.js +158 -0
  264. data/node_modules/codemirror/src/display/update_display.js +260 -0
  265. data/node_modules/codemirror/src/display/update_line.js +188 -0
  266. data/node_modules/codemirror/src/display/update_lines.js +64 -0
  267. data/node_modules/codemirror/src/display/view_tracking.js +153 -0
  268. data/node_modules/codemirror/src/edit/CodeMirror.js +215 -0
  269. data/node_modules/codemirror/src/edit/commands.js +178 -0
  270. data/node_modules/codemirror/src/edit/deleteNearSelection.js +30 -0
  271. data/node_modules/codemirror/src/edit/drop_events.js +119 -0
  272. data/node_modules/codemirror/src/edit/fromTextArea.js +61 -0
  273. data/node_modules/codemirror/src/edit/global_events.js +42 -0
  274. data/node_modules/codemirror/src/edit/key_events.js +159 -0
  275. data/node_modules/codemirror/src/edit/legacy.js +62 -0
  276. data/node_modules/codemirror/src/edit/main.js +69 -0
  277. data/node_modules/codemirror/src/edit/methods.js +544 -0
  278. data/node_modules/codemirror/src/edit/mouse_events.js +407 -0
  279. data/node_modules/codemirror/src/edit/options.js +193 -0
  280. data/node_modules/codemirror/src/edit/utils.js +7 -0
  281. data/node_modules/codemirror/src/input/ContentEditableInput.js +527 -0
  282. data/node_modules/codemirror/src/input/TextareaInput.js +355 -0
  283. data/node_modules/codemirror/src/input/indent.js +71 -0
  284. data/node_modules/codemirror/src/input/input.js +135 -0
  285. data/node_modules/codemirror/src/input/keymap.js +148 -0
  286. data/node_modules/codemirror/src/input/keynames.js +17 -0
  287. data/node_modules/codemirror/src/input/movement.js +110 -0
  288. data/node_modules/codemirror/src/line/highlight.js +284 -0
  289. data/node_modules/codemirror/src/line/line_data.js +339 -0
  290. data/node_modules/codemirror/src/line/pos.js +40 -0
  291. data/node_modules/codemirror/src/line/saw_special_spans.js +10 -0
  292. data/node_modules/codemirror/src/line/spans.js +382 -0
  293. data/node_modules/codemirror/src/line/utils_line.js +85 -0
  294. data/node_modules/codemirror/src/measurement/position_measurement.js +699 -0
  295. data/node_modules/codemirror/src/measurement/widgets.js +26 -0
  296. data/node_modules/codemirror/src/model/Doc.js +432 -0
  297. data/node_modules/codemirror/src/model/change_measurement.js +61 -0
  298. data/node_modules/codemirror/src/model/changes.js +333 -0
  299. data/node_modules/codemirror/src/model/chunk.js +167 -0
  300. data/node_modules/codemirror/src/model/document_data.js +111 -0
  301. data/node_modules/codemirror/src/model/history.js +228 -0
  302. data/node_modules/codemirror/src/model/line_widget.js +78 -0
  303. data/node_modules/codemirror/src/model/mark_text.js +292 -0
  304. data/node_modules/codemirror/src/model/selection.js +84 -0
  305. data/node_modules/codemirror/src/model/selection_updates.js +208 -0
  306. data/node_modules/codemirror/src/modes.js +96 -0
  307. data/node_modules/codemirror/src/util/StringStream.js +90 -0
  308. data/node_modules/codemirror/src/util/bidi.js +214 -0
  309. data/node_modules/codemirror/src/util/browser.js +33 -0
  310. data/node_modules/codemirror/src/util/dom.js +97 -0
  311. data/node_modules/codemirror/src/util/event.js +103 -0
  312. data/node_modules/codemirror/src/util/feature_detection.js +84 -0
  313. data/node_modules/codemirror/src/util/misc.js +150 -0
  314. data/node_modules/codemirror/src/util/operation_group.js +72 -0
  315. data/node_modules/codemirror/theme/3024-day.css +41 -0
  316. data/node_modules/codemirror/theme/3024-night.css +39 -0
  317. data/node_modules/codemirror/theme/abcdef.css +32 -0
  318. data/node_modules/codemirror/theme/ambiance-mobile.css +5 -0
  319. data/node_modules/codemirror/theme/ambiance.css +74 -0
  320. data/node_modules/codemirror/theme/base16-dark.css +38 -0
  321. data/node_modules/codemirror/theme/base16-light.css +38 -0
  322. data/node_modules/codemirror/theme/bespin.css +34 -0
  323. data/node_modules/codemirror/theme/blackboard.css +32 -0
  324. data/node_modules/codemirror/theme/cobalt.css +25 -0
  325. data/node_modules/codemirror/theme/colorforth.css +33 -0
  326. data/node_modules/codemirror/theme/darcula.css +46 -0
  327. data/node_modules/codemirror/theme/dracula.css +40 -0
  328. data/node_modules/codemirror/theme/duotone-dark.css +35 -0
  329. data/node_modules/codemirror/theme/duotone-light.css +36 -0
  330. data/node_modules/codemirror/theme/eclipse.css +23 -0
  331. data/node_modules/codemirror/theme/elegant.css +13 -0
  332. data/node_modules/codemirror/theme/erlang-dark.css +34 -0
  333. data/node_modules/codemirror/theme/gruvbox-dark.css +37 -0
  334. data/node_modules/codemirror/theme/hopscotch.css +34 -0
  335. data/node_modules/codemirror/theme/icecoder.css +43 -0
  336. data/node_modules/codemirror/theme/idea.css +42 -0
  337. data/node_modules/codemirror/theme/isotope.css +34 -0
  338. data/node_modules/codemirror/theme/lesser-dark.css +47 -0
  339. data/node_modules/codemirror/theme/liquibyte.css +95 -0
  340. data/node_modules/codemirror/theme/lucario.css +37 -0
  341. data/node_modules/codemirror/theme/material.css +53 -0
  342. data/node_modules/codemirror/theme/mbo.css +37 -0
  343. data/node_modules/codemirror/theme/mdn-like.css +46 -0
  344. data/node_modules/codemirror/theme/midnight.css +43 -0
  345. data/node_modules/codemirror/theme/monokai.css +41 -0
  346. data/node_modules/codemirror/theme/neat.css +12 -0
  347. data/node_modules/codemirror/theme/neo.css +43 -0
  348. data/node_modules/codemirror/theme/night.css +27 -0
  349. data/node_modules/codemirror/theme/oceanic-next.css +44 -0
  350. data/node_modules/codemirror/theme/panda-syntax.css +85 -0
  351. data/node_modules/codemirror/theme/paraiso-dark.css +38 -0
  352. data/node_modules/codemirror/theme/paraiso-light.css +38 -0
  353. data/node_modules/codemirror/theme/pastel-on-dark.css +52 -0
  354. data/node_modules/codemirror/theme/railscasts.css +34 -0
  355. data/node_modules/codemirror/theme/rubyblue.css +25 -0
  356. data/node_modules/codemirror/theme/seti.css +44 -0
  357. data/node_modules/codemirror/theme/shadowfox.css +52 -0
  358. data/node_modules/codemirror/theme/solarized.css +168 -0
  359. data/node_modules/codemirror/theme/ssms.css +16 -0
  360. data/node_modules/codemirror/theme/the-matrix.css +30 -0
  361. data/node_modules/codemirror/theme/tomorrow-night-bright.css +35 -0
  362. data/node_modules/codemirror/theme/tomorrow-night-eighties.css +38 -0
  363. data/node_modules/codemirror/theme/ttcn.css +64 -0
  364. data/node_modules/codemirror/theme/twilight.css +32 -0
  365. data/node_modules/codemirror/theme/vibrant-ink.css +34 -0
  366. data/node_modules/codemirror/theme/xq-dark.css +53 -0
  367. data/node_modules/codemirror/theme/xq-light.css +43 -0
  368. data/node_modules/codemirror/theme/yeti.css +44 -0
  369. data/node_modules/codemirror/theme/zenburn.css +37 -0
  370. data/node_modules/marked/.editorconfig +16 -0
  371. data/node_modules/marked/.eslintignore +1 -0
  372. data/node_modules/marked/.eslintrc.json +28 -0
  373. data/node_modules/marked/.package 2.json.icloud +0 -0
  374. data/node_modules/marked/.travis.yml +47 -0
  375. data/node_modules/marked/Makefile +15 -0
  376. data/node_modules/marked/Makefile 2 +15 -0
  377. data/node_modules/marked/README 2.md +75 -0
  378. data/node_modules/marked/README.md +75 -0
  379. data/node_modules/marked/bin/marked +199 -0
  380. data/node_modules/marked/bower.json +23 -0
  381. data/node_modules/marked/component.json +10 -0
  382. data/node_modules/marked/index.js +1 -0
  383. data/node_modules/marked/jasmine.json +11 -0
  384. data/node_modules/marked/lib/marked 2.js +1604 -0
  385. data/node_modules/marked/lib/marked.js +1604 -0
  386. data/node_modules/marked/man/marked.1 +91 -0
  387. data/node_modules/marked/man/marked.1.txt +96 -0
  388. data/node_modules/marked/marked.min.js +6 -0
  389. data/node_modules/marked/package.json +95 -0
  390. data/node_modules/simplemde/.eslintrc +23 -0
  391. data/node_modules/simplemde/.npmignore +9 -0
  392. data/node_modules/simplemde/.travis.yml +18 -0
  393. data/node_modules/simplemde/CONTRIBUTING 2.md +10 -0
  394. data/node_modules/simplemde/CONTRIBUTING.md +10 -0
  395. data/node_modules/simplemde/LICENSE +22 -0
  396. data/node_modules/simplemde/README.md +331 -0
  397. data/node_modules/simplemde/bower.json +23 -0
  398. data/node_modules/simplemde/debug/.simplemde 2.css.icloud +0 -0
  399. data/node_modules/simplemde/debug/simplemde.css +676 -0
  400. data/node_modules/simplemde/debug/simplemde.debug.js +17023 -0
  401. data/node_modules/simplemde/debug/simplemde.js +17019 -0
  402. data/node_modules/simplemde/dist/simplemde.min.css +7 -0
  403. data/node_modules/simplemde/dist/simplemde.min.js +15 -0
  404. data/node_modules/simplemde/gulpfile.js +96 -0
  405. data/node_modules/simplemde/package.json +73 -0
  406. data/node_modules/simplemde/src/css/simplemde.css +328 -0
  407. data/node_modules/simplemde/src/js/codemirror/tablist 2.js +44 -0
  408. data/node_modules/simplemde/src/js/codemirror/tablist.js +44 -0
  409. data/node_modules/simplemde/src/js/simplemde.js +2028 -0
  410. data/node_modules/typo-js/README.md +45 -0
  411. data/node_modules/typo-js/dictionaries/en_US/.en_US 2.dic.icloud +0 -0
  412. data/node_modules/typo-js/dictionaries/en_US/README.md +7 -0
  413. data/node_modules/typo-js/dictionaries/en_US/en_US.aff +201 -0
  414. data/node_modules/typo-js/dictionaries/en_US/en_US.dic +62120 -0
  415. data/node_modules/typo-js/package.json +56 -0
  416. data/node_modules/typo-js/typo.js +931 -0
  417. data/package-lock.json +40 -0
  418. data/package.json +7 -0
  419. metadata +557 -0
@@ -0,0 +1,72 @@
1
+ // CodeMirror, copyright (c) by Marijn Haverbeke and others
2
+ // Distributed under an MIT license: https://codemirror.net/LICENSE
3
+
4
+ (function(mod) {
5
+ if (typeof exports == "object" && typeof module == "object") // CommonJS
6
+ mod(require("../../lib/codemirror"));
7
+ else if (typeof define == "function" && define.amd) // AMD
8
+ define(["../../lib/codemirror"], mod);
9
+ else // Plain browser env
10
+ mod(CodeMirror);
11
+ })(function(CodeMirror) {
12
+ "use strict";
13
+ var WRAP_CLASS = "CodeMirror-activeline";
14
+ var BACK_CLASS = "CodeMirror-activeline-background";
15
+ var GUTT_CLASS = "CodeMirror-activeline-gutter";
16
+
17
+ CodeMirror.defineOption("styleActiveLine", false, function(cm, val, old) {
18
+ var prev = old == CodeMirror.Init ? false : old;
19
+ if (val == prev) return
20
+ if (prev) {
21
+ cm.off("beforeSelectionChange", selectionChange);
22
+ clearActiveLines(cm);
23
+ delete cm.state.activeLines;
24
+ }
25
+ if (val) {
26
+ cm.state.activeLines = [];
27
+ updateActiveLines(cm, cm.listSelections());
28
+ cm.on("beforeSelectionChange", selectionChange);
29
+ }
30
+ });
31
+
32
+ function clearActiveLines(cm) {
33
+ for (var i = 0; i < cm.state.activeLines.length; i++) {
34
+ cm.removeLineClass(cm.state.activeLines[i], "wrap", WRAP_CLASS);
35
+ cm.removeLineClass(cm.state.activeLines[i], "background", BACK_CLASS);
36
+ cm.removeLineClass(cm.state.activeLines[i], "gutter", GUTT_CLASS);
37
+ }
38
+ }
39
+
40
+ function sameArray(a, b) {
41
+ if (a.length != b.length) return false;
42
+ for (var i = 0; i < a.length; i++)
43
+ if (a[i] != b[i]) return false;
44
+ return true;
45
+ }
46
+
47
+ function updateActiveLines(cm, ranges) {
48
+ var active = [];
49
+ for (var i = 0; i < ranges.length; i++) {
50
+ var range = ranges[i];
51
+ var option = cm.getOption("styleActiveLine");
52
+ if (typeof option == "object" && option.nonEmpty ? range.anchor.line != range.head.line : !range.empty())
53
+ continue
54
+ var line = cm.getLineHandleVisualStart(range.head.line);
55
+ if (active[active.length - 1] != line) active.push(line);
56
+ }
57
+ if (sameArray(cm.state.activeLines, active)) return;
58
+ cm.operation(function() {
59
+ clearActiveLines(cm);
60
+ for (var i = 0; i < active.length; i++) {
61
+ cm.addLineClass(active[i], "wrap", WRAP_CLASS);
62
+ cm.addLineClass(active[i], "background", BACK_CLASS);
63
+ cm.addLineClass(active[i], "gutter", GUTT_CLASS);
64
+ }
65
+ cm.state.activeLines = active;
66
+ });
67
+ }
68
+
69
+ function selectionChange(cm, sel) {
70
+ updateActiveLines(cm, sel.ranges);
71
+ }
72
+ });
@@ -0,0 +1,119 @@
1
+ // CodeMirror, copyright (c) by Marijn Haverbeke and others
2
+ // Distributed under an MIT license: https://codemirror.net/LICENSE
3
+
4
+ // Because sometimes you need to mark the selected *text*.
5
+ //
6
+ // Adds an option 'styleSelectedText' which, when enabled, gives
7
+ // selected text the CSS class given as option value, or
8
+ // "CodeMirror-selectedtext" when the value is not a string.
9
+
10
+ (function(mod) {
11
+ if (typeof exports == "object" && typeof module == "object") // CommonJS
12
+ mod(require("../../lib/codemirror"));
13
+ else if (typeof define == "function" && define.amd) // AMD
14
+ define(["../../lib/codemirror"], mod);
15
+ else // Plain browser env
16
+ mod(CodeMirror);
17
+ })(function(CodeMirror) {
18
+ "use strict";
19
+
20
+ CodeMirror.defineOption("styleSelectedText", false, function(cm, val, old) {
21
+ var prev = old && old != CodeMirror.Init;
22
+ if (val && !prev) {
23
+ cm.state.markedSelection = [];
24
+ cm.state.markedSelectionStyle = typeof val == "string" ? val : "CodeMirror-selectedtext";
25
+ reset(cm);
26
+ cm.on("cursorActivity", onCursorActivity);
27
+ cm.on("change", onChange);
28
+ } else if (!val && prev) {
29
+ cm.off("cursorActivity", onCursorActivity);
30
+ cm.off("change", onChange);
31
+ clear(cm);
32
+ cm.state.markedSelection = cm.state.markedSelectionStyle = null;
33
+ }
34
+ });
35
+
36
+ function onCursorActivity(cm) {
37
+ if (cm.state.markedSelection)
38
+ cm.operation(function() { update(cm); });
39
+ }
40
+
41
+ function onChange(cm) {
42
+ if (cm.state.markedSelection && cm.state.markedSelection.length)
43
+ cm.operation(function() { clear(cm); });
44
+ }
45
+
46
+ var CHUNK_SIZE = 8;
47
+ var Pos = CodeMirror.Pos;
48
+ var cmp = CodeMirror.cmpPos;
49
+
50
+ function coverRange(cm, from, to, addAt) {
51
+ if (cmp(from, to) == 0) return;
52
+ var array = cm.state.markedSelection;
53
+ var cls = cm.state.markedSelectionStyle;
54
+ for (var line = from.line;;) {
55
+ var start = line == from.line ? from : Pos(line, 0);
56
+ var endLine = line + CHUNK_SIZE, atEnd = endLine >= to.line;
57
+ var end = atEnd ? to : Pos(endLine, 0);
58
+ var mark = cm.markText(start, end, {className: cls});
59
+ if (addAt == null) array.push(mark);
60
+ else array.splice(addAt++, 0, mark);
61
+ if (atEnd) break;
62
+ line = endLine;
63
+ }
64
+ }
65
+
66
+ function clear(cm) {
67
+ var array = cm.state.markedSelection;
68
+ for (var i = 0; i < array.length; ++i) array[i].clear();
69
+ array.length = 0;
70
+ }
71
+
72
+ function reset(cm) {
73
+ clear(cm);
74
+ var ranges = cm.listSelections();
75
+ for (var i = 0; i < ranges.length; i++)
76
+ coverRange(cm, ranges[i].from(), ranges[i].to());
77
+ }
78
+
79
+ function update(cm) {
80
+ if (!cm.somethingSelected()) return clear(cm);
81
+ if (cm.listSelections().length > 1) return reset(cm);
82
+
83
+ var from = cm.getCursor("start"), to = cm.getCursor("end");
84
+
85
+ var array = cm.state.markedSelection;
86
+ if (!array.length) return coverRange(cm, from, to);
87
+
88
+ var coverStart = array[0].find(), coverEnd = array[array.length - 1].find();
89
+ if (!coverStart || !coverEnd || to.line - from.line <= CHUNK_SIZE ||
90
+ cmp(from, coverEnd.to) >= 0 || cmp(to, coverStart.from) <= 0)
91
+ return reset(cm);
92
+
93
+ while (cmp(from, coverStart.from) > 0) {
94
+ array.shift().clear();
95
+ coverStart = array[0].find();
96
+ }
97
+ if (cmp(from, coverStart.from) < 0) {
98
+ if (coverStart.to.line - from.line < CHUNK_SIZE) {
99
+ array.shift().clear();
100
+ coverRange(cm, from, coverStart.to, 0);
101
+ } else {
102
+ coverRange(cm, from, coverStart.from, 0);
103
+ }
104
+ }
105
+
106
+ while (cmp(to, coverEnd.to) < 0) {
107
+ array.pop().clear();
108
+ coverEnd = array[array.length - 1].find();
109
+ }
110
+ if (cmp(to, coverEnd.to) > 0) {
111
+ if (to.line - coverEnd.from.line < CHUNK_SIZE) {
112
+ array.pop().clear();
113
+ coverRange(cm, coverEnd.from, to);
114
+ } else {
115
+ coverRange(cm, coverEnd.to, to);
116
+ }
117
+ }
118
+ }
119
+ });
@@ -0,0 +1,98 @@
1
+ // CodeMirror, copyright (c) by Marijn Haverbeke and others
2
+ // Distributed under an MIT license: https://codemirror.net/LICENSE
3
+
4
+ (function(mod) {
5
+ if (typeof exports == "object" && typeof module == "object") // CommonJS
6
+ mod(require("../../lib/codemirror"));
7
+ else if (typeof define == "function" && define.amd) // AMD
8
+ define(["../../lib/codemirror"], mod);
9
+ else // Plain browser env
10
+ mod(CodeMirror);
11
+ })(function(CodeMirror) {
12
+ "use strict";
13
+
14
+ CodeMirror.defineOption("selectionPointer", false, function(cm, val) {
15
+ var data = cm.state.selectionPointer;
16
+ if (data) {
17
+ CodeMirror.off(cm.getWrapperElement(), "mousemove", data.mousemove);
18
+ CodeMirror.off(cm.getWrapperElement(), "mouseout", data.mouseout);
19
+ CodeMirror.off(window, "scroll", data.windowScroll);
20
+ cm.off("cursorActivity", reset);
21
+ cm.off("scroll", reset);
22
+ cm.state.selectionPointer = null;
23
+ cm.display.lineDiv.style.cursor = "";
24
+ }
25
+ if (val) {
26
+ data = cm.state.selectionPointer = {
27
+ value: typeof val == "string" ? val : "default",
28
+ mousemove: function(event) { mousemove(cm, event); },
29
+ mouseout: function(event) { mouseout(cm, event); },
30
+ windowScroll: function() { reset(cm); },
31
+ rects: null,
32
+ mouseX: null, mouseY: null,
33
+ willUpdate: false
34
+ };
35
+ CodeMirror.on(cm.getWrapperElement(), "mousemove", data.mousemove);
36
+ CodeMirror.on(cm.getWrapperElement(), "mouseout", data.mouseout);
37
+ CodeMirror.on(window, "scroll", data.windowScroll);
38
+ cm.on("cursorActivity", reset);
39
+ cm.on("scroll", reset);
40
+ }
41
+ });
42
+
43
+ function mousemove(cm, event) {
44
+ var data = cm.state.selectionPointer;
45
+ if (event.buttons == null ? event.which : event.buttons) {
46
+ data.mouseX = data.mouseY = null;
47
+ } else {
48
+ data.mouseX = event.clientX;
49
+ data.mouseY = event.clientY;
50
+ }
51
+ scheduleUpdate(cm);
52
+ }
53
+
54
+ function mouseout(cm, event) {
55
+ if (!cm.getWrapperElement().contains(event.relatedTarget)) {
56
+ var data = cm.state.selectionPointer;
57
+ data.mouseX = data.mouseY = null;
58
+ scheduleUpdate(cm);
59
+ }
60
+ }
61
+
62
+ function reset(cm) {
63
+ cm.state.selectionPointer.rects = null;
64
+ scheduleUpdate(cm);
65
+ }
66
+
67
+ function scheduleUpdate(cm) {
68
+ if (!cm.state.selectionPointer.willUpdate) {
69
+ cm.state.selectionPointer.willUpdate = true;
70
+ setTimeout(function() {
71
+ update(cm);
72
+ cm.state.selectionPointer.willUpdate = false;
73
+ }, 50);
74
+ }
75
+ }
76
+
77
+ function update(cm) {
78
+ var data = cm.state.selectionPointer;
79
+ if (!data) return;
80
+ if (data.rects == null && data.mouseX != null) {
81
+ data.rects = [];
82
+ if (cm.somethingSelected()) {
83
+ for (var sel = cm.display.selectionDiv.firstChild; sel; sel = sel.nextSibling)
84
+ data.rects.push(sel.getBoundingClientRect());
85
+ }
86
+ }
87
+ var inside = false;
88
+ if (data.mouseX != null) for (var i = 0; i < data.rects.length; i++) {
89
+ var rect = data.rects[i];
90
+ if (rect.left <= data.mouseX && rect.right >= data.mouseX &&
91
+ rect.top <= data.mouseY && rect.bottom >= data.mouseY)
92
+ inside = true;
93
+ }
94
+ var cursor = inside ? data.value : "";
95
+ if (cm.display.lineDiv.style.cursor != cursor)
96
+ cm.display.lineDiv.style.cursor = cursor;
97
+ }
98
+ });
@@ -0,0 +1,87 @@
1
+ .CodeMirror-Tern-completion {
2
+ padding-left: 22px;
3
+ position: relative;
4
+ line-height: 1.5;
5
+ }
6
+ .CodeMirror-Tern-completion:before {
7
+ position: absolute;
8
+ left: 2px;
9
+ bottom: 2px;
10
+ border-radius: 50%;
11
+ font-size: 12px;
12
+ font-weight: bold;
13
+ height: 15px;
14
+ width: 15px;
15
+ line-height: 16px;
16
+ text-align: center;
17
+ color: white;
18
+ -moz-box-sizing: border-box;
19
+ box-sizing: border-box;
20
+ }
21
+ .CodeMirror-Tern-completion-unknown:before {
22
+ content: "?";
23
+ background: #4bb;
24
+ }
25
+ .CodeMirror-Tern-completion-object:before {
26
+ content: "O";
27
+ background: #77c;
28
+ }
29
+ .CodeMirror-Tern-completion-fn:before {
30
+ content: "F";
31
+ background: #7c7;
32
+ }
33
+ .CodeMirror-Tern-completion-array:before {
34
+ content: "A";
35
+ background: #c66;
36
+ }
37
+ .CodeMirror-Tern-completion-number:before {
38
+ content: "1";
39
+ background: #999;
40
+ }
41
+ .CodeMirror-Tern-completion-string:before {
42
+ content: "S";
43
+ background: #999;
44
+ }
45
+ .CodeMirror-Tern-completion-bool:before {
46
+ content: "B";
47
+ background: #999;
48
+ }
49
+
50
+ .CodeMirror-Tern-completion-guess {
51
+ color: #999;
52
+ }
53
+
54
+ .CodeMirror-Tern-tooltip {
55
+ border: 1px solid silver;
56
+ border-radius: 3px;
57
+ color: #444;
58
+ padding: 2px 5px;
59
+ font-size: 90%;
60
+ font-family: monospace;
61
+ background-color: white;
62
+ white-space: pre-wrap;
63
+
64
+ max-width: 40em;
65
+ position: absolute;
66
+ z-index: 10;
67
+ -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
68
+ -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
69
+ box-shadow: 2px 3px 5px rgba(0,0,0,.2);
70
+
71
+ transition: opacity 1s;
72
+ -moz-transition: opacity 1s;
73
+ -webkit-transition: opacity 1s;
74
+ -o-transition: opacity 1s;
75
+ -ms-transition: opacity 1s;
76
+ }
77
+
78
+ .CodeMirror-Tern-hint-doc {
79
+ max-width: 25em;
80
+ margin-top: -3px;
81
+ }
82
+
83
+ .CodeMirror-Tern-fname { color: black; }
84
+ .CodeMirror-Tern-farg { color: #70a; }
85
+ .CodeMirror-Tern-farg-current { text-decoration: underline; }
86
+ .CodeMirror-Tern-type { color: #07c; }
87
+ .CodeMirror-Tern-fhint-guess { opacity: .7; }
@@ -0,0 +1,718 @@
1
+ // CodeMirror, copyright (c) by Marijn Haverbeke and others
2
+ // Distributed under an MIT license: https://codemirror.net/LICENSE
3
+
4
+ // Glue code between CodeMirror and Tern.
5
+ //
6
+ // Create a CodeMirror.TernServer to wrap an actual Tern server,
7
+ // register open documents (CodeMirror.Doc instances) with it, and
8
+ // call its methods to activate the assisting functions that Tern
9
+ // provides.
10
+ //
11
+ // Options supported (all optional):
12
+ // * defs: An array of JSON definition data structures.
13
+ // * plugins: An object mapping plugin names to configuration
14
+ // options.
15
+ // * getFile: A function(name, c) that can be used to access files in
16
+ // the project that haven't been loaded yet. Simply do c(null) to
17
+ // indicate that a file is not available.
18
+ // * fileFilter: A function(value, docName, doc) that will be applied
19
+ // to documents before passing them on to Tern.
20
+ // * switchToDoc: A function(name, doc) that should, when providing a
21
+ // multi-file view, switch the view or focus to the named file.
22
+ // * showError: A function(editor, message) that can be used to
23
+ // override the way errors are displayed.
24
+ // * completionTip: Customize the content in tooltips for completions.
25
+ // Is passed a single argument—the completion's data as returned by
26
+ // Tern—and may return a string, DOM node, or null to indicate that
27
+ // no tip should be shown. By default the docstring is shown.
28
+ // * typeTip: Like completionTip, but for the tooltips shown for type
29
+ // queries.
30
+ // * responseFilter: A function(doc, query, request, error, data) that
31
+ // will be applied to the Tern responses before treating them
32
+ //
33
+ //
34
+ // It is possible to run the Tern server in a web worker by specifying
35
+ // these additional options:
36
+ // * useWorker: Set to true to enable web worker mode. You'll probably
37
+ // want to feature detect the actual value you use here, for example
38
+ // !!window.Worker.
39
+ // * workerScript: The main script of the worker. Point this to
40
+ // wherever you are hosting worker.js from this directory.
41
+ // * workerDeps: An array of paths pointing (relative to workerScript)
42
+ // to the Acorn and Tern libraries and any Tern plugins you want to
43
+ // load. Or, if you minified those into a single script and included
44
+ // them in the workerScript, simply leave this undefined.
45
+
46
+ (function(mod) {
47
+ if (typeof exports == "object" && typeof module == "object") // CommonJS
48
+ mod(require("../../lib/codemirror"));
49
+ else if (typeof define == "function" && define.amd) // AMD
50
+ define(["../../lib/codemirror"], mod);
51
+ else // Plain browser env
52
+ mod(CodeMirror);
53
+ })(function(CodeMirror) {
54
+ "use strict";
55
+ // declare global: tern
56
+
57
+ CodeMirror.TernServer = function(options) {
58
+ var self = this;
59
+ this.options = options || {};
60
+ var plugins = this.options.plugins || (this.options.plugins = {});
61
+ if (!plugins.doc_comment) plugins.doc_comment = true;
62
+ this.docs = Object.create(null);
63
+ if (this.options.useWorker) {
64
+ this.server = new WorkerServer(this);
65
+ } else {
66
+ this.server = new tern.Server({
67
+ getFile: function(name, c) { return getFile(self, name, c); },
68
+ async: true,
69
+ defs: this.options.defs || [],
70
+ plugins: plugins
71
+ });
72
+ }
73
+ this.trackChange = function(doc, change) { trackChange(self, doc, change); };
74
+
75
+ this.cachedArgHints = null;
76
+ this.activeArgHints = null;
77
+ this.jumpStack = [];
78
+
79
+ this.getHint = function(cm, c) { return hint(self, cm, c); };
80
+ this.getHint.async = true;
81
+ };
82
+
83
+ CodeMirror.TernServer.prototype = {
84
+ addDoc: function(name, doc) {
85
+ var data = {doc: doc, name: name, changed: null};
86
+ this.server.addFile(name, docValue(this, data));
87
+ CodeMirror.on(doc, "change", this.trackChange);
88
+ return this.docs[name] = data;
89
+ },
90
+
91
+ delDoc: function(id) {
92
+ var found = resolveDoc(this, id);
93
+ if (!found) return;
94
+ CodeMirror.off(found.doc, "change", this.trackChange);
95
+ delete this.docs[found.name];
96
+ this.server.delFile(found.name);
97
+ },
98
+
99
+ hideDoc: function(id) {
100
+ closeArgHints(this);
101
+ var found = resolveDoc(this, id);
102
+ if (found && found.changed) sendDoc(this, found);
103
+ },
104
+
105
+ complete: function(cm) {
106
+ cm.showHint({hint: this.getHint});
107
+ },
108
+
109
+ showType: function(cm, pos, c) { showContextInfo(this, cm, pos, "type", c); },
110
+
111
+ showDocs: function(cm, pos, c) { showContextInfo(this, cm, pos, "documentation", c); },
112
+
113
+ updateArgHints: function(cm) { updateArgHints(this, cm); },
114
+
115
+ jumpToDef: function(cm) { jumpToDef(this, cm); },
116
+
117
+ jumpBack: function(cm) { jumpBack(this, cm); },
118
+
119
+ rename: function(cm) { rename(this, cm); },
120
+
121
+ selectName: function(cm) { selectName(this, cm); },
122
+
123
+ request: function (cm, query, c, pos) {
124
+ var self = this;
125
+ var doc = findDoc(this, cm.getDoc());
126
+ var request = buildRequest(this, doc, query, pos);
127
+ var extraOptions = request.query && this.options.queryOptions && this.options.queryOptions[request.query.type]
128
+ if (extraOptions) for (var prop in extraOptions) request.query[prop] = extraOptions[prop];
129
+
130
+ this.server.request(request, function (error, data) {
131
+ if (!error && self.options.responseFilter)
132
+ data = self.options.responseFilter(doc, query, request, error, data);
133
+ c(error, data);
134
+ });
135
+ },
136
+
137
+ destroy: function () {
138
+ closeArgHints(this)
139
+ if (this.worker) {
140
+ this.worker.terminate();
141
+ this.worker = null;
142
+ }
143
+ }
144
+ };
145
+
146
+ var Pos = CodeMirror.Pos;
147
+ var cls = "CodeMirror-Tern-";
148
+ var bigDoc = 250;
149
+
150
+ function getFile(ts, name, c) {
151
+ var buf = ts.docs[name];
152
+ if (buf)
153
+ c(docValue(ts, buf));
154
+ else if (ts.options.getFile)
155
+ ts.options.getFile(name, c);
156
+ else
157
+ c(null);
158
+ }
159
+
160
+ function findDoc(ts, doc, name) {
161
+ for (var n in ts.docs) {
162
+ var cur = ts.docs[n];
163
+ if (cur.doc == doc) return cur;
164
+ }
165
+ if (!name) for (var i = 0;; ++i) {
166
+ n = "[doc" + (i || "") + "]";
167
+ if (!ts.docs[n]) { name = n; break; }
168
+ }
169
+ return ts.addDoc(name, doc);
170
+ }
171
+
172
+ function resolveDoc(ts, id) {
173
+ if (typeof id == "string") return ts.docs[id];
174
+ if (id instanceof CodeMirror) id = id.getDoc();
175
+ if (id instanceof CodeMirror.Doc) return findDoc(ts, id);
176
+ }
177
+
178
+ function trackChange(ts, doc, change) {
179
+ var data = findDoc(ts, doc);
180
+
181
+ var argHints = ts.cachedArgHints;
182
+ if (argHints && argHints.doc == doc && cmpPos(argHints.start, change.to) >= 0)
183
+ ts.cachedArgHints = null;
184
+
185
+ var changed = data.changed;
186
+ if (changed == null)
187
+ data.changed = changed = {from: change.from.line, to: change.from.line};
188
+ var end = change.from.line + (change.text.length - 1);
189
+ if (change.from.line < changed.to) changed.to = changed.to - (change.to.line - end);
190
+ if (end >= changed.to) changed.to = end + 1;
191
+ if (changed.from > change.from.line) changed.from = change.from.line;
192
+
193
+ if (doc.lineCount() > bigDoc && change.to - changed.from > 100) setTimeout(function() {
194
+ if (data.changed && data.changed.to - data.changed.from > 100) sendDoc(ts, data);
195
+ }, 200);
196
+ }
197
+
198
+ function sendDoc(ts, doc) {
199
+ ts.server.request({files: [{type: "full", name: doc.name, text: docValue(ts, doc)}]}, function(error) {
200
+ if (error) window.console.error(error);
201
+ else doc.changed = null;
202
+ });
203
+ }
204
+
205
+ // Completion
206
+
207
+ function hint(ts, cm, c) {
208
+ ts.request(cm, {type: "completions", types: true, docs: true, urls: true}, function(error, data) {
209
+ if (error) return showError(ts, cm, error);
210
+ var completions = [], after = "";
211
+ var from = data.start, to = data.end;
212
+ if (cm.getRange(Pos(from.line, from.ch - 2), from) == "[\"" &&
213
+ cm.getRange(to, Pos(to.line, to.ch + 2)) != "\"]")
214
+ after = "\"]";
215
+
216
+ for (var i = 0; i < data.completions.length; ++i) {
217
+ var completion = data.completions[i], className = typeToIcon(completion.type);
218
+ if (data.guess) className += " " + cls + "guess";
219
+ completions.push({text: completion.name + after,
220
+ displayText: completion.displayName || completion.name,
221
+ className: className,
222
+ data: completion});
223
+ }
224
+
225
+ var obj = {from: from, to: to, list: completions};
226
+ var tooltip = null;
227
+ CodeMirror.on(obj, "close", function() { remove(tooltip); });
228
+ CodeMirror.on(obj, "update", function() { remove(tooltip); });
229
+ CodeMirror.on(obj, "select", function(cur, node) {
230
+ remove(tooltip);
231
+ var content = ts.options.completionTip ? ts.options.completionTip(cur.data) : cur.data.doc;
232
+ if (content) {
233
+ tooltip = makeTooltip(node.parentNode.getBoundingClientRect().right + window.pageXOffset,
234
+ node.getBoundingClientRect().top + window.pageYOffset, content);
235
+ tooltip.className += " " + cls + "hint-doc";
236
+ }
237
+ });
238
+ c(obj);
239
+ });
240
+ }
241
+
242
+ function typeToIcon(type) {
243
+ var suffix;
244
+ if (type == "?") suffix = "unknown";
245
+ else if (type == "number" || type == "string" || type == "bool") suffix = type;
246
+ else if (/^fn\(/.test(type)) suffix = "fn";
247
+ else if (/^\[/.test(type)) suffix = "array";
248
+ else suffix = "object";
249
+ return cls + "completion " + cls + "completion-" + suffix;
250
+ }
251
+
252
+ // Type queries
253
+
254
+ function showContextInfo(ts, cm, pos, queryName, c) {
255
+ ts.request(cm, queryName, function(error, data) {
256
+ if (error) return showError(ts, cm, error);
257
+ if (ts.options.typeTip) {
258
+ var tip = ts.options.typeTip(data);
259
+ } else {
260
+ var tip = elt("span", null, elt("strong", null, data.type || "not found"));
261
+ if (data.doc)
262
+ tip.appendChild(document.createTextNode(" — " + data.doc));
263
+ if (data.url) {
264
+ tip.appendChild(document.createTextNode(" "));
265
+ var child = tip.appendChild(elt("a", null, "[docs]"));
266
+ child.href = data.url;
267
+ child.target = "_blank";
268
+ }
269
+ }
270
+ tempTooltip(cm, tip, ts);
271
+ if (c) c();
272
+ }, pos);
273
+ }
274
+
275
+ // Maintaining argument hints
276
+
277
+ function updateArgHints(ts, cm) {
278
+ closeArgHints(ts);
279
+
280
+ if (cm.somethingSelected()) return;
281
+ var state = cm.getTokenAt(cm.getCursor()).state;
282
+ var inner = CodeMirror.innerMode(cm.getMode(), state);
283
+ if (inner.mode.name != "javascript") return;
284
+ var lex = inner.state.lexical;
285
+ if (lex.info != "call") return;
286
+
287
+ var ch, argPos = lex.pos || 0, tabSize = cm.getOption("tabSize");
288
+ for (var line = cm.getCursor().line, e = Math.max(0, line - 9), found = false; line >= e; --line) {
289
+ var str = cm.getLine(line), extra = 0;
290
+ for (var pos = 0;;) {
291
+ var tab = str.indexOf("\t", pos);
292
+ if (tab == -1) break;
293
+ extra += tabSize - (tab + extra) % tabSize - 1;
294
+ pos = tab + 1;
295
+ }
296
+ ch = lex.column - extra;
297
+ if (str.charAt(ch) == "(") {found = true; break;}
298
+ }
299
+ if (!found) return;
300
+
301
+ var start = Pos(line, ch);
302
+ var cache = ts.cachedArgHints;
303
+ if (cache && cache.doc == cm.getDoc() && cmpPos(start, cache.start) == 0)
304
+ return showArgHints(ts, cm, argPos);
305
+
306
+ ts.request(cm, {type: "type", preferFunction: true, end: start}, function(error, data) {
307
+ if (error || !data.type || !(/^fn\(/).test(data.type)) return;
308
+ ts.cachedArgHints = {
309
+ start: start,
310
+ type: parseFnType(data.type),
311
+ name: data.exprName || data.name || "fn",
312
+ guess: data.guess,
313
+ doc: cm.getDoc()
314
+ };
315
+ showArgHints(ts, cm, argPos);
316
+ });
317
+ }
318
+
319
+ function showArgHints(ts, cm, pos) {
320
+ closeArgHints(ts);
321
+
322
+ var cache = ts.cachedArgHints, tp = cache.type;
323
+ var tip = elt("span", cache.guess ? cls + "fhint-guess" : null,
324
+ elt("span", cls + "fname", cache.name), "(");
325
+ for (var i = 0; i < tp.args.length; ++i) {
326
+ if (i) tip.appendChild(document.createTextNode(", "));
327
+ var arg = tp.args[i];
328
+ tip.appendChild(elt("span", cls + "farg" + (i == pos ? " " + cls + "farg-current" : ""), arg.name || "?"));
329
+ if (arg.type != "?") {
330
+ tip.appendChild(document.createTextNode(":\u00a0"));
331
+ tip.appendChild(elt("span", cls + "type", arg.type));
332
+ }
333
+ }
334
+ tip.appendChild(document.createTextNode(tp.rettype ? ") ->\u00a0" : ")"));
335
+ if (tp.rettype) tip.appendChild(elt("span", cls + "type", tp.rettype));
336
+ var place = cm.cursorCoords(null, "page");
337
+ var tooltip = ts.activeArgHints = makeTooltip(place.right + 1, place.bottom, tip)
338
+ setTimeout(function() {
339
+ tooltip.clear = onEditorActivity(cm, function() {
340
+ if (ts.activeArgHints == tooltip) closeArgHints(ts) })
341
+ }, 20)
342
+ }
343
+
344
+ function parseFnType(text) {
345
+ var args = [], pos = 3;
346
+
347
+ function skipMatching(upto) {
348
+ var depth = 0, start = pos;
349
+ for (;;) {
350
+ var next = text.charAt(pos);
351
+ if (upto.test(next) && !depth) return text.slice(start, pos);
352
+ if (/[{\[\(]/.test(next)) ++depth;
353
+ else if (/[}\]\)]/.test(next)) --depth;
354
+ ++pos;
355
+ }
356
+ }
357
+
358
+ // Parse arguments
359
+ if (text.charAt(pos) != ")") for (;;) {
360
+ var name = text.slice(pos).match(/^([^, \(\[\{]+): /);
361
+ if (name) {
362
+ pos += name[0].length;
363
+ name = name[1];
364
+ }
365
+ args.push({name: name, type: skipMatching(/[\),]/)});
366
+ if (text.charAt(pos) == ")") break;
367
+ pos += 2;
368
+ }
369
+
370
+ var rettype = text.slice(pos).match(/^\) -> (.*)$/);
371
+
372
+ return {args: args, rettype: rettype && rettype[1]};
373
+ }
374
+
375
+ // Moving to the definition of something
376
+
377
+ function jumpToDef(ts, cm) {
378
+ function inner(varName) {
379
+ var req = {type: "definition", variable: varName || null};
380
+ var doc = findDoc(ts, cm.getDoc());
381
+ ts.server.request(buildRequest(ts, doc, req), function(error, data) {
382
+ if (error) return showError(ts, cm, error);
383
+ if (!data.file && data.url) { window.open(data.url); return; }
384
+
385
+ if (data.file) {
386
+ var localDoc = ts.docs[data.file], found;
387
+ if (localDoc && (found = findContext(localDoc.doc, data))) {
388
+ ts.jumpStack.push({file: doc.name,
389
+ start: cm.getCursor("from"),
390
+ end: cm.getCursor("to")});
391
+ moveTo(ts, doc, localDoc, found.start, found.end);
392
+ return;
393
+ }
394
+ }
395
+ showError(ts, cm, "Could not find a definition.");
396
+ });
397
+ }
398
+
399
+ if (!atInterestingExpression(cm))
400
+ dialog(cm, "Jump to variable", function(name) { if (name) inner(name); });
401
+ else
402
+ inner();
403
+ }
404
+
405
+ function jumpBack(ts, cm) {
406
+ var pos = ts.jumpStack.pop(), doc = pos && ts.docs[pos.file];
407
+ if (!doc) return;
408
+ moveTo(ts, findDoc(ts, cm.getDoc()), doc, pos.start, pos.end);
409
+ }
410
+
411
+ function moveTo(ts, curDoc, doc, start, end) {
412
+ doc.doc.setSelection(start, end);
413
+ if (curDoc != doc && ts.options.switchToDoc) {
414
+ closeArgHints(ts);
415
+ ts.options.switchToDoc(doc.name, doc.doc);
416
+ }
417
+ }
418
+
419
+ // The {line,ch} representation of positions makes this rather awkward.
420
+ function findContext(doc, data) {
421
+ var before = data.context.slice(0, data.contextOffset).split("\n");
422
+ var startLine = data.start.line - (before.length - 1);
423
+ var start = Pos(startLine, (before.length == 1 ? data.start.ch : doc.getLine(startLine).length) - before[0].length);
424
+
425
+ var text = doc.getLine(startLine).slice(start.ch);
426
+ for (var cur = startLine + 1; cur < doc.lineCount() && text.length < data.context.length; ++cur)
427
+ text += "\n" + doc.getLine(cur);
428
+ if (text.slice(0, data.context.length) == data.context) return data;
429
+
430
+ var cursor = doc.getSearchCursor(data.context, 0, false);
431
+ var nearest, nearestDist = Infinity;
432
+ while (cursor.findNext()) {
433
+ var from = cursor.from(), dist = Math.abs(from.line - start.line) * 10000;
434
+ if (!dist) dist = Math.abs(from.ch - start.ch);
435
+ if (dist < nearestDist) { nearest = from; nearestDist = dist; }
436
+ }
437
+ if (!nearest) return null;
438
+
439
+ if (before.length == 1)
440
+ nearest.ch += before[0].length;
441
+ else
442
+ nearest = Pos(nearest.line + (before.length - 1), before[before.length - 1].length);
443
+ if (data.start.line == data.end.line)
444
+ var end = Pos(nearest.line, nearest.ch + (data.end.ch - data.start.ch));
445
+ else
446
+ var end = Pos(nearest.line + (data.end.line - data.start.line), data.end.ch);
447
+ return {start: nearest, end: end};
448
+ }
449
+
450
+ function atInterestingExpression(cm) {
451
+ var pos = cm.getCursor("end"), tok = cm.getTokenAt(pos);
452
+ if (tok.start < pos.ch && tok.type == "comment") return false;
453
+ return /[\w)\]]/.test(cm.getLine(pos.line).slice(Math.max(pos.ch - 1, 0), pos.ch + 1));
454
+ }
455
+
456
+ // Variable renaming
457
+
458
+ function rename(ts, cm) {
459
+ var token = cm.getTokenAt(cm.getCursor());
460
+ if (!/\w/.test(token.string)) return showError(ts, cm, "Not at a variable");
461
+ dialog(cm, "New name for " + token.string, function(newName) {
462
+ ts.request(cm, {type: "rename", newName: newName, fullDocs: true}, function(error, data) {
463
+ if (error) return showError(ts, cm, error);
464
+ applyChanges(ts, data.changes);
465
+ });
466
+ });
467
+ }
468
+
469
+ function selectName(ts, cm) {
470
+ var name = findDoc(ts, cm.doc).name;
471
+ ts.request(cm, {type: "refs"}, function(error, data) {
472
+ if (error) return showError(ts, cm, error);
473
+ var ranges = [], cur = 0;
474
+ var curPos = cm.getCursor();
475
+ for (var i = 0; i < data.refs.length; i++) {
476
+ var ref = data.refs[i];
477
+ if (ref.file == name) {
478
+ ranges.push({anchor: ref.start, head: ref.end});
479
+ if (cmpPos(curPos, ref.start) >= 0 && cmpPos(curPos, ref.end) <= 0)
480
+ cur = ranges.length - 1;
481
+ }
482
+ }
483
+ cm.setSelections(ranges, cur);
484
+ });
485
+ }
486
+
487
+ var nextChangeOrig = 0;
488
+ function applyChanges(ts, changes) {
489
+ var perFile = Object.create(null);
490
+ for (var i = 0; i < changes.length; ++i) {
491
+ var ch = changes[i];
492
+ (perFile[ch.file] || (perFile[ch.file] = [])).push(ch);
493
+ }
494
+ for (var file in perFile) {
495
+ var known = ts.docs[file], chs = perFile[file];;
496
+ if (!known) continue;
497
+ chs.sort(function(a, b) { return cmpPos(b.start, a.start); });
498
+ var origin = "*rename" + (++nextChangeOrig);
499
+ for (var i = 0; i < chs.length; ++i) {
500
+ var ch = chs[i];
501
+ known.doc.replaceRange(ch.text, ch.start, ch.end, origin);
502
+ }
503
+ }
504
+ }
505
+
506
+ // Generic request-building helper
507
+
508
+ function buildRequest(ts, doc, query, pos) {
509
+ var files = [], offsetLines = 0, allowFragments = !query.fullDocs;
510
+ if (!allowFragments) delete query.fullDocs;
511
+ if (typeof query == "string") query = {type: query};
512
+ query.lineCharPositions = true;
513
+ if (query.end == null) {
514
+ query.end = pos || doc.doc.getCursor("end");
515
+ if (doc.doc.somethingSelected())
516
+ query.start = doc.doc.getCursor("start");
517
+ }
518
+ var startPos = query.start || query.end;
519
+
520
+ if (doc.changed) {
521
+ if (doc.doc.lineCount() > bigDoc && allowFragments !== false &&
522
+ doc.changed.to - doc.changed.from < 100 &&
523
+ doc.changed.from <= startPos.line && doc.changed.to > query.end.line) {
524
+ files.push(getFragmentAround(doc, startPos, query.end));
525
+ query.file = "#0";
526
+ var offsetLines = files[0].offsetLines;
527
+ if (query.start != null) query.start = Pos(query.start.line - -offsetLines, query.start.ch);
528
+ query.end = Pos(query.end.line - offsetLines, query.end.ch);
529
+ } else {
530
+ files.push({type: "full",
531
+ name: doc.name,
532
+ text: docValue(ts, doc)});
533
+ query.file = doc.name;
534
+ doc.changed = null;
535
+ }
536
+ } else {
537
+ query.file = doc.name;
538
+ }
539
+ for (var name in ts.docs) {
540
+ var cur = ts.docs[name];
541
+ if (cur.changed && cur != doc) {
542
+ files.push({type: "full", name: cur.name, text: docValue(ts, cur)});
543
+ cur.changed = null;
544
+ }
545
+ }
546
+
547
+ return {query: query, files: files};
548
+ }
549
+
550
+ function getFragmentAround(data, start, end) {
551
+ var doc = data.doc;
552
+ var minIndent = null, minLine = null, endLine, tabSize = 4;
553
+ for (var p = start.line - 1, min = Math.max(0, p - 50); p >= min; --p) {
554
+ var line = doc.getLine(p), fn = line.search(/\bfunction\b/);
555
+ if (fn < 0) continue;
556
+ var indent = CodeMirror.countColumn(line, null, tabSize);
557
+ if (minIndent != null && minIndent <= indent) continue;
558
+ minIndent = indent;
559
+ minLine = p;
560
+ }
561
+ if (minLine == null) minLine = min;
562
+ var max = Math.min(doc.lastLine(), end.line + 20);
563
+ if (minIndent == null || minIndent == CodeMirror.countColumn(doc.getLine(start.line), null, tabSize))
564
+ endLine = max;
565
+ else for (endLine = end.line + 1; endLine < max; ++endLine) {
566
+ var indent = CodeMirror.countColumn(doc.getLine(endLine), null, tabSize);
567
+ if (indent <= minIndent) break;
568
+ }
569
+ var from = Pos(minLine, 0);
570
+
571
+ return {type: "part",
572
+ name: data.name,
573
+ offsetLines: from.line,
574
+ text: doc.getRange(from, Pos(endLine, end.line == endLine ? null : 0))};
575
+ }
576
+
577
+ // Generic utilities
578
+
579
+ var cmpPos = CodeMirror.cmpPos;
580
+
581
+ function elt(tagname, cls /*, ... elts*/) {
582
+ var e = document.createElement(tagname);
583
+ if (cls) e.className = cls;
584
+ for (var i = 2; i < arguments.length; ++i) {
585
+ var elt = arguments[i];
586
+ if (typeof elt == "string") elt = document.createTextNode(elt);
587
+ e.appendChild(elt);
588
+ }
589
+ return e;
590
+ }
591
+
592
+ function dialog(cm, text, f) {
593
+ if (cm.openDialog)
594
+ cm.openDialog(text + ": <input type=text>", f);
595
+ else
596
+ f(prompt(text, ""));
597
+ }
598
+
599
+ // Tooltips
600
+
601
+ function tempTooltip(cm, content, ts) {
602
+ if (cm.state.ternTooltip) remove(cm.state.ternTooltip);
603
+ var where = cm.cursorCoords();
604
+ var tip = cm.state.ternTooltip = makeTooltip(where.right + 1, where.bottom, content);
605
+ function maybeClear() {
606
+ old = true;
607
+ if (!mouseOnTip) clear();
608
+ }
609
+ function clear() {
610
+ cm.state.ternTooltip = null;
611
+ if (tip.parentNode) fadeOut(tip)
612
+ clearActivity()
613
+ }
614
+ var mouseOnTip = false, old = false;
615
+ CodeMirror.on(tip, "mousemove", function() { mouseOnTip = true; });
616
+ CodeMirror.on(tip, "mouseout", function(e) {
617
+ var related = e.relatedTarget || e.toElement
618
+ if (!related || !CodeMirror.contains(tip, related)) {
619
+ if (old) clear();
620
+ else mouseOnTip = false;
621
+ }
622
+ });
623
+ setTimeout(maybeClear, ts.options.hintDelay ? ts.options.hintDelay : 1700);
624
+ var clearActivity = onEditorActivity(cm, clear)
625
+ }
626
+
627
+ function onEditorActivity(cm, f) {
628
+ cm.on("cursorActivity", f)
629
+ cm.on("blur", f)
630
+ cm.on("scroll", f)
631
+ cm.on("setDoc", f)
632
+ return function() {
633
+ cm.off("cursorActivity", f)
634
+ cm.off("blur", f)
635
+ cm.off("scroll", f)
636
+ cm.off("setDoc", f)
637
+ }
638
+ }
639
+
640
+ function makeTooltip(x, y, content) {
641
+ var node = elt("div", cls + "tooltip", content);
642
+ node.style.left = x + "px";
643
+ node.style.top = y + "px";
644
+ document.body.appendChild(node);
645
+ return node;
646
+ }
647
+
648
+ function remove(node) {
649
+ var p = node && node.parentNode;
650
+ if (p) p.removeChild(node);
651
+ }
652
+
653
+ function fadeOut(tooltip) {
654
+ tooltip.style.opacity = "0";
655
+ setTimeout(function() { remove(tooltip); }, 1100);
656
+ }
657
+
658
+ function showError(ts, cm, msg) {
659
+ if (ts.options.showError)
660
+ ts.options.showError(cm, msg);
661
+ else
662
+ tempTooltip(cm, String(msg), ts);
663
+ }
664
+
665
+ function closeArgHints(ts) {
666
+ if (ts.activeArgHints) {
667
+ if (ts.activeArgHints.clear) ts.activeArgHints.clear()
668
+ remove(ts.activeArgHints)
669
+ ts.activeArgHints = null
670
+ }
671
+ }
672
+
673
+ function docValue(ts, doc) {
674
+ var val = doc.doc.getValue();
675
+ if (ts.options.fileFilter) val = ts.options.fileFilter(val, doc.name, doc.doc);
676
+ return val;
677
+ }
678
+
679
+ // Worker wrapper
680
+
681
+ function WorkerServer(ts) {
682
+ var worker = ts.worker = new Worker(ts.options.workerScript);
683
+ worker.postMessage({type: "init",
684
+ defs: ts.options.defs,
685
+ plugins: ts.options.plugins,
686
+ scripts: ts.options.workerDeps});
687
+ var msgId = 0, pending = {};
688
+
689
+ function send(data, c) {
690
+ if (c) {
691
+ data.id = ++msgId;
692
+ pending[msgId] = c;
693
+ }
694
+ worker.postMessage(data);
695
+ }
696
+ worker.onmessage = function(e) {
697
+ var data = e.data;
698
+ if (data.type == "getFile") {
699
+ getFile(ts, data.name, function(err, text) {
700
+ send({type: "getFile", err: String(err), text: text, id: data.id});
701
+ });
702
+ } else if (data.type == "debug") {
703
+ window.console.log(data.message);
704
+ } else if (data.id && pending[data.id]) {
705
+ pending[data.id](data.err, data.body);
706
+ delete pending[data.id];
707
+ }
708
+ };
709
+ worker.onerror = function(e) {
710
+ for (var id in pending) pending[id](e);
711
+ pending = {};
712
+ };
713
+
714
+ this.addFile = function(name, text) { send({type: "add", name: name, text: text}); };
715
+ this.delFile = function(name) { send({type: "del", name: name}); };
716
+ this.request = function(body, c) { send({type: "req", body: body}, c); };
717
+ }
718
+ });