gump 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +24 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +71 -0
- data/Rakefile +2 -0
- data/bin/gump +37 -0
- data/gump.gemspec +17 -0
- data/lib/gump.rb +50 -0
- data/lib/version.rb +3 -0
- data/server/assets/css/style.css +6949 -0
- data/server/assets/images/arrow.png +0 -0
- data/server/assets/images/logo.png +0 -0
- data/server/assets/js/bootstrap/dist/css/bootstrap-theme.css +347 -0
- data/server/assets/js/bootstrap/dist/css/bootstrap-theme.css.map +1 -0
- data/server/assets/js/bootstrap/dist/css/bootstrap-theme.min.css +7 -0
- data/server/assets/js/bootstrap/dist/css/bootstrap.css +5785 -0
- data/server/assets/js/bootstrap/dist/css/bootstrap.css.map +1 -0
- data/server/assets/js/bootstrap/dist/css/bootstrap.min.css +7 -0
- data/server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.eot +0 -0
- data/server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.svg +229 -0
- data/server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.woff +0 -0
- data/server/assets/js/bootstrap/dist/js/bootstrap.js +1951 -0
- data/server/assets/js/bootstrap/dist/js/bootstrap.min.js +6 -0
- data/server/assets/js/jquery.codemirror/.gitattributes +8 -0
- data/server/assets/js/jquery.codemirror/.gitignore +6 -0
- data/server/assets/js/jquery.codemirror/.travis.yml +3 -0
- data/server/assets/js/jquery.codemirror/AUTHORS +255 -0
- data/server/assets/js/jquery.codemirror/CONTRIBUTING.md +72 -0
- data/server/assets/js/jquery.codemirror/LICENSE +19 -0
- data/server/assets/js/jquery.codemirror/README.md +11 -0
- data/server/assets/js/jquery.codemirror/addon/comment/comment.js +145 -0
- data/server/assets/js/jquery.codemirror/addon/comment/continuecomment.js +54 -0
- data/server/assets/js/jquery.codemirror/addon/dialog/dialog.css +32 -0
- data/server/assets/js/jquery.codemirror/addon/dialog/dialog.js +121 -0
- data/server/assets/js/jquery.codemirror/addon/display/fullscreen.css +6 -0
- data/server/assets/js/jquery.codemirror/addon/display/fullscreen.js +31 -0
- data/server/assets/js/jquery.codemirror/addon/display/placeholder.js +48 -0
- data/server/assets/js/jquery.codemirror/addon/edit/closebrackets.js +82 -0
- data/server/assets/js/jquery.codemirror/addon/edit/closetag.js +89 -0
- data/server/assets/js/jquery.codemirror/addon/edit/continuelist.js +25 -0
- data/server/assets/js/jquery.codemirror/addon/edit/matchbrackets.js +87 -0
- data/server/assets/js/jquery.codemirror/addon/edit/matchtags.js +56 -0
- data/server/assets/js/jquery.codemirror/addon/edit/trailingspace.js +15 -0
- data/server/assets/js/jquery.codemirror/addon/fold/brace-fold.js +93 -0
- data/server/assets/js/jquery.codemirror/addon/fold/comment-fold.js +40 -0
- data/server/assets/js/jquery.codemirror/addon/fold/foldcode.js +75 -0
- data/server/assets/js/jquery.codemirror/addon/fold/foldgutter.css +21 -0
- data/server/assets/js/jquery.codemirror/addon/fold/foldgutter.js +124 -0
- data/server/assets/js/jquery.codemirror/addon/fold/indent-fold.js +30 -0
- data/server/assets/js/jquery.codemirror/addon/fold/xml-fold.js +167 -0
- data/server/assets/js/jquery.codemirror/addon/hint/anyword-hint.js +34 -0
- data/server/assets/js/jquery.codemirror/addon/hint/css-hint.js +50 -0
- data/server/assets/js/jquery.codemirror/addon/hint/html-hint.js +337 -0
- data/server/assets/js/jquery.codemirror/addon/hint/javascript-hint.js +131 -0
- data/server/assets/js/jquery.codemirror/addon/hint/pig-hint.js +121 -0
- data/server/assets/js/jquery.codemirror/addon/hint/python-hint.js +95 -0
- data/server/assets/js/jquery.codemirror/addon/hint/show-hint.css +38 -0
- data/server/assets/js/jquery.codemirror/addon/hint/show-hint.js +286 -0
- data/server/assets/js/jquery.codemirror/addon/hint/sql-hint.js +105 -0
- data/server/assets/js/jquery.codemirror/addon/hint/xml-hint.js +69 -0
- data/server/assets/js/jquery.codemirror/addon/lint/coffeescript-lint.js +27 -0
- data/server/assets/js/jquery.codemirror/addon/lint/css-lint.js +19 -0
- data/server/assets/js/jquery.codemirror/addon/lint/javascript-lint.js +126 -0
- data/server/assets/js/jquery.codemirror/addon/lint/json-lint.js +17 -0
- data/server/assets/js/jquery.codemirror/addon/lint/lint.css +73 -0
- data/server/assets/js/jquery.codemirror/addon/lint/lint.js +203 -0
- data/server/assets/js/jquery.codemirror/addon/merge/dep/diff_match_patch.js +50 -0
- data/server/assets/js/jquery.codemirror/addon/merge/merge.css +92 -0
- data/server/assets/js/jquery.codemirror/addon/merge/merge.js +474 -0
- data/server/assets/js/jquery.codemirror/addon/mode/loadmode.js +51 -0
- data/server/assets/js/jquery.codemirror/addon/mode/multiplex.js +101 -0
- data/server/assets/js/jquery.codemirror/addon/mode/multiplex_test.js +30 -0
- data/server/assets/js/jquery.codemirror/addon/mode/overlay.js +59 -0
- data/server/assets/js/jquery.codemirror/addon/runmode/colorize.js +29 -0
- data/server/assets/js/jquery.codemirror/addon/runmode/runmode-standalone.js +136 -0
- data/server/assets/js/jquery.codemirror/addon/runmode/runmode.js +56 -0
- data/server/assets/js/jquery.codemirror/addon/runmode/runmode.node.js +103 -0
- data/server/assets/js/jquery.codemirror/addon/scroll/scrollpastend.js +34 -0
- data/server/assets/js/jquery.codemirror/addon/search/match-highlighter.js +91 -0
- data/server/assets/js/jquery.codemirror/addon/search/search.js +133 -0
- data/server/assets/js/jquery.codemirror/addon/search/searchcursor.js +143 -0
- data/server/assets/js/jquery.codemirror/addon/selection/active-line.js +39 -0
- data/server/assets/js/jquery.codemirror/addon/selection/mark-selection.js +108 -0
- data/server/assets/js/jquery.codemirror/addon/tern/tern.css +85 -0
- data/server/assets/js/jquery.codemirror/addon/tern/tern.js +632 -0
- data/server/assets/js/jquery.codemirror/addon/tern/worker.js +41 -0
- data/server/assets/js/jquery.codemirror/addon/wrap/hardwrap.js +99 -0
- data/server/assets/js/jquery.codemirror/bin/authors.sh +6 -0
- data/server/assets/js/jquery.codemirror/bin/compress +92 -0
- data/server/assets/js/jquery.codemirror/bin/lint +16 -0
- data/server/assets/js/jquery.codemirror/bin/source-highlight +61 -0
- data/server/assets/js/jquery.codemirror/bower.json +15 -0
- data/server/assets/js/jquery.codemirror/demo/activeline.html +78 -0
- data/server/assets/js/jquery.codemirror/demo/anywordhint.html +79 -0
- data/server/assets/js/jquery.codemirror/demo/bidi.html +74 -0
- data/server/assets/js/jquery.codemirror/demo/btree.html +86 -0
- data/server/assets/js/jquery.codemirror/demo/buffers.html +109 -0
- data/server/assets/js/jquery.codemirror/demo/changemode.html +59 -0
- data/server/assets/js/jquery.codemirror/demo/closebrackets.html +63 -0
- data/server/assets/js/jquery.codemirror/demo/closetag.html +40 -0
- data/server/assets/js/jquery.codemirror/demo/complete.html +80 -0
- data/server/assets/js/jquery.codemirror/demo/emacs.html +75 -0
- data/server/assets/js/jquery.codemirror/demo/folding.html +75 -0
- data/server/assets/js/jquery.codemirror/demo/fullscreen.html +130 -0
- data/server/assets/js/jquery.codemirror/demo/hardwrap.html +69 -0
- data/server/assets/js/jquery.codemirror/demo/html5complete.html +54 -0
- data/server/assets/js/jquery.codemirror/demo/indentwrap.html +58 -0
- data/server/assets/js/jquery.codemirror/demo/lint.html +171 -0
- data/server/assets/js/jquery.codemirror/demo/loadmode.html +49 -0
- data/server/assets/js/jquery.codemirror/demo/marker.html +52 -0
- data/server/assets/js/jquery.codemirror/demo/markselection.html +45 -0
- data/server/assets/js/jquery.codemirror/demo/matchhighlighter.html +47 -0
- data/server/assets/js/jquery.codemirror/demo/matchtags.html +49 -0
- data/server/assets/js/jquery.codemirror/demo/merge.html +82 -0
- data/server/assets/js/jquery.codemirror/demo/multiplex.html +75 -0
- data/server/assets/js/jquery.codemirror/demo/mustache.html +68 -0
- data/server/assets/js/jquery.codemirror/demo/placeholder.html +45 -0
- data/server/assets/js/jquery.codemirror/demo/preview.html +88 -0
- data/server/assets/js/jquery.codemirror/demo/resize.html +58 -0
- data/server/assets/js/jquery.codemirror/demo/runmode.html +62 -0
- data/server/assets/js/jquery.codemirror/demo/search.html +94 -0
- data/server/assets/js/jquery.codemirror/demo/spanaffectswrapping_shim.html +85 -0
- data/server/assets/js/jquery.codemirror/demo/tern.html +129 -0
- data/server/assets/js/jquery.codemirror/demo/theme.html +121 -0
- data/server/assets/js/jquery.codemirror/demo/trailingspace.html +48 -0
- data/server/assets/js/jquery.codemirror/demo/variableheight.html +67 -0
- data/server/assets/js/jquery.codemirror/demo/vim.html +74 -0
- data/server/assets/js/jquery.codemirror/demo/visibletabs.html +62 -0
- data/server/assets/js/jquery.codemirror/demo/widget.html +85 -0
- data/server/assets/js/jquery.codemirror/demo/xmlcomplete.html +116 -0
- data/server/assets/js/jquery.codemirror/index.html +192 -0
- data/server/assets/js/jquery.codemirror/keymap/emacs.js +387 -0
- data/server/assets/js/jquery.codemirror/keymap/extra.js +43 -0
- data/server/assets/js/jquery.codemirror/keymap/vim.js +3703 -0
- data/server/assets/js/jquery.codemirror/lib/codemirror.css +263 -0
- data/server/assets/js/jquery.codemirror/lib/codemirror.js +5944 -0
- data/server/assets/js/jquery.codemirror/mode/apl/apl.js +160 -0
- data/server/assets/js/jquery.codemirror/mode/apl/index.html +72 -0
- data/server/assets/js/jquery.codemirror/mode/asterisk/asterisk.js +183 -0
- data/server/assets/js/jquery.codemirror/mode/asterisk/index.html +154 -0
- data/server/assets/js/jquery.codemirror/mode/clike/clike.js +362 -0
- data/server/assets/js/jquery.codemirror/mode/clike/index.html +195 -0
- data/server/assets/js/jquery.codemirror/mode/clike/scala.html +767 -0
- data/server/assets/js/jquery.codemirror/mode/clojure/clojure.js +224 -0
- data/server/assets/js/jquery.codemirror/mode/clojure/index.html +88 -0
- data/server/assets/js/jquery.codemirror/mode/cobol/cobol.js +240 -0
- data/server/assets/js/jquery.codemirror/mode/cobol/index.html +210 -0
- data/server/assets/js/jquery.codemirror/mode/coffeescript/coffeescript.js +354 -0
- data/server/assets/js/jquery.codemirror/mode/coffeescript/index.html +740 -0
- data/server/assets/js/jquery.codemirror/mode/commonlisp/commonlisp.js +105 -0
- data/server/assets/js/jquery.codemirror/mode/commonlisp/index.html +177 -0
- data/server/assets/js/jquery.codemirror/mode/css/css.js +639 -0
- data/server/assets/js/jquery.codemirror/mode/css/index.html +70 -0
- data/server/assets/js/jquery.codemirror/mode/css/scss.html +157 -0
- data/server/assets/js/jquery.codemirror/mode/css/scss_test.js +93 -0
- data/server/assets/js/jquery.codemirror/mode/css/test.js +142 -0
- data/server/assets/js/jquery.codemirror/mode/d/d.js +205 -0
- data/server/assets/js/jquery.codemirror/mode/d/index.html +273 -0
- data/server/assets/js/jquery.codemirror/mode/diff/diff.js +32 -0
- data/server/assets/js/jquery.codemirror/mode/diff/index.html +117 -0
- data/server/assets/js/jquery.codemirror/mode/dtd/dtd.js +127 -0
- data/server/assets/js/jquery.codemirror/mode/dtd/index.html +89 -0
- data/server/assets/js/jquery.codemirror/mode/ecl/ecl.js +192 -0
- data/server/assets/js/jquery.codemirror/mode/ecl/index.html +52 -0
- data/server/assets/js/jquery.codemirror/mode/eiffel/eiffel.js +147 -0
- data/server/assets/js/jquery.codemirror/mode/eiffel/index.html +430 -0
- data/server/assets/js/jquery.codemirror/mode/erlang/erlang.js +484 -0
- data/server/assets/js/jquery.codemirror/mode/erlang/index.html +75 -0
- data/server/assets/js/jquery.codemirror/mode/fortran/fortran.js +173 -0
- data/server/assets/js/jquery.codemirror/mode/fortran/index.html +81 -0
- data/server/assets/js/jquery.codemirror/mode/gas/gas.js +330 -0
- data/server/assets/js/jquery.codemirror/mode/gas/index.html +68 -0
- data/server/assets/js/jquery.codemirror/mode/gfm/gfm.js +97 -0
- data/server/assets/js/jquery.codemirror/mode/gfm/index.html +82 -0
- data/server/assets/js/jquery.codemirror/mode/gfm/test.js +112 -0
- data/server/assets/js/jquery.codemirror/mode/gherkin/gherkin.js +168 -0
- data/server/assets/js/jquery.codemirror/mode/gherkin/index.html +48 -0
- data/server/assets/js/jquery.codemirror/mode/go/go.js +168 -0
- data/server/assets/js/jquery.codemirror/mode/go/index.html +85 -0
- data/server/assets/js/jquery.codemirror/mode/groovy/groovy.js +211 -0
- data/server/assets/js/jquery.codemirror/mode/groovy/index.html +84 -0
- data/server/assets/js/jquery.codemirror/mode/haml/haml.js +153 -0
- data/server/assets/js/jquery.codemirror/mode/haml/index.html +79 -0
- data/server/assets/js/jquery.codemirror/mode/haml/test.js +94 -0
- data/server/assets/js/jquery.codemirror/mode/haskell/haskell.js +250 -0
- data/server/assets/js/jquery.codemirror/mode/haskell/index.html +73 -0
- data/server/assets/js/jquery.codemirror/mode/haxe/haxe.js +429 -0
- data/server/assets/js/jquery.codemirror/mode/haxe/index.html +103 -0
- data/server/assets/js/jquery.codemirror/mode/htmlembedded/htmlembedded.js +73 -0
- data/server/assets/js/jquery.codemirror/mode/htmlembedded/index.html +60 -0
- data/server/assets/js/jquery.codemirror/mode/htmlmixed/htmlmixed.js +104 -0
- data/server/assets/js/jquery.codemirror/mode/htmlmixed/index.html +85 -0
- data/server/assets/js/jquery.codemirror/mode/http/http.js +98 -0
- data/server/assets/js/jquery.codemirror/mode/http/index.html +45 -0
- data/server/assets/js/jquery.codemirror/mode/index.html +114 -0
- data/server/assets/js/jquery.codemirror/mode/jade/index.html +66 -0
- data/server/assets/js/jquery.codemirror/mode/jade/jade.js +90 -0
- data/server/assets/js/jquery.codemirror/mode/javascript/index.html +107 -0
- data/server/assets/js/jquery.codemirror/mode/javascript/javascript.js +617 -0
- data/server/assets/js/jquery.codemirror/mode/javascript/test.js +72 -0
- data/server/assets/js/jquery.codemirror/mode/javascript/typescript.html +61 -0
- data/server/assets/js/jquery.codemirror/mode/jinja2/index.html +50 -0
- data/server/assets/js/jquery.codemirror/mode/jinja2/jinja2.js +42 -0
- data/server/assets/js/jquery.codemirror/mode/julia/index.html +187 -0
- data/server/assets/js/jquery.codemirror/mode/julia/julia.js +262 -0
- data/server/assets/js/jquery.codemirror/mode/less/index.html +753 -0
- data/server/assets/js/jquery.codemirror/mode/less/less.js +346 -0
- data/server/assets/js/jquery.codemirror/mode/livescript/index.html +459 -0
- data/server/assets/js/jquery.codemirror/mode/livescript/livescript.js +267 -0
- data/server/assets/js/jquery.codemirror/mode/livescript/livescript.ls +266 -0
- data/server/assets/js/jquery.codemirror/mode/lua/index.html +86 -0
- data/server/assets/js/jquery.codemirror/mode/lua/lua.js +144 -0
- data/server/assets/js/jquery.codemirror/mode/markdown/index.html +359 -0
- data/server/assets/js/jquery.codemirror/mode/markdown/markdown.js +560 -0
- data/server/assets/js/jquery.codemirror/mode/markdown/test.js +664 -0
- data/server/assets/js/jquery.codemirror/mode/meta.js +91 -0
- data/server/assets/js/jquery.codemirror/mode/mirc/index.html +161 -0
- data/server/assets/js/jquery.codemirror/mode/mirc/mirc.js +177 -0
- data/server/assets/js/jquery.codemirror/mode/nginx/index.html +181 -0
- data/server/assets/js/jquery.codemirror/mode/nginx/nginx.js +163 -0
- data/server/assets/js/jquery.codemirror/mode/ntriples/index.html +45 -0
- data/server/assets/js/jquery.codemirror/mode/ntriples/ntriples.js +170 -0
- data/server/assets/js/jquery.codemirror/mode/ocaml/index.html +146 -0
- data/server/assets/js/jquery.codemirror/mode/ocaml/ocaml.js +116 -0
- data/server/assets/js/jquery.codemirror/mode/octave/index.html +95 -0
- data/server/assets/js/jquery.codemirror/mode/octave/octave.js +118 -0
- data/server/assets/js/jquery.codemirror/mode/pascal/index.html +61 -0
- data/server/assets/js/jquery.codemirror/mode/pascal/pascal.js +94 -0
- data/server/assets/js/jquery.codemirror/mode/pegjs/index.html +66 -0
- data/server/assets/js/jquery.codemirror/mode/pegjs/pegjs.js +103 -0
- data/server/assets/js/jquery.codemirror/mode/perl/index.html +75 -0
- data/server/assets/js/jquery.codemirror/mode/perl/perl.js +816 -0
- data/server/assets/js/jquery.codemirror/mode/php/index.html +62 -0
- data/server/assets/js/jquery.codemirror/mode/php/php.js +132 -0
- data/server/assets/js/jquery.codemirror/mode/pig/index.html +55 -0
- data/server/assets/js/jquery.codemirror/mode/pig/pig.js +171 -0
- data/server/assets/js/jquery.codemirror/mode/properties/index.html +53 -0
- data/server/assets/js/jquery.codemirror/mode/properties/properties.js +63 -0
- data/server/assets/js/jquery.codemirror/mode/python/index.html +187 -0
- data/server/assets/js/jquery.codemirror/mode/python/python.js +368 -0
- data/server/assets/js/jquery.codemirror/mode/q/index.html +144 -0
- data/server/assets/js/jquery.codemirror/mode/q/q.js +124 -0
- data/server/assets/js/jquery.codemirror/mode/r/index.html +86 -0
- data/server/assets/js/jquery.codemirror/mode/r/r.js +141 -0
- data/server/assets/js/jquery.codemirror/mode/rpm/changes/changes.js +19 -0
- data/server/assets/js/jquery.codemirror/mode/rpm/changes/index.html +67 -0
- data/server/assets/js/jquery.codemirror/mode/rpm/spec/index.html +114 -0
- data/server/assets/js/jquery.codemirror/mode/rpm/spec/spec.css +5 -0
- data/server/assets/js/jquery.codemirror/mode/rpm/spec/spec.js +66 -0
- data/server/assets/js/jquery.codemirror/mode/rst/index.html +534 -0
- data/server/assets/js/jquery.codemirror/mode/rst/rst.js +560 -0
- data/server/assets/js/jquery.codemirror/mode/ruby/index.html +185 -0
- data/server/assets/js/jquery.codemirror/mode/ruby/ruby.js +247 -0
- data/server/assets/js/jquery.codemirror/mode/rust/index.html +61 -0
- data/server/assets/js/jquery.codemirror/mode/rust/rust.js +436 -0
- data/server/assets/js/jquery.codemirror/mode/sass/index.html +66 -0
- data/server/assets/js/jquery.codemirror/mode/sass/sass.js +330 -0
- data/server/assets/js/jquery.codemirror/mode/scheme/index.html +77 -0
- data/server/assets/js/jquery.codemirror/mode/scheme/scheme.js +232 -0
- data/server/assets/js/jquery.codemirror/mode/shell/index.html +66 -0
- data/server/assets/js/jquery.codemirror/mode/shell/shell.js +118 -0
- data/server/assets/js/jquery.codemirror/mode/sieve/index.html +93 -0
- data/server/assets/js/jquery.codemirror/mode/sieve/sieve.js +183 -0
- data/server/assets/js/jquery.codemirror/mode/smalltalk/index.html +68 -0
- data/server/assets/js/jquery.codemirror/mode/smalltalk/smalltalk.js +151 -0
- data/server/assets/js/jquery.codemirror/mode/smarty/index.html +136 -0
- data/server/assets/js/jquery.codemirror/mode/smarty/smarty.js +205 -0
- data/server/assets/js/jquery.codemirror/mode/smartymixed/index.html +114 -0
- data/server/assets/js/jquery.codemirror/mode/smartymixed/smartymixed.js +175 -0
- data/server/assets/js/jquery.codemirror/mode/sparql/index.html +54 -0
- data/server/assets/js/jquery.codemirror/mode/sparql/sparql.js +145 -0
- data/server/assets/js/jquery.codemirror/mode/sql/index.html +75 -0
- data/server/assets/js/jquery.codemirror/mode/sql/sql.js +365 -0
- data/server/assets/js/jquery.codemirror/mode/stex/index.html +110 -0
- data/server/assets/js/jquery.codemirror/mode/stex/stex.js +246 -0
- data/server/assets/js/jquery.codemirror/mode/stex/test.js +120 -0
- data/server/assets/js/jquery.codemirror/mode/tcl/index.html +143 -0
- data/server/assets/js/jquery.codemirror/mode/tcl/tcl.js +131 -0
- data/server/assets/js/jquery.codemirror/mode/tiddlywiki/index.html +155 -0
- data/server/assets/js/jquery.codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
- data/server/assets/js/jquery.codemirror/mode/tiddlywiki/tiddlywiki.js +353 -0
- data/server/assets/js/jquery.codemirror/mode/tiki/index.html +95 -0
- data/server/assets/js/jquery.codemirror/mode/tiki/tiki.css +26 -0
- data/server/assets/js/jquery.codemirror/mode/tiki/tiki.js +308 -0
- data/server/assets/js/jquery.codemirror/mode/toml/index.html +73 -0
- data/server/assets/js/jquery.codemirror/mode/toml/toml.js +71 -0
- data/server/assets/js/jquery.codemirror/mode/turtle/index.html +51 -0
- data/server/assets/js/jquery.codemirror/mode/turtle/turtle.js +145 -0
- data/server/assets/js/jquery.codemirror/mode/vb/index.html +103 -0
- data/server/assets/js/jquery.codemirror/mode/vb/vb.js +259 -0
- data/server/assets/js/jquery.codemirror/mode/vbscript/index.html +55 -0
- data/server/assets/js/jquery.codemirror/mode/vbscript/vbscript.js +334 -0
- data/server/assets/js/jquery.codemirror/mode/velocity/index.html +119 -0
- data/server/assets/js/jquery.codemirror/mode/velocity/velocity.js +186 -0
- data/server/assets/js/jquery.codemirror/mode/verilog/index.html +132 -0
- data/server/assets/js/jquery.codemirror/mode/verilog/verilog.js +182 -0
- data/server/assets/js/jquery.codemirror/mode/xml/index.html +57 -0
- data/server/assets/js/jquery.codemirror/mode/xml/xml.js +345 -0
- data/server/assets/js/jquery.codemirror/mode/xquery/index.html +210 -0
- data/server/assets/js/jquery.codemirror/mode/xquery/test.js +64 -0
- data/server/assets/js/jquery.codemirror/mode/xquery/xquery.js +432 -0
- data/server/assets/js/jquery.codemirror/mode/yaml/index.html +80 -0
- data/server/assets/js/jquery.codemirror/mode/yaml/yaml.js +97 -0
- data/server/assets/js/jquery.codemirror/mode/z80/index.html +52 -0
- data/server/assets/js/jquery.codemirror/mode/z80/z80.js +85 -0
- data/server/assets/js/jquery.codemirror/package.json +19 -0
- data/server/assets/js/jquery.codemirror/test/comment_test.js +51 -0
- data/server/assets/js/jquery.codemirror/test/doc_test.js +329 -0
- data/server/assets/js/jquery.codemirror/test/driver.js +139 -0
- data/server/assets/js/jquery.codemirror/test/emacs_test.js +135 -0
- data/server/assets/js/jquery.codemirror/test/index.html +209 -0
- data/server/assets/js/jquery.codemirror/test/lint/acorn.js +1593 -0
- data/server/assets/js/jquery.codemirror/test/lint/lint.js +139 -0
- data/server/assets/js/jquery.codemirror/test/lint/walk.js +216 -0
- data/server/assets/js/jquery.codemirror/test/mode_test.css +10 -0
- data/server/assets/js/jquery.codemirror/test/mode_test.js +200 -0
- data/server/assets/js/jquery.codemirror/test/phantom_driver.js +31 -0
- data/server/assets/js/jquery.codemirror/test/run.js +34 -0
- data/server/assets/js/jquery.codemirror/test/test.js +1562 -0
- data/server/assets/js/jquery.codemirror/test/vim_test.js +2391 -0
- data/server/assets/js/jquery.codemirror/theme/3024-day.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/3024-night.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/ambiance-mobile.css +5 -0
- data/server/assets/js/jquery.codemirror/theme/ambiance.css +70 -0
- data/server/assets/js/jquery.codemirror/theme/base16-dark.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/base16-light.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/blackboard.css +28 -0
- data/server/assets/js/jquery.codemirror/theme/cobalt.css +21 -0
- data/server/assets/js/jquery.codemirror/theme/eclipse.css +23 -0
- data/server/assets/js/jquery.codemirror/theme/elegant.css +13 -0
- data/server/assets/js/jquery.codemirror/theme/erlang-dark.css +30 -0
- data/server/assets/js/jquery.codemirror/theme/lesser-dark.css +47 -0
- data/server/assets/js/jquery.codemirror/theme/mbo.css +37 -0
- data/server/assets/js/jquery.codemirror/theme/midnight.css +43 -0
- data/server/assets/js/jquery.codemirror/theme/monokai.css +29 -0
- data/server/assets/js/jquery.codemirror/theme/neat.css +12 -0
- data/server/assets/js/jquery.codemirror/theme/night.css +24 -0
- data/server/assets/js/jquery.codemirror/theme/paraiso-dark.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/paraiso-light.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/rubyblue.css +23 -0
- data/server/assets/js/jquery.codemirror/theme/solarized.css +180 -0
- data/server/assets/js/jquery.codemirror/theme/the-matrix.css +26 -0
- data/server/assets/js/jquery.codemirror/theme/tomorrow-night-eighties.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/twilight.css +28 -0
- data/server/assets/js/jquery.codemirror/theme/vibrant-ink.css +30 -0
- data/server/assets/js/jquery.codemirror/theme/xq-dark.css +49 -0
- data/server/assets/js/jquery.codemirror/theme/xq-light.css +43 -0
- data/server/assets/js/jquery.js +4 -0
- data/server/assets/js/jquery.nanoscroller/jquery.nanoscroller.js +2 -0
- data/server/assets/js/jquery.nanoscroller/nanoscroller.css +49 -0
- data/server/assets/js/tester.js +161 -0
- data/server/config.ru +2 -0
- data/server/server.rb +41 -0
- data/server/views/_content.erb +65 -0
- data/server/views/_sidebar.erb +32 -0
- data/server/views/index.erb +40 -0
- metadata +402 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
var modes = ["clike", "css", "javascript"];
|
|
3
|
+
for (var i = 0; i < modes.length; ++i)
|
|
4
|
+
CodeMirror.extendMode(modes[i], {blockCommentContinue: " * "});
|
|
5
|
+
|
|
6
|
+
function continueComment(cm) {
|
|
7
|
+
var pos = cm.getCursor(), token = cm.getTokenAt(pos);
|
|
8
|
+
if (token.type != "comment") return CodeMirror.Pass;
|
|
9
|
+
var mode = CodeMirror.innerMode(cm.getMode(), token.state).mode;
|
|
10
|
+
|
|
11
|
+
var insert;
|
|
12
|
+
if (mode.blockCommentStart && mode.blockCommentContinue) {
|
|
13
|
+
var end = token.string.indexOf(mode.blockCommentEnd);
|
|
14
|
+
var full = cm.getRange(CodeMirror.Pos(pos.line, 0), CodeMirror.Pos(pos.line, token.end)), found;
|
|
15
|
+
if (end != -1 && end == token.string.length - mode.blockCommentEnd.length) {
|
|
16
|
+
// Comment ended, don't continue it
|
|
17
|
+
} else if (token.string.indexOf(mode.blockCommentStart) == 0) {
|
|
18
|
+
insert = full.slice(0, token.start);
|
|
19
|
+
if (!/^\s*$/.test(insert)) {
|
|
20
|
+
insert = "";
|
|
21
|
+
for (var i = 0; i < token.start; ++i) insert += " ";
|
|
22
|
+
}
|
|
23
|
+
} else if ((found = full.indexOf(mode.blockCommentContinue)) != -1 &&
|
|
24
|
+
found + mode.blockCommentContinue.length > token.start &&
|
|
25
|
+
/^\s*$/.test(full.slice(0, found))) {
|
|
26
|
+
insert = full.slice(0, found);
|
|
27
|
+
}
|
|
28
|
+
if (insert != null) insert += mode.blockCommentContinue;
|
|
29
|
+
}
|
|
30
|
+
if (insert == null && mode.lineComment) {
|
|
31
|
+
var line = cm.getLine(pos.line), found = line.indexOf(mode.lineComment);
|
|
32
|
+
if (found > -1) {
|
|
33
|
+
insert = line.slice(0, found);
|
|
34
|
+
if (/\S/.test(insert)) insert = null;
|
|
35
|
+
else insert += mode.lineComment + line.slice(found + mode.lineComment.length).match(/^\s*/)[0];
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
if (insert != null)
|
|
40
|
+
cm.replaceSelection("\n" + insert, "end");
|
|
41
|
+
else
|
|
42
|
+
return CodeMirror.Pass;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
CodeMirror.defineOption("continueComments", null, function(cm, val, prev) {
|
|
46
|
+
if (prev && prev != CodeMirror.Init)
|
|
47
|
+
cm.removeKeyMap("continueComment");
|
|
48
|
+
if (val) {
|
|
49
|
+
var map = {name: "continueComment"};
|
|
50
|
+
map[typeof val == "string" ? val : "Enter"] = continueComment;
|
|
51
|
+
cm.addKeyMap(map);
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
})();
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
.CodeMirror-dialog {
|
|
2
|
+
position: absolute;
|
|
3
|
+
left: 0; right: 0;
|
|
4
|
+
background: white;
|
|
5
|
+
z-index: 15;
|
|
6
|
+
padding: .1em .8em;
|
|
7
|
+
overflow: hidden;
|
|
8
|
+
color: #333;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.CodeMirror-dialog-top {
|
|
12
|
+
border-bottom: 1px solid #eee;
|
|
13
|
+
top: 0;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.CodeMirror-dialog-bottom {
|
|
17
|
+
border-top: 1px solid #eee;
|
|
18
|
+
bottom: 0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.CodeMirror-dialog input {
|
|
22
|
+
border: none;
|
|
23
|
+
outline: none;
|
|
24
|
+
background: transparent;
|
|
25
|
+
width: 20em;
|
|
26
|
+
color: inherit;
|
|
27
|
+
font-family: monospace;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.CodeMirror-dialog button {
|
|
31
|
+
font-size: 70%;
|
|
32
|
+
}
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
// Open simple dialogs on top of an editor. Relies on dialog.css.
|
|
2
|
+
|
|
3
|
+
(function() {
|
|
4
|
+
function dialogDiv(cm, template, bottom) {
|
|
5
|
+
var wrap = cm.getWrapperElement();
|
|
6
|
+
var dialog;
|
|
7
|
+
dialog = wrap.appendChild(document.createElement("div"));
|
|
8
|
+
if (bottom) {
|
|
9
|
+
dialog.className = "CodeMirror-dialog CodeMirror-dialog-bottom";
|
|
10
|
+
} else {
|
|
11
|
+
dialog.className = "CodeMirror-dialog CodeMirror-dialog-top";
|
|
12
|
+
}
|
|
13
|
+
if (typeof template == "string") {
|
|
14
|
+
dialog.innerHTML = template;
|
|
15
|
+
} else { // Assuming it's a detached DOM element.
|
|
16
|
+
dialog.appendChild(template);
|
|
17
|
+
}
|
|
18
|
+
return dialog;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
function closeNotification(cm, newVal) {
|
|
22
|
+
if (cm.state.currentNotificationClose)
|
|
23
|
+
cm.state.currentNotificationClose();
|
|
24
|
+
cm.state.currentNotificationClose = newVal;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
CodeMirror.defineExtension("openDialog", function(template, callback, options) {
|
|
28
|
+
closeNotification(this, null);
|
|
29
|
+
var dialog = dialogDiv(this, template, options && options.bottom);
|
|
30
|
+
var closed = false, me = this;
|
|
31
|
+
function close() {
|
|
32
|
+
if (closed) return;
|
|
33
|
+
closed = true;
|
|
34
|
+
dialog.parentNode.removeChild(dialog);
|
|
35
|
+
}
|
|
36
|
+
var inp = dialog.getElementsByTagName("input")[0], button;
|
|
37
|
+
if (inp) {
|
|
38
|
+
CodeMirror.on(inp, "keydown", function(e) {
|
|
39
|
+
if (options && options.onKeyDown && options.onKeyDown(e, inp.value, close)) { return; }
|
|
40
|
+
if (e.keyCode == 13 || e.keyCode == 27) {
|
|
41
|
+
CodeMirror.e_stop(e);
|
|
42
|
+
close();
|
|
43
|
+
me.focus();
|
|
44
|
+
if (e.keyCode == 13) callback(inp.value);
|
|
45
|
+
}
|
|
46
|
+
});
|
|
47
|
+
if (options && options.onKeyUp) {
|
|
48
|
+
CodeMirror.on(inp, "keyup", function(e) {options.onKeyUp(e, inp.value, close);});
|
|
49
|
+
}
|
|
50
|
+
if (options && options.value) inp.value = options.value;
|
|
51
|
+
inp.focus();
|
|
52
|
+
CodeMirror.on(inp, "blur", close);
|
|
53
|
+
} else if (button = dialog.getElementsByTagName("button")[0]) {
|
|
54
|
+
CodeMirror.on(button, "click", function() {
|
|
55
|
+
close();
|
|
56
|
+
me.focus();
|
|
57
|
+
});
|
|
58
|
+
button.focus();
|
|
59
|
+
CodeMirror.on(button, "blur", close);
|
|
60
|
+
}
|
|
61
|
+
return close;
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
CodeMirror.defineExtension("openConfirm", function(template, callbacks, options) {
|
|
65
|
+
closeNotification(this, null);
|
|
66
|
+
var dialog = dialogDiv(this, template, options && options.bottom);
|
|
67
|
+
var buttons = dialog.getElementsByTagName("button");
|
|
68
|
+
var closed = false, me = this, blurring = 1;
|
|
69
|
+
function close() {
|
|
70
|
+
if (closed) return;
|
|
71
|
+
closed = true;
|
|
72
|
+
dialog.parentNode.removeChild(dialog);
|
|
73
|
+
me.focus();
|
|
74
|
+
}
|
|
75
|
+
buttons[0].focus();
|
|
76
|
+
for (var i = 0; i < buttons.length; ++i) {
|
|
77
|
+
var b = buttons[i];
|
|
78
|
+
(function(callback) {
|
|
79
|
+
CodeMirror.on(b, "click", function(e) {
|
|
80
|
+
CodeMirror.e_preventDefault(e);
|
|
81
|
+
close();
|
|
82
|
+
if (callback) callback(me);
|
|
83
|
+
});
|
|
84
|
+
})(callbacks[i]);
|
|
85
|
+
CodeMirror.on(b, "blur", function() {
|
|
86
|
+
--blurring;
|
|
87
|
+
setTimeout(function() { if (blurring <= 0) close(); }, 200);
|
|
88
|
+
});
|
|
89
|
+
CodeMirror.on(b, "focus", function() { ++blurring; });
|
|
90
|
+
}
|
|
91
|
+
});
|
|
92
|
+
|
|
93
|
+
/*
|
|
94
|
+
* openNotification
|
|
95
|
+
* Opens a notification, that can be closed with an optional timer
|
|
96
|
+
* (default 5000ms timer) and always closes on click.
|
|
97
|
+
*
|
|
98
|
+
* If a notification is opened while another is opened, it will close the
|
|
99
|
+
* currently opened one and open the new one immediately.
|
|
100
|
+
*/
|
|
101
|
+
CodeMirror.defineExtension("openNotification", function(template, options) {
|
|
102
|
+
closeNotification(this, close);
|
|
103
|
+
var dialog = dialogDiv(this, template, options && options.bottom);
|
|
104
|
+
var duration = options && (options.duration === undefined ? 5000 : options.duration);
|
|
105
|
+
var closed = false, doneTimer;
|
|
106
|
+
|
|
107
|
+
function close() {
|
|
108
|
+
if (closed) return;
|
|
109
|
+
closed = true;
|
|
110
|
+
clearTimeout(doneTimer);
|
|
111
|
+
dialog.parentNode.removeChild(dialog);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
CodeMirror.on(dialog, 'click', function(e) {
|
|
115
|
+
CodeMirror.e_preventDefault(e);
|
|
116
|
+
close();
|
|
117
|
+
});
|
|
118
|
+
if (duration)
|
|
119
|
+
doneTimer = setTimeout(close, options.duration);
|
|
120
|
+
});
|
|
121
|
+
})();
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
"use strict";
|
|
3
|
+
|
|
4
|
+
CodeMirror.defineOption("fullScreen", false, function(cm, val, old) {
|
|
5
|
+
if (old == CodeMirror.Init) old = false;
|
|
6
|
+
if (!old == !val) return;
|
|
7
|
+
if (val) setFullscreen(cm);
|
|
8
|
+
else setNormal(cm);
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
function setFullscreen(cm) {
|
|
12
|
+
var wrap = cm.getWrapperElement();
|
|
13
|
+
cm.state.fullScreenRestore = {scrollTop: window.pageYOffset, scrollLeft: window.pageXOffset,
|
|
14
|
+
width: wrap.style.width, height: wrap.style.height};
|
|
15
|
+
wrap.style.width = "";
|
|
16
|
+
wrap.style.height = "auto";
|
|
17
|
+
wrap.className += " CodeMirror-fullscreen";
|
|
18
|
+
document.documentElement.style.overflow = "hidden";
|
|
19
|
+
cm.refresh();
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
function setNormal(cm) {
|
|
23
|
+
var wrap = cm.getWrapperElement();
|
|
24
|
+
wrap.className = wrap.className.replace(/\s*CodeMirror-fullscreen\b/, "");
|
|
25
|
+
document.documentElement.style.overflow = "";
|
|
26
|
+
var info = cm.state.fullScreenRestore;
|
|
27
|
+
wrap.style.width = info.width; wrap.style.height = info.height;
|
|
28
|
+
window.scrollTo(info.scrollLeft, info.scrollTop);
|
|
29
|
+
cm.refresh();
|
|
30
|
+
}
|
|
31
|
+
})();
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
CodeMirror.defineOption("placeholder", "", function(cm, val, old) {
|
|
3
|
+
var prev = old && old != CodeMirror.Init;
|
|
4
|
+
if (val && !prev) {
|
|
5
|
+
cm.on("blur", onBlur);
|
|
6
|
+
cm.on("change", onChange);
|
|
7
|
+
onChange(cm);
|
|
8
|
+
} else if (!val && prev) {
|
|
9
|
+
cm.off("blur", onBlur);
|
|
10
|
+
cm.off("change", onChange);
|
|
11
|
+
clearPlaceholder(cm);
|
|
12
|
+
var wrapper = cm.getWrapperElement();
|
|
13
|
+
wrapper.className = wrapper.className.replace(" CodeMirror-empty", "");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
if (val && !cm.hasFocus()) onBlur(cm);
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
function clearPlaceholder(cm) {
|
|
20
|
+
if (cm.state.placeholder) {
|
|
21
|
+
cm.state.placeholder.parentNode.removeChild(cm.state.placeholder);
|
|
22
|
+
cm.state.placeholder = null;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
function setPlaceholder(cm) {
|
|
26
|
+
clearPlaceholder(cm);
|
|
27
|
+
var elt = cm.state.placeholder = document.createElement("pre");
|
|
28
|
+
elt.style.cssText = "height: 0; overflow: visible";
|
|
29
|
+
elt.className = "CodeMirror-placeholder";
|
|
30
|
+
elt.appendChild(document.createTextNode(cm.getOption("placeholder")));
|
|
31
|
+
cm.display.lineSpace.insertBefore(elt, cm.display.lineSpace.firstChild);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
function onBlur(cm) {
|
|
35
|
+
if (isEmpty(cm)) setPlaceholder(cm);
|
|
36
|
+
}
|
|
37
|
+
function onChange(cm) {
|
|
38
|
+
var wrapper = cm.getWrapperElement(), empty = isEmpty(cm);
|
|
39
|
+
wrapper.className = wrapper.className.replace(" CodeMirror-empty", "") + (empty ? " CodeMirror-empty" : "");
|
|
40
|
+
|
|
41
|
+
if (empty) setPlaceholder(cm);
|
|
42
|
+
else clearPlaceholder(cm);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
function isEmpty(cm) {
|
|
46
|
+
return (cm.lineCount() === 1) && (cm.getLine(0) === "");
|
|
47
|
+
}
|
|
48
|
+
})();
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
var DEFAULT_BRACKETS = "()[]{}''\"\"";
|
|
3
|
+
var DEFAULT_EXPLODE_ON_ENTER = "[]{}";
|
|
4
|
+
var SPACE_CHAR_REGEX = /\s/;
|
|
5
|
+
|
|
6
|
+
CodeMirror.defineOption("autoCloseBrackets", false, function(cm, val, old) {
|
|
7
|
+
if (old != CodeMirror.Init && old)
|
|
8
|
+
cm.removeKeyMap("autoCloseBrackets");
|
|
9
|
+
if (!val) return;
|
|
10
|
+
var pairs = DEFAULT_BRACKETS, explode = DEFAULT_EXPLODE_ON_ENTER;
|
|
11
|
+
if (typeof val == "string") pairs = val;
|
|
12
|
+
else if (typeof val == "object") {
|
|
13
|
+
if (val.pairs != null) pairs = val.pairs;
|
|
14
|
+
if (val.explode != null) explode = val.explode;
|
|
15
|
+
}
|
|
16
|
+
var map = buildKeymap(pairs);
|
|
17
|
+
if (explode) map.Enter = buildExplodeHandler(explode);
|
|
18
|
+
cm.addKeyMap(map);
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
function charsAround(cm, pos) {
|
|
22
|
+
var str = cm.getRange(CodeMirror.Pos(pos.line, pos.ch - 1),
|
|
23
|
+
CodeMirror.Pos(pos.line, pos.ch + 1));
|
|
24
|
+
return str.length == 2 ? str : null;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
function buildKeymap(pairs) {
|
|
28
|
+
var map = {
|
|
29
|
+
name : "autoCloseBrackets",
|
|
30
|
+
Backspace: function(cm) {
|
|
31
|
+
if (cm.somethingSelected()) return CodeMirror.Pass;
|
|
32
|
+
var cur = cm.getCursor(), around = charsAround(cm, cur);
|
|
33
|
+
if (around && pairs.indexOf(around) % 2 == 0)
|
|
34
|
+
cm.replaceRange("", CodeMirror.Pos(cur.line, cur.ch - 1), CodeMirror.Pos(cur.line, cur.ch + 1));
|
|
35
|
+
else
|
|
36
|
+
return CodeMirror.Pass;
|
|
37
|
+
}
|
|
38
|
+
};
|
|
39
|
+
var closingBrackets = "";
|
|
40
|
+
for (var i = 0; i < pairs.length; i += 2) (function(left, right) {
|
|
41
|
+
if (left != right) closingBrackets += right;
|
|
42
|
+
function surround(cm) {
|
|
43
|
+
var selection = cm.getSelection();
|
|
44
|
+
cm.replaceSelection(left + selection + right);
|
|
45
|
+
}
|
|
46
|
+
function maybeOverwrite(cm) {
|
|
47
|
+
var cur = cm.getCursor(), ahead = cm.getRange(cur, CodeMirror.Pos(cur.line, cur.ch + 1));
|
|
48
|
+
if (ahead != right || cm.somethingSelected()) return CodeMirror.Pass;
|
|
49
|
+
else cm.execCommand("goCharRight");
|
|
50
|
+
}
|
|
51
|
+
map["'" + left + "'"] = function(cm) {
|
|
52
|
+
if (left == "'" && cm.getTokenAt(cm.getCursor()).type == "comment")
|
|
53
|
+
return CodeMirror.Pass;
|
|
54
|
+
if (cm.somethingSelected()) return surround(cm);
|
|
55
|
+
if (left == right && maybeOverwrite(cm) != CodeMirror.Pass) return;
|
|
56
|
+
var cur = cm.getCursor(), ahead = CodeMirror.Pos(cur.line, cur.ch + 1);
|
|
57
|
+
var line = cm.getLine(cur.line), nextChar = line.charAt(cur.ch), curChar = cur.ch > 0 ? line.charAt(cur.ch - 1) : "";
|
|
58
|
+
if (left == right && CodeMirror.isWordChar(curChar))
|
|
59
|
+
return CodeMirror.Pass;
|
|
60
|
+
if (line.length == cur.ch || closingBrackets.indexOf(nextChar) >= 0 || SPACE_CHAR_REGEX.test(nextChar))
|
|
61
|
+
cm.replaceSelection(left + right, {head: ahead, anchor: ahead});
|
|
62
|
+
else
|
|
63
|
+
return CodeMirror.Pass;
|
|
64
|
+
};
|
|
65
|
+
if (left != right) map["'" + right + "'"] = maybeOverwrite;
|
|
66
|
+
})(pairs.charAt(i), pairs.charAt(i + 1));
|
|
67
|
+
return map;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
function buildExplodeHandler(pairs) {
|
|
71
|
+
return function(cm) {
|
|
72
|
+
var cur = cm.getCursor(), around = charsAround(cm, cur);
|
|
73
|
+
if (!around || pairs.indexOf(around) % 2 != 0) return CodeMirror.Pass;
|
|
74
|
+
cm.operation(function() {
|
|
75
|
+
var newPos = CodeMirror.Pos(cur.line + 1, 0);
|
|
76
|
+
cm.replaceSelection("\n\n", {anchor: newPos, head: newPos}, "+input");
|
|
77
|
+
cm.indentLine(cur.line + 1, null, true);
|
|
78
|
+
cm.indentLine(cur.line + 2, null, true);
|
|
79
|
+
});
|
|
80
|
+
};
|
|
81
|
+
}
|
|
82
|
+
})();
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tag-closer extension for CodeMirror.
|
|
3
|
+
*
|
|
4
|
+
* This extension adds an "autoCloseTags" option that can be set to
|
|
5
|
+
* either true to get the default behavior, or an object to further
|
|
6
|
+
* configure its behavior.
|
|
7
|
+
*
|
|
8
|
+
* These are supported options:
|
|
9
|
+
*
|
|
10
|
+
* `whenClosing` (default true)
|
|
11
|
+
* Whether to autoclose when the '/' of a closing tag is typed.
|
|
12
|
+
* `whenOpening` (default true)
|
|
13
|
+
* Whether to autoclose the tag when the final '>' of an opening
|
|
14
|
+
* tag is typed.
|
|
15
|
+
* `dontCloseTags` (default is empty tags for HTML, none for XML)
|
|
16
|
+
* An array of tag names that should not be autoclosed.
|
|
17
|
+
* `indentTags` (default is block tags for HTML, none for XML)
|
|
18
|
+
* An array of tag names that should, when opened, cause a
|
|
19
|
+
* blank line to be added inside the tag, and the blank line and
|
|
20
|
+
* closing line to be indented.
|
|
21
|
+
*
|
|
22
|
+
* See demos/closetag.html for a usage example.
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
(function() {
|
|
26
|
+
CodeMirror.defineOption("autoCloseTags", false, function(cm, val, old) {
|
|
27
|
+
if (old != CodeMirror.Init && old)
|
|
28
|
+
cm.removeKeyMap("autoCloseTags");
|
|
29
|
+
if (!val) return;
|
|
30
|
+
var map = {name: "autoCloseTags"};
|
|
31
|
+
if (typeof val != "object" || val.whenClosing)
|
|
32
|
+
map["'/'"] = function(cm) { return autoCloseSlash(cm); };
|
|
33
|
+
if (typeof val != "object" || val.whenOpening)
|
|
34
|
+
map["'>'"] = function(cm) { return autoCloseGT(cm); };
|
|
35
|
+
cm.addKeyMap(map);
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
var htmlDontClose = ["area", "base", "br", "col", "command", "embed", "hr", "img", "input", "keygen", "link", "meta", "param",
|
|
39
|
+
"source", "track", "wbr"];
|
|
40
|
+
var htmlIndent = ["applet", "blockquote", "body", "button", "div", "dl", "fieldset", "form", "frameset", "h1", "h2", "h3", "h4",
|
|
41
|
+
"h5", "h6", "head", "html", "iframe", "layer", "legend", "object", "ol", "p", "select", "table", "ul"];
|
|
42
|
+
|
|
43
|
+
function autoCloseGT(cm) {
|
|
44
|
+
var pos = cm.getCursor(), tok = cm.getTokenAt(pos);
|
|
45
|
+
var inner = CodeMirror.innerMode(cm.getMode(), tok.state), state = inner.state;
|
|
46
|
+
if (inner.mode.name != "xml" || !state.tagName) return CodeMirror.Pass;
|
|
47
|
+
|
|
48
|
+
var opt = cm.getOption("autoCloseTags"), html = inner.mode.configuration == "html";
|
|
49
|
+
var dontCloseTags = (typeof opt == "object" && opt.dontCloseTags) || (html && htmlDontClose);
|
|
50
|
+
var indentTags = (typeof opt == "object" && opt.indentTags) || (html && htmlIndent);
|
|
51
|
+
|
|
52
|
+
var tagName = state.tagName;
|
|
53
|
+
if (tok.end > pos.ch) tagName = tagName.slice(0, tagName.length - tok.end + pos.ch);
|
|
54
|
+
var lowerTagName = tagName.toLowerCase();
|
|
55
|
+
// Don't process the '>' at the end of an end-tag or self-closing tag
|
|
56
|
+
if (tok.type == "string" && (tok.end != pos.ch || !/[\"\']/.test(tok.string.charAt(tok.string.length - 1)) || tok.string.length == 1) ||
|
|
57
|
+
tok.type == "tag" && state.type == "closeTag" ||
|
|
58
|
+
tok.string.indexOf("/") == (tok.string.length - 1) || // match something like <someTagName />
|
|
59
|
+
dontCloseTags && indexOf(dontCloseTags, lowerTagName) > -1)
|
|
60
|
+
return CodeMirror.Pass;
|
|
61
|
+
|
|
62
|
+
var doIndent = indentTags && indexOf(indentTags, lowerTagName) > -1;
|
|
63
|
+
var curPos = doIndent ? CodeMirror.Pos(pos.line + 1, 0) : CodeMirror.Pos(pos.line, pos.ch + 1);
|
|
64
|
+
cm.replaceSelection(">" + (doIndent ? "\n\n" : "") + "</" + tagName + ">",
|
|
65
|
+
{head: curPos, anchor: curPos});
|
|
66
|
+
if (doIndent) {
|
|
67
|
+
cm.indentLine(pos.line + 1);
|
|
68
|
+
cm.indentLine(pos.line + 2);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
function autoCloseSlash(cm) {
|
|
73
|
+
var pos = cm.getCursor(), tok = cm.getTokenAt(pos);
|
|
74
|
+
var inner = CodeMirror.innerMode(cm.getMode(), tok.state), state = inner.state;
|
|
75
|
+
if (tok.type == "string" || tok.string.charAt(0) != "<" ||
|
|
76
|
+
tok.start != pos.ch - 1 || inner.mode.name != "xml")
|
|
77
|
+
return CodeMirror.Pass;
|
|
78
|
+
|
|
79
|
+
var tagName = state.context && state.context.tagName;
|
|
80
|
+
if (tagName) cm.replaceSelection("/" + tagName + ">", "end");
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
function indexOf(collection, elt) {
|
|
84
|
+
if (collection.indexOf) return collection.indexOf(elt);
|
|
85
|
+
for (var i = 0, e = collection.length; i < e; ++i)
|
|
86
|
+
if (collection[i] == elt) return i;
|
|
87
|
+
return -1;
|
|
88
|
+
}
|
|
89
|
+
})();
|