pollypost 0.0.2
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.
- data/.gitignore +15 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +674 -0
- data/README.md +165 -0
- data/Rakefile +9 -0
- data/assets/fonts/font-awesome-custom/fontawesome-custom.eot +0 -0
- data/assets/fonts/font-awesome-custom/fontawesome-custom.svg +15 -0
- data/assets/fonts/font-awesome-custom/fontawesome-custom.ttf +0 -0
- data/assets/fonts/font-awesome-custom/fontawesome-custom.woff +0 -0
- data/assets/javascripts/app.js +35 -0
- data/assets/javascripts/application.js +8 -0
- data/assets/javascripts/dom-tweaking.js +36 -0
- data/assets/javascripts/main.js +36 -0
- data/assets/javascripts/models/page_content.js +39 -0
- data/assets/javascripts/templates/bar_edit_mode.html +14 -0
- data/assets/javascripts/templates/bar_view_mode.html +13 -0
- data/assets/javascripts/templates/duplicate_page.html +20 -0
- data/assets/javascripts/templates/html_editor.html +18 -0
- data/assets/javascripts/templates/loading.html +9 -0
- data/assets/javascripts/templates/new_page.html +23 -0
- data/assets/javascripts/templates/settings.html +15 -0
- data/assets/javascripts/views/bar_edit_mode.js +117 -0
- data/assets/javascripts/views/bar_view_mode.js +40 -0
- data/assets/javascripts/views/duplicate_page.js +76 -0
- data/assets/javascripts/views/editier_bar.js +171 -0
- data/assets/javascripts/views/html_editor.js +116 -0
- data/assets/javascripts/views/loading.js +31 -0
- data/assets/javascripts/views/new_page.js +77 -0
- data/assets/javascripts/views/page_content.js +26 -0
- data/assets/javascripts/views/settings.js +89 -0
- data/assets/stylesheets/_bootstrap-custom.scss +50 -0
- data/assets/stylesheets/_editor.scss +303 -0
- data/assets/stylesheets/_font-awesome-custom.scss +17 -0
- data/assets/stylesheets/_variable-overrides.scss +13 -0
- data/assets/stylesheets/application.scss +41 -0
- data/assets/stylesheets/bootstrap/_normalize.scss +427 -0
- data/assets/stylesheets/bootstrap/_scaffolding.scss +150 -0
- data/assets/stylesheets/font-awesome/_core.scss +12 -0
- data/assets/stylesheets/font-awesome/_mixins.scss +26 -0
- data/assets/stylesheets/font-awesome/_path.scss +14 -0
- data/lib/pollypost.rb +13 -0
- data/lib/pollypost/rake.rb +55 -0
- data/lib/pollypost/version.rb +11 -0
- data/pollypost.gemspec +27 -0
- data/test/README.md +55 -0
- data/test/basic.html +19 -0
- data/test/page_content_test.js +69 -0
- data/test/qunit-1.17.1.css +280 -0
- data/test/qunit-1.17.1.js +2875 -0
- data/test/sinon-1.14.1.js +5931 -0
- data/test/sinon-qunit-1.0.0.js +62 -0
- data/test/test.html +16 -0
- data/test/testmain.js +28 -0
- data/test/tests.js +58 -0
- data/vendor/assets/ace-1.1.8/ace.js +129 -0
- data/vendor/assets/ace-1.1.8/anchor.js +245 -0
- data/vendor/assets/ace-1.1.8/anchor_test.js +223 -0
- data/vendor/assets/ace-1.1.8/autocomplete.js +485 -0
- data/vendor/assets/ace-1.1.8/autocomplete/popup.js +338 -0
- data/vendor/assets/ace-1.1.8/autocomplete/text_completer.js +78 -0
- data/vendor/assets/ace-1.1.8/autocomplete/util.js +74 -0
- data/vendor/assets/ace-1.1.8/background_tokenizer.js +250 -0
- data/vendor/assets/ace-1.1.8/background_tokenizer_test.js +85 -0
- data/vendor/assets/ace-1.1.8/commands/command_manager.js +118 -0
- data/vendor/assets/ace-1.1.8/commands/command_manager_test.js +199 -0
- data/vendor/assets/ace-1.1.8/commands/default_commands.js +708 -0
- data/vendor/assets/ace-1.1.8/commands/incremental_search_commands.js +232 -0
- data/vendor/assets/ace-1.1.8/commands/multi_select_commands.js +102 -0
- data/vendor/assets/ace-1.1.8/commands/occur_commands.js +110 -0
- data/vendor/assets/ace-1.1.8/config.js +301 -0
- data/vendor/assets/ace-1.1.8/config_test.js +128 -0
- data/vendor/assets/ace-1.1.8/css/codefolding-fold-button-states.png +0 -0
- data/vendor/assets/ace-1.1.8/css/editor.css +422 -0
- data/vendor/assets/ace-1.1.8/css/expand-marker.png +0 -0
- data/vendor/assets/ace-1.1.8/document.js +645 -0
- data/vendor/assets/ace-1.1.8/document_test.js +306 -0
- data/vendor/assets/ace-1.1.8/edit_session.js +2554 -0
- data/vendor/assets/ace-1.1.8/edit_session/bracket_match.js +221 -0
- data/vendor/assets/ace-1.1.8/edit_session/fold.js +140 -0
- data/vendor/assets/ace-1.1.8/edit_session/fold_line.js +269 -0
- data/vendor/assets/ace-1.1.8/edit_session/folding.js +851 -0
- data/vendor/assets/ace-1.1.8/edit_session_test.js +1075 -0
- data/vendor/assets/ace-1.1.8/editor.js +2658 -0
- data/vendor/assets/ace-1.1.8/editor_change_document_test.js +188 -0
- data/vendor/assets/ace-1.1.8/editor_highlight_selected_word_test.js +223 -0
- data/vendor/assets/ace-1.1.8/editor_navigation_test.js +164 -0
- data/vendor/assets/ace-1.1.8/editor_text_edit_test.js +557 -0
- data/vendor/assets/ace-1.1.8/ext/beautify.js +57 -0
- data/vendor/assets/ace-1.1.8/ext/beautify/php_rules.js +366 -0
- data/vendor/assets/ace-1.1.8/ext/chromevox.js +980 -0
- data/vendor/assets/ace-1.1.8/ext/elastic_tabstops_lite.js +319 -0
- data/vendor/assets/ace-1.1.8/ext/emmet.js +434 -0
- data/vendor/assets/ace-1.1.8/ext/error_marker.js +214 -0
- data/vendor/assets/ace-1.1.8/ext/keybinding_menu.js +86 -0
- data/vendor/assets/ace-1.1.8/ext/language_tools.js +229 -0
- data/vendor/assets/ace-1.1.8/ext/linking.js +78 -0
- data/vendor/assets/ace-1.1.8/ext/menu_tools/add_editor_menu_options.js +109 -0
- data/vendor/assets/ace-1.1.8/ext/menu_tools/element_generator.js +148 -0
- data/vendor/assets/ace-1.1.8/ext/menu_tools/generate_settings_menu.js +264 -0
- data/vendor/assets/ace-1.1.8/ext/menu_tools/get_editor_keyboard_shortcuts.js +91 -0
- data/vendor/assets/ace-1.1.8/ext/menu_tools/get_set_functions.js +141 -0
- data/vendor/assets/ace-1.1.8/ext/menu_tools/overlay_page.js +116 -0
- data/vendor/assets/ace-1.1.8/ext/menu_tools/settings_menu.css +48 -0
- data/vendor/assets/ace-1.1.8/ext/modelist.js +191 -0
- data/vendor/assets/ace-1.1.8/ext/old_ie.js +114 -0
- data/vendor/assets/ace-1.1.8/ext/old_ie_test.js +77 -0
- data/vendor/assets/ace-1.1.8/ext/searchbox.css +153 -0
- data/vendor/assets/ace-1.1.8/ext/searchbox.js +308 -0
- data/vendor/assets/ace-1.1.8/ext/settings_menu.js +76 -0
- data/vendor/assets/ace-1.1.8/ext/spellcheck.js +69 -0
- data/vendor/assets/ace-1.1.8/ext/split.js +40 -0
- data/vendor/assets/ace-1.1.8/ext/static.css +31 -0
- data/vendor/assets/ace-1.1.8/ext/static_highlight.js +190 -0
- data/vendor/assets/ace-1.1.8/ext/static_highlight_test.js +96 -0
- data/vendor/assets/ace-1.1.8/ext/statusbar.js +48 -0
- data/vendor/assets/ace-1.1.8/ext/textarea.js +521 -0
- data/vendor/assets/ace-1.1.8/ext/themelist.js +100 -0
- data/vendor/assets/ace-1.1.8/ext/whitespace.js +213 -0
- data/vendor/assets/ace-1.1.8/ext/whitespace_test.js +116 -0
- data/vendor/assets/ace-1.1.8/incremental_search.js +317 -0
- data/vendor/assets/ace-1.1.8/incremental_search_test.js +213 -0
- data/vendor/assets/ace-1.1.8/keyboard/emacs.js +652 -0
- data/vendor/assets/ace-1.1.8/keyboard/emacs_test.js +151 -0
- data/vendor/assets/ace-1.1.8/keyboard/hash_handler.js +231 -0
- data/vendor/assets/ace-1.1.8/keyboard/keybinding.js +145 -0
- data/vendor/assets/ace-1.1.8/keyboard/keybinding_test.js +69 -0
- data/vendor/assets/ace-1.1.8/keyboard/state_handler.js +249 -0
- data/vendor/assets/ace-1.1.8/keyboard/textarea.js +82 -0
- data/vendor/assets/ace-1.1.8/keyboard/textinput.js +495 -0
- data/vendor/assets/ace-1.1.8/keyboard/vim.js +199 -0
- data/vendor/assets/ace-1.1.8/keyboard/vim/commands.js +618 -0
- data/vendor/assets/ace-1.1.8/keyboard/vim/maps/aliases.js +94 -0
- data/vendor/assets/ace-1.1.8/keyboard/vim/maps/motions.js +681 -0
- data/vendor/assets/ace-1.1.8/keyboard/vim/maps/operators.js +201 -0
- data/vendor/assets/ace-1.1.8/keyboard/vim/maps/util.js +132 -0
- data/vendor/assets/ace-1.1.8/keyboard/vim/registers.js +42 -0
- data/vendor/assets/ace-1.1.8/keyboard/vim_test.js +528 -0
- data/vendor/assets/ace-1.1.8/layer/cursor.js +234 -0
- data/vendor/assets/ace-1.1.8/layer/font_metrics.js +176 -0
- data/vendor/assets/ace-1.1.8/layer/gutter.js +287 -0
- data/vendor/assets/ace-1.1.8/layer/marker.js +218 -0
- data/vendor/assets/ace-1.1.8/layer/text.js +575 -0
- data/vendor/assets/ace-1.1.8/layer/text_test.js +126 -0
- data/vendor/assets/ace-1.1.8/lib/dom.js +283 -0
- data/vendor/assets/ace-1.1.8/lib/es5-shim.js +1062 -0
- data/vendor/assets/ace-1.1.8/lib/event.js +381 -0
- data/vendor/assets/ace-1.1.8/lib/event_emitter.js +155 -0
- data/vendor/assets/ace-1.1.8/lib/event_emitter_test.js +65 -0
- data/vendor/assets/ace-1.1.8/lib/fixoldbrowsers.js +19 -0
- data/vendor/assets/ace-1.1.8/lib/keys.js +163 -0
- data/vendor/assets/ace-1.1.8/lib/lang.js +221 -0
- data/vendor/assets/ace-1.1.8/lib/net.js +51 -0
- data/vendor/assets/ace-1.1.8/lib/oop.js +57 -0
- data/vendor/assets/ace-1.1.8/lib/regexp.js +113 -0
- data/vendor/assets/ace-1.1.8/lib/useragent.js +106 -0
- data/vendor/assets/ace-1.1.8/line_widgets.js +297 -0
- data/vendor/assets/ace-1.1.8/mode/_test/Readme.md +9 -0
- data/vendor/assets/ace-1.1.8/mode/_test/highlight_rules_test.js +210 -0
- data/vendor/assets/ace-1.1.8/mode/_test/package.json +8 -0
- data/vendor/assets/ace-1.1.8/mode/_test/text_asciidoc.txt +111 -0
- data/vendor/assets/ace-1.1.8/mode/_test/text_coffee.txt +57 -0
- data/vendor/assets/ace-1.1.8/mode/_test/text_curly.txt +9 -0
- data/vendor/assets/ace-1.1.8/mode/_test/text_html.txt +10 -0
- data/vendor/assets/ace-1.1.8/mode/_test/text_javascript.txt +86 -0
- data/vendor/assets/ace-1.1.8/mode/_test/text_livescript.txt +1 -0
- data/vendor/assets/ace-1.1.8/mode/_test/text_lucene.txt +16 -0
- data/vendor/assets/ace-1.1.8/mode/_test/text_markdown.txt +22 -0
- data/vendor/assets/ace-1.1.8/mode/_test/text_php.txt +24 -0
- data/vendor/assets/ace-1.1.8/mode/_test/text_ruby.txt +34 -0
- data/vendor/assets/ace-1.1.8/mode/_test/text_xml.txt +7 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_abap.json +189 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_actionscript.json +263 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_ada.json +39 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_asciidoc.json +422 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_assembly_x86.json +114 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_autohotkey.json +261 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_batchfile.json +70 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_c9search.json +131 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_c_cpp.json +185 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_cirru.json +267 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_clojure.json +162 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_cobol.json +4 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_coffee.json +545 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_coldfusion.json +26 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_csharp.json +31 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_css.json +148 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_curly.json +56 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_d.json +111 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_dart.json +368 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_diff.json +262 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_dot.json +2254 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_eiffel.json +141 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_ejs.json +296 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_elixir.json +196 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_elm.json +198 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_erlang.json +166 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_forth.json +219 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_ftl.json +341 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_gcode.json +296 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_gherkin.json +142 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_gitignore.json +33 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_glsl.json +127 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_golang.json +256 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_groovy.json +410 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_haml.json +174 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_handlebars.json +81 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_haskell.json +156 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_haxe.json +143 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_html.json +63 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_html_ruby.json +257 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_ini.json +23 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_io.json +49 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_jack.json +1786 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_jade.json +188 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_java.json +95 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_javascript.json +593 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_json.json +412 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_jsoniq.json +4 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_jsp.json +435 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_jsx.json +51 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_julia.json +111 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_latex.json +127 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_less.json +204 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_liquid.json +551 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_lisp.json +248 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_livescript.json +6 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_logiql.json +190 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_lsl.json +503 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_lua.json +348 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_luapage.json +633 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_lucene.json +92 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_markdown.json +114 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_matlab.json +90 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_mel.json +257 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_mushcode.json +790 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_mysql.json +4 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_nix.json +360 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_objectivec.json +792 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_ocaml.json +200 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_pascal.json +297 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_perl.json +227 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_pgsql.json +889 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_php.json +171 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_powershell.json +184 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_prolog.json +245 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_properties.json +68 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_protobuf.json +136 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_python.json +152 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_r.json +235 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_rdoc.json +441 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_rhtml.json +106 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_ruby.json +234 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_rust.json +136 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_sass.json +229 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_scad.json +194 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_scala.json +542 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_scheme.json +216 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_scss.json +123 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_sh.json +334 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_sjs.json +276 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_smarty.json +98 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_snippets.json +159 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_soy_template.json +286 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_space.json +322 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_sql.json +54 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_stylus.json +271 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_svg.json +684 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_tcl.json +385 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_tex.json +130 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_text.json +29 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_textile.json +113 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_toml.json +131 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_twig.json +288 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_typescript.json +559 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_vala.json +158 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_vbscript.json +205 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_velocity.json +285 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_verilog.json +113 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_vhdl.json +271 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_xml.json +43 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_xquery.json +44 -0
- data/vendor/assets/ace-1.1.8/mode/_test/tokens_yaml.json +150 -0
- data/vendor/assets/ace-1.1.8/mode/abap.js +77 -0
- data/vendor/assets/ace-1.1.8/mode/abap_highlight_rules.js +134 -0
- data/vendor/assets/ace-1.1.8/mode/actionscript.js +58 -0
- data/vendor/assets/ace-1.1.8/mode/actionscript_highlight_rules.js +141 -0
- data/vendor/assets/ace-1.1.8/mode/ada.js +54 -0
- data/vendor/assets/ace-1.1.8/mode/ada_highlight_rules.js +93 -0
- data/vendor/assets/ace-1.1.8/mode/apache_conf.js +62 -0
- data/vendor/assets/ace-1.1.8/mode/apache_conf_highlight_rules.js +231 -0
- data/vendor/assets/ace-1.1.8/mode/applescript.js +55 -0
- data/vendor/assets/ace-1.1.8/mode/applescript_highlight_rules.js +139 -0
- data/vendor/assets/ace-1.1.8/mode/asciidoc.js +64 -0
- data/vendor/assets/ace-1.1.8/mode/asciidoc_highlight_rules.js +234 -0
- data/vendor/assets/ace-1.1.8/mode/assembly_x86.js +56 -0
- data/vendor/assets/ace-1.1.8/mode/assembly_x86_highlight_rules.js +114 -0
- data/vendor/assets/ace-1.1.8/mode/autohotkey.js +57 -0
- data/vendor/assets/ace-1.1.8/mode/autohotkey_highlight_rules.js +107 -0
- data/vendor/assets/ace-1.1.8/mode/batchfile.js +61 -0
- data/vendor/assets/ace-1.1.8/mode/batchfile_highlight_rules.js +97 -0
- data/vendor/assets/ace-1.1.8/mode/behaviour.js +90 -0
- data/vendor/assets/ace-1.1.8/mode/behaviour/behaviour_test.js +133 -0
- data/vendor/assets/ace-1.1.8/mode/behaviour/css.js +108 -0
- data/vendor/assets/ace-1.1.8/mode/behaviour/cstyle.js +400 -0
- data/vendor/assets/ace-1.1.8/mode/behaviour/html.js +46 -0
- data/vendor/assets/ace-1.1.8/mode/behaviour/xml.js +202 -0
- data/vendor/assets/ace-1.1.8/mode/behaviour/xquery.js +92 -0
- data/vendor/assets/ace-1.1.8/mode/c9search.js +67 -0
- data/vendor/assets/ace-1.1.8/mode/c9search_highlight_rules.js +182 -0
- data/vendor/assets/ace-1.1.8/mode/c_cpp.js +101 -0
- data/vendor/assets/ace-1.1.8/mode/c_cpp_highlight_rules.js +196 -0
- data/vendor/assets/ace-1.1.8/mode/cirru.js +51 -0
- data/vendor/assets/ace-1.1.8/mode/cirru_highlight_rules.js +125 -0
- data/vendor/assets/ace-1.1.8/mode/clojure.js +128 -0
- data/vendor/assets/ace-1.1.8/mode/clojure_highlight_rules.js +200 -0
- data/vendor/assets/ace-1.1.8/mode/cobol.js +53 -0
- data/vendor/assets/ace-1.1.8/mode/cobol_highlight_rules.js +100 -0
- data/vendor/assets/ace-1.1.8/mode/coffee.js +135 -0
- data/vendor/assets/ace-1.1.8/mode/coffee/coffee-script.js +62 -0
- data/vendor/assets/ace-1.1.8/mode/coffee/helpers.js +271 -0
- data/vendor/assets/ace-1.1.8/mode/coffee/lexer.js +935 -0
- data/vendor/assets/ace-1.1.8/mode/coffee/nodes.js +3106 -0
- data/vendor/assets/ace-1.1.8/mode/coffee/parser.js +724 -0
- data/vendor/assets/ace-1.1.8/mode/coffee/parser_test.js +88 -0
- data/vendor/assets/ace-1.1.8/mode/coffee/rewriter.js +516 -0
- data/vendor/assets/ace-1.1.8/mode/coffee/scope.js +174 -0
- data/vendor/assets/ace-1.1.8/mode/coffee_highlight_rules.js +233 -0
- data/vendor/assets/ace-1.1.8/mode/coffee_worker.js +74 -0
- data/vendor/assets/ace-1.1.8/mode/coldfusion.js +61 -0
- data/vendor/assets/ace-1.1.8/mode/coldfusion_highlight_rules.js +49 -0
- data/vendor/assets/ace-1.1.8/mode/coldfusion_test.js +67 -0
- data/vendor/assets/ace-1.1.8/mode/csharp.js +61 -0
- data/vendor/assets/ace-1.1.8/mode/csharp_highlight_rules.js +93 -0
- data/vendor/assets/ace-1.1.8/mode/css.js +100 -0
- data/vendor/assets/ace-1.1.8/mode/css/csslint.js +9628 -0
- data/vendor/assets/ace-1.1.8/mode/css_highlight_rules.js +179 -0
- data/vendor/assets/ace-1.1.8/mode/css_test.js +78 -0
- data/vendor/assets/ace-1.1.8/mode/css_worker.js +100 -0
- data/vendor/assets/ace-1.1.8/mode/css_worker_test.js +68 -0
- data/vendor/assets/ace-1.1.8/mode/curly.js +63 -0
- data/vendor/assets/ace-1.1.8/mode/curly_highlight_rules.js +66 -0
- data/vendor/assets/ace-1.1.8/mode/d.js +56 -0
- data/vendor/assets/ace-1.1.8/mode/d_highlight_rules.js +334 -0
- data/vendor/assets/ace-1.1.8/mode/dart.js +62 -0
- data/vendor/assets/ace-1.1.8/mode/dart_highlight_rules.js +186 -0
- data/vendor/assets/ace-1.1.8/mode/diff.js +52 -0
- data/vendor/assets/ace-1.1.8/mode/diff_highlight_rules.js +108 -0
- data/vendor/assets/ace-1.1.8/mode/django.js +119 -0
- data/vendor/assets/ace-1.1.8/mode/doc_comment_highlight_rules.js +79 -0
- data/vendor/assets/ace-1.1.8/mode/dockerfile.js +52 -0
- data/vendor/assets/ace-1.1.8/mode/dockerfile_highlight_rules.js +57 -0
- data/vendor/assets/ace-1.1.8/mode/dot.js +55 -0
- data/vendor/assets/ace-1.1.8/mode/dot_highlight_rules.js +126 -0
- data/vendor/assets/ace-1.1.8/mode/eiffel.js +52 -0
- data/vendor/assets/ace-1.1.8/mode/eiffel_highlight_rules.js +143 -0
- data/vendor/assets/ace-1.1.8/mode/ejs.js +109 -0
- data/vendor/assets/ace-1.1.8/mode/elixir.js +58 -0
- data/vendor/assets/ace-1.1.8/mode/elixir_highlight_rules.js +433 -0
- data/vendor/assets/ace-1.1.8/mode/elm.js +58 -0
- data/vendor/assets/ace-1.1.8/mode/elm_highlight_rules.js +162 -0
- data/vendor/assets/ace-1.1.8/mode/erlang.js +57 -0
- data/vendor/assets/ace-1.1.8/mode/erlang_highlight_rules.js +876 -0
- data/vendor/assets/ace-1.1.8/mode/folding/asciidoc.js +142 -0
- data/vendor/assets/ace-1.1.8/mode/folding/c9search.js +83 -0
- data/vendor/assets/ace-1.1.8/mode/folding/coffee.js +120 -0
- data/vendor/assets/ace-1.1.8/mode/folding/coffee_test.js +101 -0
- data/vendor/assets/ace-1.1.8/mode/folding/csharp.js +138 -0
- data/vendor/assets/ace-1.1.8/mode/folding/cstyle.js +124 -0
- data/vendor/assets/ace-1.1.8/mode/folding/cstyle_test.js +109 -0
- data/vendor/assets/ace-1.1.8/mode/folding/diff.js +69 -0
- data/vendor/assets/ace-1.1.8/mode/folding/fold_mode.js +120 -0
- data/vendor/assets/ace-1.1.8/mode/folding/html.js +48 -0
- data/vendor/assets/ace-1.1.8/mode/folding/html_test.js +162 -0
- data/vendor/assets/ace-1.1.8/mode/folding/ini.js +80 -0
- data/vendor/assets/ace-1.1.8/mode/folding/latex.js +162 -0
- data/vendor/assets/ace-1.1.8/mode/folding/lua.js +163 -0
- data/vendor/assets/ace-1.1.8/mode/folding/markdown.js +125 -0
- data/vendor/assets/ace-1.1.8/mode/folding/mixed.js +83 -0
- data/vendor/assets/ace-1.1.8/mode/folding/pythonic.js +58 -0
- data/vendor/assets/ace-1.1.8/mode/folding/pythonic_test.js +98 -0
- data/vendor/assets/ace-1.1.8/mode/folding/velocity.js +120 -0
- data/vendor/assets/ace-1.1.8/mode/folding/xml.js +277 -0
- data/vendor/assets/ace-1.1.8/mode/folding/xml_test.js +110 -0
- data/vendor/assets/ace-1.1.8/mode/forth.js +58 -0
- data/vendor/assets/ace-1.1.8/mode/forth_highlight_rules.js +164 -0
- data/vendor/assets/ace-1.1.8/mode/ftl.js +49 -0
- data/vendor/assets/ace-1.1.8/mode/ftl_highlight_rules.js +195 -0
- data/vendor/assets/ace-1.1.8/mode/gcode.js +51 -0
- data/vendor/assets/ace-1.1.8/mode/gcode_highlight_rules.js +94 -0
- data/vendor/assets/ace-1.1.8/mode/gherkin.js +80 -0
- data/vendor/assets/ace-1.1.8/mode/gherkin_highlight_rules.js +113 -0
- data/vendor/assets/ace-1.1.8/mode/gitignore.js +20 -0
- data/vendor/assets/ace-1.1.8/mode/gitignore_highlight_rules.js +31 -0
- data/vendor/assets/ace-1.1.8/mode/glsl.js +56 -0
- data/vendor/assets/ace-1.1.8/mode/glsl_highlight_rules.js +81 -0
- data/vendor/assets/ace-1.1.8/mode/golang.js +55 -0
- data/vendor/assets/ace-1.1.8/mode/golang_highlight_rules.js +108 -0
- data/vendor/assets/ace-1.1.8/mode/groovy.js +24 -0
- data/vendor/assets/ace-1.1.8/mode/groovy_highlight_rules.js +173 -0
- data/vendor/assets/ace-1.1.8/mode/haml.js +61 -0
- data/vendor/assets/ace-1.1.8/mode/haml_highlight_rules.js +132 -0
- data/vendor/assets/ace-1.1.8/mode/handlebars.js +29 -0
- data/vendor/assets/ace-1.1.8/mode/handlebars_highlight_rules.js +72 -0
- data/vendor/assets/ace-1.1.8/mode/haskell.js +62 -0
- data/vendor/assets/ace-1.1.8/mode/haskell_highlight_rules.js +246 -0
- data/vendor/assets/ace-1.1.8/mode/haxe.js +56 -0
- data/vendor/assets/ace-1.1.8/mode/haxe_highlight_rules.js +98 -0
- data/vendor/assets/ace-1.1.8/mode/html.js +106 -0
- data/vendor/assets/ace-1.1.8/mode/html/saxparser.js +10430 -0
- data/vendor/assets/ace-1.1.8/mode/html_completions.js +305 -0
- data/vendor/assets/ace-1.1.8/mode/html_highlight_rules.js +111 -0
- data/vendor/assets/ace-1.1.8/mode/html_ruby.js +59 -0
- data/vendor/assets/ace-1.1.8/mode/html_ruby_highlight_rules.js +84 -0
- data/vendor/assets/ace-1.1.8/mode/html_test.js +67 -0
- data/vendor/assets/ace-1.1.8/mode/html_worker.js +92 -0
- data/vendor/assets/ace-1.1.8/mode/ini.js +53 -0
- data/vendor/assets/ace-1.1.8/mode/ini_highlight_rules.js +112 -0
- data/vendor/assets/ace-1.1.8/mode/io.js +58 -0
- data/vendor/assets/ace-1.1.8/mode/io_highlight_rules.js +120 -0
- data/vendor/assets/ace-1.1.8/mode/jack.js +79 -0
- data/vendor/assets/ace-1.1.8/mode/jack_highlight_rules.js +142 -0
- data/vendor/assets/ace-1.1.8/mode/jade.js +57 -0
- data/vendor/assets/ace-1.1.8/mode/jade_highlight_rules.js +341 -0
- data/vendor/assets/ace-1.1.8/mode/java.js +24 -0
- data/vendor/assets/ace-1.1.8/mode/java_highlight_rules.js +128 -0
- data/vendor/assets/ace-1.1.8/mode/javascript.js +116 -0
- data/vendor/assets/ace-1.1.8/mode/javascript/jshint.js +9459 -0
- data/vendor/assets/ace-1.1.8/mode/javascript_highlight_rules.js +405 -0
- data/vendor/assets/ace-1.1.8/mode/javascript_test.js +213 -0
- data/vendor/assets/ace-1.1.8/mode/javascript_worker.js +187 -0
- data/vendor/assets/ace-1.1.8/mode/javascript_worker_test.js +106 -0
- data/vendor/assets/ace-1.1.8/mode/js_regex_highlight_rules.js +94 -0
- data/vendor/assets/ace-1.1.8/mode/json.js +93 -0
- data/vendor/assets/ace-1.1.8/mode/json/json_parse.js +346 -0
- data/vendor/assets/ace-1.1.8/mode/json_highlight_rules.js +100 -0
- data/vendor/assets/ace-1.1.8/mode/json_worker.js +68 -0
- data/vendor/assets/ace-1.1.8/mode/json_worker_test.js +101 -0
- data/vendor/assets/ace-1.1.8/mode/jsoniq.js +203 -0
- data/vendor/assets/ace-1.1.8/mode/jsp.js +55 -0
- data/vendor/assets/ace-1.1.8/mode/jsp_highlight_rules.js +91 -0
- data/vendor/assets/ace-1.1.8/mode/jsx.js +56 -0
- data/vendor/assets/ace-1.1.8/mode/jsx_highlight_rules.js +120 -0
- data/vendor/assets/ace-1.1.8/mode/julia.js +62 -0
- data/vendor/assets/ace-1.1.8/mode/julia_highlight_rules.js +170 -0
- data/vendor/assets/ace-1.1.8/mode/latex.js +26 -0
- data/vendor/assets/ace-1.1.8/mode/latex_highlight_rules.js +73 -0
- data/vendor/assets/ace-1.1.8/mode/less.js +84 -0
- data/vendor/assets/ace-1.1.8/mode/less_highlight_rules.js +271 -0
- data/vendor/assets/ace-1.1.8/mode/liquid.js +82 -0
- data/vendor/assets/ace-1.1.8/mode/liquid_highlight_rules.js +131 -0
- data/vendor/assets/ace-1.1.8/mode/lisp.js +56 -0
- data/vendor/assets/ace-1.1.8/mode/lisp_highlight_rules.js +124 -0
- data/vendor/assets/ace-1.1.8/mode/livescript.js +249 -0
- data/vendor/assets/ace-1.1.8/mode/logiql.js +139 -0
- data/vendor/assets/ace-1.1.8/mode/logiql_highlight_rules.js +119 -0
- data/vendor/assets/ace-1.1.8/mode/logiql_test.js +98 -0
- data/vendor/assets/ace-1.1.8/mode/lsl.js +92 -0
- data/vendor/assets/ace-1.1.8/mode/lsl_highlight_rules.js +123 -0
- data/vendor/assets/ace-1.1.8/mode/lua.js +168 -0
- data/vendor/assets/ace-1.1.8/mode/lua/luaparse.js +1989 -0
- data/vendor/assets/ace-1.1.8/mode/lua_highlight_rules.js +193 -0
- data/vendor/assets/ace-1.1.8/mode/lua_worker.js +71 -0
- data/vendor/assets/ace-1.1.8/mode/luapage.js +24 -0
- data/vendor/assets/ace-1.1.8/mode/luapage_highlight_rules.js +49 -0
- data/vendor/assets/ace-1.1.8/mode/lucene.js +19 -0
- data/vendor/assets/ace-1.1.8/mode/lucene_highlight_rules.js +49 -0
- data/vendor/assets/ace-1.1.8/mode/makefile.js +58 -0
- data/vendor/assets/ace-1.1.8/mode/makefile_highlight_rules.js +75 -0
- data/vendor/assets/ace-1.1.8/mode/markdown.js +76 -0
- data/vendor/assets/ace-1.1.8/mode/markdown_highlight_rules.js +228 -0
- data/vendor/assets/ace-1.1.8/mode/matching_brace_outdent.js +69 -0
- data/vendor/assets/ace-1.1.8/mode/matching_parens_outdent.js +74 -0
- data/vendor/assets/ace-1.1.8/mode/matlab.js +55 -0
- data/vendor/assets/ace-1.1.8/mode/matlab_highlight_rules.js +262 -0
- data/vendor/assets/ace-1.1.8/mode/mel.js +56 -0
- data/vendor/assets/ace-1.1.8/mode/mel_highlight_rules.js +133 -0
- data/vendor/assets/ace-1.1.8/mode/mushcode.js +116 -0
- data/vendor/assets/ace-1.1.8/mode/mushcode_highlight_rules.js +569 -0
- data/vendor/assets/ace-1.1.8/mode/mysql.js +51 -0
- data/vendor/assets/ace-1.1.8/mode/mysql_highlight_rules.js +122 -0
- data/vendor/assets/ace-1.1.8/mode/nix.js +62 -0
- data/vendor/assets/ace-1.1.8/mode/nix_highlight_rules.js +119 -0
- data/vendor/assets/ace-1.1.8/mode/objectivec.js +61 -0
- data/vendor/assets/ace-1.1.8/mode/objectivec_highlight_rules.js +331 -0
- data/vendor/assets/ace-1.1.8/mode/ocaml.js +97 -0
- data/vendor/assets/ace-1.1.8/mode/ocaml_highlight_rules.js +337 -0
- data/vendor/assets/ace-1.1.8/mode/pascal.js +67 -0
- data/vendor/assets/ace-1.1.8/mode/pascal_highlight_rules.js +127 -0
- data/vendor/assets/ace-1.1.8/mode/perl.js +90 -0
- data/vendor/assets/ace-1.1.8/mode/perl_highlight_rules.js +165 -0
- data/vendor/assets/ace-1.1.8/mode/pgsql.js +59 -0
- data/vendor/assets/ace-1.1.8/mode/pgsql_highlight_rules.js +619 -0
- data/vendor/assets/ace-1.1.8/mode/php.js +158 -0
- data/vendor/assets/ace-1.1.8/mode/php/php.js +5031 -0
- data/vendor/assets/ace-1.1.8/mode/php_highlight_rules.js +1085 -0
- data/vendor/assets/ace-1.1.8/mode/php_test.js +65 -0
- data/vendor/assets/ace-1.1.8/mode/php_worker.js +81 -0
- data/vendor/assets/ace-1.1.8/mode/plain_text.js +55 -0
- data/vendor/assets/ace-1.1.8/mode/plain_text_test.js +56 -0
- data/vendor/assets/ace-1.1.8/mode/powershell.js +61 -0
- data/vendor/assets/ace-1.1.8/mode/powershell_highlight_rules.js +145 -0
- data/vendor/assets/ace-1.1.8/mode/praat.js +84 -0
- data/vendor/assets/ace-1.1.8/mode/praat_highlight_rules.js +262 -0
- data/vendor/assets/ace-1.1.8/mode/prolog.js +62 -0
- data/vendor/assets/ace-1.1.8/mode/prolog_highlight_rules.js +238 -0
- data/vendor/assets/ace-1.1.8/mode/properties.js +48 -0
- data/vendor/assets/ace-1.1.8/mode/properties_highlight_rules.js +86 -0
- data/vendor/assets/ace-1.1.8/mode/protobuf.js +63 -0
- data/vendor/assets/ace-1.1.8/mode/protobuf_highlight_rules.js +66 -0
- data/vendor/assets/ace-1.1.8/mode/python.js +113 -0
- data/vendor/assets/ace-1.1.8/mode/python_highlight_rules.js +191 -0
- data/vendor/assets/ace-1.1.8/mode/python_test.js +79 -0
- data/vendor/assets/ace-1.1.8/mode/r.js +154 -0
- data/vendor/assets/ace-1.1.8/mode/r_highlight_rules.js +208 -0
- data/vendor/assets/ace-1.1.8/mode/rdoc.js +61 -0
- data/vendor/assets/ace-1.1.8/mode/rdoc_highlight_rules.js +119 -0
- data/vendor/assets/ace-1.1.8/mode/rhtml.js +87 -0
- data/vendor/assets/ace-1.1.8/mode/rhtml_highlight_rules.js +66 -0
- data/vendor/assets/ace-1.1.8/mode/ruby.js +100 -0
- data/vendor/assets/ace-1.1.8/mode/ruby_highlight_rules.js +323 -0
- data/vendor/assets/ace-1.1.8/mode/ruby_test.js +77 -0
- data/vendor/assets/ace-1.1.8/mode/rust.js +58 -0
- data/vendor/assets/ace-1.1.8/mode/rust_highlight_rules.js +158 -0
- data/vendor/assets/ace-1.1.8/mode/sass.js +52 -0
- data/vendor/assets/ace-1.1.8/mode/sass_highlight_rules.js +79 -0
- data/vendor/assets/ace-1.1.8/mode/scad.js +99 -0
- data/vendor/assets/ace-1.1.8/mode/scad_highlight_rules.js +142 -0
- data/vendor/assets/ace-1.1.8/mode/scala.js +25 -0
- data/vendor/assets/ace-1.1.8/mode/scala_highlight_rules.js +160 -0
- data/vendor/assets/ace-1.1.8/mode/scheme.js +56 -0
- data/vendor/assets/ace-1.1.8/mode/scheme_highlight_rules.js +123 -0
- data/vendor/assets/ace-1.1.8/mode/scss.js +84 -0
- data/vendor/assets/ace-1.1.8/mode/scss_highlight_rules.js +296 -0
- data/vendor/assets/ace-1.1.8/mode/sh.js +116 -0
- data/vendor/assets/ace-1.1.8/mode/sh_highlight_rules.js +203 -0
- data/vendor/assets/ace-1.1.8/mode/sjs.js +56 -0
- data/vendor/assets/ace-1.1.8/mode/sjs_highlight_rules.js +233 -0
- data/vendor/assets/ace-1.1.8/mode/smarty.js +51 -0
- data/vendor/assets/ace-1.1.8/mode/smarty_highlight_rules.js +139 -0
- data/vendor/assets/ace-1.1.8/mode/snippets.js +113 -0
- data/vendor/assets/ace-1.1.8/mode/soy_template.js +60 -0
- data/vendor/assets/ace-1.1.8/mode/soy_template_highlight_rules.js +356 -0
- data/vendor/assets/ace-1.1.8/mode/space.js +21 -0
- data/vendor/assets/ace-1.1.8/mode/space_highlight_rules.js +56 -0
- data/vendor/assets/ace-1.1.8/mode/sql.js +53 -0
- data/vendor/assets/ace-1.1.8/mode/sql_highlight_rules.js +99 -0
- data/vendor/assets/ace-1.1.8/mode/stylus.js +62 -0
- data/vendor/assets/ace-1.1.8/mode/stylus_highlight_rules.js +165 -0
- data/vendor/assets/ace-1.1.8/mode/svg.js +69 -0
- data/vendor/assets/ace-1.1.8/mode/svg_highlight_rules.js +49 -0
- data/vendor/assets/ace-1.1.8/mode/tcl.js +84 -0
- data/vendor/assets/ace-1.1.8/mode/tcl_highlight_rules.js +172 -0
- data/vendor/assets/ace-1.1.8/mode/tex.js +68 -0
- data/vendor/assets/ace-1.1.8/mode/tex_highlight_rules.js +127 -0
- data/vendor/assets/ace-1.1.8/mode/text.js +386 -0
- data/vendor/assets/ace-1.1.8/mode/text_highlight_rules.js +234 -0
- data/vendor/assets/ace-1.1.8/mode/text_test.js +64 -0
- data/vendor/assets/ace-1.1.8/mode/textile.js +67 -0
- data/vendor/assets/ace-1.1.8/mode/textile_highlight_rules.js +93 -0
- data/vendor/assets/ace-1.1.8/mode/toml.js +56 -0
- data/vendor/assets/ace-1.1.8/mode/toml_highlight_rules.js +103 -0
- data/vendor/assets/ace-1.1.8/mode/twig.js +81 -0
- data/vendor/assets/ace-1.1.8/mode/twig_highlight_rules.js +166 -0
- data/vendor/assets/ace-1.1.8/mode/typescript.js +62 -0
- data/vendor/assets/ace-1.1.8/mode/typescript_highlight_rules.js +98 -0
- data/vendor/assets/ace-1.1.8/mode/vala.js +105 -0
- data/vendor/assets/ace-1.1.8/mode/vala_highlight_rules.js +457 -0
- data/vendor/assets/ace-1.1.8/mode/vbscript.js +60 -0
- data/vendor/assets/ace-1.1.8/mode/vbscript_highlight_rules.js +246 -0
- data/vendor/assets/ace-1.1.8/mode/velocity.js +58 -0
- data/vendor/assets/ace-1.1.8/mode/velocity_highlight_rules.js +177 -0
- data/vendor/assets/ace-1.1.8/mode/verilog.js +54 -0
- data/vendor/assets/ace-1.1.8/mode/verilog_highlight_rules.js +101 -0
- data/vendor/assets/ace-1.1.8/mode/vhdl.js +52 -0
- data/vendor/assets/ace-1.1.8/mode/vhdl_highlight_rules.js +115 -0
- data/vendor/assets/ace-1.1.8/mode/xml.js +59 -0
- data/vendor/assets/ace-1.1.8/mode/xml_highlight_rules.js +242 -0
- data/vendor/assets/ace-1.1.8/mode/xml_test.js +75 -0
- data/vendor/assets/ace-1.1.8/mode/xquery.js +216 -0
- data/vendor/assets/ace-1.1.8/mode/xquery/Readme.md +1 -0
- data/vendor/assets/ace-1.1.8/mode/xquery/jsoniq_lexer.js +4453 -0
- data/vendor/assets/ace-1.1.8/mode/xquery/modules.js +4 -0
- data/vendor/assets/ace-1.1.8/mode/xquery/xqlint.js +78912 -0
- data/vendor/assets/ace-1.1.8/mode/xquery/xquery_lexer.js +4422 -0
- data/vendor/assets/ace-1.1.8/mode/xquery_worker.js +115 -0
- data/vendor/assets/ace-1.1.8/mode/yaml.js +78 -0
- data/vendor/assets/ace-1.1.8/mode/yaml_highlight_rules.js +113 -0
- data/vendor/assets/ace-1.1.8/model/editor.js +62 -0
- data/vendor/assets/ace-1.1.8/mouse/default_gutter_handler.js +181 -0
- data/vendor/assets/ace-1.1.8/mouse/default_handlers.js +278 -0
- data/vendor/assets/ace-1.1.8/mouse/dragdrop_handler.js +428 -0
- data/vendor/assets/ace-1.1.8/mouse/fold_handler.js +93 -0
- data/vendor/assets/ace-1.1.8/mouse/mouse_event.js +129 -0
- data/vendor/assets/ace-1.1.8/mouse/mouse_handler.js +203 -0
- data/vendor/assets/ace-1.1.8/mouse/mouse_handler_test.js +77 -0
- data/vendor/assets/ace-1.1.8/mouse/multi_select_handler.js +208 -0
- data/vendor/assets/ace-1.1.8/multi_select.js +996 -0
- data/vendor/assets/ace-1.1.8/multi_select_test.js +199 -0
- data/vendor/assets/ace-1.1.8/occur.js +193 -0
- data/vendor/assets/ace-1.1.8/occur_test.js +154 -0
- data/vendor/assets/ace-1.1.8/placeholder.js +274 -0
- data/vendor/assets/ace-1.1.8/placeholder_test.js +156 -0
- data/vendor/assets/ace-1.1.8/range.js +549 -0
- data/vendor/assets/ace-1.1.8/range_list.js +240 -0
- data/vendor/assets/ace-1.1.8/range_list_test.js +182 -0
- data/vendor/assets/ace-1.1.8/range_test.js +191 -0
- data/vendor/assets/ace-1.1.8/renderloop.js +75 -0
- data/vendor/assets/ace-1.1.8/requirejs/text.js +52 -0
- data/vendor/assets/ace-1.1.8/requirejs/text_build.js +60 -0
- data/vendor/assets/ace-1.1.8/scrollbar.js +270 -0
- data/vendor/assets/ace-1.1.8/search.js +396 -0
- data/vendor/assets/ace-1.1.8/search_highlight.js +82 -0
- data/vendor/assets/ace-1.1.8/search_test.js +461 -0
- data/vendor/assets/ace-1.1.8/selection.js +955 -0
- data/vendor/assets/ace-1.1.8/selection_test.js +480 -0
- data/vendor/assets/ace-1.1.8/snippets.js +949 -0
- data/vendor/assets/ace-1.1.8/snippets/_.snippets +240 -0
- data/vendor/assets/ace-1.1.8/snippets/_all_modes.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/_all_modes.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/abap.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/abap.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/actionscript.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/actionscript.snippets +157 -0
- data/vendor/assets/ace-1.1.8/snippets/ada.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/ada.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/all_modes.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/all_modes.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/apache.snippets +35 -0
- data/vendor/assets/ace-1.1.8/snippets/apache_conf.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/apache_conf.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/applescript.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/applescript.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/asciidoc.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/asciidoc.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/assembly_x86.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/assembly_x86.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/autohotkey.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/autohotkey.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/autoit.snippets +66 -0
- data/vendor/assets/ace-1.1.8/snippets/batchfile.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/batchfile.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/c.snippets +235 -0
- data/vendor/assets/ace-1.1.8/snippets/c9search.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/c9search.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/c_cpp.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/c_cpp.snippets +131 -0
- data/vendor/assets/ace-1.1.8/snippets/chef.snippets +204 -0
- data/vendor/assets/ace-1.1.8/snippets/cirru.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/cirru.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/clojure.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/clojure.snippets +90 -0
- data/vendor/assets/ace-1.1.8/snippets/cmake.snippets +58 -0
- data/vendor/assets/ace-1.1.8/snippets/cobol.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/cobol.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/coffee.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/coffee.snippets +95 -0
- data/vendor/assets/ace-1.1.8/snippets/coldfusion.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/coldfusion.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/cs.snippets +374 -0
- data/vendor/assets/ace-1.1.8/snippets/csharp.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/csharp.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/css.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/css.snippets +967 -0
- data/vendor/assets/ace-1.1.8/snippets/curly.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/curly.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/d.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/d.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/dart.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/dart.snippets +83 -0
- data/vendor/assets/ace-1.1.8/snippets/diff.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/diff.snippets +11 -0
- data/vendor/assets/ace-1.1.8/snippets/django.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/django.snippets +108 -0
- data/vendor/assets/ace-1.1.8/snippets/dockerfile.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/dockerfile.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/dot.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/dot.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/dummy.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/dummy_syntax.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/eiffel.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/eiffel.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/ejs.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/ejs.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/elixir.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/elixir.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/elm.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/elm.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/erlang.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/erlang.snippets +160 -0
- data/vendor/assets/ace-1.1.8/snippets/eruby.snippets +113 -0
- data/vendor/assets/ace-1.1.8/snippets/falcon.snippets +71 -0
- data/vendor/assets/ace-1.1.8/snippets/forth.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/forth.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/ftl.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/ftl.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/gcode.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/gcode.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/gherkin.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/gherkin.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/gitignore.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/gitignore.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/glsl.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/glsl.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/go.snippets +201 -0
- data/vendor/assets/ace-1.1.8/snippets/golang.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/golang.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/groovy.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/groovy.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/haml.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/haml.snippets +20 -0
- data/vendor/assets/ace-1.1.8/snippets/handlebars.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/handlebars.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/haskell.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/haskell.snippets +82 -0
- data/vendor/assets/ace-1.1.8/snippets/haxe.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/haxe.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/html.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/html.snippets +828 -0
- data/vendor/assets/ace-1.1.8/snippets/html_ruby.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/html_ruby.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/htmldjango.snippets +136 -0
- data/vendor/assets/ace-1.1.8/snippets/htmltornado.snippets +55 -0
- data/vendor/assets/ace-1.1.8/snippets/ini.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/ini.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/io.js +69 -0
- data/vendor/assets/ace-1.1.8/snippets/io.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/jack.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/jack.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/jade.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/jade.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/java.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/java.snippets +240 -0
- data/vendor/assets/ace-1.1.8/snippets/javascript-jquery.snippets +589 -0
- data/vendor/assets/ace-1.1.8/snippets/javascript.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/javascript.snippets +195 -0
- data/vendor/assets/ace-1.1.8/snippets/json.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/json.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/jsoniq.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/jsoniq.snippets +61 -0
- data/vendor/assets/ace-1.1.8/snippets/jsp.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/jsp.snippets +99 -0
- data/vendor/assets/ace-1.1.8/snippets/jsx.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/jsx.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/julia.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/julia.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/latex.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/latex.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/ledger.snippets +5 -0
- data/vendor/assets/ace-1.1.8/snippets/less.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/less.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/liquid.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/liquid.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/lisp.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/lisp.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/livescript.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/livescript.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/logiql.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/logiql.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/lsl.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/lsl.snippets +1066 -0
- data/vendor/assets/ace-1.1.8/snippets/lua.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/lua.snippets +21 -0
- data/vendor/assets/ace-1.1.8/snippets/luapage.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/luapage.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/lucene.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/lucene.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/makefile.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/makefile.snippets +4 -0
- data/vendor/assets/ace-1.1.8/snippets/mako.snippets +54 -0
- data/vendor/assets/ace-1.1.8/snippets/markdown.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/markdown.snippets +88 -0
- data/vendor/assets/ace-1.1.8/snippets/matlab.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/matlab.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/mel.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/mel.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/mushcode.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/mushcode.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/mushcode_high_rules.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/mushcode_high_rules.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/mysql.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/mysql.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/nix.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/nix.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/objc.snippets +247 -0
- data/vendor/assets/ace-1.1.8/snippets/objectivec.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/objectivec.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/ocaml.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/ocaml.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/pascal.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/pascal.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/perl.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/perl.snippets +347 -0
- data/vendor/assets/ace-1.1.8/snippets/pgsql.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/pgsql.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/php.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/php.snippets +377 -0
- data/vendor/assets/ace-1.1.8/snippets/plain_text.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/plain_text.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/powershell.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/powershell.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/praat.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/praat.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/prolog.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/prolog.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/properties.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/properties.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/protobuf.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/protobuf.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/python.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/python.snippets +158 -0
- data/vendor/assets/ace-1.1.8/snippets/r.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/r.snippets +121 -0
- data/vendor/assets/ace-1.1.8/snippets/rdoc.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/rdoc.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/rhtml.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/rhtml.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/rst.snippets +22 -0
- data/vendor/assets/ace-1.1.8/snippets/ruby.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/ruby.snippets +928 -0
- data/vendor/assets/ace-1.1.8/snippets/rust.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/rust.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/sass.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/sass.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/scad.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/scad.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/scala.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/scala.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/scheme.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/scheme.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/scss.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/scss.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/sh.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/sh.snippets +83 -0
- data/vendor/assets/ace-1.1.8/snippets/sjs.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/sjs.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/smarty.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/smarty.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/snippets.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/snippets.snippets +9 -0
- data/vendor/assets/ace-1.1.8/snippets/soy_template.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/soy_template.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/space.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/space.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/sql.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/sql.snippets +26 -0
- data/vendor/assets/ace-1.1.8/snippets/stylus.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/stylus.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/svg.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/svg.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/tcl.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/tcl.snippets +92 -0
- data/vendor/assets/ace-1.1.8/snippets/tex.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/tex.snippets +191 -0
- data/vendor/assets/ace-1.1.8/snippets/text.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/text.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/textile.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/textile.snippets +30 -0
- data/vendor/assets/ace-1.1.8/snippets/tmsnippet.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/toml.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/toml.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/twig.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/twig.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/typescript.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/typescript.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/vala.js +195 -0
- data/vendor/assets/ace-1.1.8/snippets/vala.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/vbscript.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/vbscript.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/velocity.js +8 -0
- data/vendor/assets/ace-1.1.8/snippets/velocity.snippets +28 -0
- data/vendor/assets/ace-1.1.8/snippets/verilog.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/verilog.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/vhdl.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/vhdl.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/xml.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/xml.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets/xquery.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/xquery.snippets +61 -0
- data/vendor/assets/ace-1.1.8/snippets/xslt.snippets +97 -0
- data/vendor/assets/ace-1.1.8/snippets/yaml.js +7 -0
- data/vendor/assets/ace-1.1.8/snippets/yaml.snippets +0 -0
- data/vendor/assets/ace-1.1.8/snippets_test.js +131 -0
- data/vendor/assets/ace-1.1.8/split.js +373 -0
- data/vendor/assets/ace-1.1.8/test/all.js +35 -0
- data/vendor/assets/ace-1.1.8/test/all_browser.js +141 -0
- data/vendor/assets/ace-1.1.8/test/assertions.js +56 -0
- data/vendor/assets/ace-1.1.8/test/asyncjs/assert.js +313 -0
- data/vendor/assets/ace-1.1.8/test/asyncjs/async.js +529 -0
- data/vendor/assets/ace-1.1.8/test/asyncjs/index.js +13 -0
- data/vendor/assets/ace-1.1.8/test/asyncjs/test.js +195 -0
- data/vendor/assets/ace-1.1.8/test/asyncjs/utils.js +65 -0
- data/vendor/assets/ace-1.1.8/test/benchmark.js +78 -0
- data/vendor/assets/ace-1.1.8/test/mockdom.js +10 -0
- data/vendor/assets/ace-1.1.8/test/mockrenderer.js +208 -0
- data/vendor/assets/ace-1.1.8/test/tests.html +46 -0
- data/vendor/assets/ace-1.1.8/theme/ambiance.css +221 -0
- data/vendor/assets/ace-1.1.8/theme/ambiance.js +33 -0
- data/vendor/assets/ace-1.1.8/theme/chaos.css +154 -0
- data/vendor/assets/ace-1.1.8/theme/chaos.js +33 -0
- data/vendor/assets/ace-1.1.8/theme/chrome.css +154 -0
- data/vendor/assets/ace-1.1.8/theme/chrome.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/clouds.css +112 -0
- data/vendor/assets/ace-1.1.8/theme/clouds.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/clouds_midnight.css +113 -0
- data/vendor/assets/ace-1.1.8/theme/clouds_midnight.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/cobalt.css +134 -0
- data/vendor/assets/ace-1.1.8/theme/cobalt.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/crimson_editor.css +143 -0
- data/vendor/assets/ace-1.1.8/theme/crimson_editor.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/dawn.css +127 -0
- data/vendor/assets/ace-1.1.8/theme/dawn.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/dreamweaver.css +176 -0
- data/vendor/assets/ace-1.1.8/theme/dreamweaver.js +38 -0
- data/vendor/assets/ace-1.1.8/theme/eclipse.css +113 -0
- data/vendor/assets/ace-1.1.8/theme/eclipse.js +41 -0
- data/vendor/assets/ace-1.1.8/theme/github.css +119 -0
- data/vendor/assets/ace-1.1.8/theme/github.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/idle_fingers.css +113 -0
- data/vendor/assets/ace-1.1.8/theme/idle_fingers.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/katzenmilch.css +140 -0
- data/vendor/assets/ace-1.1.8/theme/katzenmilch.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/kr_theme.css +124 -0
- data/vendor/assets/ace-1.1.8/theme/kr_theme.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/kuroir.css +67 -0
- data/vendor/assets/ace-1.1.8/theme/kuroir.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/merbivore.css +110 -0
- data/vendor/assets/ace-1.1.8/theme/merbivore.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/merbivore_soft.css +111 -0
- data/vendor/assets/ace-1.1.8/theme/merbivore_soft.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/mono_industrial.css +126 -0
- data/vendor/assets/ace-1.1.8/theme/mono_industrial.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/monokai.css +122 -0
- data/vendor/assets/ace-1.1.8/theme/monokai.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/pastel_on_dark.css +129 -0
- data/vendor/assets/ace-1.1.8/theme/pastel_on_dark.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/solarized_dark.css +101 -0
- data/vendor/assets/ace-1.1.8/theme/solarized_dark.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/solarized_light.css +106 -0
- data/vendor/assets/ace-1.1.8/theme/solarized_light.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/terminal.css +132 -0
- data/vendor/assets/ace-1.1.8/theme/terminal.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/textmate.css +155 -0
- data/vendor/assets/ace-1.1.8/theme/textmate.js +40 -0
- data/vendor/assets/ace-1.1.8/theme/tomorrow.css +125 -0
- data/vendor/assets/ace-1.1.8/theme/tomorrow.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/tomorrow_night.css +125 -0
- data/vendor/assets/ace-1.1.8/theme/tomorrow_night.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/tomorrow_night_blue.css +122 -0
- data/vendor/assets/ace-1.1.8/theme/tomorrow_night_blue.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/tomorrow_night_bright.css +141 -0
- data/vendor/assets/ace-1.1.8/theme/tomorrow_night_bright.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/tomorrow_night_eighties.css +125 -0
- data/vendor/assets/ace-1.1.8/theme/tomorrow_night_eighties.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/twilight.css +128 -0
- data/vendor/assets/ace-1.1.8/theme/twilight.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/vibrant_ink.css +110 -0
- data/vendor/assets/ace-1.1.8/theme/vibrant_ink.js +39 -0
- data/vendor/assets/ace-1.1.8/theme/xcode.css +103 -0
- data/vendor/assets/ace-1.1.8/theme/xcode.js +39 -0
- data/vendor/assets/ace-1.1.8/token_iterator.js +150 -0
- data/vendor/assets/ace-1.1.8/token_iterator_test.js +212 -0
- data/vendor/assets/ace-1.1.8/tokenizer.js +366 -0
- data/vendor/assets/ace-1.1.8/tokenizer_dev.js +183 -0
- data/vendor/assets/ace-1.1.8/tokenizer_test.js +97 -0
- data/vendor/assets/ace-1.1.8/tooltip.js +138 -0
- data/vendor/assets/ace-1.1.8/undomanager.js +168 -0
- data/vendor/assets/ace-1.1.8/unicode.js +107 -0
- data/vendor/assets/ace-1.1.8/virtual_renderer.js +1759 -0
- data/vendor/assets/ace-1.1.8/virtual_renderer_test.js +86 -0
- data/vendor/assets/ace-1.1.8/worker/mirror.js +49 -0
- data/vendor/assets/ace-1.1.8/worker/worker.js +193 -0
- data/vendor/assets/ace-1.1.8/worker/worker_client.js +255 -0
- data/vendor/assets/ace-1.1.8/worker/worker_test.js +125 -0
- data/vendor/assets/ckeditor-4.4.7/CHANGES.md +720 -0
- data/vendor/assets/ckeditor-4.4.7/LICENSE.md +1264 -0
- data/vendor/assets/ckeditor-4.4.7/README.md +39 -0
- data/vendor/assets/ckeditor-4.4.7/adapters/jquery.js +10 -0
- data/vendor/assets/ckeditor-4.4.7/build-config.js +83 -0
- data/vendor/assets/ckeditor-4.4.7/ckeditor.js +829 -0
- data/vendor/assets/ckeditor-4.4.7/config.js +34 -0
- data/vendor/assets/ckeditor-4.4.7/contents.css +134 -0
- data/vendor/assets/ckeditor-4.4.7/lang/en.js +5 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/clipboard/dialogs/paste.js +11 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/dialog/dialogDefinition.js +4 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/icons.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/icons_hidpi.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/image/dialogs/image.js +43 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/image/images/noimage.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/link/dialogs/anchor.js +7 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/link/dialogs/link.js +26 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/link/images/anchor.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/link/images/hidpi/anchor.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/magicline/images/hidpi/icon-rtl.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/magicline/images/hidpi/icon.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/magicline/images/icon-rtl.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/magicline/images/icon.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/pastefromword/filter/default.js +31 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/showblocks/images/block_address.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/showblocks/images/block_blockquote.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/showblocks/images/block_div.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/showblocks/images/block_h1.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/showblocks/images/block_h2.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/showblocks/images/block_h3.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/showblocks/images/block_h4.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/showblocks/images/block_h5.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/showblocks/images/block_h6.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/showblocks/images/block_p.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/showblocks/images/block_pre.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/_translationstatus.txt +20 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/af.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/ar.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/bg.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/ca.js +14 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/cs.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/cy.js +14 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/da.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/de.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/el.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/en-gb.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/en.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/eo.js +12 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/es.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/et.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/fa.js +12 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/fi.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/fr-ca.js +10 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/fr.js +11 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/gl.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/he.js +12 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/hr.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/hu.js +12 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/id.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/it.js +14 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/ja.js +9 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/km.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/ku.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/lt.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/lv.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/nb.js +11 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/nl.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/no.js +11 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/pl.js +12 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/pt-br.js +11 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/pt.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/ru.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/si.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/sk.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/sl.js +12 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/sq.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/sv.js +11 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/th.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/tr.js +12 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/tt.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/ug.js +13 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/uk.js +12 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/vi.js +14 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/zh-cn.js +9 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/lang/zh.js +12 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/specialchar/dialogs/specialchar.js +14 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/table/dialogs/table.js +21 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/templates/dialogs/templates.css +84 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/templates/dialogs/templates.js +10 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/templates/templates/default.js +6 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/templates/templates/images/template1.gif +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/templates/templates/images/template2.gif +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/templates/templates/images/template3.gif +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/uploadcare/README.md +64 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/uploadcare/icons/hidpi/uploadcare.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/plugins/uploadcare/icons/uploadcare.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/samples/ajax.html +82 -0
- data/vendor/assets/ckeditor-4.4.7/samples/api.html +207 -0
- data/vendor/assets/ckeditor-4.4.7/samples/appendto.html +56 -0
- data/vendor/assets/ckeditor-4.4.7/samples/assets/inlineall/logo.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/samples/assets/outputxhtml/outputxhtml.css +204 -0
- data/vendor/assets/ckeditor-4.4.7/samples/assets/posteddata.php +59 -0
- data/vendor/assets/ckeditor-4.4.7/samples/assets/sample.jpg +0 -0
- data/vendor/assets/ckeditor-4.4.7/samples/assets/uilanguages/languages.js +7 -0
- data/vendor/assets/ckeditor-4.4.7/samples/datafiltering.html +401 -0
- data/vendor/assets/ckeditor-4.4.7/samples/divreplace.html +141 -0
- data/vendor/assets/ckeditor-4.4.7/samples/index.html +119 -0
- data/vendor/assets/ckeditor-4.4.7/samples/inlineall.html +311 -0
- data/vendor/assets/ckeditor-4.4.7/samples/inlinebycode.html +121 -0
- data/vendor/assets/ckeditor-4.4.7/samples/inlinetextarea.html +110 -0
- data/vendor/assets/ckeditor-4.4.7/samples/jquery.html +100 -0
- data/vendor/assets/ckeditor-4.4.7/samples/plugins/dialog/assets/my_dialog.js +48 -0
- data/vendor/assets/ckeditor-4.4.7/samples/plugins/dialog/dialog.html +187 -0
- data/vendor/assets/ckeditor-4.4.7/samples/plugins/enterkey/enterkey.html +103 -0
- data/vendor/assets/ckeditor-4.4.7/samples/plugins/magicline/magicline.html +206 -0
- data/vendor/assets/ckeditor-4.4.7/samples/plugins/toolbar/toolbar.html +232 -0
- data/vendor/assets/ckeditor-4.4.7/samples/readonly.html +73 -0
- data/vendor/assets/ckeditor-4.4.7/samples/replacebyclass.html +57 -0
- data/vendor/assets/ckeditor-4.4.7/samples/replacebycode.html +56 -0
- data/vendor/assets/ckeditor-4.4.7/samples/sample.css +365 -0
- data/vendor/assets/ckeditor-4.4.7/samples/sample.js +50 -0
- data/vendor/assets/ckeditor-4.4.7/samples/sample_posteddata.php +16 -0
- data/vendor/assets/ckeditor-4.4.7/samples/tabindex.html +75 -0
- data/vendor/assets/ckeditor-4.4.7/samples/uicolor.html +69 -0
- data/vendor/assets/ckeditor-4.4.7/samples/uilanguages.html +119 -0
- data/vendor/assets/ckeditor-4.4.7/samples/xhtmlstyle.html +231 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/dialog.css +5 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/dialog_ie.css +5 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/dialog_ie7.css +5 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/dialog_ie8.css +5 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/dialog_iequirks.css +5 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/editor.css +5 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/editor_gecko.css +5 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/editor_ie.css +5 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/editor_ie7.css +5 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/editor_ie8.css +5 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/editor_iequirks.css +5 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/icons.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/icons_hidpi.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/images/arrow.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/images/close.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/images/hidpi/close.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/images/hidpi/lock-open.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/images/hidpi/lock.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/images/hidpi/refresh.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/images/lock-open.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/images/lock.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/images/refresh.png +0 -0
- data/vendor/assets/ckeditor-4.4.7/skins/flat/readme.md +8 -0
- data/vendor/assets/ckeditor-4.4.7/styles.js +111 -0
- data/vendor/assets/javascripts/backbone.js +1608 -0
- data/vendor/assets/javascripts/backbone.memento.js +159 -0
- data/vendor/assets/javascripts/jquery-ui.js +14987 -0
- data/vendor/assets/javascripts/jquery.js +10346 -0
- data/vendor/assets/javascripts/jquery.noty.js +1436 -0
- data/vendor/assets/javascripts/require.js +36 -0
- data/vendor/assets/javascripts/text.js +391 -0
- data/vendor/assets/javascripts/underscore.js +1536 -0
- metadata +1287 -0
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
/* ***** BEGIN LICENSE BLOCK *****
|
|
2
|
+
* Distributed under the BSD license:
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2010, Ajax.org B.V.
|
|
5
|
+
* All rights reserved.
|
|
6
|
+
*
|
|
7
|
+
* Redistribution and use in source and binary forms, with or without
|
|
8
|
+
* modification, are permitted provided that the following conditions are met:
|
|
9
|
+
* * Redistributions of source code must retain the above copyright
|
|
10
|
+
* notice, this list of conditions and the following disclaimer.
|
|
11
|
+
* * Redistributions in binary form must reproduce the above copyright
|
|
12
|
+
* notice, this list of conditions and the following disclaimer in the
|
|
13
|
+
* documentation and/or other materials provided with the distribution.
|
|
14
|
+
* * Neither the name of Ajax.org B.V. nor the
|
|
15
|
+
* names of its contributors may be used to endorse or promote products
|
|
16
|
+
* derived from this software without specific prior written permission.
|
|
17
|
+
*
|
|
18
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
19
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
20
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
21
|
+
* DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
|
|
22
|
+
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
23
|
+
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
24
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
25
|
+
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
26
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
27
|
+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
28
|
+
*
|
|
29
|
+
* ***** END LICENSE BLOCK ***** */
|
|
30
|
+
define(function(require, exports, module) {
|
|
31
|
+
"use strict";
|
|
32
|
+
|
|
33
|
+
var Range = require("./range").Range;
|
|
34
|
+
var EventEmitter = require("./lib/event_emitter").EventEmitter;
|
|
35
|
+
var oop = require("./lib/oop");
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* @class PlaceHolder
|
|
39
|
+
*
|
|
40
|
+
**/
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* - session (Document): The document to associate with the anchor
|
|
44
|
+
* - length (Number): The starting row position
|
|
45
|
+
* - pos (Number): The starting column position
|
|
46
|
+
* - others (String):
|
|
47
|
+
* - mainClass (String):
|
|
48
|
+
* - othersClass (String):
|
|
49
|
+
*
|
|
50
|
+
* @constructor
|
|
51
|
+
**/
|
|
52
|
+
|
|
53
|
+
var PlaceHolder = function(session, length, pos, others, mainClass, othersClass) {
|
|
54
|
+
var _self = this;
|
|
55
|
+
this.length = length;
|
|
56
|
+
this.session = session;
|
|
57
|
+
this.doc = session.getDocument();
|
|
58
|
+
this.mainClass = mainClass;
|
|
59
|
+
this.othersClass = othersClass;
|
|
60
|
+
this.$onUpdate = this.onUpdate.bind(this);
|
|
61
|
+
this.doc.on("change", this.$onUpdate);
|
|
62
|
+
this.$others = others;
|
|
63
|
+
|
|
64
|
+
this.$onCursorChange = function() {
|
|
65
|
+
setTimeout(function() {
|
|
66
|
+
_self.onCursorChange();
|
|
67
|
+
});
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
this.$pos = pos;
|
|
71
|
+
// Used for reset
|
|
72
|
+
var undoStack = session.getUndoManager().$undoStack || session.getUndoManager().$undostack || {length: -1};
|
|
73
|
+
this.$undoStackDepth = undoStack.length;
|
|
74
|
+
this.setup();
|
|
75
|
+
|
|
76
|
+
session.selection.on("changeCursor", this.$onCursorChange);
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
(function() {
|
|
80
|
+
|
|
81
|
+
oop.implement(this, EventEmitter);
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* PlaceHolder.setup()
|
|
85
|
+
*
|
|
86
|
+
* TODO
|
|
87
|
+
*
|
|
88
|
+
**/
|
|
89
|
+
this.setup = function() {
|
|
90
|
+
var _self = this;
|
|
91
|
+
var doc = this.doc;
|
|
92
|
+
var session = this.session;
|
|
93
|
+
var pos = this.$pos;
|
|
94
|
+
|
|
95
|
+
this.selectionBefore = session.selection.toJSON();
|
|
96
|
+
if (session.selection.inMultiSelectMode)
|
|
97
|
+
session.selection.toSingleRange();
|
|
98
|
+
|
|
99
|
+
this.pos = doc.createAnchor(pos.row, pos.column);
|
|
100
|
+
this.markerId = session.addMarker(new Range(pos.row, pos.column, pos.row, pos.column + this.length), this.mainClass, null, false);
|
|
101
|
+
this.pos.on("change", function(event) {
|
|
102
|
+
session.removeMarker(_self.markerId);
|
|
103
|
+
_self.markerId = session.addMarker(new Range(event.value.row, event.value.column, event.value.row, event.value.column+_self.length), _self.mainClass, null, false);
|
|
104
|
+
});
|
|
105
|
+
this.others = [];
|
|
106
|
+
this.$others.forEach(function(other) {
|
|
107
|
+
var anchor = doc.createAnchor(other.row, other.column);
|
|
108
|
+
_self.others.push(anchor);
|
|
109
|
+
});
|
|
110
|
+
session.setUndoSelect(false);
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* PlaceHolder.showOtherMarkers()
|
|
115
|
+
*
|
|
116
|
+
* TODO
|
|
117
|
+
*
|
|
118
|
+
**/
|
|
119
|
+
this.showOtherMarkers = function() {
|
|
120
|
+
if(this.othersActive) return;
|
|
121
|
+
var session = this.session;
|
|
122
|
+
var _self = this;
|
|
123
|
+
this.othersActive = true;
|
|
124
|
+
this.others.forEach(function(anchor) {
|
|
125
|
+
anchor.markerId = session.addMarker(new Range(anchor.row, anchor.column, anchor.row, anchor.column+_self.length), _self.othersClass, null, false);
|
|
126
|
+
anchor.on("change", function(event) {
|
|
127
|
+
session.removeMarker(anchor.markerId);
|
|
128
|
+
anchor.markerId = session.addMarker(new Range(event.value.row, event.value.column, event.value.row, event.value.column+_self.length), _self.othersClass, null, false);
|
|
129
|
+
});
|
|
130
|
+
});
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* PlaceHolder.hideOtherMarkers()
|
|
135
|
+
*
|
|
136
|
+
* Hides all over markers in the [[EditSession `EditSession`]] that are not the currently selected one.
|
|
137
|
+
*
|
|
138
|
+
**/
|
|
139
|
+
this.hideOtherMarkers = function() {
|
|
140
|
+
if(!this.othersActive) return;
|
|
141
|
+
this.othersActive = false;
|
|
142
|
+
for (var i = 0; i < this.others.length; i++) {
|
|
143
|
+
this.session.removeMarker(this.others[i].markerId);
|
|
144
|
+
}
|
|
145
|
+
};
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* PlaceHolder@onUpdate(e)
|
|
149
|
+
*
|
|
150
|
+
* Emitted when the place holder updates.
|
|
151
|
+
*
|
|
152
|
+
**/
|
|
153
|
+
this.onUpdate = function(event) {
|
|
154
|
+
var delta = event.data;
|
|
155
|
+
var range = delta.range;
|
|
156
|
+
if(range.start.row !== range.end.row) return;
|
|
157
|
+
if(range.start.row !== this.pos.row) return;
|
|
158
|
+
if (this.$updating) return;
|
|
159
|
+
this.$updating = true;
|
|
160
|
+
var lengthDiff = delta.action === "insertText" ? range.end.column - range.start.column : range.start.column - range.end.column;
|
|
161
|
+
|
|
162
|
+
if(range.start.column >= this.pos.column && range.start.column <= this.pos.column + this.length + 1) {
|
|
163
|
+
var distanceFromStart = range.start.column - this.pos.column;
|
|
164
|
+
this.length += lengthDiff;
|
|
165
|
+
if(!this.session.$fromUndo) {
|
|
166
|
+
if(delta.action === "insertText") {
|
|
167
|
+
for (var i = this.others.length - 1; i >= 0; i--) {
|
|
168
|
+
var otherPos = this.others[i];
|
|
169
|
+
var newPos = {row: otherPos.row, column: otherPos.column + distanceFromStart};
|
|
170
|
+
if(otherPos.row === range.start.row && range.start.column < otherPos.column)
|
|
171
|
+
newPos.column += lengthDiff;
|
|
172
|
+
this.doc.insert(newPos, delta.text);
|
|
173
|
+
}
|
|
174
|
+
} else if(delta.action === "removeText") {
|
|
175
|
+
for (var i = this.others.length - 1; i >= 0; i--) {
|
|
176
|
+
var otherPos = this.others[i];
|
|
177
|
+
var newPos = {row: otherPos.row, column: otherPos.column + distanceFromStart};
|
|
178
|
+
if(otherPos.row === range.start.row && range.start.column < otherPos.column)
|
|
179
|
+
newPos.column += lengthDiff;
|
|
180
|
+
this.doc.remove(new Range(newPos.row, newPos.column, newPos.row, newPos.column - lengthDiff));
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
// Special case: insert in beginning
|
|
184
|
+
if(range.start.column === this.pos.column && delta.action === "insertText") {
|
|
185
|
+
setTimeout(function() {
|
|
186
|
+
this.pos.setPosition(this.pos.row, this.pos.column - lengthDiff);
|
|
187
|
+
for (var i = 0; i < this.others.length; i++) {
|
|
188
|
+
var other = this.others[i];
|
|
189
|
+
var newPos = {row: other.row, column: other.column - lengthDiff};
|
|
190
|
+
if(other.row === range.start.row && range.start.column < other.column)
|
|
191
|
+
newPos.column += lengthDiff;
|
|
192
|
+
other.setPosition(newPos.row, newPos.column);
|
|
193
|
+
}
|
|
194
|
+
}.bind(this), 0);
|
|
195
|
+
}
|
|
196
|
+
else if(range.start.column === this.pos.column && delta.action === "removeText") {
|
|
197
|
+
setTimeout(function() {
|
|
198
|
+
for (var i = 0; i < this.others.length; i++) {
|
|
199
|
+
var other = this.others[i];
|
|
200
|
+
if(other.row === range.start.row && range.start.column < other.column) {
|
|
201
|
+
other.setPosition(other.row, other.column - lengthDiff);
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}.bind(this), 0);
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
this.pos._emit("change", {value: this.pos});
|
|
208
|
+
for (var i = 0; i < this.others.length; i++) {
|
|
209
|
+
this.others[i]._emit("change", {value: this.others[i]});
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
this.$updating = false;
|
|
213
|
+
};
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* PlaceHolder@onCursorChange(e)
|
|
217
|
+
*
|
|
218
|
+
* Emitted when the cursor changes.
|
|
219
|
+
*
|
|
220
|
+
**/
|
|
221
|
+
|
|
222
|
+
this.onCursorChange = function(event) {
|
|
223
|
+
if (this.$updating || !this.session) return;
|
|
224
|
+
var pos = this.session.selection.getCursor();
|
|
225
|
+
if (pos.row === this.pos.row && pos.column >= this.pos.column && pos.column <= this.pos.column + this.length) {
|
|
226
|
+
this.showOtherMarkers();
|
|
227
|
+
this._emit("cursorEnter", event);
|
|
228
|
+
} else {
|
|
229
|
+
this.hideOtherMarkers();
|
|
230
|
+
this._emit("cursorLeave", event);
|
|
231
|
+
}
|
|
232
|
+
};
|
|
233
|
+
|
|
234
|
+
/**
|
|
235
|
+
* PlaceHolder.detach()
|
|
236
|
+
*
|
|
237
|
+
* TODO
|
|
238
|
+
*
|
|
239
|
+
**/
|
|
240
|
+
this.detach = function() {
|
|
241
|
+
this.session.removeMarker(this.markerId);
|
|
242
|
+
this.hideOtherMarkers();
|
|
243
|
+
this.doc.removeEventListener("change", this.$onUpdate);
|
|
244
|
+
this.session.selection.removeEventListener("changeCursor", this.$onCursorChange);
|
|
245
|
+
this.pos.detach();
|
|
246
|
+
for (var i = 0; i < this.others.length; i++) {
|
|
247
|
+
this.others[i].detach();
|
|
248
|
+
}
|
|
249
|
+
this.session.setUndoSelect(true);
|
|
250
|
+
this.session = null;
|
|
251
|
+
};
|
|
252
|
+
|
|
253
|
+
/**
|
|
254
|
+
* PlaceHolder.cancel()
|
|
255
|
+
*
|
|
256
|
+
* TODO
|
|
257
|
+
*
|
|
258
|
+
**/
|
|
259
|
+
this.cancel = function() {
|
|
260
|
+
if(this.$undoStackDepth === -1)
|
|
261
|
+
throw Error("Canceling placeholders only supported with undo manager attached to session.");
|
|
262
|
+
var undoManager = this.session.getUndoManager();
|
|
263
|
+
var undosRequired = (undoManager.$undoStack || undoManager.$undostack).length - this.$undoStackDepth;
|
|
264
|
+
for (var i = 0; i < undosRequired; i++) {
|
|
265
|
+
undoManager.undo(true);
|
|
266
|
+
}
|
|
267
|
+
if (this.selectionBefore)
|
|
268
|
+
this.session.selection.fromJSON(this.selectionBefore);
|
|
269
|
+
};
|
|
270
|
+
}).call(PlaceHolder.prototype);
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
exports.PlaceHolder = PlaceHolder;
|
|
274
|
+
});
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
/* ***** BEGIN LICENSE BLOCK *****
|
|
2
|
+
* Distributed under the BSD license:
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2010, Ajax.org B.V.
|
|
5
|
+
* All rights reserved.
|
|
6
|
+
*
|
|
7
|
+
* Redistribution and use in source and binary forms, with or without
|
|
8
|
+
* modification, are permitted provided that the following conditions are met:
|
|
9
|
+
* * Redistributions of source code must retain the above copyright
|
|
10
|
+
* notice, this list of conditions and the following disclaimer.
|
|
11
|
+
* * Redistributions in binary form must reproduce the above copyright
|
|
12
|
+
* notice, this list of conditions and the following disclaimer in the
|
|
13
|
+
* documentation and/or other materials provided with the distribution.
|
|
14
|
+
* * Neither the name of Ajax.org B.V. nor the
|
|
15
|
+
* names of its contributors may be used to endorse or promote products
|
|
16
|
+
* derived from this software without specific prior written permission.
|
|
17
|
+
*
|
|
18
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
19
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
20
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
21
|
+
* DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
|
|
22
|
+
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
23
|
+
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
24
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
25
|
+
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
26
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
27
|
+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
28
|
+
*
|
|
29
|
+
* ***** END LICENSE BLOCK ***** */
|
|
30
|
+
|
|
31
|
+
if (typeof process !== "undefined") {
|
|
32
|
+
require("amd-loader");
|
|
33
|
+
require("./test/mockdom");
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
define(function(require, exports, module) {
|
|
37
|
+
"use strict";
|
|
38
|
+
|
|
39
|
+
var EditSession = require("./edit_session").EditSession;
|
|
40
|
+
var Editor = require("./editor").Editor;
|
|
41
|
+
var MockRenderer = require("./test/mockrenderer").MockRenderer;
|
|
42
|
+
var assert = require("./test/assertions");
|
|
43
|
+
var JavaScriptMode = require("./mode/javascript").Mode;
|
|
44
|
+
var PlaceHolder = require("./placeholder").PlaceHolder;
|
|
45
|
+
var UndoManager = require("./undomanager").UndoManager;
|
|
46
|
+
|
|
47
|
+
module.exports = {
|
|
48
|
+
|
|
49
|
+
"test: simple at the end appending of text" : function() {
|
|
50
|
+
var session = new EditSession("var a = 10;\nconsole.log(a, a);", new JavaScriptMode());
|
|
51
|
+
var editor = new Editor(new MockRenderer(), session);
|
|
52
|
+
|
|
53
|
+
new PlaceHolder(session, 1, {row: 0, column: 4}, [{row: 1, column: 12}, {row: 1, column: 15}]);
|
|
54
|
+
|
|
55
|
+
editor.moveCursorTo(0, 5);
|
|
56
|
+
editor.insert('b');
|
|
57
|
+
assert.equal(session.doc.getValue(), "var ab = 10;\nconsole.log(ab, ab);");
|
|
58
|
+
editor.insert('cd');
|
|
59
|
+
assert.equal(session.doc.getValue(), "var abcd = 10;\nconsole.log(abcd, abcd);");
|
|
60
|
+
editor.remove('left');
|
|
61
|
+
editor.remove('left');
|
|
62
|
+
editor.remove('left');
|
|
63
|
+
assert.equal(session.doc.getValue(), "var a = 10;\nconsole.log(a, a);");
|
|
64
|
+
},
|
|
65
|
+
|
|
66
|
+
"test: inserting text outside placeholder" : function() {
|
|
67
|
+
var session = new EditSession("var a = 10;\nconsole.log(a, a);\n", new JavaScriptMode());
|
|
68
|
+
var editor = new Editor(new MockRenderer(), session);
|
|
69
|
+
|
|
70
|
+
new PlaceHolder(session, 1, {row: 0, column: 4}, [{row: 1, column: 12}, {row: 1, column: 15}]);
|
|
71
|
+
|
|
72
|
+
editor.moveCursorTo(2, 0);
|
|
73
|
+
editor.insert('b');
|
|
74
|
+
assert.equal(session.doc.getValue(), "var a = 10;\nconsole.log(a, a);\nb");
|
|
75
|
+
},
|
|
76
|
+
|
|
77
|
+
"test: insertion at the beginning" : function(next) {
|
|
78
|
+
var session = new EditSession("var a = 10;\nconsole.log(a, a);", new JavaScriptMode());
|
|
79
|
+
var editor = new Editor(new MockRenderer(), session);
|
|
80
|
+
|
|
81
|
+
var p = new PlaceHolder(session, 1, {row: 0, column: 4}, [{row: 1, column: 12}, {row: 1, column: 15}]);
|
|
82
|
+
|
|
83
|
+
editor.moveCursorTo(0, 4);
|
|
84
|
+
editor.insert('$');
|
|
85
|
+
assert.equal(session.doc.getValue(), "var $a = 10;\nconsole.log($a, $a);");
|
|
86
|
+
editor.moveCursorTo(0, 4);
|
|
87
|
+
// Have to put this in a setTimeout because the anchor is only fixed later.
|
|
88
|
+
setTimeout(function() {
|
|
89
|
+
editor.insert('v');
|
|
90
|
+
assert.equal(session.doc.getValue(), "var v$a = 10;\nconsole.log(v$a, v$a);");
|
|
91
|
+
next();
|
|
92
|
+
}, 10);
|
|
93
|
+
},
|
|
94
|
+
|
|
95
|
+
"test: detaching placeholder" : function() {
|
|
96
|
+
var session = new EditSession("var a = 10;\nconsole.log(a, a);", new JavaScriptMode());
|
|
97
|
+
var editor = new Editor(new MockRenderer(), session);
|
|
98
|
+
|
|
99
|
+
var p = new PlaceHolder(session, 1, {row: 0, column: 4}, [{row: 1, column: 12}, {row: 1, column: 15}]);
|
|
100
|
+
|
|
101
|
+
editor.moveCursorTo(0, 5);
|
|
102
|
+
editor.insert('b');
|
|
103
|
+
assert.equal(session.doc.getValue(), "var ab = 10;\nconsole.log(ab, ab);");
|
|
104
|
+
p.detach();
|
|
105
|
+
editor.insert('cd');
|
|
106
|
+
assert.equal(session.doc.getValue(), "var abcd = 10;\nconsole.log(ab, ab);");
|
|
107
|
+
},
|
|
108
|
+
|
|
109
|
+
"test: events" : function() {
|
|
110
|
+
var session = new EditSession("var a = 10;\nconsole.log(a, a);", new JavaScriptMode());
|
|
111
|
+
var editor = new Editor(new MockRenderer(), session);
|
|
112
|
+
|
|
113
|
+
var p = new PlaceHolder(session, 1, {row: 0, column: 4}, [{row: 1, column: 12}, {row: 1, column: 15}]);
|
|
114
|
+
var entered = false;
|
|
115
|
+
var left = false;
|
|
116
|
+
p.on("cursorEnter", function() {
|
|
117
|
+
entered = true;
|
|
118
|
+
});
|
|
119
|
+
p.on("cursorLeave", function() {
|
|
120
|
+
left = true;
|
|
121
|
+
});
|
|
122
|
+
|
|
123
|
+
editor.moveCursorTo(0, 0);
|
|
124
|
+
editor.moveCursorTo(0, 4);
|
|
125
|
+
p.onCursorChange(); // Have to do this by hand because moveCursorTo doesn't trigger the event
|
|
126
|
+
assert.ok(entered);
|
|
127
|
+
editor.moveCursorTo(1, 0);
|
|
128
|
+
p.onCursorChange(); // Have to do this by hand because moveCursorTo doesn't trigger the event
|
|
129
|
+
assert.ok(left);
|
|
130
|
+
},
|
|
131
|
+
|
|
132
|
+
"test: cancel": function(next) {
|
|
133
|
+
var session = new EditSession("var a = 10;\nconsole.log(a, a);", new JavaScriptMode());
|
|
134
|
+
session.setUndoManager(new UndoManager());
|
|
135
|
+
var editor = new Editor(new MockRenderer(), session);
|
|
136
|
+
var p = new PlaceHolder(session, 1, {row: 0, column: 4}, [{row: 1, column: 12}, {row: 1, column: 15}]);
|
|
137
|
+
|
|
138
|
+
editor.moveCursorTo(0, 5);
|
|
139
|
+
editor.insert('b');
|
|
140
|
+
editor.insert('cd');
|
|
141
|
+
editor.remove('left');
|
|
142
|
+
assert.equal(session.doc.getValue(), "var abc = 10;\nconsole.log(abc, abc);");
|
|
143
|
+
// Wait a little for the changes to enter the undo stack
|
|
144
|
+
setTimeout(function() {
|
|
145
|
+
p.cancel();
|
|
146
|
+
assert.equal(session.doc.getValue(), "var a = 10;\nconsole.log(a, a);");
|
|
147
|
+
next();
|
|
148
|
+
}, 80);
|
|
149
|
+
}
|
|
150
|
+
};
|
|
151
|
+
|
|
152
|
+
});
|
|
153
|
+
|
|
154
|
+
if (typeof module !== "undefined" && module === require.main) {
|
|
155
|
+
require("asyncjs").test.testcase(module.exports).exec()
|
|
156
|
+
}
|
|
@@ -0,0 +1,549 @@
|
|
|
1
|
+
/* ***** BEGIN LICENSE BLOCK *****
|
|
2
|
+
* Distributed under the BSD license:
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2010, Ajax.org B.V.
|
|
5
|
+
* All rights reserved.
|
|
6
|
+
*
|
|
7
|
+
* Redistribution and use in source and binary forms, with or without
|
|
8
|
+
* modification, are permitted provided that the following conditions are met:
|
|
9
|
+
* * Redistributions of source code must retain the above copyright
|
|
10
|
+
* notice, this list of conditions and the following disclaimer.
|
|
11
|
+
* * Redistributions in binary form must reproduce the above copyright
|
|
12
|
+
* notice, this list of conditions and the following disclaimer in the
|
|
13
|
+
* documentation and/or other materials provided with the distribution.
|
|
14
|
+
* * Neither the name of Ajax.org B.V. nor the
|
|
15
|
+
* names of its contributors may be used to endorse or promote products
|
|
16
|
+
* derived from this software without specific prior written permission.
|
|
17
|
+
*
|
|
18
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
19
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
20
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
21
|
+
* DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
|
|
22
|
+
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
23
|
+
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
24
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
25
|
+
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
26
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
27
|
+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
28
|
+
*
|
|
29
|
+
* ***** END LICENSE BLOCK ***** */
|
|
30
|
+
|
|
31
|
+
define(function(require, exports, module) {
|
|
32
|
+
"use strict";
|
|
33
|
+
var comparePoints = function(p1, p2) {
|
|
34
|
+
return p1.row - p2.row || p1.column - p2.column;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* This object is used in various places to indicate a region within the editor. To better visualize how this works, imagine a rectangle. Each quadrant of the rectangle is analogus to a range, as ranges contain a starting row and starting column, and an ending row, and ending column.
|
|
38
|
+
* @class Range
|
|
39
|
+
**/
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Creates a new `Range` object with the given starting and ending row and column points.
|
|
43
|
+
* @param {Number} startRow The starting row
|
|
44
|
+
* @param {Number} startColumn The starting column
|
|
45
|
+
* @param {Number} endRow The ending row
|
|
46
|
+
* @param {Number} endColumn The ending column
|
|
47
|
+
*
|
|
48
|
+
* @constructor
|
|
49
|
+
**/
|
|
50
|
+
var Range = function(startRow, startColumn, endRow, endColumn) {
|
|
51
|
+
this.start = {
|
|
52
|
+
row: startRow,
|
|
53
|
+
column: startColumn
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
this.end = {
|
|
57
|
+
row: endRow,
|
|
58
|
+
column: endColumn
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
(function() {
|
|
63
|
+
/**
|
|
64
|
+
* Returns `true` if and only if the starting row and column, and ending row and column, are equivalent to those given by `range`.
|
|
65
|
+
* @param {Range} range A range to check against
|
|
66
|
+
*
|
|
67
|
+
* @return {Boolean}
|
|
68
|
+
**/
|
|
69
|
+
this.isEqual = function(range) {
|
|
70
|
+
return this.start.row === range.start.row &&
|
|
71
|
+
this.end.row === range.end.row &&
|
|
72
|
+
this.start.column === range.start.column &&
|
|
73
|
+
this.end.column === range.end.column;
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
*
|
|
78
|
+
* Returns a string containing the range's row and column information, given like this:
|
|
79
|
+
* ```
|
|
80
|
+
* [start.row/start.column] -> [end.row/end.column]
|
|
81
|
+
* ```
|
|
82
|
+
* @return {String}
|
|
83
|
+
**/
|
|
84
|
+
this.toString = function() {
|
|
85
|
+
return ("Range: [" + this.start.row + "/" + this.start.column +
|
|
86
|
+
"] -> [" + this.end.row + "/" + this.end.column + "]");
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* Returns `true` if the `row` and `column` provided are within the given range. This can better be expressed as returning `true` if:
|
|
92
|
+
* ```javascript
|
|
93
|
+
* this.start.row <= row <= this.end.row &&
|
|
94
|
+
* this.start.column <= column <= this.end.column
|
|
95
|
+
* ```
|
|
96
|
+
* @param {Number} row A row to check for
|
|
97
|
+
* @param {Number} column A column to check for
|
|
98
|
+
* @returns {Boolean}
|
|
99
|
+
* @related Range.compare
|
|
100
|
+
**/
|
|
101
|
+
|
|
102
|
+
this.contains = function(row, column) {
|
|
103
|
+
return this.compare(row, column) == 0;
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* Compares `this` range (A) with another range (B).
|
|
108
|
+
* @param {Range} range A range to compare with
|
|
109
|
+
*
|
|
110
|
+
* @related Range.compare
|
|
111
|
+
* @returns {Number} This method returns one of the following numbers:<br/>
|
|
112
|
+
* <br/>
|
|
113
|
+
* * `-2`: (B) is in front of (A), and doesn't intersect with (A)<br/>
|
|
114
|
+
* * `-1`: (B) begins before (A) but ends inside of (A)<br/>
|
|
115
|
+
* * `0`: (B) is completely inside of (A) OR (A) is completely inside of (B)<br/>
|
|
116
|
+
* * `+1`: (B) begins inside of (A) but ends outside of (A)<br/>
|
|
117
|
+
* * `+2`: (B) is after (A) and doesn't intersect with (A)<br/>
|
|
118
|
+
* * `42`: FTW state: (B) ends in (A) but starts outside of (A)
|
|
119
|
+
**/
|
|
120
|
+
this.compareRange = function(range) {
|
|
121
|
+
var cmp,
|
|
122
|
+
end = range.end,
|
|
123
|
+
start = range.start;
|
|
124
|
+
|
|
125
|
+
cmp = this.compare(end.row, end.column);
|
|
126
|
+
if (cmp == 1) {
|
|
127
|
+
cmp = this.compare(start.row, start.column);
|
|
128
|
+
if (cmp == 1) {
|
|
129
|
+
return 2;
|
|
130
|
+
} else if (cmp == 0) {
|
|
131
|
+
return 1;
|
|
132
|
+
} else {
|
|
133
|
+
return 0;
|
|
134
|
+
}
|
|
135
|
+
} else if (cmp == -1) {
|
|
136
|
+
return -2;
|
|
137
|
+
} else {
|
|
138
|
+
cmp = this.compare(start.row, start.column);
|
|
139
|
+
if (cmp == -1) {
|
|
140
|
+
return -1;
|
|
141
|
+
} else if (cmp == 1) {
|
|
142
|
+
return 42;
|
|
143
|
+
} else {
|
|
144
|
+
return 0;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
};
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* Checks the row and column points of `p` with the row and column points of the calling range.
|
|
151
|
+
*
|
|
152
|
+
* @param {Range} p A point to compare with
|
|
153
|
+
*
|
|
154
|
+
* @related Range.compare
|
|
155
|
+
* @returns {Number} This method returns one of the following numbers:<br/>
|
|
156
|
+
* * `0` if the two points are exactly equal<br/>
|
|
157
|
+
* * `-1` if `p.row` is less then the calling range<br/>
|
|
158
|
+
* * `1` if `p.row` is greater than the calling range<br/>
|
|
159
|
+
* <br/>
|
|
160
|
+
* If the starting row of the calling range is equal to `p.row`, and:<br/>
|
|
161
|
+
* * `p.column` is greater than or equal to the calling range's starting column, this returns `0`<br/>
|
|
162
|
+
* * Otherwise, it returns -1<br/>
|
|
163
|
+
*<br/>
|
|
164
|
+
* If the ending row of the calling range is equal to `p.row`, and:<br/>
|
|
165
|
+
* * `p.column` is less than or equal to the calling range's ending column, this returns `0`<br/>
|
|
166
|
+
* * Otherwise, it returns 1<br/>
|
|
167
|
+
**/
|
|
168
|
+
this.comparePoint = function(p) {
|
|
169
|
+
return this.compare(p.row, p.column);
|
|
170
|
+
};
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Checks the start and end points of `range` and compares them to the calling range. Returns `true` if the `range` is contained within the caller's range.
|
|
174
|
+
* @param {Range} range A range to compare with
|
|
175
|
+
*
|
|
176
|
+
* @returns {Boolean}
|
|
177
|
+
* @related Range.comparePoint
|
|
178
|
+
**/
|
|
179
|
+
this.containsRange = function(range) {
|
|
180
|
+
return this.comparePoint(range.start) == 0 && this.comparePoint(range.end) == 0;
|
|
181
|
+
};
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Returns `true` if passed in `range` intersects with the one calling this method.
|
|
185
|
+
* @param {Range} range A range to compare with
|
|
186
|
+
*
|
|
187
|
+
* @returns {Boolean}
|
|
188
|
+
**/
|
|
189
|
+
this.intersects = function(range) {
|
|
190
|
+
var cmp = this.compareRange(range);
|
|
191
|
+
return (cmp == -1 || cmp == 0 || cmp == 1);
|
|
192
|
+
};
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* Returns `true` if the caller's ending row point is the same as `row`, and if the caller's ending column is the same as `column`.
|
|
196
|
+
* @param {Number} row A row point to compare with
|
|
197
|
+
* @param {Number} column A column point to compare with
|
|
198
|
+
*
|
|
199
|
+
* @returns {Boolean}
|
|
200
|
+
**/
|
|
201
|
+
this.isEnd = function(row, column) {
|
|
202
|
+
return this.end.row == row && this.end.column == column;
|
|
203
|
+
};
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
* Returns `true` if the caller's starting row point is the same as `row`, and if the caller's starting column is the same as `column`.
|
|
207
|
+
* @param {Number} row A row point to compare with
|
|
208
|
+
* @param {Number} column A column point to compare with
|
|
209
|
+
*
|
|
210
|
+
* @returns {Boolean}
|
|
211
|
+
**/
|
|
212
|
+
this.isStart = function(row, column) {
|
|
213
|
+
return this.start.row == row && this.start.column == column;
|
|
214
|
+
};
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* Sets the starting row and column for the range.
|
|
218
|
+
* @param {Number} row A row point to set
|
|
219
|
+
* @param {Number} column A column point to set
|
|
220
|
+
*
|
|
221
|
+
**/
|
|
222
|
+
this.setStart = function(row, column) {
|
|
223
|
+
if (typeof row == "object") {
|
|
224
|
+
this.start.column = row.column;
|
|
225
|
+
this.start.row = row.row;
|
|
226
|
+
} else {
|
|
227
|
+
this.start.row = row;
|
|
228
|
+
this.start.column = column;
|
|
229
|
+
}
|
|
230
|
+
};
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* Sets the starting row and column for the range.
|
|
234
|
+
* @param {Number} row A row point to set
|
|
235
|
+
* @param {Number} column A column point to set
|
|
236
|
+
*
|
|
237
|
+
**/
|
|
238
|
+
this.setEnd = function(row, column) {
|
|
239
|
+
if (typeof row == "object") {
|
|
240
|
+
this.end.column = row.column;
|
|
241
|
+
this.end.row = row.row;
|
|
242
|
+
} else {
|
|
243
|
+
this.end.row = row;
|
|
244
|
+
this.end.column = column;
|
|
245
|
+
}
|
|
246
|
+
};
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* Returns `true` if the `row` and `column` are within the given range.
|
|
250
|
+
* @param {Number} row A row point to compare with
|
|
251
|
+
* @param {Number} column A column point to compare with
|
|
252
|
+
*
|
|
253
|
+
*
|
|
254
|
+
* @returns {Boolean}
|
|
255
|
+
* @related Range.compare
|
|
256
|
+
**/
|
|
257
|
+
this.inside = function(row, column) {
|
|
258
|
+
if (this.compare(row, column) == 0) {
|
|
259
|
+
if (this.isEnd(row, column) || this.isStart(row, column)) {
|
|
260
|
+
return false;
|
|
261
|
+
} else {
|
|
262
|
+
return true;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
return false;
|
|
266
|
+
};
|
|
267
|
+
|
|
268
|
+
/**
|
|
269
|
+
* Returns `true` if the `row` and `column` are within the given range's starting points.
|
|
270
|
+
* @param {Number} row A row point to compare with
|
|
271
|
+
* @param {Number} column A column point to compare with
|
|
272
|
+
*
|
|
273
|
+
* @returns {Boolean}
|
|
274
|
+
* @related Range.compare
|
|
275
|
+
**/
|
|
276
|
+
this.insideStart = function(row, column) {
|
|
277
|
+
if (this.compare(row, column) == 0) {
|
|
278
|
+
if (this.isEnd(row, column)) {
|
|
279
|
+
return false;
|
|
280
|
+
} else {
|
|
281
|
+
return true;
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
return false;
|
|
285
|
+
};
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* Returns `true` if the `row` and `column` are within the given range's ending points.
|
|
289
|
+
* @param {Number} row A row point to compare with
|
|
290
|
+
* @param {Number} column A column point to compare with
|
|
291
|
+
*
|
|
292
|
+
* @returns {Boolean}
|
|
293
|
+
* @related Range.compare
|
|
294
|
+
*
|
|
295
|
+
**/
|
|
296
|
+
this.insideEnd = function(row, column) {
|
|
297
|
+
if (this.compare(row, column) == 0) {
|
|
298
|
+
if (this.isStart(row, column)) {
|
|
299
|
+
return false;
|
|
300
|
+
} else {
|
|
301
|
+
return true;
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
return false;
|
|
305
|
+
};
|
|
306
|
+
|
|
307
|
+
/**
|
|
308
|
+
* Checks the row and column points with the row and column points of the calling range.
|
|
309
|
+
* @param {Number} row A row point to compare with
|
|
310
|
+
* @param {Number} column A column point to compare with
|
|
311
|
+
*
|
|
312
|
+
*
|
|
313
|
+
* @returns {Number} This method returns one of the following numbers:<br/>
|
|
314
|
+
* `0` if the two points are exactly equal <br/>
|
|
315
|
+
* `-1` if `p.row` is less then the calling range <br/>
|
|
316
|
+
* `1` if `p.row` is greater than the calling range <br/>
|
|
317
|
+
* <br/>
|
|
318
|
+
* If the starting row of the calling range is equal to `p.row`, and: <br/>
|
|
319
|
+
* `p.column` is greater than or equal to the calling range's starting column, this returns `0`<br/>
|
|
320
|
+
* Otherwise, it returns -1<br/>
|
|
321
|
+
* <br/>
|
|
322
|
+
* If the ending row of the calling range is equal to `p.row`, and: <br/>
|
|
323
|
+
* `p.column` is less than or equal to the calling range's ending column, this returns `0` <br/>
|
|
324
|
+
* Otherwise, it returns 1
|
|
325
|
+
**/
|
|
326
|
+
this.compare = function(row, column) {
|
|
327
|
+
if (!this.isMultiLine()) {
|
|
328
|
+
if (row === this.start.row) {
|
|
329
|
+
return column < this.start.column ? -1 : (column > this.end.column ? 1 : 0);
|
|
330
|
+
};
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
if (row < this.start.row)
|
|
334
|
+
return -1;
|
|
335
|
+
|
|
336
|
+
if (row > this.end.row)
|
|
337
|
+
return 1;
|
|
338
|
+
|
|
339
|
+
if (this.start.row === row)
|
|
340
|
+
return column >= this.start.column ? 0 : -1;
|
|
341
|
+
|
|
342
|
+
if (this.end.row === row)
|
|
343
|
+
return column <= this.end.column ? 0 : 1;
|
|
344
|
+
|
|
345
|
+
return 0;
|
|
346
|
+
};
|
|
347
|
+
|
|
348
|
+
/**
|
|
349
|
+
* Checks the row and column points with the row and column points of the calling range.
|
|
350
|
+
* @param {Number} row A row point to compare with
|
|
351
|
+
* @param {Number} column A column point to compare with
|
|
352
|
+
*
|
|
353
|
+
* @returns {Number} This method returns one of the following numbers:<br/>
|
|
354
|
+
* <br/>
|
|
355
|
+
* `0` if the two points are exactly equal<br/>
|
|
356
|
+
* `-1` if `p.row` is less then the calling range<br/>
|
|
357
|
+
* `1` if `p.row` is greater than the calling range, or if `isStart` is `true`.<br/>
|
|
358
|
+
* <br/>
|
|
359
|
+
* If the starting row of the calling range is equal to `p.row`, and:<br/>
|
|
360
|
+
* `p.column` is greater than or equal to the calling range's starting column, this returns `0`<br/>
|
|
361
|
+
* Otherwise, it returns -1<br/>
|
|
362
|
+
* <br/>
|
|
363
|
+
* If the ending row of the calling range is equal to `p.row`, and:<br/>
|
|
364
|
+
* `p.column` is less than or equal to the calling range's ending column, this returns `0`<br/>
|
|
365
|
+
* Otherwise, it returns 1
|
|
366
|
+
*
|
|
367
|
+
**/
|
|
368
|
+
this.compareStart = function(row, column) {
|
|
369
|
+
if (this.start.row == row && this.start.column == column) {
|
|
370
|
+
return -1;
|
|
371
|
+
} else {
|
|
372
|
+
return this.compare(row, column);
|
|
373
|
+
}
|
|
374
|
+
};
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* Checks the row and column points with the row and column points of the calling range.
|
|
378
|
+
* @param {Number} row A row point to compare with
|
|
379
|
+
* @param {Number} column A column point to compare with
|
|
380
|
+
*
|
|
381
|
+
*
|
|
382
|
+
* @returns {Number} This method returns one of the following numbers:<br/>
|
|
383
|
+
* `0` if the two points are exactly equal<br/>
|
|
384
|
+
* `-1` if `p.row` is less then the calling range<br/>
|
|
385
|
+
* `1` if `p.row` is greater than the calling range, or if `isEnd` is `true.<br/>
|
|
386
|
+
* <br/>
|
|
387
|
+
* If the starting row of the calling range is equal to `p.row`, and:<br/>
|
|
388
|
+
* `p.column` is greater than or equal to the calling range's starting column, this returns `0`<br/>
|
|
389
|
+
* Otherwise, it returns -1<br/>
|
|
390
|
+
*<br/>
|
|
391
|
+
* If the ending row of the calling range is equal to `p.row`, and:<br/>
|
|
392
|
+
* `p.column` is less than or equal to the calling range's ending column, this returns `0`<br/>
|
|
393
|
+
* Otherwise, it returns 1
|
|
394
|
+
*/
|
|
395
|
+
this.compareEnd = function(row, column) {
|
|
396
|
+
if (this.end.row == row && this.end.column == column) {
|
|
397
|
+
return 1;
|
|
398
|
+
} else {
|
|
399
|
+
return this.compare(row, column);
|
|
400
|
+
}
|
|
401
|
+
};
|
|
402
|
+
|
|
403
|
+
/**
|
|
404
|
+
* Checks the row and column points with the row and column points of the calling range.
|
|
405
|
+
* @param {Number} row A row point to compare with
|
|
406
|
+
* @param {Number} column A column point to compare with
|
|
407
|
+
*
|
|
408
|
+
*
|
|
409
|
+
* @returns {Number} This method returns one of the following numbers:<br/>
|
|
410
|
+
* * `1` if the ending row of the calling range is equal to `row`, and the ending column of the calling range is equal to `column`<br/>
|
|
411
|
+
* * `-1` if the starting row of the calling range is equal to `row`, and the starting column of the calling range is equal to `column`<br/>
|
|
412
|
+
* <br/>
|
|
413
|
+
* Otherwise, it returns the value after calling [[Range.compare `compare()`]].
|
|
414
|
+
*
|
|
415
|
+
**/
|
|
416
|
+
this.compareInside = function(row, column) {
|
|
417
|
+
if (this.end.row == row && this.end.column == column) {
|
|
418
|
+
return 1;
|
|
419
|
+
} else if (this.start.row == row && this.start.column == column) {
|
|
420
|
+
return -1;
|
|
421
|
+
} else {
|
|
422
|
+
return this.compare(row, column);
|
|
423
|
+
}
|
|
424
|
+
};
|
|
425
|
+
|
|
426
|
+
/**
|
|
427
|
+
* Returns the part of the current `Range` that occurs within the boundaries of `firstRow` and `lastRow` as a new `Range` object.
|
|
428
|
+
* @param {Number} firstRow The starting row
|
|
429
|
+
* @param {Number} lastRow The ending row
|
|
430
|
+
*
|
|
431
|
+
*
|
|
432
|
+
* @returns {Range}
|
|
433
|
+
**/
|
|
434
|
+
this.clipRows = function(firstRow, lastRow) {
|
|
435
|
+
if (this.end.row > lastRow)
|
|
436
|
+
var end = {row: lastRow + 1, column: 0};
|
|
437
|
+
else if (this.end.row < firstRow)
|
|
438
|
+
var end = {row: firstRow, column: 0};
|
|
439
|
+
|
|
440
|
+
if (this.start.row > lastRow)
|
|
441
|
+
var start = {row: lastRow + 1, column: 0};
|
|
442
|
+
else if (this.start.row < firstRow)
|
|
443
|
+
var start = {row: firstRow, column: 0};
|
|
444
|
+
|
|
445
|
+
return Range.fromPoints(start || this.start, end || this.end);
|
|
446
|
+
};
|
|
447
|
+
|
|
448
|
+
/**
|
|
449
|
+
* Changes the row and column points for the calling range for both the starting and ending points.
|
|
450
|
+
* @param {Number} row A new row to extend to
|
|
451
|
+
* @param {Number} column A new column to extend to
|
|
452
|
+
*
|
|
453
|
+
*
|
|
454
|
+
* @returns {Range} The original range with the new row
|
|
455
|
+
**/
|
|
456
|
+
this.extend = function(row, column) {
|
|
457
|
+
var cmp = this.compare(row, column);
|
|
458
|
+
|
|
459
|
+
if (cmp == 0)
|
|
460
|
+
return this;
|
|
461
|
+
else if (cmp == -1)
|
|
462
|
+
var start = {row: row, column: column};
|
|
463
|
+
else
|
|
464
|
+
var end = {row: row, column: column};
|
|
465
|
+
|
|
466
|
+
return Range.fromPoints(start || this.start, end || this.end);
|
|
467
|
+
};
|
|
468
|
+
|
|
469
|
+
this.isEmpty = function() {
|
|
470
|
+
return (this.start.row === this.end.row && this.start.column === this.end.column);
|
|
471
|
+
};
|
|
472
|
+
|
|
473
|
+
/**
|
|
474
|
+
*
|
|
475
|
+
* Returns `true` if the range spans across multiple lines.
|
|
476
|
+
* @returns {Boolean}
|
|
477
|
+
**/
|
|
478
|
+
this.isMultiLine = function() {
|
|
479
|
+
return (this.start.row !== this.end.row);
|
|
480
|
+
};
|
|
481
|
+
|
|
482
|
+
/**
|
|
483
|
+
*
|
|
484
|
+
* Returns a duplicate of the calling range.
|
|
485
|
+
* @returns {Range}
|
|
486
|
+
**/
|
|
487
|
+
this.clone = function() {
|
|
488
|
+
return Range.fromPoints(this.start, this.end);
|
|
489
|
+
};
|
|
490
|
+
|
|
491
|
+
/**
|
|
492
|
+
*
|
|
493
|
+
* Returns a range containing the starting and ending rows of the original range, but with a column value of `0`.
|
|
494
|
+
* @returns {Range}
|
|
495
|
+
**/
|
|
496
|
+
this.collapseRows = function() {
|
|
497
|
+
if (this.end.column == 0)
|
|
498
|
+
return new Range(this.start.row, 0, Math.max(this.start.row, this.end.row-1), 0)
|
|
499
|
+
else
|
|
500
|
+
return new Range(this.start.row, 0, this.end.row, 0)
|
|
501
|
+
};
|
|
502
|
+
|
|
503
|
+
/**
|
|
504
|
+
* Given the current `Range`, this function converts those starting and ending points into screen positions, and then returns a new `Range` object.
|
|
505
|
+
* @param {EditSession} session The `EditSession` to retrieve coordinates from
|
|
506
|
+
*
|
|
507
|
+
*
|
|
508
|
+
* @returns {Range}
|
|
509
|
+
**/
|
|
510
|
+
this.toScreenRange = function(session) {
|
|
511
|
+
var screenPosStart = session.documentToScreenPosition(this.start);
|
|
512
|
+
var screenPosEnd = session.documentToScreenPosition(this.end);
|
|
513
|
+
|
|
514
|
+
return new Range(
|
|
515
|
+
screenPosStart.row, screenPosStart.column,
|
|
516
|
+
screenPosEnd.row, screenPosEnd.column
|
|
517
|
+
);
|
|
518
|
+
};
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
/* experimental */
|
|
522
|
+
this.moveBy = function(row, column) {
|
|
523
|
+
this.start.row += row;
|
|
524
|
+
this.start.column += column;
|
|
525
|
+
this.end.row += row;
|
|
526
|
+
this.end.column += column;
|
|
527
|
+
};
|
|
528
|
+
|
|
529
|
+
}).call(Range.prototype);
|
|
530
|
+
|
|
531
|
+
/**
|
|
532
|
+
* Creates and returns a new `Range` based on the row and column of the given parameters.
|
|
533
|
+
* @param {Range} start A starting point to use
|
|
534
|
+
* @param {Range} end An ending point to use
|
|
535
|
+
*
|
|
536
|
+
* @returns {Range}
|
|
537
|
+
**/
|
|
538
|
+
Range.fromPoints = function(start, end) {
|
|
539
|
+
return new Range(start.row, start.column, end.row, end.column);
|
|
540
|
+
};
|
|
541
|
+
Range.comparePoints = comparePoints;
|
|
542
|
+
|
|
543
|
+
Range.comparePoints = function(p1, p2) {
|
|
544
|
+
return p1.row - p2.row || p1.column - p2.column;
|
|
545
|
+
};
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
exports.Range = Range;
|
|
549
|
+
});
|