gump 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +24 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +71 -0
- data/Rakefile +2 -0
- data/bin/gump +37 -0
- data/gump.gemspec +17 -0
- data/lib/gump.rb +50 -0
- data/lib/version.rb +3 -0
- data/server/assets/css/style.css +6949 -0
- data/server/assets/images/arrow.png +0 -0
- data/server/assets/images/logo.png +0 -0
- data/server/assets/js/bootstrap/dist/css/bootstrap-theme.css +347 -0
- data/server/assets/js/bootstrap/dist/css/bootstrap-theme.css.map +1 -0
- data/server/assets/js/bootstrap/dist/css/bootstrap-theme.min.css +7 -0
- data/server/assets/js/bootstrap/dist/css/bootstrap.css +5785 -0
- data/server/assets/js/bootstrap/dist/css/bootstrap.css.map +1 -0
- data/server/assets/js/bootstrap/dist/css/bootstrap.min.css +7 -0
- data/server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.eot +0 -0
- data/server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.svg +229 -0
- data/server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.woff +0 -0
- data/server/assets/js/bootstrap/dist/js/bootstrap.js +1951 -0
- data/server/assets/js/bootstrap/dist/js/bootstrap.min.js +6 -0
- data/server/assets/js/jquery.codemirror/.gitattributes +8 -0
- data/server/assets/js/jquery.codemirror/.gitignore +6 -0
- data/server/assets/js/jquery.codemirror/.travis.yml +3 -0
- data/server/assets/js/jquery.codemirror/AUTHORS +255 -0
- data/server/assets/js/jquery.codemirror/CONTRIBUTING.md +72 -0
- data/server/assets/js/jquery.codemirror/LICENSE +19 -0
- data/server/assets/js/jquery.codemirror/README.md +11 -0
- data/server/assets/js/jquery.codemirror/addon/comment/comment.js +145 -0
- data/server/assets/js/jquery.codemirror/addon/comment/continuecomment.js +54 -0
- data/server/assets/js/jquery.codemirror/addon/dialog/dialog.css +32 -0
- data/server/assets/js/jquery.codemirror/addon/dialog/dialog.js +121 -0
- data/server/assets/js/jquery.codemirror/addon/display/fullscreen.css +6 -0
- data/server/assets/js/jquery.codemirror/addon/display/fullscreen.js +31 -0
- data/server/assets/js/jquery.codemirror/addon/display/placeholder.js +48 -0
- data/server/assets/js/jquery.codemirror/addon/edit/closebrackets.js +82 -0
- data/server/assets/js/jquery.codemirror/addon/edit/closetag.js +89 -0
- data/server/assets/js/jquery.codemirror/addon/edit/continuelist.js +25 -0
- data/server/assets/js/jquery.codemirror/addon/edit/matchbrackets.js +87 -0
- data/server/assets/js/jquery.codemirror/addon/edit/matchtags.js +56 -0
- data/server/assets/js/jquery.codemirror/addon/edit/trailingspace.js +15 -0
- data/server/assets/js/jquery.codemirror/addon/fold/brace-fold.js +93 -0
- data/server/assets/js/jquery.codemirror/addon/fold/comment-fold.js +40 -0
- data/server/assets/js/jquery.codemirror/addon/fold/foldcode.js +75 -0
- data/server/assets/js/jquery.codemirror/addon/fold/foldgutter.css +21 -0
- data/server/assets/js/jquery.codemirror/addon/fold/foldgutter.js +124 -0
- data/server/assets/js/jquery.codemirror/addon/fold/indent-fold.js +30 -0
- data/server/assets/js/jquery.codemirror/addon/fold/xml-fold.js +167 -0
- data/server/assets/js/jquery.codemirror/addon/hint/anyword-hint.js +34 -0
- data/server/assets/js/jquery.codemirror/addon/hint/css-hint.js +50 -0
- data/server/assets/js/jquery.codemirror/addon/hint/html-hint.js +337 -0
- data/server/assets/js/jquery.codemirror/addon/hint/javascript-hint.js +131 -0
- data/server/assets/js/jquery.codemirror/addon/hint/pig-hint.js +121 -0
- data/server/assets/js/jquery.codemirror/addon/hint/python-hint.js +95 -0
- data/server/assets/js/jquery.codemirror/addon/hint/show-hint.css +38 -0
- data/server/assets/js/jquery.codemirror/addon/hint/show-hint.js +286 -0
- data/server/assets/js/jquery.codemirror/addon/hint/sql-hint.js +105 -0
- data/server/assets/js/jquery.codemirror/addon/hint/xml-hint.js +69 -0
- data/server/assets/js/jquery.codemirror/addon/lint/coffeescript-lint.js +27 -0
- data/server/assets/js/jquery.codemirror/addon/lint/css-lint.js +19 -0
- data/server/assets/js/jquery.codemirror/addon/lint/javascript-lint.js +126 -0
- data/server/assets/js/jquery.codemirror/addon/lint/json-lint.js +17 -0
- data/server/assets/js/jquery.codemirror/addon/lint/lint.css +73 -0
- data/server/assets/js/jquery.codemirror/addon/lint/lint.js +203 -0
- data/server/assets/js/jquery.codemirror/addon/merge/dep/diff_match_patch.js +50 -0
- data/server/assets/js/jquery.codemirror/addon/merge/merge.css +92 -0
- data/server/assets/js/jquery.codemirror/addon/merge/merge.js +474 -0
- data/server/assets/js/jquery.codemirror/addon/mode/loadmode.js +51 -0
- data/server/assets/js/jquery.codemirror/addon/mode/multiplex.js +101 -0
- data/server/assets/js/jquery.codemirror/addon/mode/multiplex_test.js +30 -0
- data/server/assets/js/jquery.codemirror/addon/mode/overlay.js +59 -0
- data/server/assets/js/jquery.codemirror/addon/runmode/colorize.js +29 -0
- data/server/assets/js/jquery.codemirror/addon/runmode/runmode-standalone.js +136 -0
- data/server/assets/js/jquery.codemirror/addon/runmode/runmode.js +56 -0
- data/server/assets/js/jquery.codemirror/addon/runmode/runmode.node.js +103 -0
- data/server/assets/js/jquery.codemirror/addon/scroll/scrollpastend.js +34 -0
- data/server/assets/js/jquery.codemirror/addon/search/match-highlighter.js +91 -0
- data/server/assets/js/jquery.codemirror/addon/search/search.js +133 -0
- data/server/assets/js/jquery.codemirror/addon/search/searchcursor.js +143 -0
- data/server/assets/js/jquery.codemirror/addon/selection/active-line.js +39 -0
- data/server/assets/js/jquery.codemirror/addon/selection/mark-selection.js +108 -0
- data/server/assets/js/jquery.codemirror/addon/tern/tern.css +85 -0
- data/server/assets/js/jquery.codemirror/addon/tern/tern.js +632 -0
- data/server/assets/js/jquery.codemirror/addon/tern/worker.js +41 -0
- data/server/assets/js/jquery.codemirror/addon/wrap/hardwrap.js +99 -0
- data/server/assets/js/jquery.codemirror/bin/authors.sh +6 -0
- data/server/assets/js/jquery.codemirror/bin/compress +92 -0
- data/server/assets/js/jquery.codemirror/bin/lint +16 -0
- data/server/assets/js/jquery.codemirror/bin/source-highlight +61 -0
- data/server/assets/js/jquery.codemirror/bower.json +15 -0
- data/server/assets/js/jquery.codemirror/demo/activeline.html +78 -0
- data/server/assets/js/jquery.codemirror/demo/anywordhint.html +79 -0
- data/server/assets/js/jquery.codemirror/demo/bidi.html +74 -0
- data/server/assets/js/jquery.codemirror/demo/btree.html +86 -0
- data/server/assets/js/jquery.codemirror/demo/buffers.html +109 -0
- data/server/assets/js/jquery.codemirror/demo/changemode.html +59 -0
- data/server/assets/js/jquery.codemirror/demo/closebrackets.html +63 -0
- data/server/assets/js/jquery.codemirror/demo/closetag.html +40 -0
- data/server/assets/js/jquery.codemirror/demo/complete.html +80 -0
- data/server/assets/js/jquery.codemirror/demo/emacs.html +75 -0
- data/server/assets/js/jquery.codemirror/demo/folding.html +75 -0
- data/server/assets/js/jquery.codemirror/demo/fullscreen.html +130 -0
- data/server/assets/js/jquery.codemirror/demo/hardwrap.html +69 -0
- data/server/assets/js/jquery.codemirror/demo/html5complete.html +54 -0
- data/server/assets/js/jquery.codemirror/demo/indentwrap.html +58 -0
- data/server/assets/js/jquery.codemirror/demo/lint.html +171 -0
- data/server/assets/js/jquery.codemirror/demo/loadmode.html +49 -0
- data/server/assets/js/jquery.codemirror/demo/marker.html +52 -0
- data/server/assets/js/jquery.codemirror/demo/markselection.html +45 -0
- data/server/assets/js/jquery.codemirror/demo/matchhighlighter.html +47 -0
- data/server/assets/js/jquery.codemirror/demo/matchtags.html +49 -0
- data/server/assets/js/jquery.codemirror/demo/merge.html +82 -0
- data/server/assets/js/jquery.codemirror/demo/multiplex.html +75 -0
- data/server/assets/js/jquery.codemirror/demo/mustache.html +68 -0
- data/server/assets/js/jquery.codemirror/demo/placeholder.html +45 -0
- data/server/assets/js/jquery.codemirror/demo/preview.html +88 -0
- data/server/assets/js/jquery.codemirror/demo/resize.html +58 -0
- data/server/assets/js/jquery.codemirror/demo/runmode.html +62 -0
- data/server/assets/js/jquery.codemirror/demo/search.html +94 -0
- data/server/assets/js/jquery.codemirror/demo/spanaffectswrapping_shim.html +85 -0
- data/server/assets/js/jquery.codemirror/demo/tern.html +129 -0
- data/server/assets/js/jquery.codemirror/demo/theme.html +121 -0
- data/server/assets/js/jquery.codemirror/demo/trailingspace.html +48 -0
- data/server/assets/js/jquery.codemirror/demo/variableheight.html +67 -0
- data/server/assets/js/jquery.codemirror/demo/vim.html +74 -0
- data/server/assets/js/jquery.codemirror/demo/visibletabs.html +62 -0
- data/server/assets/js/jquery.codemirror/demo/widget.html +85 -0
- data/server/assets/js/jquery.codemirror/demo/xmlcomplete.html +116 -0
- data/server/assets/js/jquery.codemirror/index.html +192 -0
- data/server/assets/js/jquery.codemirror/keymap/emacs.js +387 -0
- data/server/assets/js/jquery.codemirror/keymap/extra.js +43 -0
- data/server/assets/js/jquery.codemirror/keymap/vim.js +3703 -0
- data/server/assets/js/jquery.codemirror/lib/codemirror.css +263 -0
- data/server/assets/js/jquery.codemirror/lib/codemirror.js +5944 -0
- data/server/assets/js/jquery.codemirror/mode/apl/apl.js +160 -0
- data/server/assets/js/jquery.codemirror/mode/apl/index.html +72 -0
- data/server/assets/js/jquery.codemirror/mode/asterisk/asterisk.js +183 -0
- data/server/assets/js/jquery.codemirror/mode/asterisk/index.html +154 -0
- data/server/assets/js/jquery.codemirror/mode/clike/clike.js +362 -0
- data/server/assets/js/jquery.codemirror/mode/clike/index.html +195 -0
- data/server/assets/js/jquery.codemirror/mode/clike/scala.html +767 -0
- data/server/assets/js/jquery.codemirror/mode/clojure/clojure.js +224 -0
- data/server/assets/js/jquery.codemirror/mode/clojure/index.html +88 -0
- data/server/assets/js/jquery.codemirror/mode/cobol/cobol.js +240 -0
- data/server/assets/js/jquery.codemirror/mode/cobol/index.html +210 -0
- data/server/assets/js/jquery.codemirror/mode/coffeescript/coffeescript.js +354 -0
- data/server/assets/js/jquery.codemirror/mode/coffeescript/index.html +740 -0
- data/server/assets/js/jquery.codemirror/mode/commonlisp/commonlisp.js +105 -0
- data/server/assets/js/jquery.codemirror/mode/commonlisp/index.html +177 -0
- data/server/assets/js/jquery.codemirror/mode/css/css.js +639 -0
- data/server/assets/js/jquery.codemirror/mode/css/index.html +70 -0
- data/server/assets/js/jquery.codemirror/mode/css/scss.html +157 -0
- data/server/assets/js/jquery.codemirror/mode/css/scss_test.js +93 -0
- data/server/assets/js/jquery.codemirror/mode/css/test.js +142 -0
- data/server/assets/js/jquery.codemirror/mode/d/d.js +205 -0
- data/server/assets/js/jquery.codemirror/mode/d/index.html +273 -0
- data/server/assets/js/jquery.codemirror/mode/diff/diff.js +32 -0
- data/server/assets/js/jquery.codemirror/mode/diff/index.html +117 -0
- data/server/assets/js/jquery.codemirror/mode/dtd/dtd.js +127 -0
- data/server/assets/js/jquery.codemirror/mode/dtd/index.html +89 -0
- data/server/assets/js/jquery.codemirror/mode/ecl/ecl.js +192 -0
- data/server/assets/js/jquery.codemirror/mode/ecl/index.html +52 -0
- data/server/assets/js/jquery.codemirror/mode/eiffel/eiffel.js +147 -0
- data/server/assets/js/jquery.codemirror/mode/eiffel/index.html +430 -0
- data/server/assets/js/jquery.codemirror/mode/erlang/erlang.js +484 -0
- data/server/assets/js/jquery.codemirror/mode/erlang/index.html +75 -0
- data/server/assets/js/jquery.codemirror/mode/fortran/fortran.js +173 -0
- data/server/assets/js/jquery.codemirror/mode/fortran/index.html +81 -0
- data/server/assets/js/jquery.codemirror/mode/gas/gas.js +330 -0
- data/server/assets/js/jquery.codemirror/mode/gas/index.html +68 -0
- data/server/assets/js/jquery.codemirror/mode/gfm/gfm.js +97 -0
- data/server/assets/js/jquery.codemirror/mode/gfm/index.html +82 -0
- data/server/assets/js/jquery.codemirror/mode/gfm/test.js +112 -0
- data/server/assets/js/jquery.codemirror/mode/gherkin/gherkin.js +168 -0
- data/server/assets/js/jquery.codemirror/mode/gherkin/index.html +48 -0
- data/server/assets/js/jquery.codemirror/mode/go/go.js +168 -0
- data/server/assets/js/jquery.codemirror/mode/go/index.html +85 -0
- data/server/assets/js/jquery.codemirror/mode/groovy/groovy.js +211 -0
- data/server/assets/js/jquery.codemirror/mode/groovy/index.html +84 -0
- data/server/assets/js/jquery.codemirror/mode/haml/haml.js +153 -0
- data/server/assets/js/jquery.codemirror/mode/haml/index.html +79 -0
- data/server/assets/js/jquery.codemirror/mode/haml/test.js +94 -0
- data/server/assets/js/jquery.codemirror/mode/haskell/haskell.js +250 -0
- data/server/assets/js/jquery.codemirror/mode/haskell/index.html +73 -0
- data/server/assets/js/jquery.codemirror/mode/haxe/haxe.js +429 -0
- data/server/assets/js/jquery.codemirror/mode/haxe/index.html +103 -0
- data/server/assets/js/jquery.codemirror/mode/htmlembedded/htmlembedded.js +73 -0
- data/server/assets/js/jquery.codemirror/mode/htmlembedded/index.html +60 -0
- data/server/assets/js/jquery.codemirror/mode/htmlmixed/htmlmixed.js +104 -0
- data/server/assets/js/jquery.codemirror/mode/htmlmixed/index.html +85 -0
- data/server/assets/js/jquery.codemirror/mode/http/http.js +98 -0
- data/server/assets/js/jquery.codemirror/mode/http/index.html +45 -0
- data/server/assets/js/jquery.codemirror/mode/index.html +114 -0
- data/server/assets/js/jquery.codemirror/mode/jade/index.html +66 -0
- data/server/assets/js/jquery.codemirror/mode/jade/jade.js +90 -0
- data/server/assets/js/jquery.codemirror/mode/javascript/index.html +107 -0
- data/server/assets/js/jquery.codemirror/mode/javascript/javascript.js +617 -0
- data/server/assets/js/jquery.codemirror/mode/javascript/test.js +72 -0
- data/server/assets/js/jquery.codemirror/mode/javascript/typescript.html +61 -0
- data/server/assets/js/jquery.codemirror/mode/jinja2/index.html +50 -0
- data/server/assets/js/jquery.codemirror/mode/jinja2/jinja2.js +42 -0
- data/server/assets/js/jquery.codemirror/mode/julia/index.html +187 -0
- data/server/assets/js/jquery.codemirror/mode/julia/julia.js +262 -0
- data/server/assets/js/jquery.codemirror/mode/less/index.html +753 -0
- data/server/assets/js/jquery.codemirror/mode/less/less.js +346 -0
- data/server/assets/js/jquery.codemirror/mode/livescript/index.html +459 -0
- data/server/assets/js/jquery.codemirror/mode/livescript/livescript.js +267 -0
- data/server/assets/js/jquery.codemirror/mode/livescript/livescript.ls +266 -0
- data/server/assets/js/jquery.codemirror/mode/lua/index.html +86 -0
- data/server/assets/js/jquery.codemirror/mode/lua/lua.js +144 -0
- data/server/assets/js/jquery.codemirror/mode/markdown/index.html +359 -0
- data/server/assets/js/jquery.codemirror/mode/markdown/markdown.js +560 -0
- data/server/assets/js/jquery.codemirror/mode/markdown/test.js +664 -0
- data/server/assets/js/jquery.codemirror/mode/meta.js +91 -0
- data/server/assets/js/jquery.codemirror/mode/mirc/index.html +161 -0
- data/server/assets/js/jquery.codemirror/mode/mirc/mirc.js +177 -0
- data/server/assets/js/jquery.codemirror/mode/nginx/index.html +181 -0
- data/server/assets/js/jquery.codemirror/mode/nginx/nginx.js +163 -0
- data/server/assets/js/jquery.codemirror/mode/ntriples/index.html +45 -0
- data/server/assets/js/jquery.codemirror/mode/ntriples/ntriples.js +170 -0
- data/server/assets/js/jquery.codemirror/mode/ocaml/index.html +146 -0
- data/server/assets/js/jquery.codemirror/mode/ocaml/ocaml.js +116 -0
- data/server/assets/js/jquery.codemirror/mode/octave/index.html +95 -0
- data/server/assets/js/jquery.codemirror/mode/octave/octave.js +118 -0
- data/server/assets/js/jquery.codemirror/mode/pascal/index.html +61 -0
- data/server/assets/js/jquery.codemirror/mode/pascal/pascal.js +94 -0
- data/server/assets/js/jquery.codemirror/mode/pegjs/index.html +66 -0
- data/server/assets/js/jquery.codemirror/mode/pegjs/pegjs.js +103 -0
- data/server/assets/js/jquery.codemirror/mode/perl/index.html +75 -0
- data/server/assets/js/jquery.codemirror/mode/perl/perl.js +816 -0
- data/server/assets/js/jquery.codemirror/mode/php/index.html +62 -0
- data/server/assets/js/jquery.codemirror/mode/php/php.js +132 -0
- data/server/assets/js/jquery.codemirror/mode/pig/index.html +55 -0
- data/server/assets/js/jquery.codemirror/mode/pig/pig.js +171 -0
- data/server/assets/js/jquery.codemirror/mode/properties/index.html +53 -0
- data/server/assets/js/jquery.codemirror/mode/properties/properties.js +63 -0
- data/server/assets/js/jquery.codemirror/mode/python/index.html +187 -0
- data/server/assets/js/jquery.codemirror/mode/python/python.js +368 -0
- data/server/assets/js/jquery.codemirror/mode/q/index.html +144 -0
- data/server/assets/js/jquery.codemirror/mode/q/q.js +124 -0
- data/server/assets/js/jquery.codemirror/mode/r/index.html +86 -0
- data/server/assets/js/jquery.codemirror/mode/r/r.js +141 -0
- data/server/assets/js/jquery.codemirror/mode/rpm/changes/changes.js +19 -0
- data/server/assets/js/jquery.codemirror/mode/rpm/changes/index.html +67 -0
- data/server/assets/js/jquery.codemirror/mode/rpm/spec/index.html +114 -0
- data/server/assets/js/jquery.codemirror/mode/rpm/spec/spec.css +5 -0
- data/server/assets/js/jquery.codemirror/mode/rpm/spec/spec.js +66 -0
- data/server/assets/js/jquery.codemirror/mode/rst/index.html +534 -0
- data/server/assets/js/jquery.codemirror/mode/rst/rst.js +560 -0
- data/server/assets/js/jquery.codemirror/mode/ruby/index.html +185 -0
- data/server/assets/js/jquery.codemirror/mode/ruby/ruby.js +247 -0
- data/server/assets/js/jquery.codemirror/mode/rust/index.html +61 -0
- data/server/assets/js/jquery.codemirror/mode/rust/rust.js +436 -0
- data/server/assets/js/jquery.codemirror/mode/sass/index.html +66 -0
- data/server/assets/js/jquery.codemirror/mode/sass/sass.js +330 -0
- data/server/assets/js/jquery.codemirror/mode/scheme/index.html +77 -0
- data/server/assets/js/jquery.codemirror/mode/scheme/scheme.js +232 -0
- data/server/assets/js/jquery.codemirror/mode/shell/index.html +66 -0
- data/server/assets/js/jquery.codemirror/mode/shell/shell.js +118 -0
- data/server/assets/js/jquery.codemirror/mode/sieve/index.html +93 -0
- data/server/assets/js/jquery.codemirror/mode/sieve/sieve.js +183 -0
- data/server/assets/js/jquery.codemirror/mode/smalltalk/index.html +68 -0
- data/server/assets/js/jquery.codemirror/mode/smalltalk/smalltalk.js +151 -0
- data/server/assets/js/jquery.codemirror/mode/smarty/index.html +136 -0
- data/server/assets/js/jquery.codemirror/mode/smarty/smarty.js +205 -0
- data/server/assets/js/jquery.codemirror/mode/smartymixed/index.html +114 -0
- data/server/assets/js/jquery.codemirror/mode/smartymixed/smartymixed.js +175 -0
- data/server/assets/js/jquery.codemirror/mode/sparql/index.html +54 -0
- data/server/assets/js/jquery.codemirror/mode/sparql/sparql.js +145 -0
- data/server/assets/js/jquery.codemirror/mode/sql/index.html +75 -0
- data/server/assets/js/jquery.codemirror/mode/sql/sql.js +365 -0
- data/server/assets/js/jquery.codemirror/mode/stex/index.html +110 -0
- data/server/assets/js/jquery.codemirror/mode/stex/stex.js +246 -0
- data/server/assets/js/jquery.codemirror/mode/stex/test.js +120 -0
- data/server/assets/js/jquery.codemirror/mode/tcl/index.html +143 -0
- data/server/assets/js/jquery.codemirror/mode/tcl/tcl.js +131 -0
- data/server/assets/js/jquery.codemirror/mode/tiddlywiki/index.html +155 -0
- data/server/assets/js/jquery.codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
- data/server/assets/js/jquery.codemirror/mode/tiddlywiki/tiddlywiki.js +353 -0
- data/server/assets/js/jquery.codemirror/mode/tiki/index.html +95 -0
- data/server/assets/js/jquery.codemirror/mode/tiki/tiki.css +26 -0
- data/server/assets/js/jquery.codemirror/mode/tiki/tiki.js +308 -0
- data/server/assets/js/jquery.codemirror/mode/toml/index.html +73 -0
- data/server/assets/js/jquery.codemirror/mode/toml/toml.js +71 -0
- data/server/assets/js/jquery.codemirror/mode/turtle/index.html +51 -0
- data/server/assets/js/jquery.codemirror/mode/turtle/turtle.js +145 -0
- data/server/assets/js/jquery.codemirror/mode/vb/index.html +103 -0
- data/server/assets/js/jquery.codemirror/mode/vb/vb.js +259 -0
- data/server/assets/js/jquery.codemirror/mode/vbscript/index.html +55 -0
- data/server/assets/js/jquery.codemirror/mode/vbscript/vbscript.js +334 -0
- data/server/assets/js/jquery.codemirror/mode/velocity/index.html +119 -0
- data/server/assets/js/jquery.codemirror/mode/velocity/velocity.js +186 -0
- data/server/assets/js/jquery.codemirror/mode/verilog/index.html +132 -0
- data/server/assets/js/jquery.codemirror/mode/verilog/verilog.js +182 -0
- data/server/assets/js/jquery.codemirror/mode/xml/index.html +57 -0
- data/server/assets/js/jquery.codemirror/mode/xml/xml.js +345 -0
- data/server/assets/js/jquery.codemirror/mode/xquery/index.html +210 -0
- data/server/assets/js/jquery.codemirror/mode/xquery/test.js +64 -0
- data/server/assets/js/jquery.codemirror/mode/xquery/xquery.js +432 -0
- data/server/assets/js/jquery.codemirror/mode/yaml/index.html +80 -0
- data/server/assets/js/jquery.codemirror/mode/yaml/yaml.js +97 -0
- data/server/assets/js/jquery.codemirror/mode/z80/index.html +52 -0
- data/server/assets/js/jquery.codemirror/mode/z80/z80.js +85 -0
- data/server/assets/js/jquery.codemirror/package.json +19 -0
- data/server/assets/js/jquery.codemirror/test/comment_test.js +51 -0
- data/server/assets/js/jquery.codemirror/test/doc_test.js +329 -0
- data/server/assets/js/jquery.codemirror/test/driver.js +139 -0
- data/server/assets/js/jquery.codemirror/test/emacs_test.js +135 -0
- data/server/assets/js/jquery.codemirror/test/index.html +209 -0
- data/server/assets/js/jquery.codemirror/test/lint/acorn.js +1593 -0
- data/server/assets/js/jquery.codemirror/test/lint/lint.js +139 -0
- data/server/assets/js/jquery.codemirror/test/lint/walk.js +216 -0
- data/server/assets/js/jquery.codemirror/test/mode_test.css +10 -0
- data/server/assets/js/jquery.codemirror/test/mode_test.js +200 -0
- data/server/assets/js/jquery.codemirror/test/phantom_driver.js +31 -0
- data/server/assets/js/jquery.codemirror/test/run.js +34 -0
- data/server/assets/js/jquery.codemirror/test/test.js +1562 -0
- data/server/assets/js/jquery.codemirror/test/vim_test.js +2391 -0
- data/server/assets/js/jquery.codemirror/theme/3024-day.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/3024-night.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/ambiance-mobile.css +5 -0
- data/server/assets/js/jquery.codemirror/theme/ambiance.css +70 -0
- data/server/assets/js/jquery.codemirror/theme/base16-dark.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/base16-light.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/blackboard.css +28 -0
- data/server/assets/js/jquery.codemirror/theme/cobalt.css +21 -0
- data/server/assets/js/jquery.codemirror/theme/eclipse.css +23 -0
- data/server/assets/js/jquery.codemirror/theme/elegant.css +13 -0
- data/server/assets/js/jquery.codemirror/theme/erlang-dark.css +30 -0
- data/server/assets/js/jquery.codemirror/theme/lesser-dark.css +47 -0
- data/server/assets/js/jquery.codemirror/theme/mbo.css +37 -0
- data/server/assets/js/jquery.codemirror/theme/midnight.css +43 -0
- data/server/assets/js/jquery.codemirror/theme/monokai.css +29 -0
- data/server/assets/js/jquery.codemirror/theme/neat.css +12 -0
- data/server/assets/js/jquery.codemirror/theme/night.css +24 -0
- data/server/assets/js/jquery.codemirror/theme/paraiso-dark.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/paraiso-light.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/rubyblue.css +23 -0
- data/server/assets/js/jquery.codemirror/theme/solarized.css +180 -0
- data/server/assets/js/jquery.codemirror/theme/the-matrix.css +26 -0
- data/server/assets/js/jquery.codemirror/theme/tomorrow-night-eighties.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/twilight.css +28 -0
- data/server/assets/js/jquery.codemirror/theme/vibrant-ink.css +30 -0
- data/server/assets/js/jquery.codemirror/theme/xq-dark.css +49 -0
- data/server/assets/js/jquery.codemirror/theme/xq-light.css +43 -0
- data/server/assets/js/jquery.js +4 -0
- data/server/assets/js/jquery.nanoscroller/jquery.nanoscroller.js +2 -0
- data/server/assets/js/jquery.nanoscroller/nanoscroller.css +49 -0
- data/server/assets/js/tester.js +161 -0
- data/server/config.ru +2 -0
- data/server/server.rb +41 -0
- data/server/views/_content.erb +65 -0
- data/server/views/_sidebar.erb +32 -0
- data/server/views/index.erb +40 -0
- metadata +402 -0
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
|
|
3
|
+
<title>CodeMirror: CSS mode</title>
|
|
4
|
+
<meta charset="utf-8"/>
|
|
5
|
+
<link rel=stylesheet href="../../doc/docs.css">
|
|
6
|
+
|
|
7
|
+
<link rel="stylesheet" href="../../lib/codemirror.css">
|
|
8
|
+
<script src="../../lib/codemirror.js"></script>
|
|
9
|
+
<script src="css.js"></script>
|
|
10
|
+
<style>.CodeMirror {background: #f8f8f8;}</style>
|
|
11
|
+
<div id=nav>
|
|
12
|
+
<a href="http://codemirror.net"><img id=logo src="../../doc/logo.png"></a>
|
|
13
|
+
|
|
14
|
+
<ul>
|
|
15
|
+
<li><a href="../../index.html">Home</a>
|
|
16
|
+
<li><a href="../../doc/manual.html">Manual</a>
|
|
17
|
+
<li><a href="https://github.com/marijnh/codemirror">Code</a>
|
|
18
|
+
</ul>
|
|
19
|
+
<ul>
|
|
20
|
+
<li><a href="../index.html">Language modes</a>
|
|
21
|
+
<li><a class=active href="#">CSS</a>
|
|
22
|
+
</ul>
|
|
23
|
+
</div>
|
|
24
|
+
|
|
25
|
+
<article>
|
|
26
|
+
<h2>CSS mode</h2>
|
|
27
|
+
<form><textarea id="code" name="code">
|
|
28
|
+
/* Some example CSS */
|
|
29
|
+
|
|
30
|
+
@import url("something.css");
|
|
31
|
+
|
|
32
|
+
body {
|
|
33
|
+
margin: 0;
|
|
34
|
+
padding: 3em 6em;
|
|
35
|
+
font-family: tahoma, arial, sans-serif;
|
|
36
|
+
color: #000;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
#navigation a {
|
|
40
|
+
font-weight: bold;
|
|
41
|
+
text-decoration: none !important;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
h1 {
|
|
45
|
+
font-size: 2.5em;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
h2 {
|
|
49
|
+
font-size: 1.7em;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
h1:before, h2:before {
|
|
53
|
+
content: "::";
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
code {
|
|
57
|
+
font-family: courier, monospace;
|
|
58
|
+
font-size: 80%;
|
|
59
|
+
color: #418A8A;
|
|
60
|
+
}
|
|
61
|
+
</textarea></form>
|
|
62
|
+
<script>
|
|
63
|
+
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {});
|
|
64
|
+
</script>
|
|
65
|
+
|
|
66
|
+
<p><strong>MIME types defined:</strong> <code>text/css</code>.</p>
|
|
67
|
+
|
|
68
|
+
<p><strong>Parsing/Highlighting Tests:</strong> <a href="../../test/index.html#css_*">normal</a>, <a href="../../test/index.html#verbose,css_*">verbose</a>.</p>
|
|
69
|
+
|
|
70
|
+
</article>
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
|
|
3
|
+
<title>CodeMirror: SCSS mode</title>
|
|
4
|
+
<meta charset="utf-8"/>
|
|
5
|
+
<link rel=stylesheet href="../../doc/docs.css">
|
|
6
|
+
|
|
7
|
+
<link rel="stylesheet" href="../../lib/codemirror.css">
|
|
8
|
+
<script src="../../lib/codemirror.js"></script>
|
|
9
|
+
<script src="css.js"></script>
|
|
10
|
+
<style>.CodeMirror {background: #f8f8f8;}</style>
|
|
11
|
+
<div id=nav>
|
|
12
|
+
<a href="http://codemirror.net"><img id=logo src="../../doc/logo.png"></a>
|
|
13
|
+
|
|
14
|
+
<ul>
|
|
15
|
+
<li><a href="../../index.html">Home</a>
|
|
16
|
+
<li><a href="../../doc/manual.html">Manual</a>
|
|
17
|
+
<li><a href="https://github.com/marijnh/codemirror">Code</a>
|
|
18
|
+
</ul>
|
|
19
|
+
<ul>
|
|
20
|
+
<li><a href="../index.html">Language modes</a>
|
|
21
|
+
<li><a class=active href="#">SCSS</a>
|
|
22
|
+
</ul>
|
|
23
|
+
</div>
|
|
24
|
+
|
|
25
|
+
<article>
|
|
26
|
+
<h2>SCSS mode</h2>
|
|
27
|
+
<form><textarea id="code" name="code">
|
|
28
|
+
/* Some example SCSS */
|
|
29
|
+
|
|
30
|
+
@import "compass/css3";
|
|
31
|
+
$variable: #333;
|
|
32
|
+
|
|
33
|
+
$blue: #3bbfce;
|
|
34
|
+
$margin: 16px;
|
|
35
|
+
|
|
36
|
+
.content-navigation {
|
|
37
|
+
#nested {
|
|
38
|
+
background-color: black;
|
|
39
|
+
}
|
|
40
|
+
border-color: $blue;
|
|
41
|
+
color:
|
|
42
|
+
darken($blue, 9%);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.border {
|
|
46
|
+
padding: $margin / 2;
|
|
47
|
+
margin: $margin / 2;
|
|
48
|
+
border-color: $blue;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
@mixin table-base {
|
|
52
|
+
th {
|
|
53
|
+
text-align: center;
|
|
54
|
+
font-weight: bold;
|
|
55
|
+
}
|
|
56
|
+
td, th {padding: 2px}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
table.hl {
|
|
60
|
+
margin: 2em 0;
|
|
61
|
+
td.ln {
|
|
62
|
+
text-align: right;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
li {
|
|
67
|
+
font: {
|
|
68
|
+
family: serif;
|
|
69
|
+
weight: bold;
|
|
70
|
+
size: 1.2em;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
@mixin left($dist) {
|
|
75
|
+
float: left;
|
|
76
|
+
margin-left: $dist;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
#data {
|
|
80
|
+
@include left(10px);
|
|
81
|
+
@include table-base;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.source {
|
|
85
|
+
@include flow-into(target);
|
|
86
|
+
border: 10px solid green;
|
|
87
|
+
margin: 20px;
|
|
88
|
+
width: 200px; }
|
|
89
|
+
|
|
90
|
+
.new-container {
|
|
91
|
+
@include flow-from(target);
|
|
92
|
+
border: 10px solid red;
|
|
93
|
+
margin: 20px;
|
|
94
|
+
width: 200px; }
|
|
95
|
+
|
|
96
|
+
body {
|
|
97
|
+
margin: 0;
|
|
98
|
+
padding: 3em 6em;
|
|
99
|
+
font-family: tahoma, arial, sans-serif;
|
|
100
|
+
color: #000;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
@mixin yellow() {
|
|
104
|
+
background: yellow;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.big {
|
|
108
|
+
font-size: 14px;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.nested {
|
|
112
|
+
@include border-radius(3px);
|
|
113
|
+
@extend .big;
|
|
114
|
+
p {
|
|
115
|
+
background: whitesmoke;
|
|
116
|
+
a {
|
|
117
|
+
color: red;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
#navigation a {
|
|
123
|
+
font-weight: bold;
|
|
124
|
+
text-decoration: none !important;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
h1 {
|
|
128
|
+
font-size: 2.5em;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
h2 {
|
|
132
|
+
font-size: 1.7em;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
h1:before, h2:before {
|
|
136
|
+
content: "::";
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
code {
|
|
140
|
+
font-family: courier, monospace;
|
|
141
|
+
font-size: 80%;
|
|
142
|
+
color: #418A8A;
|
|
143
|
+
}
|
|
144
|
+
</textarea></form>
|
|
145
|
+
<script>
|
|
146
|
+
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
|
|
147
|
+
lineNumbers: true,
|
|
148
|
+
matchBrackets: true,
|
|
149
|
+
mode: "text/x-scss"
|
|
150
|
+
});
|
|
151
|
+
</script>
|
|
152
|
+
|
|
153
|
+
<p><strong>MIME types defined:</strong> <code>text/scss</code>.</p>
|
|
154
|
+
|
|
155
|
+
<p><strong>Parsing/Highlighting Tests:</strong> <a href="../../test/index.html#scss_*">normal</a>, <a href="../../test/index.html#verbose,scss_*">verbose</a>.</p>
|
|
156
|
+
|
|
157
|
+
</article>
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
var mode = CodeMirror.getMode({tabSize: 1}, "text/x-scss");
|
|
3
|
+
function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1), "scss"); }
|
|
4
|
+
function IT(name) { test.indentation(name, mode, Array.prototype.slice.call(arguments, 1), "scss"); }
|
|
5
|
+
|
|
6
|
+
MT('url_with_quotation',
|
|
7
|
+
"[tag foo] { [property background][operator :][string-2 url]([string test.jpg]) }");
|
|
8
|
+
|
|
9
|
+
MT('url_with_double_quotes',
|
|
10
|
+
"[tag foo] { [property background][operator :][string-2 url]([string \"test.jpg\"]) }");
|
|
11
|
+
|
|
12
|
+
MT('url_with_single_quotes',
|
|
13
|
+
"[tag foo] { [property background][operator :][string-2 url]([string \'test.jpg\']) }");
|
|
14
|
+
|
|
15
|
+
MT('string',
|
|
16
|
+
"[def @import] [string \"compass/css3\"]");
|
|
17
|
+
|
|
18
|
+
MT('important_keyword',
|
|
19
|
+
"[tag foo] { [property background][operator :][string-2 url]([string \'test.jpg\']) [keyword !important] }");
|
|
20
|
+
|
|
21
|
+
MT('variable',
|
|
22
|
+
"[variable-2 $blue][operator :][atom #333]");
|
|
23
|
+
|
|
24
|
+
MT('variable_as_attribute',
|
|
25
|
+
"[tag foo] { [property color][operator :][variable-2 $blue] }");
|
|
26
|
+
|
|
27
|
+
MT('numbers',
|
|
28
|
+
"[tag foo] { [property padding][operator :][number 10px] [number 10] [number 10em] [number 8in] }");
|
|
29
|
+
|
|
30
|
+
MT('number_percentage',
|
|
31
|
+
"[tag foo] { [property width][operator :][number 80%] }");
|
|
32
|
+
|
|
33
|
+
MT('selector',
|
|
34
|
+
"[builtin #hello][qualifier .world]{}");
|
|
35
|
+
|
|
36
|
+
MT('singleline_comment',
|
|
37
|
+
"[comment // this is a comment]");
|
|
38
|
+
|
|
39
|
+
MT('multiline_comment',
|
|
40
|
+
"[comment /*foobar*/]");
|
|
41
|
+
|
|
42
|
+
MT('attribute_with_hyphen',
|
|
43
|
+
"[tag foo] { [property font-size][operator :][number 10px] }");
|
|
44
|
+
|
|
45
|
+
MT('string_after_attribute',
|
|
46
|
+
"[tag foo] { [property content][operator :][string \"::\"] }");
|
|
47
|
+
|
|
48
|
+
MT('directives',
|
|
49
|
+
"[def @include] [qualifier .mixin]");
|
|
50
|
+
|
|
51
|
+
MT('basic_structure',
|
|
52
|
+
"[tag p] { [property background][operator :][keyword red]; }");
|
|
53
|
+
|
|
54
|
+
MT('nested_structure',
|
|
55
|
+
"[tag p] { [tag a] { [property color][operator :][keyword red]; } }");
|
|
56
|
+
|
|
57
|
+
MT('mixin',
|
|
58
|
+
"[def @mixin] [tag table-base] {}");
|
|
59
|
+
|
|
60
|
+
MT('number_without_semicolon',
|
|
61
|
+
"[tag p] {[property width][operator :][number 12]}",
|
|
62
|
+
"[tag a] {[property color][operator :][keyword red];}");
|
|
63
|
+
|
|
64
|
+
MT('atom_in_nested_block',
|
|
65
|
+
"[tag p] { [tag a] { [property color][operator :][atom #000]; } }");
|
|
66
|
+
|
|
67
|
+
MT('interpolation_in_property',
|
|
68
|
+
"[tag foo] { [operator #{][variable-2 $hello][operator }:][number 2]; }");
|
|
69
|
+
|
|
70
|
+
MT('interpolation_in_selector',
|
|
71
|
+
"[tag foo][operator #{][variable-2 $hello][operator }] { [property color][operator :][atom #000]; }");
|
|
72
|
+
|
|
73
|
+
MT('interpolation_error',
|
|
74
|
+
"[tag foo][operator #{][error foo][operator }] { [property color][operator :][atom #000]; }");
|
|
75
|
+
|
|
76
|
+
MT("divide_operator",
|
|
77
|
+
"[tag foo] { [property width][operator :][number 4] [operator /] [number 2] }");
|
|
78
|
+
|
|
79
|
+
MT('nested_structure_with_id_selector',
|
|
80
|
+
"[tag p] { [builtin #hello] { [property color][operator :][keyword red]; } }");
|
|
81
|
+
|
|
82
|
+
IT('mixin',
|
|
83
|
+
"@mixin container[1 (][2 $a: 10][1 , ][2 $b: 10][1 , ][2 $c: 10]) [1 {]}");
|
|
84
|
+
|
|
85
|
+
IT('nested',
|
|
86
|
+
"foo [1 { bar ][2 { ][1 } ]}");
|
|
87
|
+
|
|
88
|
+
IT('comma',
|
|
89
|
+
"foo [1 { font-family][2 : verdana, sans-serif][1 ; ]}");
|
|
90
|
+
|
|
91
|
+
IT('parentheses',
|
|
92
|
+
"foo [1 { color][2 : darken][3 ($blue, 9%][2 )][1 ; ]}");
|
|
93
|
+
})();
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
var mode = CodeMirror.getMode({tabSize: 1}, "css");
|
|
3
|
+
function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }
|
|
4
|
+
function IT(name) { test.indentation(name, mode, Array.prototype.slice.call(arguments, 1)); }
|
|
5
|
+
|
|
6
|
+
// Requires at least one media query
|
|
7
|
+
MT("atMediaEmpty",
|
|
8
|
+
"[def @media] [error {] }");
|
|
9
|
+
|
|
10
|
+
MT("atMediaMultiple",
|
|
11
|
+
"[def @media] [keyword not] [attribute screen] [operator and] ([property color]), [keyword not] [attribute print] [operator and] ([property color]) { }");
|
|
12
|
+
|
|
13
|
+
MT("atMediaCheckStack",
|
|
14
|
+
"[def @media] [attribute screen] { } [tag foo] { }");
|
|
15
|
+
|
|
16
|
+
MT("atMediaCheckStack",
|
|
17
|
+
"[def @media] [attribute screen] ([property color]) { } [tag foo] { }");
|
|
18
|
+
|
|
19
|
+
MT("atMediaPropertyOnly",
|
|
20
|
+
"[def @media] ([property color]) { } [tag foo] { }");
|
|
21
|
+
|
|
22
|
+
MT("atMediaCheckStackInvalidAttribute",
|
|
23
|
+
"[def @media] [attribute&error foobarhello] { [tag foo] { } }");
|
|
24
|
+
|
|
25
|
+
MT("atMediaCheckStackInvalidAttribute",
|
|
26
|
+
"[def @media] [attribute&error foobarhello] { } [tag foo] { }");
|
|
27
|
+
|
|
28
|
+
// Error, because "and" is only allowed immediately preceding a media expression
|
|
29
|
+
MT("atMediaInvalidAttribute",
|
|
30
|
+
"[def @media] [attribute&error foobarhello] { }");
|
|
31
|
+
|
|
32
|
+
// Error, because "and" is only allowed immediately preceding a media expression
|
|
33
|
+
MT("atMediaInvalidAnd",
|
|
34
|
+
"[def @media] [error and] [attribute screen] { }");
|
|
35
|
+
|
|
36
|
+
// Error, because "not" is only allowed as the first item in each media query
|
|
37
|
+
MT("atMediaInvalidNot",
|
|
38
|
+
"[def @media] [attribute screen] [error not] ([error not]) { }");
|
|
39
|
+
|
|
40
|
+
// Error, because "only" is only allowed as the first item in each media query
|
|
41
|
+
MT("atMediaInvalidOnly",
|
|
42
|
+
"[def @media] [attribute screen] [error only] ([error only]) { }");
|
|
43
|
+
|
|
44
|
+
// Error, because "foobarhello" is neither a known type or property, but
|
|
45
|
+
// property was expected (after "and"), and it should be in parenthese.
|
|
46
|
+
MT("atMediaUnknownType",
|
|
47
|
+
"[def @media] [attribute screen] [operator and] [error foobarhello] { }");
|
|
48
|
+
|
|
49
|
+
// Error, because "color" is not a known type, but is a known property, and
|
|
50
|
+
// should be in parentheses.
|
|
51
|
+
MT("atMediaInvalidType",
|
|
52
|
+
"[def @media] [attribute screen] [operator and] [error color] { }");
|
|
53
|
+
|
|
54
|
+
// Error, because "print" is not a known property, but is a known type,
|
|
55
|
+
// and should not be in parenthese.
|
|
56
|
+
MT("atMediaInvalidProperty",
|
|
57
|
+
"[def @media] [attribute screen] [operator and] ([error print]) { }");
|
|
58
|
+
|
|
59
|
+
// Soft error, because "foobarhello" is not a known property or type.
|
|
60
|
+
MT("atMediaUnknownProperty",
|
|
61
|
+
"[def @media] [attribute screen] [operator and] ([property&error foobarhello]) { }");
|
|
62
|
+
|
|
63
|
+
// Make sure nesting works with media queries
|
|
64
|
+
MT("atMediaMaxWidthNested",
|
|
65
|
+
"[def @media] [attribute screen] [operator and] ([property max-width][operator :] [number 25px]) { [tag foo] { } }");
|
|
66
|
+
|
|
67
|
+
MT("tagSelector",
|
|
68
|
+
"[tag foo] { }");
|
|
69
|
+
|
|
70
|
+
MT("classSelector",
|
|
71
|
+
"[qualifier .foo-bar_hello] { }");
|
|
72
|
+
|
|
73
|
+
MT("idSelector",
|
|
74
|
+
"[builtin #foo] { [error #foo] }");
|
|
75
|
+
|
|
76
|
+
MT("tagSelectorUnclosed",
|
|
77
|
+
"[tag foo] { [property margin][operator :] [number 0] } [tag bar] { }");
|
|
78
|
+
|
|
79
|
+
MT("tagStringNoQuotes",
|
|
80
|
+
"[tag foo] { [property font-family][operator :] [variable-2 hello] [variable-2 world]; }");
|
|
81
|
+
|
|
82
|
+
MT("tagStringDouble",
|
|
83
|
+
"[tag foo] { [property font-family][operator :] [string \"hello world\"]; }");
|
|
84
|
+
|
|
85
|
+
MT("tagStringSingle",
|
|
86
|
+
"[tag foo] { [property font-family][operator :] [string 'hello world']; }");
|
|
87
|
+
|
|
88
|
+
MT("tagColorKeyword",
|
|
89
|
+
"[tag foo] {" +
|
|
90
|
+
"[property color][operator :] [keyword black];" +
|
|
91
|
+
"[property color][operator :] [keyword navy];" +
|
|
92
|
+
"[property color][operator :] [keyword yellow];" +
|
|
93
|
+
"}");
|
|
94
|
+
|
|
95
|
+
MT("tagColorHex3",
|
|
96
|
+
"[tag foo] { [property background][operator :] [atom #fff]; }");
|
|
97
|
+
|
|
98
|
+
MT("tagColorHex6",
|
|
99
|
+
"[tag foo] { [property background][operator :] [atom #ffffff]; }");
|
|
100
|
+
|
|
101
|
+
MT("tagColorHex4",
|
|
102
|
+
"[tag foo] { [property background][operator :] [atom&error #ffff]; }");
|
|
103
|
+
|
|
104
|
+
MT("tagColorHexInvalid",
|
|
105
|
+
"[tag foo] { [property background][operator :] [atom&error #ffg]; }");
|
|
106
|
+
|
|
107
|
+
MT("tagNegativeNumber",
|
|
108
|
+
"[tag foo] { [property margin][operator :] [number -5px]; }");
|
|
109
|
+
|
|
110
|
+
MT("tagPositiveNumber",
|
|
111
|
+
"[tag foo] { [property padding][operator :] [number 5px]; }");
|
|
112
|
+
|
|
113
|
+
MT("tagVendor",
|
|
114
|
+
"[tag foo] { [meta -foo-][property box-sizing][operator :] [meta -foo-][string-2 border-box]; }");
|
|
115
|
+
|
|
116
|
+
MT("tagBogusProperty",
|
|
117
|
+
"[tag foo] { [property&error barhelloworld][operator :] [number 0]; }");
|
|
118
|
+
|
|
119
|
+
MT("tagTwoProperties",
|
|
120
|
+
"[tag foo] { [property margin][operator :] [number 0]; [property padding][operator :] [number 0]; }");
|
|
121
|
+
|
|
122
|
+
MT("tagTwoPropertiesURL",
|
|
123
|
+
"[tag foo] { [property background][operator :] [string-2 url]([string //example.com/foo.png]); [property padding][operator :] [number 0]; }");
|
|
124
|
+
|
|
125
|
+
MT("commentSGML",
|
|
126
|
+
"[comment <!--comment-->]");
|
|
127
|
+
|
|
128
|
+
IT("tagSelector",
|
|
129
|
+
"strong, em [1 { background][2 : rgba][3 (255, 255, 0, .2][2 )][1 ;]}");
|
|
130
|
+
|
|
131
|
+
IT("atMedia",
|
|
132
|
+
"[1 @media { foo ][2 { ][1 } ]}");
|
|
133
|
+
|
|
134
|
+
IT("comma",
|
|
135
|
+
"foo [1 { font-family][2 : verdana, sans-serif][1 ; ]}");
|
|
136
|
+
|
|
137
|
+
IT("parentheses",
|
|
138
|
+
"foo [1 { background][2 : url][3 (\"bar\"][2 )][1 ; ]}");
|
|
139
|
+
|
|
140
|
+
IT("pseudo",
|
|
141
|
+
"foo:before [1 { ]}");
|
|
142
|
+
})();
|