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,58 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<title>CodeMirror: CSS mode</title>
|
6
|
+
<link rel="stylesheet" href="../../lib/codemirror.css">
|
7
|
+
<script src="../../lib/codemirror.js"></script>
|
8
|
+
<script src="css.js"></script>
|
9
|
+
<style>.CodeMirror {background: #f8f8f8;}</style>
|
10
|
+
<link rel="stylesheet" href="../../doc/docs.css">
|
11
|
+
</head>
|
12
|
+
<body>
|
13
|
+
<h1>CodeMirror: CSS mode</h1>
|
14
|
+
<form><textarea id="code" name="code">
|
15
|
+
/* Some example CSS */
|
16
|
+
|
17
|
+
@import url("something.css");
|
18
|
+
|
19
|
+
body {
|
20
|
+
margin: 0;
|
21
|
+
padding: 3em 6em;
|
22
|
+
font-family: tahoma, arial, sans-serif;
|
23
|
+
color: #000;
|
24
|
+
}
|
25
|
+
|
26
|
+
#navigation a {
|
27
|
+
font-weight: bold;
|
28
|
+
text-decoration: none !important;
|
29
|
+
}
|
30
|
+
|
31
|
+
h1 {
|
32
|
+
font-size: 2.5em;
|
33
|
+
}
|
34
|
+
|
35
|
+
h2 {
|
36
|
+
font-size: 1.7em;
|
37
|
+
}
|
38
|
+
|
39
|
+
h1:before, h2:before {
|
40
|
+
content: "::";
|
41
|
+
}
|
42
|
+
|
43
|
+
code {
|
44
|
+
font-family: courier, monospace;
|
45
|
+
font-size: 80%;
|
46
|
+
color: #418A8A;
|
47
|
+
}
|
48
|
+
</textarea></form>
|
49
|
+
<script>
|
50
|
+
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {});
|
51
|
+
</script>
|
52
|
+
|
53
|
+
<p><strong>MIME types defined:</strong> <code>text/css</code>.</p>
|
54
|
+
|
55
|
+
<p><strong>Parsing/Highlighting Tests:</strong> <a href="../../test/index.html#css_*">normal</a>, <a href="../../test/index.html#verbose,css_*">verbose</a>.</p>
|
56
|
+
|
57
|
+
</body>
|
58
|
+
</html>
|
@@ -0,0 +1,501 @@
|
|
1
|
+
// Initiate ModeTest and set defaults
|
2
|
+
var MT = ModeTest;
|
3
|
+
MT.modeName = 'css';
|
4
|
+
MT.modeOptions = {};
|
5
|
+
|
6
|
+
// Requires at least one media query
|
7
|
+
MT.testMode(
|
8
|
+
'atMediaEmpty',
|
9
|
+
'@media { }',
|
10
|
+
[
|
11
|
+
'def', '@media',
|
12
|
+
null, ' ',
|
13
|
+
'error', '{',
|
14
|
+
null, ' }'
|
15
|
+
]
|
16
|
+
);
|
17
|
+
|
18
|
+
MT.testMode(
|
19
|
+
'atMediaMultiple',
|
20
|
+
'@media not screen and (color), not print and (color) { }',
|
21
|
+
[
|
22
|
+
'def', '@media',
|
23
|
+
null, ' ',
|
24
|
+
'keyword', 'not',
|
25
|
+
null, ' ',
|
26
|
+
'attribute', 'screen',
|
27
|
+
null, ' ',
|
28
|
+
'operator', 'and',
|
29
|
+
null, ' (',
|
30
|
+
'property', 'color',
|
31
|
+
null, '), ',
|
32
|
+
'keyword', 'not',
|
33
|
+
null, ' ',
|
34
|
+
'attribute', 'print',
|
35
|
+
null, ' ',
|
36
|
+
'operator', 'and',
|
37
|
+
null, ' (',
|
38
|
+
'property', 'color',
|
39
|
+
null, ') { }'
|
40
|
+
]
|
41
|
+
);
|
42
|
+
|
43
|
+
MT.testMode(
|
44
|
+
'atMediaCheckStack',
|
45
|
+
'@media screen { } foo { }',
|
46
|
+
[
|
47
|
+
'def', '@media',
|
48
|
+
null, ' ',
|
49
|
+
'attribute', 'screen',
|
50
|
+
null, ' { } ',
|
51
|
+
'tag', 'foo',
|
52
|
+
null, ' { }'
|
53
|
+
]
|
54
|
+
);
|
55
|
+
|
56
|
+
MT.testMode(
|
57
|
+
'atMediaCheckStack',
|
58
|
+
'@media screen (color) { } foo { }',
|
59
|
+
[
|
60
|
+
'def', '@media',
|
61
|
+
null, ' ',
|
62
|
+
'attribute', 'screen',
|
63
|
+
null, ' (',
|
64
|
+
'property', 'color',
|
65
|
+
null, ') { } ',
|
66
|
+
'tag', 'foo',
|
67
|
+
null, ' { }'
|
68
|
+
]
|
69
|
+
);
|
70
|
+
|
71
|
+
MT.testMode(
|
72
|
+
'atMediaCheckStackInvalidAttribute',
|
73
|
+
'@media foobarhello { } foo { }',
|
74
|
+
[
|
75
|
+
'def', '@media',
|
76
|
+
null, ' ',
|
77
|
+
'attribute error', 'foobarhello',
|
78
|
+
null, ' { } ',
|
79
|
+
'tag', 'foo',
|
80
|
+
null, ' { }'
|
81
|
+
]
|
82
|
+
);
|
83
|
+
|
84
|
+
// Error, because "and" is only allowed immediately preceding a media expression
|
85
|
+
MT.testMode(
|
86
|
+
'atMediaInvalidAttribute',
|
87
|
+
'@media foobarhello { }',
|
88
|
+
[
|
89
|
+
'def', '@media',
|
90
|
+
null, ' ',
|
91
|
+
'attribute error', 'foobarhello',
|
92
|
+
null, ' { }'
|
93
|
+
]
|
94
|
+
);
|
95
|
+
|
96
|
+
// Error, because "and" is only allowed immediately preceding a media expression
|
97
|
+
MT.testMode(
|
98
|
+
'atMediaInvalidAnd',
|
99
|
+
'@media and screen { }',
|
100
|
+
[
|
101
|
+
'def', '@media',
|
102
|
+
null, ' ',
|
103
|
+
'error', 'and',
|
104
|
+
null, ' ',
|
105
|
+
'attribute', 'screen',
|
106
|
+
null, ' { }'
|
107
|
+
]
|
108
|
+
);
|
109
|
+
|
110
|
+
// Error, because "not" is only allowed as the first item in each media query
|
111
|
+
MT.testMode(
|
112
|
+
'atMediaInvalidNot',
|
113
|
+
'@media screen not (not) { }',
|
114
|
+
[
|
115
|
+
'def', '@media',
|
116
|
+
null, ' ',
|
117
|
+
'attribute', 'screen',
|
118
|
+
null, ' ',
|
119
|
+
'error', 'not',
|
120
|
+
null, ' (',
|
121
|
+
'error', 'not',
|
122
|
+
null, ') { }'
|
123
|
+
]
|
124
|
+
);
|
125
|
+
|
126
|
+
// Error, because "only" is only allowed as the first item in each media query
|
127
|
+
MT.testMode(
|
128
|
+
'atMediaInvalidOnly',
|
129
|
+
'@media screen only (only) { }',
|
130
|
+
[
|
131
|
+
'def', '@media',
|
132
|
+
null, ' ',
|
133
|
+
'attribute', 'screen',
|
134
|
+
null, ' ',
|
135
|
+
'error', 'only',
|
136
|
+
null, ' (',
|
137
|
+
'error', 'only',
|
138
|
+
null, ') { }'
|
139
|
+
]
|
140
|
+
);
|
141
|
+
|
142
|
+
// Error, because "foobarhello" is neither a known type or property, but
|
143
|
+
// property was expected (after "and"), and it should be in parenthese.
|
144
|
+
MT.testMode(
|
145
|
+
'atMediaUnknownType',
|
146
|
+
'@media screen and foobarhello { }',
|
147
|
+
[
|
148
|
+
'def', '@media',
|
149
|
+
null, ' ',
|
150
|
+
'attribute', 'screen',
|
151
|
+
null, ' ',
|
152
|
+
'operator', 'and',
|
153
|
+
null, ' ',
|
154
|
+
'error', 'foobarhello',
|
155
|
+
null, ' { }'
|
156
|
+
]
|
157
|
+
);
|
158
|
+
|
159
|
+
// Error, because "color" is not a known type, but is a known property, and
|
160
|
+
// should be in parentheses.
|
161
|
+
MT.testMode(
|
162
|
+
'atMediaInvalidType',
|
163
|
+
'@media screen and color { }',
|
164
|
+
[
|
165
|
+
'def', '@media',
|
166
|
+
null, ' ',
|
167
|
+
'attribute', 'screen',
|
168
|
+
null, ' ',
|
169
|
+
'operator', 'and',
|
170
|
+
null, ' ',
|
171
|
+
'error', 'color',
|
172
|
+
null, ' { }'
|
173
|
+
]
|
174
|
+
);
|
175
|
+
|
176
|
+
// Error, because "print" is not a known property, but is a known type,
|
177
|
+
// and should not be in parenthese.
|
178
|
+
MT.testMode(
|
179
|
+
'atMediaInvalidProperty',
|
180
|
+
'@media screen and (print) { }',
|
181
|
+
[
|
182
|
+
'def', '@media',
|
183
|
+
null, ' ',
|
184
|
+
'attribute', 'screen',
|
185
|
+
null, ' ',
|
186
|
+
'operator', 'and',
|
187
|
+
null, ' (',
|
188
|
+
'error', 'print',
|
189
|
+
null, ') { }'
|
190
|
+
]
|
191
|
+
);
|
192
|
+
|
193
|
+
// Soft error, because "foobarhello" is not a known property or type.
|
194
|
+
MT.testMode(
|
195
|
+
'atMediaUnknownProperty',
|
196
|
+
'@media screen and (foobarhello) { }',
|
197
|
+
[
|
198
|
+
'def', '@media',
|
199
|
+
null, ' ',
|
200
|
+
'attribute', 'screen',
|
201
|
+
null, ' ',
|
202
|
+
'operator', 'and',
|
203
|
+
null, ' (',
|
204
|
+
'property error', 'foobarhello',
|
205
|
+
null, ') { }'
|
206
|
+
]
|
207
|
+
);
|
208
|
+
|
209
|
+
MT.testMode(
|
210
|
+
'tagSelector',
|
211
|
+
'foo { }',
|
212
|
+
[
|
213
|
+
'tag', 'foo',
|
214
|
+
null, ' { }'
|
215
|
+
]
|
216
|
+
);
|
217
|
+
|
218
|
+
MT.testMode(
|
219
|
+
'classSelector',
|
220
|
+
'.foo-bar_hello { }',
|
221
|
+
[
|
222
|
+
'qualifier', '.foo-bar_hello',
|
223
|
+
null, ' { }'
|
224
|
+
]
|
225
|
+
);
|
226
|
+
|
227
|
+
MT.testMode(
|
228
|
+
'idSelector',
|
229
|
+
'#foo { #foo }',
|
230
|
+
[
|
231
|
+
'builtin', '#foo',
|
232
|
+
null, ' { ',
|
233
|
+
'error', '#foo',
|
234
|
+
null, ' }'
|
235
|
+
]
|
236
|
+
);
|
237
|
+
|
238
|
+
MT.testMode(
|
239
|
+
'tagSelectorUnclosed',
|
240
|
+
'foo { margin: 0 } bar { }',
|
241
|
+
[
|
242
|
+
'tag', 'foo',
|
243
|
+
null, ' { ',
|
244
|
+
'property', 'margin',
|
245
|
+
'operator', ':',
|
246
|
+
null, ' ',
|
247
|
+
'number', '0',
|
248
|
+
null, ' } ',
|
249
|
+
'tag', 'bar',
|
250
|
+
null, ' { }'
|
251
|
+
]
|
252
|
+
);
|
253
|
+
|
254
|
+
MT.testMode(
|
255
|
+
'tagStringNoQuotes',
|
256
|
+
'foo { font-family: hello world; }',
|
257
|
+
[
|
258
|
+
'tag', 'foo',
|
259
|
+
null, ' { ',
|
260
|
+
'property', 'font-family',
|
261
|
+
'operator', ':',
|
262
|
+
null, ' ',
|
263
|
+
'variable-2', 'hello',
|
264
|
+
null, ' ',
|
265
|
+
'variable-2', 'world',
|
266
|
+
null, '; }'
|
267
|
+
]
|
268
|
+
);
|
269
|
+
|
270
|
+
MT.testMode(
|
271
|
+
'tagStringDouble',
|
272
|
+
'foo { font-family: "hello world"; }',
|
273
|
+
[
|
274
|
+
'tag', 'foo',
|
275
|
+
null, ' { ',
|
276
|
+
'property', 'font-family',
|
277
|
+
'operator', ':',
|
278
|
+
null, ' ',
|
279
|
+
'string', '"hello world"',
|
280
|
+
null, '; }'
|
281
|
+
]
|
282
|
+
);
|
283
|
+
|
284
|
+
MT.testMode(
|
285
|
+
'tagStringSingle',
|
286
|
+
'foo { font-family: \'hello world\'; }',
|
287
|
+
[
|
288
|
+
'tag', 'foo',
|
289
|
+
null, ' { ',
|
290
|
+
'property', 'font-family',
|
291
|
+
'operator', ':',
|
292
|
+
null, ' ',
|
293
|
+
'string', '\'hello world\'',
|
294
|
+
null, '; }'
|
295
|
+
]
|
296
|
+
);
|
297
|
+
|
298
|
+
MT.testMode(
|
299
|
+
'tagColorKeyword',
|
300
|
+
'foo { color: black; }',
|
301
|
+
[
|
302
|
+
'tag', 'foo',
|
303
|
+
null, ' { ',
|
304
|
+
'property', 'color',
|
305
|
+
'operator', ':',
|
306
|
+
null, ' ',
|
307
|
+
'keyword', 'black',
|
308
|
+
null, '; }'
|
309
|
+
]
|
310
|
+
);
|
311
|
+
|
312
|
+
MT.testMode(
|
313
|
+
'tagColorHex3',
|
314
|
+
'foo { background: #fff; }',
|
315
|
+
[
|
316
|
+
'tag', 'foo',
|
317
|
+
null, ' { ',
|
318
|
+
'property', 'background',
|
319
|
+
'operator', ':',
|
320
|
+
null, ' ',
|
321
|
+
'atom', '#fff',
|
322
|
+
null, '; }'
|
323
|
+
]
|
324
|
+
);
|
325
|
+
|
326
|
+
MT.testMode(
|
327
|
+
'tagColorHex6',
|
328
|
+
'foo { background: #ffffff; }',
|
329
|
+
[
|
330
|
+
'tag', 'foo',
|
331
|
+
null, ' { ',
|
332
|
+
'property', 'background',
|
333
|
+
'operator', ':',
|
334
|
+
null, ' ',
|
335
|
+
'atom', '#ffffff',
|
336
|
+
null, '; }'
|
337
|
+
]
|
338
|
+
);
|
339
|
+
|
340
|
+
MT.testMode(
|
341
|
+
'tagColorHex4',
|
342
|
+
'foo { background: #ffff; }',
|
343
|
+
[
|
344
|
+
'tag', 'foo',
|
345
|
+
null, ' { ',
|
346
|
+
'property', 'background',
|
347
|
+
'operator', ':',
|
348
|
+
null, ' ',
|
349
|
+
'atom error', '#ffff',
|
350
|
+
null, '; }'
|
351
|
+
]
|
352
|
+
);
|
353
|
+
|
354
|
+
MT.testMode(
|
355
|
+
'tagColorHexInvalid',
|
356
|
+
'foo { background: #ffg; }',
|
357
|
+
[
|
358
|
+
'tag', 'foo',
|
359
|
+
null, ' { ',
|
360
|
+
'property', 'background',
|
361
|
+
'operator', ':',
|
362
|
+
null, ' ',
|
363
|
+
'atom error', '#ffg',
|
364
|
+
null, '; }'
|
365
|
+
]
|
366
|
+
);
|
367
|
+
|
368
|
+
MT.testMode(
|
369
|
+
'tagNegativeNumber',
|
370
|
+
'foo { margin: -5px; }',
|
371
|
+
[
|
372
|
+
'tag', 'foo',
|
373
|
+
null, ' { ',
|
374
|
+
'property', 'margin',
|
375
|
+
'operator', ':',
|
376
|
+
null, ' ',
|
377
|
+
'number', '-5px',
|
378
|
+
null, '; }'
|
379
|
+
]
|
380
|
+
);
|
381
|
+
|
382
|
+
MT.testMode(
|
383
|
+
'tagPositiveNumber',
|
384
|
+
'foo { padding: 5px; }',
|
385
|
+
[
|
386
|
+
'tag', 'foo',
|
387
|
+
null, ' { ',
|
388
|
+
'property', 'padding',
|
389
|
+
'operator', ':',
|
390
|
+
null, ' ',
|
391
|
+
'number', '5px',
|
392
|
+
null, '; }'
|
393
|
+
]
|
394
|
+
);
|
395
|
+
|
396
|
+
MT.testMode(
|
397
|
+
'tagVendor',
|
398
|
+
'foo { -foo-box-sizing: -foo-border-box; }',
|
399
|
+
[
|
400
|
+
'tag', 'foo',
|
401
|
+
null, ' { ',
|
402
|
+
'meta', '-foo-',
|
403
|
+
'property', 'box-sizing',
|
404
|
+
'operator', ':',
|
405
|
+
null, ' ',
|
406
|
+
'meta', '-foo-',
|
407
|
+
'string-2', 'border-box',
|
408
|
+
null, '; }'
|
409
|
+
]
|
410
|
+
);
|
411
|
+
|
412
|
+
MT.testMode(
|
413
|
+
'tagBogusProperty',
|
414
|
+
'foo { barhelloworld: 0; }',
|
415
|
+
[
|
416
|
+
'tag', 'foo',
|
417
|
+
null, ' { ',
|
418
|
+
'property error', 'barhelloworld',
|
419
|
+
'operator', ':',
|
420
|
+
null, ' ',
|
421
|
+
'number', '0',
|
422
|
+
null, '; }'
|
423
|
+
]
|
424
|
+
);
|
425
|
+
|
426
|
+
MT.testMode(
|
427
|
+
'tagTwoProperties',
|
428
|
+
'foo { margin: 0; padding: 0; }',
|
429
|
+
[
|
430
|
+
'tag', 'foo',
|
431
|
+
null, ' { ',
|
432
|
+
'property', 'margin',
|
433
|
+
'operator', ':',
|
434
|
+
null, ' ',
|
435
|
+
'number', '0',
|
436
|
+
null, '; ',
|
437
|
+
'property', 'padding',
|
438
|
+
'operator', ':',
|
439
|
+
null, ' ',
|
440
|
+
'number', '0',
|
441
|
+
null, '; }'
|
442
|
+
]
|
443
|
+
);
|
444
|
+
//
|
445
|
+
//MT.testMode(
|
446
|
+
// 'tagClass',
|
447
|
+
// '@media only screen and (min-width: 500px), print {foo.bar#hello { color: black !important; background: #f00; margin: -5px; padding: 5px; -foo-box-sizing: border-box; } /* world */}',
|
448
|
+
// [
|
449
|
+
// 'def', '@media',
|
450
|
+
// null, ' ',
|
451
|
+
// 'keyword', 'only',
|
452
|
+
// null, ' ',
|
453
|
+
// 'attribute', 'screen',
|
454
|
+
// null, ' ',
|
455
|
+
// 'operator', 'and',
|
456
|
+
// null, ' ',
|
457
|
+
// 'bracket', '(',
|
458
|
+
// 'property', 'min-width',
|
459
|
+
// 'operator', ':',
|
460
|
+
// null, ' ',
|
461
|
+
// 'number', '500px',
|
462
|
+
// 'bracket', ')',
|
463
|
+
// null, ', ',
|
464
|
+
// 'attribute', 'print',
|
465
|
+
// null, ' {',
|
466
|
+
// 'tag', 'foo',
|
467
|
+
// 'qualifier', '.bar',
|
468
|
+
// 'header', '#hello',
|
469
|
+
// null, ' { ',
|
470
|
+
// 'property', 'color',
|
471
|
+
// 'operator', ':',
|
472
|
+
// null, ' ',
|
473
|
+
// 'keyword', 'black',
|
474
|
+
// null, ' ',
|
475
|
+
// 'keyword', '!important',
|
476
|
+
// null, '; ',
|
477
|
+
// 'property', 'background',
|
478
|
+
// 'operator', ':',
|
479
|
+
// null, ' ',
|
480
|
+
// 'atom', '#f00',
|
481
|
+
// null, '; ',
|
482
|
+
// 'property', 'padding',
|
483
|
+
// 'operator', ':',
|
484
|
+
// null, ' ',
|
485
|
+
// 'number', '5px',
|
486
|
+
// null, '; ',
|
487
|
+
// 'property', 'margin',
|
488
|
+
// 'operator', ':',
|
489
|
+
// null, ' ',
|
490
|
+
// 'number', '-5px',
|
491
|
+
// null, '; ',
|
492
|
+
// 'meta', '-foo-',
|
493
|
+
// 'property', 'box-sizing',
|
494
|
+
// 'operator', ':',
|
495
|
+
// null, ' ',
|
496
|
+
// 'string-2', 'border-box',
|
497
|
+
// null, '; } ',
|
498
|
+
// 'comment', '/* world */',
|
499
|
+
// null, '}'
|
500
|
+
// ]
|
501
|
+
//);
|