esp-ckeditor 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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,288 @@
|
|
|
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
|
+
CKEDITOR.htmlParser.filter = CKEDITOR.tools.createClass(
|
|
9
|
+
{
|
|
10
|
+
$ : function( rules )
|
|
11
|
+
{
|
|
12
|
+
this._ =
|
|
13
|
+
{
|
|
14
|
+
elementNames : [],
|
|
15
|
+
attributeNames : [],
|
|
16
|
+
elements : { $length : 0 },
|
|
17
|
+
attributes : { $length : 0 }
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
if ( rules )
|
|
21
|
+
this.addRules( rules, 10 );
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
proto :
|
|
25
|
+
{
|
|
26
|
+
addRules : function( rules, priority )
|
|
27
|
+
{
|
|
28
|
+
if ( typeof priority != 'number' )
|
|
29
|
+
priority = 10;
|
|
30
|
+
|
|
31
|
+
// Add the elementNames.
|
|
32
|
+
addItemsToList( this._.elementNames, rules.elementNames, priority );
|
|
33
|
+
|
|
34
|
+
// Add the attributeNames.
|
|
35
|
+
addItemsToList( this._.attributeNames, rules.attributeNames, priority );
|
|
36
|
+
|
|
37
|
+
// Add the elements.
|
|
38
|
+
addNamedItems( this._.elements, rules.elements, priority );
|
|
39
|
+
|
|
40
|
+
// Add the attributes.
|
|
41
|
+
addNamedItems( this._.attributes, rules.attributes, priority );
|
|
42
|
+
|
|
43
|
+
// Add the text.
|
|
44
|
+
this._.text = transformNamedItem( this._.text, rules.text, priority ) || this._.text;
|
|
45
|
+
|
|
46
|
+
// Add the comment.
|
|
47
|
+
this._.comment = transformNamedItem( this._.comment, rules.comment, priority ) || this._.comment;
|
|
48
|
+
|
|
49
|
+
// Add root fragment.
|
|
50
|
+
this._.root = transformNamedItem( this._.root, rules.root, priority ) || this._.root;
|
|
51
|
+
},
|
|
52
|
+
|
|
53
|
+
onElementName : function( name )
|
|
54
|
+
{
|
|
55
|
+
return filterName( name, this._.elementNames );
|
|
56
|
+
},
|
|
57
|
+
|
|
58
|
+
onAttributeName : function( name )
|
|
59
|
+
{
|
|
60
|
+
return filterName( name, this._.attributeNames );
|
|
61
|
+
},
|
|
62
|
+
|
|
63
|
+
onText : function( text )
|
|
64
|
+
{
|
|
65
|
+
var textFilter = this._.text;
|
|
66
|
+
return textFilter ? textFilter.filter( text ) : text;
|
|
67
|
+
},
|
|
68
|
+
|
|
69
|
+
onComment : function( commentText, comment )
|
|
70
|
+
{
|
|
71
|
+
var textFilter = this._.comment;
|
|
72
|
+
return textFilter ? textFilter.filter( commentText, comment ) : commentText;
|
|
73
|
+
},
|
|
74
|
+
|
|
75
|
+
onFragment : function( element )
|
|
76
|
+
{
|
|
77
|
+
var rootFilter = this._.root;
|
|
78
|
+
return rootFilter ? rootFilter.filter( element ) : element;
|
|
79
|
+
},
|
|
80
|
+
|
|
81
|
+
onElement : function( element )
|
|
82
|
+
{
|
|
83
|
+
// We must apply filters set to the specific element name as
|
|
84
|
+
// well as those set to the generic $ name. So, add both to an
|
|
85
|
+
// array and process them in a small loop.
|
|
86
|
+
var filters = [ this._.elements[ '^' ], this._.elements[ element.name ], this._.elements.$ ],
|
|
87
|
+
filter, ret;
|
|
88
|
+
|
|
89
|
+
for ( var i = 0 ; i < 3 ; i++ )
|
|
90
|
+
{
|
|
91
|
+
filter = filters[ i ];
|
|
92
|
+
if ( filter )
|
|
93
|
+
{
|
|
94
|
+
ret = filter.filter( element, this );
|
|
95
|
+
|
|
96
|
+
if ( ret === false )
|
|
97
|
+
return null;
|
|
98
|
+
|
|
99
|
+
if ( ret && ret != element )
|
|
100
|
+
return this.onNode( ret );
|
|
101
|
+
|
|
102
|
+
// The non-root element has been dismissed by one of the filters.
|
|
103
|
+
if ( element.parent && !element.name )
|
|
104
|
+
break;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
return element;
|
|
109
|
+
},
|
|
110
|
+
|
|
111
|
+
onNode : function( node )
|
|
112
|
+
{
|
|
113
|
+
var type = node.type;
|
|
114
|
+
|
|
115
|
+
return type == CKEDITOR.NODE_ELEMENT ? this.onElement( node ) :
|
|
116
|
+
type == CKEDITOR.NODE_TEXT ? new CKEDITOR.htmlParser.text( this.onText( node.value ) ) :
|
|
117
|
+
type == CKEDITOR.NODE_COMMENT ? new CKEDITOR.htmlParser.comment( this.onComment( node.value ) ):
|
|
118
|
+
null;
|
|
119
|
+
},
|
|
120
|
+
|
|
121
|
+
onAttribute : function( element, name, value )
|
|
122
|
+
{
|
|
123
|
+
var filter = this._.attributes[ name ];
|
|
124
|
+
|
|
125
|
+
if ( filter )
|
|
126
|
+
{
|
|
127
|
+
var ret = filter.filter( value, element, this );
|
|
128
|
+
|
|
129
|
+
if ( ret === false )
|
|
130
|
+
return false;
|
|
131
|
+
|
|
132
|
+
if ( typeof ret != 'undefined' )
|
|
133
|
+
return ret;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
return value;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
});
|
|
140
|
+
|
|
141
|
+
function filterName( name, filters )
|
|
142
|
+
{
|
|
143
|
+
for ( var i = 0 ; name && i < filters.length ; i++ )
|
|
144
|
+
{
|
|
145
|
+
var filter = filters[ i ];
|
|
146
|
+
name = name.replace( filter[ 0 ], filter[ 1 ] );
|
|
147
|
+
}
|
|
148
|
+
return name;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
function addItemsToList( list, items, priority )
|
|
152
|
+
{
|
|
153
|
+
if ( typeof items == 'function' )
|
|
154
|
+
items = [ items ];
|
|
155
|
+
|
|
156
|
+
var i, j,
|
|
157
|
+
listLength = list.length,
|
|
158
|
+
itemsLength = items && items.length;
|
|
159
|
+
|
|
160
|
+
if ( itemsLength )
|
|
161
|
+
{
|
|
162
|
+
// Find the index to insert the items at.
|
|
163
|
+
for ( i = 0 ; i < listLength && list[ i ].pri < priority ; i++ )
|
|
164
|
+
{ /*jsl:pass*/ }
|
|
165
|
+
|
|
166
|
+
// Add all new items to the list at the specific index.
|
|
167
|
+
for ( j = itemsLength - 1 ; j >= 0 ; j-- )
|
|
168
|
+
{
|
|
169
|
+
var item = items[ j ];
|
|
170
|
+
if ( item )
|
|
171
|
+
{
|
|
172
|
+
item.pri = priority;
|
|
173
|
+
list.splice( i, 0, item );
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
function addNamedItems( hashTable, items, priority )
|
|
180
|
+
{
|
|
181
|
+
if ( items )
|
|
182
|
+
{
|
|
183
|
+
for ( var name in items )
|
|
184
|
+
{
|
|
185
|
+
var current = hashTable[ name ];
|
|
186
|
+
|
|
187
|
+
hashTable[ name ] =
|
|
188
|
+
transformNamedItem(
|
|
189
|
+
current,
|
|
190
|
+
items[ name ],
|
|
191
|
+
priority );
|
|
192
|
+
|
|
193
|
+
if ( !current )
|
|
194
|
+
hashTable.$length++;
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
function transformNamedItem( current, item, priority )
|
|
200
|
+
{
|
|
201
|
+
if ( item )
|
|
202
|
+
{
|
|
203
|
+
item.pri = priority;
|
|
204
|
+
|
|
205
|
+
if ( current )
|
|
206
|
+
{
|
|
207
|
+
// If the current item is not an Array, transform it.
|
|
208
|
+
if ( !current.splice )
|
|
209
|
+
{
|
|
210
|
+
if ( current.pri > priority )
|
|
211
|
+
current = [ item, current ];
|
|
212
|
+
else
|
|
213
|
+
current = [ current, item ];
|
|
214
|
+
|
|
215
|
+
current.filter = callItems;
|
|
216
|
+
}
|
|
217
|
+
else
|
|
218
|
+
addItemsToList( current, item, priority );
|
|
219
|
+
|
|
220
|
+
return current;
|
|
221
|
+
}
|
|
222
|
+
else
|
|
223
|
+
{
|
|
224
|
+
item.filter = item;
|
|
225
|
+
return item;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
// Invoke filters sequentially on the array, break the iteration
|
|
231
|
+
// when it doesn't make sense to continue anymore.
|
|
232
|
+
function callItems( currentEntry )
|
|
233
|
+
{
|
|
234
|
+
var isNode = currentEntry.type
|
|
235
|
+
|| currentEntry instanceof CKEDITOR.htmlParser.fragment;
|
|
236
|
+
|
|
237
|
+
for ( var i = 0 ; i < this.length ; i++ )
|
|
238
|
+
{
|
|
239
|
+
// Backup the node info before filtering.
|
|
240
|
+
if ( isNode )
|
|
241
|
+
{
|
|
242
|
+
var orgType = currentEntry.type,
|
|
243
|
+
orgName = currentEntry.name;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
var item = this[ i ],
|
|
247
|
+
ret = item.apply( window, arguments );
|
|
248
|
+
|
|
249
|
+
if ( ret === false )
|
|
250
|
+
return ret;
|
|
251
|
+
|
|
252
|
+
// We're filtering node (element/fragment).
|
|
253
|
+
if ( isNode )
|
|
254
|
+
{
|
|
255
|
+
// No further filtering if it's not anymore
|
|
256
|
+
// fitable for the subsequent filters.
|
|
257
|
+
if ( ret && ( ret.name != orgName
|
|
258
|
+
|| ret.type != orgType ) )
|
|
259
|
+
{
|
|
260
|
+
return ret;
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
// Filtering value (nodeName/textValue/attrValue).
|
|
264
|
+
else
|
|
265
|
+
{
|
|
266
|
+
// No further filtering if it's not
|
|
267
|
+
// any more values.
|
|
268
|
+
if ( typeof ret != 'string' )
|
|
269
|
+
return ret;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
ret != undefined && ( currentEntry = ret );
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
return currentEntry;
|
|
276
|
+
}
|
|
277
|
+
})();
|
|
278
|
+
|
|
279
|
+
// "entities" plugin
|
|
280
|
+
/*
|
|
281
|
+
{
|
|
282
|
+
text : function( text )
|
|
283
|
+
{
|
|
284
|
+
// TODO : Process entities.
|
|
285
|
+
return text.toUpperCase();
|
|
286
|
+
}
|
|
287
|
+
};
|
|
288
|
+
*/
|
|
@@ -0,0 +1,518 @@
|
|
|
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
|
+
* A lightweight representation of an HTML DOM structure.
|
|
8
|
+
* @constructor
|
|
9
|
+
* @example
|
|
10
|
+
*/
|
|
11
|
+
CKEDITOR.htmlParser.fragment = function()
|
|
12
|
+
{
|
|
13
|
+
/**
|
|
14
|
+
* The nodes contained in the root of this fragment.
|
|
15
|
+
* @type Array
|
|
16
|
+
* @example
|
|
17
|
+
* var fragment = CKEDITOR.htmlParser.fragment.fromHtml( '<b>Sample</b> Text' );
|
|
18
|
+
* alert( fragment.children.length ); "2"
|
|
19
|
+
*/
|
|
20
|
+
this.children = [];
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Get the fragment parent. Should always be null.
|
|
24
|
+
* @type Object
|
|
25
|
+
* @default null
|
|
26
|
+
* @example
|
|
27
|
+
*/
|
|
28
|
+
this.parent = null;
|
|
29
|
+
|
|
30
|
+
/** @private */
|
|
31
|
+
this._ =
|
|
32
|
+
{
|
|
33
|
+
isBlockLike : true,
|
|
34
|
+
hasInlineStarted : false
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
(function()
|
|
39
|
+
{
|
|
40
|
+
// Block-level elements whose internal structure should be respected during
|
|
41
|
+
// parser fixing.
|
|
42
|
+
var nonBreakingBlocks = CKEDITOR.tools.extend( { table:1,ul:1,ol:1,dl:1 }, CKEDITOR.dtd.table, CKEDITOR.dtd.ul, CKEDITOR.dtd.ol, CKEDITOR.dtd.dl );
|
|
43
|
+
|
|
44
|
+
// IE < 8 don't output the close tag on definition list items. (#6975)
|
|
45
|
+
var optionalCloseTags = CKEDITOR.env.ie && CKEDITOR.env.version < 8 ? { dd : 1, dt :1 } : {};
|
|
46
|
+
|
|
47
|
+
var listBlocks = { ol:1, ul:1 };
|
|
48
|
+
|
|
49
|
+
// Dtd of the fragment element, basically it accept anything except for intermediate structure, e.g. orphan <li>.
|
|
50
|
+
var rootDtd = CKEDITOR.tools.extend( {}, { html: 1 }, CKEDITOR.dtd.html, CKEDITOR.dtd.body, CKEDITOR.dtd.head, { style:1,script:1 } );
|
|
51
|
+
|
|
52
|
+
function isRemoveEmpty( node )
|
|
53
|
+
{
|
|
54
|
+
// Empty link is to be removed when empty but not anchor. (#7894)
|
|
55
|
+
return node.name == 'a' && node.attributes.href
|
|
56
|
+
|| CKEDITOR.dtd.$removeEmpty[ node.name ];
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Creates a {@link CKEDITOR.htmlParser.fragment} from an HTML string.
|
|
61
|
+
* @param {String} fragmentHtml The HTML to be parsed, filling the fragment.
|
|
62
|
+
* @param {Number} [fixForBody=false] Wrap body with specified element if needed.
|
|
63
|
+
* @param {CKEDITOR.htmlParser.element} contextNode Parse the html as the content of this element.
|
|
64
|
+
* @returns CKEDITOR.htmlParser.fragment The fragment created.
|
|
65
|
+
* @example
|
|
66
|
+
* var fragment = CKEDITOR.htmlParser.fragment.fromHtml( '<b>Sample</b> Text' );
|
|
67
|
+
* alert( fragment.children[0].name ); "b"
|
|
68
|
+
* alert( fragment.children[1].value ); " Text"
|
|
69
|
+
*/
|
|
70
|
+
CKEDITOR.htmlParser.fragment.fromHtml = function( fragmentHtml, fixForBody, contextNode )
|
|
71
|
+
{
|
|
72
|
+
var parser = new CKEDITOR.htmlParser(),
|
|
73
|
+
fragment = contextNode || new CKEDITOR.htmlParser.fragment(),
|
|
74
|
+
pendingInline = [],
|
|
75
|
+
pendingBRs = [],
|
|
76
|
+
currentNode = fragment,
|
|
77
|
+
// Indicate we're inside a <textarea> element, spaces should be touched differently.
|
|
78
|
+
inTextarea = false,
|
|
79
|
+
// Indicate we're inside a <pre> element, spaces should be touched differently.
|
|
80
|
+
inPre = false;
|
|
81
|
+
|
|
82
|
+
function checkPending( newTagName )
|
|
83
|
+
{
|
|
84
|
+
var pendingBRsSent;
|
|
85
|
+
|
|
86
|
+
if ( pendingInline.length > 0 )
|
|
87
|
+
{
|
|
88
|
+
for ( var i = 0 ; i < pendingInline.length ; i++ )
|
|
89
|
+
{
|
|
90
|
+
var pendingElement = pendingInline[ i ],
|
|
91
|
+
pendingName = pendingElement.name,
|
|
92
|
+
pendingDtd = CKEDITOR.dtd[ pendingName ],
|
|
93
|
+
currentDtd = currentNode.name && CKEDITOR.dtd[ currentNode.name ];
|
|
94
|
+
|
|
95
|
+
if ( ( !currentDtd || currentDtd[ pendingName ] ) && ( !newTagName || !pendingDtd || pendingDtd[ newTagName ] || !CKEDITOR.dtd[ newTagName ] ) )
|
|
96
|
+
{
|
|
97
|
+
if ( !pendingBRsSent )
|
|
98
|
+
{
|
|
99
|
+
sendPendingBRs();
|
|
100
|
+
pendingBRsSent = 1;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
// Get a clone for the pending element.
|
|
104
|
+
pendingElement = pendingElement.clone();
|
|
105
|
+
|
|
106
|
+
// Add it to the current node and make it the current,
|
|
107
|
+
// so the new element will be added inside of it.
|
|
108
|
+
pendingElement.parent = currentNode;
|
|
109
|
+
currentNode = pendingElement;
|
|
110
|
+
|
|
111
|
+
// Remove the pending element (back the index by one
|
|
112
|
+
// to properly process the next entry).
|
|
113
|
+
pendingInline.splice( i, 1 );
|
|
114
|
+
i--;
|
|
115
|
+
}
|
|
116
|
+
else
|
|
117
|
+
{
|
|
118
|
+
// Some element of the same type cannot be nested, flat them,
|
|
119
|
+
// e.g. <a href="#">foo<a href="#">bar</a></a>. (#7894)
|
|
120
|
+
if ( pendingName == currentNode.name )
|
|
121
|
+
addElement( currentNode, currentNode.parent, 1 ), i--;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
function sendPendingBRs()
|
|
128
|
+
{
|
|
129
|
+
while ( pendingBRs.length )
|
|
130
|
+
currentNode.add( pendingBRs.shift() );
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/*
|
|
134
|
+
* Beside of simply append specified element to target, this function also takes
|
|
135
|
+
* care of other dirty lifts like forcing block in body, trimming spaces at
|
|
136
|
+
* the block boundaries etc.
|
|
137
|
+
*
|
|
138
|
+
* @param {Element} element The element to be added as the last child of {@link target}.
|
|
139
|
+
* @param {Element} target The parent element to relieve the new node.
|
|
140
|
+
* @param {Boolean} [moveCurrent=false] Don't change the "currentNode" global unless
|
|
141
|
+
* there's a return point node specified on the element, otherwise move current onto {@link target} node.
|
|
142
|
+
*/
|
|
143
|
+
function addElement( element, target, moveCurrent )
|
|
144
|
+
{
|
|
145
|
+
// Ignore any element that has already been added.
|
|
146
|
+
if ( element.previous !== undefined )
|
|
147
|
+
return;
|
|
148
|
+
|
|
149
|
+
target = target || currentNode || fragment;
|
|
150
|
+
|
|
151
|
+
// Current element might be mangled by fix body below,
|
|
152
|
+
// save it for restore later.
|
|
153
|
+
var savedCurrent = currentNode;
|
|
154
|
+
|
|
155
|
+
// If the target is the fragment and this inline element can't go inside
|
|
156
|
+
// body (if fixForBody).
|
|
157
|
+
if ( fixForBody && ( !target.type || target.name == 'body' ) )
|
|
158
|
+
{
|
|
159
|
+
var elementName, realElementName;
|
|
160
|
+
if ( element.attributes
|
|
161
|
+
&& ( realElementName =
|
|
162
|
+
element.attributes[ 'data-cke-real-element-type' ] ) )
|
|
163
|
+
elementName = realElementName;
|
|
164
|
+
else
|
|
165
|
+
elementName = element.name;
|
|
166
|
+
|
|
167
|
+
if ( elementName && !( elementName in CKEDITOR.dtd.$body || elementName == 'body' || element.isOrphan ) )
|
|
168
|
+
{
|
|
169
|
+
// Create a <p> in the fragment.
|
|
170
|
+
currentNode = target;
|
|
171
|
+
parser.onTagOpen( fixForBody, {} );
|
|
172
|
+
|
|
173
|
+
// The new target now is the <p>.
|
|
174
|
+
element.returnPoint = target = currentNode;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
// Rtrim empty spaces on block end boundary. (#3585)
|
|
179
|
+
if ( element._.isBlockLike
|
|
180
|
+
&& element.name != 'pre' && element.name != 'textarea' )
|
|
181
|
+
{
|
|
182
|
+
|
|
183
|
+
var length = element.children.length,
|
|
184
|
+
lastChild = element.children[ length - 1 ],
|
|
185
|
+
text;
|
|
186
|
+
if ( lastChild && lastChild.type == CKEDITOR.NODE_TEXT )
|
|
187
|
+
{
|
|
188
|
+
if ( !( text = CKEDITOR.tools.rtrim( lastChild.value ) ) )
|
|
189
|
+
element.children.length = length -1;
|
|
190
|
+
else
|
|
191
|
+
lastChild.value = text;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
target.add( element );
|
|
196
|
+
|
|
197
|
+
if ( element.returnPoint )
|
|
198
|
+
{
|
|
199
|
+
currentNode = element.returnPoint;
|
|
200
|
+
delete element.returnPoint;
|
|
201
|
+
}
|
|
202
|
+
else
|
|
203
|
+
currentNode = moveCurrent ? target : savedCurrent;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
parser.onTagOpen = function( tagName, attributes, selfClosing, optionalClose )
|
|
207
|
+
{
|
|
208
|
+
var element = new CKEDITOR.htmlParser.element( tagName, attributes );
|
|
209
|
+
|
|
210
|
+
// "isEmpty" will be always "false" for unknown elements, so we
|
|
211
|
+
// must force it if the parser has identified it as a selfClosing tag.
|
|
212
|
+
if ( element.isUnknown && selfClosing )
|
|
213
|
+
element.isEmpty = true;
|
|
214
|
+
|
|
215
|
+
// Check for optional closed elements, including browser quirks and manually opened blocks.
|
|
216
|
+
element.isOptionalClose = tagName in optionalCloseTags || optionalClose;
|
|
217
|
+
|
|
218
|
+
// This is a tag to be removed if empty, so do not add it immediately.
|
|
219
|
+
if ( isRemoveEmpty( element ) )
|
|
220
|
+
{
|
|
221
|
+
pendingInline.push( element );
|
|
222
|
+
return;
|
|
223
|
+
}
|
|
224
|
+
else if ( tagName == 'pre' )
|
|
225
|
+
inPre = true;
|
|
226
|
+
else if ( tagName == 'br' && inPre )
|
|
227
|
+
{
|
|
228
|
+
currentNode.add( new CKEDITOR.htmlParser.text( '\n' ) );
|
|
229
|
+
return;
|
|
230
|
+
}
|
|
231
|
+
else if ( tagName == 'textarea' )
|
|
232
|
+
inTextarea = true;
|
|
233
|
+
|
|
234
|
+
if ( tagName == 'br' )
|
|
235
|
+
{
|
|
236
|
+
pendingBRs.push( element );
|
|
237
|
+
return;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
while( 1 )
|
|
241
|
+
{
|
|
242
|
+
var currentName = currentNode.name;
|
|
243
|
+
|
|
244
|
+
var currentDtd = currentName ? ( CKEDITOR.dtd[ currentName ]
|
|
245
|
+
|| ( currentNode._.isBlockLike ? CKEDITOR.dtd.div : CKEDITOR.dtd.span ) )
|
|
246
|
+
: rootDtd;
|
|
247
|
+
|
|
248
|
+
// If the element cannot be child of the current element.
|
|
249
|
+
if ( !element.isUnknown && !currentNode.isUnknown && !currentDtd[ tagName ] )
|
|
250
|
+
{
|
|
251
|
+
// Current node doesn't have a close tag, time for a close
|
|
252
|
+
// as this element isn't fit in. (#7497)
|
|
253
|
+
if ( currentNode.isOptionalClose )
|
|
254
|
+
parser.onTagClose( currentName );
|
|
255
|
+
// Fixing malformed nested lists by moving it into a previous list item. (#3828)
|
|
256
|
+
else if ( tagName in listBlocks
|
|
257
|
+
&& currentName in listBlocks )
|
|
258
|
+
{
|
|
259
|
+
var children = currentNode.children,
|
|
260
|
+
lastChild = children[ children.length - 1 ];
|
|
261
|
+
|
|
262
|
+
// Establish the list item if it's not existed.
|
|
263
|
+
if ( !( lastChild && lastChild.name == 'li' ) )
|
|
264
|
+
addElement( ( lastChild = new CKEDITOR.htmlParser.element( 'li' ) ), currentNode );
|
|
265
|
+
|
|
266
|
+
!element.returnPoint && ( element.returnPoint = currentNode );
|
|
267
|
+
currentNode = lastChild;
|
|
268
|
+
}
|
|
269
|
+
// Establish new list root for orphan list items.
|
|
270
|
+
else if ( tagName in CKEDITOR.dtd.$listItem && currentName != tagName )
|
|
271
|
+
parser.onTagOpen( tagName == 'li' ? 'ul' : 'dl', {}, 0, 1 );
|
|
272
|
+
// We're inside a structural block like table and list, AND the incoming element
|
|
273
|
+
// is not of the same type (e.g. <td>td1<td>td2</td>), we simply add this new one before it,
|
|
274
|
+
// and most importantly, return back to here once this element is added,
|
|
275
|
+
// e.g. <table><tr><td>td1</td><p>p1</p><td>td2</td></tr></table>
|
|
276
|
+
else if ( currentName in nonBreakingBlocks && currentName != tagName )
|
|
277
|
+
{
|
|
278
|
+
!element.returnPoint && ( element.returnPoint = currentNode );
|
|
279
|
+
currentNode = currentNode.parent;
|
|
280
|
+
}
|
|
281
|
+
else
|
|
282
|
+
{
|
|
283
|
+
// The current element is an inline element, which
|
|
284
|
+
// need to be continued even after the close, so put
|
|
285
|
+
// it in the pending list.
|
|
286
|
+
if ( currentName in CKEDITOR.dtd.$inline )
|
|
287
|
+
pendingInline.unshift( currentNode );
|
|
288
|
+
|
|
289
|
+
// The most common case where we just need to close the
|
|
290
|
+
// current one and append the new one to the parent.
|
|
291
|
+
if ( currentNode.parent )
|
|
292
|
+
addElement( currentNode, currentNode.parent, 1 );
|
|
293
|
+
// We've tried our best to fix the embarrassment here, while
|
|
294
|
+
// this element still doesn't find it's parent, mark it as
|
|
295
|
+
// orphan and show our tolerance to it.
|
|
296
|
+
else
|
|
297
|
+
{
|
|
298
|
+
element.isOrphan = 1;
|
|
299
|
+
break;
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
else
|
|
304
|
+
break;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
checkPending( tagName );
|
|
308
|
+
sendPendingBRs();
|
|
309
|
+
|
|
310
|
+
element.parent = currentNode;
|
|
311
|
+
|
|
312
|
+
if ( element.isEmpty )
|
|
313
|
+
addElement( element );
|
|
314
|
+
else
|
|
315
|
+
currentNode = element;
|
|
316
|
+
};
|
|
317
|
+
|
|
318
|
+
parser.onTagClose = function( tagName )
|
|
319
|
+
{
|
|
320
|
+
// Check if there is any pending tag to be closed.
|
|
321
|
+
for ( var i = pendingInline.length - 1 ; i >= 0 ; i-- )
|
|
322
|
+
{
|
|
323
|
+
// If found, just remove it from the list.
|
|
324
|
+
if ( tagName == pendingInline[ i ].name )
|
|
325
|
+
{
|
|
326
|
+
pendingInline.splice( i, 1 );
|
|
327
|
+
return;
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
var pendingAdd = [],
|
|
332
|
+
newPendingInline = [],
|
|
333
|
+
candidate = currentNode;
|
|
334
|
+
|
|
335
|
+
while ( candidate != fragment && candidate.name != tagName )
|
|
336
|
+
{
|
|
337
|
+
// If this is an inline element, add it to the pending list, if we're
|
|
338
|
+
// really closing one of the parents element later, they will continue
|
|
339
|
+
// after it.
|
|
340
|
+
if ( !candidate._.isBlockLike )
|
|
341
|
+
newPendingInline.unshift( candidate );
|
|
342
|
+
|
|
343
|
+
// This node should be added to it's parent at this point. But,
|
|
344
|
+
// it should happen only if the closing tag is really closing
|
|
345
|
+
// one of the nodes. So, for now, we just cache it.
|
|
346
|
+
pendingAdd.push( candidate );
|
|
347
|
+
|
|
348
|
+
// Make sure return point is properly restored.
|
|
349
|
+
candidate = candidate.returnPoint || candidate.parent;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
if ( candidate != fragment )
|
|
353
|
+
{
|
|
354
|
+
// Add all elements that have been found in the above loop.
|
|
355
|
+
for ( i = 0 ; i < pendingAdd.length ; i++ )
|
|
356
|
+
{
|
|
357
|
+
var node = pendingAdd[ i ];
|
|
358
|
+
addElement( node, node.parent );
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
currentNode = candidate;
|
|
362
|
+
|
|
363
|
+
if ( currentNode.name == 'pre' )
|
|
364
|
+
inPre = false;
|
|
365
|
+
|
|
366
|
+
if ( currentNode.name == 'textarea' )
|
|
367
|
+
inTextarea = false;
|
|
368
|
+
|
|
369
|
+
if ( candidate._.isBlockLike )
|
|
370
|
+
sendPendingBRs();
|
|
371
|
+
|
|
372
|
+
addElement( candidate, candidate.parent );
|
|
373
|
+
|
|
374
|
+
// The parent should start receiving new nodes now, except if
|
|
375
|
+
// addElement changed the currentNode.
|
|
376
|
+
if ( candidate == currentNode )
|
|
377
|
+
currentNode = currentNode.parent;
|
|
378
|
+
|
|
379
|
+
pendingInline = pendingInline.concat( newPendingInline );
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
if ( tagName == 'body' )
|
|
383
|
+
fixForBody = false;
|
|
384
|
+
};
|
|
385
|
+
|
|
386
|
+
parser.onText = function( text )
|
|
387
|
+
{
|
|
388
|
+
// Trim empty spaces at beginning of text contents except <pre> and <textarea>.
|
|
389
|
+
if ( ( !currentNode._.hasInlineStarted || pendingBRs.length ) && !inPre && !inTextarea )
|
|
390
|
+
{
|
|
391
|
+
text = CKEDITOR.tools.ltrim( text );
|
|
392
|
+
|
|
393
|
+
if ( text.length === 0 )
|
|
394
|
+
return;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
sendPendingBRs();
|
|
398
|
+
checkPending();
|
|
399
|
+
|
|
400
|
+
if ( fixForBody
|
|
401
|
+
&& ( !currentNode.type || currentNode.name == 'body' )
|
|
402
|
+
&& CKEDITOR.tools.trim( text ) )
|
|
403
|
+
{
|
|
404
|
+
this.onTagOpen( fixForBody, {}, 0, 1 );
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
// Shrinking consequential spaces into one single for all elements
|
|
408
|
+
// text contents.
|
|
409
|
+
if ( !inPre && !inTextarea )
|
|
410
|
+
text = text.replace( /[\t\r\n ]{2,}|[\t\r\n]/g, ' ' );
|
|
411
|
+
|
|
412
|
+
currentNode.add( new CKEDITOR.htmlParser.text( text ) );
|
|
413
|
+
};
|
|
414
|
+
|
|
415
|
+
parser.onCDATA = function( cdata )
|
|
416
|
+
{
|
|
417
|
+
currentNode.add( new CKEDITOR.htmlParser.cdata( cdata ) );
|
|
418
|
+
};
|
|
419
|
+
|
|
420
|
+
parser.onComment = function( comment )
|
|
421
|
+
{
|
|
422
|
+
sendPendingBRs();
|
|
423
|
+
checkPending();
|
|
424
|
+
currentNode.add( new CKEDITOR.htmlParser.comment( comment ) );
|
|
425
|
+
};
|
|
426
|
+
|
|
427
|
+
// Parse it.
|
|
428
|
+
parser.parse( fragmentHtml );
|
|
429
|
+
|
|
430
|
+
// Send all pending BRs except one, which we consider a unwanted bogus. (#5293)
|
|
431
|
+
sendPendingBRs( !CKEDITOR.env.ie && 1 );
|
|
432
|
+
|
|
433
|
+
// Close all pending nodes, make sure return point is properly restored.
|
|
434
|
+
while ( currentNode != fragment )
|
|
435
|
+
addElement( currentNode, currentNode.parent, 1 );
|
|
436
|
+
|
|
437
|
+
return fragment;
|
|
438
|
+
};
|
|
439
|
+
|
|
440
|
+
CKEDITOR.htmlParser.fragment.prototype =
|
|
441
|
+
{
|
|
442
|
+
/**
|
|
443
|
+
* Adds a node to this fragment.
|
|
444
|
+
* @param {Object} node The node to be added. It can be any of of the
|
|
445
|
+
* following types: {@link CKEDITOR.htmlParser.element},
|
|
446
|
+
* {@link CKEDITOR.htmlParser.text} and
|
|
447
|
+
* {@link CKEDITOR.htmlParser.comment}.
|
|
448
|
+
* @param {Number} [index] From where the insertion happens.
|
|
449
|
+
* @example
|
|
450
|
+
*/
|
|
451
|
+
add : function( node, index )
|
|
452
|
+
{
|
|
453
|
+
isNaN( index ) && ( index = this.children.length );
|
|
454
|
+
|
|
455
|
+
var previous = index > 0 ? this.children[ index - 1 ] : null;
|
|
456
|
+
if ( previous )
|
|
457
|
+
{
|
|
458
|
+
// If the block to be appended is following text, trim spaces at
|
|
459
|
+
// the right of it.
|
|
460
|
+
if ( node._.isBlockLike && previous.type == CKEDITOR.NODE_TEXT )
|
|
461
|
+
{
|
|
462
|
+
previous.value = CKEDITOR.tools.rtrim( previous.value );
|
|
463
|
+
|
|
464
|
+
// If we have completely cleared the previous node.
|
|
465
|
+
if ( previous.value.length === 0 )
|
|
466
|
+
{
|
|
467
|
+
// Remove it from the list and add the node again.
|
|
468
|
+
this.children.pop();
|
|
469
|
+
this.add( node );
|
|
470
|
+
return;
|
|
471
|
+
}
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
previous.next = node;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
node.previous = previous;
|
|
478
|
+
node.parent = this;
|
|
479
|
+
|
|
480
|
+
this.children.splice( index, 0, node );
|
|
481
|
+
|
|
482
|
+
this._.hasInlineStarted = node.type == CKEDITOR.NODE_TEXT || ( node.type == CKEDITOR.NODE_ELEMENT && !node._.isBlockLike );
|
|
483
|
+
},
|
|
484
|
+
|
|
485
|
+
/**
|
|
486
|
+
* Writes the fragment HTML to a CKEDITOR.htmlWriter.
|
|
487
|
+
* @param {CKEDITOR.htmlWriter} writer The writer to which write the HTML.
|
|
488
|
+
* @example
|
|
489
|
+
* var writer = new CKEDITOR.htmlWriter();
|
|
490
|
+
* var fragment = CKEDITOR.htmlParser.fragment.fromHtml( '<P><B>Example' );
|
|
491
|
+
* fragment.writeHtml( writer )
|
|
492
|
+
* alert( writer.getHtml() ); "<p><b>Example</b></p>"
|
|
493
|
+
*/
|
|
494
|
+
writeHtml : function( writer, filter )
|
|
495
|
+
{
|
|
496
|
+
var isChildrenFiltered;
|
|
497
|
+
this.filterChildren = function()
|
|
498
|
+
{
|
|
499
|
+
var writer = new CKEDITOR.htmlParser.basicWriter();
|
|
500
|
+
this.writeChildrenHtml.call( this, writer, filter, true );
|
|
501
|
+
var html = writer.getHtml();
|
|
502
|
+
this.children = new CKEDITOR.htmlParser.fragment.fromHtml( html ).children;
|
|
503
|
+
isChildrenFiltered = 1;
|
|
504
|
+
};
|
|
505
|
+
|
|
506
|
+
// Filtering the root fragment before anything else.
|
|
507
|
+
!this.name && filter && filter.onFragment( this );
|
|
508
|
+
|
|
509
|
+
this.writeChildrenHtml( writer, isChildrenFiltered ? null : filter );
|
|
510
|
+
},
|
|
511
|
+
|
|
512
|
+
writeChildrenHtml : function( writer, filter )
|
|
513
|
+
{
|
|
514
|
+
for ( var i = 0 ; i < this.children.length ; i++ )
|
|
515
|
+
this.children[i].writeHtml( writer, filter );
|
|
516
|
+
}
|
|
517
|
+
};
|
|
518
|
+
})();
|