lines-engine 0.6.2 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.gitignore +1 -0
- data/CHANGELOG.md +10 -3
- data/Gemfile +1 -0
- data/Gemfile.lock +10 -6
- data/app/assets/images/favicon.ico +0 -0
- data/app/assets/images/gplus.svg +17 -0
- data/app/assets/javascripts/lines/admin/admin.js +299 -0
- data/app/assets/javascripts/lines/{autosize.min.js → admin/autosize.min.js} +0 -0
- data/app/assets/javascripts/lines/admin/navbar.js +51 -0
- data/app/assets/javascripts/lines/{pictures.js.coffee → admin/pictures.js.coffee} +2 -1
- data/app/assets/javascripts/lines/application.js +3 -0
- data/app/assets/javascripts/lines/articles.js.coffee +1 -0
- data/app/assets/javascripts/lines/viewer.js.coffee +3 -0
- data/app/assets/stylesheets/lines/admin/admin.scss +609 -0
- data/app/assets/stylesheets/lines/admin/variables_and_mixins.scss +36 -0
- data/app/assets/stylesheets/lines/application.scss +2 -13
- data/app/assets/stylesheets/lines/article.scss +165 -69
- data/app/assets/stylesheets/lines/fonts.scss +2 -2
- data/app/assets/stylesheets/lines/footer.scss +10 -56
- data/app/assets/stylesheets/lines/general.scss +18 -13
- data/app/assets/stylesheets/lines/media_queries.scss +5 -1
- data/app/assets/stylesheets/lines/messages.scss +28 -0
- data/app/assets/stylesheets/lines/navbar.scss +199 -122
- data/app/assets/stylesheets/lines/pagination.scss +8 -31
- data/app/assets/stylesheets/lines/pygments.css.erb +1 -2
- data/app/assets/stylesheets/lines/variables_and_mixins.scss +4 -0
- data/app/controllers/lines/admin/articles_controller.rb +8 -6
- data/app/controllers/lines/admin/authors_controller.rb +2 -2
- data/app/controllers/lines/admin/pictures_controller.rb +1 -1
- data/app/controllers/lines/application_controller.rb +1 -1
- data/app/controllers/lines/articles_controller.rb +3 -1
- data/app/controllers/lines/password_resets_controller.rb +4 -7
- data/app/controllers/lines/sessions_controller.rb +3 -3
- data/app/helpers/lines/application_helper.rb +25 -4
- data/app/mailers/lines/user_mailer.rb +1 -1
- data/app/models/lines/article.rb +13 -3
- data/app/models/lines/user.rb +2 -2
- data/app/uploaders/picture_uploader.rb +1 -1
- data/app/views/layouts/lines/_markdown_cheatsheet.html.erb +72 -0
- data/app/views/layouts/lines/admin.html.erb +15 -4
- data/app/views/layouts/lines/application.html.erb +16 -4
- data/app/views/layouts/lines/preview.html.erb +30 -2
- data/app/views/lines/admin/articles/_form.html.erb +50 -148
- data/app/views/lines/admin/articles/_picture_box.html.erb +37 -8
- data/app/views/lines/admin/articles/edit.html.erb +2 -12
- data/app/views/lines/admin/articles/index.html.erb +40 -28
- data/app/views/lines/admin/articles/new.html.erb +3 -10
- data/app/views/lines/admin/articles/show.html.erb +6 -4
- data/app/views/lines/admin/authors/_form.html.erb +12 -41
- data/app/views/lines/admin/authors/index.html.erb +18 -13
- data/app/views/lines/admin/authors/show.html.erb +19 -48
- data/app/views/lines/admin/pictures/_picture.html.erb +5 -4
- data/app/views/lines/admin/pictures/create.js.erb +1 -1
- data/app/views/lines/admin/pictures/destroy.js.erb +1 -1
- data/app/views/lines/articles/_article.html.erb +10 -6
- data/app/views/lines/articles/_article_collection.html.erb +1 -1
- data/app/views/lines/articles/_article_small.html.erb +9 -7
- data/app/views/lines/articles/index.atom.builder +10 -9
- data/app/views/lines/articles/index.html.erb +2 -2
- data/app/views/lines/articles/show.html.erb +5 -1
- data/app/views/lines/password_resets/edit.html.erb +25 -12
- data/app/views/lines/password_resets/new.html.erb +14 -8
- data/app/views/lines/sessions/new.html.erb +6 -10
- data/app/views/lines/shared/_flash.html.erb +1 -1
- data/app/views/lines/shared/_footer.html.erb +5 -28
- data/app/views/lines/user_mailer/password_reset.html.erb +6 -5
- data/app/views/lines/user_mailer/password_reset.text.erb +8 -4
- data/config/lines_config.yml +15 -14
- data/config/routes.rb +2 -2
- data/db/seeds.rb +5 -5
- data/lib/lines/engine.rb +1 -1
- data/lib/lines/version.rb +1 -1
- data/lines.gemspec +1 -1
- data/public/codemirror/.gitattributes +8 -0
- data/public/codemirror/.gitignore +8 -0
- data/public/codemirror/.npmignore +9 -0
- data/public/codemirror/.travis.yml +4 -0
- data/public/codemirror/AUTHORS +474 -0
- data/public/codemirror/CONTRIBUTING.md +88 -0
- data/public/codemirror/LICENSE +19 -0
- data/public/codemirror/README.md +27 -0
- data/public/codemirror/addon/comment/comment.js +183 -0
- data/public/codemirror/addon/comment/continuecomment.js +85 -0
- data/public/codemirror/addon/dialog/dialog.css +32 -0
- data/public/codemirror/addon/dialog/dialog.js +157 -0
- data/public/codemirror/addon/display/fullscreen.css +6 -0
- data/public/codemirror/addon/display/fullscreen.js +41 -0
- data/public/codemirror/addon/display/panel.js +112 -0
- data/public/codemirror/addon/display/placeholder.js +58 -0
- data/public/codemirror/addon/display/rulers.js +63 -0
- data/public/codemirror/addon/edit/closebrackets.js +185 -0
- data/public/codemirror/addon/edit/closetag.js +166 -0
- data/public/codemirror/addon/edit/continuelist.js +51 -0
- data/public/codemirror/addon/edit/matchbrackets.js +120 -0
- data/public/codemirror/addon/edit/matchtags.js +66 -0
- data/public/codemirror/addon/edit/trailingspace.js +27 -0
- data/public/codemirror/addon/fold/brace-fold.js +105 -0
- data/public/codemirror/addon/fold/comment-fold.js +57 -0
- data/public/codemirror/addon/fold/foldcode.js +149 -0
- data/public/codemirror/addon/fold/foldgutter.css +20 -0
- data/public/codemirror/addon/fold/foldgutter.js +146 -0
- data/public/codemirror/addon/fold/indent-fold.js +44 -0
- data/public/codemirror/addon/fold/markdown-fold.js +49 -0
- data/public/codemirror/addon/fold/xml-fold.js +182 -0
- data/public/codemirror/addon/hint/anyword-hint.js +41 -0
- data/public/codemirror/addon/hint/css-hint.js +60 -0
- data/public/codemirror/addon/hint/html-hint.js +348 -0
- data/public/codemirror/addon/hint/javascript-hint.js +146 -0
- data/public/codemirror/addon/hint/show-hint.css +38 -0
- data/public/codemirror/addon/hint/show-hint.js +386 -0
- data/public/codemirror/addon/hint/sql-hint.js +254 -0
- data/public/codemirror/addon/hint/xml-hint.js +110 -0
- data/public/codemirror/addon/lint/coffeescript-lint.js +41 -0
- data/public/codemirror/addon/lint/css-lint.js +35 -0
- data/public/codemirror/addon/lint/javascript-lint.js +136 -0
- data/public/codemirror/addon/lint/json-lint.js +31 -0
- data/public/codemirror/addon/lint/lint.css +73 -0
- data/public/codemirror/addon/lint/lint.js +207 -0
- data/public/codemirror/addon/lint/yaml-lint.js +28 -0
- data/public/codemirror/addon/merge/merge.css +112 -0
- data/public/codemirror/addon/merge/merge.js +775 -0
- data/public/codemirror/addon/mode/loadmode.js +64 -0
- data/public/codemirror/addon/mode/multiplex.js +123 -0
- data/public/codemirror/addon/mode/multiplex_test.js +33 -0
- data/public/codemirror/addon/mode/overlay.js +85 -0
- data/public/codemirror/addon/mode/simple.js +213 -0
- data/public/codemirror/addon/runmode/colorize.js +40 -0
- data/public/codemirror/addon/runmode/runmode-standalone.js +157 -0
- data/public/codemirror/addon/runmode/runmode.js +72 -0
- data/public/codemirror/addon/runmode/runmode.node.js +178 -0
- data/public/codemirror/addon/scroll/annotatescrollbar.js +115 -0
- data/public/codemirror/addon/scroll/scrollpastend.js +46 -0
- data/public/codemirror/addon/scroll/simplescrollbars.css +66 -0
- data/public/codemirror/addon/scroll/simplescrollbars.js +147 -0
- data/public/codemirror/addon/search/match-highlighter.js +128 -0
- data/public/codemirror/addon/search/matchesonscrollbar.css +8 -0
- data/public/codemirror/addon/search/matchesonscrollbar.js +97 -0
- data/public/codemirror/addon/search/search.js +202 -0
- data/public/codemirror/addon/search/searchcursor.js +189 -0
- data/public/codemirror/addon/selection/active-line.js +71 -0
- data/public/codemirror/addon/selection/mark-selection.js +118 -0
- data/public/codemirror/addon/selection/selection-pointer.js +98 -0
- data/public/codemirror/addon/tern/tern.css +87 -0
- data/public/codemirror/addon/tern/tern.js +699 -0
- data/public/codemirror/addon/tern/worker.js +44 -0
- data/public/codemirror/addon/wrap/hardwrap.js +139 -0
- data/public/codemirror/bin/authors.sh +6 -0
- data/public/codemirror/bin/compress +92 -0
- data/public/codemirror/bin/lint +3 -0
- data/public/codemirror/bin/release +45 -0
- data/public/codemirror/bin/source-highlight +51 -0
- data/public/codemirror/bower.json +17 -0
- data/public/codemirror/demo/activeline.html +78 -0
- data/public/codemirror/demo/anywordhint.html +79 -0
- data/public/codemirror/demo/bidi.html +74 -0
- data/public/codemirror/demo/btree.html +85 -0
- data/public/codemirror/demo/buffers.html +109 -0
- data/public/codemirror/demo/changemode.html +58 -0
- data/public/codemirror/demo/closebrackets.html +52 -0
- data/public/codemirror/demo/closetag.html +41 -0
- data/public/codemirror/demo/complete.html +79 -0
- data/public/codemirror/demo/emacs.html +75 -0
- data/public/codemirror/demo/folding.html +95 -0
- data/public/codemirror/demo/fullscreen.html +83 -0
- data/public/codemirror/demo/hardwrap.html +72 -0
- data/public/codemirror/demo/html5complete.html +56 -0
- data/public/codemirror/demo/indentwrap.html +59 -0
- data/public/codemirror/demo/lint.html +171 -0
- data/public/codemirror/demo/loadmode.html +72 -0
- data/public/codemirror/demo/marker.html +52 -0
- data/public/codemirror/demo/markselection.html +52 -0
- data/public/codemirror/demo/matchhighlighter.html +47 -0
- data/public/codemirror/demo/matchtags.html +48 -0
- data/public/codemirror/demo/merge.html +122 -0
- data/public/codemirror/demo/multiplex.html +75 -0
- data/public/codemirror/demo/mustache.html +69 -0
- data/public/codemirror/demo/panel.html +136 -0
- data/public/codemirror/demo/placeholder.html +45 -0
- data/public/codemirror/demo/preview.html +87 -0
- data/public/codemirror/demo/requirejs.html +70 -0
- data/public/codemirror/demo/resize.html +51 -0
- data/public/codemirror/demo/rulers.html +49 -0
- data/public/codemirror/demo/runmode.html +62 -0
- data/public/codemirror/demo/search.html +95 -0
- data/public/codemirror/demo/simplemode.html +186 -0
- data/public/codemirror/demo/simplescrollbars.html +82 -0
- data/public/codemirror/demo/spanaffectswrapping_shim.html +85 -0
- data/public/codemirror/demo/sublime.html +76 -0
- data/public/codemirror/demo/tern.html +133 -0
- data/public/codemirror/demo/theme.html +152 -0
- data/public/codemirror/demo/trailingspace.html +48 -0
- data/public/codemirror/demo/variableheight.html +67 -0
- data/public/codemirror/demo/vim.html +104 -0
- data/public/codemirror/demo/visibletabs.html +62 -0
- data/public/codemirror/demo/widget.html +85 -0
- data/public/codemirror/demo/xmlcomplete.html +119 -0
- data/public/codemirror/doc/activebookmark.js +57 -0
- data/public/codemirror/doc/compress.html +329 -0
- data/public/codemirror/doc/docs.css +271 -0
- data/public/codemirror/doc/internals.html +503 -0
- data/public/codemirror/doc/logo.png +0 -0
- data/public/codemirror/doc/logo.svg +181 -0
- data/public/codemirror/doc/manual.html +3327 -0
- data/public/codemirror/doc/realworld.html +174 -0
- data/public/codemirror/doc/releases.html +1116 -0
- data/public/codemirror/doc/reporting.html +61 -0
- data/public/codemirror/doc/upgrade_v2.2.html +96 -0
- data/public/codemirror/doc/upgrade_v3.html +230 -0
- data/public/codemirror/doc/upgrade_v4.html +144 -0
- data/public/codemirror/doc/yinyang.png +0 -0
- data/public/codemirror/index.html +199 -0
- data/public/codemirror/keymap/emacs.js +412 -0
- data/public/codemirror/keymap/sublime.js +555 -0
- data/public/codemirror/keymap/vim.js +5060 -0
- data/public/codemirror/lib/codemirror.css +332 -0
- data/public/codemirror/lib/codemirror.js +8788 -0
- data/public/codemirror/mode/apl/apl.js +174 -0
- data/public/codemirror/mode/apl/index.html +72 -0
- data/public/codemirror/mode/asciiarmor/asciiarmor.js +73 -0
- data/public/codemirror/mode/asciiarmor/index.html +46 -0
- data/public/codemirror/mode/asn.1/asn.1.js +204 -0
- data/public/codemirror/mode/asn.1/index.html +78 -0
- data/public/codemirror/mode/asterisk/asterisk.js +196 -0
- data/public/codemirror/mode/asterisk/index.html +154 -0
- data/public/codemirror/mode/brainfuck/brainfuck.js +85 -0
- data/public/codemirror/mode/brainfuck/index.html +85 -0
- data/public/codemirror/mode/clike/clike.js +604 -0
- data/public/codemirror/mode/clike/index.html +252 -0
- data/public/codemirror/mode/clike/scala.html +767 -0
- data/public/codemirror/mode/clike/test.js +33 -0
- data/public/codemirror/mode/clojure/clojure.js +244 -0
- data/public/codemirror/mode/clojure/index.html +88 -0
- data/public/codemirror/mode/cmake/cmake.js +97 -0
- data/public/codemirror/mode/cmake/index.html +129 -0
- data/public/codemirror/mode/cobol/cobol.js +255 -0
- data/public/codemirror/mode/cobol/index.html +210 -0
- data/public/codemirror/mode/coffeescript/coffeescript.js +369 -0
- data/public/codemirror/mode/coffeescript/index.html +740 -0
- data/public/codemirror/mode/commonlisp/commonlisp.js +123 -0
- data/public/codemirror/mode/commonlisp/index.html +177 -0
- data/public/codemirror/mode/css/css.js +756 -0
- data/public/codemirror/mode/css/index.html +75 -0
- data/public/codemirror/mode/css/less.html +152 -0
- data/public/codemirror/mode/css/less_test.js +54 -0
- data/public/codemirror/mode/css/scss.html +157 -0
- data/public/codemirror/mode/css/scss_test.js +110 -0
- data/public/codemirror/mode/css/test.js +188 -0
- data/public/codemirror/mode/cypher/cypher.js +146 -0
- data/public/codemirror/mode/cypher/index.html +63 -0
- data/public/codemirror/mode/d/d.js +218 -0
- data/public/codemirror/mode/d/index.html +273 -0
- data/public/codemirror/mode/dart/dart.js +50 -0
- data/public/codemirror/mode/dart/index.html +71 -0
- data/public/codemirror/mode/diff/diff.js +47 -0
- data/public/codemirror/mode/diff/index.html +117 -0
- data/public/codemirror/mode/django/django.js +350 -0
- data/public/codemirror/mode/django/index.html +73 -0
- data/public/codemirror/mode/dockerfile/dockerfile.js +76 -0
- data/public/codemirror/mode/dockerfile/index.html +73 -0
- data/public/codemirror/mode/dtd/dtd.js +142 -0
- data/public/codemirror/mode/dtd/index.html +89 -0
- data/public/codemirror/mode/dylan/dylan.js +291 -0
- data/public/codemirror/mode/dylan/index.html +407 -0
- data/public/codemirror/mode/ebnf/ebnf.js +195 -0
- data/public/codemirror/mode/ebnf/index.html +102 -0
- data/public/codemirror/mode/ecl/ecl.js +206 -0
- data/public/codemirror/mode/ecl/index.html +52 -0
- data/public/codemirror/mode/eiffel/eiffel.js +160 -0
- data/public/codemirror/mode/eiffel/index.html +429 -0
- data/public/codemirror/mode/elm/elm.js +205 -0
- data/public/codemirror/mode/elm/index.html +61 -0
- data/public/codemirror/mode/erlang/erlang.js +618 -0
- data/public/codemirror/mode/erlang/index.html +76 -0
- data/public/codemirror/mode/factor/factor.js +83 -0
- data/public/codemirror/mode/factor/index.html +77 -0
- data/public/codemirror/mode/forth/forth.js +180 -0
- data/public/codemirror/mode/forth/index.html +75 -0
- data/public/codemirror/mode/fortran/fortran.js +188 -0
- data/public/codemirror/mode/fortran/index.html +81 -0
- data/public/codemirror/mode/gas/gas.js +345 -0
- data/public/codemirror/mode/gas/index.html +68 -0
- data/public/codemirror/mode/gfm/gfm.js +124 -0
- data/public/codemirror/mode/gfm/index.html +93 -0
- data/public/codemirror/mode/gfm/test.js +213 -0
- data/public/codemirror/mode/gherkin/gherkin.js +178 -0
- data/public/codemirror/mode/gherkin/index.html +48 -0
- data/public/codemirror/mode/go/go.js +185 -0
- data/public/codemirror/mode/go/index.html +85 -0
- data/public/codemirror/mode/groovy/groovy.js +230 -0
- data/public/codemirror/mode/groovy/index.html +84 -0
- data/public/codemirror/mode/haml/haml.js +159 -0
- data/public/codemirror/mode/haml/index.html +79 -0
- data/public/codemirror/mode/haml/test.js +97 -0
- data/public/codemirror/mode/handlebars/handlebars.js +53 -0
- data/public/codemirror/mode/handlebars/index.html +83 -0
- data/public/codemirror/mode/haskell/haskell.js +267 -0
- data/public/codemirror/mode/haskell/index.html +73 -0
- data/public/codemirror/mode/haxe/haxe.js +518 -0
- data/public/codemirror/mode/haxe/index.html +124 -0
- data/public/codemirror/mode/htmlembedded/htmlembedded.js +28 -0
- data/public/codemirror/mode/htmlembedded/index.html +59 -0
- data/public/codemirror/mode/htmlmixed/htmlmixed.js +121 -0
- data/public/codemirror/mode/htmlmixed/index.html +89 -0
- data/public/codemirror/mode/http/http.js +113 -0
- data/public/codemirror/mode/http/index.html +45 -0
- data/public/codemirror/mode/idl/idl.js +290 -0
- data/public/codemirror/mode/idl/index.html +64 -0
- data/public/codemirror/mode/index.html +149 -0
- data/public/codemirror/mode/jade/index.html +70 -0
- data/public/codemirror/mode/jade/jade.js +590 -0
- data/public/codemirror/mode/javascript/index.html +114 -0
- data/public/codemirror/mode/javascript/javascript.js +704 -0
- data/public/codemirror/mode/javascript/json-ld.html +72 -0
- data/public/codemirror/mode/javascript/test.js +205 -0
- data/public/codemirror/mode/javascript/typescript.html +61 -0
- data/public/codemirror/mode/jinja2/index.html +54 -0
- data/public/codemirror/mode/jinja2/jinja2.js +142 -0
- data/public/codemirror/mode/julia/index.html +195 -0
- data/public/codemirror/mode/julia/julia.js +299 -0
- data/public/codemirror/mode/kotlin/index.html +89 -0
- data/public/codemirror/mode/kotlin/kotlin.js +284 -0
- data/public/codemirror/mode/livescript/index.html +459 -0
- data/public/codemirror/mode/livescript/livescript.js +280 -0
- data/public/codemirror/mode/lua/index.html +85 -0
- data/public/codemirror/mode/lua/lua.js +159 -0
- data/public/codemirror/mode/markdown/index.html +359 -0
- data/public/codemirror/mode/markdown/markdown.js +781 -0
- data/public/codemirror/mode/markdown/test.js +792 -0
- data/public/codemirror/mode/mathematica/index.html +72 -0
- data/public/codemirror/mode/mathematica/mathematica.js +175 -0
- data/public/codemirror/mode/meta.js +190 -0
- data/public/codemirror/mode/mirc/index.html +160 -0
- data/public/codemirror/mode/mirc/mirc.js +193 -0
- data/public/codemirror/mode/mllike/index.html +179 -0
- data/public/codemirror/mode/mllike/mllike.js +205 -0
- data/public/codemirror/mode/modelica/index.html +67 -0
- data/public/codemirror/mode/modelica/modelica.js +245 -0
- data/public/codemirror/mode/mumps/index.html +85 -0
- data/public/codemirror/mode/mumps/mumps.js +148 -0
- data/public/codemirror/mode/nginx/index.html +181 -0
- data/public/codemirror/mode/nginx/nginx.js +178 -0
- data/public/codemirror/mode/ntriples/index.html +45 -0
- data/public/codemirror/mode/ntriples/ntriples.js +186 -0
- data/public/codemirror/mode/octave/index.html +83 -0
- data/public/codemirror/mode/octave/octave.js +135 -0
- data/public/codemirror/mode/pascal/index.html +61 -0
- data/public/codemirror/mode/pascal/pascal.js +109 -0
- data/public/codemirror/mode/pegjs/index.html +66 -0
- data/public/codemirror/mode/pegjs/pegjs.js +114 -0
- data/public/codemirror/mode/perl/index.html +75 -0
- data/public/codemirror/mode/perl/perl.js +837 -0
- data/public/codemirror/mode/php/index.html +64 -0
- data/public/codemirror/mode/php/php.js +230 -0
- data/public/codemirror/mode/php/test.js +154 -0
- data/public/codemirror/mode/pig/index.html +55 -0
- data/public/codemirror/mode/pig/pig.js +178 -0
- data/public/codemirror/mode/properties/index.html +53 -0
- data/public/codemirror/mode/properties/properties.js +78 -0
- data/public/codemirror/mode/puppet/index.html +121 -0
- data/public/codemirror/mode/puppet/puppet.js +220 -0
- data/public/codemirror/mode/python/index.html +198 -0
- data/public/codemirror/mode/python/python.js +358 -0
- data/public/codemirror/mode/q/index.html +144 -0
- data/public/codemirror/mode/q/q.js +139 -0
- data/public/codemirror/mode/r/index.html +85 -0
- data/public/codemirror/mode/r/r.js +162 -0
- data/public/codemirror/mode/rpm/changes/index.html +66 -0
- data/public/codemirror/mode/rpm/index.html +149 -0
- data/public/codemirror/mode/rpm/rpm.js +101 -0
- data/public/codemirror/mode/rst/index.html +535 -0
- data/public/codemirror/mode/rst/rst.js +557 -0
- data/public/codemirror/mode/ruby/index.html +183 -0
- data/public/codemirror/mode/ruby/ruby.js +285 -0
- data/public/codemirror/mode/ruby/test.js +14 -0
- data/public/codemirror/mode/rust/index.html +60 -0
- data/public/codemirror/mode/rust/rust.js +451 -0
- data/public/codemirror/mode/sass/index.html +66 -0
- data/public/codemirror/mode/sass/sass.js +414 -0
- data/public/codemirror/mode/scheme/index.html +77 -0
- data/public/codemirror/mode/scheme/scheme.js +249 -0
- data/public/codemirror/mode/shell/index.html +66 -0
- data/public/codemirror/mode/shell/shell.js +139 -0
- data/public/codemirror/mode/shell/test.js +58 -0
- data/public/codemirror/mode/sieve/index.html +93 -0
- data/public/codemirror/mode/sieve/sieve.js +193 -0
- data/public/codemirror/mode/slim/index.html +96 -0
- data/public/codemirror/mode/slim/slim.js +575 -0
- data/public/codemirror/mode/slim/test.js +96 -0
- data/public/codemirror/mode/smalltalk/index.html +68 -0
- data/public/codemirror/mode/smalltalk/smalltalk.js +168 -0
- data/public/codemirror/mode/smarty/index.html +138 -0
- data/public/codemirror/mode/smarty/smarty.js +225 -0
- data/public/codemirror/mode/solr/index.html +57 -0
- data/public/codemirror/mode/solr/solr.js +104 -0
- data/public/codemirror/mode/soy/index.html +68 -0
- data/public/codemirror/mode/soy/soy.js +198 -0
- data/public/codemirror/mode/sparql/index.html +61 -0
- data/public/codemirror/mode/sparql/sparql.js +174 -0
- data/public/codemirror/mode/spreadsheet/index.html +42 -0
- data/public/codemirror/mode/spreadsheet/spreadsheet.js +109 -0
- data/public/codemirror/mode/sql/index.html +84 -0
- data/public/codemirror/mode/sql/sql.js +391 -0
- data/public/codemirror/mode/stex/index.html +110 -0
- data/public/codemirror/mode/stex/stex.js +251 -0
- data/public/codemirror/mode/stex/test.js +123 -0
- data/public/codemirror/mode/stylus/index.html +106 -0
- data/public/codemirror/mode/stylus/stylus.js +768 -0
- data/public/codemirror/mode/swift/index.html +88 -0
- data/public/codemirror/mode/swift/swift.js +203 -0
- data/public/codemirror/mode/tcl/index.html +142 -0
- data/public/codemirror/mode/tcl/tcl.js +147 -0
- data/public/codemirror/mode/textile/index.html +191 -0
- data/public/codemirror/mode/textile/test.js +417 -0
- data/public/codemirror/mode/textile/textile.js +469 -0
- data/public/codemirror/mode/tiddlywiki/index.html +154 -0
- data/public/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
- data/public/codemirror/mode/tiddlywiki/tiddlywiki.js +358 -0
- data/public/codemirror/mode/tiki/index.html +95 -0
- data/public/codemirror/mode/tiki/tiki.css +26 -0
- data/public/codemirror/mode/tiki/tiki.js +312 -0
- data/public/codemirror/mode/toml/index.html +73 -0
- data/public/codemirror/mode/toml/toml.js +88 -0
- data/public/codemirror/mode/tornado/index.html +63 -0
- data/public/codemirror/mode/tornado/tornado.js +68 -0
- data/public/codemirror/mode/troff/index.html +146 -0
- data/public/codemirror/mode/troff/troff.js +82 -0
- data/public/codemirror/mode/ttcn-cfg/index.html +115 -0
- data/public/codemirror/mode/ttcn-cfg/ttcn-cfg.js +214 -0
- data/public/codemirror/mode/ttcn/index.html +118 -0
- data/public/codemirror/mode/ttcn/ttcn.js +283 -0
- data/public/codemirror/mode/turtle/index.html +50 -0
- data/public/codemirror/mode/turtle/turtle.js +162 -0
- data/public/codemirror/mode/twig/index.html +45 -0
- data/public/codemirror/mode/twig/twig.js +132 -0
- data/public/codemirror/mode/vb/index.html +102 -0
- data/public/codemirror/mode/vb/vb.js +276 -0
- data/public/codemirror/mode/vbscript/index.html +55 -0
- data/public/codemirror/mode/vbscript/vbscript.js +350 -0
- data/public/codemirror/mode/velocity/index.html +118 -0
- data/public/codemirror/mode/velocity/velocity.js +201 -0
- data/public/codemirror/mode/verilog/index.html +120 -0
- data/public/codemirror/mode/verilog/test.js +273 -0
- data/public/codemirror/mode/verilog/verilog.js +537 -0
- data/public/codemirror/mode/vhdl/index.html +95 -0
- data/public/codemirror/mode/vhdl/vhdl.js +189 -0
- data/public/codemirror/mode/xml/index.html +57 -0
- data/public/codemirror/mode/xml/test.js +51 -0
- data/public/codemirror/mode/xml/xml.js +385 -0
- data/public/codemirror/mode/xquery/index.html +210 -0
- data/public/codemirror/mode/xquery/test.js +67 -0
- data/public/codemirror/mode/xquery/xquery.js +437 -0
- data/public/codemirror/mode/yaml/index.html +80 -0
- data/public/codemirror/mode/yaml/yaml.js +117 -0
- data/public/codemirror/mode/z80/index.html +53 -0
- data/public/codemirror/mode/z80/z80.js +116 -0
- data/public/codemirror/package.json +20 -0
- data/public/codemirror/test/comment_test.js +100 -0
- data/public/codemirror/test/doc_test.js +371 -0
- data/public/codemirror/test/driver.js +138 -0
- data/public/codemirror/test/emacs_test.js +147 -0
- data/public/codemirror/test/index.html +241 -0
- data/public/codemirror/test/lint.js +11 -0
- data/public/codemirror/test/mode_test.css +23 -0
- data/public/codemirror/test/mode_test.js +192 -0
- data/public/codemirror/test/multi_test.js +285 -0
- data/public/codemirror/test/phantom_driver.js +31 -0
- data/public/codemirror/test/run.js +31 -0
- data/public/codemirror/test/scroll_test.js +115 -0
- data/public/codemirror/test/search_test.js +62 -0
- data/public/codemirror/test/sql-hint-test.js +189 -0
- data/public/codemirror/test/sublime_test.js +303 -0
- data/public/codemirror/test/test.js +2142 -0
- data/public/codemirror/test/vim_test.js +3955 -0
- data/public/codemirror/theme/3024-day.css +41 -0
- data/public/codemirror/theme/3024-night.css +39 -0
- data/public/codemirror/theme/ambiance-mobile.css +5 -0
- data/public/codemirror/theme/ambiance.css +76 -0
- data/public/codemirror/theme/base16-dark.css +38 -0
- data/public/codemirror/theme/base16-light.css +38 -0
- data/public/codemirror/theme/blackboard.css +32 -0
- data/public/codemirror/theme/cobalt.css +25 -0
- data/public/codemirror/theme/colorforth.css +33 -0
- data/public/codemirror/theme/dracula.css +87 -0
- data/public/codemirror/theme/eclipse.css +23 -0
- data/public/codemirror/theme/elegant.css +13 -0
- data/public/codemirror/theme/erlang-dark.css +34 -0
- data/public/codemirror/theme/icecoder.css +42 -0
- data/public/codemirror/theme/lesser-dark.css +47 -0
- data/public/codemirror/theme/lines.css +109 -0
- data/public/codemirror/theme/liquibyte.css +95 -0
- data/public/codemirror/theme/material.css +105 -0
- data/public/codemirror/theme/mbo.css +37 -0
- data/public/codemirror/theme/mdn-like.css +46 -0
- data/public/codemirror/theme/midnight.css +47 -0
- data/public/codemirror/theme/monokai.css +35 -0
- data/public/codemirror/theme/neat.css +12 -0
- data/public/codemirror/theme/neo.css +43 -0
- data/public/codemirror/theme/night.css +28 -0
- data/public/codemirror/theme/paraiso-dark.css +38 -0
- data/public/codemirror/theme/paraiso-light.css +38 -0
- data/public/codemirror/theme/pastel-on-dark.css +53 -0
- data/public/codemirror/theme/rubyblue.css +25 -0
- data/public/codemirror/theme/seti.css +88 -0
- data/public/codemirror/theme/solarized.css +165 -0
- data/public/codemirror/theme/the-matrix.css +30 -0
- data/public/codemirror/theme/tomorrow-night-bright.css +35 -0
- data/public/codemirror/theme/tomorrow-night-eighties.css +38 -0
- data/public/codemirror/theme/ttcn.css +65 -0
- data/public/codemirror/theme/twilight.css +32 -0
- data/public/codemirror/theme/vibrant-ink.css +34 -0
- data/public/codemirror/theme/xq-dark.css +53 -0
- data/public/codemirror/theme/xq-light.css +43 -0
- data/public/codemirror/theme/yeti.css +86 -0
- data/public/codemirror/theme/zenburn.css +37 -0
- data/public/fira-mono/FiraMono-Bold.eot +0 -0
- data/public/fira-mono/FiraMono-Bold.otf +0 -0
- data/public/fira-mono/FiraMono-Bold.ttf +0 -0
- data/public/fira-mono/FiraMono-Bold.woff +0 -0
- data/public/fira-mono/FiraMono-Medium.eot +0 -0
- data/public/fira-mono/FiraMono-Medium.otf +0 -0
- data/public/fira-mono/FiraMono-Medium.ttf +0 -0
- data/public/fira-mono/FiraMono-Medium.woff +0 -0
- data/public/fira-mono/FiraMono-Regular.eot +0 -0
- data/public/fira-mono/FiraMono-Regular.otf +0 -0
- data/public/fira-mono/FiraMono-Regular.ttf +0 -0
- data/public/fira-mono/FiraMono-Regular.woff +0 -0
- data/public/fira-mono/fira-mono.css +32 -0
- data/public/heroes/lines_default_01.png +0 -0
- data/public/heroes/lines_default_02.png +0 -0
- data/public/heroes/lines_default_03.png +0 -0
- data/public/iconfont/iconfont.css +48 -0
- data/public/iconfont/iconfont.eot +0 -0
- data/public/iconfont/iconfont.svg +18 -0
- data/public/iconfont/iconfont.ttf +0 -0
- data/public/iconfont/iconfont.woff +0 -0
- data/spec/dummy/config/environments/test.rb +3 -1
- data/spec/dummy/db/migrate/20140505122014_base_migration.rb +84 -0
- data/spec/dummy/db/migrate/20140702160602_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb +31 -0
- data/spec/dummy/db/migrate/20140702160603_add_missing_unique_indices.acts_as_taggable_on_engine.rb +20 -0
- data/spec/dummy/db/migrate/20140702160604_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +15 -0
- data/spec/dummy/db/migrate/20141027143656_add_teaser_to_article.rb +5 -0
- data/spec/dummy/db/migrate/20150421093311_add_reset_password_fields_to_users.rb +6 -0
- data/spec/dummy/db/schema.rb +50 -50
- data/spec/dummy/db/seeds.rb +5 -5
- data/spec/factories/users.rb +1 -1
- data/spec/features/article_spec.rb +4 -4
- data/spec/features/password_reset_spec.rb +17 -17
- data/spec/features/user_logs_in_spec.rb +6 -8
- data/spec/mailers/lines/user_mailer_spec.rb +1 -1
- data/spec/models/article_spec.rb +6 -6
- data/spec/support/auth_macros.rb +2 -2
- metadata +492 -26
- metadata.gz.sig +0 -0
- data/app/assets/images/ic_gplus.png +0 -0
- data/app/assets/images/ic_gplus_hover.png +0 -0
- data/app/assets/images/logo.png +0 -0
- data/app/assets/images/logo_opoloo.png +0 -0
- data/app/assets/images/signet.png +0 -0
- data/app/assets/javascripts/lines/admin.js +0 -201
- data/app/assets/stylesheets/lines/admin.scss +0 -970
- data/app/views/layouts/lines/_messages.html.erb +0 -8
- data/app/views/lines/admin/articles/_formatting_guide.html.erb +0 -89
- data/public/heroes/001.jpg +0 -0
- data/public/heroes/001_dark.jpg +0 -0
- data/public/heroes/002.jpg +0 -0
- data/public/heroes/002_dark.jpg +0 -0
- data/public/heroes/003.jpg +0 -0
- data/public/heroes/003_dark.jpg +0 -0
- data/spec/dummy/config/lines_config.yml +0 -58
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
|
|
3
|
+
<title>CodeMirror: Mathematica mode</title>
|
|
4
|
+
<meta charset="utf-8"/>
|
|
5
|
+
<link rel=stylesheet href="../../doc/docs.css">
|
|
6
|
+
|
|
7
|
+
<link rel=stylesheet href=../../lib/codemirror.css>
|
|
8
|
+
<script src=../../lib/codemirror.js></script>
|
|
9
|
+
<script src=../../addon/edit/matchbrackets.js></script>
|
|
10
|
+
<script src=mathematica.js></script>
|
|
11
|
+
<style type=text/css>
|
|
12
|
+
.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}
|
|
13
|
+
</style>
|
|
14
|
+
<div id=nav>
|
|
15
|
+
<a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
|
|
16
|
+
|
|
17
|
+
<ul>
|
|
18
|
+
<li><a href="../../index.html">Home</a>
|
|
19
|
+
<li><a href="../../doc/manual.html">Manual</a>
|
|
20
|
+
<li><a href="https://github.com/codemirror/codemirror">Code</a>
|
|
21
|
+
</ul>
|
|
22
|
+
<ul>
|
|
23
|
+
<li><a href="../index.html">Language modes</a>
|
|
24
|
+
<li><a class=active href="#">Mathematica</a>
|
|
25
|
+
</ul>
|
|
26
|
+
</div>
|
|
27
|
+
|
|
28
|
+
<article>
|
|
29
|
+
<h2>Mathematica mode</h2>
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
<textarea id="mathematicaCode">
|
|
33
|
+
(* example Mathematica code *)
|
|
34
|
+
(* Dualisiert wird anhand einer Polarität an einer
|
|
35
|
+
Quadrik $x^t Q x = 0$ mit regulärer Matrix $Q$ (also
|
|
36
|
+
mit $det(Q) \neq 0$), z.B. die Identitätsmatrix.
|
|
37
|
+
$p$ ist eine Liste von Polynomen - ein Ideal. *)
|
|
38
|
+
dualize::"singular" = "Q must be regular: found Det[Q]==0.";
|
|
39
|
+
dualize[ Q_, p_ ] := Block[
|
|
40
|
+
{ m, n, xv, lv, uv, vars, polys, dual },
|
|
41
|
+
If[Det[Q] == 0,
|
|
42
|
+
Message[dualize::"singular"],
|
|
43
|
+
m = Length[p];
|
|
44
|
+
n = Length[Q] - 1;
|
|
45
|
+
xv = Table[Subscript[x, i], {i, 0, n}];
|
|
46
|
+
lv = Table[Subscript[l, i], {i, 1, m}];
|
|
47
|
+
uv = Table[Subscript[u, i], {i, 0, n}];
|
|
48
|
+
(* Konstruiere Ideal polys. *)
|
|
49
|
+
If[m == 0,
|
|
50
|
+
polys = Q.uv,
|
|
51
|
+
polys = Join[p, Q.uv - Transpose[Outer[D, p, xv]].lv]
|
|
52
|
+
];
|
|
53
|
+
(* Eliminiere die ersten n + 1 + m Variablen xv und lv
|
|
54
|
+
aus dem Ideal polys. *)
|
|
55
|
+
vars = Join[xv, lv];
|
|
56
|
+
dual = GroebnerBasis[polys, uv, vars];
|
|
57
|
+
(* Ersetze u mit x im Ergebnis. *)
|
|
58
|
+
ReplaceAll[dual, Rule[u, x]]
|
|
59
|
+
]
|
|
60
|
+
]
|
|
61
|
+
</textarea>
|
|
62
|
+
|
|
63
|
+
<script>
|
|
64
|
+
var mathematicaEditor = CodeMirror.fromTextArea(document.getElementById('mathematicaCode'), {
|
|
65
|
+
mode: 'text/x-mathematica',
|
|
66
|
+
lineNumbers: true,
|
|
67
|
+
matchBrackets: true
|
|
68
|
+
});
|
|
69
|
+
</script>
|
|
70
|
+
|
|
71
|
+
<p><strong>MIME types defined:</strong> <code>text/x-mathematica</code> (Mathematica).</p>
|
|
72
|
+
</article>
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
|
3
|
+
|
|
4
|
+
// Mathematica mode copyright (c) 2015 by Calin Barbat
|
|
5
|
+
// Based on code by Patrick Scheibe (halirutan)
|
|
6
|
+
// See: https://github.com/halirutan/Mathematica-Source-Highlighting/tree/master/src/lang-mma.js
|
|
7
|
+
|
|
8
|
+
(function(mod) {
|
|
9
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
|
10
|
+
mod(require("../../lib/codemirror"));
|
|
11
|
+
else if (typeof define == "function" && define.amd) // AMD
|
|
12
|
+
define(["../../lib/codemirror"], mod);
|
|
13
|
+
else // Plain browser env
|
|
14
|
+
mod(CodeMirror);
|
|
15
|
+
})(function(CodeMirror) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
CodeMirror.defineMode('mathematica', function(_config, _parserConfig) {
|
|
19
|
+
|
|
20
|
+
// used pattern building blocks
|
|
21
|
+
var Identifier = '[a-zA-Z\\$][a-zA-Z0-9\\$]*';
|
|
22
|
+
var pBase = "(?:\\d+)";
|
|
23
|
+
var pFloat = "(?:\\.\\d+|\\d+\\.\\d*|\\d+)";
|
|
24
|
+
var pFloatBase = "(?:\\.\\w+|\\w+\\.\\w*|\\w+)";
|
|
25
|
+
var pPrecision = "(?:`(?:`?"+pFloat+")?)";
|
|
26
|
+
|
|
27
|
+
// regular expressions
|
|
28
|
+
var reBaseForm = new RegExp('(?:'+pBase+'(?:\\^\\^'+pFloatBase+pPrecision+'?(?:\\*\\^[+-]?\\d+)?))');
|
|
29
|
+
var reFloatForm = new RegExp('(?:' + pFloat + pPrecision + '?(?:\\*\\^[+-]?\\d+)?)');
|
|
30
|
+
var reIdInContext = new RegExp('(?:`?)(?:' + Identifier + ')(?:`(?:' + Identifier + '))*(?:`?)');
|
|
31
|
+
|
|
32
|
+
function tokenBase(stream, state) {
|
|
33
|
+
var ch;
|
|
34
|
+
|
|
35
|
+
// get next character
|
|
36
|
+
ch = stream.next();
|
|
37
|
+
|
|
38
|
+
// string
|
|
39
|
+
if (ch === '"') {
|
|
40
|
+
state.tokenize = tokenString;
|
|
41
|
+
return state.tokenize(stream, state);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// comment
|
|
45
|
+
if (ch === '(') {
|
|
46
|
+
if (stream.eat('*')) {
|
|
47
|
+
state.commentLevel++;
|
|
48
|
+
state.tokenize = tokenComment;
|
|
49
|
+
return state.tokenize(stream, state);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// go back one character
|
|
54
|
+
stream.backUp(1);
|
|
55
|
+
|
|
56
|
+
// look for numbers
|
|
57
|
+
// Numbers in a baseform
|
|
58
|
+
if (stream.match(reBaseForm, true, false)) {
|
|
59
|
+
return 'number';
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
// Mathematica numbers. Floats (1.2, .2, 1.) can have optionally a precision (`float) or an accuracy definition
|
|
63
|
+
// (``float). Note: while 1.2` is possible 1.2`` is not. At the end an exponent (float*^+12) can follow.
|
|
64
|
+
if (stream.match(reFloatForm, true, false)) {
|
|
65
|
+
return 'number';
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
/* In[23] and Out[34] */
|
|
69
|
+
if (stream.match(/(?:In|Out)\[[0-9]*\]/, true, false)) {
|
|
70
|
+
return 'atom';
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
// usage
|
|
74
|
+
if (stream.match(/([a-zA-Z\$]+(?:`?[a-zA-Z0-9\$])*::usage)/, true, false)) {
|
|
75
|
+
return 'meta';
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
// message
|
|
79
|
+
if (stream.match(/([a-zA-Z\$]+(?:`?[a-zA-Z0-9\$])*::[a-zA-Z\$][a-zA-Z0-9\$]*):?/, true, false)) {
|
|
80
|
+
return 'string-2';
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// this makes a look-ahead match for something like variable:{_Integer}
|
|
84
|
+
// the match is then forwarded to the mma-patterns tokenizer.
|
|
85
|
+
if (stream.match(/([a-zA-Z\$][a-zA-Z0-9\$]*\s*:)(?:(?:[a-zA-Z\$][a-zA-Z0-9\$]*)|(?:[^:=>~@\^\&\*\)\[\]'\?,\|])).*/, true, false)) {
|
|
86
|
+
return 'variable-2';
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
// catch variables which are used together with Blank (_), BlankSequence (__) or BlankNullSequence (___)
|
|
90
|
+
// Cannot start with a number, but can have numbers at any other position. Examples
|
|
91
|
+
// blub__Integer, a1_, b34_Integer32
|
|
92
|
+
if (stream.match(/[a-zA-Z\$][a-zA-Z0-9\$]*_+[a-zA-Z\$][a-zA-Z0-9\$]*/, true, false)) {
|
|
93
|
+
return 'variable-2';
|
|
94
|
+
}
|
|
95
|
+
if (stream.match(/[a-zA-Z\$][a-zA-Z0-9\$]*_+/, true, false)) {
|
|
96
|
+
return 'variable-2';
|
|
97
|
+
}
|
|
98
|
+
if (stream.match(/_+[a-zA-Z\$][a-zA-Z0-9\$]*/, true, false)) {
|
|
99
|
+
return 'variable-2';
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
// Named characters in Mathematica, like \[Gamma].
|
|
103
|
+
if (stream.match(/\\\[[a-zA-Z\$][a-zA-Z0-9\$]*\]/, true, false)) {
|
|
104
|
+
return 'variable-3';
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
// Match all braces separately
|
|
108
|
+
if (stream.match(/(?:\[|\]|{|}|\(|\))/, true, false)) {
|
|
109
|
+
return 'bracket';
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
// Catch Slots (#, ##, #3, ##9 and the V10 named slots #name). I have never seen someone using more than one digit after #, so we match
|
|
113
|
+
// only one.
|
|
114
|
+
if (stream.match(/(?:#[a-zA-Z\$][a-zA-Z0-9\$]*|#+[0-9]?)/, true, false)) {
|
|
115
|
+
return 'variable-2';
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
// Literals like variables, keywords, functions
|
|
119
|
+
if (stream.match(reIdInContext, true, false)) {
|
|
120
|
+
return 'keyword';
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
// operators. Note that operators like @@ or /; are matched separately for each symbol.
|
|
124
|
+
if (stream.match(/(?:\\|\+|\-|\*|\/|,|;|\.|:|@|~|=|>|<|&|\||_|`|'|\^|\?|!|%)/, true, false)) {
|
|
125
|
+
return 'operator';
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
// everything else is an error
|
|
129
|
+
return 'error';
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
function tokenString(stream, state) {
|
|
133
|
+
var next, end = false, escaped = false;
|
|
134
|
+
while ((next = stream.next()) != null) {
|
|
135
|
+
if (next === '"' && !escaped) {
|
|
136
|
+
end = true;
|
|
137
|
+
break;
|
|
138
|
+
}
|
|
139
|
+
escaped = !escaped && next === '\\';
|
|
140
|
+
}
|
|
141
|
+
if (end && !escaped) {
|
|
142
|
+
state.tokenize = tokenBase;
|
|
143
|
+
}
|
|
144
|
+
return 'string';
|
|
145
|
+
};
|
|
146
|
+
|
|
147
|
+
function tokenComment(stream, state) {
|
|
148
|
+
var prev, next;
|
|
149
|
+
while(state.commentLevel > 0 && (next = stream.next()) != null) {
|
|
150
|
+
if (prev === '(' && next === '*') state.commentLevel++;
|
|
151
|
+
if (prev === '*' && next === ')') state.commentLevel--;
|
|
152
|
+
prev = next;
|
|
153
|
+
}
|
|
154
|
+
if (state.commentLevel <= 0) {
|
|
155
|
+
state.tokenize = tokenBase;
|
|
156
|
+
}
|
|
157
|
+
return 'comment';
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
return {
|
|
161
|
+
startState: function() {return {tokenize: tokenBase, commentLevel: 0};},
|
|
162
|
+
token: function(stream, state) {
|
|
163
|
+
if (stream.eatSpace()) return null;
|
|
164
|
+
return state.tokenize(stream, state);
|
|
165
|
+
},
|
|
166
|
+
blockCommentStart: "(*",
|
|
167
|
+
blockCommentEnd: "*)"
|
|
168
|
+
};
|
|
169
|
+
});
|
|
170
|
+
|
|
171
|
+
CodeMirror.defineMIME('text/x-mathematica', {
|
|
172
|
+
name: 'mathematica'
|
|
173
|
+
});
|
|
174
|
+
|
|
175
|
+
});
|
|
@@ -0,0 +1,190 @@
|
|
|
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.modeInfo = [
|
|
15
|
+
{name: "APL", mime: "text/apl", mode: "apl", ext: ["dyalog", "apl"]},
|
|
16
|
+
{name: "PGP", mimes: ["application/pgp", "application/pgp-keys", "application/pgp-signature"], mode: "asciiarmor", ext: ["pgp"]},
|
|
17
|
+
{name: "ASN.1", mime: "text/x-ttcn-asn", mode: "asn.1", ext: ["asn", "asn1"]},
|
|
18
|
+
{name: "Asterisk", mime: "text/x-asterisk", mode: "asterisk", file: /^extensions\.conf$/i},
|
|
19
|
+
{name: "Brainfuck", mime: "text/x-brainfuck", mode: "brainfuck", ext: ["b", "bf"]},
|
|
20
|
+
{name: "C", mime: "text/x-csrc", mode: "clike", ext: ["c", "h"]},
|
|
21
|
+
{name: "C++", mime: "text/x-c++src", mode: "clike", ext: ["cpp", "c++", "cc", "cxx", "hpp", "h++", "hh", "hxx"], alias: ["cpp"]},
|
|
22
|
+
{name: "Cobol", mime: "text/x-cobol", mode: "cobol", ext: ["cob", "cpy"]},
|
|
23
|
+
{name: "C#", mime: "text/x-csharp", mode: "clike", ext: ["cs"], alias: ["csharp"]},
|
|
24
|
+
{name: "Clojure", mime: "text/x-clojure", mode: "clojure", ext: ["clj"]},
|
|
25
|
+
{name: "CMake", mime: "text/x-cmake", mode: "cmake", ext: ["cmake", "cmake.in"], file: /^CMakeLists.txt$/},
|
|
26
|
+
{name: "CoffeeScript", mime: "text/x-coffeescript", mode: "coffeescript", ext: ["coffee"], alias: ["coffee", "coffee-script"]},
|
|
27
|
+
{name: "Common Lisp", mime: "text/x-common-lisp", mode: "commonlisp", ext: ["cl", "lisp", "el"], alias: ["lisp"]},
|
|
28
|
+
{name: "Cypher", mime: "application/x-cypher-query", mode: "cypher", ext: ["cyp", "cypher"]},
|
|
29
|
+
{name: "Cython", mime: "text/x-cython", mode: "python", ext: ["pyx", "pxd", "pxi"]},
|
|
30
|
+
{name: "CSS", mime: "text/css", mode: "css", ext: ["css"]},
|
|
31
|
+
{name: "CQL", mime: "text/x-cassandra", mode: "sql", ext: ["cql"]},
|
|
32
|
+
{name: "D", mime: "text/x-d", mode: "d", ext: ["d"]},
|
|
33
|
+
{name: "Dart", mimes: ["application/dart", "text/x-dart"], mode: "dart", ext: ["dart"]},
|
|
34
|
+
{name: "diff", mime: "text/x-diff", mode: "diff", ext: ["diff", "patch"]},
|
|
35
|
+
{name: "Django", mime: "text/x-django", mode: "django"},
|
|
36
|
+
{name: "Dockerfile", mime: "text/x-dockerfile", mode: "dockerfile", file: /^Dockerfile$/},
|
|
37
|
+
{name: "DTD", mime: "application/xml-dtd", mode: "dtd", ext: ["dtd"]},
|
|
38
|
+
{name: "Dylan", mime: "text/x-dylan", mode: "dylan", ext: ["dylan", "dyl", "intr"]},
|
|
39
|
+
{name: "EBNF", mime: "text/x-ebnf", mode: "ebnf"},
|
|
40
|
+
{name: "ECL", mime: "text/x-ecl", mode: "ecl", ext: ["ecl"]},
|
|
41
|
+
{name: "Eiffel", mime: "text/x-eiffel", mode: "eiffel", ext: ["e"]},
|
|
42
|
+
{name: "Elm", mime: "text/x-elm", mode: "elm", ext: ["elm"]},
|
|
43
|
+
{name: "Embedded Javascript", mime: "application/x-ejs", mode: "htmlembedded", ext: ["ejs"]},
|
|
44
|
+
{name: "Embedded Ruby", mime: "application/x-erb", mode: "htmlembedded", ext: ["erb"]},
|
|
45
|
+
{name: "Erlang", mime: "text/x-erlang", mode: "erlang", ext: ["erl"]},
|
|
46
|
+
{name: "Factor", mime: "text/x-factor", mode: "factor", ext: ["factor"]},
|
|
47
|
+
{name: "Forth", mime: "text/x-forth", mode: "forth", ext: ["forth", "fth", "4th"]},
|
|
48
|
+
{name: "Fortran", mime: "text/x-fortran", mode: "fortran", ext: ["f", "for", "f77", "f90"]},
|
|
49
|
+
{name: "F#", mime: "text/x-fsharp", mode: "mllike", ext: ["fs"], alias: ["fsharp"]},
|
|
50
|
+
{name: "Gas", mime: "text/x-gas", mode: "gas", ext: ["s"]},
|
|
51
|
+
{name: "Gherkin", mime: "text/x-feature", mode: "gherkin", ext: ["feature"]},
|
|
52
|
+
{name: "GitHub Flavored Markdown", mime: "text/x-gfm", mode: "gfm", file: /^(readme|contributing|history).md$/i},
|
|
53
|
+
{name: "Go", mime: "text/x-go", mode: "go", ext: ["go"]},
|
|
54
|
+
{name: "Groovy", mime: "text/x-groovy", mode: "groovy", ext: ["groovy"]},
|
|
55
|
+
{name: "HAML", mime: "text/x-haml", mode: "haml", ext: ["haml"]},
|
|
56
|
+
{name: "Haskell", mime: "text/x-haskell", mode: "haskell", ext: ["hs"]},
|
|
57
|
+
{name: "Haxe", mime: "text/x-haxe", mode: "haxe", ext: ["hx"]},
|
|
58
|
+
{name: "HXML", mime: "text/x-hxml", mode: "haxe", ext: ["hxml"]},
|
|
59
|
+
{name: "ASP.NET", mime: "application/x-aspx", mode: "htmlembedded", ext: ["aspx"], alias: ["asp", "aspx"]},
|
|
60
|
+
{name: "HTML", mime: "text/html", mode: "htmlmixed", ext: ["html", "htm"], alias: ["xhtml"]},
|
|
61
|
+
{name: "HTTP", mime: "message/http", mode: "http"},
|
|
62
|
+
{name: "IDL", mime: "text/x-idl", mode: "idl", ext: ["pro"]},
|
|
63
|
+
{name: "Jade", mime: "text/x-jade", mode: "jade", ext: ["jade"]},
|
|
64
|
+
{name: "Java", mime: "text/x-java", mode: "clike", ext: ["java"]},
|
|
65
|
+
{name: "Java Server Pages", mime: "application/x-jsp", mode: "htmlembedded", ext: ["jsp"], alias: ["jsp"]},
|
|
66
|
+
{name: "JavaScript", mimes: ["text/javascript", "text/ecmascript", "application/javascript", "application/x-javascript", "application/ecmascript"],
|
|
67
|
+
mode: "javascript", ext: ["js"], alias: ["ecmascript", "js", "node"]},
|
|
68
|
+
{name: "JSON", mimes: ["application/json", "application/x-json"], mode: "javascript", ext: ["json", "map"], alias: ["json5"]},
|
|
69
|
+
{name: "JSON-LD", mime: "application/ld+json", mode: "javascript", ext: ["jsonld"], alias: ["jsonld"]},
|
|
70
|
+
{name: "Jinja2", mime: "null", mode: "jinja2"},
|
|
71
|
+
{name: "Julia", mime: "text/x-julia", mode: "julia", ext: ["jl"]},
|
|
72
|
+
{name: "Kotlin", mime: "text/x-kotlin", mode: "kotlin", ext: ["kt"]},
|
|
73
|
+
{name: "LESS", mime: "text/x-less", mode: "css", ext: ["less"]},
|
|
74
|
+
{name: "LiveScript", mime: "text/x-livescript", mode: "livescript", ext: ["ls"], alias: ["ls"]},
|
|
75
|
+
{name: "Lua", mime: "text/x-lua", mode: "lua", ext: ["lua"]},
|
|
76
|
+
{name: "Markdown", mime: "text/x-markdown", mode: "markdown", ext: ["markdown", "md", "mkd"]},
|
|
77
|
+
{name: "mIRC", mime: "text/mirc", mode: "mirc"},
|
|
78
|
+
{name: "MariaDB SQL", mime: "text/x-mariadb", mode: "sql"},
|
|
79
|
+
{name: "Mathematica", mime: "text/x-mathematica", mode: "mathematica", ext: ["m", "nb"]},
|
|
80
|
+
{name: "Modelica", mime: "text/x-modelica", mode: "modelica", ext: ["mo"]},
|
|
81
|
+
{name: "MUMPS", mime: "text/x-mumps", mode: "mumps"},
|
|
82
|
+
{name: "MS SQL", mime: "text/x-mssql", mode: "sql"},
|
|
83
|
+
{name: "MySQL", mime: "text/x-mysql", mode: "sql"},
|
|
84
|
+
{name: "Nginx", mime: "text/x-nginx-conf", mode: "nginx", file: /nginx.*\.conf$/i},
|
|
85
|
+
{name: "NTriples", mime: "text/n-triples", mode: "ntriples", ext: ["nt"]},
|
|
86
|
+
{name: "Objective C", mime: "text/x-objectivec", mode: "clike", ext: ["m", "mm"]},
|
|
87
|
+
{name: "OCaml", mime: "text/x-ocaml", mode: "mllike", ext: ["ml", "mli", "mll", "mly"]},
|
|
88
|
+
{name: "Octave", mime: "text/x-octave", mode: "octave", ext: ["m"]},
|
|
89
|
+
{name: "Pascal", mime: "text/x-pascal", mode: "pascal", ext: ["p", "pas"]},
|
|
90
|
+
{name: "PEG.js", mime: "null", mode: "pegjs", ext: ["jsonld"]},
|
|
91
|
+
{name: "Perl", mime: "text/x-perl", mode: "perl", ext: ["pl", "pm"]},
|
|
92
|
+
{name: "PHP", mime: "application/x-httpd-php", mode: "php", ext: ["php", "php3", "php4", "php5", "phtml"]},
|
|
93
|
+
{name: "Pig", mime: "text/x-pig", mode: "pig", ext: ["pig"]},
|
|
94
|
+
{name: "Plain Text", mime: "text/plain", mode: "null", ext: ["txt", "text", "conf", "def", "list", "log"]},
|
|
95
|
+
{name: "PLSQL", mime: "text/x-plsql", mode: "sql", ext: ["pls"]},
|
|
96
|
+
{name: "Properties files", mime: "text/x-properties", mode: "properties", ext: ["properties", "ini", "in"], alias: ["ini", "properties"]},
|
|
97
|
+
{name: "Python", mime: "text/x-python", mode: "python", ext: ["py", "pyw"]},
|
|
98
|
+
{name: "Puppet", mime: "text/x-puppet", mode: "puppet", ext: ["pp"]},
|
|
99
|
+
{name: "Q", mime: "text/x-q", mode: "q", ext: ["q"]},
|
|
100
|
+
{name: "R", mime: "text/x-rsrc", mode: "r", ext: ["r"], alias: ["rscript"]},
|
|
101
|
+
{name: "reStructuredText", mime: "text/x-rst", mode: "rst", ext: ["rst"], alias: ["rst"]},
|
|
102
|
+
{name: "RPM Changes", mime: "text/x-rpm-changes", mode: "rpm"},
|
|
103
|
+
{name: "RPM Spec", mime: "text/x-rpm-spec", mode: "rpm", ext: ["spec"]},
|
|
104
|
+
{name: "Ruby", mime: "text/x-ruby", mode: "ruby", ext: ["rb"], alias: ["jruby", "macruby", "rake", "rb", "rbx"]},
|
|
105
|
+
{name: "Rust", mime: "text/x-rustsrc", mode: "rust", ext: ["rs"]},
|
|
106
|
+
{name: "Sass", mime: "text/x-sass", mode: "sass", ext: ["sass"]},
|
|
107
|
+
{name: "Scala", mime: "text/x-scala", mode: "clike", ext: ["scala"]},
|
|
108
|
+
{name: "Scheme", mime: "text/x-scheme", mode: "scheme", ext: ["scm", "ss"]},
|
|
109
|
+
{name: "SCSS", mime: "text/x-scss", mode: "css", ext: ["scss"]},
|
|
110
|
+
{name: "Shell", mime: "text/x-sh", mode: "shell", ext: ["sh", "ksh", "bash"], alias: ["bash", "sh", "zsh"]},
|
|
111
|
+
{name: "Sieve", mime: "application/sieve", mode: "sieve", ext: ["siv", "sieve"]},
|
|
112
|
+
{name: "Slim", mimes: ["text/x-slim", "application/x-slim"], mode: "slim", ext: ["slim"]},
|
|
113
|
+
{name: "Smalltalk", mime: "text/x-stsrc", mode: "smalltalk", ext: ["st"]},
|
|
114
|
+
{name: "Smarty", mime: "text/x-smarty", mode: "smarty", ext: ["tpl"]},
|
|
115
|
+
{name: "Solr", mime: "text/x-solr", mode: "solr"},
|
|
116
|
+
{name: "Soy", mime: "text/x-soy", mode: "soy", ext: ["soy"], alias: ["closure template"]},
|
|
117
|
+
{name: "SPARQL", mime: "application/sparql-query", mode: "sparql", ext: ["rq", "sparql"], alias: ["sparul"]},
|
|
118
|
+
{name: "Spreadsheet", mime: "text/x-spreadsheet", mode: "spreadsheet", alias: ["excel", "formula"]},
|
|
119
|
+
{name: "SQL", mime: "text/x-sql", mode: "sql", ext: ["sql"]},
|
|
120
|
+
{name: "Squirrel", mime: "text/x-squirrel", mode: "clike", ext: ["nut"]},
|
|
121
|
+
{name: "Swift", mime: "text/x-swift", mode: "swift", ext: ["swift"]},
|
|
122
|
+
{name: "MariaDB", mime: "text/x-mariadb", mode: "sql"},
|
|
123
|
+
{name: "sTeX", mime: "text/x-stex", mode: "stex"},
|
|
124
|
+
{name: "LaTeX", mime: "text/x-latex", mode: "stex", ext: ["text", "ltx"], alias: ["tex"]},
|
|
125
|
+
{name: "SystemVerilog", mime: "text/x-systemverilog", mode: "verilog", ext: ["v"]},
|
|
126
|
+
{name: "Tcl", mime: "text/x-tcl", mode: "tcl", ext: ["tcl"]},
|
|
127
|
+
{name: "Textile", mime: "text/x-textile", mode: "textile", ext: ["textile"]},
|
|
128
|
+
{name: "TiddlyWiki ", mime: "text/x-tiddlywiki", mode: "tiddlywiki"},
|
|
129
|
+
{name: "Tiki wiki", mime: "text/tiki", mode: "tiki"},
|
|
130
|
+
{name: "TOML", mime: "text/x-toml", mode: "toml", ext: ["toml"]},
|
|
131
|
+
{name: "Tornado", mime: "text/x-tornado", mode: "tornado"},
|
|
132
|
+
{name: "troff", mime: "troff", mode: "troff", ext: ["1", "2", "3", "4", "5", "6", "7", "8", "9"]},
|
|
133
|
+
{name: "TTCN", mime: "text/x-ttcn", mode: "ttcn", ext: ["ttcn", "ttcn3", "ttcnpp"]},
|
|
134
|
+
{name: "TTCN_CFG", mime: "text/x-ttcn-cfg", mode: "ttcn-cfg", ext: ["cfg"]},
|
|
135
|
+
{name: "Turtle", mime: "text/turtle", mode: "turtle", ext: ["ttl"]},
|
|
136
|
+
{name: "TypeScript", mime: "application/typescript", mode: "javascript", ext: ["ts"], alias: ["ts"]},
|
|
137
|
+
{name: "Twig", mime: "text/x-twig", mode: "twig"},
|
|
138
|
+
{name: "VB.NET", mime: "text/x-vb", mode: "vb", ext: ["vb"]},
|
|
139
|
+
{name: "VBScript", mime: "text/vbscript", mode: "vbscript", ext: ["vbs"]},
|
|
140
|
+
{name: "Velocity", mime: "text/velocity", mode: "velocity", ext: ["vtl"]},
|
|
141
|
+
{name: "Verilog", mime: "text/x-verilog", mode: "verilog", ext: ["v"]},
|
|
142
|
+
{name: "XML", mimes: ["application/xml", "text/xml"], mode: "xml", ext: ["xml", "xsl", "xsd"], alias: ["rss", "wsdl", "xsd"]},
|
|
143
|
+
{name: "XQuery", mime: "application/xquery", mode: "xquery", ext: ["xy", "xquery"]},
|
|
144
|
+
{name: "YAML", mime: "text/x-yaml", mode: "yaml", ext: ["yaml", "yml"], alias: ["yml"]},
|
|
145
|
+
{name: "Z80", mime: "text/x-z80", mode: "z80", ext: ["z80"]}
|
|
146
|
+
];
|
|
147
|
+
// Ensure all modes have a mime property for backwards compatibility
|
|
148
|
+
for (var i = 0; i < CodeMirror.modeInfo.length; i++) {
|
|
149
|
+
var info = CodeMirror.modeInfo[i];
|
|
150
|
+
if (info.mimes) info.mime = info.mimes[0];
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
CodeMirror.findModeByMIME = function(mime) {
|
|
154
|
+
mime = mime.toLowerCase();
|
|
155
|
+
for (var i = 0; i < CodeMirror.modeInfo.length; i++) {
|
|
156
|
+
var info = CodeMirror.modeInfo[i];
|
|
157
|
+
if (info.mime == mime) return info;
|
|
158
|
+
if (info.mimes) for (var j = 0; j < info.mimes.length; j++)
|
|
159
|
+
if (info.mimes[j] == mime) return info;
|
|
160
|
+
}
|
|
161
|
+
};
|
|
162
|
+
|
|
163
|
+
CodeMirror.findModeByExtension = function(ext) {
|
|
164
|
+
for (var i = 0; i < CodeMirror.modeInfo.length; i++) {
|
|
165
|
+
var info = CodeMirror.modeInfo[i];
|
|
166
|
+
if (info.ext) for (var j = 0; j < info.ext.length; j++)
|
|
167
|
+
if (info.ext[j] == ext) return info;
|
|
168
|
+
}
|
|
169
|
+
};
|
|
170
|
+
|
|
171
|
+
CodeMirror.findModeByFileName = function(filename) {
|
|
172
|
+
for (var i = 0; i < CodeMirror.modeInfo.length; i++) {
|
|
173
|
+
var info = CodeMirror.modeInfo[i];
|
|
174
|
+
if (info.file && info.file.test(filename)) return info;
|
|
175
|
+
}
|
|
176
|
+
var dot = filename.lastIndexOf(".");
|
|
177
|
+
var ext = dot > -1 && filename.substring(dot + 1, filename.length);
|
|
178
|
+
if (ext) return CodeMirror.findModeByExtension(ext);
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
CodeMirror.findModeByName = function(name) {
|
|
182
|
+
name = name.toLowerCase();
|
|
183
|
+
for (var i = 0; i < CodeMirror.modeInfo.length; i++) {
|
|
184
|
+
var info = CodeMirror.modeInfo[i];
|
|
185
|
+
if (info.name.toLowerCase() == name) return info;
|
|
186
|
+
if (info.alias) for (var j = 0; j < info.alias.length; j++)
|
|
187
|
+
if (info.alias[j].toLowerCase() == name) return info;
|
|
188
|
+
}
|
|
189
|
+
};
|
|
190
|
+
});
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
|
|
3
|
+
<title>CodeMirror: mIRC mode</title>
|
|
4
|
+
<meta charset="utf-8"/>
|
|
5
|
+
<link rel=stylesheet href="../../doc/docs.css">
|
|
6
|
+
|
|
7
|
+
<link rel="stylesheet" href="../../lib/codemirror.css">
|
|
8
|
+
<link rel="stylesheet" href="../../theme/twilight.css">
|
|
9
|
+
<script src="../../lib/codemirror.js"></script>
|
|
10
|
+
<script src="mirc.js"></script>
|
|
11
|
+
<style>.CodeMirror {border: 1px solid black;}</style>
|
|
12
|
+
<div id=nav>
|
|
13
|
+
<a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
|
|
14
|
+
|
|
15
|
+
<ul>
|
|
16
|
+
<li><a href="../../index.html">Home</a>
|
|
17
|
+
<li><a href="../../doc/manual.html">Manual</a>
|
|
18
|
+
<li><a href="https://github.com/codemirror/codemirror">Code</a>
|
|
19
|
+
</ul>
|
|
20
|
+
<ul>
|
|
21
|
+
<li><a href="../index.html">Language modes</a>
|
|
22
|
+
<li><a class=active href="#">mIRC</a>
|
|
23
|
+
</ul>
|
|
24
|
+
</div>
|
|
25
|
+
|
|
26
|
+
<article>
|
|
27
|
+
<h2>mIRC mode</h2>
|
|
28
|
+
<form><textarea id="code" name="code">
|
|
29
|
+
;AKA Nick Tracker by Ford_Lawnmower irc.GeekShed.net #Script-Help
|
|
30
|
+
;*****************************************************************************;
|
|
31
|
+
;**Start Setup
|
|
32
|
+
;Change JoinDisplay, below, for On Join AKA Display. On = 1 - Off = 0
|
|
33
|
+
alias -l JoinDisplay { return 1 }
|
|
34
|
+
;Change MaxNicks, below, to the number of nicknames you want to store for each hostmask. I wouldn't go over 400 with this ;/
|
|
35
|
+
alias -l MaxNicks { return 20 }
|
|
36
|
+
;Change AKALogo, below, To the text you want displayed before each AKA result.
|
|
37
|
+
alias -l AKALogo { return 06 05A06K07A 06 }
|
|
38
|
+
;**End Setup
|
|
39
|
+
;*****************************************************************************;
|
|
40
|
+
On *:Join:#: {
|
|
41
|
+
if ($nick == $me) { .timer 1 1 ialupdateCheck $chan }
|
|
42
|
+
NickNamesAdd $nick $+($network,$wildsite)
|
|
43
|
+
if ($JoinDisplay) { .timerNickNames $+ $nick 1 2 NickNames.display $nick $chan $network $wildsite }
|
|
44
|
+
}
|
|
45
|
+
on *:Nick: { NickNamesAdd $newnick $+($network,$wildsite) $nick }
|
|
46
|
+
alias -l NickNames.display {
|
|
47
|
+
if ($gettok($hget(NickNames,$+($3,$4)),0,126) > 1) {
|
|
48
|
+
echo -g $2 $AKALogo $+(09,$1) $AKALogo 07 $mid($replace($hget(NickNames,$+($3,$4)),$chr(126),$chr(44)),2,-1)
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
alias -l NickNamesAdd {
|
|
52
|
+
if ($hget(NickNames,$2)) {
|
|
53
|
+
if (!$regex($hget(NickNames,$2),/~\Q $+ $replacecs($1,\E,\E\\E\Q) $+ \E~/i)) {
|
|
54
|
+
if ($gettok($hget(NickNames,$2),0,126) <= $MaxNicks) {
|
|
55
|
+
hadd NickNames $2 $+($hget(NickNames,$2),$1,~)
|
|
56
|
+
}
|
|
57
|
+
else {
|
|
58
|
+
hadd NickNames $2 $+($mid($hget(NickNames,$2),$pos($hget(NickNames,$2),~,2)),$1,~)
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
else {
|
|
63
|
+
hadd -m NickNames $2 $+(~,$1,~,$iif($3,$+($3,~)))
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
alias -l Fix.All.MindUser {
|
|
67
|
+
var %Fix.Count = $hfind(NickNames,/[^~]+[0-9]{4}~/,0,r).data
|
|
68
|
+
while (%Fix.Count) {
|
|
69
|
+
if ($Fix.MindUser($hget(NickNames,$hfind(NickNames,/[^~]+[0-9]{4}~/,%Fix.Count,r).data))) {
|
|
70
|
+
echo -ag Record %Fix.Count - $v1 - Was Cleaned
|
|
71
|
+
hadd NickNames $hfind(NickNames,/[^~]+[0-9]{4}~/,%Fix.Count,r).data $v1
|
|
72
|
+
}
|
|
73
|
+
dec %Fix.Count
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
alias -l Fix.MindUser { return $regsubex($1,/[^~]+[0-9]{4}~/g,$null) }
|
|
77
|
+
menu nicklist,query {
|
|
78
|
+
-
|
|
79
|
+
.AKA
|
|
80
|
+
..Check $$1: {
|
|
81
|
+
if ($gettok($hget(NickNames,$+($network,$address($1,2))),0,126) > 1) {
|
|
82
|
+
NickNames.display $1 $active $network $address($1,2)
|
|
83
|
+
}
|
|
84
|
+
else { echo -ag $AKALogo $+(09,$1) 07has not been known by any other nicknames while I have been watching. }
|
|
85
|
+
}
|
|
86
|
+
..Cleanup $$1:hadd NickNames $+($network,$address($1,2)) $fix.minduser($hget(NickNames,$+($network,$address($1,2))))
|
|
87
|
+
..Clear $$1:hadd NickNames $+($network,$address($1,2)) $+(~,$1,~)
|
|
88
|
+
..AKA Search Dialog:dialog $iif($dialog(AKA_Search),-v,-m) AKA_Search AKA_Search
|
|
89
|
+
-
|
|
90
|
+
}
|
|
91
|
+
menu status,channel {
|
|
92
|
+
-
|
|
93
|
+
.AKA
|
|
94
|
+
..AKA Search Dialog:dialog $iif($dialog(AKA_Search),-v,-m) AKA_Search AKA_Search
|
|
95
|
+
..Clean All Records:Fix.All.Minduser
|
|
96
|
+
-
|
|
97
|
+
}
|
|
98
|
+
dialog AKA_Search {
|
|
99
|
+
title "AKA Search Engine"
|
|
100
|
+
size -1 -1 206 221
|
|
101
|
+
option dbu
|
|
102
|
+
edit "", 1, 8 5 149 10, autohs
|
|
103
|
+
button "Search", 2, 163 4 32 12
|
|
104
|
+
radio "Search HostMask", 4, 61 22 55 10
|
|
105
|
+
radio "Search Nicknames", 5, 123 22 56 10
|
|
106
|
+
list 6, 8 38 190 169, sort extsel vsbar
|
|
107
|
+
button "Check Selected", 7, 67 206 40 12
|
|
108
|
+
button "Close", 8, 160 206 38 12, cancel
|
|
109
|
+
box "Search Type", 3, 11 17 183 18
|
|
110
|
+
button "Copy to Clipboard", 9, 111 206 46 12
|
|
111
|
+
}
|
|
112
|
+
On *:Dialog:Aka_Search:init:*: { did -c $dname 5 }
|
|
113
|
+
On *:Dialog:Aka_Search:Sclick:2,7,9: {
|
|
114
|
+
if ($did == 2) && ($did($dname,1)) {
|
|
115
|
+
did -r $dname 6
|
|
116
|
+
var %search $+(*,$v1,*), %type $iif($did($dname,5).state,data,item), %matches = $hfind(NickNames,%search,0,w). [ $+ [ %type ] ]
|
|
117
|
+
while (%matches) {
|
|
118
|
+
did -a $dname 6 $hfind(NickNames,%search,%matches,w). [ $+ [ %type ] ]
|
|
119
|
+
dec %matches
|
|
120
|
+
}
|
|
121
|
+
did -c $dname 6 1
|
|
122
|
+
}
|
|
123
|
+
elseif ($did == 7) && ($did($dname,6).seltext) { echo -ga $AKALogo 07 $mid($replace($hget(NickNames,$v1),$chr(126),$chr(44)),2,-1) }
|
|
124
|
+
elseif ($did == 9) && ($did($dname,6).seltext) { clipboard $mid($v1,$pos($v1,*,1)) }
|
|
125
|
+
}
|
|
126
|
+
On *:Start:{
|
|
127
|
+
if (!$hget(NickNames)) { hmake NickNames 10 }
|
|
128
|
+
if ($isfile(NickNames.hsh)) { hload NickNames NickNames.hsh }
|
|
129
|
+
}
|
|
130
|
+
On *:Exit: { if ($hget(NickNames)) { hsave NickNames NickNames.hsh } }
|
|
131
|
+
On *:Disconnect: { if ($hget(NickNames)) { hsave NickNames NickNames.hsh } }
|
|
132
|
+
On *:Unload: { hfree NickNames }
|
|
133
|
+
alias -l ialupdateCheck {
|
|
134
|
+
inc -z $+(%,ialupdateCheck,$network) $calc($nick($1,0) / 4)
|
|
135
|
+
;If your ial is already being updated on join .who $1 out.
|
|
136
|
+
;If you are using /names to update ial you will still need this line.
|
|
137
|
+
.who $1
|
|
138
|
+
}
|
|
139
|
+
Raw 352:*: {
|
|
140
|
+
if ($($+(%,ialupdateCheck,$network),2)) haltdef
|
|
141
|
+
NickNamesAdd $6 $+($network,$address($6,2))
|
|
142
|
+
}
|
|
143
|
+
Raw 315:*: {
|
|
144
|
+
if ($($+(%,ialupdateCheck,$network),2)) haltdef
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
</textarea></form>
|
|
148
|
+
<script>
|
|
149
|
+
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
|
|
150
|
+
theme: "twilight",
|
|
151
|
+
lineNumbers: true,
|
|
152
|
+
matchBrackets: true,
|
|
153
|
+
indentUnit: 4,
|
|
154
|
+
mode: "text/mirc"
|
|
155
|
+
});
|
|
156
|
+
</script>
|
|
157
|
+
|
|
158
|
+
<p><strong>MIME types defined:</strong> <code>text/mirc</code>.</p>
|
|
159
|
+
|
|
160
|
+
</article>
|