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
data/spec/dummy/db/migrate/20140702160603_add_missing_unique_indices.acts_as_taggable_on_engine.rb
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# This migration comes from acts_as_taggable_on_engine (originally 2)
|
|
2
|
+
class AddMissingUniqueIndices < ActiveRecord::Migration
|
|
3
|
+
def self.up
|
|
4
|
+
add_index :tags, :name, unique: true
|
|
5
|
+
|
|
6
|
+
remove_index :taggings, :tag_id
|
|
7
|
+
remove_index :taggings, [:taggable_id, :taggable_type, :context]
|
|
8
|
+
add_index :taggings,
|
|
9
|
+
[:tag_id, :taggable_id, :taggable_type, :context, :tagger_id, :tagger_type],
|
|
10
|
+
unique: true, name: 'taggings_idx'
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def self.down
|
|
14
|
+
remove_index :tags, :name
|
|
15
|
+
|
|
16
|
+
remove_index :taggings, name: 'taggings_idx'
|
|
17
|
+
add_index :taggings, :tag_id
|
|
18
|
+
add_index :taggings, [:taggable_id, :taggable_type, :context]
|
|
19
|
+
end
|
|
20
|
+
end
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# This migration comes from acts_as_taggable_on_engine (originally 3)
|
|
2
|
+
class AddTaggingsCounterCacheToTags < ActiveRecord::Migration
|
|
3
|
+
def self.up
|
|
4
|
+
add_column :tags, :taggings_count, :integer, default: 0
|
|
5
|
+
|
|
6
|
+
# ActsAsTaggableOn::Tag.reset_column_information
|
|
7
|
+
# ActsAsTaggableOn::Tag.find_each do |tag|
|
|
8
|
+
# ActsAsTaggableOn::Tag.reset_counters(tag.id, :taggings)
|
|
9
|
+
# end
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def self.down
|
|
13
|
+
remove_column :tags, :taggings_count
|
|
14
|
+
end
|
|
15
|
+
end
|
data/spec/dummy/db/schema.rb
CHANGED
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
|
|
14
14
|
ActiveRecord::Schema.define(version: 20150421093311) do
|
|
15
15
|
|
|
16
|
-
create_table "friendly_id_slugs", force:
|
|
17
|
-
t.string "slug",
|
|
18
|
-
t.integer "sluggable_id",
|
|
16
|
+
create_table "friendly_id_slugs", force: :cascade do |t|
|
|
17
|
+
t.string "slug", limit: 255, null: false
|
|
18
|
+
t.integer "sluggable_id", limit: 4, null: false
|
|
19
19
|
t.string "sluggable_type", limit: 40
|
|
20
20
|
t.datetime "created_at"
|
|
21
21
|
end
|
|
@@ -24,78 +24,78 @@ ActiveRecord::Schema.define(version: 20150421093311) do
|
|
|
24
24
|
add_index "friendly_id_slugs", ["sluggable_id"], name: "index_friendly_id_slugs_on_sluggable_id", using: :btree
|
|
25
25
|
add_index "friendly_id_slugs", ["sluggable_type"], name: "index_friendly_id_slugs_on_sluggable_type", using: :btree
|
|
26
26
|
|
|
27
|
-
create_table "lines_articles", force:
|
|
28
|
-
t.string "title"
|
|
29
|
-
t.string "sub_title"
|
|
30
|
-
t.text "content"
|
|
31
|
-
t.boolean "published",
|
|
27
|
+
create_table "lines_articles", force: :cascade do |t|
|
|
28
|
+
t.string "title", limit: 255
|
|
29
|
+
t.string "sub_title", limit: 255
|
|
30
|
+
t.text "content", limit: 65535
|
|
31
|
+
t.boolean "published", default: false
|
|
32
32
|
t.datetime "published_at"
|
|
33
|
-
t.string "hero_image"
|
|
34
|
-
t.datetime "created_at",
|
|
35
|
-
t.datetime "updated_at",
|
|
36
|
-
t.string "slug"
|
|
37
|
-
t.string "gplus_url"
|
|
38
|
-
t.boolean "featured",
|
|
39
|
-
t.string "document"
|
|
40
|
-
t.string "short_hero_image"
|
|
41
|
-
t.text "teaser"
|
|
33
|
+
t.string "hero_image", limit: 255
|
|
34
|
+
t.datetime "created_at", null: false
|
|
35
|
+
t.datetime "updated_at", null: false
|
|
36
|
+
t.string "slug", limit: 255
|
|
37
|
+
t.string "gplus_url", limit: 255
|
|
38
|
+
t.boolean "featured", default: false
|
|
39
|
+
t.string "document", limit: 255
|
|
40
|
+
t.string "short_hero_image", limit: 255
|
|
41
|
+
t.text "teaser", limit: 65535
|
|
42
42
|
end
|
|
43
43
|
|
|
44
44
|
add_index "lines_articles", ["slug"], name: "index_lines_articles_on_slug", unique: true, using: :btree
|
|
45
45
|
|
|
46
|
-
create_table "lines_authorables", force:
|
|
47
|
-
t.integer "author_id"
|
|
48
|
-
t.integer "article_id"
|
|
49
|
-
t.datetime "created_at",
|
|
50
|
-
t.datetime "updated_at",
|
|
46
|
+
create_table "lines_authorables", force: :cascade do |t|
|
|
47
|
+
t.integer "author_id", limit: 4
|
|
48
|
+
t.integer "article_id", limit: 4
|
|
49
|
+
t.datetime "created_at", null: false
|
|
50
|
+
t.datetime "updated_at", null: false
|
|
51
51
|
end
|
|
52
52
|
|
|
53
53
|
add_index "lines_authorables", ["article_id"], name: "index_lines_authorables_on_article_id", using: :btree
|
|
54
54
|
add_index "lines_authorables", ["author_id"], name: "index_lines_authorables_on_author_id", using: :btree
|
|
55
55
|
|
|
56
|
-
create_table "lines_authors", force:
|
|
57
|
-
t.string "name"
|
|
58
|
-
t.string "email"
|
|
59
|
-
t.datetime "created_at",
|
|
60
|
-
t.datetime "updated_at",
|
|
61
|
-
t.text "description"
|
|
62
|
-
t.string "gplus_profile"
|
|
56
|
+
create_table "lines_authors", force: :cascade do |t|
|
|
57
|
+
t.string "name", limit: 255
|
|
58
|
+
t.string "email", limit: 255
|
|
59
|
+
t.datetime "created_at", null: false
|
|
60
|
+
t.datetime "updated_at", null: false
|
|
61
|
+
t.text "description", limit: 65535
|
|
62
|
+
t.string "gplus_profile", limit: 255
|
|
63
63
|
end
|
|
64
64
|
|
|
65
|
-
create_table "lines_pictures", force:
|
|
66
|
-
t.string "image"
|
|
67
|
-
t.string "name"
|
|
68
|
-
t.integer "article_id"
|
|
69
|
-
t.datetime "created_at",
|
|
70
|
-
t.datetime "updated_at",
|
|
65
|
+
create_table "lines_pictures", force: :cascade do |t|
|
|
66
|
+
t.string "image", limit: 255
|
|
67
|
+
t.string "name", limit: 255
|
|
68
|
+
t.integer "article_id", limit: 4
|
|
69
|
+
t.datetime "created_at", null: false
|
|
70
|
+
t.datetime "updated_at", null: false
|
|
71
71
|
end
|
|
72
72
|
|
|
73
73
|
add_index "lines_pictures", ["article_id"], name: "index_lines_pictures_on_article_id", using: :btree
|
|
74
74
|
|
|
75
|
-
create_table "lines_users", force:
|
|
76
|
-
t.string "email"
|
|
77
|
-
t.string "password_digest"
|
|
78
|
-
t.datetime "created_at",
|
|
79
|
-
t.datetime "updated_at",
|
|
80
|
-
t.string "reset_digest"
|
|
75
|
+
create_table "lines_users", force: :cascade do |t|
|
|
76
|
+
t.string "email", limit: 255
|
|
77
|
+
t.string "password_digest", limit: 255
|
|
78
|
+
t.datetime "created_at", null: false
|
|
79
|
+
t.datetime "updated_at", null: false
|
|
80
|
+
t.string "reset_digest", limit: 255
|
|
81
81
|
t.datetime "reset_sent_at"
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
-
create_table "taggings", force:
|
|
85
|
-
t.integer "tag_id"
|
|
86
|
-
t.integer "taggable_id"
|
|
87
|
-
t.string "taggable_type"
|
|
88
|
-
t.integer "tagger_id"
|
|
89
|
-
t.string "tagger_type"
|
|
84
|
+
create_table "taggings", force: :cascade do |t|
|
|
85
|
+
t.integer "tag_id", limit: 4
|
|
86
|
+
t.integer "taggable_id", limit: 4
|
|
87
|
+
t.string "taggable_type", limit: 255
|
|
88
|
+
t.integer "tagger_id", limit: 4
|
|
89
|
+
t.string "tagger_type", limit: 255
|
|
90
90
|
t.string "context", limit: 128
|
|
91
91
|
t.datetime "created_at"
|
|
92
92
|
end
|
|
93
93
|
|
|
94
94
|
add_index "taggings", ["tag_id", "taggable_id", "taggable_type", "context", "tagger_id", "tagger_type"], name: "taggings_idx", unique: true, using: :btree
|
|
95
95
|
|
|
96
|
-
create_table "tags", force:
|
|
97
|
-
t.string "name"
|
|
98
|
-
t.integer "taggings_count", default: 0
|
|
96
|
+
create_table "tags", force: :cascade do |t|
|
|
97
|
+
t.string "name", limit: 255
|
|
98
|
+
t.integer "taggings_count", limit: 4, default: 0
|
|
99
99
|
end
|
|
100
100
|
|
|
101
101
|
add_index "tags", ["name"], name: "index_tags_on_name", unique: true, using: :btree
|
data/spec/dummy/db/seeds.rb
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
img = Lines::Picture.create!({ image: (File.open(File.join(Rails.root, 'vendor/screenshots/octorel.png'))) })
|
|
4
4
|
|
|
5
|
-
Lines::Article.create
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
Lines::Article.create!([
|
|
6
|
+
{title: "Lines Needs You", sub_title: "", content: "We believe in the power of open source. It’s one of the best ways to push the boundaries of the web. Because LINES is still a young platform, it needs your help so it can mature and grow to its aspired size and strength. We can’t wait to see all the great things your brilliant brain and fingers will do with this project.\r\n\r\n[Fork LINES on GitHub](https://github.com/opoloo/lines)", published: true, published_at: "2015-08-05 00:00:00", gplus_url: "", featured: false, document: nil, short_hero_image: "/heroes/lines_default_01.png", teaser: "", :authors => [Lines::Author.first]},
|
|
7
|
+
{title: "Customization & License", sub_title: "", content: "Find below all the important details you need to know about customizing your new blog system: modifying the stylesheets, adapting header & footer, and on.\r\n\r\nWe also made sure you get a friendly user license that gives you the freedom to do almost everything you want with this blog.\r\n\r\n#Customization\r\n\r\n##Modify CSS/SCSS\r\nAdmin viewer SCSS:\r\n\r\n`app/assets/stylesheets/admin.css.scss`\r\n\r\nDefault viewer SCSS: \r\n\r\n`app/assets/stylesheets/style.css.scss`\r\n\r\n##Header (Meta) & Footer\r\nTo change the header/meta/footer elements you need to modify\r\n\r\n`app/views/layouts/application.html.erb`\r\n\r\n#License\r\nYou may use the Lines blog template as you please. You’d make us very happy, however, if you attributed to LINES and Opoloo and kept spreading the word.\r\n\r\nWe heartily invite you to extend the features of the template, but when you do, you should fork it on GitHub, so everyone can profit from your work.\r\n\r\nYou can see the full license [here](choosealicense.com/licenses/lgpl-v3/).", published: true, published_at: "2015-08-05 00:00:00", gplus_url: "", featured: false, document: nil, short_hero_image: "/heroes/lines_default_02.png" , teaser: "", :authors => [Lines::Author.first]},
|
|
8
|
+
{title: "Welcome to Your new Lines Blog", sub_title: "", content: "Thanks for downloading LINES, it’s an honor for us to know you’re using our blog framework to write and publish wonderful stuff.\r\n\r\nAs you know by now, LINES is an open source project. It’s open source for a reason—we believe that great publishing software must pass through the hands and minds of many, it must be adjustable and customizable, it must be in a state of constant development. That also means you’re in the position to make LINES serve your needs *and* to improve it for everyone. Thanks for your support.\r\n\r\nSo we’d like to heartily invite and encourage you to share your thoughts and projects with us. Your feedback is valuable and welcome.\r\n\r\nHere’s a few things that come with this Rails gem that might be interesting to know.\r\n\r\n# Technology\r\nThis blog is based on Ruby on Rails 4.0, which is all you need besides a database that supports it. We’re using a MySQL database. We’re providing as clean a code as possible, and of course we’ll maintain it and keep it up-to-date on GitHub. You’re invited to [fork](https://github.com/opoloo/lines) and improve LINES at all times.\r\n\r\n# For Developers\r\nNearly everything about this blog template can be customized to your personal needs and preferences.\r\n\r\n## Default features\r\n- Markdown editor (GitHub Flavored Markdown)\r\n- Hero graphics for posts\r\n- Upload default hero images that you want to use more frequently\r\n- Customizable generic titles & subtitles\r\n- Automatic teaser for the article overview\r\n- Four headline levels (H1–H4)\r\n- Tags for articles\r\n- Social media link\r\n- Multiple authors and author information\r\n- Add documents for download\r\n- Formating help\r\n- Direct RSS reader access\r\n- Customizable footer\r\n\r\n## Non-Features\r\n- management hassle\r\n- rights and legal bullshit\r\n- complicated settings\r\n- disco lights\r\n\r\nFor any concerns, do by all means [contact us](info@opoloo.com). We’re always interested in a good conversation. Also, do tell us about your LINES project, we’re very curious about what you’ve built.\r\n", published: true, published_at: "2015-08-05 00:00:00", gplus_url: "", featured: false, document: nil, short_hero_image: "/heroes/lines_default_03.png", teaser: "", :authors => [Lines::Author.first]}
|
|
9
|
+
])
|
data/spec/factories/users.rb
CHANGED
|
@@ -13,7 +13,7 @@ def create_valid_article
|
|
|
13
13
|
#expect(page).to have_content('New article')
|
|
14
14
|
fill_in "Title", with: "How to Test"
|
|
15
15
|
fill_in "Teaser", with: "Awesome teaser!"
|
|
16
|
-
fill_in "
|
|
16
|
+
fill_in "article_content", with: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
|
|
17
17
|
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
|
|
18
18
|
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
|
|
19
19
|
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
|
|
@@ -21,7 +21,7 @@ cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
|
|
|
21
21
|
proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
|
|
22
22
|
check "Foo Bar"
|
|
23
23
|
fill_in "Subtitle", with: "with RSpec and Rails"
|
|
24
|
-
fill_in "
|
|
24
|
+
fill_in "article_gplus_url", with: "http://gplus.de/opoloo"
|
|
25
25
|
fill_in "Tags", with: "tag1, tag2"
|
|
26
26
|
attach_file('article_hero_image', File.join(Lines::Engine.root, 'spec/support/images/example.jpg'))
|
|
27
27
|
click_on "Save"
|
|
@@ -48,7 +48,7 @@ feature 'user creates article' do
|
|
|
48
48
|
expect(page).to have_content "Title can't be blank"
|
|
49
49
|
expect(page).to have_content "Content can't be blank"
|
|
50
50
|
expect(page).to have_content "Author ids can't be blank"
|
|
51
|
-
expect(page).to have_content "You have to either select an image or upload one."
|
|
51
|
+
#expect(page).to have_content "You have to either select an image or upload one."
|
|
52
52
|
end
|
|
53
53
|
|
|
54
54
|
end
|
|
@@ -60,6 +60,6 @@ feature 'user publishes an article' do
|
|
|
60
60
|
scenario 'with article is unpublished' do
|
|
61
61
|
create_valid_article
|
|
62
62
|
click_on "Publish"
|
|
63
|
-
page.find("
|
|
63
|
+
page.find("div.published").should have_content "How to Test"
|
|
64
64
|
end
|
|
65
65
|
end
|
|
@@ -6,42 +6,42 @@ feature 'user resets password' do
|
|
|
6
6
|
visit lines.login_path
|
|
7
7
|
expect(page).to have_content "Forgot password"
|
|
8
8
|
click_on "Forgot password"
|
|
9
|
-
expect(page).to have_content "
|
|
10
|
-
fill_in "
|
|
11
|
-
|
|
12
|
-
expect(page).to have_content "
|
|
9
|
+
expect(page).to have_content "Reset password"
|
|
10
|
+
fill_in "password_reset_email", with: @user.email
|
|
11
|
+
find('input[name="commit"]').click
|
|
12
|
+
expect(page).to have_content "Reset instructions have been sent"
|
|
13
13
|
#generate new reset token
|
|
14
14
|
@user.create_reset_digest
|
|
15
15
|
visit lines.edit_password_reset_url(@user.reload.reset_token, email: @user.email)
|
|
16
|
-
expect(page).to have_content '
|
|
16
|
+
expect(page).to have_content 'Set new password'
|
|
17
17
|
end
|
|
18
18
|
|
|
19
19
|
scenario 'with valid password' do
|
|
20
|
-
fill_in "
|
|
21
|
-
fill_in "
|
|
22
|
-
|
|
20
|
+
fill_in "user_password", with: 'testtest'
|
|
21
|
+
fill_in "user_password_confirmation", with: 'testtest'
|
|
22
|
+
find('input[name="commit"]').click
|
|
23
23
|
expect(page).to have_content 'Password has been reset.'
|
|
24
24
|
expect(@user.reload.reset_digest).to eq nil
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
scenario 'with password too short' do
|
|
28
|
-
fill_in "
|
|
29
|
-
fill_in "
|
|
30
|
-
|
|
28
|
+
fill_in "user_password", with: 't'
|
|
29
|
+
fill_in "user_password_confirmation", with: 't'
|
|
30
|
+
find('input[name="commit"]').click
|
|
31
31
|
expect(page).to have_content 'too short'
|
|
32
32
|
end
|
|
33
33
|
|
|
34
34
|
scenario 'with empty password' do
|
|
35
|
-
fill_in "
|
|
36
|
-
fill_in "
|
|
37
|
-
|
|
35
|
+
fill_in "user_password", with: ''
|
|
36
|
+
fill_in "user_password_confirmation", with: ''
|
|
37
|
+
find('input[name="commit"]').click
|
|
38
38
|
expect(page).to have_content "Password can't be blank"
|
|
39
39
|
end
|
|
40
40
|
|
|
41
41
|
scenario 'with password confirmation not matching' do
|
|
42
|
-
fill_in "
|
|
43
|
-
fill_in "
|
|
44
|
-
|
|
42
|
+
fill_in "user_password", with: 'testtest'
|
|
43
|
+
fill_in "user_password_confirmation", with: 'testtest234'
|
|
44
|
+
find('input[name="commit"]').click
|
|
45
45
|
expect(page).to have_content 'not match'
|
|
46
46
|
end
|
|
47
47
|
|
|
@@ -10,21 +10,19 @@ feature 'user logs in' do
|
|
|
10
10
|
scenario 'with invalid email' do
|
|
11
11
|
@_current_lines_user = FactoryGirl.create(:user)
|
|
12
12
|
visit lines.login_path
|
|
13
|
-
fill_in "
|
|
14
|
-
fill_in "
|
|
13
|
+
fill_in "email", with: "invalid_email"
|
|
14
|
+
fill_in "password", with: 'sekret1234'
|
|
15
15
|
click_button "Login"
|
|
16
|
-
page.
|
|
17
|
-
page.should have_content('Login')
|
|
16
|
+
page.should have_content('Email or password is invalid')
|
|
18
17
|
end
|
|
19
18
|
|
|
20
19
|
scenario 'with blank password' do
|
|
21
20
|
@_current_lines_user = FactoryGirl.create(:user, email: 'valid@example.com')
|
|
22
21
|
visit lines.login_path
|
|
23
|
-
fill_in "
|
|
24
|
-
fill_in "
|
|
22
|
+
fill_in "email", with: "valid@example.com"
|
|
23
|
+
fill_in "password", with: ''
|
|
25
24
|
click_button "Login"
|
|
26
|
-
page.
|
|
27
|
-
page.should have_content('Login')
|
|
25
|
+
page.should have_content('Email or password is invalid')
|
|
28
26
|
end
|
|
29
27
|
|
|
30
28
|
end
|
data/spec/models/article_spec.rb
CHANGED
|
@@ -15,13 +15,13 @@ module Lines
|
|
|
15
15
|
FactoryGirl.build(:article, content: nil).should_not be_valid
|
|
16
16
|
end
|
|
17
17
|
|
|
18
|
-
it "is invalid with neither hero_image nor short_hero_image " do
|
|
19
|
-
|
|
20
|
-
end
|
|
18
|
+
# it "is invalid with neither hero_image nor short_hero_image " do
|
|
19
|
+
# FactoryGirl.build(:article, hero_image: nil, short_hero_image: nil).should_not be_valid
|
|
20
|
+
# end
|
|
21
21
|
|
|
22
|
-
it "is invalid with both a hero_image and a short_hero_image" do
|
|
23
|
-
|
|
24
|
-
end
|
|
22
|
+
# it "is invalid with both a hero_image and a short_hero_image" do
|
|
23
|
+
# FactoryGirl.build(:article, short_hero_image: 1 ).should_not be_valid
|
|
24
|
+
# end
|
|
25
25
|
|
|
26
26
|
it "is invalid without one or more authors" do
|
|
27
27
|
FactoryGirl.build(:article, author_ids: nil).should_not be_valid
|
data/spec/support/auth_macros.rb
CHANGED
|
@@ -3,8 +3,8 @@ module AuthMacros
|
|
|
3
3
|
def log_in(attributes = {})
|
|
4
4
|
@_current_lines_user = FactoryGirl.create(:user, attributes)
|
|
5
5
|
visit lines.login_path
|
|
6
|
-
fill_in "
|
|
7
|
-
fill_in "
|
|
6
|
+
fill_in "email", with: @_current_lines_user.email
|
|
7
|
+
fill_in "password", with: @_current_lines_user.password
|
|
8
8
|
click_button "Login"
|
|
9
9
|
page.should have_content "Logged in"
|
|
10
10
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lines-engine
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Opoloo GbR
|
|
@@ -30,7 +30,7 @@ cert_chain:
|
|
|
30
30
|
5BNWA8E1pTLFIGuj2vWGF3LmLHATeyBGXNDBRf6XZUG124zSK5pxkJ5zm2uBhu00
|
|
31
31
|
+pn0Gw==
|
|
32
32
|
-----END CERTIFICATE-----
|
|
33
|
-
date: 2015-
|
|
33
|
+
date: 2015-08-06 00:00:00.000000000 Z
|
|
34
34
|
dependencies:
|
|
35
35
|
- !ruby/object:Gem::Dependency
|
|
36
36
|
name: orm_adapter
|
|
@@ -338,20 +338,20 @@ dependencies:
|
|
|
338
338
|
requirements:
|
|
339
339
|
- - "~>"
|
|
340
340
|
- !ruby/object:Gem::Version
|
|
341
|
-
version: '
|
|
341
|
+
version: '5'
|
|
342
342
|
- - ">="
|
|
343
343
|
- !ruby/object:Gem::Version
|
|
344
|
-
version:
|
|
344
|
+
version: 5.0.0
|
|
345
345
|
type: :runtime
|
|
346
346
|
prerelease: false
|
|
347
347
|
version_requirements: !ruby/object:Gem::Requirement
|
|
348
348
|
requirements:
|
|
349
349
|
- - "~>"
|
|
350
350
|
- !ruby/object:Gem::Version
|
|
351
|
-
version: '
|
|
351
|
+
version: '5'
|
|
352
352
|
- - ">="
|
|
353
353
|
- !ruby/object:Gem::Version
|
|
354
|
-
version:
|
|
354
|
+
version: 5.0.0
|
|
355
355
|
- !ruby/object:Gem::Dependency
|
|
356
356
|
name: sanitize
|
|
357
357
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -649,31 +649,31 @@ files:
|
|
|
649
649
|
- app/assets/heroes/003_dark.jpg
|
|
650
650
|
- app/assets/images/article-icons.png
|
|
651
651
|
- app/assets/images/checkbox-icon.png
|
|
652
|
+
- app/assets/images/favicon.ico
|
|
652
653
|
- app/assets/images/footer_icon.png
|
|
654
|
+
- app/assets/images/gplus.svg
|
|
653
655
|
- app/assets/images/ic_action_add.png
|
|
654
656
|
- app/assets/images/ic_action_home.png
|
|
655
657
|
- app/assets/images/ic_arrow_left.png
|
|
656
658
|
- app/assets/images/ic_arrow_right.png
|
|
657
659
|
- app/assets/images/ic_googleplus.png
|
|
658
|
-
- app/assets/images/ic_gplus.png
|
|
659
|
-
- app/assets/images/ic_gplus_hover.png
|
|
660
660
|
- app/assets/images/ic_rss.png
|
|
661
661
|
- app/assets/images/ic_rss_hover.png
|
|
662
662
|
- app/assets/images/ic_twitter.png
|
|
663
663
|
- app/assets/images/ic_twitter_hover.png
|
|
664
664
|
- app/assets/images/icon_addphoto.png
|
|
665
|
-
- app/assets/images/logo.png
|
|
666
|
-
- app/assets/images/logo_opoloo.png
|
|
667
665
|
- app/assets/images/opoloo_feed.png
|
|
668
|
-
- app/assets/images/signet.png
|
|
669
666
|
- app/assets/images/signet_opoloo.png
|
|
670
667
|
- app/assets/images/squirrelpark_signet.png
|
|
671
|
-
- app/assets/javascripts/lines/admin.js
|
|
668
|
+
- app/assets/javascripts/lines/admin/admin.js
|
|
669
|
+
- app/assets/javascripts/lines/admin/autosize.min.js
|
|
670
|
+
- app/assets/javascripts/lines/admin/navbar.js
|
|
671
|
+
- app/assets/javascripts/lines/admin/pictures.js.coffee
|
|
672
672
|
- app/assets/javascripts/lines/application.js
|
|
673
673
|
- app/assets/javascripts/lines/articles.js.coffee
|
|
674
|
-
- app/assets/javascripts/lines/
|
|
675
|
-
- app/assets/
|
|
676
|
-
- app/assets/stylesheets/lines/admin.scss
|
|
674
|
+
- app/assets/javascripts/lines/viewer.js.coffee
|
|
675
|
+
- app/assets/stylesheets/lines/admin/admin.scss
|
|
676
|
+
- app/assets/stylesheets/lines/admin/variables_and_mixins.scss
|
|
677
677
|
- app/assets/stylesheets/lines/application.scss
|
|
678
678
|
- app/assets/stylesheets/lines/article.scss
|
|
679
679
|
- app/assets/stylesheets/lines/fonts.scss
|
|
@@ -681,6 +681,7 @@ files:
|
|
|
681
681
|
- app/assets/stylesheets/lines/general.scss
|
|
682
682
|
- app/assets/stylesheets/lines/lines_overrides.scss
|
|
683
683
|
- app/assets/stylesheets/lines/media_queries.scss
|
|
684
|
+
- app/assets/stylesheets/lines/messages.scss
|
|
684
685
|
- app/assets/stylesheets/lines/navbar.scss
|
|
685
686
|
- app/assets/stylesheets/lines/pagination.scss
|
|
686
687
|
- app/assets/stylesheets/lines/pygments.css.erb
|
|
@@ -708,12 +709,11 @@ files:
|
|
|
708
709
|
- app/views/kaminari/lines/_page.html.erb
|
|
709
710
|
- app/views/kaminari/lines/_paginator.html.erb
|
|
710
711
|
- app/views/kaminari/lines/_prev_page.html.erb
|
|
711
|
-
- app/views/layouts/lines/
|
|
712
|
+
- app/views/layouts/lines/_markdown_cheatsheet.html.erb
|
|
712
713
|
- app/views/layouts/lines/admin.html.erb
|
|
713
714
|
- app/views/layouts/lines/application.html.erb
|
|
714
715
|
- app/views/layouts/lines/preview.html.erb
|
|
715
716
|
- app/views/lines/admin/articles/_form.html.erb
|
|
716
|
-
- app/views/lines/admin/articles/_formatting_guide.html.erb
|
|
717
717
|
- app/views/lines/admin/articles/_picture_box.html.erb
|
|
718
718
|
- app/views/lines/admin/articles/edit.html.erb
|
|
719
719
|
- app/views/lines/admin/articles/index.html.erb
|
|
@@ -768,12 +768,468 @@ files:
|
|
|
768
768
|
- lib/tasks/lines.rake
|
|
769
769
|
- lib/tasks/lines_tasks.rake
|
|
770
770
|
- lines.gemspec
|
|
771
|
-
- public/
|
|
772
|
-
- public/
|
|
773
|
-
- public/
|
|
774
|
-
- public/
|
|
775
|
-
- public/
|
|
776
|
-
- public/
|
|
771
|
+
- public/codemirror/.gitattributes
|
|
772
|
+
- public/codemirror/.gitignore
|
|
773
|
+
- public/codemirror/.npmignore
|
|
774
|
+
- public/codemirror/.travis.yml
|
|
775
|
+
- public/codemirror/AUTHORS
|
|
776
|
+
- public/codemirror/CONTRIBUTING.md
|
|
777
|
+
- public/codemirror/LICENSE
|
|
778
|
+
- public/codemirror/README.md
|
|
779
|
+
- public/codemirror/addon/comment/comment.js
|
|
780
|
+
- public/codemirror/addon/comment/continuecomment.js
|
|
781
|
+
- public/codemirror/addon/dialog/dialog.css
|
|
782
|
+
- public/codemirror/addon/dialog/dialog.js
|
|
783
|
+
- public/codemirror/addon/display/fullscreen.css
|
|
784
|
+
- public/codemirror/addon/display/fullscreen.js
|
|
785
|
+
- public/codemirror/addon/display/panel.js
|
|
786
|
+
- public/codemirror/addon/display/placeholder.js
|
|
787
|
+
- public/codemirror/addon/display/rulers.js
|
|
788
|
+
- public/codemirror/addon/edit/closebrackets.js
|
|
789
|
+
- public/codemirror/addon/edit/closetag.js
|
|
790
|
+
- public/codemirror/addon/edit/continuelist.js
|
|
791
|
+
- public/codemirror/addon/edit/matchbrackets.js
|
|
792
|
+
- public/codemirror/addon/edit/matchtags.js
|
|
793
|
+
- public/codemirror/addon/edit/trailingspace.js
|
|
794
|
+
- public/codemirror/addon/fold/brace-fold.js
|
|
795
|
+
- public/codemirror/addon/fold/comment-fold.js
|
|
796
|
+
- public/codemirror/addon/fold/foldcode.js
|
|
797
|
+
- public/codemirror/addon/fold/foldgutter.css
|
|
798
|
+
- public/codemirror/addon/fold/foldgutter.js
|
|
799
|
+
- public/codemirror/addon/fold/indent-fold.js
|
|
800
|
+
- public/codemirror/addon/fold/markdown-fold.js
|
|
801
|
+
- public/codemirror/addon/fold/xml-fold.js
|
|
802
|
+
- public/codemirror/addon/hint/anyword-hint.js
|
|
803
|
+
- public/codemirror/addon/hint/css-hint.js
|
|
804
|
+
- public/codemirror/addon/hint/html-hint.js
|
|
805
|
+
- public/codemirror/addon/hint/javascript-hint.js
|
|
806
|
+
- public/codemirror/addon/hint/show-hint.css
|
|
807
|
+
- public/codemirror/addon/hint/show-hint.js
|
|
808
|
+
- public/codemirror/addon/hint/sql-hint.js
|
|
809
|
+
- public/codemirror/addon/hint/xml-hint.js
|
|
810
|
+
- public/codemirror/addon/lint/coffeescript-lint.js
|
|
811
|
+
- public/codemirror/addon/lint/css-lint.js
|
|
812
|
+
- public/codemirror/addon/lint/javascript-lint.js
|
|
813
|
+
- public/codemirror/addon/lint/json-lint.js
|
|
814
|
+
- public/codemirror/addon/lint/lint.css
|
|
815
|
+
- public/codemirror/addon/lint/lint.js
|
|
816
|
+
- public/codemirror/addon/lint/yaml-lint.js
|
|
817
|
+
- public/codemirror/addon/merge/merge.css
|
|
818
|
+
- public/codemirror/addon/merge/merge.js
|
|
819
|
+
- public/codemirror/addon/mode/loadmode.js
|
|
820
|
+
- public/codemirror/addon/mode/multiplex.js
|
|
821
|
+
- public/codemirror/addon/mode/multiplex_test.js
|
|
822
|
+
- public/codemirror/addon/mode/overlay.js
|
|
823
|
+
- public/codemirror/addon/mode/simple.js
|
|
824
|
+
- public/codemirror/addon/runmode/colorize.js
|
|
825
|
+
- public/codemirror/addon/runmode/runmode-standalone.js
|
|
826
|
+
- public/codemirror/addon/runmode/runmode.js
|
|
827
|
+
- public/codemirror/addon/runmode/runmode.node.js
|
|
828
|
+
- public/codemirror/addon/scroll/annotatescrollbar.js
|
|
829
|
+
- public/codemirror/addon/scroll/scrollpastend.js
|
|
830
|
+
- public/codemirror/addon/scroll/simplescrollbars.css
|
|
831
|
+
- public/codemirror/addon/scroll/simplescrollbars.js
|
|
832
|
+
- public/codemirror/addon/search/match-highlighter.js
|
|
833
|
+
- public/codemirror/addon/search/matchesonscrollbar.css
|
|
834
|
+
- public/codemirror/addon/search/matchesonscrollbar.js
|
|
835
|
+
- public/codemirror/addon/search/search.js
|
|
836
|
+
- public/codemirror/addon/search/searchcursor.js
|
|
837
|
+
- public/codemirror/addon/selection/active-line.js
|
|
838
|
+
- public/codemirror/addon/selection/mark-selection.js
|
|
839
|
+
- public/codemirror/addon/selection/selection-pointer.js
|
|
840
|
+
- public/codemirror/addon/tern/tern.css
|
|
841
|
+
- public/codemirror/addon/tern/tern.js
|
|
842
|
+
- public/codemirror/addon/tern/worker.js
|
|
843
|
+
- public/codemirror/addon/wrap/hardwrap.js
|
|
844
|
+
- public/codemirror/bin/authors.sh
|
|
845
|
+
- public/codemirror/bin/compress
|
|
846
|
+
- public/codemirror/bin/lint
|
|
847
|
+
- public/codemirror/bin/release
|
|
848
|
+
- public/codemirror/bin/source-highlight
|
|
849
|
+
- public/codemirror/bower.json
|
|
850
|
+
- public/codemirror/demo/activeline.html
|
|
851
|
+
- public/codemirror/demo/anywordhint.html
|
|
852
|
+
- public/codemirror/demo/bidi.html
|
|
853
|
+
- public/codemirror/demo/btree.html
|
|
854
|
+
- public/codemirror/demo/buffers.html
|
|
855
|
+
- public/codemirror/demo/changemode.html
|
|
856
|
+
- public/codemirror/demo/closebrackets.html
|
|
857
|
+
- public/codemirror/demo/closetag.html
|
|
858
|
+
- public/codemirror/demo/complete.html
|
|
859
|
+
- public/codemirror/demo/emacs.html
|
|
860
|
+
- public/codemirror/demo/folding.html
|
|
861
|
+
- public/codemirror/demo/fullscreen.html
|
|
862
|
+
- public/codemirror/demo/hardwrap.html
|
|
863
|
+
- public/codemirror/demo/html5complete.html
|
|
864
|
+
- public/codemirror/demo/indentwrap.html
|
|
865
|
+
- public/codemirror/demo/lint.html
|
|
866
|
+
- public/codemirror/demo/loadmode.html
|
|
867
|
+
- public/codemirror/demo/marker.html
|
|
868
|
+
- public/codemirror/demo/markselection.html
|
|
869
|
+
- public/codemirror/demo/matchhighlighter.html
|
|
870
|
+
- public/codemirror/demo/matchtags.html
|
|
871
|
+
- public/codemirror/demo/merge.html
|
|
872
|
+
- public/codemirror/demo/multiplex.html
|
|
873
|
+
- public/codemirror/demo/mustache.html
|
|
874
|
+
- public/codemirror/demo/panel.html
|
|
875
|
+
- public/codemirror/demo/placeholder.html
|
|
876
|
+
- public/codemirror/demo/preview.html
|
|
877
|
+
- public/codemirror/demo/requirejs.html
|
|
878
|
+
- public/codemirror/demo/resize.html
|
|
879
|
+
- public/codemirror/demo/rulers.html
|
|
880
|
+
- public/codemirror/demo/runmode.html
|
|
881
|
+
- public/codemirror/demo/search.html
|
|
882
|
+
- public/codemirror/demo/simplemode.html
|
|
883
|
+
- public/codemirror/demo/simplescrollbars.html
|
|
884
|
+
- public/codemirror/demo/spanaffectswrapping_shim.html
|
|
885
|
+
- public/codemirror/demo/sublime.html
|
|
886
|
+
- public/codemirror/demo/tern.html
|
|
887
|
+
- public/codemirror/demo/theme.html
|
|
888
|
+
- public/codemirror/demo/trailingspace.html
|
|
889
|
+
- public/codemirror/demo/variableheight.html
|
|
890
|
+
- public/codemirror/demo/vim.html
|
|
891
|
+
- public/codemirror/demo/visibletabs.html
|
|
892
|
+
- public/codemirror/demo/widget.html
|
|
893
|
+
- public/codemirror/demo/xmlcomplete.html
|
|
894
|
+
- public/codemirror/doc/activebookmark.js
|
|
895
|
+
- public/codemirror/doc/compress.html
|
|
896
|
+
- public/codemirror/doc/docs.css
|
|
897
|
+
- public/codemirror/doc/internals.html
|
|
898
|
+
- public/codemirror/doc/logo.png
|
|
899
|
+
- public/codemirror/doc/logo.svg
|
|
900
|
+
- public/codemirror/doc/manual.html
|
|
901
|
+
- public/codemirror/doc/realworld.html
|
|
902
|
+
- public/codemirror/doc/releases.html
|
|
903
|
+
- public/codemirror/doc/reporting.html
|
|
904
|
+
- public/codemirror/doc/upgrade_v2.2.html
|
|
905
|
+
- public/codemirror/doc/upgrade_v3.html
|
|
906
|
+
- public/codemirror/doc/upgrade_v4.html
|
|
907
|
+
- public/codemirror/doc/yinyang.png
|
|
908
|
+
- public/codemirror/index.html
|
|
909
|
+
- public/codemirror/keymap/emacs.js
|
|
910
|
+
- public/codemirror/keymap/sublime.js
|
|
911
|
+
- public/codemirror/keymap/vim.js
|
|
912
|
+
- public/codemirror/lib/codemirror.css
|
|
913
|
+
- public/codemirror/lib/codemirror.js
|
|
914
|
+
- public/codemirror/mode/apl/apl.js
|
|
915
|
+
- public/codemirror/mode/apl/index.html
|
|
916
|
+
- public/codemirror/mode/asciiarmor/asciiarmor.js
|
|
917
|
+
- public/codemirror/mode/asciiarmor/index.html
|
|
918
|
+
- public/codemirror/mode/asn.1/asn.1.js
|
|
919
|
+
- public/codemirror/mode/asn.1/index.html
|
|
920
|
+
- public/codemirror/mode/asterisk/asterisk.js
|
|
921
|
+
- public/codemirror/mode/asterisk/index.html
|
|
922
|
+
- public/codemirror/mode/brainfuck/brainfuck.js
|
|
923
|
+
- public/codemirror/mode/brainfuck/index.html
|
|
924
|
+
- public/codemirror/mode/clike/clike.js
|
|
925
|
+
- public/codemirror/mode/clike/index.html
|
|
926
|
+
- public/codemirror/mode/clike/scala.html
|
|
927
|
+
- public/codemirror/mode/clike/test.js
|
|
928
|
+
- public/codemirror/mode/clojure/clojure.js
|
|
929
|
+
- public/codemirror/mode/clojure/index.html
|
|
930
|
+
- public/codemirror/mode/cmake/cmake.js
|
|
931
|
+
- public/codemirror/mode/cmake/index.html
|
|
932
|
+
- public/codemirror/mode/cobol/cobol.js
|
|
933
|
+
- public/codemirror/mode/cobol/index.html
|
|
934
|
+
- public/codemirror/mode/coffeescript/coffeescript.js
|
|
935
|
+
- public/codemirror/mode/coffeescript/index.html
|
|
936
|
+
- public/codemirror/mode/commonlisp/commonlisp.js
|
|
937
|
+
- public/codemirror/mode/commonlisp/index.html
|
|
938
|
+
- public/codemirror/mode/css/css.js
|
|
939
|
+
- public/codemirror/mode/css/index.html
|
|
940
|
+
- public/codemirror/mode/css/less.html
|
|
941
|
+
- public/codemirror/mode/css/less_test.js
|
|
942
|
+
- public/codemirror/mode/css/scss.html
|
|
943
|
+
- public/codemirror/mode/css/scss_test.js
|
|
944
|
+
- public/codemirror/mode/css/test.js
|
|
945
|
+
- public/codemirror/mode/cypher/cypher.js
|
|
946
|
+
- public/codemirror/mode/cypher/index.html
|
|
947
|
+
- public/codemirror/mode/d/d.js
|
|
948
|
+
- public/codemirror/mode/d/index.html
|
|
949
|
+
- public/codemirror/mode/dart/dart.js
|
|
950
|
+
- public/codemirror/mode/dart/index.html
|
|
951
|
+
- public/codemirror/mode/diff/diff.js
|
|
952
|
+
- public/codemirror/mode/diff/index.html
|
|
953
|
+
- public/codemirror/mode/django/django.js
|
|
954
|
+
- public/codemirror/mode/django/index.html
|
|
955
|
+
- public/codemirror/mode/dockerfile/dockerfile.js
|
|
956
|
+
- public/codemirror/mode/dockerfile/index.html
|
|
957
|
+
- public/codemirror/mode/dtd/dtd.js
|
|
958
|
+
- public/codemirror/mode/dtd/index.html
|
|
959
|
+
- public/codemirror/mode/dylan/dylan.js
|
|
960
|
+
- public/codemirror/mode/dylan/index.html
|
|
961
|
+
- public/codemirror/mode/ebnf/ebnf.js
|
|
962
|
+
- public/codemirror/mode/ebnf/index.html
|
|
963
|
+
- public/codemirror/mode/ecl/ecl.js
|
|
964
|
+
- public/codemirror/mode/ecl/index.html
|
|
965
|
+
- public/codemirror/mode/eiffel/eiffel.js
|
|
966
|
+
- public/codemirror/mode/eiffel/index.html
|
|
967
|
+
- public/codemirror/mode/elm/elm.js
|
|
968
|
+
- public/codemirror/mode/elm/index.html
|
|
969
|
+
- public/codemirror/mode/erlang/erlang.js
|
|
970
|
+
- public/codemirror/mode/erlang/index.html
|
|
971
|
+
- public/codemirror/mode/factor/factor.js
|
|
972
|
+
- public/codemirror/mode/factor/index.html
|
|
973
|
+
- public/codemirror/mode/forth/forth.js
|
|
974
|
+
- public/codemirror/mode/forth/index.html
|
|
975
|
+
- public/codemirror/mode/fortran/fortran.js
|
|
976
|
+
- public/codemirror/mode/fortran/index.html
|
|
977
|
+
- public/codemirror/mode/gas/gas.js
|
|
978
|
+
- public/codemirror/mode/gas/index.html
|
|
979
|
+
- public/codemirror/mode/gfm/gfm.js
|
|
980
|
+
- public/codemirror/mode/gfm/index.html
|
|
981
|
+
- public/codemirror/mode/gfm/test.js
|
|
982
|
+
- public/codemirror/mode/gherkin/gherkin.js
|
|
983
|
+
- public/codemirror/mode/gherkin/index.html
|
|
984
|
+
- public/codemirror/mode/go/go.js
|
|
985
|
+
- public/codemirror/mode/go/index.html
|
|
986
|
+
- public/codemirror/mode/groovy/groovy.js
|
|
987
|
+
- public/codemirror/mode/groovy/index.html
|
|
988
|
+
- public/codemirror/mode/haml/haml.js
|
|
989
|
+
- public/codemirror/mode/haml/index.html
|
|
990
|
+
- public/codemirror/mode/haml/test.js
|
|
991
|
+
- public/codemirror/mode/handlebars/handlebars.js
|
|
992
|
+
- public/codemirror/mode/handlebars/index.html
|
|
993
|
+
- public/codemirror/mode/haskell/haskell.js
|
|
994
|
+
- public/codemirror/mode/haskell/index.html
|
|
995
|
+
- public/codemirror/mode/haxe/haxe.js
|
|
996
|
+
- public/codemirror/mode/haxe/index.html
|
|
997
|
+
- public/codemirror/mode/htmlembedded/htmlembedded.js
|
|
998
|
+
- public/codemirror/mode/htmlembedded/index.html
|
|
999
|
+
- public/codemirror/mode/htmlmixed/htmlmixed.js
|
|
1000
|
+
- public/codemirror/mode/htmlmixed/index.html
|
|
1001
|
+
- public/codemirror/mode/http/http.js
|
|
1002
|
+
- public/codemirror/mode/http/index.html
|
|
1003
|
+
- public/codemirror/mode/idl/idl.js
|
|
1004
|
+
- public/codemirror/mode/idl/index.html
|
|
1005
|
+
- public/codemirror/mode/index.html
|
|
1006
|
+
- public/codemirror/mode/jade/index.html
|
|
1007
|
+
- public/codemirror/mode/jade/jade.js
|
|
1008
|
+
- public/codemirror/mode/javascript/index.html
|
|
1009
|
+
- public/codemirror/mode/javascript/javascript.js
|
|
1010
|
+
- public/codemirror/mode/javascript/json-ld.html
|
|
1011
|
+
- public/codemirror/mode/javascript/test.js
|
|
1012
|
+
- public/codemirror/mode/javascript/typescript.html
|
|
1013
|
+
- public/codemirror/mode/jinja2/index.html
|
|
1014
|
+
- public/codemirror/mode/jinja2/jinja2.js
|
|
1015
|
+
- public/codemirror/mode/julia/index.html
|
|
1016
|
+
- public/codemirror/mode/julia/julia.js
|
|
1017
|
+
- public/codemirror/mode/kotlin/index.html
|
|
1018
|
+
- public/codemirror/mode/kotlin/kotlin.js
|
|
1019
|
+
- public/codemirror/mode/livescript/index.html
|
|
1020
|
+
- public/codemirror/mode/livescript/livescript.js
|
|
1021
|
+
- public/codemirror/mode/lua/index.html
|
|
1022
|
+
- public/codemirror/mode/lua/lua.js
|
|
1023
|
+
- public/codemirror/mode/markdown/index.html
|
|
1024
|
+
- public/codemirror/mode/markdown/markdown.js
|
|
1025
|
+
- public/codemirror/mode/markdown/test.js
|
|
1026
|
+
- public/codemirror/mode/mathematica/index.html
|
|
1027
|
+
- public/codemirror/mode/mathematica/mathematica.js
|
|
1028
|
+
- public/codemirror/mode/meta.js
|
|
1029
|
+
- public/codemirror/mode/mirc/index.html
|
|
1030
|
+
- public/codemirror/mode/mirc/mirc.js
|
|
1031
|
+
- public/codemirror/mode/mllike/index.html
|
|
1032
|
+
- public/codemirror/mode/mllike/mllike.js
|
|
1033
|
+
- public/codemirror/mode/modelica/index.html
|
|
1034
|
+
- public/codemirror/mode/modelica/modelica.js
|
|
1035
|
+
- public/codemirror/mode/mumps/index.html
|
|
1036
|
+
- public/codemirror/mode/mumps/mumps.js
|
|
1037
|
+
- public/codemirror/mode/nginx/index.html
|
|
1038
|
+
- public/codemirror/mode/nginx/nginx.js
|
|
1039
|
+
- public/codemirror/mode/ntriples/index.html
|
|
1040
|
+
- public/codemirror/mode/ntriples/ntriples.js
|
|
1041
|
+
- public/codemirror/mode/octave/index.html
|
|
1042
|
+
- public/codemirror/mode/octave/octave.js
|
|
1043
|
+
- public/codemirror/mode/pascal/index.html
|
|
1044
|
+
- public/codemirror/mode/pascal/pascal.js
|
|
1045
|
+
- public/codemirror/mode/pegjs/index.html
|
|
1046
|
+
- public/codemirror/mode/pegjs/pegjs.js
|
|
1047
|
+
- public/codemirror/mode/perl/index.html
|
|
1048
|
+
- public/codemirror/mode/perl/perl.js
|
|
1049
|
+
- public/codemirror/mode/php/index.html
|
|
1050
|
+
- public/codemirror/mode/php/php.js
|
|
1051
|
+
- public/codemirror/mode/php/test.js
|
|
1052
|
+
- public/codemirror/mode/pig/index.html
|
|
1053
|
+
- public/codemirror/mode/pig/pig.js
|
|
1054
|
+
- public/codemirror/mode/properties/index.html
|
|
1055
|
+
- public/codemirror/mode/properties/properties.js
|
|
1056
|
+
- public/codemirror/mode/puppet/index.html
|
|
1057
|
+
- public/codemirror/mode/puppet/puppet.js
|
|
1058
|
+
- public/codemirror/mode/python/index.html
|
|
1059
|
+
- public/codemirror/mode/python/python.js
|
|
1060
|
+
- public/codemirror/mode/q/index.html
|
|
1061
|
+
- public/codemirror/mode/q/q.js
|
|
1062
|
+
- public/codemirror/mode/r/index.html
|
|
1063
|
+
- public/codemirror/mode/r/r.js
|
|
1064
|
+
- public/codemirror/mode/rpm/changes/index.html
|
|
1065
|
+
- public/codemirror/mode/rpm/index.html
|
|
1066
|
+
- public/codemirror/mode/rpm/rpm.js
|
|
1067
|
+
- public/codemirror/mode/rst/index.html
|
|
1068
|
+
- public/codemirror/mode/rst/rst.js
|
|
1069
|
+
- public/codemirror/mode/ruby/index.html
|
|
1070
|
+
- public/codemirror/mode/ruby/ruby.js
|
|
1071
|
+
- public/codemirror/mode/ruby/test.js
|
|
1072
|
+
- public/codemirror/mode/rust/index.html
|
|
1073
|
+
- public/codemirror/mode/rust/rust.js
|
|
1074
|
+
- public/codemirror/mode/sass/index.html
|
|
1075
|
+
- public/codemirror/mode/sass/sass.js
|
|
1076
|
+
- public/codemirror/mode/scheme/index.html
|
|
1077
|
+
- public/codemirror/mode/scheme/scheme.js
|
|
1078
|
+
- public/codemirror/mode/shell/index.html
|
|
1079
|
+
- public/codemirror/mode/shell/shell.js
|
|
1080
|
+
- public/codemirror/mode/shell/test.js
|
|
1081
|
+
- public/codemirror/mode/sieve/index.html
|
|
1082
|
+
- public/codemirror/mode/sieve/sieve.js
|
|
1083
|
+
- public/codemirror/mode/slim/index.html
|
|
1084
|
+
- public/codemirror/mode/slim/slim.js
|
|
1085
|
+
- public/codemirror/mode/slim/test.js
|
|
1086
|
+
- public/codemirror/mode/smalltalk/index.html
|
|
1087
|
+
- public/codemirror/mode/smalltalk/smalltalk.js
|
|
1088
|
+
- public/codemirror/mode/smarty/index.html
|
|
1089
|
+
- public/codemirror/mode/smarty/smarty.js
|
|
1090
|
+
- public/codemirror/mode/solr/index.html
|
|
1091
|
+
- public/codemirror/mode/solr/solr.js
|
|
1092
|
+
- public/codemirror/mode/soy/index.html
|
|
1093
|
+
- public/codemirror/mode/soy/soy.js
|
|
1094
|
+
- public/codemirror/mode/sparql/index.html
|
|
1095
|
+
- public/codemirror/mode/sparql/sparql.js
|
|
1096
|
+
- public/codemirror/mode/spreadsheet/index.html
|
|
1097
|
+
- public/codemirror/mode/spreadsheet/spreadsheet.js
|
|
1098
|
+
- public/codemirror/mode/sql/index.html
|
|
1099
|
+
- public/codemirror/mode/sql/sql.js
|
|
1100
|
+
- public/codemirror/mode/stex/index.html
|
|
1101
|
+
- public/codemirror/mode/stex/stex.js
|
|
1102
|
+
- public/codemirror/mode/stex/test.js
|
|
1103
|
+
- public/codemirror/mode/stylus/index.html
|
|
1104
|
+
- public/codemirror/mode/stylus/stylus.js
|
|
1105
|
+
- public/codemirror/mode/swift/index.html
|
|
1106
|
+
- public/codemirror/mode/swift/swift.js
|
|
1107
|
+
- public/codemirror/mode/tcl/index.html
|
|
1108
|
+
- public/codemirror/mode/tcl/tcl.js
|
|
1109
|
+
- public/codemirror/mode/textile/index.html
|
|
1110
|
+
- public/codemirror/mode/textile/test.js
|
|
1111
|
+
- public/codemirror/mode/textile/textile.js
|
|
1112
|
+
- public/codemirror/mode/tiddlywiki/index.html
|
|
1113
|
+
- public/codemirror/mode/tiddlywiki/tiddlywiki.css
|
|
1114
|
+
- public/codemirror/mode/tiddlywiki/tiddlywiki.js
|
|
1115
|
+
- public/codemirror/mode/tiki/index.html
|
|
1116
|
+
- public/codemirror/mode/tiki/tiki.css
|
|
1117
|
+
- public/codemirror/mode/tiki/tiki.js
|
|
1118
|
+
- public/codemirror/mode/toml/index.html
|
|
1119
|
+
- public/codemirror/mode/toml/toml.js
|
|
1120
|
+
- public/codemirror/mode/tornado/index.html
|
|
1121
|
+
- public/codemirror/mode/tornado/tornado.js
|
|
1122
|
+
- public/codemirror/mode/troff/index.html
|
|
1123
|
+
- public/codemirror/mode/troff/troff.js
|
|
1124
|
+
- public/codemirror/mode/ttcn-cfg/index.html
|
|
1125
|
+
- public/codemirror/mode/ttcn-cfg/ttcn-cfg.js
|
|
1126
|
+
- public/codemirror/mode/ttcn/index.html
|
|
1127
|
+
- public/codemirror/mode/ttcn/ttcn.js
|
|
1128
|
+
- public/codemirror/mode/turtle/index.html
|
|
1129
|
+
- public/codemirror/mode/turtle/turtle.js
|
|
1130
|
+
- public/codemirror/mode/twig/index.html
|
|
1131
|
+
- public/codemirror/mode/twig/twig.js
|
|
1132
|
+
- public/codemirror/mode/vb/index.html
|
|
1133
|
+
- public/codemirror/mode/vb/vb.js
|
|
1134
|
+
- public/codemirror/mode/vbscript/index.html
|
|
1135
|
+
- public/codemirror/mode/vbscript/vbscript.js
|
|
1136
|
+
- public/codemirror/mode/velocity/index.html
|
|
1137
|
+
- public/codemirror/mode/velocity/velocity.js
|
|
1138
|
+
- public/codemirror/mode/verilog/index.html
|
|
1139
|
+
- public/codemirror/mode/verilog/test.js
|
|
1140
|
+
- public/codemirror/mode/verilog/verilog.js
|
|
1141
|
+
- public/codemirror/mode/vhdl/index.html
|
|
1142
|
+
- public/codemirror/mode/vhdl/vhdl.js
|
|
1143
|
+
- public/codemirror/mode/xml/index.html
|
|
1144
|
+
- public/codemirror/mode/xml/test.js
|
|
1145
|
+
- public/codemirror/mode/xml/xml.js
|
|
1146
|
+
- public/codemirror/mode/xquery/index.html
|
|
1147
|
+
- public/codemirror/mode/xquery/test.js
|
|
1148
|
+
- public/codemirror/mode/xquery/xquery.js
|
|
1149
|
+
- public/codemirror/mode/yaml/index.html
|
|
1150
|
+
- public/codemirror/mode/yaml/yaml.js
|
|
1151
|
+
- public/codemirror/mode/z80/index.html
|
|
1152
|
+
- public/codemirror/mode/z80/z80.js
|
|
1153
|
+
- public/codemirror/package.json
|
|
1154
|
+
- public/codemirror/test/comment_test.js
|
|
1155
|
+
- public/codemirror/test/doc_test.js
|
|
1156
|
+
- public/codemirror/test/driver.js
|
|
1157
|
+
- public/codemirror/test/emacs_test.js
|
|
1158
|
+
- public/codemirror/test/index.html
|
|
1159
|
+
- public/codemirror/test/lint.js
|
|
1160
|
+
- public/codemirror/test/mode_test.css
|
|
1161
|
+
- public/codemirror/test/mode_test.js
|
|
1162
|
+
- public/codemirror/test/multi_test.js
|
|
1163
|
+
- public/codemirror/test/phantom_driver.js
|
|
1164
|
+
- public/codemirror/test/run.js
|
|
1165
|
+
- public/codemirror/test/scroll_test.js
|
|
1166
|
+
- public/codemirror/test/search_test.js
|
|
1167
|
+
- public/codemirror/test/sql-hint-test.js
|
|
1168
|
+
- public/codemirror/test/sublime_test.js
|
|
1169
|
+
- public/codemirror/test/test.js
|
|
1170
|
+
- public/codemirror/test/vim_test.js
|
|
1171
|
+
- public/codemirror/theme/3024-day.css
|
|
1172
|
+
- public/codemirror/theme/3024-night.css
|
|
1173
|
+
- public/codemirror/theme/ambiance-mobile.css
|
|
1174
|
+
- public/codemirror/theme/ambiance.css
|
|
1175
|
+
- public/codemirror/theme/base16-dark.css
|
|
1176
|
+
- public/codemirror/theme/base16-light.css
|
|
1177
|
+
- public/codemirror/theme/blackboard.css
|
|
1178
|
+
- public/codemirror/theme/cobalt.css
|
|
1179
|
+
- public/codemirror/theme/colorforth.css
|
|
1180
|
+
- public/codemirror/theme/dracula.css
|
|
1181
|
+
- public/codemirror/theme/eclipse.css
|
|
1182
|
+
- public/codemirror/theme/elegant.css
|
|
1183
|
+
- public/codemirror/theme/erlang-dark.css
|
|
1184
|
+
- public/codemirror/theme/icecoder.css
|
|
1185
|
+
- public/codemirror/theme/lesser-dark.css
|
|
1186
|
+
- public/codemirror/theme/lines.css
|
|
1187
|
+
- public/codemirror/theme/liquibyte.css
|
|
1188
|
+
- public/codemirror/theme/material.css
|
|
1189
|
+
- public/codemirror/theme/mbo.css
|
|
1190
|
+
- public/codemirror/theme/mdn-like.css
|
|
1191
|
+
- public/codemirror/theme/midnight.css
|
|
1192
|
+
- public/codemirror/theme/monokai.css
|
|
1193
|
+
- public/codemirror/theme/neat.css
|
|
1194
|
+
- public/codemirror/theme/neo.css
|
|
1195
|
+
- public/codemirror/theme/night.css
|
|
1196
|
+
- public/codemirror/theme/paraiso-dark.css
|
|
1197
|
+
- public/codemirror/theme/paraiso-light.css
|
|
1198
|
+
- public/codemirror/theme/pastel-on-dark.css
|
|
1199
|
+
- public/codemirror/theme/rubyblue.css
|
|
1200
|
+
- public/codemirror/theme/seti.css
|
|
1201
|
+
- public/codemirror/theme/solarized.css
|
|
1202
|
+
- public/codemirror/theme/the-matrix.css
|
|
1203
|
+
- public/codemirror/theme/tomorrow-night-bright.css
|
|
1204
|
+
- public/codemirror/theme/tomorrow-night-eighties.css
|
|
1205
|
+
- public/codemirror/theme/ttcn.css
|
|
1206
|
+
- public/codemirror/theme/twilight.css
|
|
1207
|
+
- public/codemirror/theme/vibrant-ink.css
|
|
1208
|
+
- public/codemirror/theme/xq-dark.css
|
|
1209
|
+
- public/codemirror/theme/xq-light.css
|
|
1210
|
+
- public/codemirror/theme/yeti.css
|
|
1211
|
+
- public/codemirror/theme/zenburn.css
|
|
1212
|
+
- public/fira-mono/FiraMono-Bold.eot
|
|
1213
|
+
- public/fira-mono/FiraMono-Bold.otf
|
|
1214
|
+
- public/fira-mono/FiraMono-Bold.ttf
|
|
1215
|
+
- public/fira-mono/FiraMono-Bold.woff
|
|
1216
|
+
- public/fira-mono/FiraMono-Medium.eot
|
|
1217
|
+
- public/fira-mono/FiraMono-Medium.otf
|
|
1218
|
+
- public/fira-mono/FiraMono-Medium.ttf
|
|
1219
|
+
- public/fira-mono/FiraMono-Medium.woff
|
|
1220
|
+
- public/fira-mono/FiraMono-Regular.eot
|
|
1221
|
+
- public/fira-mono/FiraMono-Regular.otf
|
|
1222
|
+
- public/fira-mono/FiraMono-Regular.ttf
|
|
1223
|
+
- public/fira-mono/FiraMono-Regular.woff
|
|
1224
|
+
- public/fira-mono/fira-mono.css
|
|
1225
|
+
- public/heroes/lines_default_01.png
|
|
1226
|
+
- public/heroes/lines_default_02.png
|
|
1227
|
+
- public/heroes/lines_default_03.png
|
|
1228
|
+
- public/iconfont/iconfont.css
|
|
1229
|
+
- public/iconfont/iconfont.eot
|
|
1230
|
+
- public/iconfont/iconfont.svg
|
|
1231
|
+
- public/iconfont/iconfont.ttf
|
|
1232
|
+
- public/iconfont/iconfont.woff
|
|
777
1233
|
- spec/controllers/lines/admin/articles_controller-spec.rb
|
|
778
1234
|
- spec/dummy/README.rdoc
|
|
779
1235
|
- spec/dummy/Rakefile
|
|
@@ -805,10 +1261,15 @@ files:
|
|
|
805
1261
|
- spec/dummy/config/initializers/mime_types.rb
|
|
806
1262
|
- spec/dummy/config/initializers/session_store.rb
|
|
807
1263
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
|
808
|
-
- spec/dummy/config/lines_config.yml
|
|
809
1264
|
- spec/dummy/config/locales/en.yml
|
|
810
1265
|
- spec/dummy/config/routes.rb
|
|
811
1266
|
- spec/dummy/config/secrets.yml
|
|
1267
|
+
- spec/dummy/db/migrate/20140505122014_base_migration.rb
|
|
1268
|
+
- spec/dummy/db/migrate/20140702160602_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb
|
|
1269
|
+
- spec/dummy/db/migrate/20140702160603_add_missing_unique_indices.acts_as_taggable_on_engine.rb
|
|
1270
|
+
- spec/dummy/db/migrate/20140702160604_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb
|
|
1271
|
+
- spec/dummy/db/migrate/20141027143656_add_teaser_to_article.rb
|
|
1272
|
+
- spec/dummy/db/migrate/20150421093311_add_reset_password_fields_to_users.rb
|
|
812
1273
|
- spec/dummy/db/schema.rb
|
|
813
1274
|
- spec/dummy/db/seeds.rb
|
|
814
1275
|
- spec/dummy/lib/assets/.keep
|
|
@@ -853,7 +1314,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
853
1314
|
version: '0'
|
|
854
1315
|
requirements: []
|
|
855
1316
|
rubyforge_project:
|
|
856
|
-
rubygems_version: 2.4.
|
|
1317
|
+
rubygems_version: 2.4.8
|
|
857
1318
|
signing_key:
|
|
858
1319
|
specification_version: 4
|
|
859
1320
|
summary: LINES is the open source blog platform you have been waiting for
|
|
@@ -889,10 +1350,15 @@ test_files:
|
|
|
889
1350
|
- spec/dummy/config/initializers/mime_types.rb
|
|
890
1351
|
- spec/dummy/config/initializers/session_store.rb
|
|
891
1352
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
|
892
|
-
- spec/dummy/config/lines_config.yml
|
|
893
1353
|
- spec/dummy/config/locales/en.yml
|
|
894
1354
|
- spec/dummy/config/routes.rb
|
|
895
1355
|
- spec/dummy/config/secrets.yml
|
|
1356
|
+
- spec/dummy/db/migrate/20140505122014_base_migration.rb
|
|
1357
|
+
- spec/dummy/db/migrate/20140702160602_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb
|
|
1358
|
+
- spec/dummy/db/migrate/20140702160603_add_missing_unique_indices.acts_as_taggable_on_engine.rb
|
|
1359
|
+
- spec/dummy/db/migrate/20140702160604_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb
|
|
1360
|
+
- spec/dummy/db/migrate/20141027143656_add_teaser_to_article.rb
|
|
1361
|
+
- spec/dummy/db/migrate/20150421093311_add_reset_password_fields_to_users.rb
|
|
896
1362
|
- spec/dummy/db/schema.rb
|
|
897
1363
|
- spec/dummy/db/seeds.rb
|
|
898
1364
|
- spec/dummy/lib/assets/.keep
|