esp-ckeditor 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +32 -0
- data/Rakefile +28 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/_bootstrap.js +87 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/ckeditor.js +141 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/ckeditor_base.js +227 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/ckeditor_basic.js +238 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/command.js +209 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/commanddefinition.js +129 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/config.js +423 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dataprocessor.js +65 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/comment.js +32 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/document.js +251 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/documentfragment.js +49 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/domobject.js +258 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/element.js +1691 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/elementpath.js +119 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/event.js +145 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/node.js +696 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/nodelist.js +26 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/range.js +2054 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/rangelist.js +213 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/text.js +128 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/walker.js +462 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/window.js +96 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom.js +20 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dtd.js +266 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/editor.js +1060 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/editor_basic.js +186 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/env.js +305 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/event.js +342 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/eventInfo.js +120 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/focusmanager.js +152 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/cdata.js +43 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/comment.js +60 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/element.js +308 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/filter.js +288 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/fragment.js +518 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/text.js +53 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser.js +224 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/lang.js +157 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/loader.js +240 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/plugindefinition.js +83 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/plugins.js +103 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/resourcemanager.js +238 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/scriptloader.js +180 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/skins.js +184 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/themes.js +19 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/tools.js +763 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/ui.js +128 -0
- data/app/assets/javascripts/esp-ckeditor/_source/lang/_languages.js +27 -0
- data/app/assets/javascripts/esp-ckeditor/_source/lang/en.js +815 -0
- data/app/assets/javascripts/esp-ckeditor/_source/lang/ru.js +815 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +222 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/lang/he.js +216 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/plugin.js +47 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/basicstyles/plugin.js +129 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/button/plugin.js +290 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/clipboard/dialogs/paste.js +223 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/clipboard/plugin.js +453 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/contextmenu/plugin.js +179 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialog/dialogDefinition.js +1166 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialog/plugin.js +3308 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialogadvtab/plugin.js +208 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialogui/plugin.js +1541 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/domiterator/plugin.js +361 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/editingblock/plugin.js +278 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/elementspath/plugin.js +218 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/enterkey/plugin.js +433 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/entities/plugin.js +250 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/dialogs/esp_attachment.js +234 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/images/esp_attachment.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/lang/en.js +22 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/lang/ru.js +22 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/lang/uk.js +22 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/plugin.js +23 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/dialogs/esp_audio.js +207 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/images/esp_audio.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/images/placeholder.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/lang/en.js +18 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/lang/ru.js +18 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/lang/uk.js +18 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/plugin.js +182 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_blockquote/dialogs/esp_blockquote.js +132 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_blockquote/plugin.js +235 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/dialogs/esp_image.js +1414 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/images/esp_image.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/lang/en.js +9 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/lang/ru.js +9 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/lang/uk.js +9 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/plugin.js +80 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/dialogs/esp_anchor.js +145 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/dialogs/esp_link.js +1396 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/anchor.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/esp_anchor.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/esp_link.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/esp_unlink.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/lang/en.js +8 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/lang/ru.js +8 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/lang/uk.js +8 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/plugin.js +379 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_address.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_blockquote.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_div.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h1.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h2.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h3.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h4.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h5.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h6.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_p.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_pre.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/esp_showblocks.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/plugin.js +163 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/dialogs/esp_video.js +277 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/images/esp_video.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/images/placeholder.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/lang/en.js +19 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/lang/ru.js +19 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/lang/uk.js +19 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/plugin.js +182 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/fakeobjects/plugin.js +175 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/filebrowser/plugin.js +534 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/find/dialogs/find.js +915 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/find/plugin.js +47 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/floatpanel/plugin.js +428 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/format/plugin.js +197 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/htmldataprocessor/plugin.js +596 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/htmlwriter/plugin.js +319 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/image/dialogs/image.js +1407 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/image/plugin.js +81 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/indent/plugin.js +461 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/justify/plugin.js +253 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/keystrokes/plugin.js +225 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/list/plugin.js +774 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/listblock/plugin.js +266 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +225 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/liststyle/plugin.js +66 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/maximize/plugin.js +353 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/menu/plugin.js +541 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/panel/plugin.js +400 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastefromword/filter/default.js +1367 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastefromword/plugin.js +141 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +67 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastetext/plugin.js +98 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/popup/plugin.js +64 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/removeformat/plugin.js +185 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/resize/plugin.js +168 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/richcombo/plugin.js +381 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/selection/plugin.js +1729 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/showborders/plugin.js +207 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/sourcearea/plugin.js +209 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/styles/plugin.js +1700 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/styles/styles/default.js +88 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/stylescombo/plugin.js +218 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/tab/plugin.js +367 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/table/dialogs/table.js +623 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/table/plugin.js +78 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +525 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/tabletools/plugin.js +1194 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/toolbar/plugin.js +545 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/undo/plugin.js +578 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/wysiwygarea/plugin.js +1347 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/dialog.css +988 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/editor.css +25 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/elementspath.css +73 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/icons.css +367 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/icons.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/icons_rtl.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/mini.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/noimage.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/sprites.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/mainui.css +209 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/menu.css +232 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/panel.css +227 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/presets.css +49 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/reset.css +85 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/richcombo.css +287 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/skin.js +236 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/templates.css +88 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/toolbar.css +412 -0
- data/app/assets/javascripts/esp-ckeditor/_source/themes/default/theme.js +407 -0
- data/app/assets/javascripts/esp-ckeditor/application.js +8 -0
- data/app/assets/javascripts/esp-ckeditor/ckeditor.js +137 -0
- data/app/assets/javascripts/esp-ckeditor/ckeditor.pack +194 -0
- data/app/assets/javascripts/esp-ckeditor/ckeditor_source.js +35 -0
- data/app/assets/javascripts/esp-ckeditor/ckpackager.jar +0 -0
- data/app/assets/javascripts/esp-ckeditor/ckpackager.txt +2 -0
- data/app/assets/javascripts/esp-ckeditor/config.js +147 -0
- data/app/assets/javascripts/esp-ckeditor/contents.css +38 -0
- data/app/assets/javascripts/esp-ckeditor/images/spacer.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/init_ckeditor.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/lang/he.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/basicstyles/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/button/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/clipboard/dialogs/paste.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/clipboard/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/contextmenu/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/dialog/dialogDefinition.js +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/dialog/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/dialogadvtab/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/dialogui/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/domiterator/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/editingblock/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/elementspath/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/enterkey/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/entities/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/dialogs/esp_attachment.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/images/esp_attachment.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/dialogs/esp_audio.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/images/esp_audio.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/images/placeholder.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_blockquote/dialogs/esp_blockquote.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_blockquote/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/dialogs/esp_image.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/images/esp_image.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/dialogs/esp_anchor.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/dialogs/esp_link.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/anchor.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/esp_anchor.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/esp_link.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/esp_unlink.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_address.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_blockquote.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_div.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h1.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h2.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h3.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h4.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h5.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h6.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_p.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_pre.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/esp_showblocks.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/dialogs/esp_video.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/images/esp_video.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/images/placeholder.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/fakeobjects/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/filebrowser/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/find/dialogs/find.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/find/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/floatpanel/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/format/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/htmldataprocessor/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/htmlwriter/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/image/dialogs/image.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/image/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/indent/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/justify/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/keystrokes/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/list/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/listblock/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/liststyle/dialogs/liststyle.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/liststyle/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/maximize/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/menu/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/panel/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/pastefromword/filter/default.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/pastefromword/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/pastetext/dialogs/pastetext.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/pastetext/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/popup/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/removeformat/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/resize/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/richcombo/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/selection/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/showborders/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/sourcearea/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/styles/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/styles/styles/default.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/stylescombo/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/tab/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/table/dialogs/table.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/table/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/tabletools/dialogs/tableCell.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/tabletools/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/toolbar/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/undo/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/wysiwygarea/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/dialog.css +988 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/editor.css +25 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/elementspath.css +73 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/icons.css +367 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/icons.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/icons_rtl.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/dialog_sides.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/dialog_sides.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/mini.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/noimage.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/sprites.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/sprites_ie6.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/toolbar_start.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/mainui.css +209 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/menu.css +232 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/panel.css +227 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/presets.css +49 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/reset.css +85 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/richcombo.css +287 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/skin.js +236 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/templates.css +88 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/toolbar.css +412 -0
- data/app/inputs/ckeditor_input.rb +42 -0
- data/config/routes.rb +2 -0
- data/lib/esp-ckeditor/engine.rb +9 -0
- data/lib/esp-ckeditor/version.rb +3 -0
- data/lib/esp-ckeditor.rb +17 -0
- data/lib/tasks/esp-ckeditor_tasks.rake +4 -0
- metadata +434 -0
@@ -0,0 +1,213 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
3
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
+
*/
|
5
|
+
|
6
|
+
(function()
|
7
|
+
{
|
8
|
+
/**
|
9
|
+
* Represents a list os CKEDITOR.dom.range objects, which can be easily
|
10
|
+
* iterated sequentially.
|
11
|
+
* @constructor
|
12
|
+
* @param {CKEDITOR.dom.range|Array} [ranges] The ranges contained on this list.
|
13
|
+
* Note that, if an array of ranges is specified, the range sequence
|
14
|
+
* should match its DOM order. This class will not help to sort them.
|
15
|
+
*/
|
16
|
+
CKEDITOR.dom.rangeList = function( ranges )
|
17
|
+
{
|
18
|
+
if ( ranges instanceof CKEDITOR.dom.rangeList )
|
19
|
+
return ranges;
|
20
|
+
|
21
|
+
if ( !ranges )
|
22
|
+
ranges = [];
|
23
|
+
else if ( ranges instanceof CKEDITOR.dom.range )
|
24
|
+
ranges = [ ranges ];
|
25
|
+
|
26
|
+
return CKEDITOR.tools.extend( ranges, mixins );
|
27
|
+
};
|
28
|
+
|
29
|
+
var mixins =
|
30
|
+
/** @lends CKEDITOR.dom.rangeList.prototype */
|
31
|
+
{
|
32
|
+
/**
|
33
|
+
* Creates an instance of the rangeList iterator, it should be used
|
34
|
+
* only when the ranges processing could be DOM intrusive, which
|
35
|
+
* means it may pollute and break other ranges in this list.
|
36
|
+
* Otherwise, it's enough to just iterate over this array in a for loop.
|
37
|
+
* @returns {CKEDITOR.dom.rangeListIterator}
|
38
|
+
*/
|
39
|
+
createIterator : function()
|
40
|
+
{
|
41
|
+
var rangeList = this,
|
42
|
+
bookmark = CKEDITOR.dom.walker.bookmark(),
|
43
|
+
guard = function( node ) { return ! ( node.is && node.is( 'tr' ) ); },
|
44
|
+
bookmarks = [],
|
45
|
+
current;
|
46
|
+
|
47
|
+
/**
|
48
|
+
* @lends CKEDITOR.dom.rangeListIterator.prototype
|
49
|
+
*/
|
50
|
+
return {
|
51
|
+
|
52
|
+
/**
|
53
|
+
* Retrieves the next range in the list.
|
54
|
+
* @param {Boolean} mergeConsequent Whether join two adjacent ranges into single, e.g. consequent table cells.
|
55
|
+
*/
|
56
|
+
getNextRange : function( mergeConsequent )
|
57
|
+
{
|
58
|
+
current = current == undefined ? 0 : current + 1;
|
59
|
+
|
60
|
+
var range = rangeList[ current ];
|
61
|
+
|
62
|
+
// Multiple ranges might be mangled by each other.
|
63
|
+
if ( range && rangeList.length > 1 )
|
64
|
+
{
|
65
|
+
// Bookmarking all other ranges on the first iteration,
|
66
|
+
// the range correctness after it doesn't matter since we'll
|
67
|
+
// restore them before the next iteration.
|
68
|
+
if ( !current )
|
69
|
+
{
|
70
|
+
// Make sure bookmark correctness by reverse processing.
|
71
|
+
for ( var i = rangeList.length - 1; i >= 0; i-- )
|
72
|
+
bookmarks.unshift( rangeList[ i ].createBookmark( true ) );
|
73
|
+
}
|
74
|
+
|
75
|
+
if ( mergeConsequent )
|
76
|
+
{
|
77
|
+
// Figure out how many ranges should be merged.
|
78
|
+
var mergeCount = 0;
|
79
|
+
while ( rangeList[ current + mergeCount + 1 ] )
|
80
|
+
{
|
81
|
+
var doc = range.document,
|
82
|
+
found = 0,
|
83
|
+
left = doc.getById( bookmarks[ mergeCount ].endNode ),
|
84
|
+
right = doc.getById( bookmarks[ mergeCount + 1 ].startNode ),
|
85
|
+
next;
|
86
|
+
|
87
|
+
// Check subsequent range.
|
88
|
+
while ( 1 )
|
89
|
+
{
|
90
|
+
next = left.getNextSourceNode( false );
|
91
|
+
if ( !right.equals( next ) )
|
92
|
+
{
|
93
|
+
// This could be yet another bookmark or
|
94
|
+
// walking across block boundaries.
|
95
|
+
if ( bookmark( next ) || ( next.type == CKEDITOR.NODE_ELEMENT && next.isBlockBoundary() ) )
|
96
|
+
{
|
97
|
+
left = next;
|
98
|
+
continue;
|
99
|
+
}
|
100
|
+
}
|
101
|
+
else
|
102
|
+
found = 1;
|
103
|
+
|
104
|
+
break;
|
105
|
+
}
|
106
|
+
|
107
|
+
if ( !found )
|
108
|
+
break;
|
109
|
+
|
110
|
+
mergeCount++;
|
111
|
+
}
|
112
|
+
}
|
113
|
+
|
114
|
+
range.moveToBookmark( bookmarks.shift() );
|
115
|
+
|
116
|
+
// Merge ranges finally after moving to bookmarks.
|
117
|
+
while( mergeCount-- )
|
118
|
+
{
|
119
|
+
next = rangeList[ ++current ];
|
120
|
+
next.moveToBookmark( bookmarks.shift() );
|
121
|
+
range.setEnd( next.endContainer, next.endOffset );
|
122
|
+
}
|
123
|
+
}
|
124
|
+
|
125
|
+
return range;
|
126
|
+
}
|
127
|
+
};
|
128
|
+
},
|
129
|
+
|
130
|
+
createBookmarks : function( serializable )
|
131
|
+
{
|
132
|
+
var retval = [], bookmark;
|
133
|
+
for ( var i = 0; i < this.length ; i++ )
|
134
|
+
{
|
135
|
+
retval.push( bookmark = this[ i ].createBookmark( serializable, true) );
|
136
|
+
|
137
|
+
// Updating the container & offset values for ranges
|
138
|
+
// that have been touched.
|
139
|
+
for ( var j = i + 1; j < this.length; j++ )
|
140
|
+
{
|
141
|
+
this[ j ] = updateDirtyRange( bookmark, this[ j ] );
|
142
|
+
this[ j ] = updateDirtyRange( bookmark, this[ j ], true );
|
143
|
+
}
|
144
|
+
}
|
145
|
+
return retval;
|
146
|
+
},
|
147
|
+
|
148
|
+
createBookmarks2 : function( normalized )
|
149
|
+
{
|
150
|
+
var bookmarks = [];
|
151
|
+
|
152
|
+
for ( var i = 0 ; i < this.length ; i++ )
|
153
|
+
bookmarks.push( this[ i ].createBookmark2( normalized ) );
|
154
|
+
|
155
|
+
return bookmarks;
|
156
|
+
},
|
157
|
+
|
158
|
+
/**
|
159
|
+
* Move each range in the list to the position specified by a list of bookmarks.
|
160
|
+
* @param {Array} bookmarks The list of bookmarks, each one matching a range in the list.
|
161
|
+
*/
|
162
|
+
moveToBookmarks : function( bookmarks )
|
163
|
+
{
|
164
|
+
for ( var i = 0 ; i < this.length ; i++ )
|
165
|
+
this[ i ].moveToBookmark( bookmarks[ i ] );
|
166
|
+
}
|
167
|
+
};
|
168
|
+
|
169
|
+
// Update the specified range which has been mangled by previous insertion of
|
170
|
+
// range bookmark nodes.(#3256)
|
171
|
+
function updateDirtyRange( bookmark, dirtyRange, checkEnd )
|
172
|
+
{
|
173
|
+
var serializable = bookmark.serializable,
|
174
|
+
container = dirtyRange[ checkEnd ? 'endContainer' : 'startContainer' ],
|
175
|
+
offset = checkEnd ? 'endOffset' : 'startOffset';
|
176
|
+
|
177
|
+
var bookmarkStart = serializable ?
|
178
|
+
dirtyRange.document.getById( bookmark.startNode )
|
179
|
+
: bookmark.startNode;
|
180
|
+
|
181
|
+
var bookmarkEnd = serializable ?
|
182
|
+
dirtyRange.document.getById( bookmark.endNode )
|
183
|
+
: bookmark.endNode;
|
184
|
+
|
185
|
+
if ( container.equals( bookmarkStart.getPrevious() ) )
|
186
|
+
{
|
187
|
+
dirtyRange.startOffset = dirtyRange.startOffset
|
188
|
+
- container.getLength()
|
189
|
+
- bookmarkEnd.getPrevious().getLength();
|
190
|
+
container = bookmarkEnd.getNext();
|
191
|
+
}
|
192
|
+
else if ( container.equals( bookmarkEnd.getPrevious() ) )
|
193
|
+
{
|
194
|
+
dirtyRange.startOffset = dirtyRange.startOffset - container.getLength();
|
195
|
+
container = bookmarkEnd.getNext();
|
196
|
+
}
|
197
|
+
|
198
|
+
container.equals( bookmarkStart.getParent() ) && dirtyRange[ offset ]++;
|
199
|
+
container.equals( bookmarkEnd.getParent() ) && dirtyRange[ offset ]++;
|
200
|
+
|
201
|
+
// Update and return this range.
|
202
|
+
dirtyRange[ checkEnd ? 'endContainer' : 'startContainer' ] = container;
|
203
|
+
return dirtyRange;
|
204
|
+
}
|
205
|
+
})();
|
206
|
+
|
207
|
+
/**
|
208
|
+
* (Virtual Class) Do not call this constructor. This class is not really part
|
209
|
+
* of the API. It just describes the return type of {@link CKEDITOR.dom.rangeList#createIterator}.
|
210
|
+
* @name CKEDITOR.dom.rangeListIterator
|
211
|
+
* @constructor
|
212
|
+
* @example
|
213
|
+
*/
|
@@ -0,0 +1,128 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
3
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
+
*/
|
5
|
+
|
6
|
+
/**
|
7
|
+
* @fileOverview Defines the {@link CKEDITOR.dom.text} class, which represents
|
8
|
+
* a DOM text node.
|
9
|
+
*/
|
10
|
+
|
11
|
+
/**
|
12
|
+
* Represents a DOM text node.
|
13
|
+
* @constructor
|
14
|
+
* @augments CKEDITOR.dom.node
|
15
|
+
* @param {Object|String} text A native DOM text node or a string containing
|
16
|
+
* the text to use to create a new text node.
|
17
|
+
* @param {CKEDITOR.dom.document} [ownerDocument] The document that will contain
|
18
|
+
* the node in case of new node creation. Defaults to the current document.
|
19
|
+
* @example
|
20
|
+
* var nativeNode = document.createTextNode( 'Example' );
|
21
|
+
* var text = CKEDITOR.dom.text( nativeNode );
|
22
|
+
* @example
|
23
|
+
* var text = CKEDITOR.dom.text( 'Example' );
|
24
|
+
*/
|
25
|
+
CKEDITOR.dom.text = function( text, ownerDocument )
|
26
|
+
{
|
27
|
+
if ( typeof text == 'string' )
|
28
|
+
text = ( ownerDocument ? ownerDocument.$ : document ).createTextNode( text );
|
29
|
+
|
30
|
+
// Theoretically, we should call the base constructor here
|
31
|
+
// (not CKEDITOR.dom.node though). But, IE doesn't support expando
|
32
|
+
// properties on text node, so the features provided by domObject will not
|
33
|
+
// work for text nodes (which is not a big issue for us).
|
34
|
+
//
|
35
|
+
// CKEDITOR.dom.domObject.call( this, element );
|
36
|
+
|
37
|
+
/**
|
38
|
+
* The native DOM text node represented by this class instance.
|
39
|
+
* @type Object
|
40
|
+
* @example
|
41
|
+
* var element = new CKEDITOR.dom.text( 'Example' );
|
42
|
+
* alert( element.$.nodeType ); // "3"
|
43
|
+
*/
|
44
|
+
this.$ = text;
|
45
|
+
};
|
46
|
+
|
47
|
+
CKEDITOR.dom.text.prototype = new CKEDITOR.dom.node();
|
48
|
+
|
49
|
+
CKEDITOR.tools.extend( CKEDITOR.dom.text.prototype,
|
50
|
+
/** @lends CKEDITOR.dom.text.prototype */
|
51
|
+
{
|
52
|
+
/**
|
53
|
+
* The node type. This is a constant value set to
|
54
|
+
* {@link CKEDITOR.NODE_TEXT}.
|
55
|
+
* @type Number
|
56
|
+
* @example
|
57
|
+
*/
|
58
|
+
type : CKEDITOR.NODE_TEXT,
|
59
|
+
|
60
|
+
getLength : function()
|
61
|
+
{
|
62
|
+
return this.$.nodeValue.length;
|
63
|
+
},
|
64
|
+
|
65
|
+
getText : function()
|
66
|
+
{
|
67
|
+
return this.$.nodeValue;
|
68
|
+
},
|
69
|
+
|
70
|
+
setText : function( text )
|
71
|
+
{
|
72
|
+
this.$.nodeValue = text;
|
73
|
+
},
|
74
|
+
|
75
|
+
/**
|
76
|
+
* Breaks this text node into two nodes at the specified offset,
|
77
|
+
* keeping both in the tree as siblings. This node then only contains
|
78
|
+
* all the content up to the offset point. A new text node, which is
|
79
|
+
* inserted as the next sibling of this node, contains all the content
|
80
|
+
* at and after the offset point. When the offset is equal to the
|
81
|
+
* length of this node, the new node has no data.
|
82
|
+
* @param {Number} The position at which to split, starting from zero.
|
83
|
+
* @returns {CKEDITOR.dom.text} The new text node.
|
84
|
+
*/
|
85
|
+
split : function( offset )
|
86
|
+
{
|
87
|
+
// If the offset is after the last char, IE creates the text node
|
88
|
+
// on split, but don't include it into the DOM. So, we have to do
|
89
|
+
// that manually here.
|
90
|
+
if ( CKEDITOR.env.ie && offset == this.getLength() )
|
91
|
+
{
|
92
|
+
var next = this.getDocument().createText( '' );
|
93
|
+
next.insertAfter( this );
|
94
|
+
return next;
|
95
|
+
}
|
96
|
+
|
97
|
+
var doc = this.getDocument();
|
98
|
+
var retval = new CKEDITOR.dom.text( this.$.splitText( offset ), doc );
|
99
|
+
|
100
|
+
// IE BUG: IE8 does not update the childNodes array in DOM after splitText(),
|
101
|
+
// we need to make some DOM changes to make it update. (#3436)
|
102
|
+
if ( CKEDITOR.env.ie8 )
|
103
|
+
{
|
104
|
+
var workaround = new CKEDITOR.dom.text( '', doc );
|
105
|
+
workaround.insertAfter( retval );
|
106
|
+
workaround.remove();
|
107
|
+
}
|
108
|
+
|
109
|
+
return retval;
|
110
|
+
},
|
111
|
+
|
112
|
+
/**
|
113
|
+
* Extracts characters from indexA up to but not including indexB.
|
114
|
+
* @param {Number} indexA An integer between 0 and one less than the
|
115
|
+
* length of the text.
|
116
|
+
* @param {Number} [indexB] An integer between 0 and the length of the
|
117
|
+
* string. If omitted, extracts characters to the end of the text.
|
118
|
+
*/
|
119
|
+
substring : function( indexA, indexB )
|
120
|
+
{
|
121
|
+
// We need the following check due to a Firefox bug
|
122
|
+
// https://bugzilla.mozilla.org/show_bug.cgi?id=458886
|
123
|
+
if ( typeof indexB != 'number' )
|
124
|
+
return this.$.nodeValue.substr( indexA );
|
125
|
+
else
|
126
|
+
return this.$.nodeValue.substring( indexA, indexB );
|
127
|
+
}
|
128
|
+
});
|
@@ -0,0 +1,462 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
3
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
+
*/
|
5
|
+
|
6
|
+
(function()
|
7
|
+
{
|
8
|
+
// This function is to be called under a "walker" instance scope.
|
9
|
+
function iterate( rtl, breakOnFalse )
|
10
|
+
{
|
11
|
+
// Return null if we have reached the end.
|
12
|
+
if ( this._.end )
|
13
|
+
return null;
|
14
|
+
|
15
|
+
var node,
|
16
|
+
range = this.range,
|
17
|
+
guard,
|
18
|
+
userGuard = this.guard,
|
19
|
+
type = this.type,
|
20
|
+
getSourceNodeFn = ( rtl ? 'getPreviousSourceNode' : 'getNextSourceNode' );
|
21
|
+
|
22
|
+
// This is the first call. Initialize it.
|
23
|
+
if ( !this._.start )
|
24
|
+
{
|
25
|
+
this._.start = 1;
|
26
|
+
|
27
|
+
// Trim text nodes and optmize the range boundaries. DOM changes
|
28
|
+
// may happen at this point.
|
29
|
+
range.trim();
|
30
|
+
|
31
|
+
// A collapsed range must return null at first call.
|
32
|
+
if ( range.collapsed )
|
33
|
+
{
|
34
|
+
this.end();
|
35
|
+
return null;
|
36
|
+
}
|
37
|
+
}
|
38
|
+
|
39
|
+
// Create the LTR guard function, if necessary.
|
40
|
+
if ( !rtl && !this._.guardLTR )
|
41
|
+
{
|
42
|
+
// Gets the node that stops the walker when going LTR.
|
43
|
+
var limitLTR = range.endContainer,
|
44
|
+
blockerLTR = limitLTR.getChild( range.endOffset );
|
45
|
+
|
46
|
+
this._.guardLTR = function( node, movingOut )
|
47
|
+
{
|
48
|
+
return ( ( !movingOut || !limitLTR.equals( node ) )
|
49
|
+
&& ( !blockerLTR || !node.equals( blockerLTR ) )
|
50
|
+
&& ( node.type != CKEDITOR.NODE_ELEMENT || !movingOut || node.getName() != 'body' ) );
|
51
|
+
};
|
52
|
+
}
|
53
|
+
|
54
|
+
// Create the RTL guard function, if necessary.
|
55
|
+
if ( rtl && !this._.guardRTL )
|
56
|
+
{
|
57
|
+
// Gets the node that stops the walker when going LTR.
|
58
|
+
var limitRTL = range.startContainer,
|
59
|
+
blockerRTL = ( range.startOffset > 0 ) && limitRTL.getChild( range.startOffset - 1 );
|
60
|
+
|
61
|
+
this._.guardRTL = function( node, movingOut )
|
62
|
+
{
|
63
|
+
return ( ( !movingOut || !limitRTL.equals( node ) )
|
64
|
+
&& ( !blockerRTL || !node.equals( blockerRTL ) )
|
65
|
+
&& ( node.type != CKEDITOR.NODE_ELEMENT || !movingOut || node.getName() != 'body' ) );
|
66
|
+
};
|
67
|
+
}
|
68
|
+
|
69
|
+
// Define which guard function to use.
|
70
|
+
var stopGuard = rtl ? this._.guardRTL : this._.guardLTR;
|
71
|
+
|
72
|
+
// Make the user defined guard function participate in the process,
|
73
|
+
// otherwise simply use the boundary guard.
|
74
|
+
if ( userGuard )
|
75
|
+
{
|
76
|
+
guard = function( node, movingOut )
|
77
|
+
{
|
78
|
+
if ( stopGuard( node, movingOut ) === false )
|
79
|
+
return false;
|
80
|
+
|
81
|
+
return userGuard( node, movingOut );
|
82
|
+
};
|
83
|
+
}
|
84
|
+
else
|
85
|
+
guard = stopGuard;
|
86
|
+
|
87
|
+
if ( this.current )
|
88
|
+
node = this.current[ getSourceNodeFn ]( false, type, guard );
|
89
|
+
else
|
90
|
+
{
|
91
|
+
// Get the first node to be returned.
|
92
|
+
|
93
|
+
if ( rtl )
|
94
|
+
{
|
95
|
+
node = range.endContainer;
|
96
|
+
|
97
|
+
if ( range.endOffset > 0 )
|
98
|
+
{
|
99
|
+
node = node.getChild( range.endOffset - 1 );
|
100
|
+
if ( guard( node ) === false )
|
101
|
+
node = null;
|
102
|
+
}
|
103
|
+
else
|
104
|
+
node = ( guard ( node, true ) === false ) ?
|
105
|
+
null : node.getPreviousSourceNode( true, type, guard );
|
106
|
+
}
|
107
|
+
else
|
108
|
+
{
|
109
|
+
node = range.startContainer;
|
110
|
+
node = node.getChild( range.startOffset );
|
111
|
+
|
112
|
+
if ( node )
|
113
|
+
{
|
114
|
+
if ( guard( node ) === false )
|
115
|
+
node = null;
|
116
|
+
}
|
117
|
+
else
|
118
|
+
node = ( guard ( range.startContainer, true ) === false ) ?
|
119
|
+
null : range.startContainer.getNextSourceNode( true, type, guard ) ;
|
120
|
+
}
|
121
|
+
}
|
122
|
+
|
123
|
+
while ( node && !this._.end )
|
124
|
+
{
|
125
|
+
this.current = node;
|
126
|
+
|
127
|
+
if ( !this.evaluator || this.evaluator( node ) !== false )
|
128
|
+
{
|
129
|
+
if ( !breakOnFalse )
|
130
|
+
return node;
|
131
|
+
}
|
132
|
+
else if ( breakOnFalse && this.evaluator )
|
133
|
+
return false;
|
134
|
+
|
135
|
+
node = node[ getSourceNodeFn ]( false, type, guard );
|
136
|
+
}
|
137
|
+
|
138
|
+
this.end();
|
139
|
+
return this.current = null;
|
140
|
+
}
|
141
|
+
|
142
|
+
function iterateToLast( rtl )
|
143
|
+
{
|
144
|
+
var node, last = null;
|
145
|
+
|
146
|
+
while ( ( node = iterate.call( this, rtl ) ) )
|
147
|
+
last = node;
|
148
|
+
|
149
|
+
return last;
|
150
|
+
}
|
151
|
+
|
152
|
+
CKEDITOR.dom.walker = CKEDITOR.tools.createClass(
|
153
|
+
{
|
154
|
+
/**
|
155
|
+
* Utility class to "walk" the DOM inside a range boundaries. If
|
156
|
+
* necessary, partially included nodes (text nodes) are broken to
|
157
|
+
* reflect the boundaries limits, so DOM and range changes may happen.
|
158
|
+
* Outside changes to the range may break the walker.
|
159
|
+
*
|
160
|
+
* The walker may return nodes that are not totaly included into the
|
161
|
+
* range boundaires. Let's take the following range representation,
|
162
|
+
* where the square brackets indicate the boundaries:
|
163
|
+
*
|
164
|
+
* [<p>Some <b>sample] text</b>
|
165
|
+
*
|
166
|
+
* While walking forward into the above range, the following nodes are
|
167
|
+
* returned: <p>, "Some ", <b> and "sample". Going
|
168
|
+
* backwards instead we have: "sample" and "Some ". So note that the
|
169
|
+
* walker always returns nodes when "entering" them, but not when
|
170
|
+
* "leaving" them. The guard function is instead called both when
|
171
|
+
* entering and leaving nodes.
|
172
|
+
*
|
173
|
+
* @constructor
|
174
|
+
* @param {CKEDITOR.dom.range} range The range within which walk.
|
175
|
+
*/
|
176
|
+
$ : function( range )
|
177
|
+
{
|
178
|
+
this.range = range;
|
179
|
+
|
180
|
+
/**
|
181
|
+
* A function executed for every matched node, to check whether
|
182
|
+
* it's to be considered into the walk or not. If not provided, all
|
183
|
+
* matched nodes are considered good.
|
184
|
+
* If the function returns "false" the node is ignored.
|
185
|
+
* @name CKEDITOR.dom.walker.prototype.evaluator
|
186
|
+
* @property
|
187
|
+
* @type Function
|
188
|
+
*/
|
189
|
+
// this.evaluator = null;
|
190
|
+
|
191
|
+
/**
|
192
|
+
* A function executed for every node the walk pass by to check
|
193
|
+
* whether the walk is to be finished. It's called when both
|
194
|
+
* entering and exiting nodes, as well as for the matched nodes.
|
195
|
+
* If this function returns "false", the walking ends and no more
|
196
|
+
* nodes are evaluated.
|
197
|
+
* @name CKEDITOR.dom.walker.prototype.guard
|
198
|
+
* @property
|
199
|
+
* @type Function
|
200
|
+
*/
|
201
|
+
// this.guard = null;
|
202
|
+
|
203
|
+
/** @private */
|
204
|
+
this._ = {};
|
205
|
+
},
|
206
|
+
|
207
|
+
// statics :
|
208
|
+
// {
|
209
|
+
// /* Creates a CKEDITOR.dom.walker instance to walk inside DOM boundaries set by nodes.
|
210
|
+
// * @param {CKEDITOR.dom.node} startNode The node from wich the walk
|
211
|
+
// * will start.
|
212
|
+
// * @param {CKEDITOR.dom.node} [endNode] The last node to be considered
|
213
|
+
// * in the walk. No more nodes are retrieved after touching or
|
214
|
+
// * passing it. If not provided, the walker stops at the
|
215
|
+
// * <body> closing boundary.
|
216
|
+
// * @returns {CKEDITOR.dom.walker} A DOM walker for the nodes between the
|
217
|
+
// * provided nodes.
|
218
|
+
// */
|
219
|
+
// createOnNodes : function( startNode, endNode, startInclusive, endInclusive )
|
220
|
+
// {
|
221
|
+
// var range = new CKEDITOR.dom.range();
|
222
|
+
// if ( startNode )
|
223
|
+
// range.setStartAt( startNode, startInclusive ? CKEDITOR.POSITION_BEFORE_START : CKEDITOR.POSITION_AFTER_END ) ;
|
224
|
+
// else
|
225
|
+
// range.setStartAt( startNode.getDocument().getBody(), CKEDITOR.POSITION_AFTER_START ) ;
|
226
|
+
//
|
227
|
+
// if ( endNode )
|
228
|
+
// range.setEndAt( endNode, endInclusive ? CKEDITOR.POSITION_AFTER_END : CKEDITOR.POSITION_BEFORE_START ) ;
|
229
|
+
// else
|
230
|
+
// range.setEndAt( startNode.getDocument().getBody(), CKEDITOR.POSITION_BEFORE_END ) ;
|
231
|
+
//
|
232
|
+
// return new CKEDITOR.dom.walker( range );
|
233
|
+
// }
|
234
|
+
// },
|
235
|
+
//
|
236
|
+
proto :
|
237
|
+
{
|
238
|
+
/**
|
239
|
+
* Stop walking. No more nodes are retrieved if this function gets
|
240
|
+
* called.
|
241
|
+
*/
|
242
|
+
end : function()
|
243
|
+
{
|
244
|
+
this._.end = 1;
|
245
|
+
},
|
246
|
+
|
247
|
+
/**
|
248
|
+
* Retrieves the next node (at right).
|
249
|
+
* @returns {CKEDITOR.dom.node} The next node or null if no more
|
250
|
+
* nodes are available.
|
251
|
+
*/
|
252
|
+
next : function()
|
253
|
+
{
|
254
|
+
return iterate.call( this );
|
255
|
+
},
|
256
|
+
|
257
|
+
/**
|
258
|
+
* Retrieves the previous node (at left).
|
259
|
+
* @returns {CKEDITOR.dom.node} The previous node or null if no more
|
260
|
+
* nodes are available.
|
261
|
+
*/
|
262
|
+
previous : function()
|
263
|
+
{
|
264
|
+
return iterate.call( this, 1 );
|
265
|
+
},
|
266
|
+
|
267
|
+
/**
|
268
|
+
* Check all nodes at right, executing the evaluation fuction.
|
269
|
+
* @returns {Boolean} "false" if the evaluator function returned
|
270
|
+
* "false" for any of the matched nodes. Otherwise "true".
|
271
|
+
*/
|
272
|
+
checkForward : function()
|
273
|
+
{
|
274
|
+
return iterate.call( this, 0, 1 ) !== false;
|
275
|
+
},
|
276
|
+
|
277
|
+
/**
|
278
|
+
* Check all nodes at left, executing the evaluation fuction.
|
279
|
+
* @returns {Boolean} "false" if the evaluator function returned
|
280
|
+
* "false" for any of the matched nodes. Otherwise "true".
|
281
|
+
*/
|
282
|
+
checkBackward : function()
|
283
|
+
{
|
284
|
+
return iterate.call( this, 1, 1 ) !== false;
|
285
|
+
},
|
286
|
+
|
287
|
+
/**
|
288
|
+
* Executes a full walk forward (to the right), until no more nodes
|
289
|
+
* are available, returning the last valid node.
|
290
|
+
* @returns {CKEDITOR.dom.node} The last node at the right or null
|
291
|
+
* if no valid nodes are available.
|
292
|
+
*/
|
293
|
+
lastForward : function()
|
294
|
+
{
|
295
|
+
return iterateToLast.call( this );
|
296
|
+
},
|
297
|
+
|
298
|
+
/**
|
299
|
+
* Executes a full walk backwards (to the left), until no more nodes
|
300
|
+
* are available, returning the last valid node.
|
301
|
+
* @returns {CKEDITOR.dom.node} The last node at the left or null
|
302
|
+
* if no valid nodes are available.
|
303
|
+
*/
|
304
|
+
lastBackward : function()
|
305
|
+
{
|
306
|
+
return iterateToLast.call( this, 1 );
|
307
|
+
},
|
308
|
+
|
309
|
+
reset : function()
|
310
|
+
{
|
311
|
+
delete this.current;
|
312
|
+
this._ = {};
|
313
|
+
}
|
314
|
+
|
315
|
+
}
|
316
|
+
});
|
317
|
+
|
318
|
+
/*
|
319
|
+
* Anything whose display computed style is block, list-item, table,
|
320
|
+
* table-row-group, table-header-group, table-footer-group, table-row,
|
321
|
+
* table-column-group, table-column, table-cell, table-caption, or whose node
|
322
|
+
* name is hr, br (when enterMode is br only) is a block boundary.
|
323
|
+
*/
|
324
|
+
var blockBoundaryDisplayMatch =
|
325
|
+
{
|
326
|
+
block : 1,
|
327
|
+
'list-item' : 1,
|
328
|
+
table : 1,
|
329
|
+
'table-row-group' : 1,
|
330
|
+
'table-header-group' : 1,
|
331
|
+
'table-footer-group' : 1,
|
332
|
+
'table-row' : 1,
|
333
|
+
'table-column-group' : 1,
|
334
|
+
'table-column' : 1,
|
335
|
+
'table-cell' : 1,
|
336
|
+
'table-caption' : 1
|
337
|
+
};
|
338
|
+
|
339
|
+
CKEDITOR.dom.element.prototype.isBlockBoundary = function( customNodeNames )
|
340
|
+
{
|
341
|
+
var nodeNameMatches = customNodeNames ?
|
342
|
+
CKEDITOR.tools.extend( {}, CKEDITOR.dtd.$block, customNodeNames || {} ) :
|
343
|
+
CKEDITOR.dtd.$block;
|
344
|
+
|
345
|
+
// Don't consider floated formatting as block boundary, fall back to dtd check in that case. (#6297)
|
346
|
+
return this.getComputedStyle( 'float' ) == 'none' && blockBoundaryDisplayMatch[ this.getComputedStyle( 'display' ) ]
|
347
|
+
|| nodeNameMatches[ this.getName() ];
|
348
|
+
};
|
349
|
+
|
350
|
+
CKEDITOR.dom.walker.blockBoundary = function( customNodeNames )
|
351
|
+
{
|
352
|
+
return function( node , type )
|
353
|
+
{
|
354
|
+
return ! ( node.type == CKEDITOR.NODE_ELEMENT
|
355
|
+
&& node.isBlockBoundary( customNodeNames ) );
|
356
|
+
};
|
357
|
+
};
|
358
|
+
|
359
|
+
CKEDITOR.dom.walker.listItemBoundary = function()
|
360
|
+
{
|
361
|
+
return this.blockBoundary( { br : 1 } );
|
362
|
+
};
|
363
|
+
|
364
|
+
/**
|
365
|
+
* Whether the to-be-evaluated node is a bookmark node OR bookmark node
|
366
|
+
* inner contents.
|
367
|
+
* @param {Boolean} contentOnly Whether only test againt the text content of
|
368
|
+
* bookmark node instead of the element itself(default).
|
369
|
+
* @param {Boolean} isReject Whether should return 'false' for the bookmark
|
370
|
+
* node instead of 'true'(default).
|
371
|
+
*/
|
372
|
+
CKEDITOR.dom.walker.bookmark = function( contentOnly, isReject )
|
373
|
+
{
|
374
|
+
function isBookmarkNode( node )
|
375
|
+
{
|
376
|
+
return ( node && node.getName
|
377
|
+
&& node.getName() == 'span'
|
378
|
+
&& node.data( 'cke-bookmark' ) );
|
379
|
+
}
|
380
|
+
|
381
|
+
return function( node )
|
382
|
+
{
|
383
|
+
var isBookmark, parent;
|
384
|
+
// Is bookmark inner text node?
|
385
|
+
isBookmark = ( node && !node.getName && ( parent = node.getParent() )
|
386
|
+
&& isBookmarkNode( parent ) );
|
387
|
+
// Is bookmark node?
|
388
|
+
isBookmark = contentOnly ? isBookmark : isBookmark || isBookmarkNode( node );
|
389
|
+
return !! ( isReject ^ isBookmark );
|
390
|
+
};
|
391
|
+
};
|
392
|
+
|
393
|
+
/**
|
394
|
+
* Whether the node is a text node containing only whitespaces characters.
|
395
|
+
* @param isReject
|
396
|
+
*/
|
397
|
+
CKEDITOR.dom.walker.whitespaces = function( isReject )
|
398
|
+
{
|
399
|
+
return function( node )
|
400
|
+
{
|
401
|
+
var isWhitespace = node && ( node.type == CKEDITOR.NODE_TEXT )
|
402
|
+
&& !CKEDITOR.tools.trim( node.getText() );
|
403
|
+
return !! ( isReject ^ isWhitespace );
|
404
|
+
};
|
405
|
+
};
|
406
|
+
|
407
|
+
/**
|
408
|
+
* Whether the node is invisible in wysiwyg mode.
|
409
|
+
* @param isReject
|
410
|
+
*/
|
411
|
+
CKEDITOR.dom.walker.invisible = function( isReject )
|
412
|
+
{
|
413
|
+
var whitespace = CKEDITOR.dom.walker.whitespaces();
|
414
|
+
return function( node )
|
415
|
+
{
|
416
|
+
// Nodes that take no spaces in wysiwyg:
|
417
|
+
// 1. White-spaces but not including NBSP;
|
418
|
+
// 2. Empty inline elements, e.g. <b></b> we're checking here
|
419
|
+
// 'offsetHeight' instead of 'offsetWidth' for properly excluding
|
420
|
+
// all sorts of empty paragraph, e.g. <br />.
|
421
|
+
var isInvisible = whitespace( node ) || node.is && !node.$.offsetHeight;
|
422
|
+
return !! ( isReject ^ isInvisible );
|
423
|
+
};
|
424
|
+
};
|
425
|
+
|
426
|
+
CKEDITOR.dom.walker.nodeType = function( type, isReject )
|
427
|
+
{
|
428
|
+
return function( node )
|
429
|
+
{
|
430
|
+
return !! ( isReject ^ ( node.type == type ) );
|
431
|
+
};
|
432
|
+
};
|
433
|
+
|
434
|
+
var tailNbspRegex = /^[\t\r\n ]*(?: |\xa0)$/,
|
435
|
+
isWhitespaces = CKEDITOR.dom.walker.whitespaces(),
|
436
|
+
isBookmark = CKEDITOR.dom.walker.bookmark(),
|
437
|
+
toSkip = function( node )
|
438
|
+
{
|
439
|
+
return isBookmark( node )
|
440
|
+
|| isWhitespaces( node )
|
441
|
+
|| node.type == CKEDITOR.NODE_ELEMENT
|
442
|
+
&& node.getName() in CKEDITOR.dtd.$inline
|
443
|
+
&& !( node.getName() in CKEDITOR.dtd.$empty );
|
444
|
+
};
|
445
|
+
|
446
|
+
// Check if there's a filler node at the end of an element, and return it.
|
447
|
+
CKEDITOR.dom.element.prototype.getBogus = function()
|
448
|
+
{
|
449
|
+
// Bogus are not always at the end, e.g. <p><a>text<br /></a></p> (#7070).
|
450
|
+
var tail = this;
|
451
|
+
do { tail = tail.getPreviousSourceNode(); }
|
452
|
+
while ( toSkip( tail ) )
|
453
|
+
|
454
|
+
if ( tail && ( !CKEDITOR.env.ie ? tail.is && tail.is( 'br' )
|
455
|
+
: tail.getText && tailNbspRegex.test( tail.getText() ) ) )
|
456
|
+
{
|
457
|
+
return tail;
|
458
|
+
}
|
459
|
+
return false;
|
460
|
+
};
|
461
|
+
|
462
|
+
})();
|