ckeditor-rails 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +17 -14
- data/lib/ckeditor-rails/version.rb +1 -1
- data/vendor/assets/ckeditor/ckeditor/.htaccess +1 -1
- data/vendor/assets/ckeditor/ckeditor/CHANGES.html +139 -3
- data/vendor/assets/ckeditor/ckeditor/INSTALL.html +92 -92
- data/vendor/assets/ckeditor/ckeditor/LICENSE.html +2 -2
- data/vendor/assets/ckeditor/ckeditor/_samples/adobeair/application.xml +32 -32
- data/vendor/assets/ckeditor/ckeditor/_samples/adobeair/run.bat +9 -9
- data/vendor/assets/ckeditor/ckeditor/_samples/adobeair/run.sh +1 -1
- data/vendor/assets/ckeditor/ckeditor/_samples/adobeair/sample.html +45 -45
- data/vendor/assets/ckeditor/ckeditor/_samples/ajax.html +98 -98
- data/vendor/assets/ckeditor/ckeditor/_samples/api.html +192 -192
- data/vendor/assets/ckeditor/ckeditor/_samples/api_dialog.html +198 -198
- data/vendor/assets/ckeditor/ckeditor/_samples/api_dialog/my_dialog.js +28 -28
- data/vendor/assets/ckeditor/ckeditor/_samples/asp/advanced.asp +105 -105
- data/vendor/assets/ckeditor/ckeditor/_samples/asp/events.asp +136 -136
- data/vendor/assets/ckeditor/ckeditor/_samples/asp/index.html +103 -103
- data/vendor/assets/ckeditor/ckeditor/_samples/asp/replace.asp +72 -72
- data/vendor/assets/ckeditor/ckeditor/_samples/asp/replaceall.asp +77 -77
- data/vendor/assets/ckeditor/ckeditor/_samples/asp/sample_posteddata.asp +46 -46
- data/vendor/assets/ckeditor/ckeditor/_samples/asp/standalone.asp +72 -72
- data/vendor/assets/ckeditor/ckeditor/_samples/assets/_posteddata.php +59 -59
- data/vendor/assets/ckeditor/ckeditor/_samples/assets/output_xhtml.css +204 -204
- data/vendor/assets/ckeditor/ckeditor/_samples/assets/parsesample.css +70 -70
- data/vendor/assets/ckeditor/ckeditor/_samples/assets/swfobject.js +18 -18
- data/vendor/assets/ckeditor/ckeditor/_samples/autogrow.html +108 -107
- data/vendor/assets/ckeditor/ckeditor/_samples/bbcode.html +125 -125
- data/vendor/assets/ckeditor/ckeditor/_samples/devtools.html +94 -94
- data/vendor/assets/ckeditor/ckeditor/_samples/divreplace.html +154 -154
- data/vendor/assets/ckeditor/ckeditor/_samples/enterkey.html +115 -115
- data/vendor/assets/ckeditor/ckeditor/_samples/fullpage.html +82 -82
- data/vendor/assets/ckeditor/ckeditor/_samples/index.html +116 -116
- data/vendor/assets/ckeditor/ckeditor/_samples/jqueryadapter.html +99 -99
- data/vendor/assets/ckeditor/ckeditor/_samples/output_for_flash.html +275 -275
- data/vendor/assets/ckeditor/ckeditor/_samples/output_html.html +285 -285
- data/vendor/assets/ckeditor/ckeditor/_samples/output_xhtml.html +181 -177
- data/vendor/assets/ckeditor/ckeditor/_samples/php/advanced.php +120 -120
- data/vendor/assets/ckeditor/ckeditor/_samples/php/events.php +153 -153
- data/vendor/assets/ckeditor/ckeditor/_samples/php/index.html +47 -47
- data/vendor/assets/ckeditor/ckeditor/_samples/php/replace.php +87 -87
- data/vendor/assets/ckeditor/ckeditor/_samples/php/replaceall.php +88 -88
- data/vendor/assets/ckeditor/ckeditor/_samples/php/standalone.php +83 -83
- data/vendor/assets/ckeditor/ckeditor/_samples/placeholder.html +81 -81
- data/vendor/assets/ckeditor/ckeditor/_samples/readonly.html +91 -91
- data/vendor/assets/ckeditor/ckeditor/_samples/replacebyclass.html +64 -64
- data/vendor/assets/ckeditor/ckeditor/_samples/replacebycode.html +97 -97
- data/vendor/assets/ckeditor/ckeditor/_samples/sample.css +163 -163
- data/vendor/assets/ckeditor/ckeditor/_samples/sample.js +65 -65
- data/vendor/assets/ckeditor/ckeditor/_samples/sample_posteddata.php +21 -21
- data/vendor/assets/ckeditor/ckeditor/_samples/sharedspaces.html +153 -153
- data/vendor/assets/ckeditor/ckeditor/_samples/skins.html +110 -110
- data/vendor/assets/ckeditor/ckeditor/_samples/stylesheetparser.html +93 -93
- data/vendor/assets/ckeditor/ckeditor/_samples/tableresize.html +115 -115
- data/vendor/assets/ckeditor/ckeditor/_samples/ui_color.html +129 -129
- data/vendor/assets/ckeditor/ckeditor/_samples/ui_languages.html +134 -134
- data/vendor/assets/ckeditor/ckeditor/_source/adapters/jquery.js +306 -306
- data/vendor/assets/ckeditor/ckeditor/_source/core/_bootstrap.js +87 -87
- data/vendor/assets/ckeditor/ckeditor/_source/core/ckeditor.js +141 -141
- data/vendor/assets/ckeditor/ckeditor/_source/core/ckeditor_base.js +235 -227
- data/vendor/assets/ckeditor/ckeditor/_source/core/ckeditor_basic.js +238 -238
- data/vendor/assets/ckeditor/ckeditor/_source/core/command.js +225 -209
- data/vendor/assets/ckeditor/ckeditor/_source/core/commanddefinition.js +129 -129
- data/vendor/assets/ckeditor/ckeditor/_source/core/config.js +447 -431
- data/vendor/assets/ckeditor/ckeditor/_source/core/dataprocessor.js +65 -65
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom.js +20 -20
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/comment.js +44 -32
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/document.js +251 -251
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/documentfragment.js +49 -49
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/domobject.js +258 -258
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/element.js +1796 -1681
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/elementpath.js +117 -119
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/event.js +145 -145
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/node.js +691 -695
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/nodelist.js +26 -26
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/range.js +2068 -2032
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/rangelist.js +213 -213
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/text.js +128 -128
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/walker.js +496 -462
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/window.js +96 -96
- data/vendor/assets/ckeditor/ckeditor/_source/core/dtd.js +266 -266
- data/vendor/assets/ckeditor/ckeditor/_source/core/editor.js +1059 -1059
- data/vendor/assets/ckeditor/ckeditor/_source/core/editor_basic.js +186 -186
- data/vendor/assets/ckeditor/ckeditor/_source/core/env.js +305 -291
- data/vendor/assets/ckeditor/ckeditor/_source/core/event.js +342 -342
- data/vendor/assets/ckeditor/ckeditor/_source/core/eventInfo.js +120 -120
- data/vendor/assets/ckeditor/ckeditor/_source/core/focusmanager.js +152 -152
- data/vendor/assets/ckeditor/ckeditor/_source/core/htmlparser.js +224 -224
- data/vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/basicwriter.js +145 -145
- data/vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/cdata.js +43 -43
- data/vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/comment.js +60 -60
- data/vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/element.js +308 -308
- data/vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/filter.js +288 -288
- data/vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/fragment.js +537 -497
- data/vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/text.js +53 -55
- data/vendor/assets/ckeditor/ckeditor/_source/core/lang.js +157 -157
- data/vendor/assets/ckeditor/ckeditor/_source/core/loader.js +240 -240
- data/vendor/assets/ckeditor/ckeditor/_source/core/plugindefinition.js +83 -83
- data/vendor/assets/ckeditor/ckeditor/_source/core/plugins.js +103 -103
- data/vendor/assets/ckeditor/ckeditor/_source/core/resourcemanager.js +238 -238
- data/vendor/assets/ckeditor/ckeditor/_source/core/scriptloader.js +180 -180
- data/vendor/assets/ckeditor/ckeditor/_source/core/skins.js +184 -184
- data/vendor/assets/ckeditor/ckeditor/_source/core/themes.js +19 -19
- data/vendor/assets/ckeditor/ckeditor/_source/core/tools.js +763 -763
- data/vendor/assets/ckeditor/ckeditor/_source/core/ui.js +128 -128
- data/vendor/assets/ckeditor/ckeditor/_source/lang/_languages.js +84 -84
- data/vendor/assets/ckeditor/ckeditor/_source/lang/_translationstatus.txt +63 -61
- data/vendor/assets/ckeditor/ckeditor/_source/lang/af.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/ar.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/bg.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/bn.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/bs.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/ca.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/cs.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/cy.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/da.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/de.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/el.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/en-au.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/en-ca.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/en-gb.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/en.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/eo.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/es.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/et.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/eu.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/fa.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/fi.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/fo.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/fr-ca.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/fr.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/gl.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/gu.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/he.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/hi.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/hr.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/hu.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/is.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/it.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/ja.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/ka.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/km.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/ko.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/lt.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/lv.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/mk.js +814 -0
- data/vendor/assets/ckeditor/ckeditor/_source/lang/mn.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/ms.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/nb.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/nl.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/no.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/pl.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/pt-br.js +814 -811
- data/vendor/assets/ckeditor/ckeditor/_source/lang/pt.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/ro.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/ru.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/sk.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/sl.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/sr-latn.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/sr.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/sv.js +814 -811
- data/vendor/assets/ckeditor/ckeditor/_source/lang/th.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/tr.js +814 -811
- data/vendor/assets/ckeditor/ckeditor/_source/lang/ug.js +814 -0
- data/vendor/assets/ckeditor/ckeditor/_source/lang/uk.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/vi.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/zh-cn.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/zh.js +815 -812
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +222 -222
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/_translationstatus.txt +23 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/cs.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/cy.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/da.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/de.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/el.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -108
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/eo.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/fa.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/fi.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/fr.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/gu.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/he.js +89 -216
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/it.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/mk.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/nb.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/nl.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/no.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/tr.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/ug.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/vi.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/zh-cn.js +89 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/plugin.js +47 -47
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/about/dialogs/about.js +76 -76
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/about/plugin.js +24 -24
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/adobeair/plugin.js +228 -228
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/ajax/plugin.js +152 -152
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/autogrow/plugin.js +141 -88
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/basicstyles/plugin.js +129 -101
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/bbcode/plugin.js +931 -931
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/bidi/plugin.js +334 -334
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/blockquote/plugin.js +305 -305
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/button/plugin.js +290 -290
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/clipboard/dialogs/paste.js +223 -223
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/clipboard/plugin.js +479 -453
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/colorbutton/plugin.js +300 -294
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +387 -340
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/colordialog/plugin.js +15 -15
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/contextmenu/plugin.js +179 -177
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/_translationstatus.txt +27 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/bg.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/cs.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/cy.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/da.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/de.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/el.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/en.js +16 -16
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/eo.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/et.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/fa.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/fi.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/fr.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/gu.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/he.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/hr.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/it.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/nb.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/nl.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/no.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/pl.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/tr.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/ug.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/uk.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/vi.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/zh-cn.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/plugin.js +173 -173
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/dialog/dialogDefinition.js +1166 -1166
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/dialog/plugin.js +3319 -3289
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/dialogadvtab/plugin.js +208 -207
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/dialogui/plugin.js +1549 -1541
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/div/dialogs/div.js +535 -535
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/div/plugin.js +121 -121
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/docprops/dialogs/docprops.js +674 -686
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/docprops/plugin.js +22 -22
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/domiterator/plugin.js +366 -361
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/editingblock/plugin.js +278 -275
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/elementspath/plugin.js +218 -218
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/enterkey/plugin.js +433 -413
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/entities/plugin.js +254 -250
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/fakeobjects/plugin.js +175 -175
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/filebrowser/plugin.js +533 -524
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/find/dialogs/find.js +915 -903
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/find/plugin.js +47 -47
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/flash/dialogs/flash.js +674 -673
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/flash/plugin.js +154 -154
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/floatpanel/plugin.js +476 -428
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/font/plugin.js +234 -234
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/format/plugin.js +197 -197
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/dialogs/button.js +118 -118
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/dialogs/checkbox.js +153 -153
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/dialogs/form.js +177 -177
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js +100 -100
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/dialogs/radio.js +135 -135
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/dialogs/select.js +558 -558
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/dialogs/textarea.js +135 -114
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/dialogs/textfield.js +199 -199
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/plugin.js +288 -288
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/horizontalrule/plugin.js +48 -48
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/htmldataprocessor/plugin.js +600 -595
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/htmlwriter/plugin.js +319 -319
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/iframe/dialogs/iframe.js +229 -229
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/iframe/plugin.js +87 -87
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/iframedialog/plugin.js +188 -188
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/image/dialogs/image.js +1406 -1406
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/image/plugin.js +164 -81
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/indent/plugin.js +480 -461
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/justify/plugin.js +251 -253
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/keystrokes/plugin.js +225 -225
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/link/dialogs/anchor.js +144 -144
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/link/dialogs/link.js +1427 -1424
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/link/plugin.js +374 -374
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/list/plugin.js +967 -734
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/listblock/plugin.js +260 -268
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +225 -225
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/liststyle/plugin.js +66 -66
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/maximize/plugin.js +353 -352
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/menu/plugin.js +542 -541
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/menubutton/plugin.js +98 -98
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/newpage/plugin.js +55 -54
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/pagebreak/plugin.js +164 -164
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/panel/plugin.js +396 -403
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/panelbutton/plugin.js +144 -144
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/pastefromword/filter/default.js +1367 -1367
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/pastefromword/plugin.js +141 -141
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +67 -67
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/pastetext/plugin.js +98 -98
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/dialogs/placeholder.js +71 -71
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/_translationstatus.txt +26 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/bg.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/cs.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/cy.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/da.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/de.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/el.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/en.js +16 -16
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/eo.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/et.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/fa.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/fi.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/fr.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/he.js +16 -16
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/hr.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/it.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/nb.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/nl.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/no.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/pl.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/tr.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/ug.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/uk.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/vi.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/zh-cn.js +16 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/plugin.js +171 -171
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/popup/plugin.js +69 -64
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/preview/plugin.js +113 -109
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/print/plugin.js +42 -42
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/removeformat/plugin.js +185 -185
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/resize/plugin.js +169 -168
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/richcombo/plugin.js +381 -381
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/save/plugin.js +56 -56
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/scayt/dialogs/options.js +537 -537
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/scayt/dialogs/toolbar.css +71 -71
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/scayt/plugin.js +973 -964
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/selection/plugin.js +1855 -1601
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/showblocks/plugin.js +160 -160
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/showborders/plugin.js +207 -207
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/dialogs/smiley.js +224 -224
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/plugin.js +94 -94
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/sourcearea/plugin.js +209 -209
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js +350 -350
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/_translationstatus.txt +19 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/cs.js +126 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/cy.js +126 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/de.js +126 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/en.js +126 -89
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/eo.js +126 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/et.js +126 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/fa.js +126 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/fi.js +126 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/fr.js +126 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/hr.js +126 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/it.js +126 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/nb.js +126 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/nl.js +126 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/no.js +126 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/tr.js +126 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/ug.js +126 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/zh-cn.js +126 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/plugin.js +70 -70
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/styles/plugin.js +1706 -1696
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/styles/styles/default.js +88 -88
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/stylescombo/plugin.js +218 -218
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/stylesheetparser/plugin.js +148 -148
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/tab/plugin.js +367 -367
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/table/dialogs/table.js +618 -602
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/table/plugin.js +78 -78
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/tableresize/plugin.js +443 -443
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +520 -525
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/tabletools/plugin.js +1185 -1194
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/templates/dialogs/templates.js +234 -234
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/templates/plugin.js +100 -99
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/templates/templates/default.js +94 -94
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/toolbar/plugin.js +545 -545
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js +205 -205
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/_translationstatus.txt +27 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/bg.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/cs.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/cy.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/da.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/de.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/el.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/en.js +15 -15
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/eo.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/et.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/fa.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/fi.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/fr.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/he.js +15 -15
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/hr.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/it.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/mk.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/nb.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/nl.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/no.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/pl.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/tr.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/ug.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/uk.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/vi.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/zh-cn.js +15 -0
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/plugin.js +37 -37
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/yui/assets/yui.css +15 -15
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/yui/yui.js +71 -71
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/undo/plugin.js +593 -580
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/wsc/dialogs/ciframe.html +49 -49
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html +52 -52
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/wsc/dialogs/wsc.css +82 -82
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/wsc/dialogs/wsc.js +192 -192
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/wsc/plugin.js +33 -33
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/wysiwygarea/plugin.js +1346 -1351
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/xml/plugin.js +170 -170
- data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/dialog.css +989 -943
- data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/editor.css +25 -25
- data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/elementspath.css +73 -73
- data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/icons.css +366 -366
- data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/mainui.css +206 -203
- data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/menu.css +232 -232
- data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/panel.css +217 -217
- data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/presets.css +49 -49
- data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/reset.css +85 -84
- data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/richcombo.css +287 -287
- data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/skin.js +236 -236
- data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/templates.css +88 -88
- data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/toolbar.css +408 -407
- data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/dialog.css +891 -844
- data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/editor.css +25 -25
- data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/elementspath.css +74 -74
- data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/icons.css +363 -363
- data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/mainui.css +153 -153
- data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/menu.css +229 -229
- data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/panel.css +212 -212
- data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/presets.css +49 -49
- data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/reset.css +85 -84
- data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/richcombo.css +309 -309
- data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/skin.js +74 -74
- data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/templates.css +87 -87
- data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/toolbar.css +522 -522
- data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/dialog.css +907 -861
- data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/editor.css +25 -25
- data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/elementspath.css +74 -74
- data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/icons.css +363 -363
- data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/mainui.css +162 -162
- data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/menu.css +232 -232
- data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/panel.css +212 -212
- data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/presets.css +50 -50
- data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/reset.css +85 -84
- data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/richcombo.css +302 -302
- data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/skin.js +70 -70
- data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/templates.css +87 -87
- data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/toolbar.css +465 -465
- data/vendor/assets/ckeditor/ckeditor/_source/themes/default/theme.js +407 -395
- data/vendor/assets/ckeditor/ckeditor/adapters/jquery.js +6 -6
- data/vendor/assets/ckeditor/ckeditor/ckeditor.asp +955 -955
- data/vendor/assets/ckeditor/ckeditor/ckeditor.js +134 -130
- data/vendor/assets/ckeditor/ckeditor/ckeditor.pack +211 -211
- data/vendor/assets/ckeditor/ckeditor/ckeditor.php +29 -29
- data/vendor/assets/ckeditor/ckeditor/ckeditor_basic.js +8 -8
- data/vendor/assets/ckeditor/ckeditor/ckeditor_basic_source.js +20 -20
- data/vendor/assets/ckeditor/ckeditor/ckeditor_php4.php +566 -566
- data/vendor/assets/ckeditor/ckeditor/ckeditor_php5.php +556 -556
- data/vendor/assets/ckeditor/ckeditor/ckeditor_source.js +14 -4
- data/vendor/assets/ckeditor/ckeditor/config.js +11 -11
- data/vendor/assets/ckeditor/ckeditor/contents.css +25 -25
- data/vendor/assets/ckeditor/ckeditor/lang/_languages.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/lang/_translationstatus.txt +61 -59
- data/vendor/assets/ckeditor/ckeditor/lang/af.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/ar.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/bg.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/bn.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/bs.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/ca.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/cs.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/cy.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/da.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/de.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/el.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/en-au.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/en-ca.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/en-gb.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/en.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/eo.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/es.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/et.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/eu.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/fa.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/fi.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/fo.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/fr-ca.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/fr.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/gl.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/gu.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/he.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/hi.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/hr.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/hu.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/is.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/it.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/ja.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/ka.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/km.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/ko.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/lt.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/lv.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/mk.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/lang/mn.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/ms.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/nb.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/nl.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/no.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/pl.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/pt-br.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/pt.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/ro.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/ru.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/sk.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/sl.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/sr-latn.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/sr.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/sv.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/th.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/tr.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/ug.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/lang/uk.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/vi.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/zh-cn.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/lang/zh.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/_translationstatus.txt +23 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/cs.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/cy.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/da.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/de.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/el.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/en.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/eo.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/fa.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/fi.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/fr.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/gu.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/he.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/it.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/mk.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/nb.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/nl.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/no.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/tr.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/ug.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/vi.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/zh-cn.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/about/dialogs/about.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/adobeair/plugin.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/ajax/plugin.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/autogrow/plugin.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/plugins/bbcode/plugin.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/clipboard/dialogs/paste.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/plugins/colordialog/dialogs/colordialog.js +3 -3
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/_translationstatus.txt +27 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/bg.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/cs.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/cy.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/da.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/de.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/el.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/en.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/eo.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/et.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/fa.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/fi.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/fr.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/gu.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/he.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/hr.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/it.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/nb.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/nl.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/no.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/pl.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/tr.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/ug.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/uk.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/vi.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/zh-cn.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/devtools/plugin.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/plugins/dialog/dialogDefinition.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/div/dialogs/div.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/docprops/dialogs/docprops.js +3 -3
- data/vendor/assets/ckeditor/ckeditor/plugins/docprops/plugin.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/find/dialogs/find.js +6 -6
- data/vendor/assets/ckeditor/ckeditor/plugins/flash/dialogs/flash.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/plugins/forms/dialogs/button.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/forms/dialogs/checkbox.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/forms/dialogs/form.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/forms/dialogs/hiddenfield.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/forms/dialogs/radio.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/forms/dialogs/select.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/forms/dialogs/textarea.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/plugins/forms/dialogs/textfield.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/iframe/dialogs/iframe.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/iframedialog/plugin.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/image/dialogs/image.js +9 -9
- data/vendor/assets/ckeditor/ckeditor/plugins/link/dialogs/anchor.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/link/dialogs/link.js +6 -6
- data/vendor/assets/ckeditor/ckeditor/plugins/liststyle/dialogs/liststyle.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/pastefromword/filter/default.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/pastetext/dialogs/pastetext.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/dialogs/placeholder.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/_translationstatus.txt +26 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/bg.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/cs.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/cy.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/da.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/de.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/el.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/en.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/eo.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/et.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/fa.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/fi.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/fr.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/he.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/hr.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/it.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/nb.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/nl.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/no.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/pl.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/tr.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/ug.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/uk.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/vi.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/zh-cn.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/plugin.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/plugins/scayt/dialogs/options.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/scayt/dialogs/toolbar.css +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/smiley/dialogs/smiley.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/dialogs/specialchar.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/_translationstatus.txt +19 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/cs.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/cy.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/de.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/en.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/eo.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/et.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/fa.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/fi.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/fr.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/hr.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/it.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/nb.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/nl.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/no.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/tr.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/ug.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/zh-cn.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/styles/styles/default.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/stylesheetparser/plugin.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/table/dialogs/table.js +5 -5
- data/vendor/assets/ckeditor/ckeditor/plugins/tableresize/plugin.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/tabletools/dialogs/tableCell.js +3 -3
- data/vendor/assets/ckeditor/ckeditor/plugins/templates/dialogs/templates.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/templates/templates/default.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/dialogs/uicolor.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/_translationstatus.txt +27 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/bg.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/cs.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/cy.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/da.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/de.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/el.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/en.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/eo.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/et.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/fa.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/fi.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/fr.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/he.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/hr.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/it.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/mk.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/nb.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/nl.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/no.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/pl.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/tr.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/ug.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/uk.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/vi.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/zh-cn.js +6 -0
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/plugin.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/yui/assets/yui.css +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/yui/yui.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/wsc/dialogs/ciframe.html +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/wsc/dialogs/wsc.css +1 -1
- data/vendor/assets/ckeditor/ckeditor/plugins/wsc/dialogs/wsc.js +2 -2
- data/vendor/assets/ckeditor/ckeditor/plugins/xml/plugin.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/skins/kama/dialog.css +2 -2
- data/vendor/assets/ckeditor/ckeditor/skins/kama/editor.css +4 -4
- data/vendor/assets/ckeditor/ckeditor/skins/kama/skin.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/skins/kama/templates.css +1 -1
- data/vendor/assets/ckeditor/ckeditor/skins/office2003/dialog.css +2 -2
- data/vendor/assets/ckeditor/ckeditor/skins/office2003/editor.css +2 -2
- data/vendor/assets/ckeditor/ckeditor/skins/office2003/skin.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/skins/office2003/templates.css +1 -1
- data/vendor/assets/ckeditor/ckeditor/skins/v2/dialog.css +2 -2
- data/vendor/assets/ckeditor/ckeditor/skins/v2/editor.css +2 -2
- data/vendor/assets/ckeditor/ckeditor/skins/v2/skin.js +1 -1
- data/vendor/assets/ckeditor/ckeditor/skins/v2/templates.css +1 -1
- data/vendor/assets/ckeditor/ckeditor/themes/default/theme.js +8 -8
- metadata +225 -3
@@ -1,48 +1,48 @@
|
|
1
|
-
/*
|
2
|
-
Copyright (c) 2003-
|
3
|
-
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
-
*/
|
5
|
-
|
6
|
-
/**
|
7
|
-
* @file Horizontal Rule plugin.
|
8
|
-
*/
|
9
|
-
|
10
|
-
(function()
|
11
|
-
{
|
12
|
-
var horizontalruleCmd =
|
13
|
-
{
|
14
|
-
canUndo : false, // The undo snapshot will be handled by 'insertElement'.
|
15
|
-
exec : function( editor )
|
16
|
-
{
|
17
|
-
var hr = editor.document.createElement( 'hr' ),
|
18
|
-
range = new CKEDITOR.dom.range( editor.document );
|
19
|
-
|
20
|
-
editor.insertElement( hr );
|
21
|
-
|
22
|
-
// If there's nothing or a non-editable block followed by, establish a new paragraph
|
23
|
-
// to make sure cursor is not trapped.
|
24
|
-
range.moveToPosition( hr, CKEDITOR.POSITION_AFTER_END );
|
25
|
-
var next = hr.getNext();
|
26
|
-
if ( !next || next.type == CKEDITOR.NODE_ELEMENT && !next.isEditable() )
|
27
|
-
range.fixBlock( true, editor.config.enterMode == CKEDITOR.ENTER_DIV ? 'div' : 'p' );
|
28
|
-
|
29
|
-
range.select();
|
30
|
-
}
|
31
|
-
};
|
32
|
-
|
33
|
-
var pluginName = 'horizontalrule';
|
34
|
-
|
35
|
-
// Register a plugin named "horizontalrule".
|
36
|
-
CKEDITOR.plugins.add( pluginName,
|
37
|
-
{
|
38
|
-
init : function( editor )
|
39
|
-
{
|
40
|
-
editor.addCommand( pluginName, horizontalruleCmd );
|
41
|
-
editor.ui.addButton( 'HorizontalRule',
|
42
|
-
{
|
43
|
-
label : editor.lang.horizontalrule,
|
44
|
-
command : pluginName
|
45
|
-
});
|
46
|
-
}
|
47
|
-
});
|
48
|
-
})();
|
1
|
+
/*
|
2
|
+
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
3
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
+
*/
|
5
|
+
|
6
|
+
/**
|
7
|
+
* @file Horizontal Rule plugin.
|
8
|
+
*/
|
9
|
+
|
10
|
+
(function()
|
11
|
+
{
|
12
|
+
var horizontalruleCmd =
|
13
|
+
{
|
14
|
+
canUndo : false, // The undo snapshot will be handled by 'insertElement'.
|
15
|
+
exec : function( editor )
|
16
|
+
{
|
17
|
+
var hr = editor.document.createElement( 'hr' ),
|
18
|
+
range = new CKEDITOR.dom.range( editor.document );
|
19
|
+
|
20
|
+
editor.insertElement( hr );
|
21
|
+
|
22
|
+
// If there's nothing or a non-editable block followed by, establish a new paragraph
|
23
|
+
// to make sure cursor is not trapped.
|
24
|
+
range.moveToPosition( hr, CKEDITOR.POSITION_AFTER_END );
|
25
|
+
var next = hr.getNext();
|
26
|
+
if ( !next || next.type == CKEDITOR.NODE_ELEMENT && !next.isEditable() )
|
27
|
+
range.fixBlock( true, editor.config.enterMode == CKEDITOR.ENTER_DIV ? 'div' : 'p' );
|
28
|
+
|
29
|
+
range.select();
|
30
|
+
}
|
31
|
+
};
|
32
|
+
|
33
|
+
var pluginName = 'horizontalrule';
|
34
|
+
|
35
|
+
// Register a plugin named "horizontalrule".
|
36
|
+
CKEDITOR.plugins.add( pluginName,
|
37
|
+
{
|
38
|
+
init : function( editor )
|
39
|
+
{
|
40
|
+
editor.addCommand( pluginName, horizontalruleCmd );
|
41
|
+
editor.ui.addButton( 'HorizontalRule',
|
42
|
+
{
|
43
|
+
label : editor.lang.horizontalrule,
|
44
|
+
command : pluginName
|
45
|
+
});
|
46
|
+
}
|
47
|
+
});
|
48
|
+
})();
|
@@ -1,595 +1,600 @@
|
|
1
|
-
/*
|
2
|
-
Copyright (c) 2003-
|
3
|
-
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
-
*/
|
5
|
-
|
6
|
-
(function()
|
7
|
-
{
|
8
|
-
// Regex to scan for at the end of blocks, which are actually placeholders.
|
9
|
-
// Safari transforms the to \xa0. (#4172)
|
10
|
-
var tailNbspRegex = /^[\t\r\n ]*(?: |\xa0)$/;
|
11
|
-
|
12
|
-
var protectedSourceMarker = '{cke_protected}';
|
13
|
-
|
14
|
-
// Return the last non-space child node of the block (#4344).
|
15
|
-
function lastNoneSpaceChild( block )
|
16
|
-
{
|
17
|
-
var lastIndex = block.children.length,
|
18
|
-
last = block.children[ lastIndex - 1 ];
|
19
|
-
while ( last && last.type == CKEDITOR.NODE_TEXT && !CKEDITOR.tools.trim( last.value ) )
|
20
|
-
last = block.children[ --lastIndex ];
|
21
|
-
return last;
|
22
|
-
}
|
23
|
-
|
24
|
-
function trimFillers( block, fromSource )
|
25
|
-
{
|
26
|
-
// If the current node is a block, and if we're converting from source or
|
27
|
-
// we're not in IE then search for and remove any tailing BR node.
|
28
|
-
//
|
29
|
-
// Also, any at the end of blocks are fillers, remove them as well.
|
30
|
-
// (#2886)
|
31
|
-
var children = block.children, lastChild = lastNoneSpaceChild( block );
|
32
|
-
if ( lastChild )
|
33
|
-
{
|
34
|
-
if ( ( fromSource || !CKEDITOR.env.ie ) && lastChild.type == CKEDITOR.NODE_ELEMENT && lastChild.name == 'br' )
|
35
|
-
children.pop();
|
36
|
-
if ( lastChild.type == CKEDITOR.NODE_TEXT && tailNbspRegex.test( lastChild.value ) )
|
37
|
-
children.pop();
|
38
|
-
}
|
39
|
-
}
|
40
|
-
|
41
|
-
function blockNeedsExtension( block, fromSource, extendEmptyBlock )
|
42
|
-
{
|
43
|
-
if( !fromSource && ( !extendEmptyBlock ||
|
44
|
-
typeof extendEmptyBlock == 'function' && ( extendEmptyBlock( block ) === false ) ) )
|
45
|
-
return false;
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
var lastChild = lastNoneSpaceChild( block );
|
57
|
-
|
58
|
-
return !lastChild || lastChild &&
|
59
|
-
( lastChild.type == CKEDITOR.NODE_ELEMENT && lastChild.name == 'br'
|
60
|
-
// Some of the controls in form needs extension too,
|
61
|
-
// to move cursor at the end of the form. (#4791)
|
62
|
-
|| block.name == 'form' && lastChild.name == 'input' );
|
63
|
-
}
|
64
|
-
|
65
|
-
function getBlockExtension( isOutput, emptyBlockFiller )
|
66
|
-
{
|
67
|
-
return function( node )
|
68
|
-
{
|
69
|
-
trimFillers( node, !isOutput );
|
70
|
-
|
71
|
-
if ( blockNeedsExtension( node, !isOutput, emptyBlockFiller ) )
|
72
|
-
{
|
73
|
-
if ( isOutput || CKEDITOR.env.ie )
|
74
|
-
node.add( new CKEDITOR.htmlParser.text( '\xa0' ) );
|
75
|
-
else
|
76
|
-
node.add( new CKEDITOR.htmlParser.element( 'br', {} ) );
|
77
|
-
}
|
78
|
-
};
|
79
|
-
}
|
80
|
-
|
81
|
-
var dtd = CKEDITOR.dtd;
|
82
|
-
|
83
|
-
// Define orders of table elements.
|
84
|
-
var tableOrder = [ 'caption', 'colgroup', 'col', 'thead', 'tfoot', 'tbody' ];
|
85
|
-
|
86
|
-
// Find out the list of block-like tags that can contain <br>.
|
87
|
-
var blockLikeTags = CKEDITOR.tools.extend( {}, dtd.$block, dtd.$listItem, dtd.$tableContent );
|
88
|
-
for ( var i in blockLikeTags )
|
89
|
-
{
|
90
|
-
if ( ! ( 'br' in dtd[i] ) )
|
91
|
-
delete blockLikeTags[i];
|
92
|
-
}
|
93
|
-
// We just avoid filler in <pre> right now.
|
94
|
-
// TODO: Support filler for <pre>, line break is also occupy line height.
|
95
|
-
delete blockLikeTags.pre;
|
96
|
-
var defaultDataFilterRules =
|
97
|
-
{
|
98
|
-
elements : {},
|
99
|
-
attributeNames :
|
100
|
-
[
|
101
|
-
// Event attributes (onXYZ) must not be directly set. They can become
|
102
|
-
// active in the editing area (IE|WebKit).
|
103
|
-
[ ( /^on/ ), 'data-cke-pa-on' ]
|
104
|
-
]
|
105
|
-
};
|
106
|
-
|
107
|
-
var defaultDataBlockFilterRules = { elements : {} };
|
108
|
-
|
109
|
-
for ( i in blockLikeTags )
|
110
|
-
defaultDataBlockFilterRules.elements[ i ] = getBlockExtension();
|
111
|
-
|
112
|
-
var defaultHtmlFilterRules =
|
113
|
-
{
|
114
|
-
elementNames :
|
115
|
-
[
|
116
|
-
// Remove the "cke:" namespace prefix.
|
117
|
-
[ ( /^cke:/ ), '' ],
|
118
|
-
|
119
|
-
// Ignore <?xml:namespace> tags.
|
120
|
-
[ ( /^\?xml:namespace$/ ), '' ]
|
121
|
-
],
|
122
|
-
|
123
|
-
attributeNames :
|
124
|
-
[
|
125
|
-
// Attributes saved for changes and protected attributes.
|
126
|
-
[ ( /^data-cke-(saved|pa)-/ ), '' ],
|
127
|
-
|
128
|
-
// All "data-cke-" attributes are to be ignored.
|
129
|
-
[ ( /^data-cke-.*/ ), '' ],
|
130
|
-
|
131
|
-
[ 'hidefocus', '' ]
|
132
|
-
],
|
133
|
-
|
134
|
-
elements :
|
135
|
-
{
|
136
|
-
$ : function( element )
|
137
|
-
{
|
138
|
-
var attribs = element.attributes;
|
139
|
-
|
140
|
-
if ( attribs )
|
141
|
-
{
|
142
|
-
// Elements marked as temporary are to be ignored.
|
143
|
-
if ( attribs[ 'data-cke-temp' ] )
|
144
|
-
return false;
|
145
|
-
|
146
|
-
// Remove duplicated attributes - #3789.
|
147
|
-
var attributeNames = [ 'name', 'href', 'src' ],
|
148
|
-
savedAttributeName;
|
149
|
-
for ( var i = 0 ; i < attributeNames.length ; i++ )
|
150
|
-
{
|
151
|
-
savedAttributeName = 'data-cke-saved-' + attributeNames[ i ];
|
152
|
-
savedAttributeName in attribs && ( delete attribs[ attributeNames[ i ] ] );
|
153
|
-
}
|
154
|
-
}
|
155
|
-
|
156
|
-
return element;
|
157
|
-
},
|
158
|
-
|
159
|
-
// The contents of table should be in correct order (#4809).
|
160
|
-
table : function( element )
|
161
|
-
{
|
162
|
-
var children = element.children;
|
163
|
-
children.sort( function ( node1, node2 )
|
164
|
-
{
|
165
|
-
return node1.type == CKEDITOR.NODE_ELEMENT && node2.type == node1.type ?
|
166
|
-
CKEDITOR.tools.indexOf( tableOrder, node1.name ) > CKEDITOR.tools.indexOf( tableOrder, node2.name ) ? 1 : -1 : 0;
|
167
|
-
} );
|
168
|
-
},
|
169
|
-
|
170
|
-
embed : function( element )
|
171
|
-
{
|
172
|
-
var parent = element.parent;
|
173
|
-
|
174
|
-
// If the <embed> is child of a <object>, copy the width
|
175
|
-
// and height attributes from it.
|
176
|
-
if ( parent && parent.name == 'object' )
|
177
|
-
{
|
178
|
-
var parentWidth = parent.attributes.width,
|
179
|
-
parentHeight = parent.attributes.height;
|
180
|
-
parentWidth && ( element.attributes.width = parentWidth );
|
181
|
-
parentHeight && ( element.attributes.height = parentHeight );
|
182
|
-
}
|
183
|
-
},
|
184
|
-
// Restore param elements into self-closing.
|
185
|
-
param : function( param )
|
186
|
-
{
|
187
|
-
param.children = [];
|
188
|
-
param.isEmpty = true;
|
189
|
-
return param;
|
190
|
-
},
|
191
|
-
|
192
|
-
// Remove empty link but not empty anchor.(#3829)
|
193
|
-
a : function( element )
|
194
|
-
{
|
195
|
-
if ( !( element.children.length ||
|
196
|
-
element.attributes.name ||
|
197
|
-
element.attributes[ 'data-cke-saved-name' ] ) )
|
198
|
-
{
|
199
|
-
return false;
|
200
|
-
}
|
201
|
-
},
|
202
|
-
|
203
|
-
// Remove dummy span in webkit.
|
204
|
-
span: function( element )
|
205
|
-
{
|
206
|
-
if ( element.attributes[ 'class' ] == 'Apple-style-span' )
|
207
|
-
delete element.name;
|
208
|
-
},
|
209
|
-
|
210
|
-
// Empty <pre> in IE is reported with filler node ( ).
|
211
|
-
pre : function( element ) { CKEDITOR.env.ie && trimFillers( element ); },
|
212
|
-
|
213
|
-
html : function( element )
|
214
|
-
{
|
215
|
-
delete element.attributes.contenteditable;
|
216
|
-
delete element.attributes[ 'class' ];
|
217
|
-
},
|
218
|
-
|
219
|
-
body : function( element )
|
220
|
-
{
|
221
|
-
delete element.attributes.spellcheck;
|
222
|
-
delete element.attributes.contenteditable;
|
223
|
-
},
|
224
|
-
|
225
|
-
style : function( element )
|
226
|
-
{
|
227
|
-
var child = element.children[ 0 ];
|
228
|
-
child && child.value && ( child.value = CKEDITOR.tools.trim( child.value ));
|
229
|
-
|
230
|
-
if ( !element.attributes.type )
|
231
|
-
element.attributes.type = 'text/css';
|
232
|
-
},
|
233
|
-
|
234
|
-
title : function( element )
|
235
|
-
{
|
236
|
-
var titleText = element.children[ 0 ];
|
237
|
-
titleText && ( titleText.value = element.attributes[ 'data-cke-title' ] || '' );
|
238
|
-
}
|
239
|
-
},
|
240
|
-
|
241
|
-
attributes :
|
242
|
-
{
|
243
|
-
'class' : function( value, element )
|
244
|
-
{
|
245
|
-
// Remove all class names starting with "cke_".
|
246
|
-
return CKEDITOR.tools.ltrim( value.replace( /(?:^|\s+)cke_[^\s]*/g, '' ) ) || false;
|
247
|
-
}
|
248
|
-
}
|
249
|
-
};
|
250
|
-
|
251
|
-
if ( CKEDITOR.env.ie )
|
252
|
-
{
|
253
|
-
// IE outputs style attribute in capital letters. We should convert
|
254
|
-
// them back to lower case, while not hurting the values (#5930)
|
255
|
-
defaultHtmlFilterRules.attributes.style = function( value, element )
|
256
|
-
{
|
257
|
-
return value.replace( /(^|;)([^\:]+)/g, function( match )
|
258
|
-
{
|
259
|
-
return match.toLowerCase();
|
260
|
-
});
|
261
|
-
};
|
262
|
-
}
|
263
|
-
|
264
|
-
function protectReadOnly( element )
|
265
|
-
{
|
266
|
-
var attrs = element.attributes;
|
267
|
-
|
268
|
-
// We should flag that the element was locked by our code so
|
269
|
-
// it'll be editable by the editor functions (#6046).
|
270
|
-
if ( attrs.contenteditable != "false" )
|
271
|
-
attrs[ 'data-cke-editable' ] = attrs.contenteditable ? 'true' : 1;
|
272
|
-
|
273
|
-
attrs.contenteditable = "false";
|
274
|
-
}
|
275
|
-
function unprotectReadyOnly( element )
|
276
|
-
{
|
277
|
-
var attrs = element.attributes;
|
278
|
-
switch( attrs[ 'data-cke-editable' ] )
|
279
|
-
{
|
280
|
-
case 'true': attrs.contenteditable = 'true'; break;
|
281
|
-
case '1': delete attrs.contenteditable; break;
|
282
|
-
}
|
283
|
-
}
|
284
|
-
// Disable form elements editing mode provided by some browers. (#5746)
|
285
|
-
for ( i in { input : 1, textarea : 1 } )
|
286
|
-
{
|
287
|
-
defaultDataFilterRules.elements[ i ] = protectReadOnly;
|
288
|
-
defaultHtmlFilterRules.elements[ i ] = unprotectReadyOnly;
|
289
|
-
}
|
290
|
-
|
291
|
-
var protectElementRegex = /<(a|area|img|input)\b([^>]*)>/gi,
|
292
|
-
protectAttributeRegex = /\b(href|src|name)\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|(?:[^ "'>]+))/gi;
|
293
|
-
|
294
|
-
var protectElementsRegex = /(?:<style(?=[ >])[^>]*>[\s\S]*<\/style>)|(?:<(:?link|meta|base)[^>]*>)/gi,
|
295
|
-
encodedElementsRegex = /<cke:encoded>([^<]*)<\/cke:encoded>/gi;
|
296
|
-
|
297
|
-
var protectElementNamesRegex = /(<\/?)((?:object|embed|param|html|body|head|title)[^>]*>)/gi,
|
298
|
-
unprotectElementNamesRegex = /(<\/?)cke:((?:html|body|head|title)[^>]*>)/gi;
|
299
|
-
|
300
|
-
var protectSelfClosingRegex = /<cke:(param|embed)([^>]*?)\/?>(?!\s*<\/cke:\1)/gi;
|
301
|
-
|
302
|
-
function protectAttributes( html )
|
303
|
-
{
|
304
|
-
return html.replace( protectElementRegex, function( element, tag, attributes )
|
305
|
-
{
|
306
|
-
return '<' + tag + attributes.replace( protectAttributeRegex, function( fullAttr, attrName )
|
307
|
-
{
|
308
|
-
//
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
'
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
{
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
//
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
//
|
405
|
-
//
|
406
|
-
//
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
'
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
//
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
{
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
dataProcessor.dataFilter.addRules(
|
461
|
-
dataProcessor.
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
this.
|
482
|
-
this.
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
//
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
//
|
496
|
-
// the
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
//
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
//
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
//
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
//
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
//
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
data =
|
526
|
-
|
527
|
-
//
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
//
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
*
|
572
|
-
*
|
573
|
-
*
|
574
|
-
* config.forceSimpleAmpersand
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
*
|
579
|
-
*
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
*
|
584
|
-
*
|
585
|
-
* @
|
586
|
-
*
|
587
|
-
* config.fillEmptyBlocks
|
588
|
-
*
|
589
|
-
*
|
590
|
-
*
|
591
|
-
*
|
592
|
-
*
|
593
|
-
*
|
594
|
-
*
|
595
|
-
|
1
|
+
/*
|
2
|
+
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
3
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
+
*/
|
5
|
+
|
6
|
+
(function()
|
7
|
+
{
|
8
|
+
// Regex to scan for at the end of blocks, which are actually placeholders.
|
9
|
+
// Safari transforms the to \xa0. (#4172)
|
10
|
+
var tailNbspRegex = /^[\t\r\n ]*(?: |\xa0)$/;
|
11
|
+
|
12
|
+
var protectedSourceMarker = '{cke_protected}';
|
13
|
+
|
14
|
+
// Return the last non-space child node of the block (#4344).
|
15
|
+
function lastNoneSpaceChild( block )
|
16
|
+
{
|
17
|
+
var lastIndex = block.children.length,
|
18
|
+
last = block.children[ lastIndex - 1 ];
|
19
|
+
while ( last && last.type == CKEDITOR.NODE_TEXT && !CKEDITOR.tools.trim( last.value ) )
|
20
|
+
last = block.children[ --lastIndex ];
|
21
|
+
return last;
|
22
|
+
}
|
23
|
+
|
24
|
+
function trimFillers( block, fromSource )
|
25
|
+
{
|
26
|
+
// If the current node is a block, and if we're converting from source or
|
27
|
+
// we're not in IE then search for and remove any tailing BR node.
|
28
|
+
//
|
29
|
+
// Also, any at the end of blocks are fillers, remove them as well.
|
30
|
+
// (#2886)
|
31
|
+
var children = block.children, lastChild = lastNoneSpaceChild( block );
|
32
|
+
if ( lastChild )
|
33
|
+
{
|
34
|
+
if ( ( fromSource || !CKEDITOR.env.ie ) && lastChild.type == CKEDITOR.NODE_ELEMENT && lastChild.name == 'br' )
|
35
|
+
children.pop();
|
36
|
+
if ( lastChild.type == CKEDITOR.NODE_TEXT && tailNbspRegex.test( lastChild.value ) )
|
37
|
+
children.pop();
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
function blockNeedsExtension( block, fromSource, extendEmptyBlock )
|
42
|
+
{
|
43
|
+
if( !fromSource && ( !extendEmptyBlock ||
|
44
|
+
typeof extendEmptyBlock == 'function' && ( extendEmptyBlock( block ) === false ) ) )
|
45
|
+
return false;
|
46
|
+
|
47
|
+
// 1. For IE version >=8, empty blocks are displayed correctly themself in wysiwiyg;
|
48
|
+
// 2. For the rest, at least table cell and list item need no filler space.
|
49
|
+
// (#6248)
|
50
|
+
if ( fromSource && CKEDITOR.env.ie &&
|
51
|
+
( document.documentMode > 7
|
52
|
+
|| block.name in CKEDITOR.dtd.tr
|
53
|
+
|| block.name in CKEDITOR.dtd.$listItem ) )
|
54
|
+
return false;
|
55
|
+
|
56
|
+
var lastChild = lastNoneSpaceChild( block );
|
57
|
+
|
58
|
+
return !lastChild || lastChild &&
|
59
|
+
( lastChild.type == CKEDITOR.NODE_ELEMENT && lastChild.name == 'br'
|
60
|
+
// Some of the controls in form needs extension too,
|
61
|
+
// to move cursor at the end of the form. (#4791)
|
62
|
+
|| block.name == 'form' && lastChild.name == 'input' );
|
63
|
+
}
|
64
|
+
|
65
|
+
function getBlockExtension( isOutput, emptyBlockFiller )
|
66
|
+
{
|
67
|
+
return function( node )
|
68
|
+
{
|
69
|
+
trimFillers( node, !isOutput );
|
70
|
+
|
71
|
+
if ( blockNeedsExtension( node, !isOutput, emptyBlockFiller ) )
|
72
|
+
{
|
73
|
+
if ( isOutput || CKEDITOR.env.ie )
|
74
|
+
node.add( new CKEDITOR.htmlParser.text( '\xa0' ) );
|
75
|
+
else
|
76
|
+
node.add( new CKEDITOR.htmlParser.element( 'br', {} ) );
|
77
|
+
}
|
78
|
+
};
|
79
|
+
}
|
80
|
+
|
81
|
+
var dtd = CKEDITOR.dtd;
|
82
|
+
|
83
|
+
// Define orders of table elements.
|
84
|
+
var tableOrder = [ 'caption', 'colgroup', 'col', 'thead', 'tfoot', 'tbody' ];
|
85
|
+
|
86
|
+
// Find out the list of block-like tags that can contain <br>.
|
87
|
+
var blockLikeTags = CKEDITOR.tools.extend( {}, dtd.$block, dtd.$listItem, dtd.$tableContent );
|
88
|
+
for ( var i in blockLikeTags )
|
89
|
+
{
|
90
|
+
if ( ! ( 'br' in dtd[i] ) )
|
91
|
+
delete blockLikeTags[i];
|
92
|
+
}
|
93
|
+
// We just avoid filler in <pre> right now.
|
94
|
+
// TODO: Support filler for <pre>, line break is also occupy line height.
|
95
|
+
delete blockLikeTags.pre;
|
96
|
+
var defaultDataFilterRules =
|
97
|
+
{
|
98
|
+
elements : {},
|
99
|
+
attributeNames :
|
100
|
+
[
|
101
|
+
// Event attributes (onXYZ) must not be directly set. They can become
|
102
|
+
// active in the editing area (IE|WebKit).
|
103
|
+
[ ( /^on/ ), 'data-cke-pa-on' ]
|
104
|
+
]
|
105
|
+
};
|
106
|
+
|
107
|
+
var defaultDataBlockFilterRules = { elements : {} };
|
108
|
+
|
109
|
+
for ( i in blockLikeTags )
|
110
|
+
defaultDataBlockFilterRules.elements[ i ] = getBlockExtension();
|
111
|
+
|
112
|
+
var defaultHtmlFilterRules =
|
113
|
+
{
|
114
|
+
elementNames :
|
115
|
+
[
|
116
|
+
// Remove the "cke:" namespace prefix.
|
117
|
+
[ ( /^cke:/ ), '' ],
|
118
|
+
|
119
|
+
// Ignore <?xml:namespace> tags.
|
120
|
+
[ ( /^\?xml:namespace$/ ), '' ]
|
121
|
+
],
|
122
|
+
|
123
|
+
attributeNames :
|
124
|
+
[
|
125
|
+
// Attributes saved for changes and protected attributes.
|
126
|
+
[ ( /^data-cke-(saved|pa)-/ ), '' ],
|
127
|
+
|
128
|
+
// All "data-cke-" attributes are to be ignored.
|
129
|
+
[ ( /^data-cke-.*/ ), '' ],
|
130
|
+
|
131
|
+
[ 'hidefocus', '' ]
|
132
|
+
],
|
133
|
+
|
134
|
+
elements :
|
135
|
+
{
|
136
|
+
$ : function( element )
|
137
|
+
{
|
138
|
+
var attribs = element.attributes;
|
139
|
+
|
140
|
+
if ( attribs )
|
141
|
+
{
|
142
|
+
// Elements marked as temporary are to be ignored.
|
143
|
+
if ( attribs[ 'data-cke-temp' ] )
|
144
|
+
return false;
|
145
|
+
|
146
|
+
// Remove duplicated attributes - #3789.
|
147
|
+
var attributeNames = [ 'name', 'href', 'src' ],
|
148
|
+
savedAttributeName;
|
149
|
+
for ( var i = 0 ; i < attributeNames.length ; i++ )
|
150
|
+
{
|
151
|
+
savedAttributeName = 'data-cke-saved-' + attributeNames[ i ];
|
152
|
+
savedAttributeName in attribs && ( delete attribs[ attributeNames[ i ] ] );
|
153
|
+
}
|
154
|
+
}
|
155
|
+
|
156
|
+
return element;
|
157
|
+
},
|
158
|
+
|
159
|
+
// The contents of table should be in correct order (#4809).
|
160
|
+
table : function( element )
|
161
|
+
{
|
162
|
+
var children = element.children;
|
163
|
+
children.sort( function ( node1, node2 )
|
164
|
+
{
|
165
|
+
return node1.type == CKEDITOR.NODE_ELEMENT && node2.type == node1.type ?
|
166
|
+
CKEDITOR.tools.indexOf( tableOrder, node1.name ) > CKEDITOR.tools.indexOf( tableOrder, node2.name ) ? 1 : -1 : 0;
|
167
|
+
} );
|
168
|
+
},
|
169
|
+
|
170
|
+
embed : function( element )
|
171
|
+
{
|
172
|
+
var parent = element.parent;
|
173
|
+
|
174
|
+
// If the <embed> is child of a <object>, copy the width
|
175
|
+
// and height attributes from it.
|
176
|
+
if ( parent && parent.name == 'object' )
|
177
|
+
{
|
178
|
+
var parentWidth = parent.attributes.width,
|
179
|
+
parentHeight = parent.attributes.height;
|
180
|
+
parentWidth && ( element.attributes.width = parentWidth );
|
181
|
+
parentHeight && ( element.attributes.height = parentHeight );
|
182
|
+
}
|
183
|
+
},
|
184
|
+
// Restore param elements into self-closing.
|
185
|
+
param : function( param )
|
186
|
+
{
|
187
|
+
param.children = [];
|
188
|
+
param.isEmpty = true;
|
189
|
+
return param;
|
190
|
+
},
|
191
|
+
|
192
|
+
// Remove empty link but not empty anchor.(#3829)
|
193
|
+
a : function( element )
|
194
|
+
{
|
195
|
+
if ( !( element.children.length ||
|
196
|
+
element.attributes.name ||
|
197
|
+
element.attributes[ 'data-cke-saved-name' ] ) )
|
198
|
+
{
|
199
|
+
return false;
|
200
|
+
}
|
201
|
+
},
|
202
|
+
|
203
|
+
// Remove dummy span in webkit.
|
204
|
+
span: function( element )
|
205
|
+
{
|
206
|
+
if ( element.attributes[ 'class' ] == 'Apple-style-span' )
|
207
|
+
delete element.name;
|
208
|
+
},
|
209
|
+
|
210
|
+
// Empty <pre> in IE is reported with filler node ( ).
|
211
|
+
pre : function( element ) { CKEDITOR.env.ie && trimFillers( element ); },
|
212
|
+
|
213
|
+
html : function( element )
|
214
|
+
{
|
215
|
+
delete element.attributes.contenteditable;
|
216
|
+
delete element.attributes[ 'class' ];
|
217
|
+
},
|
218
|
+
|
219
|
+
body : function( element )
|
220
|
+
{
|
221
|
+
delete element.attributes.spellcheck;
|
222
|
+
delete element.attributes.contenteditable;
|
223
|
+
},
|
224
|
+
|
225
|
+
style : function( element )
|
226
|
+
{
|
227
|
+
var child = element.children[ 0 ];
|
228
|
+
child && child.value && ( child.value = CKEDITOR.tools.trim( child.value ));
|
229
|
+
|
230
|
+
if ( !element.attributes.type )
|
231
|
+
element.attributes.type = 'text/css';
|
232
|
+
},
|
233
|
+
|
234
|
+
title : function( element )
|
235
|
+
{
|
236
|
+
var titleText = element.children[ 0 ];
|
237
|
+
titleText && ( titleText.value = element.attributes[ 'data-cke-title' ] || '' );
|
238
|
+
}
|
239
|
+
},
|
240
|
+
|
241
|
+
attributes :
|
242
|
+
{
|
243
|
+
'class' : function( value, element )
|
244
|
+
{
|
245
|
+
// Remove all class names starting with "cke_".
|
246
|
+
return CKEDITOR.tools.ltrim( value.replace( /(?:^|\s+)cke_[^\s]*/g, '' ) ) || false;
|
247
|
+
}
|
248
|
+
}
|
249
|
+
};
|
250
|
+
|
251
|
+
if ( CKEDITOR.env.ie )
|
252
|
+
{
|
253
|
+
// IE outputs style attribute in capital letters. We should convert
|
254
|
+
// them back to lower case, while not hurting the values (#5930)
|
255
|
+
defaultHtmlFilterRules.attributes.style = function( value, element )
|
256
|
+
{
|
257
|
+
return value.replace( /(^|;)([^\:]+)/g, function( match )
|
258
|
+
{
|
259
|
+
return match.toLowerCase();
|
260
|
+
});
|
261
|
+
};
|
262
|
+
}
|
263
|
+
|
264
|
+
function protectReadOnly( element )
|
265
|
+
{
|
266
|
+
var attrs = element.attributes;
|
267
|
+
|
268
|
+
// We should flag that the element was locked by our code so
|
269
|
+
// it'll be editable by the editor functions (#6046).
|
270
|
+
if ( attrs.contenteditable != "false" )
|
271
|
+
attrs[ 'data-cke-editable' ] = attrs.contenteditable ? 'true' : 1;
|
272
|
+
|
273
|
+
attrs.contenteditable = "false";
|
274
|
+
}
|
275
|
+
function unprotectReadyOnly( element )
|
276
|
+
{
|
277
|
+
var attrs = element.attributes;
|
278
|
+
switch( attrs[ 'data-cke-editable' ] )
|
279
|
+
{
|
280
|
+
case 'true': attrs.contenteditable = 'true'; break;
|
281
|
+
case '1': delete attrs.contenteditable; break;
|
282
|
+
}
|
283
|
+
}
|
284
|
+
// Disable form elements editing mode provided by some browers. (#5746)
|
285
|
+
for ( i in { input : 1, textarea : 1 } )
|
286
|
+
{
|
287
|
+
defaultDataFilterRules.elements[ i ] = protectReadOnly;
|
288
|
+
defaultHtmlFilterRules.elements[ i ] = unprotectReadyOnly;
|
289
|
+
}
|
290
|
+
|
291
|
+
var protectElementRegex = /<(a|area|img|input)\b([^>]*)>/gi,
|
292
|
+
protectAttributeRegex = /\b(on\w+|href|src|name)\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|(?:[^ "'>]+))/gi;
|
293
|
+
|
294
|
+
var protectElementsRegex = /(?:<style(?=[ >])[^>]*>[\s\S]*<\/style>)|(?:<(:?link|meta|base)[^>]*>)/gi,
|
295
|
+
encodedElementsRegex = /<cke:encoded>([^<]*)<\/cke:encoded>/gi;
|
296
|
+
|
297
|
+
var protectElementNamesRegex = /(<\/?)((?:object|embed|param|html|body|head|title)[^>]*>)/gi,
|
298
|
+
unprotectElementNamesRegex = /(<\/?)cke:((?:html|body|head|title)[^>]*>)/gi;
|
299
|
+
|
300
|
+
var protectSelfClosingRegex = /<cke:(param|embed)([^>]*?)\/?>(?!\s*<\/cke:\1)/gi;
|
301
|
+
|
302
|
+
function protectAttributes( html )
|
303
|
+
{
|
304
|
+
return html.replace( protectElementRegex, function( element, tag, attributes )
|
305
|
+
{
|
306
|
+
return '<' + tag + attributes.replace( protectAttributeRegex, function( fullAttr, attrName )
|
307
|
+
{
|
308
|
+
// Avoid corrupting the inline event attributes (#7243).
|
309
|
+
// We should not rewrite the existed protected attributes, e.g. clipboard content from editor. (#5218)
|
310
|
+
if ( !( /^on/ ).test( attrName ) && attributes.indexOf( 'data-cke-saved-' + attrName ) == -1 )
|
311
|
+
return ' data-cke-saved-' + fullAttr + ' data-cke-' + CKEDITOR.rnd + '-' + fullAttr;
|
312
|
+
|
313
|
+
return fullAttr;
|
314
|
+
}) + '>';
|
315
|
+
});
|
316
|
+
}
|
317
|
+
|
318
|
+
function protectElements( html )
|
319
|
+
{
|
320
|
+
return html.replace( protectElementsRegex, function( match )
|
321
|
+
{
|
322
|
+
return '<cke:encoded>' + encodeURIComponent( match ) + '</cke:encoded>';
|
323
|
+
});
|
324
|
+
}
|
325
|
+
|
326
|
+
function unprotectElements( html )
|
327
|
+
{
|
328
|
+
return html.replace( encodedElementsRegex, function( match, encoded )
|
329
|
+
{
|
330
|
+
return decodeURIComponent( encoded );
|
331
|
+
});
|
332
|
+
}
|
333
|
+
|
334
|
+
function protectElementsNames( html )
|
335
|
+
{
|
336
|
+
return html.replace( protectElementNamesRegex, '$1cke:$2');
|
337
|
+
}
|
338
|
+
|
339
|
+
function unprotectElementNames( html )
|
340
|
+
{
|
341
|
+
return html.replace( unprotectElementNamesRegex, '$1$2' );
|
342
|
+
}
|
343
|
+
|
344
|
+
function protectSelfClosingElements( html )
|
345
|
+
{
|
346
|
+
return html.replace( protectSelfClosingRegex, '<cke:$1$2></cke:$1>' );
|
347
|
+
}
|
348
|
+
|
349
|
+
function protectPreFormatted( html )
|
350
|
+
{
|
351
|
+
return html.replace( /(<pre\b[^>]*>)(\r\n|\n)/g, '$1$2$2' );
|
352
|
+
}
|
353
|
+
|
354
|
+
function protectRealComments( html )
|
355
|
+
{
|
356
|
+
return html.replace( /<!--(?!{cke_protected})[\s\S]+?-->/g, function( match )
|
357
|
+
{
|
358
|
+
return '<!--' + protectedSourceMarker +
|
359
|
+
'{C}' +
|
360
|
+
encodeURIComponent( match ).replace( /--/g, '%2D%2D' ) +
|
361
|
+
'-->';
|
362
|
+
});
|
363
|
+
}
|
364
|
+
|
365
|
+
function unprotectRealComments( html )
|
366
|
+
{
|
367
|
+
return html.replace( /<!--\{cke_protected\}\{C\}([\s\S]+?)-->/g, function( match, data )
|
368
|
+
{
|
369
|
+
return decodeURIComponent( data );
|
370
|
+
});
|
371
|
+
}
|
372
|
+
|
373
|
+
function unprotectSource( html, editor )
|
374
|
+
{
|
375
|
+
var store = editor._.dataStore;
|
376
|
+
|
377
|
+
return html.replace( /<!--\{cke_protected\}([\s\S]+?)-->/g, function( match, data )
|
378
|
+
{
|
379
|
+
return decodeURIComponent( data );
|
380
|
+
}).replace( /\{cke_protected_(\d+)\}/g, function( match, id )
|
381
|
+
{
|
382
|
+
return store && store[ id ] || '';
|
383
|
+
});
|
384
|
+
}
|
385
|
+
|
386
|
+
function protectSource( data, editor )
|
387
|
+
{
|
388
|
+
var protectedHtml = [],
|
389
|
+
protectRegexes = editor.config.protectedSource,
|
390
|
+
store = editor._.dataStore || ( editor._.dataStore = { id : 1 } ),
|
391
|
+
tempRegex = /<\!--\{cke_temp(comment)?\}(\d*?)-->/g;
|
392
|
+
|
393
|
+
var regexes =
|
394
|
+
[
|
395
|
+
// Script tags will also be forced to be protected, otherwise
|
396
|
+
// IE will execute them.
|
397
|
+
( /<script[\s\S]*?<\/script>/gi ),
|
398
|
+
|
399
|
+
// <noscript> tags (get lost in IE and messed up in FF).
|
400
|
+
/<noscript[\s\S]*?<\/noscript>/gi
|
401
|
+
]
|
402
|
+
.concat( protectRegexes );
|
403
|
+
|
404
|
+
// First of any other protection, we must protect all comments
|
405
|
+
// to avoid loosing them (of course, IE related).
|
406
|
+
// Note that we use a different tag for comments, as we need to
|
407
|
+
// transform them when applying filters.
|
408
|
+
data = data.replace( (/<!--[\s\S]*?-->/g), function( match )
|
409
|
+
{
|
410
|
+
return '<!--{cke_tempcomment}' + ( protectedHtml.push( match ) - 1 ) + '-->';
|
411
|
+
});
|
412
|
+
|
413
|
+
for ( var i = 0 ; i < regexes.length ; i++ )
|
414
|
+
{
|
415
|
+
data = data.replace( regexes[i], function( match )
|
416
|
+
{
|
417
|
+
match = match.replace( tempRegex, // There could be protected source inside another one. (#3869).
|
418
|
+
function( $, isComment, id )
|
419
|
+
{
|
420
|
+
return protectedHtml[ id ];
|
421
|
+
}
|
422
|
+
);
|
423
|
+
|
424
|
+
// Avoid protecting over protected, e.g. /\{.*?\}/
|
425
|
+
return ( /cke_temp(comment)?/ ).test( match ) ? match
|
426
|
+
: '<!--{cke_temp}' + ( protectedHtml.push( match ) - 1 ) + '-->';
|
427
|
+
});
|
428
|
+
}
|
429
|
+
data = data.replace( tempRegex, function( $, isComment, id )
|
430
|
+
{
|
431
|
+
return '<!--' + protectedSourceMarker +
|
432
|
+
( isComment ? '{C}' : '' ) +
|
433
|
+
encodeURIComponent( protectedHtml[ id ] ).replace( /--/g, '%2D%2D' ) +
|
434
|
+
'-->';
|
435
|
+
}
|
436
|
+
);
|
437
|
+
|
438
|
+
// Different protection pattern is used for those that
|
439
|
+
// live in attributes to avoid from being HTML encoded.
|
440
|
+
return data.replace( /(['"]).*?\1/g, function ( match )
|
441
|
+
{
|
442
|
+
return match.replace( /<!--\{cke_protected\}([\s\S]+?)-->/g, function( match, data )
|
443
|
+
{
|
444
|
+
store[ store.id ] = decodeURIComponent( data );
|
445
|
+
return '{cke_protected_'+ ( store.id++ ) + '}';
|
446
|
+
});
|
447
|
+
});
|
448
|
+
}
|
449
|
+
|
450
|
+
CKEDITOR.plugins.add( 'htmldataprocessor',
|
451
|
+
{
|
452
|
+
requires : [ 'htmlwriter' ],
|
453
|
+
|
454
|
+
init : function( editor )
|
455
|
+
{
|
456
|
+
var dataProcessor = editor.dataProcessor = new CKEDITOR.htmlDataProcessor( editor );
|
457
|
+
|
458
|
+
dataProcessor.writer.forceSimpleAmpersand = editor.config.forceSimpleAmpersand;
|
459
|
+
|
460
|
+
dataProcessor.dataFilter.addRules( defaultDataFilterRules );
|
461
|
+
dataProcessor.dataFilter.addRules( defaultDataBlockFilterRules );
|
462
|
+
dataProcessor.htmlFilter.addRules( defaultHtmlFilterRules );
|
463
|
+
|
464
|
+
var defaultHtmlBlockFilterRules = { elements : {} };
|
465
|
+
for ( i in blockLikeTags )
|
466
|
+
defaultHtmlBlockFilterRules.elements[ i ] = getBlockExtension( true, editor.config.fillEmptyBlocks );
|
467
|
+
|
468
|
+
dataProcessor.htmlFilter.addRules( defaultHtmlBlockFilterRules );
|
469
|
+
},
|
470
|
+
|
471
|
+
onLoad : function()
|
472
|
+
{
|
473
|
+
! ( 'fillEmptyBlocks' in CKEDITOR.config ) && ( CKEDITOR.config.fillEmptyBlocks = 1 );
|
474
|
+
}
|
475
|
+
});
|
476
|
+
|
477
|
+
CKEDITOR.htmlDataProcessor = function( editor )
|
478
|
+
{
|
479
|
+
this.editor = editor;
|
480
|
+
|
481
|
+
this.writer = new CKEDITOR.htmlWriter();
|
482
|
+
this.dataFilter = new CKEDITOR.htmlParser.filter();
|
483
|
+
this.htmlFilter = new CKEDITOR.htmlParser.filter();
|
484
|
+
};
|
485
|
+
|
486
|
+
CKEDITOR.htmlDataProcessor.prototype =
|
487
|
+
{
|
488
|
+
toHtml : function( data, fixForBody )
|
489
|
+
{
|
490
|
+
// The source data is already HTML, but we need to clean
|
491
|
+
// it up and apply the filter.
|
492
|
+
|
493
|
+
data = protectSource( data, this.editor );
|
494
|
+
|
495
|
+
// Before anything, we must protect the URL attributes as the
|
496
|
+
// browser may changing them when setting the innerHTML later in
|
497
|
+
// the code.
|
498
|
+
data = protectAttributes( data );
|
499
|
+
|
500
|
+
// Protect elements than can't be set inside a DIV. E.g. IE removes
|
501
|
+
// style tags from innerHTML. (#3710)
|
502
|
+
data = protectElements( data );
|
503
|
+
|
504
|
+
// Certain elements has problem to go through DOM operation, protect
|
505
|
+
// them by prefixing 'cke' namespace. (#3591)
|
506
|
+
data = protectElementsNames( data );
|
507
|
+
|
508
|
+
// All none-IE browsers ignore self-closed custom elements,
|
509
|
+
// protecting them into open-close. (#3591)
|
510
|
+
data = protectSelfClosingElements( data );
|
511
|
+
|
512
|
+
// Compensate one leading line break after <pre> open as browsers
|
513
|
+
// eat it up. (#5789)
|
514
|
+
data = protectPreFormatted( data );
|
515
|
+
|
516
|
+
// Call the browser to help us fixing a possibly invalid HTML
|
517
|
+
// structure.
|
518
|
+
var div = new CKEDITOR.dom.element( 'div' );
|
519
|
+
|
520
|
+
// Add fake character to workaround IE comments bug. (#3801)
|
521
|
+
div.setHtml( 'a' + data );
|
522
|
+
data = div.getHtml().substr( 1 );
|
523
|
+
|
524
|
+
// Restore shortly protected attribute names.
|
525
|
+
data = data.replace( new RegExp( ' data-cke-' + CKEDITOR.rnd + '-', 'ig' ), ' ' );
|
526
|
+
|
527
|
+
// Unprotect "some" of the protected elements at this point.
|
528
|
+
data = unprotectElementNames( data );
|
529
|
+
|
530
|
+
data = unprotectElements( data );
|
531
|
+
|
532
|
+
// Restore the comments that have been protected, in this way they
|
533
|
+
// can be properly filtered.
|
534
|
+
data = unprotectRealComments( data );
|
535
|
+
|
536
|
+
// Now use our parser to make further fixes to the structure, as
|
537
|
+
// well as apply the filter.
|
538
|
+
var fragment = CKEDITOR.htmlParser.fragment.fromHtml( data, fixForBody ),
|
539
|
+
writer = new CKEDITOR.htmlParser.basicWriter();
|
540
|
+
|
541
|
+
fragment.writeHtml( writer, this.dataFilter );
|
542
|
+
data = writer.getHtml( true );
|
543
|
+
|
544
|
+
// Protect the real comments again.
|
545
|
+
data = protectRealComments( data );
|
546
|
+
|
547
|
+
return data;
|
548
|
+
},
|
549
|
+
|
550
|
+
toDataFormat : function( html, fixForBody )
|
551
|
+
{
|
552
|
+
var writer = this.writer,
|
553
|
+
fragment = CKEDITOR.htmlParser.fragment.fromHtml( html, fixForBody );
|
554
|
+
|
555
|
+
writer.reset();
|
556
|
+
|
557
|
+
fragment.writeHtml( writer, this.htmlFilter );
|
558
|
+
|
559
|
+
var data = writer.getHtml( true );
|
560
|
+
|
561
|
+
// Restore those non-HTML protected source. (#4475,#4880)
|
562
|
+
data = unprotectRealComments( data );
|
563
|
+
data = unprotectSource( data, this.editor );
|
564
|
+
|
565
|
+
return data;
|
566
|
+
}
|
567
|
+
};
|
568
|
+
})();
|
569
|
+
|
570
|
+
/**
|
571
|
+
* Whether to force using "&" instead of "&amp;" in elements attributes
|
572
|
+
* values, it's not recommended to change this setting for compliance with the
|
573
|
+
* W3C XHTML 1.0 standards (<a href="http://www.w3.org/TR/xhtml1/#C_12">C.12, XHTML 1.0</a>).
|
574
|
+
* @name CKEDITOR.config.forceSimpleAmpersand
|
575
|
+
* @name CKEDITOR.config.forceSimpleAmpersand
|
576
|
+
* @type Boolean
|
577
|
+
* @default false
|
578
|
+
* @example
|
579
|
+
* config.forceSimpleAmpersand = false;
|
580
|
+
*/
|
581
|
+
|
582
|
+
/**
|
583
|
+
* Whether a filler text (non-breaking space entity - ) will be inserted into empty block elements in HTML output,
|
584
|
+
* this is used to render block elements properly with line-height; When a function is instead specified,
|
585
|
+
* it'll be passed a {@link CKEDITOR.htmlParser.element} to decide whether adding the filler text
|
586
|
+
* by expecting a boolean return value.
|
587
|
+
* @name CKEDITOR.config.fillEmptyBlocks
|
588
|
+
* @since 3.5
|
589
|
+
* @type Boolean
|
590
|
+
* @default true
|
591
|
+
* @example
|
592
|
+
* config.fillEmptyBlocks = false; // Prevent filler nodes in all empty blocks.
|
593
|
+
*
|
594
|
+
* // Prevent filler node only in float cleaners.
|
595
|
+
* config.fillEmptyBlocks = function( element )
|
596
|
+
* {
|
597
|
+
* if ( element.attributes[ 'class' ].indexOf ( 'clear-both' ) != -1 )
|
598
|
+
* return false;
|
599
|
+
* }
|
600
|
+
*/
|