ckeditor-rails 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +10 -4
- data/ckeditor-rails.gemspec +1 -1
- data/lib/ckeditor-rails/version.rb +1 -1
- data/vendor/assets/ckeditor/ckeditor/INSTALL.html +92 -92
- 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/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 +107 -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 +177 -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 +227 -227
- data/vendor/assets/ckeditor/ckeditor/_source/core/ckeditor_basic.js +238 -238
- data/vendor/assets/ckeditor/ckeditor/_source/core/command.js +209 -209
- data/vendor/assets/ckeditor/ckeditor/_source/core/commanddefinition.js +129 -129
- data/vendor/assets/ckeditor/ckeditor/_source/core/config.js +431 -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 +32 -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 +1681 -1681
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/elementpath.js +119 -119
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/event.js +145 -145
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/node.js +695 -695
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/nodelist.js +26 -26
- data/vendor/assets/ckeditor/ckeditor/_source/core/dom/range.js +2032 -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 +462 -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 +291 -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 +497 -497
- data/vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/text.js +55 -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 +61 -61
- data/vendor/assets/ckeditor/ckeditor/_source/lang/af.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/ar.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/bg.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/bn.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/bs.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/ca.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/cs.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/cy.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/da.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/de.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/el.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/en-au.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/en-ca.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/en-gb.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/en.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/eo.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/es.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/et.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/eu.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/fa.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/fi.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/fo.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/fr-ca.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/fr.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/gl.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/gu.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/he.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/hi.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/hr.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/hu.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/is.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/it.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/ja.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/ka.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/km.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/ko.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/lt.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/lv.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/mn.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/ms.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/nb.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/nl.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/no.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/pl.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/pt-br.js +811 -811
- data/vendor/assets/ckeditor/ckeditor/_source/lang/pt.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/ro.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/ru.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/sk.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/sl.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/sr-latn.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/sr.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/sv.js +811 -811
- data/vendor/assets/ckeditor/ckeditor/_source/lang/th.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/tr.js +811 -811
- data/vendor/assets/ckeditor/ckeditor/_source/lang/uk.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/vi.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/zh-cn.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/lang/zh.js +812 -812
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +222 -222
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -108
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/he.js +216 -216
- 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 +88 -88
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/basicstyles/plugin.js +101 -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 +453 -453
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/colorbutton/plugin.js +294 -294
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +340 -340
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/colordialog/plugin.js +15 -15
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/contextmenu/plugin.js +177 -177
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/en.js +16 -16
- 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 +3289 -3289
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/dialogadvtab/plugin.js +207 -207
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/dialogui/plugin.js +1541 -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 +686 -686
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/docprops/plugin.js +22 -22
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/domiterator/plugin.js +361 -361
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/editingblock/plugin.js +275 -275
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/elementspath/plugin.js +218 -218
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/enterkey/plugin.js +413 -413
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/entities/plugin.js +250 -250
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/fakeobjects/plugin.js +175 -175
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/filebrowser/plugin.js +524 -524
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/find/dialogs/find.js +903 -903
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/find/plugin.js +47 -47
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/flash/dialogs/flash.js +673 -673
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/flash/plugin.js +154 -154
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/floatpanel/plugin.js +428 -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 +114 -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 +595 -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 +81 -81
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/indent/plugin.js +461 -461
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/justify/plugin.js +253 -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 +1424 -1424
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/link/plugin.js +374 -374
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/list/plugin.js +734 -734
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/listblock/plugin.js +268 -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 +352 -352
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/menu/plugin.js +541 -541
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/menubutton/plugin.js +98 -98
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/newpage/plugin.js +54 -54
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/pagebreak/plugin.js +164 -164
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/panel/plugin.js +403 -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/en.js +16 -16
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/he.js +16 -16
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/plugin.js +171 -171
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/popup/plugin.js +64 -64
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/preview/plugin.js +109 -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 +168 -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 +964 -964
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/selection/plugin.js +1601 -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/en.js +89 -89
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/plugin.js +70 -70
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/styles/plugin.js +1696 -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 +602 -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 +525 -525
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/tabletools/plugin.js +1194 -1194
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/templates/dialogs/templates.js +234 -234
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/templates/plugin.js +99 -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/en.js +15 -15
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/he.js +15 -15
- 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 +580 -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 +1351 -1351
- data/vendor/assets/ckeditor/ckeditor/_source/plugins/xml/plugin.js +170 -170
- data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/dialog.css +943 -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 +203 -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 +84 -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 +407 -407
- data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/dialog.css +844 -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 +84 -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 +861 -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 +84 -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 +395 -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.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/config.js +11 -11
- data/vendor/assets/ckeditor/ckeditor/contents.css +25 -25
- data/vendor/assets/ckeditor/ckeditor/themes/default/theme.js +8 -8
- metadata +7 -9
@@ -1,535 +1,535 @@
|
|
1
|
-
/*
|
2
|
-
* Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
3
|
-
* For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
-
*/
|
5
|
-
|
6
|
-
(function()
|
7
|
-
{
|
8
|
-
|
9
|
-
/**
|
10
|
-
* Add to collection with DUP examination.
|
11
|
-
* @param {Object} collection
|
12
|
-
* @param {Object} element
|
13
|
-
* @param {Object} database
|
14
|
-
*/
|
15
|
-
function addSafely( collection, element, database )
|
16
|
-
{
|
17
|
-
// 1. IE doesn't support customData on text nodes;
|
18
|
-
// 2. Text nodes never get chance to appear twice;
|
19
|
-
if ( !element.is || !element.getCustomData( 'block_processed' ) )
|
20
|
-
{
|
21
|
-
element.is && CKEDITOR.dom.element.setMarker( database, element, 'block_processed', true );
|
22
|
-
collection.push( element );
|
23
|
-
}
|
24
|
-
}
|
25
|
-
|
26
|
-
function getNonEmptyChildren( element )
|
27
|
-
{
|
28
|
-
var retval = [];
|
29
|
-
var children = element.getChildren();
|
30
|
-
for ( var i = 0 ; i < children.count() ; i++ )
|
31
|
-
{
|
32
|
-
var child = children.getItem( i );
|
33
|
-
if ( ! ( child.type === CKEDITOR.NODE_TEXT
|
34
|
-
&& ( /^[ \t\n\r]+$/ ).test( child.getText() ) ) )
|
35
|
-
retval.push( child );
|
36
|
-
}
|
37
|
-
return retval;
|
38
|
-
}
|
39
|
-
|
40
|
-
|
41
|
-
/**
|
42
|
-
* Dialog reused by both 'creatediv' and 'editdiv' commands.
|
43
|
-
* @param {Object} editor
|
44
|
-
* @param {String} command The command name which indicate what the current command is.
|
45
|
-
*/
|
46
|
-
function divDialog( editor, command )
|
47
|
-
{
|
48
|
-
// Definition of elements at which div operation should stopped.
|
49
|
-
var divLimitDefinition = ( function(){
|
50
|
-
|
51
|
-
// Customzie from specialize blockLimit elements
|
52
|
-
var definition = CKEDITOR.tools.extend( {}, CKEDITOR.dtd.$blockLimit );
|
53
|
-
|
54
|
-
// Exclude 'div' itself.
|
55
|
-
delete definition.div;
|
56
|
-
|
57
|
-
// Exclude 'td' and 'th' when 'wrapping table'
|
58
|
-
if ( editor.config.div_wrapTable )
|
59
|
-
{
|
60
|
-
delete definition.td;
|
61
|
-
delete definition.th;
|
62
|
-
}
|
63
|
-
return definition;
|
64
|
-
})();
|
65
|
-
|
66
|
-
// DTD of 'div' element
|
67
|
-
var dtd = CKEDITOR.dtd.div;
|
68
|
-
|
69
|
-
/**
|
70
|
-
* Get the first div limit element on the element's path.
|
71
|
-
* @param {Object} element
|
72
|
-
*/
|
73
|
-
function getDivLimitElement( element )
|
74
|
-
{
|
75
|
-
var pathElements = new CKEDITOR.dom.elementPath( element ).elements;
|
76
|
-
var divLimit;
|
77
|
-
for ( var i = 0; i < pathElements.length ; i++ )
|
78
|
-
{
|
79
|
-
if ( pathElements[ i ].getName() in divLimitDefinition )
|
80
|
-
{
|
81
|
-
divLimit = pathElements[ i ];
|
82
|
-
break;
|
83
|
-
}
|
84
|
-
}
|
85
|
-
return divLimit;
|
86
|
-
}
|
87
|
-
|
88
|
-
/**
|
89
|
-
* Init all fields' setup/commit function.
|
90
|
-
* @memberof divDialog
|
91
|
-
*/
|
92
|
-
function setupFields()
|
93
|
-
{
|
94
|
-
this.foreach( function( field )
|
95
|
-
{
|
96
|
-
// Exclude layout container elements
|
97
|
-
if ( /^(?!vbox|hbox)/.test( field.type ) )
|
98
|
-
{
|
99
|
-
if ( !field.setup )
|
100
|
-
{
|
101
|
-
// Read the dialog fields values from the specified
|
102
|
-
// element attributes.
|
103
|
-
field.setup = function( element )
|
104
|
-
{
|
105
|
-
field.setValue( element.getAttribute( field.id ) || '' );
|
106
|
-
};
|
107
|
-
}
|
108
|
-
if ( !field.commit )
|
109
|
-
{
|
110
|
-
// Set element attributes assigned by the dialog
|
111
|
-
// fields.
|
112
|
-
field.commit = function( element )
|
113
|
-
{
|
114
|
-
var fieldValue = this.getValue();
|
115
|
-
// ignore default element attribute values
|
116
|
-
if ( 'dir' == field.id && element.getComputedStyle( 'direction' ) == fieldValue )
|
117
|
-
return;
|
118
|
-
|
119
|
-
if ( fieldValue )
|
120
|
-
element.setAttribute( field.id, fieldValue );
|
121
|
-
else
|
122
|
-
element.removeAttribute( field.id );
|
123
|
-
};
|
124
|
-
}
|
125
|
-
}
|
126
|
-
} );
|
127
|
-
}
|
128
|
-
|
129
|
-
/**
|
130
|
-
* Wrapping 'div' element around appropriate blocks among the selected ranges.
|
131
|
-
* @param {Object} editor
|
132
|
-
*/
|
133
|
-
function createDiv( editor )
|
134
|
-
{
|
135
|
-
// new adding containers OR detected pre-existed containers.
|
136
|
-
var containers = [];
|
137
|
-
// node markers store.
|
138
|
-
var database = {};
|
139
|
-
// All block level elements which contained by the ranges.
|
140
|
-
var containedBlocks = [], block;
|
141
|
-
|
142
|
-
// Get all ranges from the selection.
|
143
|
-
var selection = editor.document.getSelection(),
|
144
|
-
ranges = selection.getRanges();
|
145
|
-
var bookmarks = selection.createBookmarks();
|
146
|
-
var i, iterator;
|
147
|
-
|
148
|
-
// Calcualte a default block tag if we need to create blocks.
|
149
|
-
var blockTag = editor.config.enterMode == CKEDITOR.ENTER_DIV ? 'div' : 'p';
|
150
|
-
|
151
|
-
// collect all included elements from dom-iterator
|
152
|
-
for ( i = 0 ; i < ranges.length ; i++ )
|
153
|
-
{
|
154
|
-
iterator = ranges[ i ].createIterator();
|
155
|
-
while ( ( block = iterator.getNextParagraph() ) )
|
156
|
-
{
|
157
|
-
// include contents of blockLimit elements.
|
158
|
-
if ( block.getName() in divLimitDefinition )
|
159
|
-
{
|
160
|
-
var j, childNodes = block.getChildren();
|
161
|
-
for ( j = 0 ; j < childNodes.count() ; j++ )
|
162
|
-
addSafely( containedBlocks, childNodes.getItem( j ) , database );
|
163
|
-
}
|
164
|
-
else
|
165
|
-
{
|
166
|
-
// Bypass dtd disallowed elements.
|
167
|
-
while ( !dtd[ block.getName() ] && block.getName() != 'body' )
|
168
|
-
block = block.getParent();
|
169
|
-
addSafely( containedBlocks, block, database );
|
170
|
-
}
|
171
|
-
}
|
172
|
-
}
|
173
|
-
|
174
|
-
CKEDITOR.dom.element.clearAllMarkers( database );
|
175
|
-
|
176
|
-
var blockGroups = groupByDivLimit( containedBlocks );
|
177
|
-
var ancestor, blockEl, divElement;
|
178
|
-
|
179
|
-
for ( i = 0 ; i < blockGroups.length ; i++ )
|
180
|
-
{
|
181
|
-
var currentNode = blockGroups[ i ][ 0 ];
|
182
|
-
|
183
|
-
// Calculate the common parent node of all contained elements.
|
184
|
-
ancestor = currentNode.getParent();
|
185
|
-
for ( j = 1 ; j < blockGroups[ i ].length; j++ )
|
186
|
-
ancestor = ancestor.getCommonAncestor( blockGroups[ i ][ j ] );
|
187
|
-
|
188
|
-
divElement = new CKEDITOR.dom.element( 'div', editor.document );
|
189
|
-
|
190
|
-
// Normalize the blocks in each group to a common parent.
|
191
|
-
for ( j = 0; j < blockGroups[ i ].length ; j++ )
|
192
|
-
{
|
193
|
-
currentNode = blockGroups[ i ][ j ];
|
194
|
-
|
195
|
-
while ( !currentNode.getParent().equals( ancestor ) )
|
196
|
-
currentNode = currentNode.getParent();
|
197
|
-
|
198
|
-
// This could introduce some duplicated elements in array.
|
199
|
-
blockGroups[ i ][ j ] = currentNode;
|
200
|
-
}
|
201
|
-
|
202
|
-
// Wrapped blocks counting
|
203
|
-
var fixedBlock = null;
|
204
|
-
for ( j = 0 ; j < blockGroups[ i ].length ; j++ )
|
205
|
-
{
|
206
|
-
currentNode = blockGroups[ i ][ j ];
|
207
|
-
|
208
|
-
// Avoid DUP elements introduced by grouping.
|
209
|
-
if ( !( currentNode.getCustomData && currentNode.getCustomData( 'block_processed' ) ) )
|
210
|
-
{
|
211
|
-
currentNode.is && CKEDITOR.dom.element.setMarker( database, currentNode, 'block_processed', true );
|
212
|
-
|
213
|
-
// Establish new container, wrapping all elements in this group.
|
214
|
-
if ( !j )
|
215
|
-
divElement.insertBefore( currentNode );
|
216
|
-
|
217
|
-
divElement.append( currentNode );
|
218
|
-
}
|
219
|
-
}
|
220
|
-
|
221
|
-
CKEDITOR.dom.element.clearAllMarkers( database );
|
222
|
-
containers.push( divElement );
|
223
|
-
}
|
224
|
-
|
225
|
-
selection.selectBookmarks( bookmarks );
|
226
|
-
return containers;
|
227
|
-
}
|
228
|
-
|
229
|
-
function getDiv( editor )
|
230
|
-
{
|
231
|
-
var path = new CKEDITOR.dom.elementPath( editor.getSelection().getStartElement() ),
|
232
|
-
blockLimit = path.blockLimit,
|
233
|
-
div = blockLimit && blockLimit.getAscendant( 'div', true );
|
234
|
-
return div;
|
235
|
-
}
|
236
|
-
/**
|
237
|
-
* Divide a set of nodes to different groups by their path's blocklimit element.
|
238
|
-
* Note: the specified nodes should be in source order naturally, which mean they are supposed to producea by following class:
|
239
|
-
* * CKEDITOR.dom.range.Iterator
|
240
|
-
* * CKEDITOR.dom.domWalker
|
241
|
-
* @return {Array []} the grouped nodes
|
242
|
-
*/
|
243
|
-
function groupByDivLimit( nodes )
|
244
|
-
{
|
245
|
-
var groups = [],
|
246
|
-
lastDivLimit = null,
|
247
|
-
path, block;
|
248
|
-
for ( var i = 0 ; i < nodes.length ; i++ )
|
249
|
-
{
|
250
|
-
block = nodes[i];
|
251
|
-
var limit = getDivLimitElement( block );
|
252
|
-
if ( !limit.equals( lastDivLimit ) )
|
253
|
-
{
|
254
|
-
lastDivLimit = limit ;
|
255
|
-
groups.push( [] ) ;
|
256
|
-
}
|
257
|
-
groups[ groups.length - 1 ].push( block ) ;
|
258
|
-
}
|
259
|
-
return groups;
|
260
|
-
}
|
261
|
-
|
262
|
-
// Synchronous field values to other impacted fields is required, e.g. div styles
|
263
|
-
// change should also alter inline-style text.
|
264
|
-
function commitInternally( targetFields )
|
265
|
-
{
|
266
|
-
var dialog = this.getDialog(),
|
267
|
-
element = dialog._element && dialog._element.clone()
|
268
|
-
|| new CKEDITOR.dom.element( 'div', editor.document );
|
269
|
-
|
270
|
-
// Commit this field and broadcast to target fields.
|
271
|
-
this.commit( element, true );
|
272
|
-
|
273
|
-
targetFields = [].concat( targetFields );
|
274
|
-
var length = targetFields.length, field;
|
275
|
-
for ( var i = 0; i < length; i++ )
|
276
|
-
{
|
277
|
-
field = dialog.getContentElement.apply( dialog, targetFields[ i ].split( ':' ) );
|
278
|
-
field && field.setup && field.setup( element, true );
|
279
|
-
}
|
280
|
-
}
|
281
|
-
|
282
|
-
|
283
|
-
// Registered 'CKEDITOR.style' instances.
|
284
|
-
var styles = {} ;
|
285
|
-
/**
|
286
|
-
* Hold a collection of created block container elements.
|
287
|
-
*/
|
288
|
-
var containers = [];
|
289
|
-
/**
|
290
|
-
* @type divDialog
|
291
|
-
*/
|
292
|
-
return {
|
293
|
-
title : editor.lang.div.title,
|
294
|
-
minWidth : 400,
|
295
|
-
minHeight : 165,
|
296
|
-
contents :
|
297
|
-
[
|
298
|
-
{
|
299
|
-
id :'info',
|
300
|
-
label :editor.lang.common.generalTab,
|
301
|
-
title :editor.lang.common.generalTab,
|
302
|
-
elements :
|
303
|
-
[
|
304
|
-
{
|
305
|
-
type :'hbox',
|
306
|
-
widths : [ '50%', '50%' ],
|
307
|
-
children :
|
308
|
-
[
|
309
|
-
{
|
310
|
-
id :'elementStyle',
|
311
|
-
type :'select',
|
312
|
-
style :'width: 100%;',
|
313
|
-
label :editor.lang.div.styleSelectLabel,
|
314
|
-
'default' : '',
|
315
|
-
// Options are loaded dynamically.
|
316
|
-
items :
|
317
|
-
[
|
318
|
-
[ editor.lang.common.notSet , '' ]
|
319
|
-
],
|
320
|
-
onChange : function()
|
321
|
-
{
|
322
|
-
commitInternally.call( this, [ 'info:class', 'advanced:dir', 'advanced:style' ] );
|
323
|
-
},
|
324
|
-
setup : function( element )
|
325
|
-
{
|
326
|
-
for ( var name in styles )
|
327
|
-
styles[ name ].checkElementRemovable( element, true ) && this.setValue( name );
|
328
|
-
},
|
329
|
-
commit: function( element )
|
330
|
-
{
|
331
|
-
var styleName;
|
332
|
-
if ( ( styleName = this.getValue() ) )
|
333
|
-
{
|
334
|
-
var style = styles[ styleName ];
|
335
|
-
var customData = element.getCustomData( 'elementStyle' ) || '';
|
336
|
-
|
337
|
-
style.applyToObject( element );
|
338
|
-
element.setCustomData( 'elementStyle', customData + style._.definition.attributes.style );
|
339
|
-
}
|
340
|
-
}
|
341
|
-
},
|
342
|
-
{
|
343
|
-
id :'class',
|
344
|
-
type :'text',
|
345
|
-
label :editor.lang.common.cssClass,
|
346
|
-
'default' : ''
|
347
|
-
}
|
348
|
-
]
|
349
|
-
}
|
350
|
-
]
|
351
|
-
},
|
352
|
-
{
|
353
|
-
id :'advanced',
|
354
|
-
label :editor.lang.common.advancedTab,
|
355
|
-
title :editor.lang.common.advancedTab,
|
356
|
-
elements :
|
357
|
-
[
|
358
|
-
{
|
359
|
-
type :'vbox',
|
360
|
-
padding :1,
|
361
|
-
children :
|
362
|
-
[
|
363
|
-
{
|
364
|
-
type :'hbox',
|
365
|
-
widths : [ '50%', '50%' ],
|
366
|
-
children :
|
367
|
-
[
|
368
|
-
{
|
369
|
-
type :'text',
|
370
|
-
id :'id',
|
371
|
-
label :editor.lang.common.id,
|
372
|
-
'default' : ''
|
373
|
-
},
|
374
|
-
{
|
375
|
-
type :'text',
|
376
|
-
id :'lang',
|
377
|
-
label :editor.lang.link.langCode,
|
378
|
-
'default' : ''
|
379
|
-
}
|
380
|
-
]
|
381
|
-
},
|
382
|
-
{
|
383
|
-
type :'hbox',
|
384
|
-
children :
|
385
|
-
[
|
386
|
-
{
|
387
|
-
type :'text',
|
388
|
-
id :'style',
|
389
|
-
style :'width: 100%;',
|
390
|
-
label :editor.lang.common.cssStyle,
|
391
|
-
'default' : '',
|
392
|
-
commit : function( element )
|
393
|
-
{
|
394
|
-
// Merge with 'elementStyle', which is of higher priority.
|
395
|
-
var merged = this.getValue() + ( element.getCustomData( 'elementStyle' ) || '' );
|
396
|
-
element.setAttribute( 'style', merged );
|
397
|
-
}
|
398
|
-
}
|
399
|
-
]
|
400
|
-
},
|
401
|
-
{
|
402
|
-
type :'hbox',
|
403
|
-
children :
|
404
|
-
[
|
405
|
-
{
|
406
|
-
type :'text',
|
407
|
-
id :'title',
|
408
|
-
style :'width: 100%;',
|
409
|
-
label :editor.lang.common.advisoryTitle,
|
410
|
-
'default' : ''
|
411
|
-
}
|
412
|
-
]
|
413
|
-
},
|
414
|
-
{
|
415
|
-
type :'select',
|
416
|
-
id :'dir',
|
417
|
-
style :'width: 100%;',
|
418
|
-
label :editor.lang.common.langDir,
|
419
|
-
'default' : '',
|
420
|
-
items :
|
421
|
-
[
|
422
|
-
[ editor.lang.common.notSet , '' ],
|
423
|
-
[
|
424
|
-
editor.lang.common.langDirLtr,
|
425
|
-
'ltr'
|
426
|
-
],
|
427
|
-
[
|
428
|
-
editor.lang.common.langDirRtl,
|
429
|
-
'rtl'
|
430
|
-
]
|
431
|
-
]
|
432
|
-
}
|
433
|
-
]
|
434
|
-
}
|
435
|
-
]
|
436
|
-
}
|
437
|
-
],
|
438
|
-
onLoad : function()
|
439
|
-
{
|
440
|
-
setupFields.call( this );
|
441
|
-
|
442
|
-
// Preparing for the 'elementStyle' field.
|
443
|
-
var dialog = this,
|
444
|
-
stylesField = this.getContentElement( 'info', 'elementStyle' );
|
445
|
-
|
446
|
-
// Reuse the 'stylescombo' plugin's styles definition.
|
447
|
-
editor.getStylesSet( function( stylesDefinitions )
|
448
|
-
{
|
449
|
-
var styleName;
|
450
|
-
|
451
|
-
if ( stylesDefinitions )
|
452
|
-
{
|
453
|
-
// Digg only those styles that apply to 'div'.
|
454
|
-
for ( var i = 0 ; i < stylesDefinitions.length ; i++ )
|
455
|
-
{
|
456
|
-
var styleDefinition = stylesDefinitions[ i ];
|
457
|
-
if ( styleDefinition.element && styleDefinition.element == 'div' )
|
458
|
-
{
|
459
|
-
styleName = styleDefinition.name;
|
460
|
-
styles[ styleName ] = new CKEDITOR.style( styleDefinition );
|
461
|
-
|
462
|
-
// Populate the styles field options with style name.
|
463
|
-
stylesField.items.push( [ styleName, styleName ] );
|
464
|
-
stylesField.add( styleName, styleName );
|
465
|
-
}
|
466
|
-
}
|
467
|
-
}
|
468
|
-
|
469
|
-
// We should disable the content element
|
470
|
-
// it if no options are available at all.
|
471
|
-
stylesField[ stylesField.items.length > 1 ? 'enable' : 'disable' ]();
|
472
|
-
|
473
|
-
// Now setup the field value manually.
|
474
|
-
setTimeout( function() { stylesField.setup( dialog._element ); }, 0 );
|
475
|
-
} );
|
476
|
-
},
|
477
|
-
onShow : function()
|
478
|
-
{
|
479
|
-
// Whether always create new container regardless of existed
|
480
|
-
// ones.
|
481
|
-
if ( command == 'editdiv' )
|
482
|
-
{
|
483
|
-
// Try to discover the containers that already existed in
|
484
|
-
// ranges
|
485
|
-
var div = getDiv( editor );
|
486
|
-
// update dialog field values
|
487
|
-
div && this.setupContent( this._element = div );
|
488
|
-
}
|
489
|
-
},
|
490
|
-
onOk : function()
|
491
|
-
{
|
492
|
-
if ( command == 'editdiv' )
|
493
|
-
containers = [ this._element ];
|
494
|
-
else
|
495
|
-
containers = createDiv( editor, true );
|
496
|
-
|
497
|
-
// Update elements attributes
|
498
|
-
var size = containers.length;
|
499
|
-
for ( var i = 0; i < size; i++ )
|
500
|
-
{
|
501
|
-
this.commitContent( containers[ i ] );
|
502
|
-
|
503
|
-
// Remove empty 'style' attribute.
|
504
|
-
!containers[ i ].getAttribute( 'style' ) && containers[ i ].removeAttribute( 'style' );
|
505
|
-
}
|
506
|
-
|
507
|
-
this.hide();
|
508
|
-
},
|
509
|
-
onHide : function()
|
510
|
-
{
|
511
|
-
// Remove style only when editing existing DIV. (#6315)
|
512
|
-
if ( command == 'editdiv' )
|
513
|
-
this._element.removeCustomData( 'elementStyle' );
|
514
|
-
delete this._element;
|
515
|
-
}
|
516
|
-
};
|
517
|
-
}
|
518
|
-
|
519
|
-
CKEDITOR.dialog.add( 'creatediv', function( editor )
|
520
|
-
{
|
521
|
-
return divDialog( editor, 'creatediv' );
|
522
|
-
} );
|
523
|
-
CKEDITOR.dialog.add( 'editdiv', function( editor )
|
524
|
-
{
|
525
|
-
return divDialog( editor, 'editdiv' );
|
526
|
-
} );
|
527
|
-
} )();
|
528
|
-
|
529
|
-
/*
|
530
|
-
* @name CKEDITOR.config.div_wrapTable
|
531
|
-
* Whether to wrap the whole table instead of indivisual cells when created 'div' in table cell.
|
532
|
-
* @type Boolean
|
533
|
-
* @default false
|
534
|
-
* @example config.div_wrapTable = true;
|
535
|
-
*/
|
1
|
+
/*
|
2
|
+
* Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
3
|
+
* For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
+
*/
|
5
|
+
|
6
|
+
(function()
|
7
|
+
{
|
8
|
+
|
9
|
+
/**
|
10
|
+
* Add to collection with DUP examination.
|
11
|
+
* @param {Object} collection
|
12
|
+
* @param {Object} element
|
13
|
+
* @param {Object} database
|
14
|
+
*/
|
15
|
+
function addSafely( collection, element, database )
|
16
|
+
{
|
17
|
+
// 1. IE doesn't support customData on text nodes;
|
18
|
+
// 2. Text nodes never get chance to appear twice;
|
19
|
+
if ( !element.is || !element.getCustomData( 'block_processed' ) )
|
20
|
+
{
|
21
|
+
element.is && CKEDITOR.dom.element.setMarker( database, element, 'block_processed', true );
|
22
|
+
collection.push( element );
|
23
|
+
}
|
24
|
+
}
|
25
|
+
|
26
|
+
function getNonEmptyChildren( element )
|
27
|
+
{
|
28
|
+
var retval = [];
|
29
|
+
var children = element.getChildren();
|
30
|
+
for ( var i = 0 ; i < children.count() ; i++ )
|
31
|
+
{
|
32
|
+
var child = children.getItem( i );
|
33
|
+
if ( ! ( child.type === CKEDITOR.NODE_TEXT
|
34
|
+
&& ( /^[ \t\n\r]+$/ ).test( child.getText() ) ) )
|
35
|
+
retval.push( child );
|
36
|
+
}
|
37
|
+
return retval;
|
38
|
+
}
|
39
|
+
|
40
|
+
|
41
|
+
/**
|
42
|
+
* Dialog reused by both 'creatediv' and 'editdiv' commands.
|
43
|
+
* @param {Object} editor
|
44
|
+
* @param {String} command The command name which indicate what the current command is.
|
45
|
+
*/
|
46
|
+
function divDialog( editor, command )
|
47
|
+
{
|
48
|
+
// Definition of elements at which div operation should stopped.
|
49
|
+
var divLimitDefinition = ( function(){
|
50
|
+
|
51
|
+
// Customzie from specialize blockLimit elements
|
52
|
+
var definition = CKEDITOR.tools.extend( {}, CKEDITOR.dtd.$blockLimit );
|
53
|
+
|
54
|
+
// Exclude 'div' itself.
|
55
|
+
delete definition.div;
|
56
|
+
|
57
|
+
// Exclude 'td' and 'th' when 'wrapping table'
|
58
|
+
if ( editor.config.div_wrapTable )
|
59
|
+
{
|
60
|
+
delete definition.td;
|
61
|
+
delete definition.th;
|
62
|
+
}
|
63
|
+
return definition;
|
64
|
+
})();
|
65
|
+
|
66
|
+
// DTD of 'div' element
|
67
|
+
var dtd = CKEDITOR.dtd.div;
|
68
|
+
|
69
|
+
/**
|
70
|
+
* Get the first div limit element on the element's path.
|
71
|
+
* @param {Object} element
|
72
|
+
*/
|
73
|
+
function getDivLimitElement( element )
|
74
|
+
{
|
75
|
+
var pathElements = new CKEDITOR.dom.elementPath( element ).elements;
|
76
|
+
var divLimit;
|
77
|
+
for ( var i = 0; i < pathElements.length ; i++ )
|
78
|
+
{
|
79
|
+
if ( pathElements[ i ].getName() in divLimitDefinition )
|
80
|
+
{
|
81
|
+
divLimit = pathElements[ i ];
|
82
|
+
break;
|
83
|
+
}
|
84
|
+
}
|
85
|
+
return divLimit;
|
86
|
+
}
|
87
|
+
|
88
|
+
/**
|
89
|
+
* Init all fields' setup/commit function.
|
90
|
+
* @memberof divDialog
|
91
|
+
*/
|
92
|
+
function setupFields()
|
93
|
+
{
|
94
|
+
this.foreach( function( field )
|
95
|
+
{
|
96
|
+
// Exclude layout container elements
|
97
|
+
if ( /^(?!vbox|hbox)/.test( field.type ) )
|
98
|
+
{
|
99
|
+
if ( !field.setup )
|
100
|
+
{
|
101
|
+
// Read the dialog fields values from the specified
|
102
|
+
// element attributes.
|
103
|
+
field.setup = function( element )
|
104
|
+
{
|
105
|
+
field.setValue( element.getAttribute( field.id ) || '' );
|
106
|
+
};
|
107
|
+
}
|
108
|
+
if ( !field.commit )
|
109
|
+
{
|
110
|
+
// Set element attributes assigned by the dialog
|
111
|
+
// fields.
|
112
|
+
field.commit = function( element )
|
113
|
+
{
|
114
|
+
var fieldValue = this.getValue();
|
115
|
+
// ignore default element attribute values
|
116
|
+
if ( 'dir' == field.id && element.getComputedStyle( 'direction' ) == fieldValue )
|
117
|
+
return;
|
118
|
+
|
119
|
+
if ( fieldValue )
|
120
|
+
element.setAttribute( field.id, fieldValue );
|
121
|
+
else
|
122
|
+
element.removeAttribute( field.id );
|
123
|
+
};
|
124
|
+
}
|
125
|
+
}
|
126
|
+
} );
|
127
|
+
}
|
128
|
+
|
129
|
+
/**
|
130
|
+
* Wrapping 'div' element around appropriate blocks among the selected ranges.
|
131
|
+
* @param {Object} editor
|
132
|
+
*/
|
133
|
+
function createDiv( editor )
|
134
|
+
{
|
135
|
+
// new adding containers OR detected pre-existed containers.
|
136
|
+
var containers = [];
|
137
|
+
// node markers store.
|
138
|
+
var database = {};
|
139
|
+
// All block level elements which contained by the ranges.
|
140
|
+
var containedBlocks = [], block;
|
141
|
+
|
142
|
+
// Get all ranges from the selection.
|
143
|
+
var selection = editor.document.getSelection(),
|
144
|
+
ranges = selection.getRanges();
|
145
|
+
var bookmarks = selection.createBookmarks();
|
146
|
+
var i, iterator;
|
147
|
+
|
148
|
+
// Calcualte a default block tag if we need to create blocks.
|
149
|
+
var blockTag = editor.config.enterMode == CKEDITOR.ENTER_DIV ? 'div' : 'p';
|
150
|
+
|
151
|
+
// collect all included elements from dom-iterator
|
152
|
+
for ( i = 0 ; i < ranges.length ; i++ )
|
153
|
+
{
|
154
|
+
iterator = ranges[ i ].createIterator();
|
155
|
+
while ( ( block = iterator.getNextParagraph() ) )
|
156
|
+
{
|
157
|
+
// include contents of blockLimit elements.
|
158
|
+
if ( block.getName() in divLimitDefinition )
|
159
|
+
{
|
160
|
+
var j, childNodes = block.getChildren();
|
161
|
+
for ( j = 0 ; j < childNodes.count() ; j++ )
|
162
|
+
addSafely( containedBlocks, childNodes.getItem( j ) , database );
|
163
|
+
}
|
164
|
+
else
|
165
|
+
{
|
166
|
+
// Bypass dtd disallowed elements.
|
167
|
+
while ( !dtd[ block.getName() ] && block.getName() != 'body' )
|
168
|
+
block = block.getParent();
|
169
|
+
addSafely( containedBlocks, block, database );
|
170
|
+
}
|
171
|
+
}
|
172
|
+
}
|
173
|
+
|
174
|
+
CKEDITOR.dom.element.clearAllMarkers( database );
|
175
|
+
|
176
|
+
var blockGroups = groupByDivLimit( containedBlocks );
|
177
|
+
var ancestor, blockEl, divElement;
|
178
|
+
|
179
|
+
for ( i = 0 ; i < blockGroups.length ; i++ )
|
180
|
+
{
|
181
|
+
var currentNode = blockGroups[ i ][ 0 ];
|
182
|
+
|
183
|
+
// Calculate the common parent node of all contained elements.
|
184
|
+
ancestor = currentNode.getParent();
|
185
|
+
for ( j = 1 ; j < blockGroups[ i ].length; j++ )
|
186
|
+
ancestor = ancestor.getCommonAncestor( blockGroups[ i ][ j ] );
|
187
|
+
|
188
|
+
divElement = new CKEDITOR.dom.element( 'div', editor.document );
|
189
|
+
|
190
|
+
// Normalize the blocks in each group to a common parent.
|
191
|
+
for ( j = 0; j < blockGroups[ i ].length ; j++ )
|
192
|
+
{
|
193
|
+
currentNode = blockGroups[ i ][ j ];
|
194
|
+
|
195
|
+
while ( !currentNode.getParent().equals( ancestor ) )
|
196
|
+
currentNode = currentNode.getParent();
|
197
|
+
|
198
|
+
// This could introduce some duplicated elements in array.
|
199
|
+
blockGroups[ i ][ j ] = currentNode;
|
200
|
+
}
|
201
|
+
|
202
|
+
// Wrapped blocks counting
|
203
|
+
var fixedBlock = null;
|
204
|
+
for ( j = 0 ; j < blockGroups[ i ].length ; j++ )
|
205
|
+
{
|
206
|
+
currentNode = blockGroups[ i ][ j ];
|
207
|
+
|
208
|
+
// Avoid DUP elements introduced by grouping.
|
209
|
+
if ( !( currentNode.getCustomData && currentNode.getCustomData( 'block_processed' ) ) )
|
210
|
+
{
|
211
|
+
currentNode.is && CKEDITOR.dom.element.setMarker( database, currentNode, 'block_processed', true );
|
212
|
+
|
213
|
+
// Establish new container, wrapping all elements in this group.
|
214
|
+
if ( !j )
|
215
|
+
divElement.insertBefore( currentNode );
|
216
|
+
|
217
|
+
divElement.append( currentNode );
|
218
|
+
}
|
219
|
+
}
|
220
|
+
|
221
|
+
CKEDITOR.dom.element.clearAllMarkers( database );
|
222
|
+
containers.push( divElement );
|
223
|
+
}
|
224
|
+
|
225
|
+
selection.selectBookmarks( bookmarks );
|
226
|
+
return containers;
|
227
|
+
}
|
228
|
+
|
229
|
+
function getDiv( editor )
|
230
|
+
{
|
231
|
+
var path = new CKEDITOR.dom.elementPath( editor.getSelection().getStartElement() ),
|
232
|
+
blockLimit = path.blockLimit,
|
233
|
+
div = blockLimit && blockLimit.getAscendant( 'div', true );
|
234
|
+
return div;
|
235
|
+
}
|
236
|
+
/**
|
237
|
+
* Divide a set of nodes to different groups by their path's blocklimit element.
|
238
|
+
* Note: the specified nodes should be in source order naturally, which mean they are supposed to producea by following class:
|
239
|
+
* * CKEDITOR.dom.range.Iterator
|
240
|
+
* * CKEDITOR.dom.domWalker
|
241
|
+
* @return {Array []} the grouped nodes
|
242
|
+
*/
|
243
|
+
function groupByDivLimit( nodes )
|
244
|
+
{
|
245
|
+
var groups = [],
|
246
|
+
lastDivLimit = null,
|
247
|
+
path, block;
|
248
|
+
for ( var i = 0 ; i < nodes.length ; i++ )
|
249
|
+
{
|
250
|
+
block = nodes[i];
|
251
|
+
var limit = getDivLimitElement( block );
|
252
|
+
if ( !limit.equals( lastDivLimit ) )
|
253
|
+
{
|
254
|
+
lastDivLimit = limit ;
|
255
|
+
groups.push( [] ) ;
|
256
|
+
}
|
257
|
+
groups[ groups.length - 1 ].push( block ) ;
|
258
|
+
}
|
259
|
+
return groups;
|
260
|
+
}
|
261
|
+
|
262
|
+
// Synchronous field values to other impacted fields is required, e.g. div styles
|
263
|
+
// change should also alter inline-style text.
|
264
|
+
function commitInternally( targetFields )
|
265
|
+
{
|
266
|
+
var dialog = this.getDialog(),
|
267
|
+
element = dialog._element && dialog._element.clone()
|
268
|
+
|| new CKEDITOR.dom.element( 'div', editor.document );
|
269
|
+
|
270
|
+
// Commit this field and broadcast to target fields.
|
271
|
+
this.commit( element, true );
|
272
|
+
|
273
|
+
targetFields = [].concat( targetFields );
|
274
|
+
var length = targetFields.length, field;
|
275
|
+
for ( var i = 0; i < length; i++ )
|
276
|
+
{
|
277
|
+
field = dialog.getContentElement.apply( dialog, targetFields[ i ].split( ':' ) );
|
278
|
+
field && field.setup && field.setup( element, true );
|
279
|
+
}
|
280
|
+
}
|
281
|
+
|
282
|
+
|
283
|
+
// Registered 'CKEDITOR.style' instances.
|
284
|
+
var styles = {} ;
|
285
|
+
/**
|
286
|
+
* Hold a collection of created block container elements.
|
287
|
+
*/
|
288
|
+
var containers = [];
|
289
|
+
/**
|
290
|
+
* @type divDialog
|
291
|
+
*/
|
292
|
+
return {
|
293
|
+
title : editor.lang.div.title,
|
294
|
+
minWidth : 400,
|
295
|
+
minHeight : 165,
|
296
|
+
contents :
|
297
|
+
[
|
298
|
+
{
|
299
|
+
id :'info',
|
300
|
+
label :editor.lang.common.generalTab,
|
301
|
+
title :editor.lang.common.generalTab,
|
302
|
+
elements :
|
303
|
+
[
|
304
|
+
{
|
305
|
+
type :'hbox',
|
306
|
+
widths : [ '50%', '50%' ],
|
307
|
+
children :
|
308
|
+
[
|
309
|
+
{
|
310
|
+
id :'elementStyle',
|
311
|
+
type :'select',
|
312
|
+
style :'width: 100%;',
|
313
|
+
label :editor.lang.div.styleSelectLabel,
|
314
|
+
'default' : '',
|
315
|
+
// Options are loaded dynamically.
|
316
|
+
items :
|
317
|
+
[
|
318
|
+
[ editor.lang.common.notSet , '' ]
|
319
|
+
],
|
320
|
+
onChange : function()
|
321
|
+
{
|
322
|
+
commitInternally.call( this, [ 'info:class', 'advanced:dir', 'advanced:style' ] );
|
323
|
+
},
|
324
|
+
setup : function( element )
|
325
|
+
{
|
326
|
+
for ( var name in styles )
|
327
|
+
styles[ name ].checkElementRemovable( element, true ) && this.setValue( name );
|
328
|
+
},
|
329
|
+
commit: function( element )
|
330
|
+
{
|
331
|
+
var styleName;
|
332
|
+
if ( ( styleName = this.getValue() ) )
|
333
|
+
{
|
334
|
+
var style = styles[ styleName ];
|
335
|
+
var customData = element.getCustomData( 'elementStyle' ) || '';
|
336
|
+
|
337
|
+
style.applyToObject( element );
|
338
|
+
element.setCustomData( 'elementStyle', customData + style._.definition.attributes.style );
|
339
|
+
}
|
340
|
+
}
|
341
|
+
},
|
342
|
+
{
|
343
|
+
id :'class',
|
344
|
+
type :'text',
|
345
|
+
label :editor.lang.common.cssClass,
|
346
|
+
'default' : ''
|
347
|
+
}
|
348
|
+
]
|
349
|
+
}
|
350
|
+
]
|
351
|
+
},
|
352
|
+
{
|
353
|
+
id :'advanced',
|
354
|
+
label :editor.lang.common.advancedTab,
|
355
|
+
title :editor.lang.common.advancedTab,
|
356
|
+
elements :
|
357
|
+
[
|
358
|
+
{
|
359
|
+
type :'vbox',
|
360
|
+
padding :1,
|
361
|
+
children :
|
362
|
+
[
|
363
|
+
{
|
364
|
+
type :'hbox',
|
365
|
+
widths : [ '50%', '50%' ],
|
366
|
+
children :
|
367
|
+
[
|
368
|
+
{
|
369
|
+
type :'text',
|
370
|
+
id :'id',
|
371
|
+
label :editor.lang.common.id,
|
372
|
+
'default' : ''
|
373
|
+
},
|
374
|
+
{
|
375
|
+
type :'text',
|
376
|
+
id :'lang',
|
377
|
+
label :editor.lang.link.langCode,
|
378
|
+
'default' : ''
|
379
|
+
}
|
380
|
+
]
|
381
|
+
},
|
382
|
+
{
|
383
|
+
type :'hbox',
|
384
|
+
children :
|
385
|
+
[
|
386
|
+
{
|
387
|
+
type :'text',
|
388
|
+
id :'style',
|
389
|
+
style :'width: 100%;',
|
390
|
+
label :editor.lang.common.cssStyle,
|
391
|
+
'default' : '',
|
392
|
+
commit : function( element )
|
393
|
+
{
|
394
|
+
// Merge with 'elementStyle', which is of higher priority.
|
395
|
+
var merged = this.getValue() + ( element.getCustomData( 'elementStyle' ) || '' );
|
396
|
+
element.setAttribute( 'style', merged );
|
397
|
+
}
|
398
|
+
}
|
399
|
+
]
|
400
|
+
},
|
401
|
+
{
|
402
|
+
type :'hbox',
|
403
|
+
children :
|
404
|
+
[
|
405
|
+
{
|
406
|
+
type :'text',
|
407
|
+
id :'title',
|
408
|
+
style :'width: 100%;',
|
409
|
+
label :editor.lang.common.advisoryTitle,
|
410
|
+
'default' : ''
|
411
|
+
}
|
412
|
+
]
|
413
|
+
},
|
414
|
+
{
|
415
|
+
type :'select',
|
416
|
+
id :'dir',
|
417
|
+
style :'width: 100%;',
|
418
|
+
label :editor.lang.common.langDir,
|
419
|
+
'default' : '',
|
420
|
+
items :
|
421
|
+
[
|
422
|
+
[ editor.lang.common.notSet , '' ],
|
423
|
+
[
|
424
|
+
editor.lang.common.langDirLtr,
|
425
|
+
'ltr'
|
426
|
+
],
|
427
|
+
[
|
428
|
+
editor.lang.common.langDirRtl,
|
429
|
+
'rtl'
|
430
|
+
]
|
431
|
+
]
|
432
|
+
}
|
433
|
+
]
|
434
|
+
}
|
435
|
+
]
|
436
|
+
}
|
437
|
+
],
|
438
|
+
onLoad : function()
|
439
|
+
{
|
440
|
+
setupFields.call( this );
|
441
|
+
|
442
|
+
// Preparing for the 'elementStyle' field.
|
443
|
+
var dialog = this,
|
444
|
+
stylesField = this.getContentElement( 'info', 'elementStyle' );
|
445
|
+
|
446
|
+
// Reuse the 'stylescombo' plugin's styles definition.
|
447
|
+
editor.getStylesSet( function( stylesDefinitions )
|
448
|
+
{
|
449
|
+
var styleName;
|
450
|
+
|
451
|
+
if ( stylesDefinitions )
|
452
|
+
{
|
453
|
+
// Digg only those styles that apply to 'div'.
|
454
|
+
for ( var i = 0 ; i < stylesDefinitions.length ; i++ )
|
455
|
+
{
|
456
|
+
var styleDefinition = stylesDefinitions[ i ];
|
457
|
+
if ( styleDefinition.element && styleDefinition.element == 'div' )
|
458
|
+
{
|
459
|
+
styleName = styleDefinition.name;
|
460
|
+
styles[ styleName ] = new CKEDITOR.style( styleDefinition );
|
461
|
+
|
462
|
+
// Populate the styles field options with style name.
|
463
|
+
stylesField.items.push( [ styleName, styleName ] );
|
464
|
+
stylesField.add( styleName, styleName );
|
465
|
+
}
|
466
|
+
}
|
467
|
+
}
|
468
|
+
|
469
|
+
// We should disable the content element
|
470
|
+
// it if no options are available at all.
|
471
|
+
stylesField[ stylesField.items.length > 1 ? 'enable' : 'disable' ]();
|
472
|
+
|
473
|
+
// Now setup the field value manually.
|
474
|
+
setTimeout( function() { stylesField.setup( dialog._element ); }, 0 );
|
475
|
+
} );
|
476
|
+
},
|
477
|
+
onShow : function()
|
478
|
+
{
|
479
|
+
// Whether always create new container regardless of existed
|
480
|
+
// ones.
|
481
|
+
if ( command == 'editdiv' )
|
482
|
+
{
|
483
|
+
// Try to discover the containers that already existed in
|
484
|
+
// ranges
|
485
|
+
var div = getDiv( editor );
|
486
|
+
// update dialog field values
|
487
|
+
div && this.setupContent( this._element = div );
|
488
|
+
}
|
489
|
+
},
|
490
|
+
onOk : function()
|
491
|
+
{
|
492
|
+
if ( command == 'editdiv' )
|
493
|
+
containers = [ this._element ];
|
494
|
+
else
|
495
|
+
containers = createDiv( editor, true );
|
496
|
+
|
497
|
+
// Update elements attributes
|
498
|
+
var size = containers.length;
|
499
|
+
for ( var i = 0; i < size; i++ )
|
500
|
+
{
|
501
|
+
this.commitContent( containers[ i ] );
|
502
|
+
|
503
|
+
// Remove empty 'style' attribute.
|
504
|
+
!containers[ i ].getAttribute( 'style' ) && containers[ i ].removeAttribute( 'style' );
|
505
|
+
}
|
506
|
+
|
507
|
+
this.hide();
|
508
|
+
},
|
509
|
+
onHide : function()
|
510
|
+
{
|
511
|
+
// Remove style only when editing existing DIV. (#6315)
|
512
|
+
if ( command == 'editdiv' )
|
513
|
+
this._element.removeCustomData( 'elementStyle' );
|
514
|
+
delete this._element;
|
515
|
+
}
|
516
|
+
};
|
517
|
+
}
|
518
|
+
|
519
|
+
CKEDITOR.dialog.add( 'creatediv', function( editor )
|
520
|
+
{
|
521
|
+
return divDialog( editor, 'creatediv' );
|
522
|
+
} );
|
523
|
+
CKEDITOR.dialog.add( 'editdiv', function( editor )
|
524
|
+
{
|
525
|
+
return divDialog( editor, 'editdiv' );
|
526
|
+
} );
|
527
|
+
} )();
|
528
|
+
|
529
|
+
/*
|
530
|
+
* @name CKEDITOR.config.div_wrapTable
|
531
|
+
* Whether to wrap the whole table instead of indivisual cells when created 'div' in table cell.
|
532
|
+
* @type Boolean
|
533
|
+
* @default false
|
534
|
+
* @example config.div_wrapTable = true;
|
535
|
+
*/
|