swagr 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/swagr +15 -0
- data/examples/examples01/app.rb +6 -2
- data/examples/examples01/coffee/data_port.coffee +2 -0
- data/examples/examples01/static/css/codemirror.css +1247 -0
- data/examples/examples01/static/js/codemirror-compressed-3-0.js +5 -0
- data/examples/examples01/static/js/codemirror/keymap/emacs.js +30 -0
- data/examples/examples01/static/js/codemirror/keymap/vim.js +2298 -0
- data/examples/examples01/static/js/codemirror/lib/codemirror.css +239 -0
- data/examples/examples01/static/js/codemirror/lib/codemirror.js +4553 -0
- data/examples/examples01/static/js/codemirror/lib/util/closetag.js +85 -0
- data/examples/examples01/static/js/codemirror/lib/util/colorize.js +29 -0
- data/examples/examples01/static/js/codemirror/lib/util/continuecomment.js +36 -0
- data/examples/examples01/static/js/codemirror/lib/util/continuelist.js +28 -0
- data/examples/examples01/static/js/codemirror/lib/util/dialog.css +32 -0
- data/examples/examples01/static/js/codemirror/lib/util/dialog.js +75 -0
- data/examples/examples01/static/js/codemirror/lib/util/foldcode.js +182 -0
- data/examples/examples01/static/js/codemirror/lib/util/formatting.js +108 -0
- data/examples/examples01/static/js/codemirror/lib/util/javascript-hint.js +137 -0
- data/examples/examples01/static/js/codemirror/lib/util/loadmode.js +51 -0
- data/examples/examples01/static/js/codemirror/lib/util/match-highlighter.js +46 -0
- data/examples/examples01/static/js/codemirror/lib/util/matchbrackets.js +63 -0
- data/examples/examples01/static/js/codemirror/lib/util/multiplex.js +95 -0
- data/examples/examples01/static/js/codemirror/lib/util/overlay.js +59 -0
- data/examples/examples01/static/js/codemirror/lib/util/pig-hint.js +117 -0
- data/examples/examples01/static/js/codemirror/lib/util/runmode-standalone.js +90 -0
- data/examples/examples01/static/js/codemirror/lib/util/runmode.js +52 -0
- data/examples/examples01/static/js/codemirror/lib/util/search.js +119 -0
- data/examples/examples01/static/js/codemirror/lib/util/searchcursor.js +119 -0
- data/examples/examples01/static/js/codemirror/lib/util/simple-hint.css +16 -0
- data/examples/examples01/static/js/codemirror/lib/util/simple-hint.js +102 -0
- data/examples/examples01/static/js/codemirror/lib/util/xml-hint.js +131 -0
- data/examples/examples01/static/js/codemirror/mode/clike/clike.js +300 -0
- data/examples/examples01/static/js/codemirror/mode/clike/index.html +103 -0
- data/examples/examples01/static/js/codemirror/mode/clike/scala.html +767 -0
- data/examples/examples01/static/js/codemirror/mode/clojure/clojure.js +206 -0
- data/examples/examples01/static/js/codemirror/mode/clojure/index.html +67 -0
- data/examples/examples01/static/js/codemirror/mode/coffeescript/LICENSE +22 -0
- data/examples/examples01/static/js/codemirror/mode/coffeescript/coffeescript.js +346 -0
- data/examples/examples01/static/js/codemirror/mode/coffeescript/index.html +728 -0
- data/examples/examples01/static/js/codemirror/mode/commonlisp/commonlisp.js +101 -0
- data/examples/examples01/static/js/codemirror/mode/commonlisp/index.html +165 -0
- data/examples/examples01/static/js/codemirror/mode/css/css.js +465 -0
- data/examples/examples01/static/js/codemirror/mode/css/index.html +58 -0
- data/examples/examples01/static/js/codemirror/mode/css/test.js +501 -0
- data/examples/examples01/static/js/codemirror/mode/diff/diff.js +32 -0
- data/examples/examples01/static/js/codemirror/mode/diff/index.html +105 -0
- data/examples/examples01/static/js/codemirror/mode/ecl/ecl.js +192 -0
- data/examples/examples01/static/js/codemirror/mode/ecl/index.html +39 -0
- data/examples/examples01/static/js/codemirror/mode/erlang/erlang.js +463 -0
- data/examples/examples01/static/js/codemirror/mode/erlang/index.html +64 -0
- data/examples/examples01/static/js/codemirror/mode/gfm/gfm.js +94 -0
- data/examples/examples01/static/js/codemirror/mode/gfm/index.html +70 -0
- data/examples/examples01/static/js/codemirror/mode/gfm/test.js +225 -0
- data/examples/examples01/static/js/codemirror/mode/go/go.js +165 -0
- data/examples/examples01/static/js/codemirror/mode/go/index.html +74 -0
- data/examples/examples01/static/js/codemirror/mode/groovy/groovy.js +210 -0
- data/examples/examples01/static/js/codemirror/mode/groovy/index.html +73 -0
- data/examples/examples01/static/js/codemirror/mode/haskell/haskell.js +242 -0
- data/examples/examples01/static/js/codemirror/mode/haskell/index.html +62 -0
- data/examples/examples01/static/js/codemirror/mode/haxe/haxe.js +429 -0
- data/examples/examples01/static/js/codemirror/mode/haxe/index.html +90 -0
- data/examples/examples01/static/js/codemirror/mode/htmlembedded/htmlembedded.js +73 -0
- data/examples/examples01/static/js/codemirror/mode/htmlembedded/index.html +49 -0
- data/examples/examples01/static/js/codemirror/mode/htmlmixed/htmlmixed.js +84 -0
- data/examples/examples01/static/js/codemirror/mode/htmlmixed/index.html +52 -0
- data/examples/examples01/static/js/codemirror/mode/http/http.js +98 -0
- data/examples/examples01/static/js/codemirror/mode/http/index.html +32 -0
- data/examples/examples01/static/js/codemirror/mode/javascript/index.html +88 -0
- data/examples/examples01/static/js/codemirror/mode/javascript/javascript.js +411 -0
- data/examples/examples01/static/js/codemirror/mode/javascript/typescript.html +48 -0
- data/examples/examples01/static/js/codemirror/mode/jinja2/index.html +38 -0
- data/examples/examples01/static/js/codemirror/mode/jinja2/jinja2.js +42 -0
- data/examples/examples01/static/js/codemirror/mode/less/index.html +741 -0
- data/examples/examples01/static/js/codemirror/mode/less/less.js +266 -0
- data/examples/examples01/static/js/codemirror/mode/lua/index.html +74 -0
- data/examples/examples01/static/js/codemirror/mode/lua/lua.js +140 -0
- data/examples/examples01/static/js/codemirror/mode/markdown/index.html +344 -0
- data/examples/examples01/static/js/codemirror/mode/markdown/markdown.js +474 -0
- data/examples/examples01/static/js/codemirror/mode/markdown/test.js +1266 -0
- data/examples/examples01/static/js/codemirror/mode/mysql/index.html +41 -0
- data/examples/examples01/static/js/codemirror/mode/mysql/mysql.js +203 -0
- data/examples/examples01/static/js/codemirror/mode/ntriples/index.html +33 -0
- data/examples/examples01/static/js/codemirror/mode/ntriples/ntriples.js +170 -0
- data/examples/examples01/static/js/codemirror/mode/ocaml/index.html +131 -0
- data/examples/examples01/static/js/codemirror/mode/ocaml/ocaml.js +113 -0
- data/examples/examples01/static/js/codemirror/mode/pascal/LICENSE +7 -0
- data/examples/examples01/static/js/codemirror/mode/pascal/index.html +48 -0
- data/examples/examples01/static/js/codemirror/mode/pascal/pascal.js +94 -0
- data/examples/examples01/static/js/codemirror/mode/perl/LICENSE +19 -0
- data/examples/examples01/static/js/codemirror/mode/perl/index.html +62 -0
- data/examples/examples01/static/js/codemirror/mode/perl/perl.js +816 -0
- data/examples/examples01/static/js/codemirror/mode/php/index.html +51 -0
- data/examples/examples01/static/js/codemirror/mode/php/php.js +129 -0
- data/examples/examples01/static/js/codemirror/mode/pig/index.html +42 -0
- data/examples/examples01/static/js/codemirror/mode/pig/pig.js +171 -0
- data/examples/examples01/static/js/codemirror/mode/plsql/index.html +62 -0
- data/examples/examples01/static/js/codemirror/mode/plsql/plsql.js +216 -0
- data/examples/examples01/static/js/codemirror/mode/properties/index.html +41 -0
- data/examples/examples01/static/js/codemirror/mode/properties/properties.js +63 -0
- data/examples/examples01/static/js/codemirror/mode/python/LICENSE.txt +21 -0
- data/examples/examples01/static/js/codemirror/mode/python/index.html +124 -0
- data/examples/examples01/static/js/codemirror/mode/python/python.js +340 -0
- data/examples/examples01/static/js/codemirror/mode/r/LICENSE +24 -0
- data/examples/examples01/static/js/codemirror/mode/r/index.html +74 -0
- data/examples/examples01/static/js/codemirror/mode/r/r.js +141 -0
- data/examples/examples01/static/js/codemirror/mode/rpm/changes/changes.js +19 -0
- data/examples/examples01/static/js/codemirror/mode/rpm/changes/index.html +53 -0
- data/examples/examples01/static/js/codemirror/mode/rpm/spec/index.html +99 -0
- data/examples/examples01/static/js/codemirror/mode/rpm/spec/spec.css +5 -0
- data/examples/examples01/static/js/codemirror/mode/rpm/spec/spec.js +66 -0
- data/examples/examples01/static/js/codemirror/mode/rst/index.html +526 -0
- data/examples/examples01/static/js/codemirror/mode/rst/rst.js +314 -0
- data/examples/examples01/static/js/codemirror/mode/ruby/LICENSE +24 -0
- data/examples/examples01/static/js/codemirror/mode/ruby/index.html +173 -0
- data/examples/examples01/static/js/codemirror/mode/ruby/ruby.js +195 -0
- data/examples/examples01/static/js/codemirror/mode/rust/index.html +48 -0
- data/examples/examples01/static/js/codemirror/mode/rust/rust.js +432 -0
- data/examples/examples01/static/js/codemirror/mode/scheme/index.html +65 -0
- data/examples/examples01/static/js/codemirror/mode/scheme/scheme.js +230 -0
- data/examples/examples01/static/js/codemirror/mode/shell/index.html +51 -0
- data/examples/examples01/static/js/codemirror/mode/shell/shell.js +118 -0
- data/examples/examples01/static/js/codemirror/mode/sieve/LICENSE +23 -0
- data/examples/examples01/static/js/codemirror/mode/sieve/index.html +81 -0
- data/examples/examples01/static/js/codemirror/mode/sieve/sieve.js +156 -0
- data/examples/examples01/static/js/codemirror/mode/smalltalk/index.html +57 -0
- data/examples/examples01/static/js/codemirror/mode/smalltalk/smalltalk.js +139 -0
- data/examples/examples01/static/js/codemirror/mode/smarty/index.html +83 -0
- data/examples/examples01/static/js/codemirror/mode/smarty/smarty.js +148 -0
- data/examples/examples01/static/js/codemirror/mode/sparql/index.html +42 -0
- data/examples/examples01/static/js/codemirror/mode/sparql/sparql.js +143 -0
- data/examples/examples01/static/js/codemirror/mode/stex/index.html +98 -0
- data/examples/examples01/static/js/codemirror/mode/stex/stex.js +175 -0
- data/examples/examples01/static/js/codemirror/mode/stex/test.js +343 -0
- data/examples/examples01/static/js/codemirror/mode/tiddlywiki/index.html +142 -0
- data/examples/examples01/static/js/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
- data/examples/examples01/static/js/codemirror/mode/tiddlywiki/tiddlywiki.js +353 -0
- data/examples/examples01/static/js/codemirror/mode/tiki/index.html +81 -0
- data/examples/examples01/static/js/codemirror/mode/tiki/tiki.css +26 -0
- data/examples/examples01/static/js/codemirror/mode/tiki/tiki.js +309 -0
- data/examples/examples01/static/js/codemirror/mode/vb/LICENSE.txt +21 -0
- data/examples/examples01/static/js/codemirror/mode/vb/index.html +88 -0
- data/examples/examples01/static/js/codemirror/mode/vb/vb.js +260 -0
- data/examples/examples01/static/js/codemirror/mode/vbscript/index.html +42 -0
- data/examples/examples01/static/js/codemirror/mode/vbscript/vbscript.js +26 -0
- data/examples/examples01/static/js/codemirror/mode/velocity/index.html +103 -0
- data/examples/examples01/static/js/codemirror/mode/velocity/velocity.js +144 -0
- data/examples/examples01/static/js/codemirror/mode/verilog/index.html +210 -0
- data/examples/examples01/static/js/codemirror/mode/verilog/verilog.js +182 -0
- data/examples/examples01/static/js/codemirror/mode/xml/index.html +45 -0
- data/examples/examples01/static/js/codemirror/mode/xml/xml.js +324 -0
- data/examples/examples01/static/js/codemirror/mode/xquery/LICENSE +20 -0
- data/examples/examples01/static/js/codemirror/mode/xquery/index.html +221 -0
- data/examples/examples01/static/js/codemirror/mode/xquery/test.js +77 -0
- data/examples/examples01/static/js/codemirror/mode/xquery/xquery.js +450 -0
- data/examples/examples01/static/js/codemirror/mode/yaml/index.html +68 -0
- data/examples/examples01/static/js/codemirror/mode/yaml/yaml.js +95 -0
- data/examples/examples01/static/js/codemirror/mode/z80/index.html +39 -0
- data/examples/examples01/static/js/codemirror/mode/z80/z80.js +113 -0
- data/examples/examples01/static/js/codemirror/theme/ambiance-mobile.css +6 -0
- data/examples/examples01/static/js/codemirror/theme/ambiance.css +76 -0
- data/examples/examples01/static/js/codemirror/theme/blackboard.css +25 -0
- data/examples/examples01/static/js/codemirror/theme/cobalt.css +18 -0
- data/examples/examples01/static/js/codemirror/theme/eclipse.css +25 -0
- data/examples/examples01/static/js/codemirror/theme/elegant.css +10 -0
- data/examples/examples01/static/js/codemirror/theme/erlang-dark.css +21 -0
- data/examples/examples01/static/js/codemirror/theme/lesser-dark.css +44 -0
- data/examples/examples01/static/js/codemirror/theme/monokai.css +28 -0
- data/examples/examples01/static/js/codemirror/theme/neat.css +9 -0
- data/examples/examples01/static/js/codemirror/theme/night.css +21 -0
- data/examples/examples01/static/js/codemirror/theme/rubyblue.css +21 -0
- data/examples/examples01/static/js/codemirror/theme/solarized.css +207 -0
- data/examples/examples01/static/js/codemirror/theme/twilight.css +26 -0
- data/examples/examples01/static/js/codemirror/theme/vibrant-ink.css +27 -0
- data/examples/examples01/static/js/codemirror/theme/xq-dark.css +46 -0
- data/examples/examples01/static/js/d3.v3.min.js +2 -2
- data/examples/examples01/static/test/cm.html +33 -0
- data/examples/examples01/views/about.slim +15 -0
- data/examples/examples01/views/index.slim +1 -1
- data/examples/examples01/views/layout.slim +1 -0
- data/examples/examples01/views/layout_cm.slim +17 -0
- data/examples/examples01/views/navbar.slim +4 -4
- data/lib/swagr/version.rb +1 -1
- data/templates/app.rb +4 -0
- data/templates/static/js/codemirror/keymap/emacs.js +30 -0
- data/templates/static/js/codemirror/keymap/vim.js +2298 -0
- data/templates/static/js/codemirror/lib/codemirror.css +239 -0
- data/templates/static/js/codemirror/lib/codemirror.js +4553 -0
- data/templates/static/js/codemirror/lib/util/closetag.js +85 -0
- data/templates/static/js/codemirror/lib/util/colorize.js +29 -0
- data/templates/static/js/codemirror/lib/util/continuecomment.js +36 -0
- data/templates/static/js/codemirror/lib/util/continuelist.js +28 -0
- data/templates/static/js/codemirror/lib/util/dialog.css +32 -0
- data/templates/static/js/codemirror/lib/util/dialog.js +75 -0
- data/templates/static/js/codemirror/lib/util/foldcode.js +182 -0
- data/templates/static/js/codemirror/lib/util/formatting.js +108 -0
- data/templates/static/js/codemirror/lib/util/javascript-hint.js +137 -0
- data/templates/static/js/codemirror/lib/util/loadmode.js +51 -0
- data/templates/static/js/codemirror/lib/util/match-highlighter.js +46 -0
- data/templates/static/js/codemirror/lib/util/matchbrackets.js +63 -0
- data/templates/static/js/codemirror/lib/util/multiplex.js +95 -0
- data/templates/static/js/codemirror/lib/util/overlay.js +59 -0
- data/templates/static/js/codemirror/lib/util/pig-hint.js +117 -0
- data/templates/static/js/codemirror/lib/util/runmode-standalone.js +90 -0
- data/templates/static/js/codemirror/lib/util/runmode.js +52 -0
- data/templates/static/js/codemirror/lib/util/search.js +119 -0
- data/templates/static/js/codemirror/lib/util/searchcursor.js +119 -0
- data/templates/static/js/codemirror/lib/util/simple-hint.css +16 -0
- data/templates/static/js/codemirror/lib/util/simple-hint.js +102 -0
- data/templates/static/js/codemirror/lib/util/xml-hint.js +131 -0
- data/templates/static/js/codemirror/mode/clike/clike.js +300 -0
- data/templates/static/js/codemirror/mode/clike/index.html +103 -0
- data/templates/static/js/codemirror/mode/clike/scala.html +767 -0
- data/templates/static/js/codemirror/mode/clojure/clojure.js +206 -0
- data/templates/static/js/codemirror/mode/clojure/index.html +67 -0
- data/templates/static/js/codemirror/mode/coffeescript/LICENSE +22 -0
- data/templates/static/js/codemirror/mode/coffeescript/coffeescript.js +346 -0
- data/templates/static/js/codemirror/mode/coffeescript/index.html +728 -0
- data/templates/static/js/codemirror/mode/commonlisp/commonlisp.js +101 -0
- data/templates/static/js/codemirror/mode/commonlisp/index.html +165 -0
- data/templates/static/js/codemirror/mode/css/css.js +465 -0
- data/templates/static/js/codemirror/mode/css/index.html +58 -0
- data/templates/static/js/codemirror/mode/css/test.js +501 -0
- data/templates/static/js/codemirror/mode/diff/diff.js +32 -0
- data/templates/static/js/codemirror/mode/diff/index.html +105 -0
- data/templates/static/js/codemirror/mode/ecl/ecl.js +192 -0
- data/templates/static/js/codemirror/mode/ecl/index.html +39 -0
- data/templates/static/js/codemirror/mode/erlang/erlang.js +463 -0
- data/templates/static/js/codemirror/mode/erlang/index.html +64 -0
- data/templates/static/js/codemirror/mode/gfm/gfm.js +94 -0
- data/templates/static/js/codemirror/mode/gfm/index.html +70 -0
- data/templates/static/js/codemirror/mode/gfm/test.js +225 -0
- data/templates/static/js/codemirror/mode/go/go.js +165 -0
- data/templates/static/js/codemirror/mode/go/index.html +74 -0
- data/templates/static/js/codemirror/mode/groovy/groovy.js +210 -0
- data/templates/static/js/codemirror/mode/groovy/index.html +73 -0
- data/templates/static/js/codemirror/mode/haskell/haskell.js +242 -0
- data/templates/static/js/codemirror/mode/haskell/index.html +62 -0
- data/templates/static/js/codemirror/mode/haxe/haxe.js +429 -0
- data/templates/static/js/codemirror/mode/haxe/index.html +90 -0
- data/templates/static/js/codemirror/mode/htmlembedded/htmlembedded.js +73 -0
- data/templates/static/js/codemirror/mode/htmlembedded/index.html +49 -0
- data/templates/static/js/codemirror/mode/htmlmixed/htmlmixed.js +84 -0
- data/templates/static/js/codemirror/mode/htmlmixed/index.html +52 -0
- data/templates/static/js/codemirror/mode/http/http.js +98 -0
- data/templates/static/js/codemirror/mode/http/index.html +32 -0
- data/templates/static/js/codemirror/mode/javascript/index.html +88 -0
- data/templates/static/js/codemirror/mode/javascript/javascript.js +411 -0
- data/templates/static/js/codemirror/mode/javascript/typescript.html +48 -0
- data/templates/static/js/codemirror/mode/jinja2/index.html +38 -0
- data/templates/static/js/codemirror/mode/jinja2/jinja2.js +42 -0
- data/templates/static/js/codemirror/mode/less/index.html +741 -0
- data/templates/static/js/codemirror/mode/less/less.js +266 -0
- data/templates/static/js/codemirror/mode/lua/index.html +74 -0
- data/templates/static/js/codemirror/mode/lua/lua.js +140 -0
- data/templates/static/js/codemirror/mode/markdown/index.html +344 -0
- data/templates/static/js/codemirror/mode/markdown/markdown.js +474 -0
- data/templates/static/js/codemirror/mode/markdown/test.js +1266 -0
- data/templates/static/js/codemirror/mode/mysql/index.html +41 -0
- data/templates/static/js/codemirror/mode/mysql/mysql.js +203 -0
- data/templates/static/js/codemirror/mode/ntriples/index.html +33 -0
- data/templates/static/js/codemirror/mode/ntriples/ntriples.js +170 -0
- data/templates/static/js/codemirror/mode/ocaml/index.html +131 -0
- data/templates/static/js/codemirror/mode/ocaml/ocaml.js +113 -0
- data/templates/static/js/codemirror/mode/pascal/LICENSE +7 -0
- data/templates/static/js/codemirror/mode/pascal/index.html +48 -0
- data/templates/static/js/codemirror/mode/pascal/pascal.js +94 -0
- data/templates/static/js/codemirror/mode/perl/LICENSE +19 -0
- data/templates/static/js/codemirror/mode/perl/index.html +62 -0
- data/templates/static/js/codemirror/mode/perl/perl.js +816 -0
- data/templates/static/js/codemirror/mode/php/index.html +51 -0
- data/templates/static/js/codemirror/mode/php/php.js +129 -0
- data/templates/static/js/codemirror/mode/pig/index.html +42 -0
- data/templates/static/js/codemirror/mode/pig/pig.js +171 -0
- data/templates/static/js/codemirror/mode/plsql/index.html +62 -0
- data/templates/static/js/codemirror/mode/plsql/plsql.js +216 -0
- data/templates/static/js/codemirror/mode/properties/index.html +41 -0
- data/templates/static/js/codemirror/mode/properties/properties.js +63 -0
- data/templates/static/js/codemirror/mode/python/LICENSE.txt +21 -0
- data/templates/static/js/codemirror/mode/python/index.html +124 -0
- data/templates/static/js/codemirror/mode/python/python.js +340 -0
- data/templates/static/js/codemirror/mode/r/LICENSE +24 -0
- data/templates/static/js/codemirror/mode/r/index.html +74 -0
- data/templates/static/js/codemirror/mode/r/r.js +141 -0
- data/templates/static/js/codemirror/mode/rpm/changes/changes.js +19 -0
- data/templates/static/js/codemirror/mode/rpm/changes/index.html +53 -0
- data/templates/static/js/codemirror/mode/rpm/spec/index.html +99 -0
- data/templates/static/js/codemirror/mode/rpm/spec/spec.css +5 -0
- data/templates/static/js/codemirror/mode/rpm/spec/spec.js +66 -0
- data/templates/static/js/codemirror/mode/rst/index.html +526 -0
- data/templates/static/js/codemirror/mode/rst/rst.js +314 -0
- data/templates/static/js/codemirror/mode/ruby/LICENSE +24 -0
- data/templates/static/js/codemirror/mode/ruby/index.html +173 -0
- data/templates/static/js/codemirror/mode/ruby/ruby.js +195 -0
- data/templates/static/js/codemirror/mode/rust/index.html +48 -0
- data/templates/static/js/codemirror/mode/rust/rust.js +432 -0
- data/templates/static/js/codemirror/mode/scheme/index.html +65 -0
- data/templates/static/js/codemirror/mode/scheme/scheme.js +230 -0
- data/templates/static/js/codemirror/mode/shell/index.html +51 -0
- data/templates/static/js/codemirror/mode/shell/shell.js +118 -0
- data/templates/static/js/codemirror/mode/sieve/LICENSE +23 -0
- data/templates/static/js/codemirror/mode/sieve/index.html +81 -0
- data/templates/static/js/codemirror/mode/sieve/sieve.js +156 -0
- data/templates/static/js/codemirror/mode/smalltalk/index.html +57 -0
- data/templates/static/js/codemirror/mode/smalltalk/smalltalk.js +139 -0
- data/templates/static/js/codemirror/mode/smarty/index.html +83 -0
- data/templates/static/js/codemirror/mode/smarty/smarty.js +148 -0
- data/templates/static/js/codemirror/mode/sparql/index.html +42 -0
- data/templates/static/js/codemirror/mode/sparql/sparql.js +143 -0
- data/templates/static/js/codemirror/mode/stex/index.html +98 -0
- data/templates/static/js/codemirror/mode/stex/stex.js +175 -0
- data/templates/static/js/codemirror/mode/stex/test.js +343 -0
- data/templates/static/js/codemirror/mode/tiddlywiki/index.html +142 -0
- data/templates/static/js/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
- data/templates/static/js/codemirror/mode/tiddlywiki/tiddlywiki.js +353 -0
- data/templates/static/js/codemirror/mode/tiki/index.html +81 -0
- data/templates/static/js/codemirror/mode/tiki/tiki.css +26 -0
- data/templates/static/js/codemirror/mode/tiki/tiki.js +309 -0
- data/templates/static/js/codemirror/mode/vb/LICENSE.txt +21 -0
- data/templates/static/js/codemirror/mode/vb/index.html +88 -0
- data/templates/static/js/codemirror/mode/vb/vb.js +260 -0
- data/templates/static/js/codemirror/mode/vbscript/index.html +42 -0
- data/templates/static/js/codemirror/mode/vbscript/vbscript.js +26 -0
- data/templates/static/js/codemirror/mode/velocity/index.html +103 -0
- data/templates/static/js/codemirror/mode/velocity/velocity.js +144 -0
- data/templates/static/js/codemirror/mode/verilog/index.html +210 -0
- data/templates/static/js/codemirror/mode/verilog/verilog.js +182 -0
- data/templates/static/js/codemirror/mode/xml/index.html +45 -0
- data/templates/static/js/codemirror/mode/xml/xml.js +324 -0
- data/templates/static/js/codemirror/mode/xquery/LICENSE +20 -0
- data/templates/static/js/codemirror/mode/xquery/index.html +221 -0
- data/templates/static/js/codemirror/mode/xquery/test.js +77 -0
- data/templates/static/js/codemirror/mode/xquery/xquery.js +450 -0
- data/templates/static/js/codemirror/mode/yaml/index.html +68 -0
- data/templates/static/js/codemirror/mode/yaml/yaml.js +95 -0
- data/templates/static/js/codemirror/mode/z80/index.html +39 -0
- data/templates/static/js/codemirror/mode/z80/z80.js +113 -0
- data/templates/static/js/codemirror/theme/ambiance-mobile.css +6 -0
- data/templates/static/js/codemirror/theme/ambiance.css +76 -0
- data/templates/static/js/codemirror/theme/blackboard.css +25 -0
- data/templates/static/js/codemirror/theme/cobalt.css +18 -0
- data/templates/static/js/codemirror/theme/eclipse.css +25 -0
- data/templates/static/js/codemirror/theme/elegant.css +10 -0
- data/templates/static/js/codemirror/theme/erlang-dark.css +21 -0
- data/templates/static/js/codemirror/theme/lesser-dark.css +44 -0
- data/templates/static/js/codemirror/theme/monokai.css +28 -0
- data/templates/static/js/codemirror/theme/neat.css +9 -0
- data/templates/static/js/codemirror/theme/night.css +21 -0
- data/templates/static/js/codemirror/theme/rubyblue.css +21 -0
- data/templates/static/js/codemirror/theme/solarized.css +207 -0
- data/templates/static/js/codemirror/theme/twilight.css +26 -0
- data/templates/static/js/codemirror/theme/vibrant-ink.css +27 -0
- data/templates/static/js/codemirror/theme/xq-dark.css +46 -0
- data/templates/static/js/d3.v3.min.js +2 -2
- data/templates/static/test/cm.html +33 -0
- data/templates/views/about.slim +15 -0
- data/templates/views/index.slim +1 -1
- data/templates/views/layout.slim +1 -0
- data/templates/views/navbar.slim +4 -4
- metadata +347 -2
@@ -0,0 +1,59 @@
|
|
1
|
+
// Utility function that allows modes to be combined. The mode given
|
2
|
+
// as the base argument takes care of most of the normal mode
|
3
|
+
// functionality, but a second (typically simple) mode is used, which
|
4
|
+
// can override the style of text. Both modes get to parse all of the
|
5
|
+
// text, but when both assign a non-null style to a piece of code, the
|
6
|
+
// overlay wins, unless the combine argument was true, in which case
|
7
|
+
// the styles are combined.
|
8
|
+
|
9
|
+
// overlayParser is the old, deprecated name
|
10
|
+
CodeMirror.overlayMode = CodeMirror.overlayParser = function(base, overlay, combine) {
|
11
|
+
return {
|
12
|
+
startState: function() {
|
13
|
+
return {
|
14
|
+
base: CodeMirror.startState(base),
|
15
|
+
overlay: CodeMirror.startState(overlay),
|
16
|
+
basePos: 0, baseCur: null,
|
17
|
+
overlayPos: 0, overlayCur: null
|
18
|
+
};
|
19
|
+
},
|
20
|
+
copyState: function(state) {
|
21
|
+
return {
|
22
|
+
base: CodeMirror.copyState(base, state.base),
|
23
|
+
overlay: CodeMirror.copyState(overlay, state.overlay),
|
24
|
+
basePos: state.basePos, baseCur: null,
|
25
|
+
overlayPos: state.overlayPos, overlayCur: null
|
26
|
+
};
|
27
|
+
},
|
28
|
+
|
29
|
+
token: function(stream, state) {
|
30
|
+
if (stream.start == state.basePos) {
|
31
|
+
state.baseCur = base.token(stream, state.base);
|
32
|
+
state.basePos = stream.pos;
|
33
|
+
}
|
34
|
+
if (stream.start == state.overlayPos) {
|
35
|
+
stream.pos = stream.start;
|
36
|
+
state.overlayCur = overlay.token(stream, state.overlay);
|
37
|
+
state.overlayPos = stream.pos;
|
38
|
+
}
|
39
|
+
stream.pos = Math.min(state.basePos, state.overlayPos);
|
40
|
+
if (stream.eol()) state.basePos = state.overlayPos = 0;
|
41
|
+
|
42
|
+
if (state.overlayCur == null) return state.baseCur;
|
43
|
+
if (state.baseCur != null && combine) return state.baseCur + " " + state.overlayCur;
|
44
|
+
else return state.overlayCur;
|
45
|
+
},
|
46
|
+
|
47
|
+
indent: base.indent && function(state, textAfter) {
|
48
|
+
return base.indent(state.base, textAfter);
|
49
|
+
},
|
50
|
+
electricChars: base.electricChars,
|
51
|
+
|
52
|
+
innerMode: function(state) { return {state: state.base, mode: base}; },
|
53
|
+
|
54
|
+
blankLine: function(state) {
|
55
|
+
if (base.blankLine) base.blankLine(state.base);
|
56
|
+
if (overlay.blankLine) overlay.blankLine(state.overlay);
|
57
|
+
}
|
58
|
+
};
|
59
|
+
};
|
@@ -0,0 +1,117 @@
|
|
1
|
+
(function () {
|
2
|
+
function forEach(arr, f) {
|
3
|
+
for (var i = 0, e = arr.length; i < e; ++i) f(arr[i]);
|
4
|
+
}
|
5
|
+
|
6
|
+
function arrayContains(arr, item) {
|
7
|
+
if (!Array.prototype.indexOf) {
|
8
|
+
var i = arr.length;
|
9
|
+
while (i--) {
|
10
|
+
if (arr[i] === item) {
|
11
|
+
return true;
|
12
|
+
}
|
13
|
+
}
|
14
|
+
return false;
|
15
|
+
}
|
16
|
+
return arr.indexOf(item) != -1;
|
17
|
+
}
|
18
|
+
|
19
|
+
function scriptHint(editor, _keywords, getToken) {
|
20
|
+
// Find the token at the cursor
|
21
|
+
var cur = editor.getCursor(), token = getToken(editor, cur), tprop = token;
|
22
|
+
// If it's not a 'word-style' token, ignore the token.
|
23
|
+
|
24
|
+
if (!/^[\w$_]*$/.test(token.string)) {
|
25
|
+
token = tprop = {start: cur.ch, end: cur.ch, string: "", state: token.state,
|
26
|
+
className: token.string == ":" ? "pig-type" : null};
|
27
|
+
}
|
28
|
+
|
29
|
+
if (!context) var context = [];
|
30
|
+
context.push(tprop);
|
31
|
+
|
32
|
+
var completionList = getCompletions(token, context);
|
33
|
+
completionList = completionList.sort();
|
34
|
+
//prevent autocomplete for last word, instead show dropdown with one word
|
35
|
+
if(completionList.length == 1) {
|
36
|
+
completionList.push(" ");
|
37
|
+
}
|
38
|
+
|
39
|
+
return {list: completionList,
|
40
|
+
from: {line: cur.line, ch: token.start},
|
41
|
+
to: {line: cur.line, ch: token.end}};
|
42
|
+
}
|
43
|
+
|
44
|
+
CodeMirror.pigHint = function(editor) {
|
45
|
+
return scriptHint(editor, pigKeywordsU, function (e, cur) {return e.getTokenAt(cur);});
|
46
|
+
};
|
47
|
+
|
48
|
+
var pigKeywords = "VOID IMPORT RETURNS DEFINE LOAD FILTER FOREACH ORDER CUBE DISTINCT COGROUP "
|
49
|
+
+ "JOIN CROSS UNION SPLIT INTO IF OTHERWISE ALL AS BY USING INNER OUTER ONSCHEMA PARALLEL "
|
50
|
+
+ "PARTITION GROUP AND OR NOT GENERATE FLATTEN ASC DESC IS STREAM THROUGH STORE MAPREDUCE "
|
51
|
+
+ "SHIP CACHE INPUT OUTPUT STDERROR STDIN STDOUT LIMIT SAMPLE LEFT RIGHT FULL EQ GT LT GTE LTE "
|
52
|
+
+ "NEQ MATCHES TRUE FALSE";
|
53
|
+
var pigKeywordsU = pigKeywords.split(" ");
|
54
|
+
var pigKeywordsL = pigKeywords.toLowerCase().split(" ");
|
55
|
+
|
56
|
+
var pigTypes = "BOOLEAN INT LONG FLOAT DOUBLE CHARARRAY BYTEARRAY BAG TUPLE MAP";
|
57
|
+
var pigTypesU = pigTypes.split(" ");
|
58
|
+
var pigTypesL = pigTypes.toLowerCase().split(" ");
|
59
|
+
|
60
|
+
var pigBuiltins = "ABS ACOS ARITY ASIN ATAN AVG BAGSIZE BINSTORAGE BLOOM BUILDBLOOM CBRT CEIL "
|
61
|
+
+ "CONCAT COR COS COSH COUNT COUNT_STAR COV CONSTANTSIZE CUBEDIMENSIONS DIFF DISTINCT DOUBLEABS "
|
62
|
+
+ "DOUBLEAVG DOUBLEBASE DOUBLEMAX DOUBLEMIN DOUBLEROUND DOUBLESUM EXP FLOOR FLOATABS FLOATAVG "
|
63
|
+
+ "FLOATMAX FLOATMIN FLOATROUND FLOATSUM GENERICINVOKER INDEXOF INTABS INTAVG INTMAX INTMIN "
|
64
|
+
+ "INTSUM INVOKEFORDOUBLE INVOKEFORFLOAT INVOKEFORINT INVOKEFORLONG INVOKEFORSTRING INVOKER "
|
65
|
+
+ "ISEMPTY JSONLOADER JSONMETADATA JSONSTORAGE LAST_INDEX_OF LCFIRST LOG LOG10 LOWER LONGABS "
|
66
|
+
+ "LONGAVG LONGMAX LONGMIN LONGSUM MAX MIN MAPSIZE MONITOREDUDF NONDETERMINISTIC OUTPUTSCHEMA "
|
67
|
+
+ "PIGSTORAGE PIGSTREAMING RANDOM REGEX_EXTRACT REGEX_EXTRACT_ALL REPLACE ROUND SIN SINH SIZE "
|
68
|
+
+ "SQRT STRSPLIT SUBSTRING SUM STRINGCONCAT STRINGMAX STRINGMIN STRINGSIZE TAN TANH TOBAG "
|
69
|
+
+ "TOKENIZE TOMAP TOP TOTUPLE TRIM TEXTLOADER TUPLESIZE UCFIRST UPPER UTF8STORAGECONVERTER";
|
70
|
+
var pigBuiltinsU = pigBuiltins.split(" ").join("() ").split(" ");
|
71
|
+
var pigBuiltinsL = pigBuiltins.toLowerCase().split(" ").join("() ").split(" ");
|
72
|
+
var pigBuiltinsC = ("BagSize BinStorage Bloom BuildBloom ConstantSize CubeDimensions DoubleAbs "
|
73
|
+
+ "DoubleAvg DoubleBase DoubleMax DoubleMin DoubleRound DoubleSum FloatAbs FloatAvg FloatMax "
|
74
|
+
+ "FloatMin FloatRound FloatSum GenericInvoker IntAbs IntAvg IntMax IntMin IntSum "
|
75
|
+
+ "InvokeForDouble InvokeForFloat InvokeForInt InvokeForLong InvokeForString Invoker "
|
76
|
+
+ "IsEmpty JsonLoader JsonMetadata JsonStorage LongAbs LongAvg LongMax LongMin LongSum MapSize "
|
77
|
+
+ "MonitoredUDF Nondeterministic OutputSchema PigStorage PigStreaming StringConcat StringMax "
|
78
|
+
+ "StringMin StringSize TextLoader TupleSize Utf8StorageConverter").split(" ").join("() ").split(" ");
|
79
|
+
|
80
|
+
function getCompletions(token, context) {
|
81
|
+
var found = [], start = token.string;
|
82
|
+
function maybeAdd(str) {
|
83
|
+
if (str.indexOf(start) == 0 && !arrayContains(found, str)) found.push(str);
|
84
|
+
}
|
85
|
+
|
86
|
+
function gatherCompletions(obj) {
|
87
|
+
if(obj == ":") {
|
88
|
+
forEach(pigTypesL, maybeAdd);
|
89
|
+
}
|
90
|
+
else {
|
91
|
+
forEach(pigBuiltinsU, maybeAdd);
|
92
|
+
forEach(pigBuiltinsL, maybeAdd);
|
93
|
+
forEach(pigBuiltinsC, maybeAdd);
|
94
|
+
forEach(pigTypesU, maybeAdd);
|
95
|
+
forEach(pigTypesL, maybeAdd);
|
96
|
+
forEach(pigKeywordsU, maybeAdd);
|
97
|
+
forEach(pigKeywordsL, maybeAdd);
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
if (context) {
|
102
|
+
// If this is a property, see if it belongs to some object we can
|
103
|
+
// find in the current environment.
|
104
|
+
var obj = context.pop(), base;
|
105
|
+
|
106
|
+
if (obj.type == "variable")
|
107
|
+
base = obj.string;
|
108
|
+
else if(obj.type == "variable-3")
|
109
|
+
base = ":" + obj.string;
|
110
|
+
|
111
|
+
while (base != null && context.length)
|
112
|
+
base = base[context.pop().string];
|
113
|
+
if (base != null) gatherCompletions(base);
|
114
|
+
}
|
115
|
+
return found;
|
116
|
+
}
|
117
|
+
})();
|
@@ -0,0 +1,90 @@
|
|
1
|
+
/* Just enough of CodeMirror to run runMode under node.js */
|
2
|
+
|
3
|
+
function splitLines(string){ return string.split(/\r?\n|\r/); };
|
4
|
+
|
5
|
+
function StringStream(string) {
|
6
|
+
this.pos = this.start = 0;
|
7
|
+
this.string = string;
|
8
|
+
}
|
9
|
+
StringStream.prototype = {
|
10
|
+
eol: function() {return this.pos >= this.string.length;},
|
11
|
+
sol: function() {return this.pos == 0;},
|
12
|
+
peek: function() {return this.string.charAt(this.pos) || null;},
|
13
|
+
next: function() {
|
14
|
+
if (this.pos < this.string.length)
|
15
|
+
return this.string.charAt(this.pos++);
|
16
|
+
},
|
17
|
+
eat: function(match) {
|
18
|
+
var ch = this.string.charAt(this.pos);
|
19
|
+
if (typeof match == "string") var ok = ch == match;
|
20
|
+
else var ok = ch && (match.test ? match.test(ch) : match(ch));
|
21
|
+
if (ok) {++this.pos; return ch;}
|
22
|
+
},
|
23
|
+
eatWhile: function(match) {
|
24
|
+
var start = this.pos;
|
25
|
+
while (this.eat(match)){}
|
26
|
+
return this.pos > start;
|
27
|
+
},
|
28
|
+
eatSpace: function() {
|
29
|
+
var start = this.pos;
|
30
|
+
while (/[\s\u00a0]/.test(this.string.charAt(this.pos))) ++this.pos;
|
31
|
+
return this.pos > start;
|
32
|
+
},
|
33
|
+
skipToEnd: function() {this.pos = this.string.length;},
|
34
|
+
skipTo: function(ch) {
|
35
|
+
var found = this.string.indexOf(ch, this.pos);
|
36
|
+
if (found > -1) {this.pos = found; return true;}
|
37
|
+
},
|
38
|
+
backUp: function(n) {this.pos -= n;},
|
39
|
+
column: function() {return this.start;},
|
40
|
+
indentation: function() {return 0;},
|
41
|
+
match: function(pattern, consume, caseInsensitive) {
|
42
|
+
if (typeof pattern == "string") {
|
43
|
+
function cased(str) {return caseInsensitive ? str.toLowerCase() : str;}
|
44
|
+
if (cased(this.string).indexOf(cased(pattern), this.pos) == this.pos) {
|
45
|
+
if (consume !== false) this.pos += pattern.length;
|
46
|
+
return true;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
else {
|
50
|
+
var match = this.string.slice(this.pos).match(pattern);
|
51
|
+
if (match && consume !== false) this.pos += match[0].length;
|
52
|
+
return match;
|
53
|
+
}
|
54
|
+
},
|
55
|
+
current: function(){return this.string.slice(this.start, this.pos);}
|
56
|
+
};
|
57
|
+
exports.StringStream = StringStream;
|
58
|
+
|
59
|
+
exports.startState = function(mode, a1, a2) {
|
60
|
+
return mode.startState ? mode.startState(a1, a2) : true;
|
61
|
+
};
|
62
|
+
|
63
|
+
var modes = exports.modes = {}, mimeModes = exports.mimeModes = {};
|
64
|
+
exports.defineMode = function(name, mode) { modes[name] = mode; };
|
65
|
+
exports.defineMIME = function(mime, spec) { mimeModes[mime] = spec; };
|
66
|
+
exports.getMode = function(options, spec) {
|
67
|
+
if (typeof spec == "string" && mimeModes.hasOwnProperty(spec))
|
68
|
+
spec = mimeModes[spec];
|
69
|
+
if (typeof spec == "string")
|
70
|
+
var mname = spec, config = {};
|
71
|
+
else if (spec != null)
|
72
|
+
var mname = spec.name, config = spec;
|
73
|
+
var mfactory = modes[mname];
|
74
|
+
if (!mfactory) throw new Error("Unknown mode: " + spec);
|
75
|
+
return mfactory(options, config || {});
|
76
|
+
};
|
77
|
+
|
78
|
+
exports.runMode = function(string, modespec, callback) {
|
79
|
+
var mode = exports.getMode({indentUnit: 2}, modespec);
|
80
|
+
var lines = splitLines(string), state = exports.startState(mode);
|
81
|
+
for (var i = 0, e = lines.length; i < e; ++i) {
|
82
|
+
if (i) callback("\n");
|
83
|
+
var stream = new exports.StringStream(lines[i]);
|
84
|
+
while (!stream.eol()) {
|
85
|
+
var style = mode.token(stream, state);
|
86
|
+
callback(stream.current(), style, i, stream.start);
|
87
|
+
stream.start = stream.pos;
|
88
|
+
}
|
89
|
+
}
|
90
|
+
};
|
@@ -0,0 +1,52 @@
|
|
1
|
+
CodeMirror.runMode = function(string, modespec, callback, options) {
|
2
|
+
var mode = CodeMirror.getMode(CodeMirror.defaults, modespec);
|
3
|
+
|
4
|
+
if (callback.nodeType == 1) {
|
5
|
+
var tabSize = (options && options.tabSize) || CodeMirror.defaults.tabSize;
|
6
|
+
var node = callback, col = 0;
|
7
|
+
node.innerHTML = "";
|
8
|
+
callback = function(text, style) {
|
9
|
+
if (text == "\n") {
|
10
|
+
node.appendChild(document.createElement("br"));
|
11
|
+
col = 0;
|
12
|
+
return;
|
13
|
+
}
|
14
|
+
var content = "";
|
15
|
+
// replace tabs
|
16
|
+
for (var pos = 0;;) {
|
17
|
+
var idx = text.indexOf("\t", pos);
|
18
|
+
if (idx == -1) {
|
19
|
+
content += text.slice(pos);
|
20
|
+
col += text.length - pos;
|
21
|
+
break;
|
22
|
+
} else {
|
23
|
+
col += idx - pos;
|
24
|
+
content += text.slice(pos, idx);
|
25
|
+
var size = tabSize - col % tabSize;
|
26
|
+
col += size;
|
27
|
+
for (var i = 0; i < size; ++i) content += " ";
|
28
|
+
pos = idx + 1;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
if (style) {
|
33
|
+
var sp = node.appendChild(document.createElement("span"));
|
34
|
+
sp.className = "cm-" + style.replace(/ +/g, " cm-");
|
35
|
+
sp.appendChild(document.createTextNode(content));
|
36
|
+
} else {
|
37
|
+
node.appendChild(document.createTextNode(content));
|
38
|
+
}
|
39
|
+
};
|
40
|
+
}
|
41
|
+
|
42
|
+
var lines = CodeMirror.splitLines(string), state = CodeMirror.startState(mode);
|
43
|
+
for (var i = 0, e = lines.length; i < e; ++i) {
|
44
|
+
if (i) callback("\n");
|
45
|
+
var stream = new CodeMirror.StringStream(lines[i]);
|
46
|
+
while (!stream.eol()) {
|
47
|
+
var style = mode.token(stream, state);
|
48
|
+
callback(stream.current(), style, i, stream.start);
|
49
|
+
stream.start = stream.pos;
|
50
|
+
}
|
51
|
+
}
|
52
|
+
};
|
@@ -0,0 +1,119 @@
|
|
1
|
+
// Define search commands. Depends on dialog.js or another
|
2
|
+
// implementation of the openDialog method.
|
3
|
+
|
4
|
+
// Replace works a little oddly -- it will do the replace on the next
|
5
|
+
// Ctrl-G (or whatever is bound to findNext) press. You prevent a
|
6
|
+
// replace by making sure the match is no longer selected when hitting
|
7
|
+
// Ctrl-G.
|
8
|
+
|
9
|
+
(function() {
|
10
|
+
function SearchState() {
|
11
|
+
this.posFrom = this.posTo = this.query = null;
|
12
|
+
this.marked = [];
|
13
|
+
}
|
14
|
+
function getSearchState(cm) {
|
15
|
+
return cm._searchState || (cm._searchState = new SearchState());
|
16
|
+
}
|
17
|
+
function getSearchCursor(cm, query, pos) {
|
18
|
+
// Heuristic: if the query string is all lowercase, do a case insensitive search.
|
19
|
+
return cm.getSearchCursor(query, pos, typeof query == "string" && query == query.toLowerCase());
|
20
|
+
}
|
21
|
+
function dialog(cm, text, shortText, f) {
|
22
|
+
if (cm.openDialog) cm.openDialog(text, f);
|
23
|
+
else f(prompt(shortText, ""));
|
24
|
+
}
|
25
|
+
function confirmDialog(cm, text, shortText, fs) {
|
26
|
+
if (cm.openConfirm) cm.openConfirm(text, fs);
|
27
|
+
else if (confirm(shortText)) fs[0]();
|
28
|
+
}
|
29
|
+
function parseQuery(query) {
|
30
|
+
var isRE = query.match(/^\/(.*)\/([a-z]*)$/);
|
31
|
+
return isRE ? new RegExp(isRE[1], isRE[2].indexOf("i") == -1 ? "" : "i") : query;
|
32
|
+
}
|
33
|
+
var queryDialog =
|
34
|
+
'Search: <input type="text" style="width: 10em"/> <span style="color: #888">(Use /re/ syntax for regexp search)</span>';
|
35
|
+
function doSearch(cm, rev) {
|
36
|
+
var state = getSearchState(cm);
|
37
|
+
if (state.query) return findNext(cm, rev);
|
38
|
+
dialog(cm, queryDialog, "Search for:", function(query) {
|
39
|
+
cm.operation(function() {
|
40
|
+
if (!query || state.query) return;
|
41
|
+
state.query = parseQuery(query);
|
42
|
+
if (cm.lineCount() < 2000) { // This is too expensive on big documents.
|
43
|
+
for (var cursor = getSearchCursor(cm, state.query); cursor.findNext();)
|
44
|
+
state.marked.push(cm.markText(cursor.from(), cursor.to(),
|
45
|
+
{className: "CodeMirror-searching"}));
|
46
|
+
}
|
47
|
+
state.posFrom = state.posTo = cm.getCursor();
|
48
|
+
findNext(cm, rev);
|
49
|
+
});
|
50
|
+
});
|
51
|
+
}
|
52
|
+
function findNext(cm, rev) {cm.operation(function() {
|
53
|
+
var state = getSearchState(cm);
|
54
|
+
var cursor = getSearchCursor(cm, state.query, rev ? state.posFrom : state.posTo);
|
55
|
+
if (!cursor.find(rev)) {
|
56
|
+
cursor = getSearchCursor(cm, state.query, rev ? {line: cm.lineCount() - 1} : {line: 0, ch: 0});
|
57
|
+
if (!cursor.find(rev)) return;
|
58
|
+
}
|
59
|
+
cm.setSelection(cursor.from(), cursor.to());
|
60
|
+
state.posFrom = cursor.from(); state.posTo = cursor.to();
|
61
|
+
});}
|
62
|
+
function clearSearch(cm) {cm.operation(function() {
|
63
|
+
var state = getSearchState(cm);
|
64
|
+
if (!state.query) return;
|
65
|
+
state.query = null;
|
66
|
+
for (var i = 0; i < state.marked.length; ++i) state.marked[i].clear();
|
67
|
+
state.marked.length = 0;
|
68
|
+
});}
|
69
|
+
|
70
|
+
var replaceQueryDialog =
|
71
|
+
'Replace: <input type="text" style="width: 10em"/> <span style="color: #888">(Use /re/ syntax for regexp search)</span>';
|
72
|
+
var replacementQueryDialog = 'With: <input type="text" style="width: 10em"/>';
|
73
|
+
var doReplaceConfirm = "Replace? <button>Yes</button> <button>No</button> <button>Stop</button>";
|
74
|
+
function replace(cm, all) {
|
75
|
+
dialog(cm, replaceQueryDialog, "Replace:", function(query) {
|
76
|
+
if (!query) return;
|
77
|
+
query = parseQuery(query);
|
78
|
+
dialog(cm, replacementQueryDialog, "Replace with:", function(text) {
|
79
|
+
if (all) {
|
80
|
+
cm.operation(function() {
|
81
|
+
for (var cursor = getSearchCursor(cm, query); cursor.findNext();) {
|
82
|
+
if (typeof query != "string") {
|
83
|
+
var match = cm.getRange(cursor.from(), cursor.to()).match(query);
|
84
|
+
cursor.replace(text.replace(/\$(\d)/, function(_, i) {return match[i];}));
|
85
|
+
} else cursor.replace(text);
|
86
|
+
}
|
87
|
+
});
|
88
|
+
} else {
|
89
|
+
clearSearch(cm);
|
90
|
+
var cursor = getSearchCursor(cm, query, cm.getCursor());
|
91
|
+
function advance() {
|
92
|
+
var start = cursor.from(), match;
|
93
|
+
if (!(match = cursor.findNext())) {
|
94
|
+
cursor = getSearchCursor(cm, query);
|
95
|
+
if (!(match = cursor.findNext()) ||
|
96
|
+
(start && cursor.from().line == start.line && cursor.from().ch == start.ch)) return;
|
97
|
+
}
|
98
|
+
cm.setSelection(cursor.from(), cursor.to());
|
99
|
+
confirmDialog(cm, doReplaceConfirm, "Replace?",
|
100
|
+
[function() {doReplace(match);}, advance]);
|
101
|
+
}
|
102
|
+
function doReplace(match) {
|
103
|
+
cursor.replace(typeof query == "string" ? text :
|
104
|
+
text.replace(/\$(\d)/, function(_, i) {return match[i];}));
|
105
|
+
advance();
|
106
|
+
}
|
107
|
+
advance();
|
108
|
+
}
|
109
|
+
});
|
110
|
+
});
|
111
|
+
}
|
112
|
+
|
113
|
+
CodeMirror.commands.find = function(cm) {clearSearch(cm); doSearch(cm);};
|
114
|
+
CodeMirror.commands.findNext = doSearch;
|
115
|
+
CodeMirror.commands.findPrev = function(cm) {doSearch(cm, true);};
|
116
|
+
CodeMirror.commands.clearSearch = clearSearch;
|
117
|
+
CodeMirror.commands.replace = replace;
|
118
|
+
CodeMirror.commands.replaceAll = function(cm) {replace(cm, true);};
|
119
|
+
})();
|
@@ -0,0 +1,119 @@
|
|
1
|
+
(function(){
|
2
|
+
function SearchCursor(cm, query, pos, caseFold) {
|
3
|
+
this.atOccurrence = false; this.cm = cm;
|
4
|
+
if (caseFold == null && typeof query == "string") caseFold = false;
|
5
|
+
|
6
|
+
pos = pos ? cm.clipPos(pos) : {line: 0, ch: 0};
|
7
|
+
this.pos = {from: pos, to: pos};
|
8
|
+
|
9
|
+
// The matches method is filled in based on the type of query.
|
10
|
+
// It takes a position and a direction, and returns an object
|
11
|
+
// describing the next occurrence of the query, or null if no
|
12
|
+
// more matches were found.
|
13
|
+
if (typeof query != "string") { // Regexp match
|
14
|
+
if (!query.global) query = new RegExp(query.source, query.ignoreCase ? "ig" : "g");
|
15
|
+
this.matches = function(reverse, pos) {
|
16
|
+
if (reverse) {
|
17
|
+
query.lastIndex = 0;
|
18
|
+
var line = cm.getLine(pos.line).slice(0, pos.ch), match = query.exec(line), start = 0;
|
19
|
+
while (match) {
|
20
|
+
start += match.index + 1;
|
21
|
+
line = line.slice(start);
|
22
|
+
query.lastIndex = 0;
|
23
|
+
var newmatch = query.exec(line);
|
24
|
+
if (newmatch) match = newmatch;
|
25
|
+
else break;
|
26
|
+
}
|
27
|
+
start--;
|
28
|
+
} else {
|
29
|
+
query.lastIndex = pos.ch;
|
30
|
+
var line = cm.getLine(pos.line), match = query.exec(line),
|
31
|
+
start = match && match.index;
|
32
|
+
}
|
33
|
+
if (match)
|
34
|
+
return {from: {line: pos.line, ch: start},
|
35
|
+
to: {line: pos.line, ch: start + match[0].length},
|
36
|
+
match: match};
|
37
|
+
};
|
38
|
+
} else { // String query
|
39
|
+
if (caseFold) query = query.toLowerCase();
|
40
|
+
var fold = caseFold ? function(str){return str.toLowerCase();} : function(str){return str;};
|
41
|
+
var target = query.split("\n");
|
42
|
+
// Different methods for single-line and multi-line queries
|
43
|
+
if (target.length == 1)
|
44
|
+
this.matches = function(reverse, pos) {
|
45
|
+
var line = fold(cm.getLine(pos.line)), len = query.length, match;
|
46
|
+
if (reverse ? (pos.ch >= len && (match = line.lastIndexOf(query, pos.ch - len)) != -1)
|
47
|
+
: (match = line.indexOf(query, pos.ch)) != -1)
|
48
|
+
return {from: {line: pos.line, ch: match},
|
49
|
+
to: {line: pos.line, ch: match + len}};
|
50
|
+
};
|
51
|
+
else
|
52
|
+
this.matches = function(reverse, pos) {
|
53
|
+
var ln = pos.line, idx = (reverse ? target.length - 1 : 0), match = target[idx], line = fold(cm.getLine(ln));
|
54
|
+
var offsetA = (reverse ? line.indexOf(match) + match.length : line.lastIndexOf(match));
|
55
|
+
if (reverse ? offsetA >= pos.ch || offsetA != match.length
|
56
|
+
: offsetA <= pos.ch || offsetA != line.length - match.length)
|
57
|
+
return;
|
58
|
+
for (;;) {
|
59
|
+
if (reverse ? !ln : ln == cm.lineCount() - 1) return;
|
60
|
+
line = fold(cm.getLine(ln += reverse ? -1 : 1));
|
61
|
+
match = target[reverse ? --idx : ++idx];
|
62
|
+
if (idx > 0 && idx < target.length - 1) {
|
63
|
+
if (line != match) return;
|
64
|
+
else continue;
|
65
|
+
}
|
66
|
+
var offsetB = (reverse ? line.lastIndexOf(match) : line.indexOf(match) + match.length);
|
67
|
+
if (reverse ? offsetB != line.length - match.length : offsetB != match.length)
|
68
|
+
return;
|
69
|
+
var start = {line: pos.line, ch: offsetA}, end = {line: ln, ch: offsetB};
|
70
|
+
return {from: reverse ? end : start, to: reverse ? start : end};
|
71
|
+
}
|
72
|
+
};
|
73
|
+
}
|
74
|
+
}
|
75
|
+
|
76
|
+
SearchCursor.prototype = {
|
77
|
+
findNext: function() {return this.find(false);},
|
78
|
+
findPrevious: function() {return this.find(true);},
|
79
|
+
|
80
|
+
find: function(reverse) {
|
81
|
+
var self = this, pos = this.cm.clipPos(reverse ? this.pos.from : this.pos.to);
|
82
|
+
function savePosAndFail(line) {
|
83
|
+
var pos = {line: line, ch: 0};
|
84
|
+
self.pos = {from: pos, to: pos};
|
85
|
+
self.atOccurrence = false;
|
86
|
+
return false;
|
87
|
+
}
|
88
|
+
|
89
|
+
for (;;) {
|
90
|
+
if (this.pos = this.matches(reverse, pos)) {
|
91
|
+
this.atOccurrence = true;
|
92
|
+
return this.pos.match || true;
|
93
|
+
}
|
94
|
+
if (reverse) {
|
95
|
+
if (!pos.line) return savePosAndFail(0);
|
96
|
+
pos = {line: pos.line-1, ch: this.cm.getLine(pos.line-1).length};
|
97
|
+
}
|
98
|
+
else {
|
99
|
+
var maxLine = this.cm.lineCount();
|
100
|
+
if (pos.line == maxLine - 1) return savePosAndFail(maxLine);
|
101
|
+
pos = {line: pos.line+1, ch: 0};
|
102
|
+
}
|
103
|
+
}
|
104
|
+
},
|
105
|
+
|
106
|
+
from: function() {if (this.atOccurrence) return this.pos.from;},
|
107
|
+
to: function() {if (this.atOccurrence) return this.pos.to;},
|
108
|
+
|
109
|
+
replace: function(newText) {
|
110
|
+
var self = this;
|
111
|
+
if (this.atOccurrence)
|
112
|
+
self.pos.to = this.cm.replaceRange(newText, self.pos.from, self.pos.to);
|
113
|
+
}
|
114
|
+
};
|
115
|
+
|
116
|
+
CodeMirror.defineExtension("getSearchCursor", function(query, pos, caseFold) {
|
117
|
+
return new SearchCursor(this, query, pos, caseFold);
|
118
|
+
});
|
119
|
+
})();
|