esp-ckeditor 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +32 -0
- data/Rakefile +28 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/_bootstrap.js +87 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/ckeditor.js +141 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/ckeditor_base.js +227 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/ckeditor_basic.js +238 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/command.js +209 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/commanddefinition.js +129 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/config.js +423 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dataprocessor.js +65 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/comment.js +32 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/document.js +251 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/documentfragment.js +49 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/domobject.js +258 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/element.js +1691 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/elementpath.js +119 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/event.js +145 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/node.js +696 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/nodelist.js +26 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/range.js +2054 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/rangelist.js +213 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/text.js +128 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/walker.js +462 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/window.js +96 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom.js +20 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dtd.js +266 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/editor.js +1060 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/editor_basic.js +186 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/env.js +305 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/event.js +342 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/eventInfo.js +120 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/focusmanager.js +152 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/cdata.js +43 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/comment.js +60 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/element.js +308 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/filter.js +288 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/fragment.js +518 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/text.js +53 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser.js +224 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/lang.js +157 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/loader.js +240 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/plugindefinition.js +83 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/plugins.js +103 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/resourcemanager.js +238 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/scriptloader.js +180 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/skins.js +184 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/themes.js +19 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/tools.js +763 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/ui.js +128 -0
- data/app/assets/javascripts/esp-ckeditor/_source/lang/_languages.js +27 -0
- data/app/assets/javascripts/esp-ckeditor/_source/lang/en.js +815 -0
- data/app/assets/javascripts/esp-ckeditor/_source/lang/ru.js +815 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +222 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/lang/he.js +216 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/plugin.js +47 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/basicstyles/plugin.js +129 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/button/plugin.js +290 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/clipboard/dialogs/paste.js +223 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/clipboard/plugin.js +453 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/contextmenu/plugin.js +179 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialog/dialogDefinition.js +1166 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialog/plugin.js +3308 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialogadvtab/plugin.js +208 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialogui/plugin.js +1541 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/domiterator/plugin.js +361 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/editingblock/plugin.js +278 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/elementspath/plugin.js +218 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/enterkey/plugin.js +433 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/entities/plugin.js +250 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/dialogs/esp_attachment.js +234 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/images/esp_attachment.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/lang/en.js +22 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/lang/ru.js +22 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/lang/uk.js +22 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/plugin.js +23 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/dialogs/esp_audio.js +207 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/images/esp_audio.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/images/placeholder.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/lang/en.js +18 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/lang/ru.js +18 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/lang/uk.js +18 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/plugin.js +182 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_blockquote/dialogs/esp_blockquote.js +132 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_blockquote/plugin.js +235 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/dialogs/esp_image.js +1414 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/images/esp_image.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/lang/en.js +9 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/lang/ru.js +9 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/lang/uk.js +9 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/plugin.js +80 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/dialogs/esp_anchor.js +145 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/dialogs/esp_link.js +1396 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/anchor.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/esp_anchor.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/esp_link.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/esp_unlink.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/lang/en.js +8 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/lang/ru.js +8 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/lang/uk.js +8 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/plugin.js +379 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_address.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_blockquote.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_div.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h1.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h2.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h3.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h4.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h5.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h6.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_p.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_pre.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/esp_showblocks.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/plugin.js +163 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/dialogs/esp_video.js +277 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/images/esp_video.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/images/placeholder.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/lang/en.js +19 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/lang/ru.js +19 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/lang/uk.js +19 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/plugin.js +182 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/fakeobjects/plugin.js +175 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/filebrowser/plugin.js +534 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/find/dialogs/find.js +915 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/find/plugin.js +47 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/floatpanel/plugin.js +428 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/format/plugin.js +197 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/htmldataprocessor/plugin.js +596 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/htmlwriter/plugin.js +319 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/image/dialogs/image.js +1407 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/image/plugin.js +81 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/indent/plugin.js +461 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/justify/plugin.js +253 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/keystrokes/plugin.js +225 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/list/plugin.js +774 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/listblock/plugin.js +266 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +225 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/liststyle/plugin.js +66 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/maximize/plugin.js +353 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/menu/plugin.js +541 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/panel/plugin.js +400 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastefromword/filter/default.js +1367 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastefromword/plugin.js +141 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +67 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastetext/plugin.js +98 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/popup/plugin.js +64 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/removeformat/plugin.js +185 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/resize/plugin.js +168 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/richcombo/plugin.js +381 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/selection/plugin.js +1729 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/showborders/plugin.js +207 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/sourcearea/plugin.js +209 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/styles/plugin.js +1700 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/styles/styles/default.js +88 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/stylescombo/plugin.js +218 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/tab/plugin.js +367 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/table/dialogs/table.js +623 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/table/plugin.js +78 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +525 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/tabletools/plugin.js +1194 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/toolbar/plugin.js +545 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/undo/plugin.js +578 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/wysiwygarea/plugin.js +1347 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/dialog.css +988 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/editor.css +25 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/elementspath.css +73 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/icons.css +367 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/icons.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/icons_rtl.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/mini.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/noimage.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/sprites.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/mainui.css +209 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/menu.css +232 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/panel.css +227 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/presets.css +49 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/reset.css +85 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/richcombo.css +287 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/skin.js +236 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/templates.css +88 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/toolbar.css +412 -0
- data/app/assets/javascripts/esp-ckeditor/_source/themes/default/theme.js +407 -0
- data/app/assets/javascripts/esp-ckeditor/application.js +8 -0
- data/app/assets/javascripts/esp-ckeditor/ckeditor.js +137 -0
- data/app/assets/javascripts/esp-ckeditor/ckeditor.pack +194 -0
- data/app/assets/javascripts/esp-ckeditor/ckeditor_source.js +35 -0
- data/app/assets/javascripts/esp-ckeditor/ckpackager.jar +0 -0
- data/app/assets/javascripts/esp-ckeditor/ckpackager.txt +2 -0
- data/app/assets/javascripts/esp-ckeditor/config.js +147 -0
- data/app/assets/javascripts/esp-ckeditor/contents.css +38 -0
- data/app/assets/javascripts/esp-ckeditor/images/spacer.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/init_ckeditor.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/lang/he.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/basicstyles/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/button/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/clipboard/dialogs/paste.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/clipboard/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/contextmenu/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/dialog/dialogDefinition.js +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/dialog/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/dialogadvtab/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/dialogui/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/domiterator/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/editingblock/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/elementspath/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/enterkey/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/entities/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/dialogs/esp_attachment.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/images/esp_attachment.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/dialogs/esp_audio.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/images/esp_audio.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/images/placeholder.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_blockquote/dialogs/esp_blockquote.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_blockquote/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/dialogs/esp_image.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/images/esp_image.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/dialogs/esp_anchor.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/dialogs/esp_link.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/anchor.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/esp_anchor.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/esp_link.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/esp_unlink.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_address.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_blockquote.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_div.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h1.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h2.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h3.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h4.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h5.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h6.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_p.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_pre.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/esp_showblocks.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/dialogs/esp_video.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/images/esp_video.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/images/placeholder.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/fakeobjects/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/filebrowser/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/find/dialogs/find.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/find/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/floatpanel/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/format/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/htmldataprocessor/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/htmlwriter/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/image/dialogs/image.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/image/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/indent/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/justify/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/keystrokes/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/list/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/listblock/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/liststyle/dialogs/liststyle.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/liststyle/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/maximize/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/menu/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/panel/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/pastefromword/filter/default.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/pastefromword/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/pastetext/dialogs/pastetext.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/pastetext/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/popup/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/removeformat/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/resize/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/richcombo/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/selection/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/showborders/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/sourcearea/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/styles/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/styles/styles/default.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/stylescombo/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/tab/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/table/dialogs/table.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/table/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/tabletools/dialogs/tableCell.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/tabletools/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/toolbar/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/undo/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/wysiwygarea/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/dialog.css +988 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/editor.css +25 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/elementspath.css +73 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/icons.css +367 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/icons.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/icons_rtl.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/dialog_sides.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/dialog_sides.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/mini.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/noimage.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/sprites.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/sprites_ie6.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/toolbar_start.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/mainui.css +209 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/menu.css +232 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/panel.css +227 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/presets.css +49 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/reset.css +85 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/richcombo.css +287 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/skin.js +236 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/templates.css +88 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/toolbar.css +412 -0
- data/app/inputs/ckeditor_input.rb +42 -0
- data/config/routes.rb +2 -0
- data/lib/esp-ckeditor/engine.rb +9 -0
- data/lib/esp-ckeditor/version.rb +3 -0
- data/lib/esp-ckeditor.rb +17 -0
- data/lib/tasks/esp-ckeditor_tasks.rake +4 -0
- metadata +434 -0
@@ -0,0 +1,168 @@
|
|
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
|
+
CKEDITOR.plugins.add( 'resize',
|
7
|
+
{
|
8
|
+
init : function( editor )
|
9
|
+
{
|
10
|
+
var config = editor.config;
|
11
|
+
|
12
|
+
// Resize in the same direction of chrome,
|
13
|
+
// which is identical to dir of editor element. (#6614)
|
14
|
+
var resizeDir = editor.element.getDirection( 1 );
|
15
|
+
|
16
|
+
!config.resize_dir && ( config.resize_dir = 'both' );
|
17
|
+
( config.resize_maxWidth == undefined ) && ( config.resize_maxWidth = 3000 );
|
18
|
+
( config.resize_maxHeight == undefined ) && ( config.resize_maxHeight = 3000 );
|
19
|
+
( config.resize_minWidth == undefined ) && ( config.resize_minWidth = 750 );
|
20
|
+
( config.resize_minHeight == undefined ) && ( config.resize_minHeight = 250 );
|
21
|
+
|
22
|
+
if ( config.resize_enabled !== false )
|
23
|
+
{
|
24
|
+
var container = null,
|
25
|
+
origin,
|
26
|
+
startSize,
|
27
|
+
resizeHorizontal = ( config.resize_dir == 'both' || config.resize_dir == 'horizontal' ) &&
|
28
|
+
( config.resize_minWidth != config.resize_maxWidth ),
|
29
|
+
resizeVertical = ( config.resize_dir == 'both' || config.resize_dir == 'vertical' ) &&
|
30
|
+
( config.resize_minHeight != config.resize_maxHeight );
|
31
|
+
|
32
|
+
function dragHandler( evt )
|
33
|
+
{
|
34
|
+
var dx = evt.data.$.screenX - origin.x,
|
35
|
+
dy = evt.data.$.screenY - origin.y,
|
36
|
+
width = startSize.width,
|
37
|
+
height = startSize.height,
|
38
|
+
internalWidth = width + dx * ( resizeDir == 'rtl' ? -1 : 1 ),
|
39
|
+
internalHeight = height + dy;
|
40
|
+
|
41
|
+
if ( resizeHorizontal )
|
42
|
+
width = Math.max( config.resize_minWidth, Math.min( internalWidth, config.resize_maxWidth ) );
|
43
|
+
|
44
|
+
if ( resizeVertical )
|
45
|
+
height = Math.max( config.resize_minHeight, Math.min( internalHeight, config.resize_maxHeight ) );
|
46
|
+
|
47
|
+
editor.resize( width, height );
|
48
|
+
}
|
49
|
+
|
50
|
+
function dragEndHandler ( evt )
|
51
|
+
{
|
52
|
+
CKEDITOR.document.removeListener( 'mousemove', dragHandler );
|
53
|
+
CKEDITOR.document.removeListener( 'mouseup', dragEndHandler );
|
54
|
+
|
55
|
+
if ( editor.document )
|
56
|
+
{
|
57
|
+
editor.document.removeListener( 'mousemove', dragHandler );
|
58
|
+
editor.document.removeListener( 'mouseup', dragEndHandler );
|
59
|
+
}
|
60
|
+
}
|
61
|
+
|
62
|
+
var mouseDownFn = CKEDITOR.tools.addFunction( function( $event )
|
63
|
+
{
|
64
|
+
if ( !container )
|
65
|
+
container = editor.getResizable();
|
66
|
+
|
67
|
+
startSize = { width : container.$.offsetWidth || 0, height : container.$.offsetHeight || 0 };
|
68
|
+
origin = { x : $event.screenX, y : $event.screenY };
|
69
|
+
|
70
|
+
config.resize_minWidth > startSize.width && ( config.resize_minWidth = startSize.width );
|
71
|
+
config.resize_minHeight > startSize.height && ( config.resize_minHeight = startSize.height );
|
72
|
+
|
73
|
+
CKEDITOR.document.on( 'mousemove', dragHandler );
|
74
|
+
CKEDITOR.document.on( 'mouseup', dragEndHandler );
|
75
|
+
|
76
|
+
if ( editor.document )
|
77
|
+
{
|
78
|
+
editor.document.on( 'mousemove', dragHandler );
|
79
|
+
editor.document.on( 'mouseup', dragEndHandler );
|
80
|
+
}
|
81
|
+
});
|
82
|
+
|
83
|
+
editor.on( 'destroy', function() { CKEDITOR.tools.removeFunction( mouseDownFn ); } );
|
84
|
+
|
85
|
+
editor.on( 'themeSpace', function( event )
|
86
|
+
{
|
87
|
+
if ( event.data.space == 'bottom' )
|
88
|
+
{
|
89
|
+
var direction = '';
|
90
|
+
if ( resizeHorizontal && !resizeVertical )
|
91
|
+
direction = ' cke_resizer_horizontal';
|
92
|
+
if ( !resizeHorizontal && resizeVertical )
|
93
|
+
direction = ' cke_resizer_vertical';
|
94
|
+
|
95
|
+
var resizerHtml =
|
96
|
+
'<div' +
|
97
|
+
' class="cke_resizer' + direction + ' cke_resizer_' + resizeDir + '"' +
|
98
|
+
' title="' + CKEDITOR.tools.htmlEncode( editor.lang.resize ) + '"' +
|
99
|
+
' onmousedown="CKEDITOR.tools.callFunction(' + mouseDownFn + ', event)"' +
|
100
|
+
'></div>';
|
101
|
+
|
102
|
+
// Always sticks the corner of botttom space.
|
103
|
+
resizeDir == 'ltr' && direction == 'ltr' ?
|
104
|
+
event.data.html += resizerHtml :
|
105
|
+
event.data.html = resizerHtml + event.data.html;
|
106
|
+
}
|
107
|
+
}, editor, null, 100 );
|
108
|
+
}
|
109
|
+
}
|
110
|
+
} );
|
111
|
+
|
112
|
+
/**
|
113
|
+
* The minimum editor width, in pixels, when resizing the editor interface by using the resize handle.
|
114
|
+
* Note: It falls back to editor's actual width if it is smaller than the default value.
|
115
|
+
* @name CKEDITOR.config.resize_minWidth
|
116
|
+
* @type Number
|
117
|
+
* @default 750
|
118
|
+
* @example
|
119
|
+
* config.resize_minWidth = 500;
|
120
|
+
*/
|
121
|
+
|
122
|
+
/**
|
123
|
+
* The minimum editor height, in pixels, when resizing the editor interface by using the resize handle.
|
124
|
+
* Note: It falls back to editor's actual height if it is smaller than the default value.
|
125
|
+
* @name CKEDITOR.config.resize_minHeight
|
126
|
+
* @type Number
|
127
|
+
* @default 250
|
128
|
+
* @example
|
129
|
+
* config.resize_minHeight = 600;
|
130
|
+
*/
|
131
|
+
|
132
|
+
/**
|
133
|
+
* The maximum editor width, in pixels, when resizing the editor interface by using the resize handle.
|
134
|
+
* @name CKEDITOR.config.resize_maxWidth
|
135
|
+
* @type Number
|
136
|
+
* @default 3000
|
137
|
+
* @example
|
138
|
+
* config.resize_maxWidth = 750;
|
139
|
+
*/
|
140
|
+
|
141
|
+
/**
|
142
|
+
* The maximum editor height, in pixels, when resizing the editor interface by using the resize handle.
|
143
|
+
* @name CKEDITOR.config.resize_maxHeight
|
144
|
+
* @type Number
|
145
|
+
* @default 3000
|
146
|
+
* @example
|
147
|
+
* config.resize_maxHeight = 600;
|
148
|
+
*/
|
149
|
+
|
150
|
+
/**
|
151
|
+
* Whether to enable the resizing feature. If this feature is disabled, the resize handle will not be visible.
|
152
|
+
* @name CKEDITOR.config.resize_enabled
|
153
|
+
* @type Boolean
|
154
|
+
* @default true
|
155
|
+
* @example
|
156
|
+
* config.resize_enabled = false;
|
157
|
+
*/
|
158
|
+
|
159
|
+
/**
|
160
|
+
* The dimensions for which the editor resizing is enabled. Possible values
|
161
|
+
* are <code>both</code>, <code>vertical</code>, and <code>horizontal</code>.
|
162
|
+
* @name CKEDITOR.config.resize_dir
|
163
|
+
* @type String
|
164
|
+
* @default 'both'
|
165
|
+
* @since 3.3
|
166
|
+
* @example
|
167
|
+
* config.resize_dir = 'vertical';
|
168
|
+
*/
|
@@ -0,0 +1,381 @@
|
|
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
|
+
CKEDITOR.plugins.add( 'richcombo',
|
7
|
+
{
|
8
|
+
requires : [ 'floatpanel', 'listblock', 'button' ],
|
9
|
+
|
10
|
+
beforeInit : function( editor )
|
11
|
+
{
|
12
|
+
editor.ui.addHandler( CKEDITOR.UI_RICHCOMBO, CKEDITOR.ui.richCombo.handler );
|
13
|
+
}
|
14
|
+
});
|
15
|
+
|
16
|
+
/**
|
17
|
+
* Button UI element.
|
18
|
+
* @constant
|
19
|
+
* @example
|
20
|
+
*/
|
21
|
+
CKEDITOR.UI_RICHCOMBO = 'richcombo';
|
22
|
+
|
23
|
+
CKEDITOR.ui.richCombo = CKEDITOR.tools.createClass(
|
24
|
+
{
|
25
|
+
$ : function( definition )
|
26
|
+
{
|
27
|
+
// Copy all definition properties to this object.
|
28
|
+
CKEDITOR.tools.extend( this, definition,
|
29
|
+
// Set defaults.
|
30
|
+
{
|
31
|
+
title : definition.label,
|
32
|
+
modes : { wysiwyg : 1 }
|
33
|
+
});
|
34
|
+
|
35
|
+
// We don't want the panel definition in this object.
|
36
|
+
var panelDefinition = this.panel || {};
|
37
|
+
delete this.panel;
|
38
|
+
|
39
|
+
this.id = CKEDITOR.tools.getNextNumber();
|
40
|
+
|
41
|
+
this.document = ( panelDefinition
|
42
|
+
&& panelDefinition.parent
|
43
|
+
&& panelDefinition.parent.getDocument() )
|
44
|
+
|| CKEDITOR.document;
|
45
|
+
|
46
|
+
panelDefinition.className = ( panelDefinition.className || '' ) + ' cke_rcombopanel';
|
47
|
+
panelDefinition.block =
|
48
|
+
{
|
49
|
+
multiSelect : panelDefinition.multiSelect,
|
50
|
+
attributes : panelDefinition.attributes
|
51
|
+
};
|
52
|
+
|
53
|
+
this._ =
|
54
|
+
{
|
55
|
+
panelDefinition : panelDefinition,
|
56
|
+
items : {},
|
57
|
+
state : CKEDITOR.TRISTATE_OFF
|
58
|
+
};
|
59
|
+
},
|
60
|
+
|
61
|
+
statics :
|
62
|
+
{
|
63
|
+
handler :
|
64
|
+
{
|
65
|
+
create : function( definition )
|
66
|
+
{
|
67
|
+
return new CKEDITOR.ui.richCombo( definition );
|
68
|
+
}
|
69
|
+
}
|
70
|
+
},
|
71
|
+
|
72
|
+
proto :
|
73
|
+
{
|
74
|
+
renderHtml : function( editor )
|
75
|
+
{
|
76
|
+
var output = [];
|
77
|
+
this.render( editor, output );
|
78
|
+
return output.join( '' );
|
79
|
+
},
|
80
|
+
|
81
|
+
/**
|
82
|
+
* Renders the combo.
|
83
|
+
* @param {CKEDITOR.editor} editor The editor instance which this button is
|
84
|
+
* to be used by.
|
85
|
+
* @param {Array} output The output array to which append the HTML relative
|
86
|
+
* to this button.
|
87
|
+
* @example
|
88
|
+
*/
|
89
|
+
render : function( editor, output )
|
90
|
+
{
|
91
|
+
var env = CKEDITOR.env;
|
92
|
+
|
93
|
+
var id = 'cke_' + this.id;
|
94
|
+
var clickFn = CKEDITOR.tools.addFunction( function( $element )
|
95
|
+
{
|
96
|
+
var _ = this._;
|
97
|
+
|
98
|
+
if ( _.state == CKEDITOR.TRISTATE_DISABLED )
|
99
|
+
return;
|
100
|
+
|
101
|
+
this.createPanel( editor );
|
102
|
+
|
103
|
+
if ( _.on )
|
104
|
+
{
|
105
|
+
_.panel.hide();
|
106
|
+
return;
|
107
|
+
}
|
108
|
+
|
109
|
+
this.commit();
|
110
|
+
var value = this.getValue();
|
111
|
+
if ( value )
|
112
|
+
_.list.mark( value );
|
113
|
+
else
|
114
|
+
_.list.unmarkAll();
|
115
|
+
|
116
|
+
_.panel.showBlock( this.id, new CKEDITOR.dom.element( $element ), 4 );
|
117
|
+
},
|
118
|
+
this );
|
119
|
+
|
120
|
+
var instance = {
|
121
|
+
id : id,
|
122
|
+
combo : this,
|
123
|
+
focus : function()
|
124
|
+
{
|
125
|
+
var element = CKEDITOR.document.getById( id ).getChild( 1 );
|
126
|
+
element.focus();
|
127
|
+
},
|
128
|
+
clickFn : clickFn
|
129
|
+
};
|
130
|
+
|
131
|
+
function updateState()
|
132
|
+
{
|
133
|
+
var state = this.modes[ editor.mode ] ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED;
|
134
|
+
this.setState( editor.readOnly && !this.readOnly ? CKEDITOR.TRISTATE_DISABLED : state );
|
135
|
+
this.setValue( '' );
|
136
|
+
}
|
137
|
+
|
138
|
+
editor.on( 'mode', updateState, this );
|
139
|
+
// If this combo is sensitive to readOnly state, update it accordingly.
|
140
|
+
!this.readOnly && editor.on( 'readOnly', updateState, this);
|
141
|
+
|
142
|
+
var keyDownFn = CKEDITOR.tools.addFunction( function( ev, element )
|
143
|
+
{
|
144
|
+
ev = new CKEDITOR.dom.event( ev );
|
145
|
+
|
146
|
+
var keystroke = ev.getKeystroke();
|
147
|
+
switch ( keystroke )
|
148
|
+
{
|
149
|
+
case 13 : // ENTER
|
150
|
+
case 32 : // SPACE
|
151
|
+
case 40 : // ARROW-DOWN
|
152
|
+
// Show panel
|
153
|
+
CKEDITOR.tools.callFunction( clickFn, element );
|
154
|
+
break;
|
155
|
+
default :
|
156
|
+
// Delegate the default behavior to toolbar button key handling.
|
157
|
+
instance.onkey( instance, keystroke );
|
158
|
+
}
|
159
|
+
|
160
|
+
// Avoid subsequent focus grab on editor document.
|
161
|
+
ev.preventDefault();
|
162
|
+
});
|
163
|
+
|
164
|
+
var focusFn = CKEDITOR.tools.addFunction( function() { instance.onfocus && instance.onfocus(); } );
|
165
|
+
|
166
|
+
// For clean up
|
167
|
+
instance.keyDownFn = keyDownFn;
|
168
|
+
|
169
|
+
output.push(
|
170
|
+
'<span class="cke_rcombo" role="presentation">',
|
171
|
+
'<span id=', id );
|
172
|
+
|
173
|
+
if ( this.className )
|
174
|
+
output.push( ' class="', this.className, ' cke_off"');
|
175
|
+
|
176
|
+
output.push(
|
177
|
+
' role="presentation">',
|
178
|
+
'<span id="' + id+ '_label" class=cke_label>', this.label, '</span>',
|
179
|
+
'<a hidefocus=true title="', this.title, '" tabindex="-1"',
|
180
|
+
env.gecko && env.version >= 10900 && !env.hc ? '' : ' href="javascript:void(\'' + this.label + '\')"',
|
181
|
+
' role="button" aria-labelledby="', id , '_label" aria-describedby="', id, '_text" aria-haspopup="true"' );
|
182
|
+
|
183
|
+
// Some browsers don't cancel key events in the keydown but in the
|
184
|
+
// keypress.
|
185
|
+
// TODO: Check if really needed for Gecko+Mac.
|
186
|
+
if ( CKEDITOR.env.opera || ( CKEDITOR.env.gecko && CKEDITOR.env.mac ) )
|
187
|
+
{
|
188
|
+
output.push(
|
189
|
+
' onkeypress="return false;"' );
|
190
|
+
}
|
191
|
+
|
192
|
+
// With Firefox, we need to force it to redraw, otherwise it
|
193
|
+
// will remain in the focus state.
|
194
|
+
if ( CKEDITOR.env.gecko )
|
195
|
+
{
|
196
|
+
output.push(
|
197
|
+
' onblur="this.style.cssText = this.style.cssText;"' );
|
198
|
+
}
|
199
|
+
|
200
|
+
output.push(
|
201
|
+
' onkeydown="CKEDITOR.tools.callFunction( ', keyDownFn, ', event, this );"' +
|
202
|
+
' onfocus="return CKEDITOR.tools.callFunction(', focusFn, ', event);" ' +
|
203
|
+
( CKEDITOR.env.ie ? 'onclick="return false;" onmouseup' : 'onclick' ) + // #188
|
204
|
+
'="CKEDITOR.tools.callFunction(', clickFn, ', this); return false;">' +
|
205
|
+
'<span>' +
|
206
|
+
'<span id="' + id + '_text" class="cke_text cke_inline_label">' + this.label + '</span>' +
|
207
|
+
'</span>' +
|
208
|
+
'<span class=cke_openbutton><span class=cke_icon>' + ( CKEDITOR.env.hc ? '▼' : CKEDITOR.env.air ? ' ' : '' ) + '</span></span>' + // BLACK DOWN-POINTING TRIANGLE
|
209
|
+
'</a>' +
|
210
|
+
'</span>' +
|
211
|
+
'</span>' );
|
212
|
+
|
213
|
+
if ( this.onRender )
|
214
|
+
this.onRender();
|
215
|
+
|
216
|
+
return instance;
|
217
|
+
},
|
218
|
+
|
219
|
+
createPanel : function( editor )
|
220
|
+
{
|
221
|
+
if ( this._.panel )
|
222
|
+
return;
|
223
|
+
|
224
|
+
var panelDefinition = this._.panelDefinition,
|
225
|
+
panelBlockDefinition = this._.panelDefinition.block,
|
226
|
+
panelParentElement = panelDefinition.parent || CKEDITOR.document.getBody(),
|
227
|
+
panel = new CKEDITOR.ui.floatPanel( editor, panelParentElement, panelDefinition ),
|
228
|
+
list = panel.addListBlock( this.id, panelBlockDefinition ),
|
229
|
+
me = this;
|
230
|
+
|
231
|
+
panel.onShow = function()
|
232
|
+
{
|
233
|
+
if ( me.className )
|
234
|
+
this.element.getFirst().addClass( me.className + '_panel' );
|
235
|
+
|
236
|
+
me.setState( CKEDITOR.TRISTATE_ON );
|
237
|
+
|
238
|
+
list.focus( !me.multiSelect && me.getValue() );
|
239
|
+
|
240
|
+
me._.on = 1;
|
241
|
+
|
242
|
+
if ( me.onOpen )
|
243
|
+
me.onOpen();
|
244
|
+
};
|
245
|
+
|
246
|
+
panel.onHide = function( preventOnClose )
|
247
|
+
{
|
248
|
+
if ( me.className )
|
249
|
+
this.element.getFirst().removeClass( me.className + '_panel' );
|
250
|
+
|
251
|
+
me.setState( me.modes && me.modes[ editor.mode ] ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED );
|
252
|
+
|
253
|
+
me._.on = 0;
|
254
|
+
|
255
|
+
if ( !preventOnClose && me.onClose )
|
256
|
+
me.onClose();
|
257
|
+
};
|
258
|
+
|
259
|
+
panel.onEscape = function()
|
260
|
+
{
|
261
|
+
panel.hide();
|
262
|
+
};
|
263
|
+
|
264
|
+
list.onClick = function( value, marked )
|
265
|
+
{
|
266
|
+
// Move the focus to the main windows, otherwise it will stay
|
267
|
+
// into the floating panel, even if invisible, and Safari and
|
268
|
+
// Opera will go a bit crazy.
|
269
|
+
me.document.getWindow().focus();
|
270
|
+
|
271
|
+
if ( me.onClick )
|
272
|
+
me.onClick.call( me, value, marked );
|
273
|
+
|
274
|
+
if ( marked )
|
275
|
+
me.setValue( value, me._.items[ value ] );
|
276
|
+
else
|
277
|
+
me.setValue( '' );
|
278
|
+
|
279
|
+
panel.hide( false );
|
280
|
+
};
|
281
|
+
|
282
|
+
this._.panel = panel;
|
283
|
+
this._.list = list;
|
284
|
+
|
285
|
+
panel.getBlock( this.id ).onHide = function()
|
286
|
+
{
|
287
|
+
me._.on = 0;
|
288
|
+
me.setState( CKEDITOR.TRISTATE_OFF );
|
289
|
+
};
|
290
|
+
|
291
|
+
if ( this.init )
|
292
|
+
this.init();
|
293
|
+
},
|
294
|
+
|
295
|
+
setValue : function( value, text )
|
296
|
+
{
|
297
|
+
this._.value = value;
|
298
|
+
|
299
|
+
var textElement = this.document.getById( 'cke_' + this.id + '_text' );
|
300
|
+
if ( textElement )
|
301
|
+
{
|
302
|
+
if ( !( value || text ) )
|
303
|
+
{
|
304
|
+
text = this.label;
|
305
|
+
textElement.addClass( 'cke_inline_label' );
|
306
|
+
}
|
307
|
+
else
|
308
|
+
textElement.removeClass( 'cke_inline_label' );
|
309
|
+
|
310
|
+
textElement.setHtml( typeof text != 'undefined' ? text : value );
|
311
|
+
}
|
312
|
+
},
|
313
|
+
|
314
|
+
getValue : function()
|
315
|
+
{
|
316
|
+
return this._.value || '';
|
317
|
+
},
|
318
|
+
|
319
|
+
unmarkAll : function()
|
320
|
+
{
|
321
|
+
this._.list.unmarkAll();
|
322
|
+
},
|
323
|
+
|
324
|
+
mark : function( value )
|
325
|
+
{
|
326
|
+
this._.list.mark( value );
|
327
|
+
},
|
328
|
+
|
329
|
+
hideItem : function( value )
|
330
|
+
{
|
331
|
+
this._.list.hideItem( value );
|
332
|
+
},
|
333
|
+
|
334
|
+
hideGroup : function( groupTitle )
|
335
|
+
{
|
336
|
+
this._.list.hideGroup( groupTitle );
|
337
|
+
},
|
338
|
+
|
339
|
+
showAll : function()
|
340
|
+
{
|
341
|
+
this._.list.showAll();
|
342
|
+
},
|
343
|
+
|
344
|
+
add : function( value, html, text )
|
345
|
+
{
|
346
|
+
this._.items[ value ] = text || value;
|
347
|
+
this._.list.add( value, html, text );
|
348
|
+
},
|
349
|
+
|
350
|
+
startGroup : function( title )
|
351
|
+
{
|
352
|
+
this._.list.startGroup( title );
|
353
|
+
},
|
354
|
+
|
355
|
+
commit : function()
|
356
|
+
{
|
357
|
+
if ( !this._.committed )
|
358
|
+
{
|
359
|
+
this._.list.commit();
|
360
|
+
this._.committed = 1;
|
361
|
+
CKEDITOR.ui.fire( 'ready', this );
|
362
|
+
}
|
363
|
+
this._.committed = 1;
|
364
|
+
},
|
365
|
+
|
366
|
+
setState : function( state )
|
367
|
+
{
|
368
|
+
if ( this._.state == state )
|
369
|
+
return;
|
370
|
+
|
371
|
+
this.document.getById( 'cke_' + this.id ).setState( state );
|
372
|
+
|
373
|
+
this._.state = state;
|
374
|
+
}
|
375
|
+
}
|
376
|
+
});
|
377
|
+
|
378
|
+
CKEDITOR.ui.prototype.addRichCombo = function( name, definition )
|
379
|
+
{
|
380
|
+
this.add( name, CKEDITOR.UI_RICHCOMBO, definition );
|
381
|
+
};
|