ckeditor-jess 3.4.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +161 -0
- data/Rakefile +45 -0
- data/app/controllers/ckeditor_controller.rb +85 -0
- data/app/helpers/ckeditor_helper.rb +38 -0
- data/app/views/ckeditor/_asset.html.erb +15 -0
- data/app/views/ckeditor/_swfupload.html.erb +51 -0
- data/app/views/ckeditor/files.html.erb +91 -0
- data/app/views/ckeditor/images.html.erb +91 -0
- data/app/views/layouts/ckeditor.html.erb +29 -0
- data/config/routes.rb +5 -0
- data/examples/migrations/attachment_fu/create_assets.rb +30 -0
- data/examples/migrations/paperclip/create_assets.rb +25 -0
- data/examples/models/attachment_fu/asset.rb +45 -0
- data/examples/models/attachment_fu/attachment_file.rb +46 -0
- data/examples/models/attachment_fu/picture.rb +46 -0
- data/examples/models/paperclip/asset.rb +65 -0
- data/examples/models/paperclip/attachment_file.rb +22 -0
- data/examples/models/paperclip/picture.rb +39 -0
- data/examples/s3/attachment_file.rb +23 -0
- data/examples/s3/picture.rb +41 -0
- data/examples/s3/s3.yml +2 -0
- data/generators/ckeditor_install/USAGE +7 -0
- data/generators/ckeditor_install/ckeditor_install_generator.rb +28 -0
- data/generators/ckeditor_install/templates/README +0 -0
- data/generators/ckeditor_install/templates/ckeditor.rb +56 -0
- data/generators/ckeditor_install/templates/ckeditor/CHANGES.html +993 -0
- data/generators/ckeditor_install/templates/ckeditor/INSTALL.html +92 -0
- data/generators/ckeditor_install/templates/ckeditor/LICENSE.html +1334 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/ajax.html +87 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/api.html +152 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/api_dialog.html +188 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/api_dialog/my_dialog.js +28 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/asp/advanced.asp +105 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/asp/events.asp +136 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/asp/index.html +103 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/asp/replace.asp +72 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/asp/replaceall.asp +77 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/asp/sample_posteddata.asp +46 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/asp/standalone.asp +72 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/assets/output_for_flash.fla +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/assets/output_for_flash.swf +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/assets/output_xhtml.css +204 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/assets/swfobject.js +18 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/autogrow.html +75 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/divreplace.html +137 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/enterkey.html +88 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/fullpage.html +62 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/index.html +57 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/jqueryadapter.html +73 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/output_for_flash.html +257 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/output_html.html +259 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/output_xhtml.html +159 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/php/advanced.php +93 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/php/events.php +130 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/php/replace.php +63 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/php/replaceall.php +68 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/php/standalone.php +64 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/replacebyclass.html +49 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/replacebycode.html +80 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/sample.css +81 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/sample.js +65 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/sample_posteddata.php +59 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/sharedspaces.html +131 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/skins.html +83 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/ui_color.html +87 -0
- data/generators/ckeditor_install/templates/ckeditor/_samples/ui_languages.html +103 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/adapters/jquery.js +297 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/_bootstrap.js +96 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/ajax.js +142 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/ckeditor.js +133 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/ckeditor_base.js +196 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/ckeditor_basic.js +239 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/command.js +209 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/commanddefinition.js +129 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/config.js +430 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/dataprocessor.js +65 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/dom.js +20 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/comment.js +32 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/document.js +224 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/documentfragment.js +49 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/domobject.js +255 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/element.js +1564 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/elementpath.js +119 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/event.js +142 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/node.js +683 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/nodelist.js +26 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/range.js +1883 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/rangelist.js +214 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/text.js +123 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/walker.js +445 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/window.js +96 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/dtd.js +238 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/editor.js +924 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/editor_basic.js +182 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/env.js +270 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/event.js +342 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/eventInfo.js +120 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/focusmanager.js +152 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/htmlparser.js +224 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/htmlparser/cdata.js +43 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/htmlparser/comment.js +60 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/htmlparser/element.js +240 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/htmlparser/filter.js +288 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/htmlparser/fragment.js +504 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/htmlparser/text.js +55 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/imagecacher.js +80 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/lang.js +156 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/loader.js +243 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/plugindefinition.js +66 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/plugins.js +85 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/resourcemanager.js +238 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/scriptloader.js +200 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/skins.js +212 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/themes.js +19 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/tools.js +734 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/ui.js +116 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/core/xml.js +165 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/_languages.js +83 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/_translationstatus.txt +60 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/af.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/ar.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/bg.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/bn.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/bs.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/ca.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/cs.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/cy.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/da.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/de.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/el.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/en-au.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/en-ca.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/en-gb.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/en.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/eo.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/es.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/et.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/eu.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/fa.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/fi.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/fo.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/fr-ca.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/fr.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/gl.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/gu.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/he.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/hi.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/hr.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/hu.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/is.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/it.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/ja.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/km.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/ko.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/lt.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/lv.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/mn.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/ms.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/nb.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/nl.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/no.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/pl.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/pt-br.js +757 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/pt.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/ro.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/ru.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/sk.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/sl.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/sr-latn.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/sr.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/sv.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/th.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/tr.js +757 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/uk.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/vi.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/zh-cn.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/lang/zh.js +758 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +211 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/a11yhelp/lang/he.js +216 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/a11yhelp/plugin.js +46 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/about/dialogs/about.js +73 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/about/plugin.js +23 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/ajax_save/plugin.js +43 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/attachment/dialogs/attachment.js +384 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/attachment/images/attachment.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/attachment/lang/en.js +10 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/attachment/lang/ru.js +10 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/attachment/lang/uk.js +10 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/attachment/plugin.js +44 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/autogrow/plugin.js +86 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/basicstyles/plugin.js +101 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/bidi/plugin.js +259 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/blockquote/plugin.js +301 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/button/plugin.js +277 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/clipboard/dialogs/paste.js +205 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/clipboard/plugin.js +412 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/colorbutton/plugin.js +250 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +336 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/colordialog/plugin.js +13 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/contextmenu/plugin.js +290 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/dialog/dialogDefinition.js +315 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/dialog/plugin.js +3015 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/dialogadvtab/plugin.js +213 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/dialogui/plugin.js +1523 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/div/dialogs/div.js +535 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/div/plugin.js +121 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/domiterator/plugin.js +356 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/editingblock/plugin.js +229 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/elementspath/plugin.js +206 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/embed/dialogs/embed.js +65 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/embed/images/embed.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/embed/lang/en.js +9 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/embed/lang/ru.js +9 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/embed/lang/uk.js +9 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/embed/plugin.js +43 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/enterkey/plugin.js +363 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/entities/plugin.js +226 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/fakeobjects/plugin.js +122 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/filebrowser/plugin.js +501 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/find/dialogs/find.js +890 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/find/plugin.js +46 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/flash/dialogs/flash.js +698 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/flash/images/placeholder.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/flash/plugin.js +168 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/floatpanel/plugin.js +402 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/font/plugin.js +234 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/format/plugin.js +194 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/dialogs/button.js +135 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/dialogs/checkbox.js +153 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/dialogs/form.js +177 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js +98 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/dialogs/radio.js +135 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/dialogs/select.js +556 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/dialogs/textarea.js +114 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/dialogs/textfield.js +199 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/images/hiddenfield.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/plugin.js +284 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/horizontalrule/plugin.js +36 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/htmldataprocessor/plugin.js +502 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/htmlwriter/plugin.js +319 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/iframedialog/plugin.js +136 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/image/dialogs/image.js +1396 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/image/plugin.js +81 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/indent/plugin.js +455 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/justify/plugin.js +221 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/keystrokes/plugin.js +225 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/link/dialogs/anchor.js +99 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/link/dialogs/link.js +1424 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/link/images/anchor.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/link/plugin.js +238 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/list/plugin.js +710 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/listblock/plugin.js +257 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +204 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/liststyle/plugin.js +66 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/maximize/plugin.js +350 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/menu/plugin.js +408 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/menubutton/plugin.js +94 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/newpage/plugin.js +53 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/pagebreak/plugin.js +121 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/panel/plugin.js +399 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/panelbutton/plugin.js +147 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/pastefromword/filter/default.js +1170 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/pastefromword/plugin.js +122 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +70 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/pastetext/plugin.js +145 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/popup/plugin.js +64 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/preview/plugin.js +108 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/print/plugin.js +41 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/removeformat/plugin.js +184 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/resize/plugin.js +157 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/richcombo/plugin.js +370 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/save/plugin.js +55 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/scayt/dialogs/options.js +534 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/scayt/dialogs/toolbar.css +71 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/scayt/plugin.js +945 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/selection/plugin.js +1375 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_address.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_blockquote.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_div.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_h1.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_h2.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_h3.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_h4.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_h5.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_h6.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_p.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_pre.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/plugin.js +155 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showborders/plugin.js +201 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/dialogs/smiley.js +218 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/angel_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/angry_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/broken_heart.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/confused_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/cry_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/devil_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/envelope.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/heart.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/kiss.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/lightbulb.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/omg_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/regular_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/sad_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/shades_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/teeth_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/thumbs_down.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/thumbs_up.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/tounge_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/wink_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/plugin.js +94 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/sourcearea/plugin.js +207 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js +409 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/specialchar/plugin.js +29 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/styles/plugin.js +1479 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/styles/styles/default.js +88 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/stylescombo/plugin.js +206 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/tab/plugin.js +367 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/table/dialogs/table.js +672 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/table/plugin.js +78 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/tableresize/plugin.js +450 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +533 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/tabletools/plugin.js +1120 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/templates/dialogs/templates.js +233 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/templates/plugin.js +99 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/templates/templates/default.js +94 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/templates/templates/images/template1.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/templates/templates/images/template2.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/templates/templates/images/template3.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/toolbar/plugin.js +481 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js +205 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/lang/en.js +15 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/lang/he.js +15 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/plugin.js +37 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/uicolor.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/yui/assets/yui.css +15 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/yui/yui.js +71 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/undo/plugin.js +554 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/wsc/dialogs/ciframe.html +49 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html +52 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/wsc/dialogs/wsc.css +82 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/wsc/dialogs/wsc.js +176 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/wsc/plugin.js +33 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/plugins/wysiwygarea/plugin.js +1146 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/dialog.css +882 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/editor.css +25 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/elementspath.css +73 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/icons.css +357 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/icons.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/icons_rtl.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/images/mini.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/images/noimage.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/images/sprites.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/mainui.css +195 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/menu.css +216 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/panel.css +217 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/presets.css +49 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/reset.css +84 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/richcombo.css +277 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/skin.js +268 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/templates.css +88 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/toolbar.css +409 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/dialog.css +785 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/editor.css +25 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/elementspath.css +74 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/icons.css +354 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/icons.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/icons_rtl.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/images/dialog_sides.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/images/dialog_sides.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/images/mini.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/images/noimage.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/images/sprites.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/images/sprites_ie6.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/mainui.css +145 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/menu.css +213 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/panel.css +212 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/presets.css +49 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/reset.css +84 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/richcombo.css +297 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/skin.js +81 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/templates.css +87 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/toolbar.css +470 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/dialog.css +800 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/editor.css +25 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/elementspath.css +74 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/icons.css +354 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/icons.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/icons_rtl.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/images/dialog_sides.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/images/dialog_sides.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/images/mini.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/images/noimage.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/images/sprites.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/images/sprites_ie6.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/images/toolbar_start.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/mainui.css +154 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/menu.css +215 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/panel.css +212 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/presets.css +50 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/reset.css +84 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/richcombo.css +297 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/skin.js +77 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/templates.css +87 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/toolbar.css +423 -0
- data/generators/ckeditor_install/templates/ckeditor/_source/themes/default/theme.js +361 -0
- data/generators/ckeditor_install/templates/ckeditor/adapters/jquery.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/ckeditor.js +137 -0
- data/generators/ckeditor_install/templates/ckeditor/ckeditor.pack +211 -0
- data/generators/ckeditor_install/templates/ckeditor/ckeditor_basic.js +8 -0
- data/generators/ckeditor_install/templates/ckeditor/ckeditor_basic_source.js +20 -0
- data/generators/ckeditor_install/templates/ckeditor/ckeditor_source.js +25 -0
- data/generators/ckeditor_install/templates/ckeditor/config.js +43 -0
- data/generators/ckeditor_install/templates/ckeditor/contents.css +39 -0
- data/generators/ckeditor_install/templates/ckeditor/css/ckfinder.css +299 -0
- data/generators/ckeditor_install/templates/ckeditor/css/fck_dialog.css +119 -0
- data/generators/ckeditor_install/templates/ckeditor/css/fck_editor.css +448 -0
- data/generators/ckeditor_install/templates/ckeditor/css/swfupload.css +94 -0
- data/generators/ckeditor_install/templates/ckeditor/images/add.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/images/cancelbutton.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/images/ckfnothumb.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/images/doc.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/images/mp3.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/images/pdf.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/images/rar.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/images/refresh.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/images/select_files.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/images/spacer.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/images/swf.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/images/toolbar.start.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/images/xls.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/_languages.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/_translationstatus.txt +60 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/af.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/ar.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/bg.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/bn.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/bs.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/ca.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/cs.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/cy.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/da.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/de.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/el.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/en-au.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/en-ca.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/en-gb.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/en.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/eo.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/es.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/et.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/eu.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/fa.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/fi.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/fo.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/fr-ca.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/fr.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/gl.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/gu.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/he.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/hi.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/hr.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/hu.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/is.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/it.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/ja.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/km.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/ko.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/lt.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/lv.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/mn.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/ms.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/nb.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/nl.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/no.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/pl.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/pt-br.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/pt.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/ro.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/ru.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/sk.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/sl.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/sr-latn.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/sr.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/sv.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/th.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/tr.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/uk.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/vi.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/zh-cn.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/lang/zh.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +7 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/a11yhelp/lang/en.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/a11yhelp/lang/he.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/about/dialogs/about.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/ajax_save/plugin.js +1 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/attachment/dialogs/attachment.js +1 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/attachment/images/attachment.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/attachment/lang/en.js +10 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/attachment/lang/ru.js +10 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/attachment/lang/uk.js +10 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/attachment/plugin.js +1 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/autogrow/plugin.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/clipboard/dialogs/paste.js +7 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/colordialog/dialogs/colordialog.js +7 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/div/dialogs/div.js +8 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/embed/dialogs/embed.js +1 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/embed/images/embed.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/embed/lang/en.js +9 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/embed/lang/ru.js +9 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/embed/lang/uk.js +9 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/embed/plugin.js +1 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/find/dialogs/find.js +9 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/flash/dialogs/flash.js +9 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/flash/images/placeholder.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/forms/dialogs/button.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/forms/dialogs/checkbox.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/forms/dialogs/form.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/forms/dialogs/hiddenfield.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/forms/dialogs/radio.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/forms/dialogs/select.js +9 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/forms/dialogs/textarea.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/forms/dialogs/textfield.js +7 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/forms/images/hiddenfield.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/iframedialog/plugin.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/image/dialogs/image.js +13 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/link/dialogs/anchor.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/link/dialogs/link.js +11 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/link/images/anchor.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/liststyle/dialogs/liststyle.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/pastefromword/filter/default.js +10 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/pastetext/dialogs/pastetext.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/scayt/dialogs/options.js +8 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/scayt/dialogs/toolbar.css +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_address.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_div.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_p.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/dialogs/smiley.js +7 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/envelope.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/heart.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/kiss.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/specialchar/dialogs/specialchar.js +7 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/styles/styles/default.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/table/dialogs/table.js +9 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/tableresize/plugin.js +7 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/tabletools/dialogs/tableCell.js +8 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/templates/dialogs/templates.js +7 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/templates/templates/default.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/dialogs/uicolor.js +7 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/lang/en.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/lang/he.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/plugin.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/uicolor.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/yui/assets/yui.css +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/yui/yui.js +76 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/wsc/dialogs/wsc.css +6 -0
- data/generators/ckeditor_install/templates/ckeditor/plugins/wsc/dialogs/wsc.js +7 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/kama/dialog.css +9 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/kama/editor.css +12 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/kama/icons.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/kama/icons_rtl.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/kama/images/dialog_sides.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/kama/images/dialog_sides.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/kama/images/mini.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/kama/images/noimage.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/kama/images/sprites.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/kama/images/sprites_ie6.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/kama/images/toolbar_start.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/kama/skin.js +7 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/kama/templates.css +6 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/office2003/dialog.css +9 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/office2003/editor.css +13 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/office2003/icons.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/office2003/icons_rtl.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/office2003/images/dialog_sides.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/office2003/images/dialog_sides.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/office2003/images/dialog_sides_rtl.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/office2003/images/mini.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/office2003/images/noimage.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/office2003/images/sprites.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/office2003/images/sprites_ie6.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/office2003/skin.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/office2003/templates.css +6 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/v2/dialog.css +9 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/v2/editor.css +12 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/v2/icons.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/v2/icons_rtl.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/v2/images/dialog_sides.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/v2/images/dialog_sides.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/v2/images/dialog_sides_rtl.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/v2/images/mini.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/v2/images/noimage.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/v2/images/sprites.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/v2/images/sprites_ie6.png +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/v2/images/toolbar_start.gif +0 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/v2/skin.js +6 -0
- data/generators/ckeditor_install/templates/ckeditor/skins/v2/templates.css +6 -0
- data/generators/ckeditor_install/templates/ckeditor/swfupload/fileprogress.js +269 -0
- data/generators/ckeditor_install/templates/ckeditor/swfupload/handlers.js +170 -0
- data/generators/ckeditor_install/templates/ckeditor/swfupload/mootools-1.2.3-core-yc.js +356 -0
- data/generators/ckeditor_install/templates/ckeditor/swfupload/querystring.js +40 -0
- data/generators/ckeditor_install/templates/ckeditor/swfupload/swfupload.js +1 -0
- data/generators/ckeditor_install/templates/ckeditor/swfupload/swfupload.queue.js +1 -0
- data/generators/ckeditor_install/templates/ckeditor/swfupload/swfupload.swf +0 -0
- data/generators/ckeditor_install/templates/ckeditor/swfupload/swfupload.swfobject.js +111 -0
- data/generators/ckeditor_install/templates/ckeditor/themes/default/theme.js +8 -0
- data/generators/ckeditor_migration/USAGE +12 -0
- data/generators/ckeditor_migration/ckeditor_migration_generator.rb +36 -0
- data/generators/ckeditor_migration/templates/models/attachment_fu/asset.rb +32 -0
- data/generators/ckeditor_migration/templates/models/attachment_fu/attachment_file.rb +24 -0
- data/generators/ckeditor_migration/templates/models/attachment_fu/migration.rb +30 -0
- data/generators/ckeditor_migration/templates/models/attachment_fu/picture.rb +25 -0
- data/generators/ckeditor_migration/templates/models/paperclip/asset.rb +88 -0
- data/generators/ckeditor_migration/templates/models/paperclip/attachment_file.rb +40 -0
- data/generators/ckeditor_migration/templates/models/paperclip/migration.rb +31 -0
- data/generators/ckeditor_migration/templates/models/paperclip/picture.rb +23 -0
- data/lib/ckeditor.rb +89 -0
- data/lib/ckeditor/form_builder.rb +22 -0
- data/lib/ckeditor/formtastic.rb +12 -0
- data/lib/ckeditor/middleware.rb +18 -0
- data/lib/ckeditor/safe_buffer.rb +34 -0
- data/lib/ckeditor/utils.rb +19 -0
- data/lib/ckeditor/version.rb +11 -0
- data/lib/ckeditor/view_helper.rb +91 -0
- metadata +768 -0
@@ -0,0 +1,49 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
2
|
+
<!--
|
3
|
+
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
|
4
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
5
|
+
-->
|
6
|
+
<html>
|
7
|
+
<head>
|
8
|
+
<title></title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
10
|
+
<script type="text/javascript">
|
11
|
+
|
12
|
+
function gup( name )
|
13
|
+
{
|
14
|
+
name = name.replace( /[\[]/, '\\\[' ).replace( /[\]]/, '\\\]' ) ;
|
15
|
+
var regexS = '[\\?&]' + name + '=([^&#]*)' ;
|
16
|
+
var regex = new RegExp( regexS ) ;
|
17
|
+
var results = regex.exec( window.location.href ) ;
|
18
|
+
|
19
|
+
if ( results )
|
20
|
+
return results[ 1 ] ;
|
21
|
+
else
|
22
|
+
return '' ;
|
23
|
+
}
|
24
|
+
|
25
|
+
var interval;
|
26
|
+
|
27
|
+
function sendData2Master()
|
28
|
+
{
|
29
|
+
var destination = window.parent.parent ;
|
30
|
+
try
|
31
|
+
{
|
32
|
+
if ( destination.XDTMaster )
|
33
|
+
{
|
34
|
+
var t = destination.XDTMaster.read( [ gup( 'cmd' ), gup( 'data' ) ] ) ;
|
35
|
+
window.clearInterval( interval ) ;
|
36
|
+
}
|
37
|
+
}
|
38
|
+
catch (e) {}
|
39
|
+
}
|
40
|
+
|
41
|
+
function onLoad()
|
42
|
+
{
|
43
|
+
interval = window.setInterval( sendData2Master, 100 );
|
44
|
+
}
|
45
|
+
|
46
|
+
</script>
|
47
|
+
</head>
|
48
|
+
<body onload="onLoad()"><p></p></body>
|
49
|
+
</html>
|
data/generators/ckeditor_install/templates/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
|
2
|
+
<!--
|
3
|
+
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
|
4
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
5
|
+
-->
|
6
|
+
<html>
|
7
|
+
<head>
|
8
|
+
<title></title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
10
|
+
<script type="text/javascript">
|
11
|
+
|
12
|
+
function doLoadScript( url )
|
13
|
+
{
|
14
|
+
if ( !url )
|
15
|
+
return false ;
|
16
|
+
|
17
|
+
var s = document.createElement( "script" ) ;
|
18
|
+
s.type = "text/javascript" ;
|
19
|
+
s.src = url ;
|
20
|
+
document.getElementsByTagName( "head" )[ 0 ].appendChild( s ) ;
|
21
|
+
|
22
|
+
return true ;
|
23
|
+
}
|
24
|
+
|
25
|
+
var opener;
|
26
|
+
function tryLoad()
|
27
|
+
{
|
28
|
+
opener = window.parent;
|
29
|
+
|
30
|
+
// get access to global parameters
|
31
|
+
var oParams = window.opener.oldFramesetPageParams;
|
32
|
+
|
33
|
+
// make frameset rows string prepare
|
34
|
+
var sFramesetRows = ( parseInt( oParams.firstframeh, 10 ) || '30') + ",*," + ( parseInt( oParams.thirdframeh, 10 ) || '150' ) + ',0' ;
|
35
|
+
document.getElementById( 'itFrameset' ).rows = sFramesetRows ;
|
36
|
+
|
37
|
+
// dynamic including init frames and crossdomain transport code
|
38
|
+
// from config sproxy_js_frameset url
|
39
|
+
var addScriptUrl = oParams.sproxy_js_frameset ;
|
40
|
+
doLoadScript( addScriptUrl ) ;
|
41
|
+
}
|
42
|
+
|
43
|
+
</script>
|
44
|
+
</head>
|
45
|
+
|
46
|
+
<frameset id="itFrameset" onload="tryLoad();" border="0" rows="30,*,*,0">
|
47
|
+
<frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="2" src="" name="navbar"></frame>
|
48
|
+
<frame scrolling="auto" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="0" src="" name="mid"></frame>
|
49
|
+
<frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="bot"></frame>
|
50
|
+
<frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="spellsuggestall"></frame>
|
51
|
+
</frameset>
|
52
|
+
</html>
|
@@ -0,0 +1,82 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
|
3
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
+
*/
|
5
|
+
|
6
|
+
html, body
|
7
|
+
{
|
8
|
+
background-color: transparent;
|
9
|
+
margin: 0px;
|
10
|
+
padding: 0px;
|
11
|
+
}
|
12
|
+
|
13
|
+
body
|
14
|
+
{
|
15
|
+
padding: 10px;
|
16
|
+
}
|
17
|
+
|
18
|
+
body, td, input, select, textarea
|
19
|
+
{
|
20
|
+
font-size: 11px;
|
21
|
+
font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana;
|
22
|
+
}
|
23
|
+
|
24
|
+
.midtext
|
25
|
+
{
|
26
|
+
padding:0px;
|
27
|
+
margin:10px;
|
28
|
+
}
|
29
|
+
|
30
|
+
.midtext p
|
31
|
+
{
|
32
|
+
padding:0px;
|
33
|
+
margin:10px;
|
34
|
+
}
|
35
|
+
|
36
|
+
.Button
|
37
|
+
{
|
38
|
+
border: #737357 1px solid;
|
39
|
+
color: #3b3b1f;
|
40
|
+
background-color: #c7c78f;
|
41
|
+
}
|
42
|
+
|
43
|
+
.PopupTabArea
|
44
|
+
{
|
45
|
+
color: #737357;
|
46
|
+
background-color: #e3e3c7;
|
47
|
+
}
|
48
|
+
|
49
|
+
.PopupTitleBorder
|
50
|
+
{
|
51
|
+
border-bottom: #d5d59d 1px solid;
|
52
|
+
}
|
53
|
+
.PopupTabEmptyArea
|
54
|
+
{
|
55
|
+
padding-left: 10px;
|
56
|
+
border-bottom: #d5d59d 1px solid;
|
57
|
+
}
|
58
|
+
|
59
|
+
.PopupTab, .PopupTabSelected
|
60
|
+
{
|
61
|
+
border-right: #d5d59d 1px solid;
|
62
|
+
border-top: #d5d59d 1px solid;
|
63
|
+
border-left: #d5d59d 1px solid;
|
64
|
+
padding: 3px 5px 3px 5px;
|
65
|
+
color: #737357;
|
66
|
+
}
|
67
|
+
|
68
|
+
.PopupTab
|
69
|
+
{
|
70
|
+
margin-top: 1px;
|
71
|
+
border-bottom: #d5d59d 1px solid;
|
72
|
+
cursor: pointer;
|
73
|
+
}
|
74
|
+
|
75
|
+
.PopupTabSelected
|
76
|
+
{
|
77
|
+
font-weight: bold;
|
78
|
+
cursor: default;
|
79
|
+
padding-top: 4px;
|
80
|
+
border-bottom: #f1f1e3 1px solid;
|
81
|
+
background-color: #f1f1e3;
|
82
|
+
}
|
@@ -0,0 +1,176 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
|
3
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
+
*/
|
5
|
+
|
6
|
+
CKEDITOR.dialog.add( 'checkspell', function( editor )
|
7
|
+
{
|
8
|
+
var number = CKEDITOR.tools.getNextNumber(),
|
9
|
+
iframeId = 'cke_frame_' + number,
|
10
|
+
textareaId = 'cke_data_' + number,
|
11
|
+
errorBoxId = 'cke_error_' + number,
|
12
|
+
interval,
|
13
|
+
protocol = document.location.protocol || 'http:',
|
14
|
+
errorMsg = editor.lang.spellCheck.notAvailable;
|
15
|
+
|
16
|
+
var pasteArea = '<textarea'+
|
17
|
+
' style="display: none"' +
|
18
|
+
' id="' + textareaId + '"' +
|
19
|
+
' rows="10"' +
|
20
|
+
' cols="40">' +
|
21
|
+
' </textarea><div' +
|
22
|
+
' id="' + errorBoxId + '"' +
|
23
|
+
' style="display:none;color:red;font-size:16px;font-weight:bold;padding-top:160px;text-align:center;z-index:11;">' +
|
24
|
+
'</div><iframe' +
|
25
|
+
' src=""' +
|
26
|
+
' style="width:485px;background-color:#f1f1e3;height:380px"' +
|
27
|
+
' frameborder="0"' +
|
28
|
+
' name="' + iframeId + '"' +
|
29
|
+
' id="' + iframeId + '"' +
|
30
|
+
' allowtransparency="1">' +
|
31
|
+
'</iframe>';
|
32
|
+
|
33
|
+
var wscCoreUrl = editor.config.wsc_customLoaderScript || ( protocol +
|
34
|
+
'//loader.spellchecker.net/sproxy_fck/sproxy.php'
|
35
|
+
+ '?plugin=fck2'
|
36
|
+
+ '&customerid=' + editor.config.wsc_customerId
|
37
|
+
+ '&cmd=script&doc=wsc&schema=22'
|
38
|
+
);
|
39
|
+
|
40
|
+
if ( editor.config.wsc_customLoaderScript )
|
41
|
+
errorMsg += '<p style="color:#000;font-size:11px;font-weight: normal;text-align:center;padding-top:10px">' +
|
42
|
+
editor.lang.spellCheck.errorLoading.replace( /%s/g, editor.config.wsc_customLoaderScript ) + '</p>';
|
43
|
+
|
44
|
+
function burnSpelling( dialog, errorMsg )
|
45
|
+
{
|
46
|
+
var i = 0;
|
47
|
+
return function ()
|
48
|
+
{
|
49
|
+
if ( typeof( window.doSpell ) == 'function' )
|
50
|
+
{
|
51
|
+
//Call from window.setInteval expected at once.
|
52
|
+
if ( typeof( interval ) != 'undefined' )
|
53
|
+
window.clearInterval( interval );
|
54
|
+
|
55
|
+
initAndSpell( dialog );
|
56
|
+
}
|
57
|
+
else if ( i++ == 180 ) // Timeout: 180 * 250ms = 45s.
|
58
|
+
window._cancelOnError( errorMsg );
|
59
|
+
};
|
60
|
+
}
|
61
|
+
|
62
|
+
window._cancelOnError = function( m )
|
63
|
+
{
|
64
|
+
if ( typeof( window.WSC_Error ) == 'undefined' )
|
65
|
+
{
|
66
|
+
CKEDITOR.document.getById( iframeId ).setStyle( 'display', 'none' );
|
67
|
+
var errorBox = CKEDITOR.document.getById( errorBoxId );
|
68
|
+
errorBox.setStyle( 'display', 'block' );
|
69
|
+
errorBox.setHtml( m || editor.lang.spellCheck.notAvailable );
|
70
|
+
}
|
71
|
+
};
|
72
|
+
|
73
|
+
function initAndSpell( dialog )
|
74
|
+
{
|
75
|
+
var LangComparer = new window._SP_FCK_LangCompare(), // Language abbr standarts comparer.
|
76
|
+
pluginPath = CKEDITOR.getUrl( editor.plugins.wsc.path + 'dialogs/' ), // Service paths corecting/preparing.
|
77
|
+
framesetPath = pluginPath + 'tmpFrameset.html';
|
78
|
+
|
79
|
+
// global var is used in FCK specific core
|
80
|
+
// change on equal var used in fckplugin.js
|
81
|
+
window.gFCKPluginName = 'wsc';
|
82
|
+
|
83
|
+
LangComparer.setDefaulLangCode( editor.config.defaultLanguage );
|
84
|
+
|
85
|
+
window.doSpell({
|
86
|
+
ctrl : textareaId,
|
87
|
+
|
88
|
+
lang : editor.config.wsc_lang || LangComparer.getSPLangCode(editor.langCode ),
|
89
|
+
intLang: editor.config.wsc_uiLang || LangComparer.getSPLangCode(editor.langCode ),
|
90
|
+
winType : iframeId, // If not defined app will run on winpopup.
|
91
|
+
|
92
|
+
// Callback binding section.
|
93
|
+
onCancel : function()
|
94
|
+
{
|
95
|
+
dialog.hide();
|
96
|
+
},
|
97
|
+
onFinish : function( dT )
|
98
|
+
{
|
99
|
+
editor.focus();
|
100
|
+
dialog.getParentEditor().setData( dT.value );
|
101
|
+
dialog.hide();
|
102
|
+
},
|
103
|
+
|
104
|
+
// Some manipulations with client static pages.
|
105
|
+
staticFrame : framesetPath,
|
106
|
+
framesetPath : framesetPath,
|
107
|
+
iframePath : pluginPath + 'ciframe.html',
|
108
|
+
|
109
|
+
// Styles defining.
|
110
|
+
schemaURI : pluginPath + 'wsc.css',
|
111
|
+
|
112
|
+
userDictionaryName: editor.config.wsc_userDictionaryName,
|
113
|
+
customDictionaryName: editor.config.wsc_customDictionaryIds && editor.config.wsc_customDictionaryIds.split(","),
|
114
|
+
domainName: editor.config.wsc_domainName
|
115
|
+
|
116
|
+
});
|
117
|
+
|
118
|
+
// Hide user message console (if application was loaded more then after timeout).
|
119
|
+
CKEDITOR.document.getById( errorBoxId ).setStyle( 'display', 'none' );
|
120
|
+
CKEDITOR.document.getById( iframeId ).setStyle( 'display', 'block' );
|
121
|
+
}
|
122
|
+
|
123
|
+
return {
|
124
|
+
title : editor.config.wsc_dialogTitle || editor.lang.spellCheck.title,
|
125
|
+
minWidth : 485,
|
126
|
+
minHeight : 380,
|
127
|
+
buttons : [ CKEDITOR.dialog.cancelButton ],
|
128
|
+
onShow : function()
|
129
|
+
{
|
130
|
+
var contentArea = this.getContentElement( 'general', 'content' ).getElement();
|
131
|
+
contentArea.setHtml( pasteArea );
|
132
|
+
|
133
|
+
if ( typeof( window.doSpell ) != 'function' )
|
134
|
+
{
|
135
|
+
// Load script.
|
136
|
+
CKEDITOR.document.getHead().append(
|
137
|
+
CKEDITOR.document.createElement( 'script',
|
138
|
+
{
|
139
|
+
attributes :
|
140
|
+
{
|
141
|
+
type : 'text/javascript',
|
142
|
+
src : wscCoreUrl
|
143
|
+
}
|
144
|
+
})
|
145
|
+
);
|
146
|
+
}
|
147
|
+
|
148
|
+
var sData = editor.getData(); // Get the data to be checked.
|
149
|
+
CKEDITOR.document.getById( textareaId ).setValue( sData );
|
150
|
+
|
151
|
+
interval = window.setInterval( burnSpelling( this, errorMsg ), 250 );
|
152
|
+
},
|
153
|
+
onHide : function()
|
154
|
+
{
|
155
|
+
window.ooo = undefined;
|
156
|
+
window.int_framsetLoaded = undefined;
|
157
|
+
window.framesetLoaded = undefined;
|
158
|
+
window.is_window_opened = false;
|
159
|
+
},
|
160
|
+
contents : [
|
161
|
+
{
|
162
|
+
id : 'general',
|
163
|
+
label : editor.config.wsc_dialogTitle || editor.lang.spellCheck.title,
|
164
|
+
padding : 0,
|
165
|
+
elements : [
|
166
|
+
{
|
167
|
+
type : 'html',
|
168
|
+
id : 'content',
|
169
|
+
style : 'width:485;height:380px',
|
170
|
+
html : '<div></div>'
|
171
|
+
}
|
172
|
+
]
|
173
|
+
}
|
174
|
+
]
|
175
|
+
};
|
176
|
+
});
|
@@ -0,0 +1,33 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
|
3
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
+
*/
|
5
|
+
|
6
|
+
/**
|
7
|
+
* @file Spell checker
|
8
|
+
*/
|
9
|
+
|
10
|
+
// Register a plugin named "wsc".
|
11
|
+
CKEDITOR.plugins.add( 'wsc',
|
12
|
+
{
|
13
|
+
requires : [ 'dialog' ],
|
14
|
+
init : function( editor )
|
15
|
+
{
|
16
|
+
var commandName = 'checkspell';
|
17
|
+
|
18
|
+
var command = editor.addCommand( commandName, new CKEDITOR.dialogCommand( commandName ) );
|
19
|
+
|
20
|
+
// SpellChecker doesn't work in Opera and with custom domain
|
21
|
+
command.modes = { wysiwyg : ( !CKEDITOR.env.opera && document.domain == window.location.hostname ) };
|
22
|
+
|
23
|
+
editor.ui.addButton( 'SpellChecker',
|
24
|
+
{
|
25
|
+
label : editor.lang.spellCheck.toolbar,
|
26
|
+
command : commandName
|
27
|
+
});
|
28
|
+
CKEDITOR.dialog.add( commandName, this.path + 'dialogs/wsc.js' );
|
29
|
+
}
|
30
|
+
});
|
31
|
+
|
32
|
+
CKEDITOR.config.wsc_customerId = CKEDITOR.config.wsc_customerId || '1:ua3xw1-2XyGJ3-GWruD3-6OFNT1-oXcuB1-nR6Bp4-hgQHc-EcYng3-sdRXG3-NOfFk' ;
|
33
|
+
CKEDITOR.config.wsc_customLoaderScript = CKEDITOR.config.wsc_customLoaderScript || null;
|
@@ -0,0 +1,1146 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
|
3
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
+
*/
|
5
|
+
|
6
|
+
/**
|
7
|
+
* @fileOverview The "wysiwygarea" plugin. It registers the "wysiwyg" editing
|
8
|
+
* mode, which handles the main editing area space.
|
9
|
+
*/
|
10
|
+
|
11
|
+
(function()
|
12
|
+
{
|
13
|
+
// List of elements in which has no way to move editing focus outside.
|
14
|
+
var nonExitableElementNames = { table:1,pre:1 };
|
15
|
+
|
16
|
+
// Matching an empty paragraph at the end of document.
|
17
|
+
var emptyParagraphRegexp = /(^|<body\b[^>]*>)\s*<(p|div|address|h\d|center)[^>]*>\s*(?:<br[^>]*>| |\u00A0| )?\s*(:?<\/\2>)?\s*(?=$|<\/body>)/gi;
|
18
|
+
|
19
|
+
var notWhitespaceEval = CKEDITOR.dom.walker.whitespaces( true );
|
20
|
+
|
21
|
+
function checkReadOnly( selection )
|
22
|
+
{
|
23
|
+
if ( selection.getType() == CKEDITOR.SELECTION_ELEMENT )
|
24
|
+
return selection.getSelectedElement().isReadOnly();
|
25
|
+
else
|
26
|
+
return selection.getCommonAncestor().isReadOnly();
|
27
|
+
}
|
28
|
+
|
29
|
+
function onInsertHtml( evt )
|
30
|
+
{
|
31
|
+
if ( this.mode == 'wysiwyg' )
|
32
|
+
{
|
33
|
+
this.focus();
|
34
|
+
|
35
|
+
var selection = this.getSelection();
|
36
|
+
if ( checkReadOnly( selection ) )
|
37
|
+
return;
|
38
|
+
|
39
|
+
var data = evt.data;
|
40
|
+
this.fire( 'saveSnapshot' );
|
41
|
+
|
42
|
+
if ( this.dataProcessor )
|
43
|
+
data = this.dataProcessor.toHtml( data );
|
44
|
+
|
45
|
+
if ( CKEDITOR.env.ie )
|
46
|
+
{
|
47
|
+
var selIsLocked = selection.isLocked;
|
48
|
+
|
49
|
+
if ( selIsLocked )
|
50
|
+
selection.unlock();
|
51
|
+
|
52
|
+
var $sel = selection.getNative();
|
53
|
+
|
54
|
+
// Delete control selections to avoid IE bugs on pasteHTML.
|
55
|
+
if ( $sel.type == 'Control' )
|
56
|
+
$sel.clear();
|
57
|
+
else if ( selection.getType() == CKEDITOR.SELECTION_TEXT )
|
58
|
+
{
|
59
|
+
// Due to IE bugs on handling contenteditable=false blocks
|
60
|
+
// (#6005), we need to make some checks and eventually
|
61
|
+
// delete the selection first.
|
62
|
+
|
63
|
+
var range = selection.getRanges()[0],
|
64
|
+
endContainer = range && range.endContainer;
|
65
|
+
|
66
|
+
if ( endContainer &&
|
67
|
+
endContainer.type == CKEDITOR.NODE_ELEMENT &&
|
68
|
+
endContainer.getAttribute( 'contenteditable' ) == 'false' &&
|
69
|
+
range.checkBoundaryOfElement( endContainer, CKEDITOR.END ) )
|
70
|
+
{
|
71
|
+
range.setEndAfter( range.endContainer );
|
72
|
+
range.deleteContents();
|
73
|
+
}
|
74
|
+
}
|
75
|
+
|
76
|
+
try
|
77
|
+
{
|
78
|
+
$sel.createRange().pasteHTML( data );
|
79
|
+
}
|
80
|
+
catch (e) {}
|
81
|
+
|
82
|
+
if ( selIsLocked )
|
83
|
+
this.getSelection().lock();
|
84
|
+
}
|
85
|
+
else
|
86
|
+
this.document.$.execCommand( 'inserthtml', false, data );
|
87
|
+
|
88
|
+
// Webkit does not scroll to the cursor position after pasting (#5558)
|
89
|
+
if ( CKEDITOR.env.webkit )
|
90
|
+
{
|
91
|
+
this.document.$.execCommand( 'inserthtml', false, '<span id="cke_paste_marker" cke_temp="1"></span>' );
|
92
|
+
var marker = this.document.getById( 'cke_paste_marker' );
|
93
|
+
marker.scrollIntoView();
|
94
|
+
marker.remove();
|
95
|
+
marker = null;
|
96
|
+
}
|
97
|
+
|
98
|
+
CKEDITOR.tools.setTimeout( function()
|
99
|
+
{
|
100
|
+
this.fire( 'saveSnapshot' );
|
101
|
+
}, 0, this );
|
102
|
+
}
|
103
|
+
}
|
104
|
+
|
105
|
+
function onInsertElement( evt )
|
106
|
+
{
|
107
|
+
if ( this.mode == 'wysiwyg' )
|
108
|
+
{
|
109
|
+
this.focus();
|
110
|
+
|
111
|
+
var selection = this.getSelection();
|
112
|
+
if ( checkReadOnly( selection ) )
|
113
|
+
return;
|
114
|
+
|
115
|
+
this.fire( 'saveSnapshot' );
|
116
|
+
|
117
|
+
var ranges = selection.getRanges(),
|
118
|
+
element = evt.data,
|
119
|
+
elementName = element.getName(),
|
120
|
+
isBlock = CKEDITOR.dtd.$block[ elementName ];
|
121
|
+
|
122
|
+
var selIsLocked = selection.isLocked;
|
123
|
+
|
124
|
+
if ( selIsLocked )
|
125
|
+
selection.unlock();
|
126
|
+
|
127
|
+
var range, clone, lastElement, bookmark;
|
128
|
+
|
129
|
+
for ( var i = ranges.length - 1 ; i >= 0 ; i-- )
|
130
|
+
{
|
131
|
+
range = ranges[ i ];
|
132
|
+
|
133
|
+
// Remove the original contents.
|
134
|
+
range.deleteContents();
|
135
|
+
|
136
|
+
clone = !i && element || element.clone( 1 );
|
137
|
+
|
138
|
+
// If we're inserting a block at dtd-violated position, split
|
139
|
+
// the parent blocks until we reach blockLimit.
|
140
|
+
var current, dtd;
|
141
|
+
if ( isBlock )
|
142
|
+
{
|
143
|
+
while ( ( current = range.getCommonAncestor( 0, 1 ) )
|
144
|
+
&& ( dtd = CKEDITOR.dtd[ current.getName() ] )
|
145
|
+
&& !( dtd && dtd [ elementName ] ) )
|
146
|
+
{
|
147
|
+
// Split up inline elements.
|
148
|
+
if ( current.getName() in CKEDITOR.dtd.span )
|
149
|
+
range.splitElement( current );
|
150
|
+
// If we're in an empty block which indicate a new paragraph,
|
151
|
+
// simply replace it with the inserting block.(#3664)
|
152
|
+
else if ( range.checkStartOfBlock()
|
153
|
+
&& range.checkEndOfBlock() )
|
154
|
+
{
|
155
|
+
range.setStartBefore( current );
|
156
|
+
range.collapse( true );
|
157
|
+
current.remove();
|
158
|
+
}
|
159
|
+
else
|
160
|
+
range.splitBlock();
|
161
|
+
}
|
162
|
+
}
|
163
|
+
|
164
|
+
// Insert the new node.
|
165
|
+
range.insertNode( clone );
|
166
|
+
|
167
|
+
// Save the last element reference so we can make the
|
168
|
+
// selection later.
|
169
|
+
if ( !lastElement )
|
170
|
+
lastElement = clone;
|
171
|
+
}
|
172
|
+
|
173
|
+
range.moveToPosition( lastElement, CKEDITOR.POSITION_AFTER_END );
|
174
|
+
|
175
|
+
// If we're inserting a block element immediatelly followed by
|
176
|
+
// another block element, the selection must move there. (#3100,#5436)
|
177
|
+
if ( isBlock )
|
178
|
+
{
|
179
|
+
var next = lastElement.getNext( notWhitespaceEval ),
|
180
|
+
nextName = next && next.type == CKEDITOR.NODE_ELEMENT && next.getName();
|
181
|
+
|
182
|
+
// Check if it's a block element that accepts text.
|
183
|
+
if ( nextName && CKEDITOR.dtd.$block[ nextName ] && CKEDITOR.dtd[ nextName ]['#'] )
|
184
|
+
range.moveToElementEditStart( next );
|
185
|
+
}
|
186
|
+
|
187
|
+
selection.selectRanges( [ range ] );
|
188
|
+
|
189
|
+
if ( selIsLocked )
|
190
|
+
this.getSelection().lock();
|
191
|
+
|
192
|
+
// Save snaps after the whole execution completed.
|
193
|
+
// This's a workaround for make DOM modification's happened after
|
194
|
+
// 'insertElement' to be included either, e.g. Form-based dialogs' 'commitContents'
|
195
|
+
// call.
|
196
|
+
CKEDITOR.tools.setTimeout( function(){
|
197
|
+
this.fire( 'saveSnapshot' );
|
198
|
+
}, 0, this );
|
199
|
+
}
|
200
|
+
}
|
201
|
+
|
202
|
+
// DOM modification here should not bother dirty flag.(#4385)
|
203
|
+
function restoreDirty( editor )
|
204
|
+
{
|
205
|
+
if ( !editor.checkDirty() )
|
206
|
+
setTimeout( function(){ editor.resetDirty(); }, 0 );
|
207
|
+
}
|
208
|
+
|
209
|
+
var isNotWhitespace = CKEDITOR.dom.walker.whitespaces( true ),
|
210
|
+
isNotBookmark = CKEDITOR.dom.walker.bookmark( false, true );
|
211
|
+
|
212
|
+
function isNotEmpty( node )
|
213
|
+
{
|
214
|
+
return isNotWhitespace( node ) && isNotBookmark( node );
|
215
|
+
}
|
216
|
+
|
217
|
+
function isNbsp( node )
|
218
|
+
{
|
219
|
+
return node.type == CKEDITOR.NODE_TEXT
|
220
|
+
&& CKEDITOR.tools.trim( node.getText() ).match( /^(?: |\xa0)$/ );
|
221
|
+
}
|
222
|
+
|
223
|
+
function restoreSelection( selection )
|
224
|
+
{
|
225
|
+
if ( selection.isLocked )
|
226
|
+
{
|
227
|
+
selection.unlock();
|
228
|
+
setTimeout( function() { selection.lock(); }, 0 );
|
229
|
+
}
|
230
|
+
}
|
231
|
+
|
232
|
+
function isBlankParagraph( block )
|
233
|
+
{
|
234
|
+
return block.getOuterHtml().match( emptyParagraphRegexp );
|
235
|
+
}
|
236
|
+
|
237
|
+
isNotWhitespace = CKEDITOR.dom.walker.whitespaces( true );
|
238
|
+
|
239
|
+
// Gecko need a key event to 'wake up' the editing
|
240
|
+
// ability when document is empty.(#3864, #5781)
|
241
|
+
function activateEditing( editor )
|
242
|
+
{
|
243
|
+
var win = editor.window,
|
244
|
+
doc = editor.document,
|
245
|
+
body = editor.document.getBody(),
|
246
|
+
bodyChildsNum = body.getChildren().count();
|
247
|
+
|
248
|
+
if ( !bodyChildsNum || ( bodyChildsNum == 1&& body.getFirst().hasAttribute( '_moz_editor_bogus_node' ) ) )
|
249
|
+
{
|
250
|
+
restoreDirty( editor );
|
251
|
+
|
252
|
+
// Memorize scroll position to restore it later (#4472).
|
253
|
+
var hostDocument = editor.element.getDocument();
|
254
|
+
var hostDocumentElement = hostDocument.getDocumentElement();
|
255
|
+
var scrollTop = hostDocumentElement.$.scrollTop;
|
256
|
+
var scrollLeft = hostDocumentElement.$.scrollLeft;
|
257
|
+
|
258
|
+
// Simulating keyboard character input by dispatching a keydown of white-space text.
|
259
|
+
var keyEventSimulate = doc.$.createEvent( "KeyEvents" );
|
260
|
+
keyEventSimulate.initKeyEvent( 'keypress', true, true, win.$, false,
|
261
|
+
false, false, false, 0, 32 );
|
262
|
+
doc.$.dispatchEvent( keyEventSimulate );
|
263
|
+
|
264
|
+
if ( scrollTop != hostDocumentElement.$.scrollTop || scrollLeft != hostDocumentElement.$.scrollLeft )
|
265
|
+
hostDocument.getWindow().$.scrollTo( scrollLeft, scrollTop );
|
266
|
+
|
267
|
+
// Restore the original document status by placing the cursor before a bogus br created (#5021).
|
268
|
+
bodyChildsNum && body.getFirst().remove();
|
269
|
+
doc.getBody().appendBogus();
|
270
|
+
var nativeRange = new CKEDITOR.dom.range( doc );
|
271
|
+
nativeRange.setStartAt( body , CKEDITOR.POSITION_AFTER_START );
|
272
|
+
nativeRange.select();
|
273
|
+
}
|
274
|
+
}
|
275
|
+
|
276
|
+
/**
|
277
|
+
* Auto-fixing block-less content by wrapping paragraph (#3190), prevent
|
278
|
+
* non-exitable-block by padding extra br.(#3189)
|
279
|
+
*/
|
280
|
+
function onSelectionChangeFixBody( evt )
|
281
|
+
{
|
282
|
+
var editor = evt.editor,
|
283
|
+
path = evt.data.path,
|
284
|
+
blockLimit = path.blockLimit,
|
285
|
+
selection = evt.data.selection,
|
286
|
+
range = selection.getRanges()[0],
|
287
|
+
body = editor.document.getBody(),
|
288
|
+
enterMode = editor.config.enterMode;
|
289
|
+
|
290
|
+
CKEDITOR.env.gecko && activateEditing( editor );
|
291
|
+
|
292
|
+
// When enterMode set to block, we'll establing new paragraph only if we're
|
293
|
+
// selecting inline contents right under body. (#3657)
|
294
|
+
if ( enterMode != CKEDITOR.ENTER_BR
|
295
|
+
&& range.collapsed
|
296
|
+
&& blockLimit.getName() == 'body'
|
297
|
+
&& !path.block )
|
298
|
+
{
|
299
|
+
editor.fire( 'updateSnapshot' );
|
300
|
+
restoreDirty( editor );
|
301
|
+
CKEDITOR.env.ie && restoreSelection( selection );
|
302
|
+
|
303
|
+
var fixedBlock = range.fixBlock( true,
|
304
|
+
editor.config.enterMode == CKEDITOR.ENTER_DIV ? 'div' : 'p' );
|
305
|
+
|
306
|
+
// For IE, we should remove any filler node which was introduced before.
|
307
|
+
if ( CKEDITOR.env.ie )
|
308
|
+
{
|
309
|
+
var first = fixedBlock.getFirst( isNotEmpty );
|
310
|
+
first && isNbsp( first ) && first.remove();
|
311
|
+
}
|
312
|
+
|
313
|
+
// If the fixed block is actually blank and is already followed by an exitable blank
|
314
|
+
// block, we should revert the fix and move into the existed one. (#3684)
|
315
|
+
if ( isBlankParagraph( fixedBlock ) )
|
316
|
+
{
|
317
|
+
var element = fixedBlock.getNext( isNotWhitespace );
|
318
|
+
if ( element &&
|
319
|
+
element.type == CKEDITOR.NODE_ELEMENT &&
|
320
|
+
!nonExitableElementNames[ element.getName() ] )
|
321
|
+
{
|
322
|
+
range.moveToElementEditStart( element );
|
323
|
+
fixedBlock.remove();
|
324
|
+
}
|
325
|
+
else
|
326
|
+
{
|
327
|
+
element = fixedBlock.getPrevious( isNotWhitespace );
|
328
|
+
if ( element &&
|
329
|
+
element.type == CKEDITOR.NODE_ELEMENT &&
|
330
|
+
!nonExitableElementNames[ element.getName() ] )
|
331
|
+
{
|
332
|
+
range.moveToElementEditEnd( element );
|
333
|
+
fixedBlock.remove();
|
334
|
+
}
|
335
|
+
}
|
336
|
+
}
|
337
|
+
|
338
|
+
range.select();
|
339
|
+
// Notify non-IE that selection has changed.
|
340
|
+
if ( !CKEDITOR.env.ie )
|
341
|
+
editor.selectionChange();
|
342
|
+
}
|
343
|
+
|
344
|
+
// All browsers are incapable to moving cursor out of certain non-exitable
|
345
|
+
// blocks (e.g. table, list, pre) at the end of document, make this happen by
|
346
|
+
// place a bogus node there, which would be later removed by dataprocessor.
|
347
|
+
var walkerRange = new CKEDITOR.dom.range( editor.document ),
|
348
|
+
walker = new CKEDITOR.dom.walker( walkerRange );
|
349
|
+
walkerRange.selectNodeContents( body );
|
350
|
+
walker.evaluator = function( node )
|
351
|
+
{
|
352
|
+
return node.type == CKEDITOR.NODE_ELEMENT && ( node.getName() in nonExitableElementNames );
|
353
|
+
};
|
354
|
+
walker.guard = function( node, isMoveout )
|
355
|
+
{
|
356
|
+
return !( ( node.type == CKEDITOR.NODE_TEXT && isNotWhitespace( node ) ) || isMoveout );
|
357
|
+
};
|
358
|
+
|
359
|
+
if ( walker.previous() )
|
360
|
+
{
|
361
|
+
editor.fire( 'updateSnapshot' );
|
362
|
+
restoreDirty( editor );
|
363
|
+
CKEDITOR.env.ie && restoreSelection( selection );
|
364
|
+
|
365
|
+
var paddingBlock;
|
366
|
+
if ( enterMode != CKEDITOR.ENTER_BR )
|
367
|
+
paddingBlock = body.append( new CKEDITOR.dom.element( enterMode == CKEDITOR.ENTER_P ? 'p' : 'div' ) );
|
368
|
+
else
|
369
|
+
paddingBlock = body;
|
370
|
+
|
371
|
+
if ( !CKEDITOR.env.ie )
|
372
|
+
paddingBlock.appendBogus();
|
373
|
+
}
|
374
|
+
}
|
375
|
+
|
376
|
+
CKEDITOR.plugins.add( 'wysiwygarea',
|
377
|
+
{
|
378
|
+
requires : [ 'editingblock' ],
|
379
|
+
|
380
|
+
init : function( editor )
|
381
|
+
{
|
382
|
+
var fixForBody = ( editor.config.enterMode != CKEDITOR.ENTER_BR )
|
383
|
+
? editor.config.enterMode == CKEDITOR.ENTER_DIV ? 'div' : 'p' : false;
|
384
|
+
|
385
|
+
var frameLabel = editor.lang.editorTitle.replace( '%1', editor.name );
|
386
|
+
|
387
|
+
var contentDomReadyHandler;
|
388
|
+
editor.on( 'editingBlockReady', function()
|
389
|
+
{
|
390
|
+
var mainElement,
|
391
|
+
iframe,
|
392
|
+
isLoadingData,
|
393
|
+
isPendingFocus,
|
394
|
+
frameLoaded,
|
395
|
+
fireMode;
|
396
|
+
|
397
|
+
|
398
|
+
// Support for custom document.domain in IE.
|
399
|
+
var isCustomDomain = CKEDITOR.env.isCustomDomain();
|
400
|
+
|
401
|
+
// Creates the iframe that holds the editable document.
|
402
|
+
var createIFrame = function( data )
|
403
|
+
{
|
404
|
+
if ( iframe )
|
405
|
+
iframe.remove();
|
406
|
+
|
407
|
+
|
408
|
+
var srcScript =
|
409
|
+
'document.open();' +
|
410
|
+
|
411
|
+
// The document domain must be set any time we
|
412
|
+
// call document.open().
|
413
|
+
( isCustomDomain ? ( 'document.domain="' + document.domain + '";' ) : '' ) +
|
414
|
+
|
415
|
+
'document.close();';
|
416
|
+
|
417
|
+
iframe = CKEDITOR.dom.element.createFromHtml( '<iframe' +
|
418
|
+
' style="width:100%;height:100%"' +
|
419
|
+
' frameBorder="0"' +
|
420
|
+
' title="' + frameLabel + '"' +
|
421
|
+
// With IE, the custom domain has to be taken care at first,
|
422
|
+
// for other browers, the 'src' attribute should be left empty to
|
423
|
+
// trigger iframe's 'load' event.
|
424
|
+
' src="' + ( CKEDITOR.env.ie ? 'javascript:void(function(){' + encodeURIComponent( srcScript ) + '}())' : '' ) + '"' +
|
425
|
+
' tabIndex="' + ( CKEDITOR.env.webkit? -1 : editor.tabIndex ) + '"' +
|
426
|
+
' allowTransparency="true"' +
|
427
|
+
'></iframe>' );
|
428
|
+
|
429
|
+
// Running inside of Firefox chrome the load event doesn't bubble like in a normal page (#5689)
|
430
|
+
if ( document.location.protocol == 'chrome:' )
|
431
|
+
CKEDITOR.event.useCapture = true;
|
432
|
+
|
433
|
+
// With FF, it's better to load the data on iframe.load. (#3894,#4058)
|
434
|
+
iframe.on( 'load', function( ev )
|
435
|
+
{
|
436
|
+
frameLoaded = 1;
|
437
|
+
ev.removeListener();
|
438
|
+
|
439
|
+
var doc = iframe.getFrameDocument().$;
|
440
|
+
|
441
|
+
// Don't leave any history log in IE. (#5657)
|
442
|
+
doc.open( "text/html","replace" );
|
443
|
+
doc.write( data );
|
444
|
+
doc.close();
|
445
|
+
});
|
446
|
+
|
447
|
+
// Reset adjustment back to default (#5689)
|
448
|
+
if ( document.location.protocol == 'chrome:' )
|
449
|
+
CKEDITOR.event.useCapture = false;
|
450
|
+
|
451
|
+
// The container must be visible when creating the iframe in FF (#5956)
|
452
|
+
var element = editor.element,
|
453
|
+
isHidden = CKEDITOR.env.gecko && !element.isVisible(),
|
454
|
+
previousStyles = {};
|
455
|
+
if ( isHidden )
|
456
|
+
{
|
457
|
+
element.show();
|
458
|
+
previousStyles = {
|
459
|
+
position : element.getStyle( 'position' ),
|
460
|
+
top : element.getStyle( 'top' )
|
461
|
+
};
|
462
|
+
element.setStyles( { position : 'absolute', top : '-3000px' } );
|
463
|
+
}
|
464
|
+
|
465
|
+
mainElement.append( iframe );
|
466
|
+
|
467
|
+
if ( isHidden )
|
468
|
+
{
|
469
|
+
setTimeout( function()
|
470
|
+
{
|
471
|
+
element.hide();
|
472
|
+
element.setStyles( previousStyles );
|
473
|
+
}, 1000 );
|
474
|
+
}
|
475
|
+
};
|
476
|
+
|
477
|
+
// The script that launches the bootstrap logic on 'domReady', so the document
|
478
|
+
// is fully editable even before the editing iframe is fully loaded (#4455).
|
479
|
+
contentDomReadyHandler = CKEDITOR.tools.addFunction( contentDomReady );
|
480
|
+
var activationScript =
|
481
|
+
'<script id="cke_actscrpt" type="text/javascript" cke_temp="1">' +
|
482
|
+
( isCustomDomain ? ( 'document.domain="' + document.domain + '";' ) : '' ) +
|
483
|
+
'window.parent.CKEDITOR.tools.callFunction( ' + contentDomReadyHandler + ', window );' +
|
484
|
+
'</script>';
|
485
|
+
|
486
|
+
// Editing area bootstrap code.
|
487
|
+
function contentDomReady( domWindow )
|
488
|
+
{
|
489
|
+
if ( !frameLoaded )
|
490
|
+
return;
|
491
|
+
frameLoaded = 0;
|
492
|
+
|
493
|
+
editor.fire( 'ariaWidget', iframe );
|
494
|
+
|
495
|
+
var domDocument = domWindow.document,
|
496
|
+
body = domDocument.body;
|
497
|
+
|
498
|
+
// Remove this script from the DOM.
|
499
|
+
var script = domDocument.getElementById( "cke_actscrpt" );
|
500
|
+
script.parentNode.removeChild( script );
|
501
|
+
|
502
|
+
body.spellcheck = !editor.config.disableNativeSpellChecker;
|
503
|
+
|
504
|
+
if ( CKEDITOR.env.ie )
|
505
|
+
{
|
506
|
+
// Don't display the focus border.
|
507
|
+
body.hideFocus = true;
|
508
|
+
|
509
|
+
// Disable and re-enable the body to avoid IE from
|
510
|
+
// taking the editing focus at startup. (#141 / #523)
|
511
|
+
body.disabled = true;
|
512
|
+
body.contentEditable = true;
|
513
|
+
body.removeAttribute( 'disabled' );
|
514
|
+
}
|
515
|
+
else
|
516
|
+
{
|
517
|
+
// Avoid opening design mode in a frame window thread,
|
518
|
+
// which will cause host page scrolling.(#4397)
|
519
|
+
setTimeout( function()
|
520
|
+
{
|
521
|
+
// Prefer 'contentEditable' instead of 'designMode'. (#3593)
|
522
|
+
if ( CKEDITOR.env.gecko && CKEDITOR.env.version >= 10900
|
523
|
+
|| CKEDITOR.env.opera )
|
524
|
+
domDocument.$.body.contentEditable = true;
|
525
|
+
else if ( CKEDITOR.env.webkit )
|
526
|
+
domDocument.$.body.parentNode.contentEditable = true;
|
527
|
+
else
|
528
|
+
domDocument.$.designMode = 'on';
|
529
|
+
}, 0 );
|
530
|
+
}
|
531
|
+
|
532
|
+
CKEDITOR.env.gecko && CKEDITOR.tools.setTimeout( activateEditing, 0, null, editor );
|
533
|
+
|
534
|
+
domWindow = editor.window = new CKEDITOR.dom.window( domWindow );
|
535
|
+
domDocument = editor.document = new CKEDITOR.dom.document( domDocument );
|
536
|
+
|
537
|
+
domDocument.on( 'dblclick', function( evt )
|
538
|
+
{
|
539
|
+
var element = evt.data.getTarget(),
|
540
|
+
data = { element : element, dialog : '' };
|
541
|
+
editor.fire( 'doubleclick', data );
|
542
|
+
data.dialog && editor.openDialog( data.dialog );
|
543
|
+
});
|
544
|
+
|
545
|
+
// Gecko/Webkit need some help when selecting control type elements. (#3448)
|
546
|
+
if ( !( CKEDITOR.env.ie || CKEDITOR.env.opera ) )
|
547
|
+
{
|
548
|
+
domDocument.on( 'mousedown', function( ev )
|
549
|
+
{
|
550
|
+
var control = ev.data.getTarget();
|
551
|
+
if ( control.is( 'img', 'hr', 'input', 'textarea', 'select' ) )
|
552
|
+
editor.getSelection().selectElement( control );
|
553
|
+
} );
|
554
|
+
}
|
555
|
+
|
556
|
+
if ( CKEDITOR.env.gecko )
|
557
|
+
{
|
558
|
+
domDocument.on( 'mouseup', function( ev )
|
559
|
+
{
|
560
|
+
if ( ev.data.$.button == 2 )
|
561
|
+
{
|
562
|
+
var target = ev.data.getTarget();
|
563
|
+
|
564
|
+
// Prevent right click from selecting an empty block even
|
565
|
+
// when selection is anchored inside it. (#5845)
|
566
|
+
if ( !target.getOuterHtml().replace( emptyParagraphRegexp, '' ) )
|
567
|
+
{
|
568
|
+
var range = new CKEDITOR.dom.range( domDocument );
|
569
|
+
range.moveToElementEditStart( target );
|
570
|
+
range.select( true );
|
571
|
+
}
|
572
|
+
}
|
573
|
+
} );
|
574
|
+
}
|
575
|
+
|
576
|
+
// Prevent the browser opening links in read-only blocks. (#6032)
|
577
|
+
domDocument.on( 'click', function( ev )
|
578
|
+
{
|
579
|
+
ev = ev.data;
|
580
|
+
if ( ev.getTarget().is( 'a' ) && ev.$.button != 2 )
|
581
|
+
ev.preventDefault();
|
582
|
+
});
|
583
|
+
|
584
|
+
// Webkit: avoid from editing form control elements content.
|
585
|
+
if ( CKEDITOR.env.webkit )
|
586
|
+
{
|
587
|
+
// Prevent from tick checkbox/radiobox/select
|
588
|
+
domDocument.on( 'click', function( ev )
|
589
|
+
{
|
590
|
+
if ( ev.data.getTarget().is( 'input', 'select' ) )
|
591
|
+
ev.data.preventDefault();
|
592
|
+
} );
|
593
|
+
|
594
|
+
// Prevent from editig textfield/textarea value.
|
595
|
+
domDocument.on( 'mouseup', function( ev )
|
596
|
+
{
|
597
|
+
if ( ev.data.getTarget().is( 'input', 'textarea' ) )
|
598
|
+
ev.data.preventDefault();
|
599
|
+
} );
|
600
|
+
}
|
601
|
+
|
602
|
+
// IE standard compliant in editing frame doesn't focus the editor when
|
603
|
+
// clicking outside actual content, manually apply the focus. (#1659)
|
604
|
+
if ( CKEDITOR.env.ie
|
605
|
+
&& domDocument.$.compatMode == 'CSS1Compat'
|
606
|
+
|| CKEDITOR.env.gecko
|
607
|
+
|| CKEDITOR.env.opera )
|
608
|
+
{
|
609
|
+
var htmlElement = domDocument.getDocumentElement();
|
610
|
+
htmlElement.on( 'mousedown', function( evt )
|
611
|
+
{
|
612
|
+
// Setting focus directly on editor doesn't work, we
|
613
|
+
// have to use here a temporary element to 'redirect'
|
614
|
+
// the focus.
|
615
|
+
if ( evt.data.getTarget().equals( htmlElement ) )
|
616
|
+
{
|
617
|
+
if ( CKEDITOR.env.gecko && CKEDITOR.env.version >= 10900 )
|
618
|
+
blinkCursor();
|
619
|
+
focusGrabber.focus();
|
620
|
+
}
|
621
|
+
} );
|
622
|
+
}
|
623
|
+
|
624
|
+
domWindow.on( 'blur', function()
|
625
|
+
{
|
626
|
+
editor.focusManager.blur();
|
627
|
+
});
|
628
|
+
|
629
|
+
var wasFocused;
|
630
|
+
|
631
|
+
domWindow.on( 'focus', function()
|
632
|
+
{
|
633
|
+
var doc = editor.document;
|
634
|
+
|
635
|
+
if ( CKEDITOR.env.gecko && CKEDITOR.env.version >= 10900 )
|
636
|
+
blinkCursor();
|
637
|
+
else if ( CKEDITOR.env.opera )
|
638
|
+
doc.getBody().focus();
|
639
|
+
// Webkit needs focus for the first time on the HTML element. (#6153)
|
640
|
+
else if ( CKEDITOR.env.webkit )
|
641
|
+
{
|
642
|
+
if ( !wasFocused )
|
643
|
+
{
|
644
|
+
editor.document.getDocumentElement().focus();
|
645
|
+
wasFocused = 1;
|
646
|
+
}
|
647
|
+
}
|
648
|
+
|
649
|
+
editor.focusManager.focus();
|
650
|
+
});
|
651
|
+
|
652
|
+
var keystrokeHandler = editor.keystrokeHandler;
|
653
|
+
if ( keystrokeHandler )
|
654
|
+
keystrokeHandler.attach( domDocument );
|
655
|
+
|
656
|
+
if ( CKEDITOR.env.ie )
|
657
|
+
{
|
658
|
+
domDocument.getDocumentElement().addClass( domDocument.$.compatMode );
|
659
|
+
// Override keystrokes which should have deletion behavior
|
660
|
+
// on control types in IE . (#4047)
|
661
|
+
domDocument.on( 'keydown', function( evt )
|
662
|
+
{
|
663
|
+
var keyCode = evt.data.getKeystroke();
|
664
|
+
|
665
|
+
// Backspace OR Delete.
|
666
|
+
if ( keyCode in { 8 : 1, 46 : 1 } )
|
667
|
+
{
|
668
|
+
var sel = editor.getSelection(),
|
669
|
+
control = sel.getSelectedElement();
|
670
|
+
|
671
|
+
if ( control )
|
672
|
+
{
|
673
|
+
// Make undo snapshot.
|
674
|
+
editor.fire( 'saveSnapshot' );
|
675
|
+
|
676
|
+
// Delete any element that 'hasLayout' (e.g. hr,table) in IE8 will
|
677
|
+
// break up the selection, safely manage it here. (#4795)
|
678
|
+
var bookmark = sel.getRanges()[ 0 ].createBookmark();
|
679
|
+
// Remove the control manually.
|
680
|
+
control.remove();
|
681
|
+
sel.selectBookmarks( [ bookmark ] );
|
682
|
+
|
683
|
+
editor.fire( 'saveSnapshot' );
|
684
|
+
|
685
|
+
evt.data.preventDefault();
|
686
|
+
}
|
687
|
+
}
|
688
|
+
} );
|
689
|
+
|
690
|
+
// PageUp/PageDown scrolling is broken in document
|
691
|
+
// with standard doctype, manually fix it. (#4736)
|
692
|
+
if ( domDocument.$.compatMode == 'CSS1Compat' )
|
693
|
+
{
|
694
|
+
var pageUpDownKeys = { 33 : 1, 34 : 1 };
|
695
|
+
domDocument.on( 'keydown', function( evt )
|
696
|
+
{
|
697
|
+
if ( evt.data.getKeystroke() in pageUpDownKeys )
|
698
|
+
{
|
699
|
+
setTimeout( function ()
|
700
|
+
{
|
701
|
+
editor.getSelection().scrollIntoView();
|
702
|
+
}, 0 );
|
703
|
+
}
|
704
|
+
} );
|
705
|
+
}
|
706
|
+
}
|
707
|
+
|
708
|
+
// Adds the document body as a context menu target.
|
709
|
+
if ( editor.contextMenu )
|
710
|
+
editor.contextMenu.addTarget( domDocument, editor.config.browserContextMenuOnCtrl !== false );
|
711
|
+
|
712
|
+
setTimeout( function()
|
713
|
+
{
|
714
|
+
editor.fire( 'contentDom' );
|
715
|
+
|
716
|
+
if ( fireMode )
|
717
|
+
{
|
718
|
+
editor.mode = 'wysiwyg';
|
719
|
+
editor.fire( 'mode' );
|
720
|
+
fireMode = false;
|
721
|
+
}
|
722
|
+
|
723
|
+
isLoadingData = false;
|
724
|
+
|
725
|
+
if ( isPendingFocus )
|
726
|
+
{
|
727
|
+
editor.focus();
|
728
|
+
isPendingFocus = false;
|
729
|
+
}
|
730
|
+
setTimeout( function()
|
731
|
+
{
|
732
|
+
editor.fire( 'dataReady' );
|
733
|
+
}, 0 );
|
734
|
+
|
735
|
+
// IE, Opera and Safari may not support it and throw errors.
|
736
|
+
try { editor.document.$.execCommand( 'enableObjectResizing', false, !editor.config.disableObjectResizing ) ; } catch(e) {}
|
737
|
+
try { editor.document.$.execCommand( 'enableInlineTableEditing', false, !editor.config.disableNativeTableHandles ) ; } catch(e) {}
|
738
|
+
|
739
|
+
/*
|
740
|
+
* IE BUG: IE might have rendered the iframe with invisible contents.
|
741
|
+
* (#3623). Push some inconsequential CSS style changes to force IE to
|
742
|
+
* refresh it.
|
743
|
+
*
|
744
|
+
* Also, for some unknown reasons, short timeouts (e.g. 100ms) do not
|
745
|
+
* fix the problem. :(
|
746
|
+
*/
|
747
|
+
if ( CKEDITOR.env.ie )
|
748
|
+
{
|
749
|
+
setTimeout( function()
|
750
|
+
{
|
751
|
+
if ( editor.document )
|
752
|
+
{
|
753
|
+
var $body = editor.document.$.body;
|
754
|
+
$body.runtimeStyle.marginBottom = '0px';
|
755
|
+
$body.runtimeStyle.marginBottom = '';
|
756
|
+
}
|
757
|
+
}, 1000 );
|
758
|
+
}
|
759
|
+
},
|
760
|
+
0 );
|
761
|
+
}
|
762
|
+
|
763
|
+
editor.addMode( 'wysiwyg',
|
764
|
+
{
|
765
|
+
load : function( holderElement, data, isSnapshot )
|
766
|
+
{
|
767
|
+
mainElement = holderElement;
|
768
|
+
|
769
|
+
if ( CKEDITOR.env.ie && CKEDITOR.env.quirks )
|
770
|
+
holderElement.setStyle( 'position', 'relative' );
|
771
|
+
|
772
|
+
// The editor data "may be dirty" after this
|
773
|
+
// point.
|
774
|
+
editor.mayBeDirty = true;
|
775
|
+
|
776
|
+
fireMode = true;
|
777
|
+
|
778
|
+
if ( isSnapshot )
|
779
|
+
this.loadSnapshotData( data );
|
780
|
+
else
|
781
|
+
this.loadData( data );
|
782
|
+
},
|
783
|
+
|
784
|
+
loadData : function( data )
|
785
|
+
{
|
786
|
+
isLoadingData = true;
|
787
|
+
|
788
|
+
var config = editor.config,
|
789
|
+
fullPage = config.fullPage,
|
790
|
+
docType = config.docType;
|
791
|
+
|
792
|
+
// Build the additional stuff to be included into <head>.
|
793
|
+
var headExtra =
|
794
|
+
'<style type="text/css" cke_temp="1">' +
|
795
|
+
editor._.styles.join( '\n' ) +
|
796
|
+
'</style>';
|
797
|
+
|
798
|
+
!fullPage && ( headExtra =
|
799
|
+
CKEDITOR.tools.buildStyleHtml( editor.config.contentsCss ) +
|
800
|
+
headExtra );
|
801
|
+
|
802
|
+
var baseTag = config.baseHref ? '<base href="' + config.baseHref + '" cke_temp="1" />' : '';
|
803
|
+
|
804
|
+
if ( fullPage )
|
805
|
+
{
|
806
|
+
// Search and sweep out the doctype declaration.
|
807
|
+
data = data.replace( /<!DOCTYPE[^>]*>/i, function( match )
|
808
|
+
{
|
809
|
+
editor.docType = docType = match;
|
810
|
+
return '';
|
811
|
+
});
|
812
|
+
}
|
813
|
+
|
814
|
+
// Get the HTML version of the data.
|
815
|
+
if ( editor.dataProcessor )
|
816
|
+
data = editor.dataProcessor.toHtml( data, fixForBody );
|
817
|
+
|
818
|
+
if ( fullPage )
|
819
|
+
{
|
820
|
+
// Check if the <body> tag is available.
|
821
|
+
if ( !(/<body[\s|>]/).test( data ) )
|
822
|
+
data = '<body>' + data;
|
823
|
+
|
824
|
+
// Check if the <html> tag is available.
|
825
|
+
if ( !(/<html[\s|>]/).test( data ) )
|
826
|
+
data = '<html>' + data + '</html>';
|
827
|
+
|
828
|
+
// Check if the <head> tag is available.
|
829
|
+
if ( !(/<head[\s|>]/).test( data ) )
|
830
|
+
data = data.replace( /<html[^>]*>/, '$&<head><title></title></head>' ) ;
|
831
|
+
else if ( !(/<title[\s|>]/).test( data ) )
|
832
|
+
data = data.replace( /<head[^>]*>/, '$&<title></title>' ) ;
|
833
|
+
|
834
|
+
// The base must be the first tag in the HEAD, e.g. to get relative
|
835
|
+
// links on styles.
|
836
|
+
baseTag && ( data = data.replace( /<head>/, '$&' + baseTag ) );
|
837
|
+
|
838
|
+
// Inject the extra stuff into <head>.
|
839
|
+
// Attention: do not change it before testing it well. (V2)
|
840
|
+
// This is tricky... if the head ends with <meta ... content type>,
|
841
|
+
// Firefox will break. But, it works if we place our extra stuff as
|
842
|
+
// the last elements in the HEAD.
|
843
|
+
data = data.replace( /<\/head\s*>/, headExtra + '$&' );
|
844
|
+
|
845
|
+
// Add the DOCTYPE back to it.
|
846
|
+
data = docType + data;
|
847
|
+
}
|
848
|
+
else
|
849
|
+
{
|
850
|
+
data =
|
851
|
+
config.docType +
|
852
|
+
'<html dir="' + config.contentsLangDirection + '"' +
|
853
|
+
' lang="' + ( config.contentsLanguage || editor.langCode ) + '">' +
|
854
|
+
'<head>' +
|
855
|
+
'<title>' + frameLabel + '</title>' +
|
856
|
+
baseTag +
|
857
|
+
headExtra +
|
858
|
+
'</head>' +
|
859
|
+
'<body' + ( config.bodyId ? ' id="' + config.bodyId + '"' : '' ) +
|
860
|
+
( config.bodyClass ? ' class="' + config.bodyClass + '"' : '' ) +
|
861
|
+
'>' +
|
862
|
+
data +
|
863
|
+
'</html>';
|
864
|
+
}
|
865
|
+
|
866
|
+
data += activationScript;
|
867
|
+
|
868
|
+
|
869
|
+
// The iframe is recreated on each call of setData, so we need to clear DOM objects
|
870
|
+
this.onDispose();
|
871
|
+
createIFrame( data );
|
872
|
+
},
|
873
|
+
|
874
|
+
getData : function()
|
875
|
+
{
|
876
|
+
var config = editor.config,
|
877
|
+
fullPage = config.fullPage,
|
878
|
+
docType = fullPage && editor.docType,
|
879
|
+
doc = iframe.getFrameDocument();
|
880
|
+
|
881
|
+
var data = fullPage
|
882
|
+
? doc.getDocumentElement().getOuterHtml()
|
883
|
+
: doc.getBody().getHtml();
|
884
|
+
|
885
|
+
if ( editor.dataProcessor )
|
886
|
+
data = editor.dataProcessor.toDataFormat( data, fixForBody );
|
887
|
+
|
888
|
+
// Reset empty if the document contains only one empty paragraph.
|
889
|
+
if ( config.ignoreEmptyParagraph )
|
890
|
+
data = data.replace( emptyParagraphRegexp, function( match, lookback ) { return lookback; } );
|
891
|
+
|
892
|
+
if ( docType )
|
893
|
+
data = docType + '\n' + data;
|
894
|
+
|
895
|
+
return data;
|
896
|
+
},
|
897
|
+
|
898
|
+
getSnapshotData : function()
|
899
|
+
{
|
900
|
+
return iframe.getFrameDocument().getBody().getHtml();
|
901
|
+
},
|
902
|
+
|
903
|
+
loadSnapshotData : function( data )
|
904
|
+
{
|
905
|
+
iframe.getFrameDocument().getBody().setHtml( data );
|
906
|
+
},
|
907
|
+
|
908
|
+
onDispose : function()
|
909
|
+
{
|
910
|
+
if ( !editor.document )
|
911
|
+
return;
|
912
|
+
|
913
|
+
editor.document.getDocumentElement().clearCustomData();
|
914
|
+
editor.document.getBody().clearCustomData();
|
915
|
+
|
916
|
+
editor.window.clearCustomData();
|
917
|
+
editor.document.clearCustomData();
|
918
|
+
|
919
|
+
iframe.clearCustomData();
|
920
|
+
|
921
|
+
/*
|
922
|
+
* IE BUG: When destroying editor DOM with the selection remains inside
|
923
|
+
* editing area would break IE7/8's selection system, we have to put the editing
|
924
|
+
* iframe offline first. (#3812 and #5441)
|
925
|
+
*/
|
926
|
+
iframe.remove();
|
927
|
+
},
|
928
|
+
|
929
|
+
unload : function( holderElement )
|
930
|
+
{
|
931
|
+
this.onDispose();
|
932
|
+
|
933
|
+
editor.window = editor.document = iframe = mainElement = isPendingFocus = null;
|
934
|
+
|
935
|
+
editor.fire( 'contentDomUnload' );
|
936
|
+
},
|
937
|
+
|
938
|
+
focus : function()
|
939
|
+
{
|
940
|
+
if ( isLoadingData )
|
941
|
+
isPendingFocus = true;
|
942
|
+
// Temporary solution caused by #6025, supposed be unified by #6154.
|
943
|
+
else if ( CKEDITOR.env.opera && editor.document )
|
944
|
+
{
|
945
|
+
// Required for Opera when switching focus
|
946
|
+
// from another iframe, e.g. panels. (#6444)
|
947
|
+
var iframe = editor.window.$.frameElement;
|
948
|
+
iframe.blur(), iframe.focus();
|
949
|
+
editor.document.getBody().focus();
|
950
|
+
|
951
|
+
editor.selectionChange();
|
952
|
+
}
|
953
|
+
else if ( !CKEDITOR.env.opera && editor.window )
|
954
|
+
{
|
955
|
+
editor.window.focus();
|
956
|
+
|
957
|
+
editor.selectionChange();
|
958
|
+
}
|
959
|
+
}
|
960
|
+
});
|
961
|
+
|
962
|
+
editor.on( 'insertHtml', onInsertHtml, null, null, 20 );
|
963
|
+
editor.on( 'insertElement', onInsertElement, null, null, 20 );
|
964
|
+
// Auto fixing on some document structure weakness to enhance usabilities. (#3190 and #3189)
|
965
|
+
editor.on( 'selectionChange', onSelectionChangeFixBody, null, null, 1 );
|
966
|
+
});
|
967
|
+
|
968
|
+
var titleBackup;
|
969
|
+
// Setting voice label as window title, backup the original one
|
970
|
+
// and restore it before running into use.
|
971
|
+
editor.on( 'contentDom', function()
|
972
|
+
{
|
973
|
+
var title = editor.document.getElementsByTag( 'title' ).getItem( 0 );
|
974
|
+
title.setAttribute( '_cke_title', editor.document.$.title );
|
975
|
+
editor.document.$.title = frameLabel;
|
976
|
+
});
|
977
|
+
|
978
|
+
// IE8 stricts mode doesn't have 'contentEditable' in effect
|
979
|
+
// on element unless it has layout. (#5562)
|
980
|
+
if ( CKEDITOR.env.ie8Compat )
|
981
|
+
{
|
982
|
+
editor.addCss( 'html.CSS1Compat [contenteditable=false]{ min-height:0 !important;}' );
|
983
|
+
|
984
|
+
var selectors = [];
|
985
|
+
for ( var tag in CKEDITOR.dtd.$removeEmpty )
|
986
|
+
selectors.push( 'html.CSS1Compat ' + tag + '[contenteditable=false]' );
|
987
|
+
editor.addCss( selectors.join( ',' ) + '{ display:inline-block;}' );
|
988
|
+
}
|
989
|
+
// Set the HTML style to 100% to have the text cursor in affect (#6341)
|
990
|
+
else if ( CKEDITOR.env.gecko )
|
991
|
+
editor.addCss( 'html { height: 100% !important; }' );
|
992
|
+
|
993
|
+
// Switch on design mode for a short while and close it after then.
|
994
|
+
function blinkCursor( retry )
|
995
|
+
{
|
996
|
+
CKEDITOR.tools.tryThese(
|
997
|
+
function()
|
998
|
+
{
|
999
|
+
editor.document.$.designMode = 'on';
|
1000
|
+
setTimeout( function()
|
1001
|
+
{
|
1002
|
+
editor.document.$.designMode = 'off';
|
1003
|
+
if ( CKEDITOR.currentInstance == editor )
|
1004
|
+
editor.document.getBody().focus();
|
1005
|
+
}, 50 );
|
1006
|
+
},
|
1007
|
+
function()
|
1008
|
+
{
|
1009
|
+
// The above call is known to fail when parent DOM
|
1010
|
+
// tree layout changes may break design mode. (#5782)
|
1011
|
+
// Refresh the 'contentEditable' is a cue to this.
|
1012
|
+
editor.document.$.designMode = 'off';
|
1013
|
+
var body = editor.document.getBody();
|
1014
|
+
body.setAttribute( 'contentEditable', false );
|
1015
|
+
body.setAttribute( 'contentEditable', true );
|
1016
|
+
// Try it again once..
|
1017
|
+
!retry && blinkCursor( 1 );
|
1018
|
+
});
|
1019
|
+
}
|
1020
|
+
|
1021
|
+
// Create an invisible element to grab focus.
|
1022
|
+
if ( CKEDITOR.env.gecko || CKEDITOR.env.ie || CKEDITOR.env.opera )
|
1023
|
+
{
|
1024
|
+
var focusGrabber;
|
1025
|
+
editor.on( 'uiReady', function()
|
1026
|
+
{
|
1027
|
+
focusGrabber = editor.container.append( CKEDITOR.dom.element.createFromHtml(
|
1028
|
+
// Use 'span' instead of anything else to fly under the screen-reader radar. (#5049)
|
1029
|
+
'<span tabindex="-1" style="position:absolute; left:-10000" role="presentation"></span>' ) );
|
1030
|
+
|
1031
|
+
focusGrabber.on( 'focus', function()
|
1032
|
+
{
|
1033
|
+
editor.focus();
|
1034
|
+
} );
|
1035
|
+
} );
|
1036
|
+
editor.on( 'destroy', function()
|
1037
|
+
{
|
1038
|
+
CKEDITOR.tools.removeFunction( contentDomReadyHandler );
|
1039
|
+
focusGrabber.clearCustomData();
|
1040
|
+
} );
|
1041
|
+
}
|
1042
|
+
|
1043
|
+
// Disable form elements editing mode provided by some browers. (#5746)
|
1044
|
+
editor.on( 'insertElement', function ( evt )
|
1045
|
+
{
|
1046
|
+
var element = evt.data;
|
1047
|
+
if ( element.type == CKEDITOR.NODE_ELEMENT
|
1048
|
+
&& ( element.is( 'input' ) || element.is( 'textarea' ) ) )
|
1049
|
+
{
|
1050
|
+
if ( !element.isReadOnly() )
|
1051
|
+
{
|
1052
|
+
element.setAttribute( 'contentEditable', false );
|
1053
|
+
// We should flag that the element was locked by our code so
|
1054
|
+
// it'll be editable by the editor functions (#6046).
|
1055
|
+
element.setCustomData( '_cke_notReadOnly', 1 );
|
1056
|
+
}
|
1057
|
+
}
|
1058
|
+
});
|
1059
|
+
|
1060
|
+
}
|
1061
|
+
});
|
1062
|
+
|
1063
|
+
// Fixing Firefox 'Back-Forward Cache' break design mode. (#4514)
|
1064
|
+
if ( CKEDITOR.env.gecko )
|
1065
|
+
{
|
1066
|
+
(function()
|
1067
|
+
{
|
1068
|
+
var body = document.body;
|
1069
|
+
|
1070
|
+
if ( !body )
|
1071
|
+
window.addEventListener( 'load', arguments.callee, false );
|
1072
|
+
else
|
1073
|
+
{
|
1074
|
+
var currentHandler = body.getAttribute( 'onpageshow' );
|
1075
|
+
body.setAttribute( 'onpageshow', ( currentHandler ? currentHandler + ';' : '') +
|
1076
|
+
'event.persisted && (function(){' +
|
1077
|
+
'var allInstances = CKEDITOR.instances, editor, doc;' +
|
1078
|
+
'for ( var i in allInstances )' +
|
1079
|
+
'{' +
|
1080
|
+
' editor = allInstances[ i ];' +
|
1081
|
+
' doc = editor.document;' +
|
1082
|
+
' if ( doc )' +
|
1083
|
+
' {' +
|
1084
|
+
' doc.$.designMode = "off";' +
|
1085
|
+
' doc.$.designMode = "on";' +
|
1086
|
+
' }' +
|
1087
|
+
'}' +
|
1088
|
+
'})();' );
|
1089
|
+
}
|
1090
|
+
} )();
|
1091
|
+
|
1092
|
+
}
|
1093
|
+
})();
|
1094
|
+
|
1095
|
+
/**
|
1096
|
+
* Disables the ability of resize objects (image and tables) in the editing
|
1097
|
+
* area.
|
1098
|
+
* @type Boolean
|
1099
|
+
* @default false
|
1100
|
+
* @example
|
1101
|
+
* config.disableObjectResizing = true;
|
1102
|
+
*/
|
1103
|
+
CKEDITOR.config.disableObjectResizing = false;
|
1104
|
+
|
1105
|
+
/**
|
1106
|
+
* Disables the "table tools" offered natively by the browser (currently
|
1107
|
+
* Firefox only) to make quick table editing operations, like adding or
|
1108
|
+
* deleting rows and columns.
|
1109
|
+
* @type Boolean
|
1110
|
+
* @default true
|
1111
|
+
* @example
|
1112
|
+
* config.disableNativeTableHandles = false;
|
1113
|
+
*/
|
1114
|
+
CKEDITOR.config.disableNativeTableHandles = true;
|
1115
|
+
|
1116
|
+
/**
|
1117
|
+
* Disables the built-in spell checker while typing natively available in the
|
1118
|
+
* browser (currently Firefox and Safari only).<br /><br />
|
1119
|
+
*
|
1120
|
+
* Even if word suggestions will not appear in the CKEditor context menu, this
|
1121
|
+
* feature is useful to help quickly identifying misspelled words.<br /><br />
|
1122
|
+
*
|
1123
|
+
* This setting is currently compatible with Firefox only due to limitations in
|
1124
|
+
* other browsers.
|
1125
|
+
* @type Boolean
|
1126
|
+
* @default true
|
1127
|
+
* @example
|
1128
|
+
* config.disableNativeSpellChecker = false;
|
1129
|
+
*/
|
1130
|
+
CKEDITOR.config.disableNativeSpellChecker = true;
|
1131
|
+
|
1132
|
+
/**
|
1133
|
+
* Whether the editor must output an empty value ("") if it's contents is made
|
1134
|
+
* by an empty paragraph only.
|
1135
|
+
* @type Boolean
|
1136
|
+
* @default true
|
1137
|
+
* @example
|
1138
|
+
* config.ignoreEmptyParagraph = false;
|
1139
|
+
*/
|
1140
|
+
CKEDITOR.config.ignoreEmptyParagraph = true;
|
1141
|
+
|
1142
|
+
/**
|
1143
|
+
* Fired when data is loaded and ready for retrieval in an editor instance.
|
1144
|
+
* @name CKEDITOR.editor#dataReady
|
1145
|
+
* @event
|
1146
|
+
*/
|