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,211 @@
|
|
1
|
+
/*
|
2
|
+
* CKPackager - Sample Package file
|
3
|
+
*/
|
4
|
+
|
5
|
+
header :
|
6
|
+
'/*' + '\n' +
|
7
|
+
'Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.' + '\n' +
|
8
|
+
'For licensing, see LICENSE.html or http://ckeditor.com/license' + '\n' +
|
9
|
+
'*/' + '\n' +
|
10
|
+
'\n',
|
11
|
+
|
12
|
+
noCheck : false,
|
13
|
+
|
14
|
+
constants :
|
15
|
+
{
|
16
|
+
'CKEDITOR.ELEMENT_MODE_NONE' : 0,
|
17
|
+
'CKEDITOR.ELEMENT_MODE_REPLACE' : 1,
|
18
|
+
'CKEDITOR.ELEMENT_MODE_APPENDTO' : 2,
|
19
|
+
'CKEDITOR.CTRL' : 1000,
|
20
|
+
'CKEDITOR.SHIFT' : 2000,
|
21
|
+
'CKEDITOR.ALT' : 4000,
|
22
|
+
'CKEDITOR.NODE_ELEMENT' : 1,
|
23
|
+
'CKEDITOR.NODE_DOCUMENT' : 9,
|
24
|
+
'CKEDITOR.NODE_TEXT' : 3,
|
25
|
+
'CKEDITOR.NODE_COMMENT' : 8,
|
26
|
+
'CKEDITOR.NODE_DOCUMENT_FRAGMENT' : 11,
|
27
|
+
'CKEDITOR.POSITION_IDENTICAL' : 0,
|
28
|
+
'CKEDITOR.POSITION_DISCONNECTED' : 1,
|
29
|
+
'CKEDITOR.POSITION_FOLLOWING' : 2,
|
30
|
+
'CKEDITOR.POSITION_PRECEDING' : 4,
|
31
|
+
'CKEDITOR.POSITION_IS_CONTAINED' : 8,
|
32
|
+
'CKEDITOR.POSITION_CONTAINS' : 16,
|
33
|
+
'CKEDITOR.ENTER_P' : 1,
|
34
|
+
'CKEDITOR.ENTER_BR' : 2,
|
35
|
+
'CKEDITOR.ENTER_DIV' : 3,
|
36
|
+
'CKEDITOR.TRISTATE_ON' : 1,
|
37
|
+
'CKEDITOR.TRISTATE_OFF' : 2,
|
38
|
+
'CKEDITOR.TRISTATE_DISABLED' : 0,
|
39
|
+
'CKEDITOR.POSITION_AFTER_START' : 1,
|
40
|
+
'CKEDITOR.POSITION_BEFORE_END' : 2,
|
41
|
+
'CKEDITOR.POSITION_BEFORE_START' : 3,
|
42
|
+
'CKEDITOR.POSITION_AFTER_END' : 4,
|
43
|
+
'CKEDITOR.ENLARGE_ELEMENT' : 1,
|
44
|
+
'CKEDITOR.ENLARGE_BLOCK_CONTENTS' : 2,
|
45
|
+
'CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS' : 3,
|
46
|
+
'CKEDITOR.START' : 1,
|
47
|
+
'CKEDITOR.END' : 2,
|
48
|
+
'CKEDITOR.STARTEND' : 3,
|
49
|
+
'CKEDITOR.SHRINK_ELEMENT' : 1,
|
50
|
+
'CKEDITOR.SHRINK_TEXT' : 2,
|
51
|
+
'CKEDITOR.UI_BUTTON' : 1,
|
52
|
+
'CKEDITOR.DIALOG_RESIZE_NONE' : 0,
|
53
|
+
'CKEDITOR.DIALOG_RESIZE_WIDTH' : 1,
|
54
|
+
'CKEDITOR.DIALOG_RESIZE_HEIGHT' : 2,
|
55
|
+
'CKEDITOR.DIALOG_RESIZE_BOTH' : 3,
|
56
|
+
'CKEDITOR.VALIDATE_OR' : 1,
|
57
|
+
'CKEDITOR.VALIDATE_AND' : 2,
|
58
|
+
'CKEDITOR.STYLE_BLOCK' : 1,
|
59
|
+
'CKEDITOR.STYLE_INLINE' : 2,
|
60
|
+
'CKEDITOR.STYLE_OBJECT' : 3,
|
61
|
+
'CKEDITOR.UI_PANELBUTTON' : 4,
|
62
|
+
'CKEDITOR.SELECTION_NONE' : 1,
|
63
|
+
'CKEDITOR.SELECTION_TEXT' : 2,
|
64
|
+
'CKEDITOR.SELECTION_ELEMENT' : 3,
|
65
|
+
'CKEDITOR.UI_RICHCOMBO' : 3,
|
66
|
+
'CKEDITOR.UI_MENUBUTTON' : 5,
|
67
|
+
'CKEDITOR.UI_PANEL' : 2
|
68
|
+
},
|
69
|
+
|
70
|
+
packages :
|
71
|
+
[
|
72
|
+
{
|
73
|
+
output : 'ckeditor_basic.js',
|
74
|
+
wrap : true,
|
75
|
+
files :
|
76
|
+
[
|
77
|
+
'_source/core/ckeditor_base.js',
|
78
|
+
'_source/core/event.js',
|
79
|
+
'_source/core/editor_basic.js',
|
80
|
+
'_source/core/env.js',
|
81
|
+
'_source/core/ckeditor_basic.js'
|
82
|
+
]
|
83
|
+
},
|
84
|
+
|
85
|
+
{
|
86
|
+
output : 'ckeditor.js',
|
87
|
+
wrap : true,
|
88
|
+
files :
|
89
|
+
[
|
90
|
+
'_source/core/ckeditor_base.js',
|
91
|
+
'_source/core/event.js',
|
92
|
+
'_source/core/editor_basic.js',
|
93
|
+
'_source/core/env.js',
|
94
|
+
'_source/core/ckeditor_basic.js',
|
95
|
+
'_source/core/dom.js',
|
96
|
+
'_source/core/tools.js',
|
97
|
+
'_source/core/dtd.js',
|
98
|
+
'_source/core/dom/event.js',
|
99
|
+
'_source/core/dom/domobject.js',
|
100
|
+
'_source/core/dom/window.js',
|
101
|
+
'_source/core/dom/document.js',
|
102
|
+
'_source/core/dom/node.js',
|
103
|
+
'_source/core/dom/nodelist.js',
|
104
|
+
'_source/core/dom/element.js',
|
105
|
+
'_source/core/command.js',
|
106
|
+
'_source/core/config.js',
|
107
|
+
'_source/core/focusmanager.js',
|
108
|
+
'_source/core/lang.js',
|
109
|
+
'_source/core/scriptloader.js',
|
110
|
+
'_source/core/resourcemanager.js',
|
111
|
+
'_source/core/plugins.js',
|
112
|
+
'_source/core/imagecacher.js',
|
113
|
+
'_source/core/skins.js',
|
114
|
+
'_source/core/themes.js',
|
115
|
+
'_source/core/ui.js',
|
116
|
+
'_source/core/editor.js',
|
117
|
+
'_source/core/htmlparser.js',
|
118
|
+
'_source/core/htmlparser/comment.js',
|
119
|
+
'_source/core/htmlparser/text.js',
|
120
|
+
'_source/core/htmlparser/cdata.js',
|
121
|
+
'_source/core/htmlparser/fragment.js',
|
122
|
+
'_source/core/htmlparser/element.js',
|
123
|
+
'_source/core/htmlparser/filter.js',
|
124
|
+
'_source/core/htmlparser/basicwriter.js',
|
125
|
+
'_source/core/ckeditor.js',
|
126
|
+
'_source/core/dom/comment.js',
|
127
|
+
'_source/core/dom/elementpath.js',
|
128
|
+
'_source/core/dom/text.js',
|
129
|
+
'_source/core/dom/documentfragment.js',
|
130
|
+
'_source/core/dom/walker.js',
|
131
|
+
'_source/core/dom/range.js',
|
132
|
+
'_source/core/dom/rangelist.js',
|
133
|
+
'_source/core/_bootstrap.js',
|
134
|
+
'_source/skins/kama/skin.js',
|
135
|
+
// '_source/lang/en.js',
|
136
|
+
'_source/plugins/about/plugin.js',
|
137
|
+
'_source/plugins/a11yhelp/plugin.js',
|
138
|
+
'_source/plugins/basicstyles/plugin.js',
|
139
|
+
'_source/plugins/bidi/plugin.js',
|
140
|
+
'_source/plugins/blockquote/plugin.js',
|
141
|
+
'_source/plugins/button/plugin.js',
|
142
|
+
'_source/plugins/clipboard/plugin.js',
|
143
|
+
'_source/plugins/colorbutton/plugin.js',
|
144
|
+
'_source/plugins/colordialog/plugin.js',
|
145
|
+
'_source/plugins/contextmenu/plugin.js',
|
146
|
+
'_source/plugins/dialogadvtab/plugin.js',
|
147
|
+
'_source/plugins/div/plugin.js',
|
148
|
+
'_source/plugins/elementspath/plugin.js',
|
149
|
+
'_source/plugins/enterkey/plugin.js',
|
150
|
+
'_source/plugins/entities/plugin.js',
|
151
|
+
'_source/plugins/filebrowser/plugin.js',
|
152
|
+
'_source/plugins/find/plugin.js',
|
153
|
+
'_source/plugins/flash/plugin.js',
|
154
|
+
'_source/plugins/font/plugin.js',
|
155
|
+
'_source/plugins/format/plugin.js',
|
156
|
+
'_source/plugins/forms/plugin.js',
|
157
|
+
'_source/plugins/horizontalrule/plugin.js',
|
158
|
+
'_source/plugins/htmldataprocessor/plugin.js',
|
159
|
+
'_source/plugins/image/plugin.js',
|
160
|
+
'_source/plugins/indent/plugin.js',
|
161
|
+
'_source/plugins/justify/plugin.js',
|
162
|
+
'_source/plugins/keystrokes/plugin.js',
|
163
|
+
'_source/plugins/link/plugin.js',
|
164
|
+
'_source/plugins/list/plugin.js',
|
165
|
+
'_source/plugins/liststyle/plugin.js',
|
166
|
+
'_source/plugins/maximize/plugin.js',
|
167
|
+
'_source/plugins/newpage/plugin.js',
|
168
|
+
'_source/plugins/pagebreak/plugin.js',
|
169
|
+
'_source/plugins/pastefromword/plugin.js',
|
170
|
+
'_source/plugins/pastetext/plugin.js',
|
171
|
+
'_source/plugins/popup/plugin.js',
|
172
|
+
'_source/plugins/preview/plugin.js',
|
173
|
+
'_source/plugins/print/plugin.js',
|
174
|
+
'_source/plugins/removeformat/plugin.js',
|
175
|
+
'_source/plugins/resize/plugin.js',
|
176
|
+
'_source/plugins/save/plugin.js',
|
177
|
+
'_source/plugins/scayt/plugin.js',
|
178
|
+
'_source/plugins/smiley/plugin.js',
|
179
|
+
'_source/plugins/showblocks/plugin.js',
|
180
|
+
'_source/plugins/showborders/plugin.js',
|
181
|
+
'_source/plugins/sourcearea/plugin.js',
|
182
|
+
'_source/plugins/stylescombo/plugin.js',
|
183
|
+
'_source/plugins/table/plugin.js',
|
184
|
+
'_source/plugins/tabletools/plugin.js',
|
185
|
+
'_source/plugins/specialchar/plugin.js',
|
186
|
+
'_source/plugins/tab/plugin.js',
|
187
|
+
'_source/plugins/templates/plugin.js',
|
188
|
+
'_source/plugins/toolbar/plugin.js',
|
189
|
+
'_source/plugins/undo/plugin.js',
|
190
|
+
'_source/plugins/wysiwygarea/plugin.js',
|
191
|
+
'_source/plugins/wsc/plugin.js',
|
192
|
+
'_source/plugins/dialog/plugin.js',
|
193
|
+
'_source/plugins/styles/plugin.js',
|
194
|
+
'_source/plugins/domiterator/plugin.js',
|
195
|
+
'_source/plugins/panelbutton/plugin.js',
|
196
|
+
'_source/plugins/floatpanel/plugin.js',
|
197
|
+
'_source/plugins/menu/plugin.js',
|
198
|
+
'_source/plugins/editingblock/plugin.js',
|
199
|
+
'_source/plugins/selection/plugin.js',
|
200
|
+
'_source/plugins/fakeobjects/plugin.js',
|
201
|
+
'_source/plugins/richcombo/plugin.js',
|
202
|
+
'_source/plugins/htmlwriter/plugin.js',
|
203
|
+
'_source/plugins/menubutton/plugin.js',
|
204
|
+
'_source/plugins/dialogui/plugin.js',
|
205
|
+
'_source/plugins/panel/plugin.js',
|
206
|
+
'_source/plugins/listblock/plugin.js',
|
207
|
+
'_source/themes/default/theme.js'
|
208
|
+
]
|
209
|
+
}
|
210
|
+
|
211
|
+
]
|
@@ -0,0 +1,8 @@
|
|
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
|
+
(function(){if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'AA4E4NT',version:'3.4.2',revision:'6041',_:{},status:'unloaded',basePath:(function(){var d=window.CKEDITOR_BASEPATH||'';if(!d){var e=document.getElementsByTagName('script');for(var f=0;f<e.length;f++){var g=e[f].src.match(/(^|.*[\\\/])ckeditor(?:_basic)?(?:_source)?.js(?:\?.*)?$/i);if(g){d=g[1];break;}}}if(d.indexOf('://')==-1)if(d.indexOf('/')===0)d=location.href.match(/^.*?:\/\/[^\/]*/)[0]+d;else d=location.href.match(/^[^\?]*\/(?:)/)[0]+d;if(!d)throw 'The CKEditor installation path could not be automatically detected. Please set the global variable "CKEDITOR_BASEPATH" before creating editor instances.';return d;})(),getUrl:function(d){if(d.indexOf('://')==-1&&d.indexOf('/')!==0)d=this.basePath+d;if(this.timestamp&&d.charAt(d.length-1)!='/'&&!/[&?]t=/.test(d))d+=(d.indexOf('?')>=0?'&':'?')+'t='+this.timestamp;return d;}},b=window.CKEDITOR_GETURL;if(b){var c=a.getUrl;a.getUrl=function(d){return b.call(a,d)||c.call(a,d);};}return a;})();var a=CKEDITOR;if(!a.event){a.event=function(){};a.event.implementOn=function(b){var c=a.event.prototype;for(var d in c){if(b[d]==undefined)b[d]=c[d];}};a.event.prototype=(function(){var b=function(d){var e=d.getPrivate&&d.getPrivate()||d._||(d._={});return e.events||(e.events={});},c=function(d){this.name=d;this.listeners=[];};c.prototype={getListenerIndex:function(d){for(var e=0,f=this.listeners;e<f.length;e++){if(f[e].fn==d)return e;}return-1;}};return{on:function(d,e,f,g,h){var i=b(this),j=i[d]||(i[d]=new c(d));if(j.getListenerIndex(e)<0){var k=j.listeners;if(!f)f=this;if(isNaN(h))h=10;var l=this,m=function(o,p,q,r){var s={name:d,sender:this,editor:o,data:p,listenerData:g,stop:q,cancel:r,removeListener:function(){l.removeListener(d,e);}};e.call(f,s);return s.data;};m.fn=e;m.priority=h;for(var n=k.length-1;n>=0;n--){if(k[n].priority<=h){k.splice(n+1,0,m);return;}}k.unshift(m);}},fire:(function(){var d=false,e=function(){d=true;},f=false,g=function(){f=true;};return function(h,i,j){var k=b(this)[h],l=d,m=f;d=f=false;if(k){var n=k.listeners;if(n.length){n=n.slice(0);for(var o=0;o<n.length;o++){var p=n[o].call(this,j,i,e,g);if(typeof p!='undefined')i=p;if(d||f)break;}}}var q=f||(typeof i=='undefined'?false:i);d=l;f=m;return q;};})(),fireOnce:function(d,e,f){var g=this.fire(d,e,f);delete b(this)[d];return g;},removeListener:function(d,e){var f=b(this)[d];if(f){var g=f.getListenerIndex(e);if(g>=0)f.listeners.splice(g,1);}},hasListeners:function(d){var e=b(this)[d];
|
7
|
+
return e&&e.listeners.length>0;}};})();}if(!a.editor){a.ELEMENT_MODE_NONE=0;a.ELEMENT_MODE_REPLACE=1;a.ELEMENT_MODE_APPENDTO=2;a.editor=function(b,c,d,e){var f=this;f._={instanceConfig:b,element:c,data:e};f.elementMode=d||0;a.event.call(f);f._init();};a.editor.replace=function(b,c){var d=b;if(typeof d!='object'){d=document.getElementById(b);if(!d){var e=0,f=document.getElementsByName(b);while((d=f[e++])&&d.tagName.toLowerCase()!='textarea'){}}if(!d)throw '[CKEDITOR.editor.replace] The element with id or name "'+b+'" was not found.';}d.style.visibility='hidden';return new a.editor(c,d,1);};a.editor.appendTo=function(b,c,d){var e=b;if(typeof e!='object'){e=document.getElementById(b);if(!e)throw '[CKEDITOR.editor.appendTo] The element with id "'+b+'" was not found.';}return new a.editor(c,e,2,d);};a.editor.prototype={_init:function(){var b=a.editor._pending||(a.editor._pending=[]);b.push(this);},fire:function(b,c){return a.event.prototype.fire.call(this,b,c,this);},fireOnce:function(b,c){return a.event.prototype.fireOnce.call(this,b,c,this);}};a.event.implementOn(a.editor.prototype,true);}if(!a.env)a.env=(function(){var b=navigator.userAgent.toLowerCase(),c=window.opera,d={ie:/*@cc_on!@*/false,opera:!!c&&c.version,webkit:b.indexOf(' applewebkit/')>-1,air:b.indexOf(' adobeair/')>-1,mac:b.indexOf('macintosh')>-1,quirks:document.compatMode=='BackCompat',mobile:b.indexOf('mobile')>-1,isCustomDomain:function(){if(!this.ie)return false;var g=document.domain,h=window.location.hostname;return g!=h&&g!='['+h+']';}};d.gecko=navigator.product=='Gecko'&&!d.webkit&&!d.opera;var e=0;if(d.ie){e=parseFloat(b.match(/msie (\d+)/)[1]);d.ie8=!!document.documentMode;d.ie8Compat=document.documentMode==8;d.ie7Compat=e==7&&!document.documentMode||document.documentMode==7;d.ie6Compat=e<7||d.quirks;}if(d.gecko){var f=b.match(/rv:([\d\.]+)/);if(f){f=f[1].split('.');e=f[0]*10000+(f[1]||0)*100+ +(f[2]||0);}}if(d.opera)e=parseFloat(c.version());if(d.air)e=parseFloat(b.match(/ adobeair\/(\d+)/)[1]);if(d.webkit)e=parseFloat(b.match(/ applewebkit\/(\d+)/)[1]);d.version=e;d.isCompatible=!d.mobile&&(d.ie&&e>=6||d.gecko&&e>=10801||d.opera&&e>=9.5||d.air&&e>=1||d.webkit&&e>=522||false);d.cssClass='cke_browser_'+(d.ie?'ie':d.gecko?'gecko':d.opera?'opera':d.air?'air':d.webkit?'webkit':'unknown');if(d.quirks)d.cssClass+=' cke_browser_quirks';if(d.ie){d.cssClass+=' cke_browser_ie'+(d.version<7?'6':d.version>=8?document.documentMode:'7');if(d.quirks)d.cssClass+=' cke_browser_iequirks';
|
8
|
+
}if(d.gecko&&e<10900)d.cssClass+=' cke_browser_gecko18';return d;})();var b=a.env;var c=b.ie;if(a.status=='unloaded')(function(){a.event.implementOn(a);a.loadFullCore=function(){if(a.status!='basic_ready'){a.loadFullCore._load=1;return;}delete a.loadFullCore;var e=document.createElement('script');e.type='text/javascript';e.src=a.basePath+'ckeditor.js';document.getElementsByTagName('head')[0].appendChild(e);};a.loadFullCoreTimeout=0;a.replaceClass='ckeditor';a.replaceByClassEnabled=1;var d=function(e,f,g,h){if(b.isCompatible){if(a.loadFullCore)a.loadFullCore();var i=g(e,f,h);a.add(i);return i;}return null;};a.replace=function(e,f){return d(e,f,a.editor.replace);};a.appendTo=function(e,f,g){return d(e,f,a.editor.appendTo,g);};a.add=function(e){var f=this._.pending||(this._.pending=[]);f.push(e);};a.replaceAll=function(){var e=document.getElementsByTagName('textarea');for(var f=0;f<e.length;f++){var g=null,h=e[f],i=h.name;if(!h.name&&!h.id)continue;if(typeof arguments[0]=='string'){var j=new RegExp('(?:^|\\s)'+arguments[0]+'(?:$|\\s)');if(!j.test(h.className))continue;}else if(typeof arguments[0]=='function'){g={};if(arguments[0](h,g)===false)continue;}this.replace(h,g);}};(function(){var e=function(){var f=a.loadFullCore,g=a.loadFullCoreTimeout;if(a.replaceByClassEnabled)a.replaceAll(a.replaceClass);a.status='basic_ready';if(f&&f._load)f();else if(g)setTimeout(function(){if(a.loadFullCore)a.loadFullCore();},g*1000);};if(window.addEventListener)window.addEventListener('load',e,false);else if(window.attachEvent)window.attachEvent('onload',e);})();a.status='basic_loaded';})();})();
|
@@ -0,0 +1,20 @@
|
|
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
|
+
// Compressed version of core/ckeditor_base.js. See original for instructions.
|
7
|
+
/*jsl:ignore*/
|
8
|
+
if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'',version:'3.4.2',revision:'6041',_:{},status:'unloaded',basePath:(function(){var d=window.CKEDITOR_BASEPATH||'';if(!d){var e=document.getElementsByTagName('script');for(var f=0;f<e.length;f++){var g=e[f].src.match(/(^|.*[\\\/])ckeditor(?:_basic)?(?:_source)?.js(?:\?.*)?$/i);if(g){d=g[1];break;}}}if(d.indexOf('://')==-1)if(d.indexOf('/')===0)d=location.href.match(/^.*?:\/\/[^\/]*/)[0]+d;else d=location.href.match(/^[^\?]*\/(?:)/)[0]+d;return d;})(),getUrl:function(d){if(d.indexOf('://')==-1&&d.indexOf('/')!==0)d=this.basePath+d;if(this.timestamp&&d.charAt(d.length-1)!='/')d+=(d.indexOf('?')>=0?'&':'?')+('t=')+this.timestamp;return d;}},b=window.CKEDITOR_GETURL;if(b){var c=a.getUrl;a.getUrl=function(d){return b.call(a,d)||c.call(a,d);};}return a;})();
|
9
|
+
/*jsl:end*/
|
10
|
+
|
11
|
+
// Uncomment the following line to have a new timestamp generated for each
|
12
|
+
// request, having clear cache load of the editor code.
|
13
|
+
// CKEDITOR.timestamp = ( new Date() ).valueOf();
|
14
|
+
|
15
|
+
// Set the script name to be loaded by the loader.
|
16
|
+
CKEDITOR._autoLoad = 'core/ckeditor_basic';
|
17
|
+
|
18
|
+
// Include the loader script.
|
19
|
+
document.write(
|
20
|
+
'<script type="text/javascript" src="' + CKEDITOR.getUrl( '_source/core/loader.js' ) + '"></script>' );
|
@@ -0,0 +1,25 @@
|
|
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
|
+
// Compressed version of core/ckeditor_base.js. See original for instructions.
|
7
|
+
/*jsl:ignore*/
|
8
|
+
if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'',version:'3.4.2',revision:'6041',_:{},status:'unloaded',basePath:(function(){var d=window.CKEDITOR_BASEPATH||'';if(!d){var e=document.getElementsByTagName('script');for(var f=0;f<e.length;f++){var g=e[f].src.match(/(^|.*[\\\/])ckeditor(?:_basic)?(?:_source)?.js(?:\?.*)?$/i);if(g){d=g[1];break;}}}if(d.indexOf('://')==-1)if(d.indexOf('/')===0)d=location.href.match(/^.*?:\/\/[^\/]*/)[0]+d;else d=location.href.match(/^[^\?]*\/(?:)/)[0]+d;return d;})(),getUrl:function(d){if(d.indexOf('://')==-1&&d.indexOf('/')!==0)d=this.basePath+d;if(this.timestamp&&d.charAt(d.length-1)!='/')d+=(d.indexOf('?')>=0?'&':'?')+('t=')+this.timestamp;return d;}},b=window.CKEDITOR_GETURL;if(b){var c=a.getUrl;a.getUrl=function(d){return b.call(a,d)||c.call(a,d);};}return a;})();
|
9
|
+
/*jsl:end*/
|
10
|
+
|
11
|
+
// Uncomment the following line to have a new timestamp generated for each
|
12
|
+
// request, having clear cache load of the editor code.
|
13
|
+
// CKEDITOR.timestamp = ( new Date() ).valueOf();
|
14
|
+
|
15
|
+
if ( CKEDITOR.loader )
|
16
|
+
CKEDITOR.loader.load( 'core/ckeditor' );
|
17
|
+
else
|
18
|
+
{
|
19
|
+
// Set the script name to be loaded by the loader.
|
20
|
+
CKEDITOR._autoLoad = 'core/ckeditor';
|
21
|
+
|
22
|
+
// Include the loader script.
|
23
|
+
document.write(
|
24
|
+
'<script type="text/javascript" src="' + CKEDITOR.getUrl( '_source/core/loader.js' ) + '"></script>' );
|
25
|
+
}
|
@@ -0,0 +1,43 @@
|
|
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.editorConfig = function( config )
|
7
|
+
{
|
8
|
+
config.PreserveSessionOnFileBrowser = true;
|
9
|
+
// Define changes to default configuration here. For example:
|
10
|
+
config.language = 'en';
|
11
|
+
// config.uiColor = '#AADC6E';
|
12
|
+
|
13
|
+
//config.ContextMenu = ['Generic','Anchor','Flash','Select','Textarea','Checkbox','Radio','TextField','HiddenField','ImageButton','Button','BulletedList','NumberedList','Table','Form'] ;
|
14
|
+
|
15
|
+
config.height = '400px';
|
16
|
+
config.width = '600px';
|
17
|
+
|
18
|
+
//config.resize_enabled = false;
|
19
|
+
//config.resize_maxHeight = 2000;
|
20
|
+
//config.resize_maxWidth = 750;
|
21
|
+
|
22
|
+
//config.startupFocus = true;
|
23
|
+
|
24
|
+
// works only with en, ru, uk languages
|
25
|
+
config.extraPlugins = "embed,attachment";
|
26
|
+
|
27
|
+
config.toolbar = 'Easy';
|
28
|
+
|
29
|
+
config.toolbar_Easy =
|
30
|
+
[
|
31
|
+
['Source','-','Preview','Templates'],
|
32
|
+
['Cut','Copy','Paste','PasteText','PasteFromWord',],
|
33
|
+
['Maximize','-','About'],
|
34
|
+
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
|
35
|
+
['Styles','Format'],
|
36
|
+
['Bold','Italic','Underline','Strike','-','Subscript','Superscript', 'TextColor'],
|
37
|
+
['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],
|
38
|
+
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
|
39
|
+
['Link','Unlink','Anchor'],
|
40
|
+
['Image','Embed','Flash','Attachment','Table','HorizontalRule','Smiley','SpecialChar','PageBreak']
|
41
|
+
];
|
42
|
+
};
|
43
|
+
|
@@ -0,0 +1,39 @@
|
|
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
|
+
body
|
7
|
+
{
|
8
|
+
/* Font */
|
9
|
+
font-family: Arial, Verdana, sans-serif;
|
10
|
+
font-size: 12px;
|
11
|
+
|
12
|
+
/* Text color */
|
13
|
+
color: #222;
|
14
|
+
|
15
|
+
/* Remove the background color to make it transparent */
|
16
|
+
background-color: #fff;
|
17
|
+
}
|
18
|
+
|
19
|
+
html
|
20
|
+
{
|
21
|
+
/* #3658: [IE6] Editor document has horizontal scrollbar on long lines
|
22
|
+
To prevent this misbehavior, we show the scrollbar always */
|
23
|
+
_overflow-y: scroll;
|
24
|
+
/* #6341: The text cursor must be set on the editor area. */
|
25
|
+
cursor: text;
|
26
|
+
/* #6632: Avoid having "text" shape of cursor in IE7 scrollbars.*/
|
27
|
+
*cursor:auto;
|
28
|
+
}
|
29
|
+
|
30
|
+
img:-moz-broken
|
31
|
+
{
|
32
|
+
-moz-force-broken-image-icon : 1;
|
33
|
+
width : 24px;
|
34
|
+
height : 24px;
|
35
|
+
}
|
36
|
+
img, input, textarea
|
37
|
+
{
|
38
|
+
cursor: default;
|
39
|
+
}
|
@@ -0,0 +1,299 @@
|
|
1
|
+
/*
|
2
|
+
* CKFinder
|
3
|
+
* ========
|
4
|
+
* http://www.ckfinder.com
|
5
|
+
* Copyright (C) 2007-2008 Frederico Caldeira Knabben (FredCK.com)
|
6
|
+
*
|
7
|
+
* The software, this file and its contents are subject to the CKFinder
|
8
|
+
* License. Please read the license.txt file before using, installing, copying,
|
9
|
+
* modifying or distribute this file or part of its contents. The contents of
|
10
|
+
* this file is part of the Source Code of CKFinder.
|
11
|
+
*/
|
12
|
+
|
13
|
+
div.FCKThumb
|
14
|
+
{
|
15
|
+
clear: none;
|
16
|
+
padding: 5px;
|
17
|
+
margin: 5px;
|
18
|
+
float: left;
|
19
|
+
border: #d3d3d3 1px solid;
|
20
|
+
background-color: #ffffff;
|
21
|
+
cursor: default;
|
22
|
+
}
|
23
|
+
|
24
|
+
div.FCKThumb table img {
|
25
|
+
display: block;
|
26
|
+
}
|
27
|
+
|
28
|
+
tr.FCKThumb
|
29
|
+
{
|
30
|
+
border: #d3d3d3 1px solid;
|
31
|
+
cursor: pointer;
|
32
|
+
cursor: default;
|
33
|
+
}
|
34
|
+
|
35
|
+
tr.FCKThumb td
|
36
|
+
{
|
37
|
+
padding: 2px;
|
38
|
+
}
|
39
|
+
|
40
|
+
.FCKSelectedBox
|
41
|
+
{
|
42
|
+
border: #0000ff 1px solid !important;
|
43
|
+
background-color: #99ccff !important;
|
44
|
+
}
|
45
|
+
|
46
|
+
.FCKFileName, .FCKFileDate, .FCKFileSize
|
47
|
+
{
|
48
|
+
margin-top: 3px;
|
49
|
+
overflow: hidden;
|
50
|
+
text-overflow: ellipsis;
|
51
|
+
white-space: nowrap;
|
52
|
+
}
|
53
|
+
|
54
|
+
div.FCKFileName, div.FCKFileDate, div.FCKFileSize
|
55
|
+
{
|
56
|
+
width: 100px;
|
57
|
+
text-align: center;
|
58
|
+
}
|
59
|
+
|
60
|
+
td.FCKFileName, td.FCKFileDate
|
61
|
+
{
|
62
|
+
text-align: left;
|
63
|
+
}
|
64
|
+
|
65
|
+
td.FCKFileSize
|
66
|
+
{
|
67
|
+
text-align: right;
|
68
|
+
}
|
69
|
+
|
70
|
+
.FCKHideFileName .FCKFileName
|
71
|
+
{
|
72
|
+
display: none;
|
73
|
+
}
|
74
|
+
|
75
|
+
.FCKHideFileDate .FCKFileDate
|
76
|
+
{
|
77
|
+
display: none;
|
78
|
+
}
|
79
|
+
|
80
|
+
.FCKHideFileSize .FCKFileSize
|
81
|
+
{
|
82
|
+
display: none;
|
83
|
+
}
|
84
|
+
|
85
|
+
.FCKThumbTools
|
86
|
+
{
|
87
|
+
padding: 2px;
|
88
|
+
z-index: 1;
|
89
|
+
position: absolute;
|
90
|
+
}
|
91
|
+
|
92
|
+
.FCKBottomSpace
|
93
|
+
{
|
94
|
+
clear: both;
|
95
|
+
float: none;
|
96
|
+
height: 25px;
|
97
|
+
}
|
98
|
+
|
99
|
+
.FCKSelected, .FCKSelected A, .FCKSelected A:hover
|
100
|
+
{
|
101
|
+
background-color: #0A246A;
|
102
|
+
color: #ffffff !important;
|
103
|
+
}
|
104
|
+
|
105
|
+
.FCKFolderLoading
|
106
|
+
{
|
107
|
+
padding: 2px;
|
108
|
+
padding-left: 5px;
|
109
|
+
color: #a9a9a9;
|
110
|
+
}
|
111
|
+
|
112
|
+
.FCKChildFolders
|
113
|
+
{
|
114
|
+
/* padding-left: 18px;*/
|
115
|
+
}
|
116
|
+
|
117
|
+
.FCKFolder
|
118
|
+
{
|
119
|
+
white-space: nowrap;
|
120
|
+
padding-top: 1px;
|
121
|
+
padding-bottom: 1px;
|
122
|
+
padding-right: 5px;
|
123
|
+
}
|
124
|
+
|
125
|
+
.FCKFolderClosed .FCKChildFolders
|
126
|
+
{
|
127
|
+
display: none;
|
128
|
+
}
|
129
|
+
|
130
|
+
.FCKFolderOpened .FCKChildFolders
|
131
|
+
{
|
132
|
+
display: block;
|
133
|
+
}
|
134
|
+
|
135
|
+
.FCKFolder .Label
|
136
|
+
{
|
137
|
+
padding-left: 2px;
|
138
|
+
height: 16px;
|
139
|
+
vertical-align: middle;
|
140
|
+
cursor: pointer;
|
141
|
+
cursor: hand;
|
142
|
+
}
|
143
|
+
|
144
|
+
.FCKFolderOver .Label
|
145
|
+
{
|
146
|
+
color: #0000ff;
|
147
|
+
text-decoration: underline;
|
148
|
+
}
|
149
|
+
|
150
|
+
.FCKFolder .Icon
|
151
|
+
{
|
152
|
+
background-position: center center;
|
153
|
+
background-image: url(../images/ckffolder.gif);
|
154
|
+
cursor: pointer;
|
155
|
+
cursor: hand;
|
156
|
+
}
|
157
|
+
|
158
|
+
.FCKFolder .PlusMinus
|
159
|
+
{
|
160
|
+
background-position: center center;
|
161
|
+
background-image: url(../images/ckfplus.gif);
|
162
|
+
}
|
163
|
+
|
164
|
+
.FCKFolderSelected
|
165
|
+
{
|
166
|
+
border-style: none;
|
167
|
+
cursor: inherit;
|
168
|
+
}
|
169
|
+
|
170
|
+
.FCKFolderSelected .Icon
|
171
|
+
{
|
172
|
+
background-image: url(../images/ckffolderopened.gif);
|
173
|
+
}
|
174
|
+
|
175
|
+
.FCKFolderOpened .PlusMinus
|
176
|
+
{
|
177
|
+
background-image: url(../images/ckfminus.gif);
|
178
|
+
}
|
179
|
+
|
180
|
+
.FCKFolderNoPlusMinus .PlusMinus
|
181
|
+
{
|
182
|
+
background-image: url(../images/spacer.gif);
|
183
|
+
}
|
184
|
+
|
185
|
+
.FCKLabel A
|
186
|
+
{
|
187
|
+
color: #000000;
|
188
|
+
text-decoration: none;
|
189
|
+
}
|
190
|
+
|
191
|
+
.FCKLabel A:hover
|
192
|
+
{
|
193
|
+
color: #0000ff;
|
194
|
+
text-decoration: underline;
|
195
|
+
}
|
196
|
+
|
197
|
+
.FCKPlus .FCKPlusMinus
|
198
|
+
{
|
199
|
+
background-image: url(../images/ckfplus.gif);
|
200
|
+
background-repeat: no-repeat;
|
201
|
+
}
|
202
|
+
|
203
|
+
.FCKMinus .FCKPlusMinus
|
204
|
+
{
|
205
|
+
background-image: url(../images/ckfminus.gif);
|
206
|
+
background-repeat: no-repeat;
|
207
|
+
}
|
208
|
+
|
209
|
+
.CKFStatusBar
|
210
|
+
{
|
211
|
+
padding: 2px;
|
212
|
+
padding-left: 5px;
|
213
|
+
padding-right: 5px;
|
214
|
+
}
|
215
|
+
|
216
|
+
.FoldersPane
|
217
|
+
{
|
218
|
+
padding: 0px;
|
219
|
+
padding-top: 5px;
|
220
|
+
padding-bottom: 5px;
|
221
|
+
margin: 0px;
|
222
|
+
}
|
223
|
+
|
224
|
+
.FoldersPane .PopupSelectionBox
|
225
|
+
{
|
226
|
+
border-style: none !important;
|
227
|
+
}
|
228
|
+
|
229
|
+
#xCover
|
230
|
+
{
|
231
|
+
position: absolute;
|
232
|
+
top: 0px;
|
233
|
+
left: 0px;
|
234
|
+
width: 100%;
|
235
|
+
height: 100%;
|
236
|
+
filter: alpha(opacity=50); /* IE */
|
237
|
+
opacity: 0.50; /* Safari, Opera and Mozilla */
|
238
|
+
}
|
239
|
+
|
240
|
+
#xDialog
|
241
|
+
{
|
242
|
+
position: absolute;
|
243
|
+
top: 80px;
|
244
|
+
left: 120px;
|
245
|
+
text-align:center;
|
246
|
+
padding:5px;
|
247
|
+
overflow: auto; /* FF bug : cursor disappears */
|
248
|
+
}
|
249
|
+
|
250
|
+
.DialogInner
|
251
|
+
{
|
252
|
+
padding-top:25px;
|
253
|
+
padding-bottom:30px;
|
254
|
+
padding-left:50px;
|
255
|
+
padding-right:50px;
|
256
|
+
}
|
257
|
+
|
258
|
+
#xDialogField
|
259
|
+
{
|
260
|
+
margin-top:5px;
|
261
|
+
}
|
262
|
+
|
263
|
+
#xDialogButtons
|
264
|
+
{
|
265
|
+
margin-top:15px;
|
266
|
+
}
|
267
|
+
|
268
|
+
|
269
|
+
.progressBar
|
270
|
+
{
|
271
|
+
margin-top:0.2em;
|
272
|
+
height: 0.8em;
|
273
|
+
background: blue;
|
274
|
+
-moz-border-radius: 5px;
|
275
|
+
-webkit-border-radius: 5px;
|
276
|
+
border-radius: 5px;
|
277
|
+
}
|
278
|
+
|
279
|
+
.speed
|
280
|
+
{
|
281
|
+
width: 5em;
|
282
|
+
text-align: right;
|
283
|
+
padding-right:0.4em;
|
284
|
+
display:inline-block;
|
285
|
+
white-space: pre;
|
286
|
+
}
|
287
|
+
.uploadinfo
|
288
|
+
{
|
289
|
+
width: 8em;
|
290
|
+
text-align: right;
|
291
|
+
padding-right:0.4em;
|
292
|
+
display:inline-block;
|
293
|
+
white-space: pre;
|
294
|
+
}
|
295
|
+
.progressBarContainer
|
296
|
+
{
|
297
|
+
width: 200px;
|
298
|
+
display:inline-block;
|
299
|
+
}
|