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
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2012 YOURNAME
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
= EspCkeditor
|
2
|
+
|
3
|
+
CKEditor 3.6.2 for rails >= 3.1.0 project with formtastic and el_vfs_client (optional) support.
|
4
|
+
|
5
|
+
== Install
|
6
|
+
|
7
|
+
To Gemfile
|
8
|
+
|
9
|
+
gem 'esp-ckeditor'
|
10
|
+
|
11
|
+
and
|
12
|
+
|
13
|
+
$ bundle install
|
14
|
+
|
15
|
+
or
|
16
|
+
|
17
|
+
$ gem install esp-ckeditor
|
18
|
+
|
19
|
+
== Usage
|
20
|
+
|
21
|
+
In layout or view include JavaScript
|
22
|
+
|
23
|
+
<%= javascript_include_tag 'esp-ckeditor/application' %>
|
24
|
+
|
25
|
+
and use formtastic input <tt>:as => :ckeditor</tt>
|
26
|
+
|
27
|
+
<%= form.input :annotation, :as => :ckeditor, :input_html => { :height => 100 } %>
|
28
|
+
<%= form.input :text, :as => :ckeditor %>
|
29
|
+
|
30
|
+
== License
|
31
|
+
|
32
|
+
This project rocks and uses MIT-LICENSE.
|
data/Rakefile
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
#!/usr/bin/env rake
|
2
|
+
begin
|
3
|
+
require 'bundler/setup'
|
4
|
+
rescue LoadError
|
5
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
6
|
+
end
|
7
|
+
begin
|
8
|
+
require 'rdoc/task'
|
9
|
+
rescue LoadError
|
10
|
+
require 'rdoc/rdoc'
|
11
|
+
require 'rake/rdoctask'
|
12
|
+
RDoc::Task = Rake::RDocTask
|
13
|
+
end
|
14
|
+
|
15
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
16
|
+
rdoc.rdoc_dir = 'rdoc'
|
17
|
+
rdoc.title = 'EspCkeditor'
|
18
|
+
rdoc.options << '--line-numbers'
|
19
|
+
rdoc.rdoc_files.include('README.rdoc')
|
20
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
21
|
+
end
|
22
|
+
|
23
|
+
APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
|
24
|
+
load 'rails/tasks/engine.rake'
|
25
|
+
|
26
|
+
|
27
|
+
Bundler::GemHelper.install_tasks
|
28
|
+
|
@@ -0,0 +1,87 @@
|
|
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 API initialization code.
|
8
|
+
*/
|
9
|
+
|
10
|
+
(function()
|
11
|
+
{
|
12
|
+
// Disable HC detaction in WebKit. (#5429)
|
13
|
+
if ( CKEDITOR.env.webkit )
|
14
|
+
{
|
15
|
+
CKEDITOR.env.hc = false;
|
16
|
+
return;
|
17
|
+
}
|
18
|
+
|
19
|
+
// Check whether high contrast is active by creating a colored border.
|
20
|
+
var hcDetect = CKEDITOR.dom.element.createFromHtml(
|
21
|
+
'<div style="width:0px;height:0px;position:absolute;left:-10000px;' +
|
22
|
+
'border: 1px solid;border-color: red blue;"></div>', CKEDITOR.document );
|
23
|
+
|
24
|
+
hcDetect.appendTo( CKEDITOR.document.getHead() );
|
25
|
+
|
26
|
+
// Update CKEDITOR.env.
|
27
|
+
// Catch exception needed sometimes for FF. (#4230)
|
28
|
+
try
|
29
|
+
{
|
30
|
+
CKEDITOR.env.hc = hcDetect.getComputedStyle( 'border-top-color' ) == hcDetect.getComputedStyle( 'border-right-color' );
|
31
|
+
}
|
32
|
+
catch (e)
|
33
|
+
{
|
34
|
+
CKEDITOR.env.hc = false;
|
35
|
+
}
|
36
|
+
|
37
|
+
if ( CKEDITOR.env.hc )
|
38
|
+
CKEDITOR.env.cssClass += ' cke_hc';
|
39
|
+
|
40
|
+
hcDetect.remove();
|
41
|
+
})();
|
42
|
+
|
43
|
+
// Load core plugins.
|
44
|
+
CKEDITOR.plugins.load( CKEDITOR.config.corePlugins.split( ',' ), function()
|
45
|
+
{
|
46
|
+
CKEDITOR.status = 'loaded';
|
47
|
+
CKEDITOR.fire( 'loaded' );
|
48
|
+
|
49
|
+
// Process all instances created by the "basic" implementation.
|
50
|
+
var pending = CKEDITOR._.pending;
|
51
|
+
if ( pending )
|
52
|
+
{
|
53
|
+
delete CKEDITOR._.pending;
|
54
|
+
|
55
|
+
for ( var i = 0 ; i < pending.length ; i++ )
|
56
|
+
CKEDITOR.add( pending[ i ] );
|
57
|
+
}
|
58
|
+
});
|
59
|
+
|
60
|
+
// Needed for IE6 to not request image (HTTP 200 or 304) for every CSS background. (#6187)
|
61
|
+
if ( CKEDITOR.env.ie )
|
62
|
+
{
|
63
|
+
// Remove IE mouse flickering on IE6 because of background images.
|
64
|
+
try
|
65
|
+
{
|
66
|
+
document.execCommand( 'BackgroundImageCache', false, true );
|
67
|
+
}
|
68
|
+
catch (e)
|
69
|
+
{
|
70
|
+
// We have been reported about loading problems caused by the above
|
71
|
+
// line. For safety, let's just ignore errors.
|
72
|
+
}
|
73
|
+
}
|
74
|
+
|
75
|
+
/**
|
76
|
+
* Indicates that CKEditor is running on a High Contrast environment.
|
77
|
+
* @name CKEDITOR.env.hc
|
78
|
+
* @example
|
79
|
+
* if ( CKEDITOR.env.hc )
|
80
|
+
* alert( 'You're running on High Contrast mode. The editor interface will get adapted to provide you a better experience.' );
|
81
|
+
*/
|
82
|
+
|
83
|
+
/**
|
84
|
+
* Fired when a CKEDITOR core object is fully loaded and ready for interaction.
|
85
|
+
* @name CKEDITOR#loaded
|
86
|
+
* @event
|
87
|
+
*/
|
@@ -0,0 +1,141 @@
|
|
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 Contains the third and last part of the {@link CKEDITOR} object
|
8
|
+
* definition.
|
9
|
+
*/
|
10
|
+
|
11
|
+
// Remove the CKEDITOR.loadFullCore reference defined on ckeditor_basic.
|
12
|
+
delete CKEDITOR.loadFullCore;
|
13
|
+
|
14
|
+
/**
|
15
|
+
* Holds references to all editor instances created. The name of the properties
|
16
|
+
* in this object correspond to instance names, and their values contains the
|
17
|
+
* {@link CKEDITOR.editor} object representing them.
|
18
|
+
* @type {Object}
|
19
|
+
* @example
|
20
|
+
* alert( <b>CKEDITOR.instances</b>.editor1.name ); // "editor1"
|
21
|
+
*/
|
22
|
+
CKEDITOR.instances = {};
|
23
|
+
|
24
|
+
/**
|
25
|
+
* The document of the window holding the CKEDITOR object.
|
26
|
+
* @type {CKEDITOR.dom.document}
|
27
|
+
* @example
|
28
|
+
* alert( <b>CKEDITOR.document</b>.getBody().getName() ); // "body"
|
29
|
+
*/
|
30
|
+
CKEDITOR.document = new CKEDITOR.dom.document( document );
|
31
|
+
|
32
|
+
/**
|
33
|
+
* Adds an editor instance to the global {@link CKEDITOR} object. This function
|
34
|
+
* is available for internal use mainly.
|
35
|
+
* @param {CKEDITOR.editor} editor The editor instance to be added.
|
36
|
+
* @example
|
37
|
+
*/
|
38
|
+
CKEDITOR.add = function( editor )
|
39
|
+
{
|
40
|
+
CKEDITOR.instances[ editor.name ] = editor;
|
41
|
+
|
42
|
+
editor.on( 'focus', function()
|
43
|
+
{
|
44
|
+
if ( CKEDITOR.currentInstance != editor )
|
45
|
+
{
|
46
|
+
CKEDITOR.currentInstance = editor;
|
47
|
+
CKEDITOR.fire( 'currentInstance' );
|
48
|
+
}
|
49
|
+
});
|
50
|
+
|
51
|
+
editor.on( 'blur', function()
|
52
|
+
{
|
53
|
+
if ( CKEDITOR.currentInstance == editor )
|
54
|
+
{
|
55
|
+
CKEDITOR.currentInstance = null;
|
56
|
+
CKEDITOR.fire( 'currentInstance' );
|
57
|
+
}
|
58
|
+
});
|
59
|
+
};
|
60
|
+
|
61
|
+
/**
|
62
|
+
* Removes an editor instance from the global {@link CKEDITOR} object. This function
|
63
|
+
* is available for internal use only. External code must use {@link CKEDITOR.editor.prototype.destroy}
|
64
|
+
* to avoid memory leaks.
|
65
|
+
* @param {CKEDITOR.editor} editor The editor instance to be removed.
|
66
|
+
* @example
|
67
|
+
*/
|
68
|
+
CKEDITOR.remove = function( editor )
|
69
|
+
{
|
70
|
+
delete CKEDITOR.instances[ editor.name ];
|
71
|
+
};
|
72
|
+
|
73
|
+
/**
|
74
|
+
* Perform global clean up to free as much memory as possible
|
75
|
+
* when there are no instances left
|
76
|
+
*/
|
77
|
+
CKEDITOR.on( 'instanceDestroyed', function ()
|
78
|
+
{
|
79
|
+
if ( CKEDITOR.tools.isEmpty( this.instances ) )
|
80
|
+
CKEDITOR.fire( 'reset' );
|
81
|
+
});
|
82
|
+
|
83
|
+
// Load the bootstrap script.
|
84
|
+
CKEDITOR.loader.load( 'core/_bootstrap' ); // @Packager.RemoveLine
|
85
|
+
|
86
|
+
// Tri-state constants.
|
87
|
+
|
88
|
+
/**
|
89
|
+
* Used to indicate the ON or ACTIVE state.
|
90
|
+
* @constant
|
91
|
+
* @example
|
92
|
+
*/
|
93
|
+
CKEDITOR.TRISTATE_ON = 1;
|
94
|
+
|
95
|
+
/**
|
96
|
+
* Used to indicate the OFF or NON ACTIVE state.
|
97
|
+
* @constant
|
98
|
+
* @example
|
99
|
+
*/
|
100
|
+
CKEDITOR.TRISTATE_OFF = 2;
|
101
|
+
|
102
|
+
/**
|
103
|
+
* Used to indicate DISABLED state.
|
104
|
+
* @constant
|
105
|
+
* @example
|
106
|
+
*/
|
107
|
+
CKEDITOR.TRISTATE_DISABLED = 0;
|
108
|
+
|
109
|
+
/**
|
110
|
+
* The editor which is currently active (have user focus).
|
111
|
+
* @name CKEDITOR.currentInstance
|
112
|
+
* @type CKEDITOR.editor
|
113
|
+
* @see CKEDITOR#currentInstance
|
114
|
+
* @example
|
115
|
+
* function showCurrentEditorName()
|
116
|
+
* {
|
117
|
+
* if ( CKEDITOR.currentInstance )
|
118
|
+
* alert( CKEDITOR.currentInstance.name );
|
119
|
+
* else
|
120
|
+
* alert( 'Please focus an editor first.' );
|
121
|
+
* }
|
122
|
+
*/
|
123
|
+
|
124
|
+
/**
|
125
|
+
* Fired when the CKEDITOR.currentInstance object reference changes. This may
|
126
|
+
* happen when setting the focus on different editor instances in the page.
|
127
|
+
* @name CKEDITOR#currentInstance
|
128
|
+
* @event
|
129
|
+
* var editor; // Variable to hold a reference to the current editor.
|
130
|
+
* CKEDITOR.on( 'currentInstance' , function( e )
|
131
|
+
* {
|
132
|
+
* editor = CKEDITOR.currentInstance;
|
133
|
+
* });
|
134
|
+
*/
|
135
|
+
|
136
|
+
/**
|
137
|
+
* Fired when the last instance has been destroyed. This event is used to perform
|
138
|
+
* global memory clean up.
|
139
|
+
* @name CKEDITOR#reset
|
140
|
+
* @event
|
141
|
+
*/
|
@@ -0,0 +1,227 @@
|
|
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 Contains the first and essential part of the {@link CKEDITOR}
|
8
|
+
* object definition.
|
9
|
+
*/
|
10
|
+
|
11
|
+
// #### Compressed Code
|
12
|
+
// Must be updated on changes in the script as well as updated in the
|
13
|
+
// ckeditor_source.js and ckeditor_basic_source.js files.
|
14
|
+
|
15
|
+
// if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'',version:'3.6.2',rev:'7275',_:{},status:'unloaded',basePath:(function(){var d=window.CKEDITOR_BASEPATH||'';if(!d){var e=document.getElementsByTagName('script');for(var f=0;f<e.length;f++){var g=e[f].src.match(/(^|.*[\\\/])ckeditor(?:_basic)?(?:_source)?.js(?:\?.*)?$/i);if(g){d=g[1];break;}}}if(d.indexOf(':/')==-1)if(d.indexOf('/')===0)d=location.href.match(/^.*?:\/\/[^\/]*/)[0]+d;else d=location.href.match(/^[^\?]*\/(?:)/)[0]+d;return d;})(),getUrl:function(d){if(d.indexOf(':/')==-1&&d.indexOf('/')!==0)d=this.basePath+d;if(this.timestamp&&d.charAt(d.length-1)!='/')d+=(d.indexOf('?')>=0?'&':'?')+('t=')+this.timestamp;return d;}},b=window.CKEDITOR_GETURL;if(b){var c=a.getUrl;a.getUrl=function(d){return b.call(a,d)||c.call(a,d);};}return a;})();
|
16
|
+
|
17
|
+
// #### Raw code
|
18
|
+
// ATTENTION: read the above "Compressed Code" notes when changing this code.
|
19
|
+
|
20
|
+
/* @Packager.RemoveLine
|
21
|
+
// Avoid having the editor code initialized twice. (#7588)
|
22
|
+
// Use CKEDITOR.dom to check whether the full ckeditor.js code has been loaded
|
23
|
+
// or just ckeditor_basic.js.
|
24
|
+
// Remove these lines when compressing manually.
|
25
|
+
if ( window.CKEDITOR && window.CKEDITOR.dom )
|
26
|
+
return;
|
27
|
+
@Packager.RemoveLine */
|
28
|
+
|
29
|
+
if ( !window.CKEDITOR )
|
30
|
+
{
|
31
|
+
/**
|
32
|
+
* @name CKEDITOR
|
33
|
+
* @namespace This is the API entry point. The entire CKEditor code runs under this object.
|
34
|
+
* @example
|
35
|
+
*/
|
36
|
+
window.CKEDITOR = (function()
|
37
|
+
{
|
38
|
+
var CKEDITOR =
|
39
|
+
/** @lends CKEDITOR */
|
40
|
+
{
|
41
|
+
|
42
|
+
/**
|
43
|
+
* A constant string unique for each release of CKEditor. Its value
|
44
|
+
* is used, by default, to build the URL for all resources loaded
|
45
|
+
* by the editor code, guaranteeing clean cache results when
|
46
|
+
* upgrading.
|
47
|
+
* @type String
|
48
|
+
* @example
|
49
|
+
* alert( CKEDITOR.timestamp ); // e.g. '87dm'
|
50
|
+
*/
|
51
|
+
// The production implementation contains a fixed timestamp, unique
|
52
|
+
// for each release and generated by the releaser.
|
53
|
+
// (Base 36 value of each component of YYMMDDHH - 4 chars total - e.g. 87bm == 08071122)
|
54
|
+
timestamp : 'B8DJ5M3',
|
55
|
+
|
56
|
+
/**
|
57
|
+
* Contains the CKEditor version number.
|
58
|
+
* @type String
|
59
|
+
* @example
|
60
|
+
* alert( CKEDITOR.version ); // e.g. 'CKEditor 3.4.1'
|
61
|
+
*/
|
62
|
+
version : '3.6.2',
|
63
|
+
|
64
|
+
/**
|
65
|
+
* Contains the CKEditor revision number.
|
66
|
+
* The revision number is incremented automatically, following each
|
67
|
+
* modification to the CKEditor source code.
|
68
|
+
* @type String
|
69
|
+
* @example
|
70
|
+
* alert( CKEDITOR.revision ); // e.g. '3975'
|
71
|
+
*/
|
72
|
+
revision : '7275',
|
73
|
+
|
74
|
+
/**
|
75
|
+
* Private object used to hold core stuff. It should not be used outside of
|
76
|
+
* the API code as properties defined here may change at any time
|
77
|
+
* without notice.
|
78
|
+
* @private
|
79
|
+
*/
|
80
|
+
_ : {},
|
81
|
+
|
82
|
+
/**
|
83
|
+
* Indicates the API loading status. The following statuses are available:
|
84
|
+
* <ul>
|
85
|
+
* <li><b>unloaded</b>: the API is not yet loaded.</li>
|
86
|
+
* <li><b>basic_loaded</b>: the basic API features are available.</li>
|
87
|
+
* <li><b>basic_ready</b>: the basic API is ready to load the full core code.</li>
|
88
|
+
* <li><b>loading</b>: the full API is being loaded.</li>
|
89
|
+
* <li><b>loaded</b>: the API can be fully used.</li>
|
90
|
+
* </ul>
|
91
|
+
* @type String
|
92
|
+
* @example
|
93
|
+
* if ( <b>CKEDITOR.status</b> == 'loaded' )
|
94
|
+
* {
|
95
|
+
* // The API can now be fully used.
|
96
|
+
* }
|
97
|
+
*/
|
98
|
+
status : 'unloaded',
|
99
|
+
|
100
|
+
/**
|
101
|
+
* Contains the full URL for the CKEditor installation directory.
|
102
|
+
* It is possible to manually provide the base path by setting a
|
103
|
+
* global variable named CKEDITOR_BASEPATH. This global variable
|
104
|
+
* must be set <strong>before</strong> the editor script loading.
|
105
|
+
* @type String
|
106
|
+
* @example
|
107
|
+
* alert( <b>CKEDITOR.basePath</b> ); // "http://www.example.com/ckeditor/" (e.g.)
|
108
|
+
*/
|
109
|
+
basePath : (function()
|
110
|
+
{
|
111
|
+
// ATTENTION: fixes to this code must be ported to
|
112
|
+
// var basePath in "core/loader.js".
|
113
|
+
|
114
|
+
// Find out the editor directory path, based on its <script> tag.
|
115
|
+
var path = window.CKEDITOR_BASEPATH || '';
|
116
|
+
|
117
|
+
if ( !path )
|
118
|
+
{
|
119
|
+
var scripts = document.getElementsByTagName( 'script' );
|
120
|
+
|
121
|
+
for ( var i = 0 ; i < scripts.length ; i++ )
|
122
|
+
{
|
123
|
+
var match = scripts[i].src.match( /(^|.*[\\\/])ckeditor(?:_basic)?(?:_source)?.js(?:\?.*)?$/i );
|
124
|
+
|
125
|
+
if ( match )
|
126
|
+
{
|
127
|
+
path = match[1];
|
128
|
+
break;
|
129
|
+
}
|
130
|
+
}
|
131
|
+
}
|
132
|
+
|
133
|
+
// In IE (only) the script.src string is the raw value entered in the
|
134
|
+
// HTML source. Other browsers return the full resolved URL instead.
|
135
|
+
if ( path.indexOf(':/') == -1 )
|
136
|
+
{
|
137
|
+
// Absolute path.
|
138
|
+
if ( path.indexOf( '/' ) === 0 )
|
139
|
+
path = location.href.match( /^.*?:\/\/[^\/]*/ )[0] + path;
|
140
|
+
// Relative path.
|
141
|
+
else
|
142
|
+
path = location.href.match( /^[^\?]*\/(?:)/ )[0] + path;
|
143
|
+
}
|
144
|
+
|
145
|
+
if ( !path )
|
146
|
+
throw 'The CKEditor installation path could not be automatically detected. Please set the global variable "CKEDITOR_BASEPATH" before creating editor instances.';
|
147
|
+
|
148
|
+
return path;
|
149
|
+
})(),
|
150
|
+
|
151
|
+
/**
|
152
|
+
* Gets the full URL for CKEditor resources. By default, URLs
|
153
|
+
* returned by this function contain a querystring parameter ("t")
|
154
|
+
* set to the {@link CKEDITOR.timestamp} value.<br />
|
155
|
+
* <br />
|
156
|
+
* It is possible to provide a custom implementation of this
|
157
|
+
* function by setting a global variable named CKEDITOR_GETURL.
|
158
|
+
* This global variable must be set <strong>before</strong> the editor script
|
159
|
+
* loading. If the custom implementation returns nothing (==null), the
|
160
|
+
* default implementation is used.
|
161
|
+
* @param {String} resource The resource whose full URL we want to get.
|
162
|
+
* It may be a full, absolute, or relative URL.
|
163
|
+
* @returns {String} The full URL.
|
164
|
+
* @example
|
165
|
+
* // e.g. http://www.example.com/ckeditor/skins/default/editor.css?t=87dm
|
166
|
+
* alert( CKEDITOR.getUrl( 'skins/default/editor.css' ) );
|
167
|
+
* @example
|
168
|
+
* // e.g. http://www.example.com/skins/default/editor.css?t=87dm
|
169
|
+
* alert( CKEDITOR.getUrl( '/skins/default/editor.css' ) );
|
170
|
+
* @example
|
171
|
+
* // e.g. http://www.somesite.com/skins/default/editor.css?t=87dm
|
172
|
+
* alert( CKEDITOR.getUrl( 'http://www.somesite.com/skins/default/editor.css' ) );
|
173
|
+
*/
|
174
|
+
getUrl : function( resource )
|
175
|
+
{
|
176
|
+
// If this is not a full or absolute path.
|
177
|
+
if ( resource.indexOf(':/') == -1 && resource.indexOf( '/' ) !== 0 )
|
178
|
+
resource = this.basePath + resource;
|
179
|
+
|
180
|
+
// Add the timestamp, except for directories.
|
181
|
+
if ( this.timestamp && resource.charAt( resource.length - 1 ) != '/' && !(/[&?]t=/).test( resource ) )
|
182
|
+
resource += ( resource.indexOf( '?' ) >= 0 ? '&' : '?' ) + 't=' + this.timestamp;
|
183
|
+
|
184
|
+
return resource;
|
185
|
+
}
|
186
|
+
};
|
187
|
+
|
188
|
+
// Make it possible to override the getUrl function with a custom
|
189
|
+
// implementation pointing to a global named CKEDITOR_GETURL.
|
190
|
+
var newGetUrl = window.CKEDITOR_GETURL;
|
191
|
+
if ( newGetUrl )
|
192
|
+
{
|
193
|
+
var originalGetUrl = CKEDITOR.getUrl;
|
194
|
+
CKEDITOR.getUrl = function ( resource )
|
195
|
+
{
|
196
|
+
return newGetUrl.call( CKEDITOR, resource ) ||
|
197
|
+
originalGetUrl.call( CKEDITOR, resource );
|
198
|
+
};
|
199
|
+
}
|
200
|
+
|
201
|
+
return CKEDITOR;
|
202
|
+
})();
|
203
|
+
}
|
204
|
+
|
205
|
+
/**
|
206
|
+
* Function called upon loading a custom configuration file that can
|
207
|
+
* modify the editor instance configuration ({@link CKEDITOR.editor#config }).
|
208
|
+
* It is usually defined inside the custom configuration files that can
|
209
|
+
* include developer defined settings.
|
210
|
+
* @name CKEDITOR.editorConfig
|
211
|
+
* @function
|
212
|
+
* @param {CKEDITOR.config} config A configuration object containing the
|
213
|
+
* settings defined for a {@link CKEDITOR.editor} instance up to this
|
214
|
+
* function call. Note that not all settings may still be available. See
|
215
|
+
* <a href="http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Setting_Configurations#Configuration_Loading_Order">Configuration Loading Order</a>
|
216
|
+
* for details.
|
217
|
+
* @example
|
218
|
+
* // This is supposed to be placed in the config.js file.
|
219
|
+
* CKEDITOR.editorConfig = function( config )
|
220
|
+
* {
|
221
|
+
* // Define changes to default configuration here. For example:
|
222
|
+
* config.language = 'fr';
|
223
|
+
* config.uiColor = '#AADC6E';
|
224
|
+
* };
|
225
|
+
*/
|
226
|
+
|
227
|
+
// PACKAGER_RENAME( CKEDITOR )
|