locomotivecms 4.1.1 → 4.2.0.alpha2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/MIT-LICENSE +1 -1
- data/README.md +4 -3
- data/Rakefile +4 -0
- data/app/api/locomotive/api.rb +1 -1
- data/app/assets/config/locomotive_manifest.js +2 -0
- data/app/assets/javascripts/locomotive.js +2 -2
- data/app/assets/stylesheets/locomotive/account.scss +0 -1
- data/app/assets/stylesheets/locomotive/application.scss +0 -1
- data/app/assets/stylesheets/locomotive/live_editing_error.scss +0 -1
- data/app/assets/stylesheets/locomotive/live_editing_iframe.scss +0 -1
- data/app/controllers/locomotive/base_controller.rb +1 -1
- data/app/controllers/locomotive/concerns/authorization_controller.rb +1 -1
- data/app/controllers/locomotive/concerns/redirect_to_main_host_controller.rb +1 -1
- data/app/controllers/locomotive/concerns/site_dispatcher_controller.rb +1 -1
- data/app/controllers/locomotive/errors_controller.rb +1 -1
- data/app/controllers/locomotive/my_account_controller.rb +1 -1
- data/app/controllers/locomotive/passwords_controller.rb +3 -1
- data/app/controllers/locomotive/registrations_controller.rb +3 -1
- data/app/controllers/locomotive/sessions_controller.rb +3 -1
- data/app/controllers/locomotive/sites_controller.rb +1 -1
- data/app/helpers/locomotive/base_helper.rb +2 -2
- data/app/helpers/locomotive/custom_fields_helper.rb +2 -2
- data/app/helpers/locomotive/shared/activities_helper.rb +1 -1
- data/app/inputs/locomotive/api_key_input.rb +1 -1
- data/app/mailers/locomotive/notifications.rb +1 -1
- data/app/models/locomotive/account.rb +1 -1
- data/app/models/locomotive/concerns/account/api_key.rb +1 -1
- data/app/models/locomotive/concerns/content_entry/csv.rb +1 -1
- data/app/models/locomotive/concerns/content_entry/slug.rb +5 -5
- data/app/models/locomotive/concerns/content_type/entry_template.rb +3 -3
- data/app/models/locomotive/concerns/page/templatized.rb +1 -1
- data/app/models/locomotive/concerns/shared/json_attribute.rb +21 -2
- data/app/models/locomotive/concerns/site/routes.rb +1 -1
- data/app/models/locomotive/content_entry.rb +2 -2
- data/app/models/locomotive/page.rb +3 -3
- data/app/models/locomotive/section.rb +1 -1
- data/app/models/locomotive/snippet.rb +1 -1
- data/app/models/locomotive/translation.rb +1 -1
- data/app/services/locomotive/content_entry_import_service.rb +1 -1
- data/app/services/locomotive/content_entry_service.rb +2 -2
- data/app/services/locomotive/content_type_service.rb +13 -3
- data/app/services/locomotive/custom_field_service.rb +2 -2
- data/app/services/locomotive/editor_service.rb +1 -1
- data/app/uploaders/locomotive/base_uploader.rb +0 -10
- data/app/views/locomotive/dashboard/_activity.html.slim +1 -1
- data/app/views/locomotive/page_content/_edit.json.jbuilder +50 -0
- data/app/views/locomotive/page_content/edit.html.erb +1 -1
- data/app/views/locomotive/page_content/edit.json.jbuilder +52 -50
- data/config/initializers/devise.rb +5 -2
- data/lib/generators/locomotive/install/templates/locomotive.rb +0 -5
- data/lib/locomotive/action_controller/responder.rb +1 -1
- data/lib/locomotive/configuration.rb +2 -2
- data/lib/locomotive/dependencies.rb +0 -2
- data/lib/locomotive/engine.rb +14 -2
- data/lib/locomotive/mongoid/patches.rb +47 -65
- data/lib/locomotive/steam/services/api_entry_submission_service.rb +1 -0
- data/lib/locomotive/version.rb +1 -1
- data/vendor/assets/javascripts/locomotive/codemirror/addons/comment/comment.js +203 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/comment/continuecomment.js +85 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/dialog/dialog.js +157 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/display/autorefresh.js +47 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/display/fullscreen.js +41 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/display/panel.js +112 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/display/placeholder.js +62 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/display/rulers.js +51 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/edit/closebrackets.js +195 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/edit/closetag.js +169 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/edit/continuelist.js +51 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/edit/matchbrackets.js +120 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/edit/matchtags.js +66 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/edit/trailingspace.js +27 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/fold/brace-fold.js +105 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/fold/comment-fold.js +59 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/fold/foldcode.js +150 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/fold/foldgutter.js +146 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/fold/indent-fold.js +44 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/fold/markdown-fold.js +49 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/fold/xml-fold.js +182 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/hint/anyword-hint.js +41 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/hint/css-hint.js +60 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/hint/html-hint.js +348 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/hint/javascript-hint.js +146 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/hint/show-hint.js +437 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/hint/sql-hint.js +271 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/hint/xml-hint.js +110 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/lint/coffeescript-lint.js +41 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/lint/css-lint.js +35 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/lint/html-lint.js +46 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/lint/javascript-lint.js +136 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/lint/json-lint.js +31 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/lint/lint.js +239 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/lint/yaml-lint.js +28 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/merge/merge.js +773 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/mode/loadmode.js +64 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/mode/multiplex.js +123 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/mode/overlay.js +85 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/mode/simple.js +213 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/runmode/colorize.js +40 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/runmode/runmode-standalone.js +157 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/runmode/runmode.js +72 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/runmode/runmode.node.js +179 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/scroll/annotatescrollbar.js +118 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/scroll/scrollpastend.js +48 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/scroll/simplescrollbars.js +152 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/search/jump-to-line.js +49 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/search/match-highlighter.js +146 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/search/matchesonscrollbar.js +97 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/search/search.js +249 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/search/searchcursor.js +189 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/selection/active-line.js +74 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/selection/mark-selection.js +118 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/selection/selection-pointer.js +98 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/tern/tern.js +701 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/tern/worker.js +44 -0
- data/vendor/assets/javascripts/locomotive/codemirror/addons/wrap/hardwrap.js +144 -0
- data/vendor/assets/javascripts/locomotive/codemirror/keymaps/emacs.js +412 -0
- data/vendor/assets/javascripts/locomotive/codemirror/keymaps/sublime.js +580 -0
- data/vendor/assets/javascripts/locomotive/codemirror/keymaps/vim.js +5065 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/apl.js +174 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/asciiarmor.js +73 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/asn.1.js +204 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/asterisk.js +196 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/brainfuck.js +85 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/clike.js +786 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/clojure.js +306 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/cmake.js +97 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/cobol.js +255 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/coffeescript.js +355 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/commonlisp.js +123 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/crystal.js +391 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/css.js +825 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/cypher.js +146 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/d.js +218 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/dart.js +157 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/diff.js +47 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/django.js +356 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/dockerfile.js +79 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/dtd.js +142 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/dylan.js +344 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/ebnf.js +195 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/ecl.js +206 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/eiffel.js +160 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/elm.js +205 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/erlang.js +618 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/factor.js +83 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/fcl.js +173 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/forth.js +180 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/fortran.js +188 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/gas.js +345 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/gfm.js +130 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/gherkin.js +178 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/go.js +185 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/groovy.js +230 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/haml.js +161 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/handlebars.js +62 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/haskell-literate.js +43 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/haskell.js +267 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/haxe.js +515 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/htmlembedded.js +28 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/htmlmixed.js +152 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/http.js +113 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/idl.js +290 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/jade.js +590 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/javascript.js +748 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/jinja2.js +142 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/jsx.js +147 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/julia.js +392 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/livescript.js +280 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/lua.js +159 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/markdown.js +797 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/mathematica.js +176 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/mbox.js +129 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/mirc.js +193 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/mllike.js +205 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/modelica.js +245 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/mscgen.js +169 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/mumps.js +148 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/nginx.js +178 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/nsis.js +95 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/ntriples.js +186 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/octave.js +135 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/oz.js +252 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/pascal.js +109 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/pegjs.js +114 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/perl.js +837 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/php.js +234 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/pig.js +178 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/powershell.js +396 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/properties.js +78 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/protobuf.js +68 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/puppet.js +220 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/python.js +340 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/q.js +139 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/r.js +164 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/rpm.js +109 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/rst.js +557 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/ruby.js +285 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/rust.js +71 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/sas.js +315 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/sass.js +414 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/scheme.js +249 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/shell.js +139 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/sieve.js +193 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/slim.js +575 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/smalltalk.js +168 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/smarty.js +225 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/solr.js +104 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/soy.js +199 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/sparql.js +180 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/spreadsheet.js +112 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/sql.js +413 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/stex.js +251 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/stylus.js +769 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/swift.js +202 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/tcl.js +139 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/textile.js +469 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/tiddlywiki.js +308 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/tiki.js +312 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/toml.js +88 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/tornado.js +68 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/troff.js +84 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/ttcn-cfg.js +214 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/ttcn.js +283 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/turtle.js +162 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/twig.js +141 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/vb.js +276 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/vbscript.js +350 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/velocity.js +201 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/verilog.js +537 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/vhdl.js +189 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/vue.js +69 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/webidl.js +195 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/xml.js +394 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/xquery.js +437 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/yacas.js +204 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/yaml-frontmatter.js +68 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/yaml.js +117 -0
- data/vendor/assets/javascripts/locomotive/codemirror/modes/z80.js +116 -0
- data/vendor/assets/javascripts/locomotive/codemirror.js +8922 -0
- data/vendor/assets/javascripts/locomotive/select2.js +436 -175
- data/vendor/assets/javascripts/locomotive/wysihtml5x-toolbar.js +1346 -564
- data/vendor/assets/stylesheets/locomotive/codemirror/addons/dialog/dialog.css +32 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/addons/display/fullscreen.css +6 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/addons/fold/foldgutter.css +20 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/addons/hint/show-hint.css +37 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/addons/lint/lint.css +73 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/addons/merge/merge.css +113 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/addons/scroll/simplescrollbars.css +66 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/addons/search/matchesonscrollbar.css +8 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/addons/tern/tern.css +87 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/modes/tiddlywiki.css +14 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/modes/tiki.css +26 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/3024-day.css +41 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/3024-night.css +39 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/abcdef.css +32 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/ambiance-mobile.css +5 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/ambiance.css +74 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/base16-dark.css +38 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/base16-light.css +38 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/bespin.css +34 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/blackboard.css +32 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/cobalt.css +25 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/colorforth.css +33 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/dracula.css +41 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/eclipse.css +23 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/elegant.css +13 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/erlang-dark.css +34 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/hopscotch.css +34 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/icecoder.css +43 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/isotope.css +34 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/lesser-dark.css +47 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/liquibyte.css +95 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/material.css +53 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/mbo.css +37 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/mdn-like.css +46 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/midnight.css +45 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/monokai.css +36 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/neat.css +12 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/neo.css +43 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/night.css +27 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/paraiso-dark.css +38 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/paraiso-light.css +38 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/pastel-on-dark.css +53 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/railscasts.css +34 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/rubyblue.css +25 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/seti.css +44 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/solarized.css +169 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/the-matrix.css +30 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/tomorrow-night-bright.css +35 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/tomorrow-night-eighties.css +38 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/ttcn.css +64 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/twilight.css +32 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/vibrant-ink.css +34 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/xq-dark.css +53 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/xq-light.css +43 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/yeti.css +44 -0
- data/vendor/assets/stylesheets/locomotive/codemirror/themes/zenburn.css +37 -0
- data/vendor/assets/stylesheets/locomotive/codemirror.css +347 -0
- data/vendor/assets/stylesheets/locomotive/select2.css +3 -6
- metadata +349 -128
@@ -0,0 +1,308 @@
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
3
|
+
|
4
|
+
/***
|
5
|
+
|''Name''|tiddlywiki.js|
|
6
|
+
|''Description''|Enables TiddlyWikiy syntax highlighting using CodeMirror|
|
7
|
+
|''Author''|PMario|
|
8
|
+
|''Version''|0.1.7|
|
9
|
+
|''Status''|''stable''|
|
10
|
+
|''Source''|[[GitHub|https://github.com/pmario/CodeMirror2/blob/tw-syntax/mode/tiddlywiki]]|
|
11
|
+
|''Documentation''|http://codemirror.tiddlyspace.com/|
|
12
|
+
|''License''|[[MIT License|http://www.opensource.org/licenses/mit-license.php]]|
|
13
|
+
|''CoreVersion''|2.5.0|
|
14
|
+
|''Requires''|codemirror.js|
|
15
|
+
|''Keywords''|syntax highlighting color code mirror codemirror|
|
16
|
+
! Info
|
17
|
+
CoreVersion parameter is needed for TiddlyWiki only!
|
18
|
+
***/
|
19
|
+
|
20
|
+
(function(mod) {
|
21
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
22
|
+
mod(require("../../lib/codemirror"));
|
23
|
+
else if (typeof define == "function" && define.amd) // AMD
|
24
|
+
define(["../../lib/codemirror"], mod);
|
25
|
+
else // Plain browser env
|
26
|
+
mod(CodeMirror);
|
27
|
+
})(function(CodeMirror) {
|
28
|
+
"use strict";
|
29
|
+
|
30
|
+
CodeMirror.defineMode("tiddlywiki", function () {
|
31
|
+
// Tokenizer
|
32
|
+
var textwords = {};
|
33
|
+
|
34
|
+
var keywords = {
|
35
|
+
"allTags": true, "closeAll": true, "list": true,
|
36
|
+
"newJournal": true, "newTiddler": true,
|
37
|
+
"permaview": true, "saveChanges": true,
|
38
|
+
"search": true, "slider": true, "tabs": true,
|
39
|
+
"tag": true, "tagging": true, "tags": true,
|
40
|
+
"tiddler": true, "timeline": true,
|
41
|
+
"today": true, "version": true, "option": true,
|
42
|
+
"with": true, "filter": true
|
43
|
+
};
|
44
|
+
|
45
|
+
var isSpaceName = /[\w_\-]/i,
|
46
|
+
reHR = /^\-\-\-\-+$/, // <hr>
|
47
|
+
reWikiCommentStart = /^\/\*\*\*$/, // /***
|
48
|
+
reWikiCommentStop = /^\*\*\*\/$/, // ***/
|
49
|
+
reBlockQuote = /^<<<$/,
|
50
|
+
|
51
|
+
reJsCodeStart = /^\/\/\{\{\{$/, // //{{{ js block start
|
52
|
+
reJsCodeStop = /^\/\/\}\}\}$/, // //}}} js stop
|
53
|
+
reXmlCodeStart = /^<!--\{\{\{-->$/, // xml block start
|
54
|
+
reXmlCodeStop = /^<!--\}\}\}-->$/, // xml stop
|
55
|
+
|
56
|
+
reCodeBlockStart = /^\{\{\{$/, // {{{ TW text div block start
|
57
|
+
reCodeBlockStop = /^\}\}\}$/, // }}} TW text stop
|
58
|
+
|
59
|
+
reUntilCodeStop = /.*?\}\}\}/;
|
60
|
+
|
61
|
+
function chain(stream, state, f) {
|
62
|
+
state.tokenize = f;
|
63
|
+
return f(stream, state);
|
64
|
+
}
|
65
|
+
|
66
|
+
function tokenBase(stream, state) {
|
67
|
+
var sol = stream.sol(), ch = stream.peek();
|
68
|
+
|
69
|
+
state.block = false; // indicates the start of a code block.
|
70
|
+
|
71
|
+
// check start of blocks
|
72
|
+
if (sol && /[<\/\*{}\-]/.test(ch)) {
|
73
|
+
if (stream.match(reCodeBlockStart)) {
|
74
|
+
state.block = true;
|
75
|
+
return chain(stream, state, twTokenCode);
|
76
|
+
}
|
77
|
+
if (stream.match(reBlockQuote))
|
78
|
+
return 'quote';
|
79
|
+
if (stream.match(reWikiCommentStart) || stream.match(reWikiCommentStop))
|
80
|
+
return 'comment';
|
81
|
+
if (stream.match(reJsCodeStart) || stream.match(reJsCodeStop) || stream.match(reXmlCodeStart) || stream.match(reXmlCodeStop))
|
82
|
+
return 'comment';
|
83
|
+
if (stream.match(reHR))
|
84
|
+
return 'hr';
|
85
|
+
}
|
86
|
+
|
87
|
+
stream.next();
|
88
|
+
if (sol && /[\/\*!#;:>|]/.test(ch)) {
|
89
|
+
if (ch == "!") { // tw header
|
90
|
+
stream.skipToEnd();
|
91
|
+
return "header";
|
92
|
+
}
|
93
|
+
if (ch == "*") { // tw list
|
94
|
+
stream.eatWhile('*');
|
95
|
+
return "comment";
|
96
|
+
}
|
97
|
+
if (ch == "#") { // tw numbered list
|
98
|
+
stream.eatWhile('#');
|
99
|
+
return "comment";
|
100
|
+
}
|
101
|
+
if (ch == ";") { // definition list, term
|
102
|
+
stream.eatWhile(';');
|
103
|
+
return "comment";
|
104
|
+
}
|
105
|
+
if (ch == ":") { // definition list, description
|
106
|
+
stream.eatWhile(':');
|
107
|
+
return "comment";
|
108
|
+
}
|
109
|
+
if (ch == ">") { // single line quote
|
110
|
+
stream.eatWhile(">");
|
111
|
+
return "quote";
|
112
|
+
}
|
113
|
+
if (ch == '|')
|
114
|
+
return 'header';
|
115
|
+
}
|
116
|
+
|
117
|
+
if (ch == '{' && stream.match(/\{\{/))
|
118
|
+
return chain(stream, state, twTokenCode);
|
119
|
+
|
120
|
+
// rudimentary html:// file:// link matching. TW knows much more ...
|
121
|
+
if (/[hf]/i.test(ch) &&
|
122
|
+
/[ti]/i.test(stream.peek()) &&
|
123
|
+
stream.match(/\b(ttps?|tp|ile):\/\/[\-A-Z0-9+&@#\/%?=~_|$!:,.;]*[A-Z0-9+&@#\/%=~_|$]/i))
|
124
|
+
return "link";
|
125
|
+
|
126
|
+
// just a little string indicator, don't want to have the whole string covered
|
127
|
+
if (ch == '"')
|
128
|
+
return 'string';
|
129
|
+
|
130
|
+
if (ch == '~') // _no_ CamelCase indicator should be bold
|
131
|
+
return 'brace';
|
132
|
+
|
133
|
+
if (/[\[\]]/.test(ch) && stream.match(ch)) // check for [[..]]
|
134
|
+
return 'brace';
|
135
|
+
|
136
|
+
if (ch == "@") { // check for space link. TODO fix @@...@@ highlighting
|
137
|
+
stream.eatWhile(isSpaceName);
|
138
|
+
return "link";
|
139
|
+
}
|
140
|
+
|
141
|
+
if (/\d/.test(ch)) { // numbers
|
142
|
+
stream.eatWhile(/\d/);
|
143
|
+
return "number";
|
144
|
+
}
|
145
|
+
|
146
|
+
if (ch == "/") { // tw invisible comment
|
147
|
+
if (stream.eat("%")) {
|
148
|
+
return chain(stream, state, twTokenComment);
|
149
|
+
} else if (stream.eat("/")) { //
|
150
|
+
return chain(stream, state, twTokenEm);
|
151
|
+
}
|
152
|
+
}
|
153
|
+
|
154
|
+
if (ch == "_" && stream.eat("_")) // tw underline
|
155
|
+
return chain(stream, state, twTokenUnderline);
|
156
|
+
|
157
|
+
// strikethrough and mdash handling
|
158
|
+
if (ch == "-" && stream.eat("-")) {
|
159
|
+
// if strikethrough looks ugly, change CSS.
|
160
|
+
if (stream.peek() != ' ')
|
161
|
+
return chain(stream, state, twTokenStrike);
|
162
|
+
// mdash
|
163
|
+
if (stream.peek() == ' ')
|
164
|
+
return 'brace';
|
165
|
+
}
|
166
|
+
|
167
|
+
if (ch == "'" && stream.eat("'")) // tw bold
|
168
|
+
return chain(stream, state, twTokenStrong);
|
169
|
+
|
170
|
+
if (ch == "<" && stream.eat("<")) // tw macro
|
171
|
+
return chain(stream, state, twTokenMacro);
|
172
|
+
|
173
|
+
// core macro handling
|
174
|
+
stream.eatWhile(/[\w\$_]/);
|
175
|
+
return textwords.propertyIsEnumerable(stream.current()) ? "keyword" : null
|
176
|
+
}
|
177
|
+
|
178
|
+
// tw invisible comment
|
179
|
+
function twTokenComment(stream, state) {
|
180
|
+
var maybeEnd = false, ch;
|
181
|
+
while (ch = stream.next()) {
|
182
|
+
if (ch == "/" && maybeEnd) {
|
183
|
+
state.tokenize = tokenBase;
|
184
|
+
break;
|
185
|
+
}
|
186
|
+
maybeEnd = (ch == "%");
|
187
|
+
}
|
188
|
+
return "comment";
|
189
|
+
}
|
190
|
+
|
191
|
+
// tw strong / bold
|
192
|
+
function twTokenStrong(stream, state) {
|
193
|
+
var maybeEnd = false,
|
194
|
+
ch;
|
195
|
+
while (ch = stream.next()) {
|
196
|
+
if (ch == "'" && maybeEnd) {
|
197
|
+
state.tokenize = tokenBase;
|
198
|
+
break;
|
199
|
+
}
|
200
|
+
maybeEnd = (ch == "'");
|
201
|
+
}
|
202
|
+
return "strong";
|
203
|
+
}
|
204
|
+
|
205
|
+
// tw code
|
206
|
+
function twTokenCode(stream, state) {
|
207
|
+
var sb = state.block;
|
208
|
+
|
209
|
+
if (sb && stream.current()) {
|
210
|
+
return "comment";
|
211
|
+
}
|
212
|
+
|
213
|
+
if (!sb && stream.match(reUntilCodeStop)) {
|
214
|
+
state.tokenize = tokenBase;
|
215
|
+
return "comment";
|
216
|
+
}
|
217
|
+
|
218
|
+
if (sb && stream.sol() && stream.match(reCodeBlockStop)) {
|
219
|
+
state.tokenize = tokenBase;
|
220
|
+
return "comment";
|
221
|
+
}
|
222
|
+
|
223
|
+
stream.next();
|
224
|
+
return "comment";
|
225
|
+
}
|
226
|
+
|
227
|
+
// tw em / italic
|
228
|
+
function twTokenEm(stream, state) {
|
229
|
+
var maybeEnd = false,
|
230
|
+
ch;
|
231
|
+
while (ch = stream.next()) {
|
232
|
+
if (ch == "/" && maybeEnd) {
|
233
|
+
state.tokenize = tokenBase;
|
234
|
+
break;
|
235
|
+
}
|
236
|
+
maybeEnd = (ch == "/");
|
237
|
+
}
|
238
|
+
return "em";
|
239
|
+
}
|
240
|
+
|
241
|
+
// tw underlined text
|
242
|
+
function twTokenUnderline(stream, state) {
|
243
|
+
var maybeEnd = false,
|
244
|
+
ch;
|
245
|
+
while (ch = stream.next()) {
|
246
|
+
if (ch == "_" && maybeEnd) {
|
247
|
+
state.tokenize = tokenBase;
|
248
|
+
break;
|
249
|
+
}
|
250
|
+
maybeEnd = (ch == "_");
|
251
|
+
}
|
252
|
+
return "underlined";
|
253
|
+
}
|
254
|
+
|
255
|
+
// tw strike through text looks ugly
|
256
|
+
// change CSS if needed
|
257
|
+
function twTokenStrike(stream, state) {
|
258
|
+
var maybeEnd = false, ch;
|
259
|
+
|
260
|
+
while (ch = stream.next()) {
|
261
|
+
if (ch == "-" && maybeEnd) {
|
262
|
+
state.tokenize = tokenBase;
|
263
|
+
break;
|
264
|
+
}
|
265
|
+
maybeEnd = (ch == "-");
|
266
|
+
}
|
267
|
+
return "strikethrough";
|
268
|
+
}
|
269
|
+
|
270
|
+
// macro
|
271
|
+
function twTokenMacro(stream, state) {
|
272
|
+
if (stream.current() == '<<') {
|
273
|
+
return 'macro';
|
274
|
+
}
|
275
|
+
|
276
|
+
var ch = stream.next();
|
277
|
+
if (!ch) {
|
278
|
+
state.tokenize = tokenBase;
|
279
|
+
return null;
|
280
|
+
}
|
281
|
+
if (ch == ">") {
|
282
|
+
if (stream.peek() == '>') {
|
283
|
+
stream.next();
|
284
|
+
state.tokenize = tokenBase;
|
285
|
+
return "macro";
|
286
|
+
}
|
287
|
+
}
|
288
|
+
|
289
|
+
stream.eatWhile(/[\w\$_]/);
|
290
|
+
return keywords.propertyIsEnumerable(stream.current()) ? "keyword" : null
|
291
|
+
}
|
292
|
+
|
293
|
+
// Interface
|
294
|
+
return {
|
295
|
+
startState: function () {
|
296
|
+
return {tokenize: tokenBase};
|
297
|
+
},
|
298
|
+
|
299
|
+
token: function (stream, state) {
|
300
|
+
if (stream.eatSpace()) return null;
|
301
|
+
var style = state.tokenize(stream, state);
|
302
|
+
return style;
|
303
|
+
}
|
304
|
+
};
|
305
|
+
});
|
306
|
+
|
307
|
+
CodeMirror.defineMIME("text/x-tiddlywiki", "tiddlywiki");
|
308
|
+
});
|
@@ -0,0 +1,312 @@
|
|
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
|
+
CodeMirror.defineMode('tiki', function(config) {
|
15
|
+
function inBlock(style, terminator, returnTokenizer) {
|
16
|
+
return function(stream, state) {
|
17
|
+
while (!stream.eol()) {
|
18
|
+
if (stream.match(terminator)) {
|
19
|
+
state.tokenize = inText;
|
20
|
+
break;
|
21
|
+
}
|
22
|
+
stream.next();
|
23
|
+
}
|
24
|
+
|
25
|
+
if (returnTokenizer) state.tokenize = returnTokenizer;
|
26
|
+
|
27
|
+
return style;
|
28
|
+
};
|
29
|
+
}
|
30
|
+
|
31
|
+
function inLine(style) {
|
32
|
+
return function(stream, state) {
|
33
|
+
while(!stream.eol()) {
|
34
|
+
stream.next();
|
35
|
+
}
|
36
|
+
state.tokenize = inText;
|
37
|
+
return style;
|
38
|
+
};
|
39
|
+
}
|
40
|
+
|
41
|
+
function inText(stream, state) {
|
42
|
+
function chain(parser) {
|
43
|
+
state.tokenize = parser;
|
44
|
+
return parser(stream, state);
|
45
|
+
}
|
46
|
+
|
47
|
+
var sol = stream.sol();
|
48
|
+
var ch = stream.next();
|
49
|
+
|
50
|
+
//non start of line
|
51
|
+
switch (ch) { //switch is generally much faster than if, so it is used here
|
52
|
+
case "{": //plugin
|
53
|
+
stream.eat("/");
|
54
|
+
stream.eatSpace();
|
55
|
+
stream.eatWhile(/[^\s\u00a0=\"\'\/?(}]/);
|
56
|
+
state.tokenize = inPlugin;
|
57
|
+
return "tag";
|
58
|
+
case "_": //bold
|
59
|
+
if (stream.eat("_"))
|
60
|
+
return chain(inBlock("strong", "__", inText));
|
61
|
+
break;
|
62
|
+
case "'": //italics
|
63
|
+
if (stream.eat("'"))
|
64
|
+
return chain(inBlock("em", "''", inText));
|
65
|
+
break;
|
66
|
+
case "(":// Wiki Link
|
67
|
+
if (stream.eat("("))
|
68
|
+
return chain(inBlock("variable-2", "))", inText));
|
69
|
+
break;
|
70
|
+
case "[":// Weblink
|
71
|
+
return chain(inBlock("variable-3", "]", inText));
|
72
|
+
break;
|
73
|
+
case "|": //table
|
74
|
+
if (stream.eat("|"))
|
75
|
+
return chain(inBlock("comment", "||"));
|
76
|
+
break;
|
77
|
+
case "-":
|
78
|
+
if (stream.eat("=")) {//titleBar
|
79
|
+
return chain(inBlock("header string", "=-", inText));
|
80
|
+
} else if (stream.eat("-")) {//deleted
|
81
|
+
return chain(inBlock("error tw-deleted", "--", inText));
|
82
|
+
}
|
83
|
+
break;
|
84
|
+
case "=": //underline
|
85
|
+
if (stream.match("=="))
|
86
|
+
return chain(inBlock("tw-underline", "===", inText));
|
87
|
+
break;
|
88
|
+
case ":":
|
89
|
+
if (stream.eat(":"))
|
90
|
+
return chain(inBlock("comment", "::"));
|
91
|
+
break;
|
92
|
+
case "^": //box
|
93
|
+
return chain(inBlock("tw-box", "^"));
|
94
|
+
break;
|
95
|
+
case "~": //np
|
96
|
+
if (stream.match("np~"))
|
97
|
+
return chain(inBlock("meta", "~/np~"));
|
98
|
+
break;
|
99
|
+
}
|
100
|
+
|
101
|
+
//start of line types
|
102
|
+
if (sol) {
|
103
|
+
switch (ch) {
|
104
|
+
case "!": //header at start of line
|
105
|
+
if (stream.match('!!!!!')) {
|
106
|
+
return chain(inLine("header string"));
|
107
|
+
} else if (stream.match('!!!!')) {
|
108
|
+
return chain(inLine("header string"));
|
109
|
+
} else if (stream.match('!!!')) {
|
110
|
+
return chain(inLine("header string"));
|
111
|
+
} else if (stream.match('!!')) {
|
112
|
+
return chain(inLine("header string"));
|
113
|
+
} else {
|
114
|
+
return chain(inLine("header string"));
|
115
|
+
}
|
116
|
+
break;
|
117
|
+
case "*": //unordered list line item, or <li /> at start of line
|
118
|
+
case "#": //ordered list line item, or <li /> at start of line
|
119
|
+
case "+": //ordered list line item, or <li /> at start of line
|
120
|
+
return chain(inLine("tw-listitem bracket"));
|
121
|
+
break;
|
122
|
+
}
|
123
|
+
}
|
124
|
+
|
125
|
+
//stream.eatWhile(/[&{]/); was eating up plugins, turned off to act less like html and more like tiki
|
126
|
+
return null;
|
127
|
+
}
|
128
|
+
|
129
|
+
var indentUnit = config.indentUnit;
|
130
|
+
|
131
|
+
// Return variables for tokenizers
|
132
|
+
var pluginName, type;
|
133
|
+
function inPlugin(stream, state) {
|
134
|
+
var ch = stream.next();
|
135
|
+
var peek = stream.peek();
|
136
|
+
|
137
|
+
if (ch == "}") {
|
138
|
+
state.tokenize = inText;
|
139
|
+
//type = ch == ")" ? "endPlugin" : "selfclosePlugin"; inPlugin
|
140
|
+
return "tag";
|
141
|
+
} else if (ch == "(" || ch == ")") {
|
142
|
+
return "bracket";
|
143
|
+
} else if (ch == "=") {
|
144
|
+
type = "equals";
|
145
|
+
|
146
|
+
if (peek == ">") {
|
147
|
+
ch = stream.next();
|
148
|
+
peek = stream.peek();
|
149
|
+
}
|
150
|
+
|
151
|
+
//here we detect values directly after equal character with no quotes
|
152
|
+
if (!/[\'\"]/.test(peek)) {
|
153
|
+
state.tokenize = inAttributeNoQuote();
|
154
|
+
}
|
155
|
+
//end detect values
|
156
|
+
|
157
|
+
return "operator";
|
158
|
+
} else if (/[\'\"]/.test(ch)) {
|
159
|
+
state.tokenize = inAttribute(ch);
|
160
|
+
return state.tokenize(stream, state);
|
161
|
+
} else {
|
162
|
+
stream.eatWhile(/[^\s\u00a0=\"\'\/?]/);
|
163
|
+
return "keyword";
|
164
|
+
}
|
165
|
+
}
|
166
|
+
|
167
|
+
function inAttribute(quote) {
|
168
|
+
return function(stream, state) {
|
169
|
+
while (!stream.eol()) {
|
170
|
+
if (stream.next() == quote) {
|
171
|
+
state.tokenize = inPlugin;
|
172
|
+
break;
|
173
|
+
}
|
174
|
+
}
|
175
|
+
return "string";
|
176
|
+
};
|
177
|
+
}
|
178
|
+
|
179
|
+
function inAttributeNoQuote() {
|
180
|
+
return function(stream, state) {
|
181
|
+
while (!stream.eol()) {
|
182
|
+
var ch = stream.next();
|
183
|
+
var peek = stream.peek();
|
184
|
+
if (ch == " " || ch == "," || /[ )}]/.test(peek)) {
|
185
|
+
state.tokenize = inPlugin;
|
186
|
+
break;
|
187
|
+
}
|
188
|
+
}
|
189
|
+
return "string";
|
190
|
+
};
|
191
|
+
}
|
192
|
+
|
193
|
+
var curState, setStyle;
|
194
|
+
function pass() {
|
195
|
+
for (var i = arguments.length - 1; i >= 0; i--) curState.cc.push(arguments[i]);
|
196
|
+
}
|
197
|
+
|
198
|
+
function cont() {
|
199
|
+
pass.apply(null, arguments);
|
200
|
+
return true;
|
201
|
+
}
|
202
|
+
|
203
|
+
function pushContext(pluginName, startOfLine) {
|
204
|
+
var noIndent = curState.context && curState.context.noIndent;
|
205
|
+
curState.context = {
|
206
|
+
prev: curState.context,
|
207
|
+
pluginName: pluginName,
|
208
|
+
indent: curState.indented,
|
209
|
+
startOfLine: startOfLine,
|
210
|
+
noIndent: noIndent
|
211
|
+
};
|
212
|
+
}
|
213
|
+
|
214
|
+
function popContext() {
|
215
|
+
if (curState.context) curState.context = curState.context.prev;
|
216
|
+
}
|
217
|
+
|
218
|
+
function element(type) {
|
219
|
+
if (type == "openPlugin") {curState.pluginName = pluginName; return cont(attributes, endplugin(curState.startOfLine));}
|
220
|
+
else if (type == "closePlugin") {
|
221
|
+
var err = false;
|
222
|
+
if (curState.context) {
|
223
|
+
err = curState.context.pluginName != pluginName;
|
224
|
+
popContext();
|
225
|
+
} else {
|
226
|
+
err = true;
|
227
|
+
}
|
228
|
+
if (err) setStyle = "error";
|
229
|
+
return cont(endcloseplugin(err));
|
230
|
+
}
|
231
|
+
else if (type == "string") {
|
232
|
+
if (!curState.context || curState.context.name != "!cdata") pushContext("!cdata");
|
233
|
+
if (curState.tokenize == inText) popContext();
|
234
|
+
return cont();
|
235
|
+
}
|
236
|
+
else return cont();
|
237
|
+
}
|
238
|
+
|
239
|
+
function endplugin(startOfLine) {
|
240
|
+
return function(type) {
|
241
|
+
if (
|
242
|
+
type == "selfclosePlugin" ||
|
243
|
+
type == "endPlugin"
|
244
|
+
)
|
245
|
+
return cont();
|
246
|
+
if (type == "endPlugin") {pushContext(curState.pluginName, startOfLine); return cont();}
|
247
|
+
return cont();
|
248
|
+
};
|
249
|
+
}
|
250
|
+
|
251
|
+
function endcloseplugin(err) {
|
252
|
+
return function(type) {
|
253
|
+
if (err) setStyle = "error";
|
254
|
+
if (type == "endPlugin") return cont();
|
255
|
+
return pass();
|
256
|
+
};
|
257
|
+
}
|
258
|
+
|
259
|
+
function attributes(type) {
|
260
|
+
if (type == "keyword") {setStyle = "attribute"; return cont(attributes);}
|
261
|
+
if (type == "equals") return cont(attvalue, attributes);
|
262
|
+
return pass();
|
263
|
+
}
|
264
|
+
function attvalue(type) {
|
265
|
+
if (type == "keyword") {setStyle = "string"; return cont();}
|
266
|
+
if (type == "string") return cont(attvaluemaybe);
|
267
|
+
return pass();
|
268
|
+
}
|
269
|
+
function attvaluemaybe(type) {
|
270
|
+
if (type == "string") return cont(attvaluemaybe);
|
271
|
+
else return pass();
|
272
|
+
}
|
273
|
+
return {
|
274
|
+
startState: function() {
|
275
|
+
return {tokenize: inText, cc: [], indented: 0, startOfLine: true, pluginName: null, context: null};
|
276
|
+
},
|
277
|
+
token: function(stream, state) {
|
278
|
+
if (stream.sol()) {
|
279
|
+
state.startOfLine = true;
|
280
|
+
state.indented = stream.indentation();
|
281
|
+
}
|
282
|
+
if (stream.eatSpace()) return null;
|
283
|
+
|
284
|
+
setStyle = type = pluginName = null;
|
285
|
+
var style = state.tokenize(stream, state);
|
286
|
+
if ((style || type) && style != "comment") {
|
287
|
+
curState = state;
|
288
|
+
while (true) {
|
289
|
+
var comb = state.cc.pop() || element;
|
290
|
+
if (comb(type || style)) break;
|
291
|
+
}
|
292
|
+
}
|
293
|
+
state.startOfLine = false;
|
294
|
+
return setStyle || style;
|
295
|
+
},
|
296
|
+
indent: function(state, textAfter) {
|
297
|
+
var context = state.context;
|
298
|
+
if (context && context.noIndent) return 0;
|
299
|
+
if (context && /^{\//.test(textAfter))
|
300
|
+
context = context.prev;
|
301
|
+
while (context && !context.startOfLine)
|
302
|
+
context = context.prev;
|
303
|
+
if (context) return context.indent + indentUnit;
|
304
|
+
else return 0;
|
305
|
+
},
|
306
|
+
electricChars: "/"
|
307
|
+
};
|
308
|
+
});
|
309
|
+
|
310
|
+
CodeMirror.defineMIME("text/tiki", "tiki");
|
311
|
+
|
312
|
+
});
|
@@ -0,0 +1,88 @@
|
|
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
|
+
CodeMirror.defineMode("toml", function () {
|
15
|
+
return {
|
16
|
+
startState: function () {
|
17
|
+
return {
|
18
|
+
inString: false,
|
19
|
+
stringType: "",
|
20
|
+
lhs: true,
|
21
|
+
inArray: 0
|
22
|
+
};
|
23
|
+
},
|
24
|
+
token: function (stream, state) {
|
25
|
+
//check for state changes
|
26
|
+
if (!state.inString && ((stream.peek() == '"') || (stream.peek() == "'"))) {
|
27
|
+
state.stringType = stream.peek();
|
28
|
+
stream.next(); // Skip quote
|
29
|
+
state.inString = true; // Update state
|
30
|
+
}
|
31
|
+
if (stream.sol() && state.inArray === 0) {
|
32
|
+
state.lhs = true;
|
33
|
+
}
|
34
|
+
//return state
|
35
|
+
if (state.inString) {
|
36
|
+
while (state.inString && !stream.eol()) {
|
37
|
+
if (stream.peek() === state.stringType) {
|
38
|
+
stream.next(); // Skip quote
|
39
|
+
state.inString = false; // Clear flag
|
40
|
+
} else if (stream.peek() === '\\') {
|
41
|
+
stream.next();
|
42
|
+
stream.next();
|
43
|
+
} else {
|
44
|
+
stream.match(/^.[^\\\"\']*/);
|
45
|
+
}
|
46
|
+
}
|
47
|
+
return state.lhs ? "property string" : "string"; // Token style
|
48
|
+
} else if (state.inArray && stream.peek() === ']') {
|
49
|
+
stream.next();
|
50
|
+
state.inArray--;
|
51
|
+
return 'bracket';
|
52
|
+
} else if (state.lhs && stream.peek() === '[' && stream.skipTo(']')) {
|
53
|
+
stream.next();//skip closing ]
|
54
|
+
// array of objects has an extra open & close []
|
55
|
+
if (stream.peek() === ']') stream.next();
|
56
|
+
return "atom";
|
57
|
+
} else if (stream.peek() === "#") {
|
58
|
+
stream.skipToEnd();
|
59
|
+
return "comment";
|
60
|
+
} else if (stream.eatSpace()) {
|
61
|
+
return null;
|
62
|
+
} else if (state.lhs && stream.eatWhile(function (c) { return c != '=' && c != ' '; })) {
|
63
|
+
return "property";
|
64
|
+
} else if (state.lhs && stream.peek() === "=") {
|
65
|
+
stream.next();
|
66
|
+
state.lhs = false;
|
67
|
+
return null;
|
68
|
+
} else if (!state.lhs && stream.match(/^\d\d\d\d[\d\-\:\.T]*Z/)) {
|
69
|
+
return 'atom'; //date
|
70
|
+
} else if (!state.lhs && (stream.match('true') || stream.match('false'))) {
|
71
|
+
return 'atom';
|
72
|
+
} else if (!state.lhs && stream.peek() === '[') {
|
73
|
+
state.inArray++;
|
74
|
+
stream.next();
|
75
|
+
return 'bracket';
|
76
|
+
} else if (!state.lhs && stream.match(/^\-?\d+(?:\.\d+)?/)) {
|
77
|
+
return 'number';
|
78
|
+
} else if (!stream.eatSpace()) {
|
79
|
+
stream.next();
|
80
|
+
}
|
81
|
+
return null;
|
82
|
+
}
|
83
|
+
};
|
84
|
+
});
|
85
|
+
|
86
|
+
CodeMirror.defineMIME('text/x-toml', 'toml');
|
87
|
+
|
88
|
+
});
|