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,175 @@
|
|
1
|
+
/*
|
2
|
+
* Author: Constantin Jucovschi (c.jucovschi@jacobs-university.de)
|
3
|
+
* Licence: MIT
|
4
|
+
*/
|
5
|
+
|
6
|
+
CodeMirror.defineMode("stex", function()
|
7
|
+
{
|
8
|
+
function pushCommand(state, command) {
|
9
|
+
state.cmdState.push(command);
|
10
|
+
}
|
11
|
+
|
12
|
+
function peekCommand(state) {
|
13
|
+
if (state.cmdState.length>0)
|
14
|
+
return state.cmdState[state.cmdState.length-1];
|
15
|
+
else
|
16
|
+
return null;
|
17
|
+
}
|
18
|
+
|
19
|
+
function popCommand(state) {
|
20
|
+
if (state.cmdState.length>0) {
|
21
|
+
var plug = state.cmdState.pop();
|
22
|
+
plug.closeBracket();
|
23
|
+
}
|
24
|
+
}
|
25
|
+
|
26
|
+
function applyMostPowerful(state) {
|
27
|
+
var context = state.cmdState;
|
28
|
+
for (var i = context.length - 1; i >= 0; i--) {
|
29
|
+
var plug = context[i];
|
30
|
+
if (plug.name=="DEFAULT")
|
31
|
+
continue;
|
32
|
+
return plug.styleIdentifier();
|
33
|
+
}
|
34
|
+
return null;
|
35
|
+
}
|
36
|
+
|
37
|
+
function addPluginPattern(pluginName, cmdStyle, brackets, styles) {
|
38
|
+
return function () {
|
39
|
+
this.name=pluginName;
|
40
|
+
this.bracketNo = 0;
|
41
|
+
this.style=cmdStyle;
|
42
|
+
this.styles = styles;
|
43
|
+
this.brackets = brackets;
|
44
|
+
|
45
|
+
this.styleIdentifier = function() {
|
46
|
+
if (this.bracketNo<=this.styles.length)
|
47
|
+
return this.styles[this.bracketNo-1];
|
48
|
+
else
|
49
|
+
return null;
|
50
|
+
};
|
51
|
+
this.openBracket = function() {
|
52
|
+
this.bracketNo++;
|
53
|
+
return "bracket";
|
54
|
+
};
|
55
|
+
this.closeBracket = function() {};
|
56
|
+
};
|
57
|
+
}
|
58
|
+
|
59
|
+
var plugins = new Array();
|
60
|
+
|
61
|
+
plugins["importmodule"] = addPluginPattern("importmodule", "tag", "{[", ["string", "builtin"]);
|
62
|
+
plugins["documentclass"] = addPluginPattern("documentclass", "tag", "{[", ["", "atom"]);
|
63
|
+
plugins["usepackage"] = addPluginPattern("documentclass", "tag", "[", ["atom"]);
|
64
|
+
plugins["begin"] = addPluginPattern("documentclass", "tag", "[", ["atom"]);
|
65
|
+
plugins["end"] = addPluginPattern("documentclass", "tag", "[", ["atom"]);
|
66
|
+
|
67
|
+
plugins["DEFAULT"] = function () {
|
68
|
+
this.name="DEFAULT";
|
69
|
+
this.style="tag";
|
70
|
+
|
71
|
+
this.styleIdentifier = this.openBracket = this.closeBracket = function() {};
|
72
|
+
};
|
73
|
+
|
74
|
+
function setState(state, f) {
|
75
|
+
state.f = f;
|
76
|
+
}
|
77
|
+
|
78
|
+
function normal(source, state) {
|
79
|
+
if (source.match(/^\\[a-zA-Z@]+/)) {
|
80
|
+
var cmdName = source.current();
|
81
|
+
cmdName = cmdName.substr(1, cmdName.length-1);
|
82
|
+
var plug;
|
83
|
+
if (plugins.hasOwnProperty(cmdName)) {
|
84
|
+
plug = plugins[cmdName];
|
85
|
+
} else {
|
86
|
+
plug = plugins["DEFAULT"];
|
87
|
+
}
|
88
|
+
plug = new plug();
|
89
|
+
pushCommand(state, plug);
|
90
|
+
setState(state, beginParams);
|
91
|
+
return plug.style;
|
92
|
+
}
|
93
|
+
|
94
|
+
// escape characters
|
95
|
+
if (source.match(/^\\[$&%#{}_]/)) {
|
96
|
+
return "tag";
|
97
|
+
}
|
98
|
+
|
99
|
+
// white space control characters
|
100
|
+
if (source.match(/^\\[,;!\/]/)) {
|
101
|
+
return "tag";
|
102
|
+
}
|
103
|
+
|
104
|
+
var ch = source.next();
|
105
|
+
if (ch == "%") {
|
106
|
+
// special case: % at end of its own line; stay in same state
|
107
|
+
if (!source.eol()) {
|
108
|
+
setState(state, inCComment);
|
109
|
+
}
|
110
|
+
return "comment";
|
111
|
+
}
|
112
|
+
else if (ch=='}' || ch==']') {
|
113
|
+
plug = peekCommand(state);
|
114
|
+
if (plug) {
|
115
|
+
plug.closeBracket(ch);
|
116
|
+
setState(state, beginParams);
|
117
|
+
} else
|
118
|
+
return "error";
|
119
|
+
return "bracket";
|
120
|
+
} else if (ch=='{' || ch=='[') {
|
121
|
+
plug = plugins["DEFAULT"];
|
122
|
+
plug = new plug();
|
123
|
+
pushCommand(state, plug);
|
124
|
+
return "bracket";
|
125
|
+
}
|
126
|
+
else if (/\d/.test(ch)) {
|
127
|
+
source.eatWhile(/[\w.%]/);
|
128
|
+
return "atom";
|
129
|
+
}
|
130
|
+
else {
|
131
|
+
source.eatWhile(/[\w-_]/);
|
132
|
+
return applyMostPowerful(state);
|
133
|
+
}
|
134
|
+
}
|
135
|
+
|
136
|
+
function inCComment(source, state) {
|
137
|
+
source.skipToEnd();
|
138
|
+
setState(state, normal);
|
139
|
+
return "comment";
|
140
|
+
}
|
141
|
+
|
142
|
+
function beginParams(source, state) {
|
143
|
+
var ch = source.peek();
|
144
|
+
if (ch == '{' || ch == '[') {
|
145
|
+
var lastPlug = peekCommand(state);
|
146
|
+
lastPlug.openBracket(ch);
|
147
|
+
source.eat(ch);
|
148
|
+
setState(state, normal);
|
149
|
+
return "bracket";
|
150
|
+
}
|
151
|
+
if (/[ \t\r]/.test(ch)) {
|
152
|
+
source.eat(ch);
|
153
|
+
return null;
|
154
|
+
}
|
155
|
+
setState(state, normal);
|
156
|
+
lastPlug = peekCommand(state);
|
157
|
+
if (lastPlug) {
|
158
|
+
popCommand(state);
|
159
|
+
}
|
160
|
+
return normal(source, state);
|
161
|
+
}
|
162
|
+
|
163
|
+
return {
|
164
|
+
startState: function() { return { f:normal, cmdState:[] }; },
|
165
|
+
copyState: function(s) { return { f: s.f, cmdState: s.cmdState.slice(0, s.cmdState.length) }; },
|
166
|
+
|
167
|
+
token: function(stream, state) {
|
168
|
+
var t = state.f(stream, state);
|
169
|
+
return t;
|
170
|
+
}
|
171
|
+
};
|
172
|
+
});
|
173
|
+
|
174
|
+
CodeMirror.defineMIME("text/x-stex", "stex");
|
175
|
+
CodeMirror.defineMIME("text/x-latex", "stex");
|
@@ -0,0 +1,343 @@
|
|
1
|
+
var MT = ModeTest;
|
2
|
+
MT.modeName = 'stex';
|
3
|
+
MT.modeOptions = {};
|
4
|
+
|
5
|
+
MT.testMode(
|
6
|
+
'word',
|
7
|
+
'foo',
|
8
|
+
[
|
9
|
+
null, 'foo'
|
10
|
+
]
|
11
|
+
);
|
12
|
+
|
13
|
+
MT.testMode(
|
14
|
+
'twoWords',
|
15
|
+
'foo bar',
|
16
|
+
[
|
17
|
+
null, 'foo bar'
|
18
|
+
]
|
19
|
+
);
|
20
|
+
|
21
|
+
MT.testMode(
|
22
|
+
'beginEndDocument',
|
23
|
+
'\\begin{document}\n\\end{document}',
|
24
|
+
[
|
25
|
+
'tag', '\\begin',
|
26
|
+
'bracket', '{',
|
27
|
+
'atom', 'document',
|
28
|
+
'bracket', '}',
|
29
|
+
'tag', '\\end',
|
30
|
+
'bracket', '{',
|
31
|
+
'atom', 'document',
|
32
|
+
'bracket', '}'
|
33
|
+
]
|
34
|
+
);
|
35
|
+
|
36
|
+
MT.testMode(
|
37
|
+
'beginEndEquation',
|
38
|
+
'\\begin{equation}\n E=mc^2\n\\end{equation}',
|
39
|
+
[
|
40
|
+
'tag', '\\begin',
|
41
|
+
'bracket', '{',
|
42
|
+
'atom', 'equation',
|
43
|
+
'bracket', '}',
|
44
|
+
null, ' E=mc^2',
|
45
|
+
'tag', '\\end',
|
46
|
+
'bracket', '{',
|
47
|
+
'atom', 'equation',
|
48
|
+
'bracket', '}'
|
49
|
+
]
|
50
|
+
);
|
51
|
+
|
52
|
+
MT.testMode(
|
53
|
+
'beginModule',
|
54
|
+
'\\begin{module}[]',
|
55
|
+
[
|
56
|
+
'tag', '\\begin',
|
57
|
+
'bracket', '{',
|
58
|
+
'atom', 'module',
|
59
|
+
'bracket', '}[]'
|
60
|
+
]
|
61
|
+
);
|
62
|
+
|
63
|
+
MT.testMode(
|
64
|
+
'beginModuleId',
|
65
|
+
'\\begin{module}[id=bbt-size]',
|
66
|
+
[
|
67
|
+
'tag', '\\begin',
|
68
|
+
'bracket', '{',
|
69
|
+
'atom', 'module',
|
70
|
+
'bracket', '}[',
|
71
|
+
null, 'id=bbt-size',
|
72
|
+
'bracket', ']'
|
73
|
+
]
|
74
|
+
);
|
75
|
+
|
76
|
+
MT.testMode(
|
77
|
+
'importModule',
|
78
|
+
'\\importmodule[b-b-t]{b-b-t}',
|
79
|
+
[
|
80
|
+
'tag', '\\importmodule',
|
81
|
+
'bracket', '[',
|
82
|
+
'string', 'b-b-t',
|
83
|
+
'bracket', ']{',
|
84
|
+
'builtin', 'b-b-t',
|
85
|
+
'bracket', '}'
|
86
|
+
]
|
87
|
+
);
|
88
|
+
|
89
|
+
MT.testMode(
|
90
|
+
'importModulePath',
|
91
|
+
'\\importmodule[\\KWARCslides{dmath/en/cardinality}]{card}',
|
92
|
+
[
|
93
|
+
'tag', '\\importmodule',
|
94
|
+
'bracket', '[',
|
95
|
+
'tag', '\\KWARCslides',
|
96
|
+
'bracket', '{',
|
97
|
+
'string', 'dmath/en/cardinality',
|
98
|
+
'bracket', '}]{',
|
99
|
+
'builtin', 'card',
|
100
|
+
'bracket', '}'
|
101
|
+
]
|
102
|
+
);
|
103
|
+
|
104
|
+
MT.testMode(
|
105
|
+
'psForPDF',
|
106
|
+
'\\PSforPDF[1]{#1}', // could treat #1 specially
|
107
|
+
[
|
108
|
+
'tag', '\\PSforPDF',
|
109
|
+
'bracket', '[',
|
110
|
+
'atom', '1',
|
111
|
+
'bracket', ']{',
|
112
|
+
null, '#1',
|
113
|
+
'bracket', '}'
|
114
|
+
]
|
115
|
+
);
|
116
|
+
|
117
|
+
MT.testMode(
|
118
|
+
'comment',
|
119
|
+
'% foo',
|
120
|
+
[
|
121
|
+
'comment', '% foo'
|
122
|
+
]
|
123
|
+
);
|
124
|
+
|
125
|
+
MT.testMode(
|
126
|
+
'tagComment',
|
127
|
+
'\\item% bar',
|
128
|
+
[
|
129
|
+
'tag', '\\item',
|
130
|
+
'comment', '% bar'
|
131
|
+
]
|
132
|
+
);
|
133
|
+
|
134
|
+
MT.testMode(
|
135
|
+
'commentTag',
|
136
|
+
' % \\item',
|
137
|
+
[
|
138
|
+
null, ' ',
|
139
|
+
'comment', '% \\item'
|
140
|
+
]
|
141
|
+
);
|
142
|
+
|
143
|
+
MT.testMode(
|
144
|
+
'commentLineBreak',
|
145
|
+
'%\nfoo',
|
146
|
+
[
|
147
|
+
'comment', '%',
|
148
|
+
null, 'foo'
|
149
|
+
]
|
150
|
+
);
|
151
|
+
|
152
|
+
MT.testMode(
|
153
|
+
'tagErrorCurly',
|
154
|
+
'\\begin}{',
|
155
|
+
[
|
156
|
+
'tag', '\\begin',
|
157
|
+
'error', '}',
|
158
|
+
'bracket', '{'
|
159
|
+
]
|
160
|
+
);
|
161
|
+
|
162
|
+
MT.testMode(
|
163
|
+
'tagErrorSquare',
|
164
|
+
'\\item]{',
|
165
|
+
[
|
166
|
+
'tag', '\\item',
|
167
|
+
'error', ']',
|
168
|
+
'bracket', '{'
|
169
|
+
]
|
170
|
+
);
|
171
|
+
|
172
|
+
MT.testMode(
|
173
|
+
'commentCurly',
|
174
|
+
'% }',
|
175
|
+
[
|
176
|
+
'comment', '% }'
|
177
|
+
]
|
178
|
+
);
|
179
|
+
|
180
|
+
MT.testMode(
|
181
|
+
'tagHash',
|
182
|
+
'the \\# key',
|
183
|
+
[
|
184
|
+
null, 'the ',
|
185
|
+
'tag', '\\#',
|
186
|
+
null, ' key'
|
187
|
+
]
|
188
|
+
);
|
189
|
+
|
190
|
+
MT.testMode(
|
191
|
+
'tagNumber',
|
192
|
+
'a \\$5 stetson',
|
193
|
+
[
|
194
|
+
null, 'a ',
|
195
|
+
'tag', '\\$',
|
196
|
+
'atom', 5,
|
197
|
+
null, ' stetson'
|
198
|
+
]
|
199
|
+
);
|
200
|
+
|
201
|
+
MT.testMode(
|
202
|
+
'tagPercent',
|
203
|
+
'100\\% beef',
|
204
|
+
[
|
205
|
+
'atom', '100',
|
206
|
+
'tag', '\\%',
|
207
|
+
null, ' beef'
|
208
|
+
]
|
209
|
+
);
|
210
|
+
|
211
|
+
MT.testMode(
|
212
|
+
'tagAmpersand',
|
213
|
+
'L \\& N',
|
214
|
+
[
|
215
|
+
null, 'L ',
|
216
|
+
'tag', '\\&',
|
217
|
+
null, ' N'
|
218
|
+
]
|
219
|
+
);
|
220
|
+
|
221
|
+
MT.testMode(
|
222
|
+
'tagUnderscore',
|
223
|
+
'foo\\_bar',
|
224
|
+
[
|
225
|
+
null, 'foo',
|
226
|
+
'tag', '\\_',
|
227
|
+
null, 'bar'
|
228
|
+
]
|
229
|
+
);
|
230
|
+
|
231
|
+
MT.testMode(
|
232
|
+
'tagBracketOpen',
|
233
|
+
'\\emph{\\{}',
|
234
|
+
[
|
235
|
+
'tag', '\\emph',
|
236
|
+
'bracket', '{',
|
237
|
+
'tag', '\\{',
|
238
|
+
'bracket', '}'
|
239
|
+
]
|
240
|
+
);
|
241
|
+
|
242
|
+
MT.testMode(
|
243
|
+
'tagBracketClose',
|
244
|
+
'\\emph{\\}}',
|
245
|
+
[
|
246
|
+
'tag', '\\emph',
|
247
|
+
'bracket', '{',
|
248
|
+
'tag', '\\}',
|
249
|
+
'bracket', '}'
|
250
|
+
]
|
251
|
+
);
|
252
|
+
|
253
|
+
MT.testMode(
|
254
|
+
'tagLetterNumber',
|
255
|
+
'section \\S1',
|
256
|
+
[
|
257
|
+
null, 'section ',
|
258
|
+
'tag', '\\S',
|
259
|
+
'atom', '1'
|
260
|
+
]
|
261
|
+
);
|
262
|
+
|
263
|
+
MT.testMode(
|
264
|
+
'textTagNumber',
|
265
|
+
'para \\P2',
|
266
|
+
[
|
267
|
+
null, 'para ',
|
268
|
+
'tag', '\\P',
|
269
|
+
'atom', '2'
|
270
|
+
]
|
271
|
+
);
|
272
|
+
|
273
|
+
MT.testMode(
|
274
|
+
'thinspace',
|
275
|
+
'x\\,y', // thinspace
|
276
|
+
[
|
277
|
+
null, 'x',
|
278
|
+
'tag', '\\,',
|
279
|
+
null, 'y'
|
280
|
+
]
|
281
|
+
);
|
282
|
+
|
283
|
+
MT.testMode(
|
284
|
+
'thickspace',
|
285
|
+
'x\\;y', // thickspace
|
286
|
+
[
|
287
|
+
null, 'x',
|
288
|
+
'tag', '\\;',
|
289
|
+
null, 'y'
|
290
|
+
]
|
291
|
+
);
|
292
|
+
|
293
|
+
MT.testMode(
|
294
|
+
'negativeThinspace',
|
295
|
+
'x\\!y', // negative thinspace
|
296
|
+
[
|
297
|
+
null, 'x',
|
298
|
+
'tag', '\\!',
|
299
|
+
null, 'y'
|
300
|
+
]
|
301
|
+
);
|
302
|
+
|
303
|
+
MT.testMode(
|
304
|
+
'periodNotSentence',
|
305
|
+
'J.\\ L.\\ is', // period not ending a sentence
|
306
|
+
[
|
307
|
+
null, 'J.\\ L.\\ is'
|
308
|
+
]
|
309
|
+
); // maybe could be better
|
310
|
+
|
311
|
+
MT.testMode(
|
312
|
+
'periodSentence',
|
313
|
+
'X\\@. The', // period ending a sentence
|
314
|
+
[
|
315
|
+
null, 'X',
|
316
|
+
'tag', '\\@',
|
317
|
+
null, '. The'
|
318
|
+
]
|
319
|
+
);
|
320
|
+
|
321
|
+
MT.testMode(
|
322
|
+
'italicCorrection',
|
323
|
+
'{\\em If\\/} I', // italic correction
|
324
|
+
[
|
325
|
+
'bracket', '{',
|
326
|
+
'tag', '\\em',
|
327
|
+
null, ' If',
|
328
|
+
'tag', '\\/',
|
329
|
+
'bracket', '}',
|
330
|
+
null, ' I'
|
331
|
+
]
|
332
|
+
);
|
333
|
+
|
334
|
+
MT.testMode(
|
335
|
+
'tagBracket',
|
336
|
+
'\\newcommand{\\pop}',
|
337
|
+
[
|
338
|
+
'tag', '\\newcommand',
|
339
|
+
'bracket', '{',
|
340
|
+
'tag', '\\pop',
|
341
|
+
'bracket', '}'
|
342
|
+
]
|
343
|
+
);
|