lines-engine 0.6.2 → 0.9.0
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.gitignore +1 -0
- data/CHANGELOG.md +10 -3
- data/Gemfile +1 -0
- data/Gemfile.lock +10 -6
- data/app/assets/images/favicon.ico +0 -0
- data/app/assets/images/gplus.svg +17 -0
- data/app/assets/javascripts/lines/admin/admin.js +299 -0
- data/app/assets/javascripts/lines/{autosize.min.js → admin/autosize.min.js} +0 -0
- data/app/assets/javascripts/lines/admin/navbar.js +51 -0
- data/app/assets/javascripts/lines/{pictures.js.coffee → admin/pictures.js.coffee} +2 -1
- data/app/assets/javascripts/lines/application.js +3 -0
- data/app/assets/javascripts/lines/articles.js.coffee +1 -0
- data/app/assets/javascripts/lines/viewer.js.coffee +3 -0
- data/app/assets/stylesheets/lines/admin/admin.scss +609 -0
- data/app/assets/stylesheets/lines/admin/variables_and_mixins.scss +36 -0
- data/app/assets/stylesheets/lines/application.scss +2 -13
- data/app/assets/stylesheets/lines/article.scss +165 -69
- data/app/assets/stylesheets/lines/fonts.scss +2 -2
- data/app/assets/stylesheets/lines/footer.scss +10 -56
- data/app/assets/stylesheets/lines/general.scss +18 -13
- data/app/assets/stylesheets/lines/media_queries.scss +5 -1
- data/app/assets/stylesheets/lines/messages.scss +28 -0
- data/app/assets/stylesheets/lines/navbar.scss +199 -122
- data/app/assets/stylesheets/lines/pagination.scss +8 -31
- data/app/assets/stylesheets/lines/pygments.css.erb +1 -2
- data/app/assets/stylesheets/lines/variables_and_mixins.scss +4 -0
- data/app/controllers/lines/admin/articles_controller.rb +8 -6
- data/app/controllers/lines/admin/authors_controller.rb +2 -2
- data/app/controllers/lines/admin/pictures_controller.rb +1 -1
- data/app/controllers/lines/application_controller.rb +1 -1
- data/app/controllers/lines/articles_controller.rb +3 -1
- data/app/controllers/lines/password_resets_controller.rb +4 -7
- data/app/controllers/lines/sessions_controller.rb +3 -3
- data/app/helpers/lines/application_helper.rb +25 -4
- data/app/mailers/lines/user_mailer.rb +1 -1
- data/app/models/lines/article.rb +13 -3
- data/app/models/lines/user.rb +2 -2
- data/app/uploaders/picture_uploader.rb +1 -1
- data/app/views/layouts/lines/_markdown_cheatsheet.html.erb +72 -0
- data/app/views/layouts/lines/admin.html.erb +15 -4
- data/app/views/layouts/lines/application.html.erb +16 -4
- data/app/views/layouts/lines/preview.html.erb +30 -2
- data/app/views/lines/admin/articles/_form.html.erb +50 -148
- data/app/views/lines/admin/articles/_picture_box.html.erb +37 -8
- data/app/views/lines/admin/articles/edit.html.erb +2 -12
- data/app/views/lines/admin/articles/index.html.erb +40 -28
- data/app/views/lines/admin/articles/new.html.erb +3 -10
- data/app/views/lines/admin/articles/show.html.erb +6 -4
- data/app/views/lines/admin/authors/_form.html.erb +12 -41
- data/app/views/lines/admin/authors/index.html.erb +18 -13
- data/app/views/lines/admin/authors/show.html.erb +19 -48
- data/app/views/lines/admin/pictures/_picture.html.erb +5 -4
- data/app/views/lines/admin/pictures/create.js.erb +1 -1
- data/app/views/lines/admin/pictures/destroy.js.erb +1 -1
- data/app/views/lines/articles/_article.html.erb +10 -6
- data/app/views/lines/articles/_article_collection.html.erb +1 -1
- data/app/views/lines/articles/_article_small.html.erb +9 -7
- data/app/views/lines/articles/index.atom.builder +10 -9
- data/app/views/lines/articles/index.html.erb +2 -2
- data/app/views/lines/articles/show.html.erb +5 -1
- data/app/views/lines/password_resets/edit.html.erb +25 -12
- data/app/views/lines/password_resets/new.html.erb +14 -8
- data/app/views/lines/sessions/new.html.erb +6 -10
- data/app/views/lines/shared/_flash.html.erb +1 -1
- data/app/views/lines/shared/_footer.html.erb +5 -28
- data/app/views/lines/user_mailer/password_reset.html.erb +6 -5
- data/app/views/lines/user_mailer/password_reset.text.erb +8 -4
- data/config/lines_config.yml +15 -14
- data/config/routes.rb +2 -2
- data/db/seeds.rb +5 -5
- data/lib/lines/engine.rb +1 -1
- data/lib/lines/version.rb +1 -1
- data/lines.gemspec +1 -1
- data/public/codemirror/.gitattributes +8 -0
- data/public/codemirror/.gitignore +8 -0
- data/public/codemirror/.npmignore +9 -0
- data/public/codemirror/.travis.yml +4 -0
- data/public/codemirror/AUTHORS +474 -0
- data/public/codemirror/CONTRIBUTING.md +88 -0
- data/public/codemirror/LICENSE +19 -0
- data/public/codemirror/README.md +27 -0
- data/public/codemirror/addon/comment/comment.js +183 -0
- data/public/codemirror/addon/comment/continuecomment.js +85 -0
- data/public/codemirror/addon/dialog/dialog.css +32 -0
- data/public/codemirror/addon/dialog/dialog.js +157 -0
- data/public/codemirror/addon/display/fullscreen.css +6 -0
- data/public/codemirror/addon/display/fullscreen.js +41 -0
- data/public/codemirror/addon/display/panel.js +112 -0
- data/public/codemirror/addon/display/placeholder.js +58 -0
- data/public/codemirror/addon/display/rulers.js +63 -0
- data/public/codemirror/addon/edit/closebrackets.js +185 -0
- data/public/codemirror/addon/edit/closetag.js +166 -0
- data/public/codemirror/addon/edit/continuelist.js +51 -0
- data/public/codemirror/addon/edit/matchbrackets.js +120 -0
- data/public/codemirror/addon/edit/matchtags.js +66 -0
- data/public/codemirror/addon/edit/trailingspace.js +27 -0
- data/public/codemirror/addon/fold/brace-fold.js +105 -0
- data/public/codemirror/addon/fold/comment-fold.js +57 -0
- data/public/codemirror/addon/fold/foldcode.js +149 -0
- data/public/codemirror/addon/fold/foldgutter.css +20 -0
- data/public/codemirror/addon/fold/foldgutter.js +146 -0
- data/public/codemirror/addon/fold/indent-fold.js +44 -0
- data/public/codemirror/addon/fold/markdown-fold.js +49 -0
- data/public/codemirror/addon/fold/xml-fold.js +182 -0
- data/public/codemirror/addon/hint/anyword-hint.js +41 -0
- data/public/codemirror/addon/hint/css-hint.js +60 -0
- data/public/codemirror/addon/hint/html-hint.js +348 -0
- data/public/codemirror/addon/hint/javascript-hint.js +146 -0
- data/public/codemirror/addon/hint/show-hint.css +38 -0
- data/public/codemirror/addon/hint/show-hint.js +386 -0
- data/public/codemirror/addon/hint/sql-hint.js +254 -0
- data/public/codemirror/addon/hint/xml-hint.js +110 -0
- data/public/codemirror/addon/lint/coffeescript-lint.js +41 -0
- data/public/codemirror/addon/lint/css-lint.js +35 -0
- data/public/codemirror/addon/lint/javascript-lint.js +136 -0
- data/public/codemirror/addon/lint/json-lint.js +31 -0
- data/public/codemirror/addon/lint/lint.css +73 -0
- data/public/codemirror/addon/lint/lint.js +207 -0
- data/public/codemirror/addon/lint/yaml-lint.js +28 -0
- data/public/codemirror/addon/merge/merge.css +112 -0
- data/public/codemirror/addon/merge/merge.js +775 -0
- data/public/codemirror/addon/mode/loadmode.js +64 -0
- data/public/codemirror/addon/mode/multiplex.js +123 -0
- data/public/codemirror/addon/mode/multiplex_test.js +33 -0
- data/public/codemirror/addon/mode/overlay.js +85 -0
- data/public/codemirror/addon/mode/simple.js +213 -0
- data/public/codemirror/addon/runmode/colorize.js +40 -0
- data/public/codemirror/addon/runmode/runmode-standalone.js +157 -0
- data/public/codemirror/addon/runmode/runmode.js +72 -0
- data/public/codemirror/addon/runmode/runmode.node.js +178 -0
- data/public/codemirror/addon/scroll/annotatescrollbar.js +115 -0
- data/public/codemirror/addon/scroll/scrollpastend.js +46 -0
- data/public/codemirror/addon/scroll/simplescrollbars.css +66 -0
- data/public/codemirror/addon/scroll/simplescrollbars.js +147 -0
- data/public/codemirror/addon/search/match-highlighter.js +128 -0
- data/public/codemirror/addon/search/matchesonscrollbar.css +8 -0
- data/public/codemirror/addon/search/matchesonscrollbar.js +97 -0
- data/public/codemirror/addon/search/search.js +202 -0
- data/public/codemirror/addon/search/searchcursor.js +189 -0
- data/public/codemirror/addon/selection/active-line.js +71 -0
- data/public/codemirror/addon/selection/mark-selection.js +118 -0
- data/public/codemirror/addon/selection/selection-pointer.js +98 -0
- data/public/codemirror/addon/tern/tern.css +87 -0
- data/public/codemirror/addon/tern/tern.js +699 -0
- data/public/codemirror/addon/tern/worker.js +44 -0
- data/public/codemirror/addon/wrap/hardwrap.js +139 -0
- data/public/codemirror/bin/authors.sh +6 -0
- data/public/codemirror/bin/compress +92 -0
- data/public/codemirror/bin/lint +3 -0
- data/public/codemirror/bin/release +45 -0
- data/public/codemirror/bin/source-highlight +51 -0
- data/public/codemirror/bower.json +17 -0
- data/public/codemirror/demo/activeline.html +78 -0
- data/public/codemirror/demo/anywordhint.html +79 -0
- data/public/codemirror/demo/bidi.html +74 -0
- data/public/codemirror/demo/btree.html +85 -0
- data/public/codemirror/demo/buffers.html +109 -0
- data/public/codemirror/demo/changemode.html +58 -0
- data/public/codemirror/demo/closebrackets.html +52 -0
- data/public/codemirror/demo/closetag.html +41 -0
- data/public/codemirror/demo/complete.html +79 -0
- data/public/codemirror/demo/emacs.html +75 -0
- data/public/codemirror/demo/folding.html +95 -0
- data/public/codemirror/demo/fullscreen.html +83 -0
- data/public/codemirror/demo/hardwrap.html +72 -0
- data/public/codemirror/demo/html5complete.html +56 -0
- data/public/codemirror/demo/indentwrap.html +59 -0
- data/public/codemirror/demo/lint.html +171 -0
- data/public/codemirror/demo/loadmode.html +72 -0
- data/public/codemirror/demo/marker.html +52 -0
- data/public/codemirror/demo/markselection.html +52 -0
- data/public/codemirror/demo/matchhighlighter.html +47 -0
- data/public/codemirror/demo/matchtags.html +48 -0
- data/public/codemirror/demo/merge.html +122 -0
- data/public/codemirror/demo/multiplex.html +75 -0
- data/public/codemirror/demo/mustache.html +69 -0
- data/public/codemirror/demo/panel.html +136 -0
- data/public/codemirror/demo/placeholder.html +45 -0
- data/public/codemirror/demo/preview.html +87 -0
- data/public/codemirror/demo/requirejs.html +70 -0
- data/public/codemirror/demo/resize.html +51 -0
- data/public/codemirror/demo/rulers.html +49 -0
- data/public/codemirror/demo/runmode.html +62 -0
- data/public/codemirror/demo/search.html +95 -0
- data/public/codemirror/demo/simplemode.html +186 -0
- data/public/codemirror/demo/simplescrollbars.html +82 -0
- data/public/codemirror/demo/spanaffectswrapping_shim.html +85 -0
- data/public/codemirror/demo/sublime.html +76 -0
- data/public/codemirror/demo/tern.html +133 -0
- data/public/codemirror/demo/theme.html +152 -0
- data/public/codemirror/demo/trailingspace.html +48 -0
- data/public/codemirror/demo/variableheight.html +67 -0
- data/public/codemirror/demo/vim.html +104 -0
- data/public/codemirror/demo/visibletabs.html +62 -0
- data/public/codemirror/demo/widget.html +85 -0
- data/public/codemirror/demo/xmlcomplete.html +119 -0
- data/public/codemirror/doc/activebookmark.js +57 -0
- data/public/codemirror/doc/compress.html +329 -0
- data/public/codemirror/doc/docs.css +271 -0
- data/public/codemirror/doc/internals.html +503 -0
- data/public/codemirror/doc/logo.png +0 -0
- data/public/codemirror/doc/logo.svg +181 -0
- data/public/codemirror/doc/manual.html +3327 -0
- data/public/codemirror/doc/realworld.html +174 -0
- data/public/codemirror/doc/releases.html +1116 -0
- data/public/codemirror/doc/reporting.html +61 -0
- data/public/codemirror/doc/upgrade_v2.2.html +96 -0
- data/public/codemirror/doc/upgrade_v3.html +230 -0
- data/public/codemirror/doc/upgrade_v4.html +144 -0
- data/public/codemirror/doc/yinyang.png +0 -0
- data/public/codemirror/index.html +199 -0
- data/public/codemirror/keymap/emacs.js +412 -0
- data/public/codemirror/keymap/sublime.js +555 -0
- data/public/codemirror/keymap/vim.js +5060 -0
- data/public/codemirror/lib/codemirror.css +332 -0
- data/public/codemirror/lib/codemirror.js +8788 -0
- data/public/codemirror/mode/apl/apl.js +174 -0
- data/public/codemirror/mode/apl/index.html +72 -0
- data/public/codemirror/mode/asciiarmor/asciiarmor.js +73 -0
- data/public/codemirror/mode/asciiarmor/index.html +46 -0
- data/public/codemirror/mode/asn.1/asn.1.js +204 -0
- data/public/codemirror/mode/asn.1/index.html +78 -0
- data/public/codemirror/mode/asterisk/asterisk.js +196 -0
- data/public/codemirror/mode/asterisk/index.html +154 -0
- data/public/codemirror/mode/brainfuck/brainfuck.js +85 -0
- data/public/codemirror/mode/brainfuck/index.html +85 -0
- data/public/codemirror/mode/clike/clike.js +604 -0
- data/public/codemirror/mode/clike/index.html +252 -0
- data/public/codemirror/mode/clike/scala.html +767 -0
- data/public/codemirror/mode/clike/test.js +33 -0
- data/public/codemirror/mode/clojure/clojure.js +244 -0
- data/public/codemirror/mode/clojure/index.html +88 -0
- data/public/codemirror/mode/cmake/cmake.js +97 -0
- data/public/codemirror/mode/cmake/index.html +129 -0
- data/public/codemirror/mode/cobol/cobol.js +255 -0
- data/public/codemirror/mode/cobol/index.html +210 -0
- data/public/codemirror/mode/coffeescript/coffeescript.js +369 -0
- data/public/codemirror/mode/coffeescript/index.html +740 -0
- data/public/codemirror/mode/commonlisp/commonlisp.js +123 -0
- data/public/codemirror/mode/commonlisp/index.html +177 -0
- data/public/codemirror/mode/css/css.js +756 -0
- data/public/codemirror/mode/css/index.html +75 -0
- data/public/codemirror/mode/css/less.html +152 -0
- data/public/codemirror/mode/css/less_test.js +54 -0
- data/public/codemirror/mode/css/scss.html +157 -0
- data/public/codemirror/mode/css/scss_test.js +110 -0
- data/public/codemirror/mode/css/test.js +188 -0
- data/public/codemirror/mode/cypher/cypher.js +146 -0
- data/public/codemirror/mode/cypher/index.html +63 -0
- data/public/codemirror/mode/d/d.js +218 -0
- data/public/codemirror/mode/d/index.html +273 -0
- data/public/codemirror/mode/dart/dart.js +50 -0
- data/public/codemirror/mode/dart/index.html +71 -0
- data/public/codemirror/mode/diff/diff.js +47 -0
- data/public/codemirror/mode/diff/index.html +117 -0
- data/public/codemirror/mode/django/django.js +350 -0
- data/public/codemirror/mode/django/index.html +73 -0
- data/public/codemirror/mode/dockerfile/dockerfile.js +76 -0
- data/public/codemirror/mode/dockerfile/index.html +73 -0
- data/public/codemirror/mode/dtd/dtd.js +142 -0
- data/public/codemirror/mode/dtd/index.html +89 -0
- data/public/codemirror/mode/dylan/dylan.js +291 -0
- data/public/codemirror/mode/dylan/index.html +407 -0
- data/public/codemirror/mode/ebnf/ebnf.js +195 -0
- data/public/codemirror/mode/ebnf/index.html +102 -0
- data/public/codemirror/mode/ecl/ecl.js +206 -0
- data/public/codemirror/mode/ecl/index.html +52 -0
- data/public/codemirror/mode/eiffel/eiffel.js +160 -0
- data/public/codemirror/mode/eiffel/index.html +429 -0
- data/public/codemirror/mode/elm/elm.js +205 -0
- data/public/codemirror/mode/elm/index.html +61 -0
- data/public/codemirror/mode/erlang/erlang.js +618 -0
- data/public/codemirror/mode/erlang/index.html +76 -0
- data/public/codemirror/mode/factor/factor.js +83 -0
- data/public/codemirror/mode/factor/index.html +77 -0
- data/public/codemirror/mode/forth/forth.js +180 -0
- data/public/codemirror/mode/forth/index.html +75 -0
- data/public/codemirror/mode/fortran/fortran.js +188 -0
- data/public/codemirror/mode/fortran/index.html +81 -0
- data/public/codemirror/mode/gas/gas.js +345 -0
- data/public/codemirror/mode/gas/index.html +68 -0
- data/public/codemirror/mode/gfm/gfm.js +124 -0
- data/public/codemirror/mode/gfm/index.html +93 -0
- data/public/codemirror/mode/gfm/test.js +213 -0
- data/public/codemirror/mode/gherkin/gherkin.js +178 -0
- data/public/codemirror/mode/gherkin/index.html +48 -0
- data/public/codemirror/mode/go/go.js +185 -0
- data/public/codemirror/mode/go/index.html +85 -0
- data/public/codemirror/mode/groovy/groovy.js +230 -0
- data/public/codemirror/mode/groovy/index.html +84 -0
- data/public/codemirror/mode/haml/haml.js +159 -0
- data/public/codemirror/mode/haml/index.html +79 -0
- data/public/codemirror/mode/haml/test.js +97 -0
- data/public/codemirror/mode/handlebars/handlebars.js +53 -0
- data/public/codemirror/mode/handlebars/index.html +83 -0
- data/public/codemirror/mode/haskell/haskell.js +267 -0
- data/public/codemirror/mode/haskell/index.html +73 -0
- data/public/codemirror/mode/haxe/haxe.js +518 -0
- data/public/codemirror/mode/haxe/index.html +124 -0
- data/public/codemirror/mode/htmlembedded/htmlembedded.js +28 -0
- data/public/codemirror/mode/htmlembedded/index.html +59 -0
- data/public/codemirror/mode/htmlmixed/htmlmixed.js +121 -0
- data/public/codemirror/mode/htmlmixed/index.html +89 -0
- data/public/codemirror/mode/http/http.js +113 -0
- data/public/codemirror/mode/http/index.html +45 -0
- data/public/codemirror/mode/idl/idl.js +290 -0
- data/public/codemirror/mode/idl/index.html +64 -0
- data/public/codemirror/mode/index.html +149 -0
- data/public/codemirror/mode/jade/index.html +70 -0
- data/public/codemirror/mode/jade/jade.js +590 -0
- data/public/codemirror/mode/javascript/index.html +114 -0
- data/public/codemirror/mode/javascript/javascript.js +704 -0
- data/public/codemirror/mode/javascript/json-ld.html +72 -0
- data/public/codemirror/mode/javascript/test.js +205 -0
- data/public/codemirror/mode/javascript/typescript.html +61 -0
- data/public/codemirror/mode/jinja2/index.html +54 -0
- data/public/codemirror/mode/jinja2/jinja2.js +142 -0
- data/public/codemirror/mode/julia/index.html +195 -0
- data/public/codemirror/mode/julia/julia.js +299 -0
- data/public/codemirror/mode/kotlin/index.html +89 -0
- data/public/codemirror/mode/kotlin/kotlin.js +284 -0
- data/public/codemirror/mode/livescript/index.html +459 -0
- data/public/codemirror/mode/livescript/livescript.js +280 -0
- data/public/codemirror/mode/lua/index.html +85 -0
- data/public/codemirror/mode/lua/lua.js +159 -0
- data/public/codemirror/mode/markdown/index.html +359 -0
- data/public/codemirror/mode/markdown/markdown.js +781 -0
- data/public/codemirror/mode/markdown/test.js +792 -0
- data/public/codemirror/mode/mathematica/index.html +72 -0
- data/public/codemirror/mode/mathematica/mathematica.js +175 -0
- data/public/codemirror/mode/meta.js +190 -0
- data/public/codemirror/mode/mirc/index.html +160 -0
- data/public/codemirror/mode/mirc/mirc.js +193 -0
- data/public/codemirror/mode/mllike/index.html +179 -0
- data/public/codemirror/mode/mllike/mllike.js +205 -0
- data/public/codemirror/mode/modelica/index.html +67 -0
- data/public/codemirror/mode/modelica/modelica.js +245 -0
- data/public/codemirror/mode/mumps/index.html +85 -0
- data/public/codemirror/mode/mumps/mumps.js +148 -0
- data/public/codemirror/mode/nginx/index.html +181 -0
- data/public/codemirror/mode/nginx/nginx.js +178 -0
- data/public/codemirror/mode/ntriples/index.html +45 -0
- data/public/codemirror/mode/ntriples/ntriples.js +186 -0
- data/public/codemirror/mode/octave/index.html +83 -0
- data/public/codemirror/mode/octave/octave.js +135 -0
- data/public/codemirror/mode/pascal/index.html +61 -0
- data/public/codemirror/mode/pascal/pascal.js +109 -0
- data/public/codemirror/mode/pegjs/index.html +66 -0
- data/public/codemirror/mode/pegjs/pegjs.js +114 -0
- data/public/codemirror/mode/perl/index.html +75 -0
- data/public/codemirror/mode/perl/perl.js +837 -0
- data/public/codemirror/mode/php/index.html +64 -0
- data/public/codemirror/mode/php/php.js +230 -0
- data/public/codemirror/mode/php/test.js +154 -0
- data/public/codemirror/mode/pig/index.html +55 -0
- data/public/codemirror/mode/pig/pig.js +178 -0
- data/public/codemirror/mode/properties/index.html +53 -0
- data/public/codemirror/mode/properties/properties.js +78 -0
- data/public/codemirror/mode/puppet/index.html +121 -0
- data/public/codemirror/mode/puppet/puppet.js +220 -0
- data/public/codemirror/mode/python/index.html +198 -0
- data/public/codemirror/mode/python/python.js +358 -0
- data/public/codemirror/mode/q/index.html +144 -0
- data/public/codemirror/mode/q/q.js +139 -0
- data/public/codemirror/mode/r/index.html +85 -0
- data/public/codemirror/mode/r/r.js +162 -0
- data/public/codemirror/mode/rpm/changes/index.html +66 -0
- data/public/codemirror/mode/rpm/index.html +149 -0
- data/public/codemirror/mode/rpm/rpm.js +101 -0
- data/public/codemirror/mode/rst/index.html +535 -0
- data/public/codemirror/mode/rst/rst.js +557 -0
- data/public/codemirror/mode/ruby/index.html +183 -0
- data/public/codemirror/mode/ruby/ruby.js +285 -0
- data/public/codemirror/mode/ruby/test.js +14 -0
- data/public/codemirror/mode/rust/index.html +60 -0
- data/public/codemirror/mode/rust/rust.js +451 -0
- data/public/codemirror/mode/sass/index.html +66 -0
- data/public/codemirror/mode/sass/sass.js +414 -0
- data/public/codemirror/mode/scheme/index.html +77 -0
- data/public/codemirror/mode/scheme/scheme.js +249 -0
- data/public/codemirror/mode/shell/index.html +66 -0
- data/public/codemirror/mode/shell/shell.js +139 -0
- data/public/codemirror/mode/shell/test.js +58 -0
- data/public/codemirror/mode/sieve/index.html +93 -0
- data/public/codemirror/mode/sieve/sieve.js +193 -0
- data/public/codemirror/mode/slim/index.html +96 -0
- data/public/codemirror/mode/slim/slim.js +575 -0
- data/public/codemirror/mode/slim/test.js +96 -0
- data/public/codemirror/mode/smalltalk/index.html +68 -0
- data/public/codemirror/mode/smalltalk/smalltalk.js +168 -0
- data/public/codemirror/mode/smarty/index.html +138 -0
- data/public/codemirror/mode/smarty/smarty.js +225 -0
- data/public/codemirror/mode/solr/index.html +57 -0
- data/public/codemirror/mode/solr/solr.js +104 -0
- data/public/codemirror/mode/soy/index.html +68 -0
- data/public/codemirror/mode/soy/soy.js +198 -0
- data/public/codemirror/mode/sparql/index.html +61 -0
- data/public/codemirror/mode/sparql/sparql.js +174 -0
- data/public/codemirror/mode/spreadsheet/index.html +42 -0
- data/public/codemirror/mode/spreadsheet/spreadsheet.js +109 -0
- data/public/codemirror/mode/sql/index.html +84 -0
- data/public/codemirror/mode/sql/sql.js +391 -0
- data/public/codemirror/mode/stex/index.html +110 -0
- data/public/codemirror/mode/stex/stex.js +251 -0
- data/public/codemirror/mode/stex/test.js +123 -0
- data/public/codemirror/mode/stylus/index.html +106 -0
- data/public/codemirror/mode/stylus/stylus.js +768 -0
- data/public/codemirror/mode/swift/index.html +88 -0
- data/public/codemirror/mode/swift/swift.js +203 -0
- data/public/codemirror/mode/tcl/index.html +142 -0
- data/public/codemirror/mode/tcl/tcl.js +147 -0
- data/public/codemirror/mode/textile/index.html +191 -0
- data/public/codemirror/mode/textile/test.js +417 -0
- data/public/codemirror/mode/textile/textile.js +469 -0
- data/public/codemirror/mode/tiddlywiki/index.html +154 -0
- data/public/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
- data/public/codemirror/mode/tiddlywiki/tiddlywiki.js +358 -0
- data/public/codemirror/mode/tiki/index.html +95 -0
- data/public/codemirror/mode/tiki/tiki.css +26 -0
- data/public/codemirror/mode/tiki/tiki.js +312 -0
- data/public/codemirror/mode/toml/index.html +73 -0
- data/public/codemirror/mode/toml/toml.js +88 -0
- data/public/codemirror/mode/tornado/index.html +63 -0
- data/public/codemirror/mode/tornado/tornado.js +68 -0
- data/public/codemirror/mode/troff/index.html +146 -0
- data/public/codemirror/mode/troff/troff.js +82 -0
- data/public/codemirror/mode/ttcn-cfg/index.html +115 -0
- data/public/codemirror/mode/ttcn-cfg/ttcn-cfg.js +214 -0
- data/public/codemirror/mode/ttcn/index.html +118 -0
- data/public/codemirror/mode/ttcn/ttcn.js +283 -0
- data/public/codemirror/mode/turtle/index.html +50 -0
- data/public/codemirror/mode/turtle/turtle.js +162 -0
- data/public/codemirror/mode/twig/index.html +45 -0
- data/public/codemirror/mode/twig/twig.js +132 -0
- data/public/codemirror/mode/vb/index.html +102 -0
- data/public/codemirror/mode/vb/vb.js +276 -0
- data/public/codemirror/mode/vbscript/index.html +55 -0
- data/public/codemirror/mode/vbscript/vbscript.js +350 -0
- data/public/codemirror/mode/velocity/index.html +118 -0
- data/public/codemirror/mode/velocity/velocity.js +201 -0
- data/public/codemirror/mode/verilog/index.html +120 -0
- data/public/codemirror/mode/verilog/test.js +273 -0
- data/public/codemirror/mode/verilog/verilog.js +537 -0
- data/public/codemirror/mode/vhdl/index.html +95 -0
- data/public/codemirror/mode/vhdl/vhdl.js +189 -0
- data/public/codemirror/mode/xml/index.html +57 -0
- data/public/codemirror/mode/xml/test.js +51 -0
- data/public/codemirror/mode/xml/xml.js +385 -0
- data/public/codemirror/mode/xquery/index.html +210 -0
- data/public/codemirror/mode/xquery/test.js +67 -0
- data/public/codemirror/mode/xquery/xquery.js +437 -0
- data/public/codemirror/mode/yaml/index.html +80 -0
- data/public/codemirror/mode/yaml/yaml.js +117 -0
- data/public/codemirror/mode/z80/index.html +53 -0
- data/public/codemirror/mode/z80/z80.js +116 -0
- data/public/codemirror/package.json +20 -0
- data/public/codemirror/test/comment_test.js +100 -0
- data/public/codemirror/test/doc_test.js +371 -0
- data/public/codemirror/test/driver.js +138 -0
- data/public/codemirror/test/emacs_test.js +147 -0
- data/public/codemirror/test/index.html +241 -0
- data/public/codemirror/test/lint.js +11 -0
- data/public/codemirror/test/mode_test.css +23 -0
- data/public/codemirror/test/mode_test.js +192 -0
- data/public/codemirror/test/multi_test.js +285 -0
- data/public/codemirror/test/phantom_driver.js +31 -0
- data/public/codemirror/test/run.js +31 -0
- data/public/codemirror/test/scroll_test.js +115 -0
- data/public/codemirror/test/search_test.js +62 -0
- data/public/codemirror/test/sql-hint-test.js +189 -0
- data/public/codemirror/test/sublime_test.js +303 -0
- data/public/codemirror/test/test.js +2142 -0
- data/public/codemirror/test/vim_test.js +3955 -0
- data/public/codemirror/theme/3024-day.css +41 -0
- data/public/codemirror/theme/3024-night.css +39 -0
- data/public/codemirror/theme/ambiance-mobile.css +5 -0
- data/public/codemirror/theme/ambiance.css +76 -0
- data/public/codemirror/theme/base16-dark.css +38 -0
- data/public/codemirror/theme/base16-light.css +38 -0
- data/public/codemirror/theme/blackboard.css +32 -0
- data/public/codemirror/theme/cobalt.css +25 -0
- data/public/codemirror/theme/colorforth.css +33 -0
- data/public/codemirror/theme/dracula.css +87 -0
- data/public/codemirror/theme/eclipse.css +23 -0
- data/public/codemirror/theme/elegant.css +13 -0
- data/public/codemirror/theme/erlang-dark.css +34 -0
- data/public/codemirror/theme/icecoder.css +42 -0
- data/public/codemirror/theme/lesser-dark.css +47 -0
- data/public/codemirror/theme/lines.css +109 -0
- data/public/codemirror/theme/liquibyte.css +95 -0
- data/public/codemirror/theme/material.css +105 -0
- data/public/codemirror/theme/mbo.css +37 -0
- data/public/codemirror/theme/mdn-like.css +46 -0
- data/public/codemirror/theme/midnight.css +47 -0
- data/public/codemirror/theme/monokai.css +35 -0
- data/public/codemirror/theme/neat.css +12 -0
- data/public/codemirror/theme/neo.css +43 -0
- data/public/codemirror/theme/night.css +28 -0
- data/public/codemirror/theme/paraiso-dark.css +38 -0
- data/public/codemirror/theme/paraiso-light.css +38 -0
- data/public/codemirror/theme/pastel-on-dark.css +53 -0
- data/public/codemirror/theme/rubyblue.css +25 -0
- data/public/codemirror/theme/seti.css +88 -0
- data/public/codemirror/theme/solarized.css +165 -0
- data/public/codemirror/theme/the-matrix.css +30 -0
- data/public/codemirror/theme/tomorrow-night-bright.css +35 -0
- data/public/codemirror/theme/tomorrow-night-eighties.css +38 -0
- data/public/codemirror/theme/ttcn.css +65 -0
- data/public/codemirror/theme/twilight.css +32 -0
- data/public/codemirror/theme/vibrant-ink.css +34 -0
- data/public/codemirror/theme/xq-dark.css +53 -0
- data/public/codemirror/theme/xq-light.css +43 -0
- data/public/codemirror/theme/yeti.css +86 -0
- data/public/codemirror/theme/zenburn.css +37 -0
- data/public/fira-mono/FiraMono-Bold.eot +0 -0
- data/public/fira-mono/FiraMono-Bold.otf +0 -0
- data/public/fira-mono/FiraMono-Bold.ttf +0 -0
- data/public/fira-mono/FiraMono-Bold.woff +0 -0
- data/public/fira-mono/FiraMono-Medium.eot +0 -0
- data/public/fira-mono/FiraMono-Medium.otf +0 -0
- data/public/fira-mono/FiraMono-Medium.ttf +0 -0
- data/public/fira-mono/FiraMono-Medium.woff +0 -0
- data/public/fira-mono/FiraMono-Regular.eot +0 -0
- data/public/fira-mono/FiraMono-Regular.otf +0 -0
- data/public/fira-mono/FiraMono-Regular.ttf +0 -0
- data/public/fira-mono/FiraMono-Regular.woff +0 -0
- data/public/fira-mono/fira-mono.css +32 -0
- data/public/heroes/lines_default_01.png +0 -0
- data/public/heroes/lines_default_02.png +0 -0
- data/public/heroes/lines_default_03.png +0 -0
- data/public/iconfont/iconfont.css +48 -0
- data/public/iconfont/iconfont.eot +0 -0
- data/public/iconfont/iconfont.svg +18 -0
- data/public/iconfont/iconfont.ttf +0 -0
- data/public/iconfont/iconfont.woff +0 -0
- data/spec/dummy/config/environments/test.rb +3 -1
- data/spec/dummy/db/migrate/20140505122014_base_migration.rb +84 -0
- data/spec/dummy/db/migrate/20140702160602_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb +31 -0
- data/spec/dummy/db/migrate/20140702160603_add_missing_unique_indices.acts_as_taggable_on_engine.rb +20 -0
- data/spec/dummy/db/migrate/20140702160604_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +15 -0
- data/spec/dummy/db/migrate/20141027143656_add_teaser_to_article.rb +5 -0
- data/spec/dummy/db/migrate/20150421093311_add_reset_password_fields_to_users.rb +6 -0
- data/spec/dummy/db/schema.rb +50 -50
- data/spec/dummy/db/seeds.rb +5 -5
- data/spec/factories/users.rb +1 -1
- data/spec/features/article_spec.rb +4 -4
- data/spec/features/password_reset_spec.rb +17 -17
- data/spec/features/user_logs_in_spec.rb +6 -8
- data/spec/mailers/lines/user_mailer_spec.rb +1 -1
- data/spec/models/article_spec.rb +6 -6
- data/spec/support/auth_macros.rb +2 -2
- metadata +492 -26
- metadata.gz.sig +0 -0
- data/app/assets/images/ic_gplus.png +0 -0
- data/app/assets/images/ic_gplus_hover.png +0 -0
- data/app/assets/images/logo.png +0 -0
- data/app/assets/images/logo_opoloo.png +0 -0
- data/app/assets/images/signet.png +0 -0
- data/app/assets/javascripts/lines/admin.js +0 -201
- data/app/assets/stylesheets/lines/admin.scss +0 -970
- data/app/views/layouts/lines/_messages.html.erb +0 -8
- data/app/views/lines/admin/articles/_formatting_guide.html.erb +0 -89
- data/public/heroes/001.jpg +0 -0
- data/public/heroes/001_dark.jpg +0 -0
- data/public/heroes/002.jpg +0 -0
- data/public/heroes/002_dark.jpg +0 -0
- data/public/heroes/003.jpg +0 -0
- data/public/heroes/003_dark.jpg +0 -0
- data/spec/dummy/config/lines_config.yml +0 -58
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
|
3
|
+
|
|
4
|
+
(function(mod) {
|
|
5
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
|
6
|
+
mod(require("../../lib/codemirror"), require("../../mode/sql/sql"));
|
|
7
|
+
else if (typeof define == "function" && define.amd) // AMD
|
|
8
|
+
define(["../../lib/codemirror", "../../mode/sql/sql"], mod);
|
|
9
|
+
else // Plain browser env
|
|
10
|
+
mod(CodeMirror);
|
|
11
|
+
})(function(CodeMirror) {
|
|
12
|
+
"use strict";
|
|
13
|
+
|
|
14
|
+
var tables;
|
|
15
|
+
var defaultTable;
|
|
16
|
+
var keywords;
|
|
17
|
+
var CONS = {
|
|
18
|
+
QUERY_DIV: ";",
|
|
19
|
+
ALIAS_KEYWORD: "AS"
|
|
20
|
+
};
|
|
21
|
+
var Pos = CodeMirror.Pos;
|
|
22
|
+
|
|
23
|
+
function getKeywords(editor) {
|
|
24
|
+
var mode = editor.doc.modeOption;
|
|
25
|
+
if (mode === "sql") mode = "text/x-sql";
|
|
26
|
+
return CodeMirror.resolveMode(mode).keywords;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
function getText(item) {
|
|
30
|
+
return typeof item == "string" ? item : item.text;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
function getItem(list, item) {
|
|
34
|
+
if (!list.slice) return list[item];
|
|
35
|
+
for (var i = list.length - 1; i >= 0; i--) if (getText(list[i]) == item)
|
|
36
|
+
return list[i];
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
function shallowClone(object) {
|
|
40
|
+
var result = {};
|
|
41
|
+
for (var key in object) if (object.hasOwnProperty(key))
|
|
42
|
+
result[key] = object[key];
|
|
43
|
+
return result;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
function match(string, word) {
|
|
47
|
+
var len = string.length;
|
|
48
|
+
var sub = getText(word).substr(0, len);
|
|
49
|
+
return string.toUpperCase() === sub.toUpperCase();
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
function addMatches(result, search, wordlist, formatter) {
|
|
53
|
+
for (var word in wordlist) {
|
|
54
|
+
if (!wordlist.hasOwnProperty(word)) continue;
|
|
55
|
+
if (wordlist.slice) word = wordlist[word];
|
|
56
|
+
|
|
57
|
+
if (match(search, word)) result.push(formatter(word));
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
function cleanName(name) {
|
|
62
|
+
// Get rid name from backticks(`) and preceding dot(.)
|
|
63
|
+
if (name.charAt(0) == ".") {
|
|
64
|
+
name = name.substr(1);
|
|
65
|
+
}
|
|
66
|
+
return name.replace(/`/g, "");
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
function insertBackticks(name) {
|
|
70
|
+
var nameParts = getText(name).split(".");
|
|
71
|
+
for (var i = 0; i < nameParts.length; i++)
|
|
72
|
+
nameParts[i] = "`" + nameParts[i] + "`";
|
|
73
|
+
var escaped = nameParts.join(".");
|
|
74
|
+
if (typeof name == "string") return escaped;
|
|
75
|
+
name = shallowClone(name);
|
|
76
|
+
name.text = escaped;
|
|
77
|
+
return name;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
function nameCompletion(cur, token, result, editor) {
|
|
81
|
+
// Try to complete table, colunm names and return start position of completion
|
|
82
|
+
var useBacktick = false;
|
|
83
|
+
var nameParts = [];
|
|
84
|
+
var start = token.start;
|
|
85
|
+
var cont = true;
|
|
86
|
+
while (cont) {
|
|
87
|
+
cont = (token.string.charAt(0) == ".");
|
|
88
|
+
useBacktick = useBacktick || (token.string.charAt(0) == "`");
|
|
89
|
+
|
|
90
|
+
start = token.start;
|
|
91
|
+
nameParts.unshift(cleanName(token.string));
|
|
92
|
+
|
|
93
|
+
token = editor.getTokenAt(Pos(cur.line, token.start));
|
|
94
|
+
if (token.string == ".") {
|
|
95
|
+
cont = true;
|
|
96
|
+
token = editor.getTokenAt(Pos(cur.line, token.start));
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// Try to complete table names
|
|
101
|
+
var string = nameParts.join(".");
|
|
102
|
+
addMatches(result, string, tables, function(w) {
|
|
103
|
+
return useBacktick ? insertBackticks(w) : w;
|
|
104
|
+
});
|
|
105
|
+
|
|
106
|
+
// Try to complete columns from defaultTable
|
|
107
|
+
addMatches(result, string, defaultTable, function(w) {
|
|
108
|
+
return useBacktick ? insertBackticks(w) : w;
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
// Try to complete columns
|
|
112
|
+
string = nameParts.pop();
|
|
113
|
+
var table = nameParts.join(".");
|
|
114
|
+
|
|
115
|
+
var alias = false;
|
|
116
|
+
var aliasTable = table;
|
|
117
|
+
// Check if table is available. If not, find table by Alias
|
|
118
|
+
if (!getItem(tables, table)) {
|
|
119
|
+
var oldTable = table;
|
|
120
|
+
table = findTableByAlias(table, editor);
|
|
121
|
+
if (table !== oldTable) alias = true;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
var columns = getItem(tables, table);
|
|
125
|
+
if (columns && columns.columns)
|
|
126
|
+
columns = columns.columns;
|
|
127
|
+
|
|
128
|
+
if (columns) {
|
|
129
|
+
addMatches(result, string, columns, function(w) {
|
|
130
|
+
var tableInsert = table;
|
|
131
|
+
if (alias == true) tableInsert = aliasTable;
|
|
132
|
+
if (typeof w == "string") {
|
|
133
|
+
w = tableInsert + "." + w;
|
|
134
|
+
} else {
|
|
135
|
+
w = shallowClone(w);
|
|
136
|
+
w.text = tableInsert + "." + w.text;
|
|
137
|
+
}
|
|
138
|
+
return useBacktick ? insertBackticks(w) : w;
|
|
139
|
+
});
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
return start;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
function eachWord(lineText, f) {
|
|
146
|
+
if (!lineText) return;
|
|
147
|
+
var excepted = /[,;]/g;
|
|
148
|
+
var words = lineText.split(" ");
|
|
149
|
+
for (var i = 0; i < words.length; i++) {
|
|
150
|
+
f(words[i]?words[i].replace(excepted, '') : '');
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
function convertCurToNumber(cur) {
|
|
155
|
+
// max characters of a line is 999,999.
|
|
156
|
+
return cur.line + cur.ch / Math.pow(10, 6);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
function convertNumberToCur(num) {
|
|
160
|
+
return Pos(Math.floor(num), +num.toString().split('.').pop());
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
function findTableByAlias(alias, editor) {
|
|
164
|
+
var doc = editor.doc;
|
|
165
|
+
var fullQuery = doc.getValue();
|
|
166
|
+
var aliasUpperCase = alias.toUpperCase();
|
|
167
|
+
var previousWord = "";
|
|
168
|
+
var table = "";
|
|
169
|
+
var separator = [];
|
|
170
|
+
var validRange = {
|
|
171
|
+
start: Pos(0, 0),
|
|
172
|
+
end: Pos(editor.lastLine(), editor.getLineHandle(editor.lastLine()).length)
|
|
173
|
+
};
|
|
174
|
+
|
|
175
|
+
//add separator
|
|
176
|
+
var indexOfSeparator = fullQuery.indexOf(CONS.QUERY_DIV);
|
|
177
|
+
while(indexOfSeparator != -1) {
|
|
178
|
+
separator.push(doc.posFromIndex(indexOfSeparator));
|
|
179
|
+
indexOfSeparator = fullQuery.indexOf(CONS.QUERY_DIV, indexOfSeparator+1);
|
|
180
|
+
}
|
|
181
|
+
separator.unshift(Pos(0, 0));
|
|
182
|
+
separator.push(Pos(editor.lastLine(), editor.getLineHandle(editor.lastLine()).text.length));
|
|
183
|
+
|
|
184
|
+
//find valid range
|
|
185
|
+
var prevItem = 0;
|
|
186
|
+
var current = convertCurToNumber(editor.getCursor());
|
|
187
|
+
for (var i=0; i< separator.length; i++) {
|
|
188
|
+
var _v = convertCurToNumber(separator[i]);
|
|
189
|
+
if (current > prevItem && current <= _v) {
|
|
190
|
+
validRange = { start: convertNumberToCur(prevItem), end: convertNumberToCur(_v) };
|
|
191
|
+
break;
|
|
192
|
+
}
|
|
193
|
+
prevItem = _v;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
var query = doc.getRange(validRange.start, validRange.end, false);
|
|
197
|
+
|
|
198
|
+
for (var i = 0; i < query.length; i++) {
|
|
199
|
+
var lineText = query[i];
|
|
200
|
+
eachWord(lineText, function(word) {
|
|
201
|
+
var wordUpperCase = word.toUpperCase();
|
|
202
|
+
if (wordUpperCase === aliasUpperCase && getItem(tables, previousWord))
|
|
203
|
+
table = previousWord;
|
|
204
|
+
if (wordUpperCase !== CONS.ALIAS_KEYWORD)
|
|
205
|
+
previousWord = word;
|
|
206
|
+
});
|
|
207
|
+
if (table) break;
|
|
208
|
+
}
|
|
209
|
+
return table;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
CodeMirror.registerHelper("hint", "sql", function(editor, options) {
|
|
213
|
+
tables = (options && options.tables) || {};
|
|
214
|
+
var defaultTableName = options && options.defaultTable;
|
|
215
|
+
var disableKeywords = options && options.disableKeywords;
|
|
216
|
+
defaultTable = defaultTableName && getItem(tables, defaultTableName);
|
|
217
|
+
keywords = keywords || getKeywords(editor);
|
|
218
|
+
|
|
219
|
+
if (defaultTableName && !defaultTable)
|
|
220
|
+
defaultTable = findTableByAlias(defaultTableName, editor);
|
|
221
|
+
|
|
222
|
+
defaultTable = defaultTable || [];
|
|
223
|
+
|
|
224
|
+
if (defaultTable.columns)
|
|
225
|
+
defaultTable = defaultTable.columns;
|
|
226
|
+
|
|
227
|
+
var cur = editor.getCursor();
|
|
228
|
+
var result = [];
|
|
229
|
+
var token = editor.getTokenAt(cur), start, end, search;
|
|
230
|
+
if (token.end > cur.ch) {
|
|
231
|
+
token.end = cur.ch;
|
|
232
|
+
token.string = token.string.slice(0, cur.ch - token.start);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
if (token.string.match(/^[.`\w@]\w*$/)) {
|
|
236
|
+
search = token.string;
|
|
237
|
+
start = token.start;
|
|
238
|
+
end = token.end;
|
|
239
|
+
} else {
|
|
240
|
+
start = end = cur.ch;
|
|
241
|
+
search = "";
|
|
242
|
+
}
|
|
243
|
+
if (search.charAt(0) == "." || search.charAt(0) == "`") {
|
|
244
|
+
start = nameCompletion(cur, token, result, editor);
|
|
245
|
+
} else {
|
|
246
|
+
addMatches(result, search, tables, function(w) {return w;});
|
|
247
|
+
addMatches(result, search, defaultTable, function(w) {return w;});
|
|
248
|
+
if (!disableKeywords)
|
|
249
|
+
addMatches(result, search, keywords, function(w) {return w.toUpperCase();});
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
return {list: result, from: Pos(cur.line, start), to: Pos(cur.line, end)};
|
|
253
|
+
});
|
|
254
|
+
});
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
|
3
|
+
|
|
4
|
+
(function(mod) {
|
|
5
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
|
6
|
+
mod(require("../../lib/codemirror"));
|
|
7
|
+
else if (typeof define == "function" && define.amd) // AMD
|
|
8
|
+
define(["../../lib/codemirror"], mod);
|
|
9
|
+
else // Plain browser env
|
|
10
|
+
mod(CodeMirror);
|
|
11
|
+
})(function(CodeMirror) {
|
|
12
|
+
"use strict";
|
|
13
|
+
|
|
14
|
+
var Pos = CodeMirror.Pos;
|
|
15
|
+
|
|
16
|
+
function getHints(cm, options) {
|
|
17
|
+
var tags = options && options.schemaInfo;
|
|
18
|
+
var quote = (options && options.quoteChar) || '"';
|
|
19
|
+
if (!tags) return;
|
|
20
|
+
var cur = cm.getCursor(), token = cm.getTokenAt(cur);
|
|
21
|
+
if (token.end > cur.ch) {
|
|
22
|
+
token.end = cur.ch;
|
|
23
|
+
token.string = token.string.slice(0, cur.ch - token.start);
|
|
24
|
+
}
|
|
25
|
+
var inner = CodeMirror.innerMode(cm.getMode(), token.state);
|
|
26
|
+
if (inner.mode.name != "xml") return;
|
|
27
|
+
var result = [], replaceToken = false, prefix;
|
|
28
|
+
var tag = /\btag\b/.test(token.type) && !/>$/.test(token.string);
|
|
29
|
+
var tagName = tag && /^\w/.test(token.string), tagStart;
|
|
30
|
+
|
|
31
|
+
if (tagName) {
|
|
32
|
+
var before = cm.getLine(cur.line).slice(Math.max(0, token.start - 2), token.start);
|
|
33
|
+
var tagType = /<\/$/.test(before) ? "close" : /<$/.test(before) ? "open" : null;
|
|
34
|
+
if (tagType) tagStart = token.start - (tagType == "close" ? 2 : 1);
|
|
35
|
+
} else if (tag && token.string == "<") {
|
|
36
|
+
tagType = "open";
|
|
37
|
+
} else if (tag && token.string == "</") {
|
|
38
|
+
tagType = "close";
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
if (!tag && !inner.state.tagName || tagType) {
|
|
42
|
+
if (tagName)
|
|
43
|
+
prefix = token.string;
|
|
44
|
+
replaceToken = tagType;
|
|
45
|
+
var cx = inner.state.context, curTag = cx && tags[cx.tagName];
|
|
46
|
+
var childList = cx ? curTag && curTag.children : tags["!top"];
|
|
47
|
+
if (childList && tagType != "close") {
|
|
48
|
+
for (var i = 0; i < childList.length; ++i) if (!prefix || childList[i].lastIndexOf(prefix, 0) == 0)
|
|
49
|
+
result.push("<" + childList[i]);
|
|
50
|
+
} else if (tagType != "close") {
|
|
51
|
+
for (var name in tags)
|
|
52
|
+
if (tags.hasOwnProperty(name) && name != "!top" && name != "!attrs" && (!prefix || name.lastIndexOf(prefix, 0) == 0))
|
|
53
|
+
result.push("<" + name);
|
|
54
|
+
}
|
|
55
|
+
if (cx && (!prefix || tagType == "close" && cx.tagName.lastIndexOf(prefix, 0) == 0))
|
|
56
|
+
result.push("</" + cx.tagName + ">");
|
|
57
|
+
} else {
|
|
58
|
+
// Attribute completion
|
|
59
|
+
var curTag = tags[inner.state.tagName], attrs = curTag && curTag.attrs;
|
|
60
|
+
var globalAttrs = tags["!attrs"];
|
|
61
|
+
if (!attrs && !globalAttrs) return;
|
|
62
|
+
if (!attrs) {
|
|
63
|
+
attrs = globalAttrs;
|
|
64
|
+
} else if (globalAttrs) { // Combine tag-local and global attributes
|
|
65
|
+
var set = {};
|
|
66
|
+
for (var nm in globalAttrs) if (globalAttrs.hasOwnProperty(nm)) set[nm] = globalAttrs[nm];
|
|
67
|
+
for (var nm in attrs) if (attrs.hasOwnProperty(nm)) set[nm] = attrs[nm];
|
|
68
|
+
attrs = set;
|
|
69
|
+
}
|
|
70
|
+
if (token.type == "string" || token.string == "=") { // A value
|
|
71
|
+
var before = cm.getRange(Pos(cur.line, Math.max(0, cur.ch - 60)),
|
|
72
|
+
Pos(cur.line, token.type == "string" ? token.start : token.end));
|
|
73
|
+
var atName = before.match(/([^\s\u00a0=<>\"\']+)=$/), atValues;
|
|
74
|
+
if (!atName || !attrs.hasOwnProperty(atName[1]) || !(atValues = attrs[atName[1]])) return;
|
|
75
|
+
if (typeof atValues == 'function') atValues = atValues.call(this, cm); // Functions can be used to supply values for autocomplete widget
|
|
76
|
+
if (token.type == "string") {
|
|
77
|
+
prefix = token.string;
|
|
78
|
+
var n = 0;
|
|
79
|
+
if (/['"]/.test(token.string.charAt(0))) {
|
|
80
|
+
quote = token.string.charAt(0);
|
|
81
|
+
prefix = token.string.slice(1);
|
|
82
|
+
n++;
|
|
83
|
+
}
|
|
84
|
+
var len = token.string.length;
|
|
85
|
+
if (/['"]/.test(token.string.charAt(len - 1))) {
|
|
86
|
+
quote = token.string.charAt(len - 1);
|
|
87
|
+
prefix = token.string.substr(n, len - 2);
|
|
88
|
+
}
|
|
89
|
+
replaceToken = true;
|
|
90
|
+
}
|
|
91
|
+
for (var i = 0; i < atValues.length; ++i) if (!prefix || atValues[i].lastIndexOf(prefix, 0) == 0)
|
|
92
|
+
result.push(quote + atValues[i] + quote);
|
|
93
|
+
} else { // An attribute name
|
|
94
|
+
if (token.type == "attribute") {
|
|
95
|
+
prefix = token.string;
|
|
96
|
+
replaceToken = true;
|
|
97
|
+
}
|
|
98
|
+
for (var attr in attrs) if (attrs.hasOwnProperty(attr) && (!prefix || attr.lastIndexOf(prefix, 0) == 0))
|
|
99
|
+
result.push(attr);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
return {
|
|
103
|
+
list: result,
|
|
104
|
+
from: replaceToken ? Pos(cur.line, tagStart == null ? token.start : tagStart) : cur,
|
|
105
|
+
to: replaceToken ? Pos(cur.line, token.end) : cur
|
|
106
|
+
};
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
CodeMirror.registerHelper("hint", "xml", getHints);
|
|
110
|
+
});
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
|
3
|
+
|
|
4
|
+
// Depends on coffeelint.js from http://www.coffeelint.org/js/coffeelint.js
|
|
5
|
+
|
|
6
|
+
// declare global: coffeelint
|
|
7
|
+
|
|
8
|
+
(function(mod) {
|
|
9
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
|
10
|
+
mod(require("../../lib/codemirror"));
|
|
11
|
+
else if (typeof define == "function" && define.amd) // AMD
|
|
12
|
+
define(["../../lib/codemirror"], mod);
|
|
13
|
+
else // Plain browser env
|
|
14
|
+
mod(CodeMirror);
|
|
15
|
+
})(function(CodeMirror) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
CodeMirror.registerHelper("lint", "coffeescript", function(text) {
|
|
19
|
+
var found = [];
|
|
20
|
+
var parseError = function(err) {
|
|
21
|
+
var loc = err.lineNumber;
|
|
22
|
+
found.push({from: CodeMirror.Pos(loc-1, 0),
|
|
23
|
+
to: CodeMirror.Pos(loc, 0),
|
|
24
|
+
severity: err.level,
|
|
25
|
+
message: err.message});
|
|
26
|
+
};
|
|
27
|
+
try {
|
|
28
|
+
var res = coffeelint.lint(text);
|
|
29
|
+
for(var i = 0; i < res.length; i++) {
|
|
30
|
+
parseError(res[i]);
|
|
31
|
+
}
|
|
32
|
+
} catch(e) {
|
|
33
|
+
found.push({from: CodeMirror.Pos(e.location.first_line, 0),
|
|
34
|
+
to: CodeMirror.Pos(e.location.last_line, e.location.last_column),
|
|
35
|
+
severity: 'error',
|
|
36
|
+
message: e.message});
|
|
37
|
+
}
|
|
38
|
+
return found;
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
});
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
|
3
|
+
|
|
4
|
+
// Depends on csslint.js from https://github.com/stubbornella/csslint
|
|
5
|
+
|
|
6
|
+
// declare global: CSSLint
|
|
7
|
+
|
|
8
|
+
(function(mod) {
|
|
9
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
|
10
|
+
mod(require("../../lib/codemirror"));
|
|
11
|
+
else if (typeof define == "function" && define.amd) // AMD
|
|
12
|
+
define(["../../lib/codemirror"], mod);
|
|
13
|
+
else // Plain browser env
|
|
14
|
+
mod(CodeMirror);
|
|
15
|
+
})(function(CodeMirror) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
CodeMirror.registerHelper("lint", "css", function(text) {
|
|
19
|
+
var found = [];
|
|
20
|
+
if (!window.CSSLint) return found;
|
|
21
|
+
var results = CSSLint.verify(text), messages = results.messages, message = null;
|
|
22
|
+
for ( var i = 0; i < messages.length; i++) {
|
|
23
|
+
message = messages[i];
|
|
24
|
+
var startLine = message.line -1, endLine = message.line -1, startCol = message.col -1, endCol = message.col;
|
|
25
|
+
found.push({
|
|
26
|
+
from: CodeMirror.Pos(startLine, startCol),
|
|
27
|
+
to: CodeMirror.Pos(endLine, endCol),
|
|
28
|
+
message: message.message,
|
|
29
|
+
severity : message.type
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
return found;
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
});
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
|
3
|
+
|
|
4
|
+
(function(mod) {
|
|
5
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
|
6
|
+
mod(require("../../lib/codemirror"));
|
|
7
|
+
else if (typeof define == "function" && define.amd) // AMD
|
|
8
|
+
define(["../../lib/codemirror"], mod);
|
|
9
|
+
else // Plain browser env
|
|
10
|
+
mod(CodeMirror);
|
|
11
|
+
})(function(CodeMirror) {
|
|
12
|
+
"use strict";
|
|
13
|
+
// declare global: JSHINT
|
|
14
|
+
|
|
15
|
+
var bogus = [ "Dangerous comment" ];
|
|
16
|
+
|
|
17
|
+
var warnings = [ [ "Expected '{'",
|
|
18
|
+
"Statement body should be inside '{ }' braces." ] ];
|
|
19
|
+
|
|
20
|
+
var errors = [ "Missing semicolon", "Extra comma", "Missing property name",
|
|
21
|
+
"Unmatched ", " and instead saw", " is not defined",
|
|
22
|
+
"Unclosed string", "Stopping, unable to continue" ];
|
|
23
|
+
|
|
24
|
+
function validator(text, options) {
|
|
25
|
+
if (!window.JSHINT) return [];
|
|
26
|
+
JSHINT(text, options, options.globals);
|
|
27
|
+
var errors = JSHINT.data().errors, result = [];
|
|
28
|
+
if (errors) parseErrors(errors, result);
|
|
29
|
+
return result;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
CodeMirror.registerHelper("lint", "javascript", validator);
|
|
33
|
+
|
|
34
|
+
function cleanup(error) {
|
|
35
|
+
// All problems are warnings by default
|
|
36
|
+
fixWith(error, warnings, "warning", true);
|
|
37
|
+
fixWith(error, errors, "error");
|
|
38
|
+
|
|
39
|
+
return isBogus(error) ? null : error;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
function fixWith(error, fixes, severity, force) {
|
|
43
|
+
var description, fix, find, replace, found;
|
|
44
|
+
|
|
45
|
+
description = error.description;
|
|
46
|
+
|
|
47
|
+
for ( var i = 0; i < fixes.length; i++) {
|
|
48
|
+
fix = fixes[i];
|
|
49
|
+
find = (typeof fix === "string" ? fix : fix[0]);
|
|
50
|
+
replace = (typeof fix === "string" ? null : fix[1]);
|
|
51
|
+
found = description.indexOf(find) !== -1;
|
|
52
|
+
|
|
53
|
+
if (force || found) {
|
|
54
|
+
error.severity = severity;
|
|
55
|
+
}
|
|
56
|
+
if (found && replace) {
|
|
57
|
+
error.description = replace;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
function isBogus(error) {
|
|
63
|
+
var description = error.description;
|
|
64
|
+
for ( var i = 0; i < bogus.length; i++) {
|
|
65
|
+
if (description.indexOf(bogus[i]) !== -1) {
|
|
66
|
+
return true;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
return false;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
function parseErrors(errors, output) {
|
|
73
|
+
for ( var i = 0; i < errors.length; i++) {
|
|
74
|
+
var error = errors[i];
|
|
75
|
+
if (error) {
|
|
76
|
+
var linetabpositions, index;
|
|
77
|
+
|
|
78
|
+
linetabpositions = [];
|
|
79
|
+
|
|
80
|
+
// This next block is to fix a problem in jshint. Jshint
|
|
81
|
+
// replaces
|
|
82
|
+
// all tabs with spaces then performs some checks. The error
|
|
83
|
+
// positions (character/space) are then reported incorrectly,
|
|
84
|
+
// not taking the replacement step into account. Here we look
|
|
85
|
+
// at the evidence line and try to adjust the character position
|
|
86
|
+
// to the correct value.
|
|
87
|
+
if (error.evidence) {
|
|
88
|
+
// Tab positions are computed once per line and cached
|
|
89
|
+
var tabpositions = linetabpositions[error.line];
|
|
90
|
+
if (!tabpositions) {
|
|
91
|
+
var evidence = error.evidence;
|
|
92
|
+
tabpositions = [];
|
|
93
|
+
// ugggh phantomjs does not like this
|
|
94
|
+
// forEachChar(evidence, function(item, index) {
|
|
95
|
+
Array.prototype.forEach.call(evidence, function(item,
|
|
96
|
+
index) {
|
|
97
|
+
if (item === '\t') {
|
|
98
|
+
// First col is 1 (not 0) to match error
|
|
99
|
+
// positions
|
|
100
|
+
tabpositions.push(index + 1);
|
|
101
|
+
}
|
|
102
|
+
});
|
|
103
|
+
linetabpositions[error.line] = tabpositions;
|
|
104
|
+
}
|
|
105
|
+
if (tabpositions.length > 0) {
|
|
106
|
+
var pos = error.character;
|
|
107
|
+
tabpositions.forEach(function(tabposition) {
|
|
108
|
+
if (pos > tabposition) pos -= 1;
|
|
109
|
+
});
|
|
110
|
+
error.character = pos;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
var start = error.character - 1, end = start + 1;
|
|
115
|
+
if (error.evidence) {
|
|
116
|
+
index = error.evidence.substring(start).search(/.\b/);
|
|
117
|
+
if (index > -1) {
|
|
118
|
+
end += index;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
// Convert to format expected by validation service
|
|
123
|
+
error.description = error.reason;// + "(jshint)";
|
|
124
|
+
error.start = error.character;
|
|
125
|
+
error.end = end;
|
|
126
|
+
error = cleanup(error);
|
|
127
|
+
|
|
128
|
+
if (error)
|
|
129
|
+
output.push({message: error.description,
|
|
130
|
+
severity: error.severity,
|
|
131
|
+
from: CodeMirror.Pos(error.line - 1, start),
|
|
132
|
+
to: CodeMirror.Pos(error.line - 1, end)});
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
});
|