ckeditor 3.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +15 -0
- data/README.textile +225 -0
- data/Rakefile +44 -0
- data/TODO +3 -0
- data/app/controllers/ckeditor_controller.rb +87 -0
- data/app/helpers/ckeditor_helper.rb +37 -0
- data/app/views/ckeditor/_file.html.erb +15 -0
- data/app/views/ckeditor/_image.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 +30 -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/lib/ckeditor.rb +57 -0
- data/lib/ckeditor/engine.rb +10 -0
- data/lib/ckeditor/file_storage.rb +178 -0
- data/lib/ckeditor/form_builder.rb +22 -0
- data/lib/ckeditor/utils.rb +15 -0
- data/lib/ckeditor/version.rb +11 -0
- data/lib/ckeditor/view_helper.rb +119 -0
- data/lib/generators/ckeditor_generator.rb +23 -0
- data/lib/generators/templates/ckeditor.rb +51 -0
- data/lib/generators/templates/ckeditor.yml +28 -0
- data/lib/generators/templates/ckeditor/CHANGES.html +642 -0
- data/lib/generators/templates/ckeditor/INSTALL.html +92 -0
- data/lib/generators/templates/ckeditor/LICENSE.html +1334 -0
- data/lib/generators/templates/ckeditor/_samples/ajax.html +87 -0
- data/lib/generators/templates/ckeditor/_samples/api.html +152 -0
- data/lib/generators/templates/ckeditor/_samples/api_dialog.html +181 -0
- data/lib/generators/templates/ckeditor/_samples/api_dialog/my_dialog.js +28 -0
- data/lib/generators/templates/ckeditor/_samples/assets/output_xhtml.css +204 -0
- data/lib/generators/templates/ckeditor/_samples/divreplace.html +137 -0
- data/lib/generators/templates/ckeditor/_samples/enterkey.html +88 -0
- data/lib/generators/templates/ckeditor/_samples/fullpage.html +62 -0
- data/lib/generators/templates/ckeditor/_samples/index.html +54 -0
- data/lib/generators/templates/ckeditor/_samples/jqueryadapter.html +73 -0
- data/lib/generators/templates/ckeditor/_samples/output_xhtml.html +159 -0
- data/lib/generators/templates/ckeditor/_samples/php/advanced.php +93 -0
- data/lib/generators/templates/ckeditor/_samples/php/events.php +130 -0
- data/lib/generators/templates/ckeditor/_samples/php/replace.php +63 -0
- data/lib/generators/templates/ckeditor/_samples/php/replaceall.php +68 -0
- data/lib/generators/templates/ckeditor/_samples/php/standalone.php +64 -0
- data/lib/generators/templates/ckeditor/_samples/replacebyclass.html +49 -0
- data/lib/generators/templates/ckeditor/_samples/replacebycode.html +80 -0
- data/lib/generators/templates/ckeditor/_samples/sample.css +81 -0
- data/lib/generators/templates/ckeditor/_samples/sample.js +65 -0
- data/lib/generators/templates/ckeditor/_samples/sample_posteddata.php +59 -0
- data/lib/generators/templates/ckeditor/_samples/sharedspaces.html +131 -0
- data/lib/generators/templates/ckeditor/_samples/skins.html +83 -0
- data/lib/generators/templates/ckeditor/_samples/ui_color.html +87 -0
- data/lib/generators/templates/ckeditor/_samples/ui_languages.html +103 -0
- data/lib/generators/templates/ckeditor/_source/adapters/jquery.js +297 -0
- data/lib/generators/templates/ckeditor/_source/core/_bootstrap.js +91 -0
- data/lib/generators/templates/ckeditor/_source/core/ajax.js +143 -0
- data/lib/generators/templates/ckeditor/_source/core/ckeditor.js +103 -0
- data/lib/generators/templates/ckeditor/_source/core/ckeditor_base.js +193 -0
- data/lib/generators/templates/ckeditor/_source/core/ckeditor_basic.js +242 -0
- data/lib/generators/templates/ckeditor/_source/core/command.js +73 -0
- data/lib/generators/templates/ckeditor/_source/core/commanddefinition.js +102 -0
- data/lib/generators/templates/ckeditor/_source/core/config.js +319 -0
- data/lib/generators/templates/ckeditor/_source/core/dataprocessor.js +66 -0
- data/lib/generators/templates/ckeditor/_source/core/dom.js +21 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/comment.js +32 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/document.js +224 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/documentfragment.js +49 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/domobject.js +246 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/element.js +1441 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/elementpath.js +104 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/event.js +142 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/node.js +662 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/nodelist.js +23 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/range.js +1836 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/text.js +123 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/walker.js +451 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/window.js +96 -0
- data/lib/generators/templates/ckeditor/_source/core/dtd.js +233 -0
- data/lib/generators/templates/ckeditor/_source/core/editor.js +756 -0
- data/lib/generators/templates/ckeditor/_source/core/editor_basic.js +182 -0
- data/lib/generators/templates/ckeditor/_source/core/env.js +222 -0
- data/lib/generators/templates/ckeditor/_source/core/event.js +336 -0
- data/lib/generators/templates/ckeditor/_source/core/eventInfo.js +120 -0
- data/lib/generators/templates/ckeditor/_source/core/focusmanager.js +137 -0
- data/lib/generators/templates/ckeditor/_source/core/htmlparser.js +212 -0
- data/lib/generators/templates/ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
- data/lib/generators/templates/ckeditor/_source/core/htmlparser/cdata.js +43 -0
- data/lib/generators/templates/ckeditor/_source/core/htmlparser/comment.js +60 -0
- data/lib/generators/templates/ckeditor/_source/core/htmlparser/element.js +240 -0
- data/lib/generators/templates/ckeditor/_source/core/htmlparser/filter.js +262 -0
- data/lib/generators/templates/ckeditor/_source/core/htmlparser/fragment.js +496 -0
- data/lib/generators/templates/ckeditor/_source/core/htmlparser/text.js +55 -0
- data/lib/generators/templates/ckeditor/_source/core/imagecacher.js +59 -0
- data/lib/generators/templates/ckeditor/_source/core/lang.js +152 -0
- data/lib/generators/templates/ckeditor/_source/core/loader.js +242 -0
- data/lib/generators/templates/ckeditor/_source/core/plugindefinition.js +66 -0
- data/lib/generators/templates/ckeditor/_source/core/plugins.js +85 -0
- data/lib/generators/templates/ckeditor/_source/core/resourcemanager.js +238 -0
- data/lib/generators/templates/ckeditor/_source/core/scriptloader.js +198 -0
- data/lib/generators/templates/ckeditor/_source/core/skins.js +204 -0
- data/lib/generators/templates/ckeditor/_source/core/themes.js +19 -0
- data/lib/generators/templates/ckeditor/_source/core/tools.js +698 -0
- data/lib/generators/templates/ckeditor/_source/core/ui.js +116 -0
- data/lib/generators/templates/ckeditor/_source/core/xml.js +165 -0
- data/lib/generators/templates/ckeditor/_source/lang/_languages.js +83 -0
- data/lib/generators/templates/ckeditor/_source/lang/_translationstatus.txt +60 -0
- data/lib/generators/templates/ckeditor/_source/lang/af.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/ar.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/bg.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/bn.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/bs.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/ca.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/cs.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/cy.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/da.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/de.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/el.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/en-au.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/en-ca.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/en-gb.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/en.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/eo.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/es.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/et.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/eu.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/fa.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/fi.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/fo.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/fr-ca.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/fr.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/gl.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/gu.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/he.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/hi.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/hr.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/hu.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/is.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/it.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/ja.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/km.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/ko.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/lt.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/lv.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/mn.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/ms.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/nb.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/nl.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/no.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/pl.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/pt-br.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/pt.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/ro.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/ru.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/sk.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/sl.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/sr-latn.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/sr.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/sv.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/th.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/tr.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/uk.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/vi.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/zh-cn.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/zh.js +708 -0
- data/lib/generators/templates/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +211 -0
- data/lib/generators/templates/ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
- data/lib/generators/templates/ckeditor/_source/plugins/a11yhelp/plugin.js +46 -0
- data/lib/generators/templates/ckeditor/_source/plugins/about/dialogs/about.js +73 -0
- data/lib/generators/templates/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/about/plugin.js +23 -0
- data/lib/generators/templates/ckeditor/_source/plugins/attachment/dialogs/attachment.js +384 -0
- data/lib/generators/templates/ckeditor/_source/plugins/attachment/images/attachment.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/attachment/lang/en.js +10 -0
- data/lib/generators/templates/ckeditor/_source/plugins/attachment/lang/ru.js +10 -0
- data/lib/generators/templates/ckeditor/_source/plugins/attachment/lang/uk.js +10 -0
- data/lib/generators/templates/ckeditor/_source/plugins/attachment/plugin.js +44 -0
- data/lib/generators/templates/ckeditor/_source/plugins/basicstyles/plugin.js +101 -0
- data/lib/generators/templates/ckeditor/_source/plugins/blockquote/plugin.js +301 -0
- data/lib/generators/templates/ckeditor/_source/plugins/button/plugin.js +272 -0
- data/lib/generators/templates/ckeditor/_source/plugins/clipboard/dialogs/paste.js +186 -0
- data/lib/generators/templates/ckeditor/_source/plugins/clipboard/plugin.js +379 -0
- data/lib/generators/templates/ckeditor/_source/plugins/colorbutton/plugin.js +247 -0
- data/lib/generators/templates/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +191 -0
- data/lib/generators/templates/ckeditor/_source/plugins/colordialog/plugin.js +13 -0
- data/lib/generators/templates/ckeditor/_source/plugins/contextmenu/plugin.js +274 -0
- data/lib/generators/templates/ckeditor/_source/plugins/dialog/dialogDefinition.js +315 -0
- data/lib/generators/templates/ckeditor/_source/plugins/dialog/plugin.js +2913 -0
- data/lib/generators/templates/ckeditor/_source/plugins/dialogui/plugin.js +1408 -0
- data/lib/generators/templates/ckeditor/_source/plugins/div/dialogs/div.js +529 -0
- data/lib/generators/templates/ckeditor/_source/plugins/div/plugin.js +121 -0
- data/lib/generators/templates/ckeditor/_source/plugins/domiterator/plugin.js +355 -0
- data/lib/generators/templates/ckeditor/_source/plugins/editingblock/plugin.js +224 -0
- data/lib/generators/templates/ckeditor/_source/plugins/elementspath/plugin.js +203 -0
- data/lib/generators/templates/ckeditor/_source/plugins/embed/dialogs/embed.js +65 -0
- data/lib/generators/templates/ckeditor/_source/plugins/embed/images/embed.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/embed/lang/en.js +9 -0
- data/lib/generators/templates/ckeditor/_source/plugins/embed/lang/ru.js +9 -0
- data/lib/generators/templates/ckeditor/_source/plugins/embed/lang/uk.js +9 -0
- data/lib/generators/templates/ckeditor/_source/plugins/embed/plugin.js +43 -0
- data/lib/generators/templates/ckeditor/_source/plugins/enterkey/plugin.js +339 -0
- data/lib/generators/templates/ckeditor/_source/plugins/entities/plugin.js +200 -0
- data/lib/generators/templates/ckeditor/_source/plugins/fakeobjects/plugin.js +120 -0
- data/lib/generators/templates/ckeditor/_source/plugins/filebrowser/plugin.js +479 -0
- data/lib/generators/templates/ckeditor/_source/plugins/find/dialogs/find.js +867 -0
- data/lib/generators/templates/ckeditor/_source/plugins/find/plugin.js +46 -0
- data/lib/generators/templates/ckeditor/_source/plugins/flash/dialogs/flash.js +698 -0
- data/lib/generators/templates/ckeditor/_source/plugins/flash/images/placeholder.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/flash/plugin.js +165 -0
- data/lib/generators/templates/ckeditor/_source/plugins/floatpanel/plugin.js +376 -0
- data/lib/generators/templates/ckeditor/_source/plugins/font/plugin.js +234 -0
- data/lib/generators/templates/ckeditor/_source/plugins/format/plugin.js +193 -0
- data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/button.js +135 -0
- data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/checkbox.js +155 -0
- data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/form.js +177 -0
- data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js +91 -0
- data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/radio.js +135 -0
- data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/select.js +556 -0
- data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/textarea.js +114 -0
- data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/textfield.js +193 -0
- data/lib/generators/templates/ckeditor/_source/plugins/forms/plugin.js +217 -0
- data/lib/generators/templates/ckeditor/_source/plugins/horizontalrule/plugin.js +36 -0
- data/lib/generators/templates/ckeditor/_source/plugins/htmldataprocessor/plugin.js +463 -0
- data/lib/generators/templates/ckeditor/_source/plugins/htmlwriter/plugin.js +314 -0
- data/lib/generators/templates/ckeditor/_source/plugins/iframedialog/plugin.js +136 -0
- data/lib/generators/templates/ckeditor/_source/plugins/image/dialogs/image.js +1380 -0
- data/lib/generators/templates/ckeditor/_source/plugins/image/plugin.js +73 -0
- data/lib/generators/templates/ckeditor/_source/plugins/indent/plugin.js +381 -0
- data/lib/generators/templates/ckeditor/_source/plugins/justify/plugin.js +168 -0
- data/lib/generators/templates/ckeditor/_source/plugins/keystrokes/plugin.js +229 -0
- data/lib/generators/templates/ckeditor/_source/plugins/link/dialogs/anchor.js +99 -0
- data/lib/generators/templates/ckeditor/_source/plugins/link/dialogs/link.js +1413 -0
- data/lib/generators/templates/ckeditor/_source/plugins/link/images/anchor.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/link/plugin.js +219 -0
- data/lib/generators/templates/ckeditor/_source/plugins/list/plugin.js +645 -0
- data/lib/generators/templates/ckeditor/_source/plugins/listblock/plugin.js +257 -0
- data/lib/generators/templates/ckeditor/_source/plugins/maximize/plugin.js +305 -0
- data/lib/generators/templates/ckeditor/_source/plugins/menu/plugin.js +406 -0
- data/lib/generators/templates/ckeditor/_source/plugins/menubutton/plugin.js +94 -0
- data/lib/generators/templates/ckeditor/_source/plugins/newpage/plugin.js +54 -0
- data/lib/generators/templates/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/pagebreak/plugin.js +103 -0
- data/lib/generators/templates/ckeditor/_source/plugins/panel/plugin.js +397 -0
- data/lib/generators/templates/ckeditor/_source/plugins/panelbutton/plugin.js +147 -0
- data/lib/generators/templates/ckeditor/_source/plugins/pastefromword/filter/default.js +1179 -0
- data/lib/generators/templates/ckeditor/_source/plugins/pastefromword/plugin.js +120 -0
- data/lib/generators/templates/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +77 -0
- data/lib/generators/templates/ckeditor/_source/plugins/pastetext/plugin.js +162 -0
- data/lib/generators/templates/ckeditor/_source/plugins/popup/plugin.js +62 -0
- data/lib/generators/templates/ckeditor/_source/plugins/preview/plugin.js +108 -0
- data/lib/generators/templates/ckeditor/_source/plugins/print/plugin.js +41 -0
- data/lib/generators/templates/ckeditor/_source/plugins/removeformat/plugin.js +132 -0
- data/lib/generators/templates/ckeditor/_source/plugins/resize/plugin.js +117 -0
- data/lib/generators/templates/ckeditor/_source/plugins/richcombo/plugin.js +370 -0
- data/lib/generators/templates/ckeditor/_source/plugins/save/plugin.js +55 -0
- data/lib/generators/templates/ckeditor/_source/plugins/scayt/dialogs/options.js +533 -0
- data/lib/generators/templates/ckeditor/_source/plugins/scayt/dialogs/toolbar.css +71 -0
- data/lib/generators/templates/ckeditor/_source/plugins/scayt/plugin.js +767 -0
- data/lib/generators/templates/ckeditor/_source/plugins/selection/plugin.js +1145 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_address.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_blockquote.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_div.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_h1.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_h2.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_h3.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_h4.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_h5.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_h6.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_p.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_pre.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/plugin.js +154 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showborders/plugin.js +167 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/dialogs/smiley.js +216 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/angel_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/angry_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/broken_heart.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/confused_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/cry_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/devil_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/envelope.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/heart.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/kiss.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/lightbulb.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/omg_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/regular_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/sad_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/shades_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/teeth_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/thumbs_down.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/thumbs_up.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/tounge_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/wink_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/plugin.js +84 -0
- data/lib/generators/templates/ckeditor/_source/plugins/sourcearea/plugin.js +206 -0
- data/lib/generators/templates/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js +403 -0
- data/lib/generators/templates/ckeditor/_source/plugins/specialchar/plugin.js +29 -0
- data/lib/generators/templates/ckeditor/_source/plugins/styles/plugin.js +1442 -0
- data/lib/generators/templates/ckeditor/_source/plugins/styles/styles/default.js +88 -0
- data/lib/generators/templates/ckeditor/_source/plugins/stylescombo/plugin.js +204 -0
- data/lib/generators/templates/ckeditor/_source/plugins/tab/plugin.js +261 -0
- data/lib/generators/templates/ckeditor/_source/plugins/table/dialogs/table.js +591 -0
- data/lib/generators/templates/ckeditor/_source/plugins/table/plugin.js +70 -0
- data/lib/generators/templates/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +528 -0
- data/lib/generators/templates/ckeditor/_source/plugins/tabletools/plugin.js +1068 -0
- data/lib/generators/templates/ckeditor/_source/plugins/templates/dialogs/templates.js +230 -0
- data/lib/generators/templates/ckeditor/_source/plugins/templates/plugin.js +100 -0
- data/lib/generators/templates/ckeditor/_source/plugins/templates/templates/default.js +94 -0
- data/lib/generators/templates/ckeditor/_source/plugins/templates/templates/images/template1.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/templates/templates/images/template2.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/templates/templates/images/template3.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/toolbar/plugin.js +479 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js +204 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/lang/en.js +15 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/plugin.js +37 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/uicolor.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/yui/assets/yui.css +15 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/yui/yui.js +71 -0
- data/lib/generators/templates/ckeditor/_source/plugins/undo/plugin.js +519 -0
- data/lib/generators/templates/ckeditor/_source/plugins/wsc/dialogs/ciframe.html +49 -0
- data/lib/generators/templates/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html +52 -0
- data/lib/generators/templates/ckeditor/_source/plugins/wsc/dialogs/wsc.css +83 -0
- data/lib/generators/templates/ckeditor/_source/plugins/wsc/dialogs/wsc.js +176 -0
- data/lib/generators/templates/ckeditor/_source/plugins/wsc/plugin.js +33 -0
- data/lib/generators/templates/ckeditor/_source/plugins/wysiwygarea/plugin.js +882 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/dialog.css +835 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/editor.css +25 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/elementspath.css +72 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/icons.css +326 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/icons.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/images/mini.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/images/noimage.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/images/sprites.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/mainui.css +183 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/menu.css +197 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/panel.css +216 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/presets.css +49 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/reset.css +78 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/richcombo.css +270 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/skin.js +268 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/templates.css +84 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/toolbar.css +409 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/dialog.css +738 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/editor.css +25 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/elementspath.css +73 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/icons.css +324 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/icons.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/images/dialog_sides.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/images/dialog_sides.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/images/mini.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/images/noimage.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/images/sprites.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/images/sprites_ie6.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/mainui.css +133 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/menu.css +194 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/panel.css +211 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/presets.css +49 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/reset.css +78 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/richcombo.css +289 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/skin.js +81 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/templates.css +81 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/toolbar.css +463 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/dialog.css +753 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/editor.css +25 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/elementspath.css +73 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/icons.css +324 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/icons.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/images/dialog_sides.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/images/dialog_sides.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/images/mini.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/images/noimage.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/images/sprites.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/images/sprites_ie6.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/images/toolbar_start.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/mainui.css +142 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/menu.css +196 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/panel.css +211 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/presets.css +50 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/reset.css +78 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/richcombo.css +289 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/skin.js +77 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/templates.css +81 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/toolbar.css +415 -0
- data/lib/generators/templates/ckeditor/_source/themes/default/theme.js +335 -0
- data/lib/generators/templates/ckeditor/adapters/jquery.js +6 -0
- data/lib/generators/templates/ckeditor/ckeditor.js +124 -0
- data/lib/generators/templates/ckeditor/ckeditor.pack +205 -0
- data/lib/generators/templates/ckeditor/ckeditor_basic.js +8 -0
- data/lib/generators/templates/ckeditor/ckeditor_basic_source.js +20 -0
- data/lib/generators/templates/ckeditor/ckeditor_source.js +25 -0
- data/lib/generators/templates/ckeditor/config.js +42 -0
- data/lib/generators/templates/ckeditor/contents.css +35 -0
- data/lib/generators/templates/ckeditor/css/ckfinder.css +299 -0
- data/lib/generators/templates/ckeditor/css/fck_dialog.css +119 -0
- data/lib/generators/templates/ckeditor/css/fck_editor.css +448 -0
- data/lib/generators/templates/ckeditor/css/swfupload.css +94 -0
- data/lib/generators/templates/ckeditor/images/add.gif +0 -0
- data/lib/generators/templates/ckeditor/images/cancelbutton.gif +0 -0
- data/lib/generators/templates/ckeditor/images/ckfnothumb.gif +0 -0
- data/lib/generators/templates/ckeditor/images/doc.gif +0 -0
- data/lib/generators/templates/ckeditor/images/mp3.gif +0 -0
- data/lib/generators/templates/ckeditor/images/pdf.gif +0 -0
- data/lib/generators/templates/ckeditor/images/rar.gif +0 -0
- data/lib/generators/templates/ckeditor/images/refresh.gif +0 -0
- data/lib/generators/templates/ckeditor/images/select_files.png +0 -0
- data/lib/generators/templates/ckeditor/images/spacer.gif +0 -0
- data/lib/generators/templates/ckeditor/images/swf.gif +0 -0
- data/lib/generators/templates/ckeditor/images/toolbar.start.gif +0 -0
- data/lib/generators/templates/ckeditor/images/xls.gif +0 -0
- data/lib/generators/templates/ckeditor/lang/_languages.js +6 -0
- data/lib/generators/templates/ckeditor/lang/_translationstatus.txt +60 -0
- data/lib/generators/templates/ckeditor/lang/af.js +6 -0
- data/lib/generators/templates/ckeditor/lang/ar.js +6 -0
- data/lib/generators/templates/ckeditor/lang/bg.js +6 -0
- data/lib/generators/templates/ckeditor/lang/bn.js +6 -0
- data/lib/generators/templates/ckeditor/lang/bs.js +6 -0
- data/lib/generators/templates/ckeditor/lang/ca.js +6 -0
- data/lib/generators/templates/ckeditor/lang/cs.js +6 -0
- data/lib/generators/templates/ckeditor/lang/cy.js +6 -0
- data/lib/generators/templates/ckeditor/lang/da.js +6 -0
- data/lib/generators/templates/ckeditor/lang/de.js +6 -0
- data/lib/generators/templates/ckeditor/lang/el.js +6 -0
- data/lib/generators/templates/ckeditor/lang/en-au.js +6 -0
- data/lib/generators/templates/ckeditor/lang/en-ca.js +6 -0
- data/lib/generators/templates/ckeditor/lang/en-gb.js +6 -0
- data/lib/generators/templates/ckeditor/lang/en.js +6 -0
- data/lib/generators/templates/ckeditor/lang/eo.js +6 -0
- data/lib/generators/templates/ckeditor/lang/es.js +6 -0
- data/lib/generators/templates/ckeditor/lang/et.js +6 -0
- data/lib/generators/templates/ckeditor/lang/eu.js +6 -0
- data/lib/generators/templates/ckeditor/lang/fa.js +6 -0
- data/lib/generators/templates/ckeditor/lang/fi.js +6 -0
- data/lib/generators/templates/ckeditor/lang/fo.js +6 -0
- data/lib/generators/templates/ckeditor/lang/fr-ca.js +6 -0
- data/lib/generators/templates/ckeditor/lang/fr.js +6 -0
- data/lib/generators/templates/ckeditor/lang/gl.js +6 -0
- data/lib/generators/templates/ckeditor/lang/gu.js +6 -0
- data/lib/generators/templates/ckeditor/lang/he.js +6 -0
- data/lib/generators/templates/ckeditor/lang/hi.js +6 -0
- data/lib/generators/templates/ckeditor/lang/hr.js +6 -0
- data/lib/generators/templates/ckeditor/lang/hu.js +6 -0
- data/lib/generators/templates/ckeditor/lang/is.js +6 -0
- data/lib/generators/templates/ckeditor/lang/it.js +6 -0
- data/lib/generators/templates/ckeditor/lang/ja.js +6 -0
- data/lib/generators/templates/ckeditor/lang/km.js +6 -0
- data/lib/generators/templates/ckeditor/lang/ko.js +6 -0
- data/lib/generators/templates/ckeditor/lang/lt.js +6 -0
- data/lib/generators/templates/ckeditor/lang/lv.js +6 -0
- data/lib/generators/templates/ckeditor/lang/mn.js +6 -0
- data/lib/generators/templates/ckeditor/lang/ms.js +6 -0
- data/lib/generators/templates/ckeditor/lang/nb.js +6 -0
- data/lib/generators/templates/ckeditor/lang/nl.js +6 -0
- data/lib/generators/templates/ckeditor/lang/no.js +6 -0
- data/lib/generators/templates/ckeditor/lang/pl.js +6 -0
- data/lib/generators/templates/ckeditor/lang/pt-br.js +6 -0
- data/lib/generators/templates/ckeditor/lang/pt.js +6 -0
- data/lib/generators/templates/ckeditor/lang/ro.js +6 -0
- data/lib/generators/templates/ckeditor/lang/ru.js +6 -0
- data/lib/generators/templates/ckeditor/lang/sk.js +6 -0
- data/lib/generators/templates/ckeditor/lang/sl.js +6 -0
- data/lib/generators/templates/ckeditor/lang/sr-latn.js +6 -0
- data/lib/generators/templates/ckeditor/lang/sr.js +6 -0
- data/lib/generators/templates/ckeditor/lang/sv.js +6 -0
- data/lib/generators/templates/ckeditor/lang/th.js +6 -0
- data/lib/generators/templates/ckeditor/lang/tr.js +6 -0
- data/lib/generators/templates/ckeditor/lang/uk.js +6 -0
- data/lib/generators/templates/ckeditor/lang/vi.js +6 -0
- data/lib/generators/templates/ckeditor/lang/zh-cn.js +6 -0
- data/lib/generators/templates/ckeditor/lang/zh.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +7 -0
- data/lib/generators/templates/ckeditor/plugins/a11yhelp/lang/en.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/about/dialogs/about.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/attachment/dialogs/attachment.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/attachment/images/attachment.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/attachment/lang/en.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/attachment/lang/ru.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/attachment/lang/uk.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/attachment/plugin.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/clipboard/dialogs/paste.js +7 -0
- data/lib/generators/templates/ckeditor/plugins/colordialog/dialogs/colordialog.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
- data/lib/generators/templates/ckeditor/plugins/div/dialogs/div.js +7 -0
- data/lib/generators/templates/ckeditor/plugins/embed/dialogs/embed.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/embed/images/embed.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/embed/lang/en.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/embed/lang/ru.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/embed/lang/uk.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/embed/plugin.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/find/dialogs/find.js +9 -0
- data/lib/generators/templates/ckeditor/plugins/flash/dialogs/flash.js +9 -0
- data/lib/generators/templates/ckeditor/plugins/flash/images/placeholder.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/forms/dialogs/button.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/forms/dialogs/checkbox.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/forms/dialogs/form.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/forms/dialogs/hiddenfield.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/forms/dialogs/radio.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/forms/dialogs/select.js +9 -0
- data/lib/generators/templates/ckeditor/plugins/forms/dialogs/textarea.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/forms/dialogs/textfield.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/iframedialog/plugin.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/image/dialogs/image.js +13 -0
- data/lib/generators/templates/ckeditor/plugins/link/dialogs/anchor.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/link/dialogs/link.js +11 -0
- data/lib/generators/templates/ckeditor/plugins/link/images/anchor.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/pastefromword/filter/default.js +10 -0
- data/lib/generators/templates/ckeditor/plugins/pastetext/dialogs/pastetext.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/scayt/dialogs/options.js +8 -0
- data/lib/generators/templates/ckeditor/plugins/scayt/dialogs/toolbar.css +6 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_address.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_div.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_p.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/dialogs/smiley.js +7 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/envelope.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/heart.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/kiss.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/specialchar/dialogs/specialchar.js +7 -0
- data/lib/generators/templates/ckeditor/plugins/styles/styles/default.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/table/dialogs/table.js +9 -0
- data/lib/generators/templates/ckeditor/plugins/tabletools/dialogs/tableCell.js +8 -0
- data/lib/generators/templates/ckeditor/plugins/templates/dialogs/templates.js +7 -0
- data/lib/generators/templates/ckeditor/plugins/templates/templates/default.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/dialogs/uicolor.js +7 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/lang/en.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/plugin.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/uicolor.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/yui/assets/yui.css +6 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/yui/yui.js +76 -0
- data/lib/generators/templates/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
- data/lib/generators/templates/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
- data/lib/generators/templates/ckeditor/plugins/wsc/dialogs/wsc.css +6 -0
- data/lib/generators/templates/ckeditor/plugins/wsc/dialogs/wsc.js +7 -0
- data/lib/generators/templates/ckeditor/skins/kama/dialog.css +9 -0
- data/lib/generators/templates/ckeditor/skins/kama/editor.css +12 -0
- data/lib/generators/templates/ckeditor/skins/kama/icons.png +0 -0
- data/lib/generators/templates/ckeditor/skins/kama/images/dialog_sides.gif +0 -0
- data/lib/generators/templates/ckeditor/skins/kama/images/dialog_sides.png +0 -0
- data/lib/generators/templates/ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/lib/generators/templates/ckeditor/skins/kama/images/mini.gif +0 -0
- data/lib/generators/templates/ckeditor/skins/kama/images/noimage.png +0 -0
- data/lib/generators/templates/ckeditor/skins/kama/images/sprites.png +0 -0
- data/lib/generators/templates/ckeditor/skins/kama/images/sprites_ie6.png +0 -0
- data/lib/generators/templates/ckeditor/skins/kama/images/toolbar_start.gif +0 -0
- data/lib/generators/templates/ckeditor/skins/kama/skin.js +7 -0
- data/lib/generators/templates/ckeditor/skins/kama/templates.css +6 -0
- data/lib/generators/templates/ckeditor/skins/office2003/dialog.css +9 -0
- data/lib/generators/templates/ckeditor/skins/office2003/editor.css +13 -0
- data/lib/generators/templates/ckeditor/skins/office2003/icons.png +0 -0
- data/lib/generators/templates/ckeditor/skins/office2003/images/dialog_sides.gif +0 -0
- data/lib/generators/templates/ckeditor/skins/office2003/images/dialog_sides.png +0 -0
- data/lib/generators/templates/ckeditor/skins/office2003/images/dialog_sides_rtl.png +0 -0
- data/lib/generators/templates/ckeditor/skins/office2003/images/mini.gif +0 -0
- data/lib/generators/templates/ckeditor/skins/office2003/images/noimage.png +0 -0
- data/lib/generators/templates/ckeditor/skins/office2003/images/sprites.png +0 -0
- data/lib/generators/templates/ckeditor/skins/office2003/images/sprites_ie6.png +0 -0
- data/lib/generators/templates/ckeditor/skins/office2003/skin.js +6 -0
- data/lib/generators/templates/ckeditor/skins/office2003/templates.css +6 -0
- data/lib/generators/templates/ckeditor/skins/v2/dialog.css +8 -0
- data/lib/generators/templates/ckeditor/skins/v2/editor.css +12 -0
- data/lib/generators/templates/ckeditor/skins/v2/icons.png +0 -0
- data/lib/generators/templates/ckeditor/skins/v2/images/dialog_sides.gif +0 -0
- data/lib/generators/templates/ckeditor/skins/v2/images/dialog_sides.png +0 -0
- data/lib/generators/templates/ckeditor/skins/v2/images/dialog_sides_rtl.png +0 -0
- data/lib/generators/templates/ckeditor/skins/v2/images/mini.gif +0 -0
- data/lib/generators/templates/ckeditor/skins/v2/images/noimage.png +0 -0
- data/lib/generators/templates/ckeditor/skins/v2/images/sprites.png +0 -0
- data/lib/generators/templates/ckeditor/skins/v2/images/sprites_ie6.png +0 -0
- data/lib/generators/templates/ckeditor/skins/v2/images/toolbar_start.gif +0 -0
- data/lib/generators/templates/ckeditor/skins/v2/skin.js +6 -0
- data/lib/generators/templates/ckeditor/skins/v2/templates.css +6 -0
- data/lib/generators/templates/ckeditor/swfupload/fileprogress.js +290 -0
- data/lib/generators/templates/ckeditor/swfupload/handlers.js +170 -0
- data/lib/generators/templates/ckeditor/swfupload/mootools-1.2.3-core-yc.js +356 -0
- data/lib/generators/templates/ckeditor/swfupload/querystring.js +40 -0
- data/lib/generators/templates/ckeditor/swfupload/swfupload.js +980 -0
- data/lib/generators/templates/ckeditor/swfupload/swfupload.queue.js +98 -0
- data/lib/generators/templates/ckeditor/swfupload/swfupload.swf +0 -0
- data/lib/generators/templates/ckeditor/swfupload/swfupload.swfobject.js +111 -0
- data/lib/generators/templates/ckeditor/themes/default/theme.js +8 -0
- data/lib/tasks/ckeditor_tasks.rake +3 -0
- metadata +694 -0
@@ -0,0 +1,262 @@
|
|
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()
|
7
|
+
{
|
8
|
+
CKEDITOR.htmlParser.filter = CKEDITOR.tools.createClass(
|
9
|
+
{
|
10
|
+
$ : function( rules )
|
11
|
+
{
|
12
|
+
this._ =
|
13
|
+
{
|
14
|
+
elementNames : [],
|
15
|
+
attributeNames : [],
|
16
|
+
elements : { $length : 0 },
|
17
|
+
attributes : { $length : 0 }
|
18
|
+
};
|
19
|
+
|
20
|
+
if ( rules )
|
21
|
+
this.addRules( rules, 10 );
|
22
|
+
},
|
23
|
+
|
24
|
+
proto :
|
25
|
+
{
|
26
|
+
addRules : function( rules, priority )
|
27
|
+
{
|
28
|
+
if ( typeof priority != 'number' )
|
29
|
+
priority = 10;
|
30
|
+
|
31
|
+
// Add the elementNames.
|
32
|
+
addItemsToList( this._.elementNames, rules.elementNames, priority );
|
33
|
+
|
34
|
+
// Add the attributeNames.
|
35
|
+
addItemsToList( this._.attributeNames, rules.attributeNames, priority );
|
36
|
+
|
37
|
+
// Add the elements.
|
38
|
+
addNamedItems( this._.elements, rules.elements, priority );
|
39
|
+
|
40
|
+
// Add the attributes.
|
41
|
+
addNamedItems( this._.attributes, rules.attributes, priority );
|
42
|
+
|
43
|
+
// Add the text.
|
44
|
+
this._.text = transformNamedItem( this._.text, rules.text, priority ) || this._.text;
|
45
|
+
|
46
|
+
// Add the comment.
|
47
|
+
this._.comment = transformNamedItem( this._.comment, rules.comment, priority ) || this._.comment;
|
48
|
+
|
49
|
+
// Add root fragment.
|
50
|
+
this._.root = transformNamedItem( this._.root, rules.root, priority ) || this._.root;
|
51
|
+
},
|
52
|
+
|
53
|
+
onElementName : function( name )
|
54
|
+
{
|
55
|
+
return filterName( name, this._.elementNames );
|
56
|
+
},
|
57
|
+
|
58
|
+
onAttributeName : function( name )
|
59
|
+
{
|
60
|
+
return filterName( name, this._.attributeNames );
|
61
|
+
},
|
62
|
+
|
63
|
+
onText : function( text )
|
64
|
+
{
|
65
|
+
var textFilter = this._.text;
|
66
|
+
return textFilter ? textFilter.filter( text ) : text;
|
67
|
+
},
|
68
|
+
|
69
|
+
onComment : function( commentText, comment )
|
70
|
+
{
|
71
|
+
var textFilter = this._.comment;
|
72
|
+
return textFilter ? textFilter.filter( commentText, comment ) : commentText;
|
73
|
+
},
|
74
|
+
|
75
|
+
onFragment : function( element )
|
76
|
+
{
|
77
|
+
var rootFilter = this._.root;
|
78
|
+
return rootFilter ? rootFilter.filter( element ) : element;
|
79
|
+
},
|
80
|
+
|
81
|
+
onElement : function( element )
|
82
|
+
{
|
83
|
+
// We must apply filters set to the specific element name as
|
84
|
+
// well as those set to the generic $ name. So, add both to an
|
85
|
+
// array and process them in a small loop.
|
86
|
+
var filters = [ this._.elements[ '^' ], this._.elements[ element.name ], this._.elements.$ ],
|
87
|
+
filter, ret;
|
88
|
+
|
89
|
+
for ( var i = 0 ; i < 3 ; i++ )
|
90
|
+
{
|
91
|
+
filter = filters[ i ];
|
92
|
+
if ( filter )
|
93
|
+
{
|
94
|
+
ret = filter.filter( element, this );
|
95
|
+
|
96
|
+
if ( ret === false )
|
97
|
+
return null;
|
98
|
+
|
99
|
+
if ( ret && ret != element )
|
100
|
+
return this.onNode( ret );
|
101
|
+
|
102
|
+
// The non-root element has been dismissed by one of the filters.
|
103
|
+
if ( element.parent && !element.name )
|
104
|
+
break;
|
105
|
+
}
|
106
|
+
}
|
107
|
+
|
108
|
+
return element;
|
109
|
+
},
|
110
|
+
|
111
|
+
onNode : function( node )
|
112
|
+
{
|
113
|
+
var type = node.type;
|
114
|
+
|
115
|
+
return type == CKEDITOR.NODE_ELEMENT ? this.onElement( node ) :
|
116
|
+
type == CKEDITOR.NODE_TEXT ? new CKEDITOR.htmlParser.text( this.onText( node.value ) ) :
|
117
|
+
type == CKEDITOR.NODE_COMMENT ? new CKEDITOR.htmlParser.comment( this.onComment( node.value ) ):
|
118
|
+
null;
|
119
|
+
},
|
120
|
+
|
121
|
+
onAttribute : function( element, name, value )
|
122
|
+
{
|
123
|
+
var filter = this._.attributes[ name ];
|
124
|
+
|
125
|
+
if ( filter )
|
126
|
+
{
|
127
|
+
var ret = filter.filter( value, element, this );
|
128
|
+
|
129
|
+
if ( ret === false )
|
130
|
+
return false;
|
131
|
+
|
132
|
+
if ( typeof ret != 'undefined' )
|
133
|
+
return ret;
|
134
|
+
}
|
135
|
+
|
136
|
+
return value;
|
137
|
+
}
|
138
|
+
}
|
139
|
+
});
|
140
|
+
|
141
|
+
function filterName( name, filters )
|
142
|
+
{
|
143
|
+
for ( var i = 0 ; name && i < filters.length ; i++ )
|
144
|
+
{
|
145
|
+
var filter = filters[ i ];
|
146
|
+
name = name.replace( filter[ 0 ], filter[ 1 ] );
|
147
|
+
}
|
148
|
+
return name;
|
149
|
+
}
|
150
|
+
|
151
|
+
function addItemsToList( list, items, priority )
|
152
|
+
{
|
153
|
+
if ( typeof items == 'function' )
|
154
|
+
items = [ items ];
|
155
|
+
|
156
|
+
var i, j,
|
157
|
+
listLength = list.length,
|
158
|
+
itemsLength = items && items.length;
|
159
|
+
|
160
|
+
if ( itemsLength )
|
161
|
+
{
|
162
|
+
// Find the index to insert the items at.
|
163
|
+
for ( i = 0 ; i < listLength && list[ i ].pri < priority ; i++ )
|
164
|
+
{ /*jsl:pass*/ }
|
165
|
+
|
166
|
+
// Add all new items to the list at the specific index.
|
167
|
+
for ( j = itemsLength - 1 ; j >= 0 ; j-- )
|
168
|
+
{
|
169
|
+
var item = items[ j ];
|
170
|
+
if ( item )
|
171
|
+
{
|
172
|
+
item.pri = priority;
|
173
|
+
list.splice( i, 0, item );
|
174
|
+
}
|
175
|
+
}
|
176
|
+
}
|
177
|
+
}
|
178
|
+
|
179
|
+
function addNamedItems( hashTable, items, priority )
|
180
|
+
{
|
181
|
+
if ( items )
|
182
|
+
{
|
183
|
+
for ( var name in items )
|
184
|
+
{
|
185
|
+
var current = hashTable[ name ];
|
186
|
+
|
187
|
+
hashTable[ name ] =
|
188
|
+
transformNamedItem(
|
189
|
+
current,
|
190
|
+
items[ name ],
|
191
|
+
priority );
|
192
|
+
|
193
|
+
if ( !current )
|
194
|
+
hashTable.$length++;
|
195
|
+
}
|
196
|
+
}
|
197
|
+
}
|
198
|
+
|
199
|
+
function transformNamedItem( current, item, priority )
|
200
|
+
{
|
201
|
+
if ( item )
|
202
|
+
{
|
203
|
+
item.pri = priority;
|
204
|
+
|
205
|
+
if ( current )
|
206
|
+
{
|
207
|
+
// If the current item is not an Array, transform it.
|
208
|
+
if ( !current.splice )
|
209
|
+
{
|
210
|
+
if ( current.pri > priority )
|
211
|
+
current = [ item, current ];
|
212
|
+
else
|
213
|
+
current = [ current, item ];
|
214
|
+
|
215
|
+
current.filter = callItems;
|
216
|
+
}
|
217
|
+
else
|
218
|
+
addItemsToList( current, item, priority );
|
219
|
+
|
220
|
+
return current;
|
221
|
+
}
|
222
|
+
else
|
223
|
+
{
|
224
|
+
item.filter = item;
|
225
|
+
return item;
|
226
|
+
}
|
227
|
+
}
|
228
|
+
}
|
229
|
+
|
230
|
+
function callItems( currentEntry )
|
231
|
+
{
|
232
|
+
var isObject = ( typeof currentEntry == 'object' );
|
233
|
+
|
234
|
+
for ( var i = 0 ; i < this.length ; i++ )
|
235
|
+
{
|
236
|
+
var item = this[ i ],
|
237
|
+
ret = item.apply( window, arguments );
|
238
|
+
|
239
|
+
if ( typeof ret != 'undefined' )
|
240
|
+
{
|
241
|
+
if ( ret === false )
|
242
|
+
return false;
|
243
|
+
|
244
|
+
if ( isObject && ret != currentEntry )
|
245
|
+
return ret;
|
246
|
+
}
|
247
|
+
}
|
248
|
+
|
249
|
+
return null;
|
250
|
+
}
|
251
|
+
})();
|
252
|
+
|
253
|
+
// "entities" plugin
|
254
|
+
/*
|
255
|
+
{
|
256
|
+
text : function( text )
|
257
|
+
{
|
258
|
+
// TODO : Process entities.
|
259
|
+
return text.toUpperCase();
|
260
|
+
}
|
261
|
+
};
|
262
|
+
*/
|
@@ -0,0 +1,496 @@
|
|
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
|
+
* A lightweight representation of an HTML DOM structure.
|
8
|
+
* @constructor
|
9
|
+
* @example
|
10
|
+
*/
|
11
|
+
CKEDITOR.htmlParser.fragment = function()
|
12
|
+
{
|
13
|
+
/**
|
14
|
+
* The nodes contained in the root of this fragment.
|
15
|
+
* @type Array
|
16
|
+
* @example
|
17
|
+
* var fragment = CKEDITOR.htmlParser.fragment.fromHtml( '<b>Sample</b> Text' );
|
18
|
+
* alert( fragment.children.length ); "2"
|
19
|
+
*/
|
20
|
+
this.children = [];
|
21
|
+
|
22
|
+
/**
|
23
|
+
* Get the fragment parent. Should always be null.
|
24
|
+
* @type Object
|
25
|
+
* @default null
|
26
|
+
* @example
|
27
|
+
*/
|
28
|
+
this.parent = null;
|
29
|
+
|
30
|
+
/** @private */
|
31
|
+
this._ =
|
32
|
+
{
|
33
|
+
isBlockLike : true,
|
34
|
+
hasInlineStarted : false
|
35
|
+
};
|
36
|
+
};
|
37
|
+
|
38
|
+
(function()
|
39
|
+
{
|
40
|
+
// Elements which the end tag is marked as optional in the HTML 4.01 DTD
|
41
|
+
// (expect empty elements).
|
42
|
+
var optionalClose = {colgroup:1,dd:1,dt:1,li:1,option:1,p:1,td:1,tfoot:1,th:1,thead:1,tr:1};
|
43
|
+
|
44
|
+
// Block-level elements whose internal structure should be respected during
|
45
|
+
// parser fixing.
|
46
|
+
var nonBreakingBlocks = CKEDITOR.tools.extend(
|
47
|
+
{table:1,ul:1,ol:1,dl:1},
|
48
|
+
CKEDITOR.dtd.table, CKEDITOR.dtd.ul, CKEDITOR.dtd.ol, CKEDITOR.dtd.dl ),
|
49
|
+
listBlocks = CKEDITOR.dtd.$list, listItems = CKEDITOR.dtd.$listItem;
|
50
|
+
|
51
|
+
/**
|
52
|
+
* Creates a {@link CKEDITOR.htmlParser.fragment} from an HTML string.
|
53
|
+
* @param {String} fragmentHtml The HTML to be parsed, filling the fragment.
|
54
|
+
* @param {Number} [fixForBody=false] Wrap body with specified element if needed.
|
55
|
+
* @returns CKEDITOR.htmlParser.fragment The fragment created.
|
56
|
+
* @example
|
57
|
+
* var fragment = CKEDITOR.htmlParser.fragment.fromHtml( '<b>Sample</b> Text' );
|
58
|
+
* alert( fragment.children[0].name ); "b"
|
59
|
+
* alert( fragment.children[1].value ); " Text"
|
60
|
+
*/
|
61
|
+
CKEDITOR.htmlParser.fragment.fromHtml = function( fragmentHtml, fixForBody )
|
62
|
+
{
|
63
|
+
var parser = new CKEDITOR.htmlParser(),
|
64
|
+
html = [],
|
65
|
+
fragment = new CKEDITOR.htmlParser.fragment(),
|
66
|
+
pendingInline = [],
|
67
|
+
pendingBRs = [],
|
68
|
+
currentNode = fragment,
|
69
|
+
// Indicate we're inside a <pre> element, spaces should be touched differently.
|
70
|
+
inPre = false,
|
71
|
+
returnPoint;
|
72
|
+
|
73
|
+
function checkPending( newTagName )
|
74
|
+
{
|
75
|
+
var pendingBRsSent;
|
76
|
+
|
77
|
+
if ( pendingInline.length > 0 )
|
78
|
+
{
|
79
|
+
for ( var i = 0 ; i < pendingInline.length ; i++ )
|
80
|
+
{
|
81
|
+
var pendingElement = pendingInline[ i ],
|
82
|
+
pendingName = pendingElement.name,
|
83
|
+
pendingDtd = CKEDITOR.dtd[ pendingName ],
|
84
|
+
currentDtd = currentNode.name && CKEDITOR.dtd[ currentNode.name ];
|
85
|
+
|
86
|
+
if ( ( !currentDtd || currentDtd[ pendingName ] ) && ( !newTagName || !pendingDtd || pendingDtd[ newTagName ] || !CKEDITOR.dtd[ newTagName ] ) )
|
87
|
+
{
|
88
|
+
if ( !pendingBRsSent )
|
89
|
+
{
|
90
|
+
sendPendingBRs();
|
91
|
+
pendingBRsSent = 1;
|
92
|
+
}
|
93
|
+
|
94
|
+
// Get a clone for the pending element.
|
95
|
+
pendingElement = pendingElement.clone();
|
96
|
+
|
97
|
+
// Add it to the current node and make it the current,
|
98
|
+
// so the new element will be added inside of it.
|
99
|
+
pendingElement.parent = currentNode;
|
100
|
+
currentNode = pendingElement;
|
101
|
+
|
102
|
+
// Remove the pending element (back the index by one
|
103
|
+
// to properly process the next entry).
|
104
|
+
pendingInline.splice( i, 1 );
|
105
|
+
i--;
|
106
|
+
}
|
107
|
+
}
|
108
|
+
}
|
109
|
+
}
|
110
|
+
|
111
|
+
function sendPendingBRs()
|
112
|
+
{
|
113
|
+
while ( pendingBRs.length )
|
114
|
+
currentNode.add( pendingBRs.shift() );
|
115
|
+
}
|
116
|
+
|
117
|
+
function addElement( element, target, enforceCurrent )
|
118
|
+
{
|
119
|
+
target = target || currentNode || fragment;
|
120
|
+
|
121
|
+
// If the target is the fragment and this element can't go inside
|
122
|
+
// body (if fixForBody).
|
123
|
+
if ( fixForBody && !target.type )
|
124
|
+
{
|
125
|
+
var elementName, realElementName;
|
126
|
+
if ( element.attributes
|
127
|
+
&& ( realElementName =
|
128
|
+
element.attributes[ '_cke_real_element_type' ] ) )
|
129
|
+
elementName = realElementName;
|
130
|
+
else
|
131
|
+
elementName = element.name;
|
132
|
+
if ( elementName
|
133
|
+
&& !( elementName in CKEDITOR.dtd.$body )
|
134
|
+
&& !( elementName in CKEDITOR.dtd.$nonBodyContent ) )
|
135
|
+
{
|
136
|
+
var savedCurrent = currentNode;
|
137
|
+
|
138
|
+
// Create a <p> in the fragment.
|
139
|
+
currentNode = target;
|
140
|
+
parser.onTagOpen( fixForBody, {} );
|
141
|
+
|
142
|
+
// The new target now is the <p>.
|
143
|
+
target = currentNode;
|
144
|
+
|
145
|
+
if ( enforceCurrent )
|
146
|
+
currentNode = savedCurrent;
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
150
|
+
// Rtrim empty spaces on block end boundary. (#3585)
|
151
|
+
if ( element._.isBlockLike
|
152
|
+
&& element.name != 'pre' )
|
153
|
+
{
|
154
|
+
|
155
|
+
var length = element.children.length,
|
156
|
+
lastChild = element.children[ length - 1 ],
|
157
|
+
text;
|
158
|
+
if ( lastChild && lastChild.type == CKEDITOR.NODE_TEXT )
|
159
|
+
{
|
160
|
+
if ( !( text = CKEDITOR.tools.rtrim( lastChild.value ) ) )
|
161
|
+
element.children.length = length -1;
|
162
|
+
else
|
163
|
+
lastChild.value = text;
|
164
|
+
}
|
165
|
+
}
|
166
|
+
|
167
|
+
target.add( element );
|
168
|
+
|
169
|
+
if ( element.returnPoint )
|
170
|
+
{
|
171
|
+
currentNode = element.returnPoint;
|
172
|
+
delete element.returnPoint;
|
173
|
+
}
|
174
|
+
}
|
175
|
+
|
176
|
+
parser.onTagOpen = function( tagName, attributes, selfClosing )
|
177
|
+
{
|
178
|
+
var element = new CKEDITOR.htmlParser.element( tagName, attributes );
|
179
|
+
|
180
|
+
// "isEmpty" will be always "false" for unknown elements, so we
|
181
|
+
// must force it if the parser has identified it as a selfClosing tag.
|
182
|
+
if ( element.isUnknown && selfClosing )
|
183
|
+
element.isEmpty = true;
|
184
|
+
|
185
|
+
// This is a tag to be removed if empty, so do not add it immediately.
|
186
|
+
if ( CKEDITOR.dtd.$removeEmpty[ tagName ] )
|
187
|
+
{
|
188
|
+
pendingInline.push( element );
|
189
|
+
return;
|
190
|
+
}
|
191
|
+
else if ( tagName == 'pre' )
|
192
|
+
inPre = true;
|
193
|
+
else if ( tagName == 'br' && inPre )
|
194
|
+
{
|
195
|
+
currentNode.add( new CKEDITOR.htmlParser.text( '\n' ) );
|
196
|
+
return;
|
197
|
+
}
|
198
|
+
|
199
|
+
if ( tagName == 'br' )
|
200
|
+
{
|
201
|
+
pendingBRs.push( element );
|
202
|
+
return;
|
203
|
+
}
|
204
|
+
|
205
|
+
var currentName = currentNode.name;
|
206
|
+
|
207
|
+
var currentDtd = currentName
|
208
|
+
&& ( CKEDITOR.dtd[ currentName ]
|
209
|
+
|| ( currentNode._.isBlockLike ? CKEDITOR.dtd.div : CKEDITOR.dtd.span ) );
|
210
|
+
|
211
|
+
// If the element cannot be child of the current element.
|
212
|
+
if ( currentDtd // Fragment could receive any elements.
|
213
|
+
&& !element.isUnknown && !currentNode.isUnknown && !currentDtd[ tagName ] )
|
214
|
+
{
|
215
|
+
|
216
|
+
var reApply = false,
|
217
|
+
addPoint; // New position to start adding nodes.
|
218
|
+
|
219
|
+
// Fixing malformed nested lists by moving it into a previous list item. (#3828)
|
220
|
+
if ( tagName in listBlocks
|
221
|
+
&& currentName in listBlocks )
|
222
|
+
{
|
223
|
+
var children = currentNode.children,
|
224
|
+
lastChild = children[ children.length - 1 ];
|
225
|
+
|
226
|
+
// Establish the list item if it's not existed.
|
227
|
+
if ( !( lastChild && lastChild.name in listItems ) )
|
228
|
+
addElement( ( lastChild = new CKEDITOR.htmlParser.element( 'li' ) ), currentNode );
|
229
|
+
|
230
|
+
returnPoint = currentNode, addPoint = lastChild;
|
231
|
+
}
|
232
|
+
// If the element name is the same as the current element name,
|
233
|
+
// then just close the current one and append the new one to the
|
234
|
+
// parent. This situation usually happens with <p>, <li>, <dt> and
|
235
|
+
// <dd>, specially in IE. Do not enter in this if block in this case.
|
236
|
+
else if ( tagName == currentName )
|
237
|
+
{
|
238
|
+
addElement( currentNode, currentNode.parent );
|
239
|
+
}
|
240
|
+
else
|
241
|
+
{
|
242
|
+
if ( nonBreakingBlocks[ currentName ] )
|
243
|
+
{
|
244
|
+
if ( !returnPoint )
|
245
|
+
returnPoint = currentNode;
|
246
|
+
}
|
247
|
+
else
|
248
|
+
{
|
249
|
+
addElement( currentNode, currentNode.parent, true );
|
250
|
+
|
251
|
+
if ( !optionalClose[ currentName ] )
|
252
|
+
{
|
253
|
+
// The current element is an inline element, which
|
254
|
+
// cannot hold the new one. Put it in the pending list,
|
255
|
+
// and try adding the new one after it.
|
256
|
+
pendingInline.unshift( currentNode );
|
257
|
+
}
|
258
|
+
}
|
259
|
+
|
260
|
+
reApply = true;
|
261
|
+
}
|
262
|
+
|
263
|
+
if ( addPoint )
|
264
|
+
currentNode = addPoint;
|
265
|
+
// Try adding it to the return point, or the parent element.
|
266
|
+
else
|
267
|
+
currentNode = currentNode.returnPoint || currentNode.parent;
|
268
|
+
|
269
|
+
if ( reApply )
|
270
|
+
{
|
271
|
+
parser.onTagOpen.apply( this, arguments );
|
272
|
+
return;
|
273
|
+
}
|
274
|
+
}
|
275
|
+
|
276
|
+
checkPending( tagName );
|
277
|
+
sendPendingBRs();
|
278
|
+
|
279
|
+
element.parent = currentNode;
|
280
|
+
element.returnPoint = returnPoint;
|
281
|
+
returnPoint = 0;
|
282
|
+
|
283
|
+
if ( element.isEmpty )
|
284
|
+
addElement( element );
|
285
|
+
else
|
286
|
+
currentNode = element;
|
287
|
+
};
|
288
|
+
|
289
|
+
parser.onTagClose = function( tagName )
|
290
|
+
{
|
291
|
+
// Check if there is any pending tag to be closed.
|
292
|
+
for ( var i = pendingInline.length - 1 ; i >= 0 ; i-- )
|
293
|
+
{
|
294
|
+
// If found, just remove it from the list.
|
295
|
+
if ( tagName == pendingInline[ i ].name )
|
296
|
+
{
|
297
|
+
pendingInline.splice( i, 1 );
|
298
|
+
return;
|
299
|
+
}
|
300
|
+
}
|
301
|
+
|
302
|
+
var pendingAdd = [],
|
303
|
+
newPendingInline = [],
|
304
|
+
candidate = currentNode;
|
305
|
+
|
306
|
+
while ( candidate.type && candidate.name != tagName )
|
307
|
+
{
|
308
|
+
// If this is an inline element, add it to the pending list, if we're
|
309
|
+
// really closing one of the parents element later, they will continue
|
310
|
+
// after it.
|
311
|
+
if ( !candidate._.isBlockLike )
|
312
|
+
newPendingInline.unshift( candidate );
|
313
|
+
|
314
|
+
// This node should be added to it's parent at this point. But,
|
315
|
+
// it should happen only if the closing tag is really closing
|
316
|
+
// one of the nodes. So, for now, we just cache it.
|
317
|
+
pendingAdd.push( candidate );
|
318
|
+
|
319
|
+
candidate = candidate.parent;
|
320
|
+
}
|
321
|
+
|
322
|
+
if ( candidate.type )
|
323
|
+
{
|
324
|
+
// Add all elements that have been found in the above loop.
|
325
|
+
for ( i = 0 ; i < pendingAdd.length ; i++ )
|
326
|
+
{
|
327
|
+
var node = pendingAdd[ i ];
|
328
|
+
addElement( node, node.parent );
|
329
|
+
}
|
330
|
+
|
331
|
+
currentNode = candidate;
|
332
|
+
|
333
|
+
if ( currentNode.name == 'pre' )
|
334
|
+
inPre = false;
|
335
|
+
|
336
|
+
if ( candidate._.isBlockLike )
|
337
|
+
sendPendingBRs();
|
338
|
+
|
339
|
+
addElement( candidate, candidate.parent );
|
340
|
+
|
341
|
+
// The parent should start receiving new nodes now, except if
|
342
|
+
// addElement changed the currentNode.
|
343
|
+
if ( candidate == currentNode )
|
344
|
+
currentNode = currentNode.parent;
|
345
|
+
|
346
|
+
pendingInline = pendingInline.concat( newPendingInline );
|
347
|
+
}
|
348
|
+
|
349
|
+
if ( tagName == 'body' )
|
350
|
+
fixForBody = false;
|
351
|
+
};
|
352
|
+
|
353
|
+
parser.onText = function( text )
|
354
|
+
{
|
355
|
+
// Trim empty spaces at beginning of element contents except <pre>.
|
356
|
+
if ( !currentNode._.hasInlineStarted && !inPre )
|
357
|
+
{
|
358
|
+
text = CKEDITOR.tools.ltrim( text );
|
359
|
+
|
360
|
+
if ( text.length === 0 )
|
361
|
+
return;
|
362
|
+
}
|
363
|
+
|
364
|
+
sendPendingBRs();
|
365
|
+
checkPending();
|
366
|
+
|
367
|
+
if ( fixForBody
|
368
|
+
&& ( !currentNode.type || currentNode.name == 'body' )
|
369
|
+
&& CKEDITOR.tools.trim( text ) )
|
370
|
+
{
|
371
|
+
this.onTagOpen( fixForBody, {} );
|
372
|
+
}
|
373
|
+
|
374
|
+
// Shrinking consequential spaces into one single for all elements
|
375
|
+
// text contents.
|
376
|
+
if ( !inPre )
|
377
|
+
text = text.replace( /[\t\r\n ]{2,}|[\t\r\n]/g, ' ' );
|
378
|
+
|
379
|
+
currentNode.add( new CKEDITOR.htmlParser.text( text ) );
|
380
|
+
};
|
381
|
+
|
382
|
+
parser.onCDATA = function( cdata )
|
383
|
+
{
|
384
|
+
currentNode.add( new CKEDITOR.htmlParser.cdata( cdata ) );
|
385
|
+
};
|
386
|
+
|
387
|
+
parser.onComment = function( comment )
|
388
|
+
{
|
389
|
+
currentNode.add( new CKEDITOR.htmlParser.comment( comment ) );
|
390
|
+
};
|
391
|
+
|
392
|
+
// Parse it.
|
393
|
+
parser.parse( fragmentHtml );
|
394
|
+
|
395
|
+
sendPendingBRs();
|
396
|
+
|
397
|
+
// Close all pending nodes.
|
398
|
+
while ( currentNode.type )
|
399
|
+
{
|
400
|
+
var parent = currentNode.parent,
|
401
|
+
node = currentNode;
|
402
|
+
|
403
|
+
if ( fixForBody
|
404
|
+
&& ( !parent.type || parent.name == 'body' )
|
405
|
+
&& !CKEDITOR.dtd.$body[ node.name ] )
|
406
|
+
{
|
407
|
+
currentNode = parent;
|
408
|
+
parser.onTagOpen( fixForBody, {} );
|
409
|
+
parent = currentNode;
|
410
|
+
}
|
411
|
+
|
412
|
+
parent.add( node );
|
413
|
+
currentNode = parent;
|
414
|
+
}
|
415
|
+
|
416
|
+
return fragment;
|
417
|
+
};
|
418
|
+
|
419
|
+
CKEDITOR.htmlParser.fragment.prototype =
|
420
|
+
{
|
421
|
+
/**
|
422
|
+
* Adds a node to this fragment.
|
423
|
+
* @param {Object} node The node to be added. It can be any of of the
|
424
|
+
* following types: {@link CKEDITOR.htmlParser.element},
|
425
|
+
* {@link CKEDITOR.htmlParser.text} and
|
426
|
+
* {@link CKEDITOR.htmlParser.comment}.
|
427
|
+
* @example
|
428
|
+
*/
|
429
|
+
add : function( node )
|
430
|
+
{
|
431
|
+
var len = this.children.length,
|
432
|
+
previous = len > 0 && this.children[ len - 1 ] || null;
|
433
|
+
|
434
|
+
if ( previous )
|
435
|
+
{
|
436
|
+
// If the block to be appended is following text, trim spaces at
|
437
|
+
// the right of it.
|
438
|
+
if ( node._.isBlockLike && previous.type == CKEDITOR.NODE_TEXT )
|
439
|
+
{
|
440
|
+
previous.value = CKEDITOR.tools.rtrim( previous.value );
|
441
|
+
|
442
|
+
// If we have completely cleared the previous node.
|
443
|
+
if ( previous.value.length === 0 )
|
444
|
+
{
|
445
|
+
// Remove it from the list and add the node again.
|
446
|
+
this.children.pop();
|
447
|
+
this.add( node );
|
448
|
+
return;
|
449
|
+
}
|
450
|
+
}
|
451
|
+
|
452
|
+
previous.next = node;
|
453
|
+
}
|
454
|
+
|
455
|
+
node.previous = previous;
|
456
|
+
node.parent = this;
|
457
|
+
|
458
|
+
this.children.push( node );
|
459
|
+
|
460
|
+
this._.hasInlineStarted = node.type == CKEDITOR.NODE_TEXT || ( node.type == CKEDITOR.NODE_ELEMENT && !node._.isBlockLike );
|
461
|
+
},
|
462
|
+
|
463
|
+
/**
|
464
|
+
* Writes the fragment HTML to a CKEDITOR.htmlWriter.
|
465
|
+
* @param {CKEDITOR.htmlWriter} writer The writer to which write the HTML.
|
466
|
+
* @example
|
467
|
+
* var writer = new CKEDITOR.htmlWriter();
|
468
|
+
* var fragment = CKEDITOR.htmlParser.fragment.fromHtml( '<P><B>Example' );
|
469
|
+
* fragment.writeHtml( writer )
|
470
|
+
* alert( writer.getHtml() ); "<p><b>Example</b></p>"
|
471
|
+
*/
|
472
|
+
writeHtml : function( writer, filter )
|
473
|
+
{
|
474
|
+
var isChildrenFiltered;
|
475
|
+
this.filterChildren = function()
|
476
|
+
{
|
477
|
+
var writer = new CKEDITOR.htmlParser.basicWriter();
|
478
|
+
this.writeChildrenHtml.call( this, writer, filter, true );
|
479
|
+
var html = writer.getHtml();
|
480
|
+
this.children = new CKEDITOR.htmlParser.fragment.fromHtml( html ).children;
|
481
|
+
isChildrenFiltered = 1;
|
482
|
+
};
|
483
|
+
|
484
|
+
// Filtering the root fragment before anything else.
|
485
|
+
!this.name && filter && filter.onFragment( this );
|
486
|
+
|
487
|
+
this.writeChildrenHtml( writer, isChildrenFiltered ? null : filter );
|
488
|
+
},
|
489
|
+
|
490
|
+
writeChildrenHtml : function( writer, filter )
|
491
|
+
{
|
492
|
+
for ( var i = 0 ; i < this.children.length ; i++ )
|
493
|
+
this.children[i].writeHtml( writer, filter );
|
494
|
+
}
|
495
|
+
};
|
496
|
+
})();
|