From ea7e3453c7b0f023b050aca6d9f83ab372860d91 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Thu, 4 Nov 2010 01:29:12 -0400 Subject: [PATCH] vanilla ckeditor-3.0 --- .htaccess | 24 + CHANGES.html | 254 ++ INSTALL.html | 92 + LICENSE.html | 1334 ++++++++++ _samples/ajax.html | 95 + _samples/api_dialog.html | 178 ++ _samples/api_dialog/my_dialog.js | 28 + _samples/divreplace.html | 136 + _samples/enterkey.html | 90 + _samples/index.html | 49 + _samples/replacebyclass.html | 50 + _samples/replacebycode.html | 81 + _samples/sample.css | 81 + _samples/sample.js | 71 + _samples/sample_posteddata.php | 59 + _samples/skins.html | 84 + _samples/ui_color.html | 87 + _samples/ui_languages.html | 115 + _source/core/_bootstrap.js | 64 + _source/core/ajax.js | 143 + _source/core/ckeditor.js | 96 + _source/core/ckeditor_base.js | 190 ++ _source/core/ckeditor_basic.js | 241 ++ _source/core/command.js | 70 + _source/core/commanddefinition.js | 72 + _source/core/config.js | 287 ++ _source/core/dom.js | 21 + _source/core/dom/document.js | 210 ++ _source/core/dom/documentfragment.js | 49 + _source/core/dom/domobject.js | 204 ++ _source/core/dom/element.js | 1384 ++++++++++ _source/core/dom/elementpath.js | 104 + _source/core/dom/event.js | 137 + _source/core/dom/node.js | 649 +++++ _source/core/dom/nodelist.js | 23 + _source/core/dom/range.js | 1668 ++++++++++++ _source/core/dom/text.js | 123 + _source/core/dom/walker.js | 411 +++ _source/core/dom/window.js | 96 + _source/core/dtd.js | 200 ++ _source/core/editor.js | 650 +++++ _source/core/editor_basic.js | 178 ++ _source/core/env.js | 219 ++ _source/core/event.js | 335 +++ _source/core/eventInfo.js | 120 + _source/core/focusmanager.js | 123 + _source/core/htmlparser.js | 212 ++ _source/core/htmlparser/basicwriter.js | 140 + _source/core/htmlparser/cdata.js | 44 + _source/core/htmlparser/comment.js | 59 + _source/core/htmlparser/element.js | 196 ++ _source/core/htmlparser/filter.js | 233 ++ _source/core/htmlparser/fragment.js | 434 ++++ _source/core/htmlparser/text.js | 55 + _source/core/imagecacher.js | 58 + _source/core/lang.js | 147 ++ _source/core/loader.js | 238 ++ _source/core/plugindefinition.js | 66 + _source/core/plugins.js | 82 + _source/core/resourcemanager.js | 233 ++ _source/core/scriptloader.js | 194 ++ _source/core/skins.js | 185 ++ _source/core/test.js | 184 ++ _source/core/themes.js | 18 + _source/core/tools.js | 531 ++++ _source/core/ui.js | 106 + _source/core/xml.js | 165 ++ _source/lang/_languages.js | 82 + _source/lang/_translationstatus.txt | 59 + _source/lang/af.js | 674 +++++ _source/lang/ar.js | 674 +++++ _source/lang/bg.js | 674 +++++ _source/lang/bn.js | 674 +++++ _source/lang/bs.js | 674 +++++ _source/lang/ca.js | 674 +++++ _source/lang/cs.js | 674 +++++ _source/lang/da.js | 674 +++++ _source/lang/de.js | 674 +++++ _source/lang/el.js | 674 +++++ _source/lang/en-au.js | 674 +++++ _source/lang/en-ca.js | 674 +++++ _source/lang/en-uk.js | 674 +++++ _source/lang/en.js | 674 +++++ _source/lang/eo.js | 674 +++++ _source/lang/es.js | 674 +++++ _source/lang/et.js | 674 +++++ _source/lang/eu.js | 674 +++++ _source/lang/fa.js | 674 +++++ _source/lang/fi.js | 674 +++++ _source/lang/fo.js | 674 +++++ _source/lang/fr-ca.js | 674 +++++ _source/lang/fr.js | 674 +++++ _source/lang/gl.js | 674 +++++ _source/lang/gu.js | 674 +++++ _source/lang/he.js | 674 +++++ _source/lang/hi.js | 674 +++++ _source/lang/hr.js | 674 +++++ _source/lang/hu.js | 674 +++++ _source/lang/is.js | 674 +++++ _source/lang/it.js | 674 +++++ _source/lang/ja.js | 674 +++++ _source/lang/km.js | 674 +++++ _source/lang/ko.js | 674 +++++ _source/lang/lt.js | 674 +++++ _source/lang/lv.js | 674 +++++ _source/lang/mn.js | 674 +++++ _source/lang/ms.js | 674 +++++ _source/lang/nb.js | 674 +++++ _source/lang/nl.js | 674 +++++ _source/lang/no.js | 674 +++++ _source/lang/pl.js | 674 +++++ _source/lang/pt-br.js | 674 +++++ _source/lang/pt.js | 674 +++++ _source/lang/ro.js | 674 +++++ _source/lang/ru.js | 674 +++++ _source/lang/sk.js | 674 +++++ _source/lang/sl.js | 674 +++++ _source/lang/sr-latn.js | 674 +++++ _source/lang/sr.js | 674 +++++ _source/lang/sv.js | 674 +++++ _source/lang/th.js | 674 +++++ _source/lang/tr.js | 674 +++++ _source/lang/uk.js | 674 +++++ _source/lang/vi.js | 674 +++++ _source/lang/zh-cn.js | 674 +++++ _source/lang/zh.js | 674 +++++ _source/plugins/about/dialogs/about.js | 73 + _source/plugins/about/dialogs/logo_ckeditor.png | Bin 0 -> 2759 bytes _source/plugins/about/plugin.js | 22 + _source/plugins/basicstyles/plugin.js | 50 + _source/plugins/blockquote/plugin.js | 301 +++ _source/plugins/button/plugin.js | 264 ++ _source/plugins/clipboard/dialogs/paste.js | 167 ++ _source/plugins/clipboard/plugin.js | 208 ++ _source/plugins/colorbutton/plugin.js | 202 ++ _source/plugins/contextmenu/plugin.js | 178 ++ _source/plugins/dialog/dialogDefinition.js | 315 +++ _source/plugins/dialog/plugin.js | 2742 ++++++++++++++++++++ _source/plugins/dialogui/plugin.js | 1319 ++++++++++ _source/plugins/domiterator/plugin.js | 354 +++ _source/plugins/editingblock/plugin.js | 236 ++ _source/plugins/elementspath/plugin.js | 182 ++ _source/plugins/enterkey/plugin.js | 324 +++ _source/plugins/entities/plugin.js | 200 ++ _source/plugins/fakeobjects/plugin.js | 111 + _source/plugins/filebrowser/plugin.js | 383 +++ _source/plugins/find/dialogs/find.js | 843 ++++++ _source/plugins/find/plugin.js | 46 + _source/plugins/flash/dialogs/flash.js | 682 +++++ _source/plugins/flash/images/placeholder.png | Bin 0 -> 256 bytes _source/plugins/flash/plugin.js | 165 ++ _source/plugins/floatpanel/plugin.js | 325 +++ _source/plugins/font/plugin.js | 227 ++ _source/plugins/format/plugin.js | 191 ++ _source/plugins/forms/dialogs/button.js | 135 + _source/plugins/forms/dialogs/checkbox.js | 138 + _source/plugins/forms/dialogs/form.js | 177 ++ _source/plugins/forms/dialogs/hiddenfield.js | 91 + _source/plugins/forms/dialogs/radio.js | 135 + _source/plugins/forms/dialogs/select.js | 541 ++++ _source/plugins/forms/dialogs/textarea.js | 114 + _source/plugins/forms/dialogs/textfield.js | 193 ++ _source/plugins/forms/plugin.js | 193 ++ _source/plugins/horizontalrule/plugin.js | 35 + _source/plugins/htmldataprocessor/plugin.js | 373 +++ _source/plugins/htmlwriter/plugin.js | 289 +++ _source/plugins/iframedialog/plugin.js | 136 + _source/plugins/image/dialogs/image.js | 1225 +++++++++ _source/plugins/image/plugin.js | 64 + _source/plugins/indent/plugin.js | 323 +++ _source/plugins/justify/plugin.js | 164 ++ _source/plugins/keystrokes/plugin.js | 217 ++ _source/plugins/link/dialogs/anchor.js | 98 + _source/plugins/link/dialogs/link.js | 1217 +++++++++ _source/plugins/link/images/anchor.gif | Bin 0 -> 184 bytes _source/plugins/link/plugin.js | 188 ++ _source/plugins/list/plugin.js | 570 ++++ _source/plugins/listblock/plugin.js | 231 ++ _source/plugins/maximize/plugin.js | 267 ++ _source/plugins/menu/plugin.js | 377 +++ _source/plugins/menubutton/plugin.js | 93 + _source/plugins/newpage/plugin.js | 65 + _source/plugins/pagebreak/images/pagebreak.gif | Bin 0 -> 54 bytes _source/plugins/pagebreak/plugin.js | 96 + _source/plugins/panel/plugin.js | 330 +++ _source/plugins/panelbutton/plugin.js | 140 + .../plugins/pastefromword/dialogs/pastefromword.js | 307 +++ _source/plugins/pastefromword/plugin.js | 54 + _source/plugins/pastetext/dialogs/pastetext.js | 65 + _source/plugins/pastetext/plugin.js | 142 + _source/plugins/popup/plugin.js | 62 + _source/plugins/preview/plugin.js | 97 + _source/plugins/print/plugin.js | 41 + _source/plugins/removeformat/plugin.js | 132 + _source/plugins/resize/plugin.js | 115 + _source/plugins/richcombo/plugin.js | 357 +++ _source/plugins/save/plugin.js | 55 + _source/plugins/scayt/dialogs/options.js | 494 ++++ _source/plugins/scayt/dialogs/toolbar.css | 71 + _source/plugins/scayt/plugin.js | 511 ++++ _source/plugins/selection/plugin.js | 1072 ++++++++ .../plugins/showblocks/images/block_address.png | Bin 0 -> 288 bytes .../plugins/showblocks/images/block_blockquote.png | Bin 0 -> 293 bytes _source/plugins/showblocks/images/block_div.png | Bin 0 -> 229 bytes _source/plugins/showblocks/images/block_h1.png | Bin 0 -> 218 bytes _source/plugins/showblocks/images/block_h2.png | Bin 0 -> 220 bytes _source/plugins/showblocks/images/block_h3.png | Bin 0 -> 219 bytes _source/plugins/showblocks/images/block_h4.png | Bin 0 -> 229 bytes _source/plugins/showblocks/images/block_h5.png | Bin 0 -> 236 bytes _source/plugins/showblocks/images/block_h6.png | Bin 0 -> 216 bytes _source/plugins/showblocks/images/block_p.png | Bin 0 -> 205 bytes _source/plugins/showblocks/images/block_pre.png | Bin 0 -> 223 bytes _source/plugins/showblocks/plugin.js | 153 ++ _source/plugins/smiley/dialogs/smiley.js | 219 ++ _source/plugins/smiley/images/angel_smile.gif | Bin 0 -> 465 bytes _source/plugins/smiley/images/angry_smile.gif | Bin 0 -> 443 bytes _source/plugins/smiley/images/broken_heart.gif | Bin 0 -> 192 bytes _source/plugins/smiley/images/confused_smile.gif | Bin 0 -> 464 bytes _source/plugins/smiley/images/cry_smile.gif | Bin 0 -> 468 bytes _source/plugins/smiley/images/devil_smile.gif | Bin 0 -> 436 bytes _source/plugins/smiley/images/embaressed_smile.gif | Bin 0 -> 442 bytes _source/plugins/smiley/images/envelope.gif | Bin 0 -> 426 bytes _source/plugins/smiley/images/heart.gif | Bin 0 -> 183 bytes _source/plugins/smiley/images/kiss.gif | Bin 0 -> 241 bytes _source/plugins/smiley/images/lightbulb.gif | Bin 0 -> 368 bytes _source/plugins/smiley/images/omg_smile.gif | Bin 0 -> 451 bytes _source/plugins/smiley/images/regular_smile.gif | Bin 0 -> 450 bytes _source/plugins/smiley/images/sad_smile.gif | Bin 0 -> 460 bytes _source/plugins/smiley/images/shades_smile.gif | Bin 0 -> 449 bytes _source/plugins/smiley/images/teeth_smile.gif | Bin 0 -> 442 bytes _source/plugins/smiley/images/thumbs_down.gif | Bin 0 -> 408 bytes _source/plugins/smiley/images/thumbs_up.gif | Bin 0 -> 396 bytes _source/plugins/smiley/images/tounge_smile.gif | Bin 0 -> 446 bytes .../smiley/images/whatchutalkingabout_smile.gif | Bin 0 -> 452 bytes _source/plugins/smiley/images/wink_smile.gif | Bin 0 -> 458 bytes _source/plugins/smiley/plugin.js | 74 + _source/plugins/sourcearea/plugin.js | 185 ++ _source/plugins/specialchar/dialogs/specialchar.js | 362 +++ _source/plugins/specialchar/plugin.js | 29 + _source/plugins/styles/plugin.js | 1242 +++++++++ _source/plugins/stylescombo/plugin.js | 295 +++ _source/plugins/stylescombo/styles/default.js | 85 + _source/plugins/tab/plugin.js | 266 ++ _source/plugins/table/dialogs/table.js | 550 ++++ _source/plugins/table/plugin.js | 70 + _source/plugins/tabletools/dialogs/tableCell.js | 328 +++ _source/plugins/tabletools/plugin.js | 701 +++++ _source/plugins/templates/dialogs/templates.js | 170 ++ _source/plugins/templates/plugin.js | 99 + _source/plugins/templates/templates/default.js | 94 + .../templates/templates/images/template1.gif | Bin 0 -> 375 bytes .../templates/templates/images/template2.gif | Bin 0 -> 333 bytes .../templates/templates/images/template3.gif | Bin 0 -> 422 bytes _source/plugins/toolbar/plugin.js | 412 +++ _source/plugins/uicolor/dialogs/uicolor.js | 203 ++ _source/plugins/uicolor/lang/en.js | 15 + _source/plugins/uicolor/plugin.js | 35 + _source/plugins/uicolor/uicolor.gif | Bin 0 -> 1108 bytes _source/plugins/uicolor/yui/assets/hue_bg.png | Bin 0 -> 1120 bytes _source/plugins/uicolor/yui/assets/hue_thumb.png | Bin 0 -> 195 bytes _source/plugins/uicolor/yui/assets/picker_mask.png | Bin 0 -> 12174 bytes .../plugins/uicolor/yui/assets/picker_thumb.png | Bin 0 -> 192 bytes _source/plugins/uicolor/yui/assets/yui.css | 15 + _source/plugins/uicolor/yui/yui.js | 71 + _source/plugins/undo/plugin.js | 490 ++++ _source/plugins/wsc/dialogs/ciframe.html | 49 + _source/plugins/wsc/dialogs/tmpFrameset.html | 52 + _source/plugins/wsc/dialogs/wsc.css | 83 + _source/plugins/wsc/dialogs/wsc.js | 169 ++ _source/plugins/wsc/plugin.js | 32 + _source/plugins/wysiwygarea/plugin.js | 636 +++++ _source/skins/kama/dialog.css | 742 ++++++ _source/skins/kama/editor.css | 21 + _source/skins/kama/elementspath.css | 68 + _source/skins/kama/icons.css | 309 +++ _source/skins/kama/icons.png | Bin 0 -> 4365 bytes _source/skins/kama/images/dialog_sides.gif | Bin 0 -> 48 bytes _source/skins/kama/images/dialog_sides.png | Bin 0 -> 178 bytes _source/skins/kama/images/dialog_sides_rtl.png | Bin 0 -> 181 bytes _source/skins/kama/images/mini.gif | Bin 0 -> 183 bytes _source/skins/kama/images/noimage.png | Bin 0 -> 2115 bytes _source/skins/kama/images/sprites.png | Bin 0 -> 7086 bytes _source/skins/kama/images/sprites_ie6.png | Bin 0 -> 2724 bytes _source/skins/kama/images/toolbar_start.gif | Bin 0 -> 105 bytes _source/skins/kama/mainui.css | 139 + _source/skins/kama/menu.css | 179 ++ _source/skins/kama/panel.css | 203 ++ _source/skins/kama/presets.css | 49 + _source/skins/kama/reset.css | 78 + _source/skins/kama/richcombo.css | 260 ++ _source/skins/kama/skin.js | 291 +++ _source/skins/kama/templates.css | 71 + _source/skins/kama/toolbar.css | 384 +++ _source/skins/office2003/dialog.css | 643 +++++ _source/skins/office2003/editor.css | 21 + _source/skins/office2003/elementspath.css | 68 + _source/skins/office2003/icons.css | 309 +++ _source/skins/office2003/icons.png | Bin 0 -> 4365 bytes _source/skins/office2003/images/dialog_sides.gif | Bin 0 -> 48 bytes _source/skins/office2003/images/dialog_sides.png | Bin 0 -> 178 bytes .../skins/office2003/images/dialog_sides_rtl.png | Bin 0 -> 181 bytes _source/skins/office2003/images/mini.gif | Bin 0 -> 183 bytes _source/skins/office2003/images/noimage.png | Bin 0 -> 2115 bytes _source/skins/office2003/images/sprites.png | Bin 0 -> 6119 bytes _source/skins/office2003/images/sprites_ie6.png | Bin 0 -> 2715 bytes _source/skins/office2003/mainui.css | 97 + _source/skins/office2003/menu.css | 175 ++ _source/skins/office2003/panel.css | 198 ++ _source/skins/office2003/presets.css | 49 + _source/skins/office2003/reset.css | 78 + _source/skins/office2003/richcombo.css | 279 ++ _source/skins/office2003/skin.js | 77 + _source/skins/office2003/templates.css | 71 + _source/skins/office2003/toolbar.css | 442 ++++ _source/skins/v2/dialog.css | 653 +++++ _source/skins/v2/editor.css | 21 + _source/skins/v2/elementspath.css | 68 + _source/skins/v2/icons.css | 309 +++ _source/skins/v2/icons.png | Bin 0 -> 4365 bytes _source/skins/v2/images/dialog_sides.gif | Bin 0 -> 48 bytes _source/skins/v2/images/dialog_sides.png | Bin 0 -> 178 bytes _source/skins/v2/images/dialog_sides_rtl.png | Bin 0 -> 181 bytes _source/skins/v2/images/mini.gif | Bin 0 -> 183 bytes _source/skins/v2/images/noimage.png | Bin 0 -> 2115 bytes _source/skins/v2/images/sprites.png | Bin 0 -> 5389 bytes _source/skins/v2/images/sprites_ie6.png | Bin 0 -> 492 bytes _source/skins/v2/images/toolbar_start.gif | Bin 0 -> 105 bytes _source/skins/v2/mainui.css | 112 + _source/skins/v2/menu.css | 178 ++ _source/skins/v2/panel.css | 198 ++ _source/skins/v2/presets.css | 50 + _source/skins/v2/reset.css | 78 + _source/skins/v2/richcombo.css | 275 ++ _source/skins/v2/skin.js | 73 + _source/skins/v2/templates.css | 71 + _source/skins/v2/toolbar.css | 399 +++ _source/tests/_assets/sample.css | 4 + _source/tests/_assets/sample.js | 1 + _source/tests/_assets/sample.txt | 1 + _source/tests/_assets/sample.xml | 5 + _source/tests/_assets/sample_xml.txt | 5 + _source/tests/core/_editor/custom_config_1.js | 10 + _source/tests/core/_editor/custom_config_2.js | 9 + _source/tests/core/ajax.html | 163 ++ _source/tests/core/bootstrap.html | 66 + _source/tests/core/ckeditor.html | 160 ++ _source/tests/core/dom/document.html | 126 + _source/tests/core/dom/documentfragment.html | 292 +++ _source/tests/core/dom/element.html | 637 +++++ _source/tests/core/dom/node.html | 164 ++ _source/tests/core/dom/range.html | 2411 +++++++++++++++++ _source/tests/core/dom/text.html | 128 + _source/tests/core/dom/walker.html | 340 +++ _source/tests/core/dom/window.html | 53 + _source/tests/core/editor.html | 123 + _source/tests/core/env.html | 52 + _source/tests/core/event.html | 487 ++++ _source/tests/core/htmlparser/fragment.html | 188 ++ _source/tests/core/htmlparser/htmlparser.html | 91 + _source/tests/core/plugins.html | 45 + .../core/plugins/myplugins/sample/my_plugin.js | 3 + _source/tests/core/scriptloader.html | 52 + _source/tests/core/tools.html | 170 ++ _source/tests/core/xml.html | 150 ++ _source/tests/plugins/domiterator/domiterator.html | 236 ++ .../htmldataprocessor/htmldataprocessor.html | 386 +++ _source/tests/plugins/link/link.html | 123 + _source/tests/plugins/list/list.html | 217 ++ _source/tests/plugins/selection/selection.html | 49 + _source/tests/plugins/styles/styles.html | 596 +++++ _source/tests/test.css | 81 + _source/tests/test.js | 93 + _source/tests/testall.html | 114 + _source/tests/yuitest.js | 75 + _source/themes/default/theme.js | 232 ++ _tests/_assets/sample.css | 4 + _tests/_assets/sample.js | 1 + _tests/_assets/sample.txt | 1 + _tests/_assets/sample.xml | 5 + _tests/_assets/sample_xml.txt | 5 + _tests/core/_editor/custom_config_1.js | 10 + _tests/core/_editor/custom_config_2.js | 9 + _tests/core/ajax.html | 163 ++ _tests/core/bootstrap.html | 66 + _tests/core/ckeditor.html | 160 ++ _tests/core/dom/document.html | 126 + _tests/core/dom/documentfragment.html | 292 +++ _tests/core/dom/element.html | 637 +++++ _tests/core/dom/node.html | 164 ++ _tests/core/dom/range.html | 2411 +++++++++++++++++ _tests/core/dom/text.html | 128 + _tests/core/dom/walker.html | 340 +++ _tests/core/dom/window.html | 53 + _tests/core/editor.html | 123 + _tests/core/env.html | 52 + _tests/core/event.html | 487 ++++ _tests/core/htmlparser/fragment.html | 188 ++ _tests/core/htmlparser/htmlparser.html | 91 + _tests/core/plugins.html | 45 + _tests/core/plugins/myplugins/sample/my_plugin.js | 3 + _tests/core/scriptloader.html | 52 + _tests/core/tools.html | 170 ++ _tests/core/xml.html | 150 ++ _tests/plugins/domiterator/domiterator.html | 236 ++ .../htmldataprocessor/htmldataprocessor.html | 386 +++ _tests/plugins/link/link.html | 123 + _tests/plugins/list/list.html | 217 ++ _tests/plugins/selection/selection.html | 49 + _tests/plugins/styles/styles.html | 596 +++++ _tests/test.css | 81 + _tests/test.js | 93 + _tests/testall.html | 114 + _tests/yuitest.js | 75 + ckeditor.js | 108 + ckeditor.pack | 199 ++ ckeditor_basic.js | 8 + ckeditor_basic_source.js | 20 + ckeditor_source.js | 25 + config.js | 11 + contents.css | 35 + images/spacer.gif | Bin 0 -> 43 bytes lang/_languages.js | 6 + lang/_translationstatus.txt | 59 + lang/af.js | 6 + lang/ar.js | 6 + lang/bg.js | 6 + lang/bn.js | 6 + lang/bs.js | 6 + lang/ca.js | 6 + lang/cs.js | 6 + lang/da.js | 6 + lang/de.js | 6 + lang/el.js | 6 + lang/en-au.js | 6 + lang/en-ca.js | 6 + lang/en-uk.js | 6 + lang/en.js | 6 + lang/eo.js | 6 + lang/es.js | 6 + lang/et.js | 6 + lang/eu.js | 6 + lang/fa.js | 6 + lang/fi.js | 6 + lang/fo.js | 6 + lang/fr-ca.js | 6 + lang/fr.js | 6 + lang/gl.js | 6 + lang/gu.js | 6 + lang/he.js | 6 + lang/hi.js | 6 + lang/hr.js | 6 + lang/hu.js | 6 + lang/is.js | 6 + lang/it.js | 6 + lang/ja.js | 6 + lang/km.js | 6 + lang/ko.js | 6 + lang/lt.js | 6 + lang/lv.js | 6 + lang/mn.js | 6 + lang/ms.js | 6 + lang/nb.js | 6 + lang/nl.js | 6 + lang/no.js | 6 + lang/pl.js | 6 + lang/pt-br.js | 6 + lang/pt.js | 6 + lang/ro.js | 6 + lang/ru.js | 6 + lang/sk.js | 6 + lang/sl.js | 6 + lang/sr-latn.js | 6 + lang/sr.js | 6 + lang/sv.js | 6 + lang/th.js | 6 + lang/tr.js | 6 + lang/uk.js | 6 + lang/vi.js | 6 + lang/zh-cn.js | 6 + lang/zh.js | 6 + plugins/about/dialogs/about.js | 6 + plugins/about/dialogs/logo_ckeditor.png | Bin 0 -> 2759 bytes plugins/about/plugin.js | 6 + plugins/basicstyles/plugin.js | 6 + plugins/blockquote/plugin.js | 7 + plugins/button/plugin.js | 7 + plugins/clipboard/dialogs/paste.js | 7 + plugins/clipboard/plugin.js | 6 + plugins/colorbutton/plugin.js | 7 + plugins/contextmenu/plugin.js | 6 + plugins/dialog/dialogDefinition.js | 4 + plugins/dialog/plugin.js | 17 + plugins/dialogui/plugin.js | 11 + plugins/domiterator/plugin.js | 7 + plugins/editingblock/plugin.js | 6 + plugins/elementspath/plugin.js | 6 + plugins/enterkey/plugin.js | 7 + plugins/entities/plugin.js | 6 + plugins/fakeobjects/plugin.js | 6 + plugins/filebrowser/plugin.js | 7 + plugins/find/dialogs/find.js | 9 + plugins/find/plugin.js | 6 + plugins/flash/dialogs/flash.js | 9 + plugins/flash/images/placeholder.png | Bin 0 -> 256 bytes plugins/flash/plugin.js | 6 + plugins/floatpanel/plugin.js | 7 + plugins/font/plugin.js | 6 + plugins/format/plugin.js | 6 + plugins/forms/dialogs/button.js | 6 + plugins/forms/dialogs/checkbox.js | 6 + plugins/forms/dialogs/form.js | 6 + plugins/forms/dialogs/hiddenfield.js | 6 + plugins/forms/dialogs/radio.js | 6 + plugins/forms/dialogs/select.js | 9 + plugins/forms/dialogs/textarea.js | 6 + plugins/forms/dialogs/textfield.js | 6 + plugins/forms/plugin.js | 7 + plugins/horizontalrule/plugin.js | 6 + plugins/htmldataprocessor/plugin.js | 7 + plugins/htmlwriter/plugin.js | 6 + plugins/iframedialog/plugin.js | 6 + plugins/image/dialogs/image.js | 12 + plugins/image/plugin.js | 6 + plugins/indent/plugin.js | 7 + plugins/justify/plugin.js | 6 + plugins/keystrokes/plugin.js | 6 + plugins/link/dialogs/anchor.js | 6 + plugins/link/dialogs/link.js | 11 + plugins/link/images/anchor.gif | Bin 0 -> 184 bytes plugins/link/plugin.js | 6 + plugins/list/plugin.js | 9 + plugins/listblock/plugin.js | 7 + plugins/maximize/plugin.js | 7 + plugins/menu/plugin.js | 7 + plugins/menubutton/plugin.js | 6 + plugins/newpage/plugin.js | 6 + plugins/pagebreak/images/pagebreak.gif | Bin 0 -> 54 bytes plugins/pagebreak/plugin.js | 6 + plugins/panel/plugin.js | 7 + plugins/panelbutton/plugin.js | 6 + plugins/pastefromword/dialogs/pastefromword.js | 8 + plugins/pastefromword/plugin.js | 6 + plugins/pastetext/dialogs/pastetext.js | 6 + plugins/pastetext/plugin.js | 6 + plugins/popup/plugin.js | 6 + plugins/preview/plugin.js | 6 + plugins/print/plugin.js | 6 + plugins/removeformat/plugin.js | 6 + plugins/resize/plugin.js | 6 + plugins/richcombo/plugin.js | 7 + plugins/save/plugin.js | 6 + plugins/scayt/dialogs/options.js | 8 + plugins/scayt/dialogs/toolbar.css | 6 + plugins/scayt/plugin.js | 8 + plugins/selection/plugin.js | 9 + plugins/showblocks/images/block_address.png | Bin 0 -> 288 bytes plugins/showblocks/images/block_blockquote.png | Bin 0 -> 293 bytes plugins/showblocks/images/block_div.png | Bin 0 -> 229 bytes plugins/showblocks/images/block_h1.png | Bin 0 -> 218 bytes plugins/showblocks/images/block_h2.png | Bin 0 -> 220 bytes plugins/showblocks/images/block_h3.png | Bin 0 -> 219 bytes plugins/showblocks/images/block_h4.png | Bin 0 -> 229 bytes plugins/showblocks/images/block_h5.png | Bin 0 -> 236 bytes plugins/showblocks/images/block_h6.png | Bin 0 -> 216 bytes plugins/showblocks/images/block_p.png | Bin 0 -> 205 bytes plugins/showblocks/images/block_pre.png | Bin 0 -> 223 bytes plugins/showblocks/plugin.js | 6 + plugins/smiley/dialogs/smiley.js | 7 + plugins/smiley/images/angel_smile.gif | Bin 0 -> 465 bytes plugins/smiley/images/angry_smile.gif | Bin 0 -> 443 bytes plugins/smiley/images/broken_heart.gif | Bin 0 -> 192 bytes plugins/smiley/images/confused_smile.gif | Bin 0 -> 464 bytes plugins/smiley/images/cry_smile.gif | Bin 0 -> 468 bytes plugins/smiley/images/devil_smile.gif | Bin 0 -> 436 bytes plugins/smiley/images/embaressed_smile.gif | Bin 0 -> 442 bytes plugins/smiley/images/envelope.gif | Bin 0 -> 426 bytes plugins/smiley/images/heart.gif | Bin 0 -> 183 bytes plugins/smiley/images/kiss.gif | Bin 0 -> 241 bytes plugins/smiley/images/lightbulb.gif | Bin 0 -> 368 bytes plugins/smiley/images/omg_smile.gif | Bin 0 -> 451 bytes plugins/smiley/images/regular_smile.gif | Bin 0 -> 450 bytes plugins/smiley/images/sad_smile.gif | Bin 0 -> 460 bytes plugins/smiley/images/shades_smile.gif | Bin 0 -> 449 bytes plugins/smiley/images/teeth_smile.gif | Bin 0 -> 442 bytes plugins/smiley/images/thumbs_down.gif | Bin 0 -> 408 bytes plugins/smiley/images/thumbs_up.gif | Bin 0 -> 396 bytes plugins/smiley/images/tounge_smile.gif | Bin 0 -> 446 bytes .../smiley/images/whatchutalkingabout_smile.gif | Bin 0 -> 452 bytes plugins/smiley/images/wink_smile.gif | Bin 0 -> 458 bytes plugins/smiley/plugin.js | 6 + plugins/sourcearea/plugin.js | 6 + plugins/specialchar/dialogs/specialchar.js | 7 + plugins/specialchar/plugin.js | 6 + plugins/styles/plugin.js | 10 + plugins/stylescombo/plugin.js | 7 + plugins/stylescombo/styles/default.js | 6 + plugins/tab/plugin.js | 6 + plugins/table/dialogs/table.js | 8 + plugins/table/plugin.js | 6 + plugins/tabletools/dialogs/tableCell.js | 7 + plugins/tabletools/plugin.js | 9 + plugins/templates/dialogs/templates.js | 6 + plugins/templates/plugin.js | 6 + plugins/templates/templates/default.js | 6 + plugins/templates/templates/images/template1.gif | Bin 0 -> 375 bytes plugins/templates/templates/images/template2.gif | Bin 0 -> 333 bytes plugins/templates/templates/images/template3.gif | Bin 0 -> 422 bytes plugins/toolbar/plugin.js | 7 + plugins/uicolor/dialogs/uicolor.js | 7 + plugins/uicolor/lang/en.js | 6 + plugins/uicolor/plugin.js | 6 + plugins/uicolor/uicolor.gif | Bin 0 -> 1108 bytes plugins/uicolor/yui/assets/hue_bg.png | Bin 0 -> 1120 bytes plugins/uicolor/yui/assets/hue_thumb.png | Bin 0 -> 195 bytes plugins/uicolor/yui/assets/picker_mask.png | Bin 0 -> 12174 bytes plugins/uicolor/yui/assets/picker_thumb.png | Bin 0 -> 192 bytes plugins/uicolor/yui/assets/yui.css | 6 + plugins/uicolor/yui/yui.js | 76 + plugins/undo/plugin.js | 7 + plugins/wsc/dialogs/ciframe.html | 49 + plugins/wsc/dialogs/tmpFrameset.html | 52 + plugins/wsc/dialogs/wsc.css | 6 + plugins/wsc/dialogs/wsc.js | 7 + plugins/wsc/plugin.js | 6 + plugins/wysiwygarea/plugin.js | 8 + skins/kama/dialog.css | 9 + skins/kama/editor.css | 12 + skins/kama/icons.png | Bin 0 -> 4365 bytes skins/kama/images/dialog_sides.gif | Bin 0 -> 48 bytes skins/kama/images/dialog_sides.png | Bin 0 -> 178 bytes skins/kama/images/dialog_sides_rtl.png | Bin 0 -> 181 bytes skins/kama/images/mini.gif | Bin 0 -> 183 bytes skins/kama/images/noimage.png | Bin 0 -> 2115 bytes skins/kama/images/sprites.png | Bin 0 -> 7086 bytes skins/kama/images/sprites_ie6.png | Bin 0 -> 2724 bytes skins/kama/images/toolbar_start.gif | Bin 0 -> 105 bytes skins/kama/skin.js | 7 + skins/kama/templates.css | 6 + skins/office2003/dialog.css | 8 + skins/office2003/editor.css | 13 + skins/office2003/icons.png | Bin 0 -> 4365 bytes skins/office2003/images/dialog_sides.gif | Bin 0 -> 48 bytes skins/office2003/images/dialog_sides.png | Bin 0 -> 178 bytes skins/office2003/images/dialog_sides_rtl.png | Bin 0 -> 181 bytes skins/office2003/images/mini.gif | Bin 0 -> 183 bytes skins/office2003/images/noimage.png | Bin 0 -> 2115 bytes skins/office2003/images/sprites.png | Bin 0 -> 6119 bytes skins/office2003/images/sprites_ie6.png | Bin 0 -> 2715 bytes skins/office2003/skin.js | 6 + skins/office2003/templates.css | 6 + skins/v2/dialog.css | 8 + skins/v2/editor.css | 12 + skins/v2/icons.png | Bin 0 -> 4365 bytes skins/v2/images/dialog_sides.gif | Bin 0 -> 48 bytes skins/v2/images/dialog_sides.png | Bin 0 -> 178 bytes skins/v2/images/dialog_sides_rtl.png | Bin 0 -> 181 bytes skins/v2/images/mini.gif | Bin 0 -> 183 bytes skins/v2/images/noimage.png | Bin 0 -> 2115 bytes skins/v2/images/sprites.png | Bin 0 -> 5389 bytes skins/v2/images/sprites_ie6.png | Bin 0 -> 492 bytes skins/v2/images/toolbar_start.gif | Bin 0 -> 105 bytes skins/v2/skin.js | 6 + skins/v2/templates.css | 6 + themes/default/theme.js | 7 + 664 files changed, 107793 insertions(+) create mode 100644 .htaccess create mode 100644 CHANGES.html create mode 100644 INSTALL.html create mode 100644 LICENSE.html create mode 100644 _samples/ajax.html create mode 100644 _samples/api_dialog.html create mode 100644 _samples/api_dialog/my_dialog.js create mode 100644 _samples/divreplace.html create mode 100644 _samples/enterkey.html create mode 100644 _samples/index.html create mode 100644 _samples/replacebyclass.html create mode 100644 _samples/replacebycode.html create mode 100644 _samples/sample.css create mode 100644 _samples/sample.js create mode 100644 _samples/sample_posteddata.php create mode 100644 _samples/skins.html create mode 100644 _samples/ui_color.html create mode 100644 _samples/ui_languages.html create mode 100644 _source/core/_bootstrap.js create mode 100644 _source/core/ajax.js create mode 100644 _source/core/ckeditor.js create mode 100644 _source/core/ckeditor_base.js create mode 100644 _source/core/ckeditor_basic.js create mode 100644 _source/core/command.js create mode 100644 _source/core/commanddefinition.js create mode 100644 _source/core/config.js create mode 100644 _source/core/dom.js create mode 100644 _source/core/dom/document.js create mode 100644 _source/core/dom/documentfragment.js create mode 100644 _source/core/dom/domobject.js create mode 100644 _source/core/dom/element.js create mode 100644 _source/core/dom/elementpath.js create mode 100644 _source/core/dom/event.js create mode 100644 _source/core/dom/node.js create mode 100644 _source/core/dom/nodelist.js create mode 100644 _source/core/dom/range.js create mode 100644 _source/core/dom/text.js create mode 100644 _source/core/dom/walker.js create mode 100644 _source/core/dom/window.js create mode 100644 _source/core/dtd.js create mode 100644 _source/core/editor.js create mode 100644 _source/core/editor_basic.js create mode 100644 _source/core/env.js create mode 100644 _source/core/event.js create mode 100644 _source/core/eventInfo.js create mode 100644 _source/core/focusmanager.js create mode 100644 _source/core/htmlparser.js create mode 100644 _source/core/htmlparser/basicwriter.js create mode 100644 _source/core/htmlparser/cdata.js create mode 100644 _source/core/htmlparser/comment.js create mode 100644 _source/core/htmlparser/element.js create mode 100644 _source/core/htmlparser/filter.js create mode 100644 _source/core/htmlparser/fragment.js create mode 100644 _source/core/htmlparser/text.js create mode 100644 _source/core/imagecacher.js create mode 100644 _source/core/lang.js create mode 100644 _source/core/loader.js create mode 100644 _source/core/plugindefinition.js create mode 100644 _source/core/plugins.js create mode 100644 _source/core/resourcemanager.js create mode 100644 _source/core/scriptloader.js create mode 100644 _source/core/skins.js create mode 100644 _source/core/test.js create mode 100644 _source/core/themes.js create mode 100644 _source/core/tools.js create mode 100644 _source/core/ui.js create mode 100644 _source/core/xml.js create mode 100644 _source/lang/_languages.js create mode 100644 _source/lang/_translationstatus.txt create mode 100644 _source/lang/af.js create mode 100644 _source/lang/ar.js create mode 100644 _source/lang/bg.js create mode 100644 _source/lang/bn.js create mode 100644 _source/lang/bs.js create mode 100644 _source/lang/ca.js create mode 100644 _source/lang/cs.js create mode 100644 _source/lang/da.js create mode 100644 _source/lang/de.js create mode 100644 _source/lang/el.js create mode 100644 _source/lang/en-au.js create mode 100644 _source/lang/en-ca.js create mode 100644 _source/lang/en-uk.js create mode 100644 _source/lang/en.js create mode 100644 _source/lang/eo.js create mode 100644 _source/lang/es.js create mode 100644 _source/lang/et.js create mode 100644 _source/lang/eu.js create mode 100644 _source/lang/fa.js create mode 100644 _source/lang/fi.js create mode 100644 _source/lang/fo.js create mode 100644 _source/lang/fr-ca.js create mode 100644 _source/lang/fr.js create mode 100644 _source/lang/gl.js create mode 100644 _source/lang/gu.js create mode 100644 _source/lang/he.js create mode 100644 _source/lang/hi.js create mode 100644 _source/lang/hr.js create mode 100644 _source/lang/hu.js create mode 100644 _source/lang/is.js create mode 100644 _source/lang/it.js create mode 100644 _source/lang/ja.js create mode 100644 _source/lang/km.js create mode 100644 _source/lang/ko.js create mode 100644 _source/lang/lt.js create mode 100644 _source/lang/lv.js create mode 100644 _source/lang/mn.js create mode 100644 _source/lang/ms.js create mode 100644 _source/lang/nb.js create mode 100644 _source/lang/nl.js create mode 100644 _source/lang/no.js create mode 100644 _source/lang/pl.js create mode 100644 _source/lang/pt-br.js create mode 100644 _source/lang/pt.js create mode 100644 _source/lang/ro.js create mode 100644 _source/lang/ru.js create mode 100644 _source/lang/sk.js create mode 100644 _source/lang/sl.js create mode 100644 _source/lang/sr-latn.js create mode 100644 _source/lang/sr.js create mode 100644 _source/lang/sv.js create mode 100644 _source/lang/th.js create mode 100644 _source/lang/tr.js create mode 100644 _source/lang/uk.js create mode 100644 _source/lang/vi.js create mode 100644 _source/lang/zh-cn.js create mode 100644 _source/lang/zh.js create mode 100644 _source/plugins/about/dialogs/about.js create mode 100644 _source/plugins/about/dialogs/logo_ckeditor.png create mode 100644 _source/plugins/about/plugin.js create mode 100644 _source/plugins/basicstyles/plugin.js create mode 100644 _source/plugins/blockquote/plugin.js create mode 100644 _source/plugins/button/plugin.js create mode 100644 _source/plugins/clipboard/dialogs/paste.js create mode 100644 _source/plugins/clipboard/plugin.js create mode 100644 _source/plugins/colorbutton/plugin.js create mode 100644 _source/plugins/contextmenu/plugin.js create mode 100644 _source/plugins/dialog/dialogDefinition.js create mode 100644 _source/plugins/dialog/plugin.js create mode 100644 _source/plugins/dialogui/plugin.js create mode 100644 _source/plugins/domiterator/plugin.js create mode 100644 _source/plugins/editingblock/plugin.js create mode 100644 _source/plugins/elementspath/plugin.js create mode 100644 _source/plugins/enterkey/plugin.js create mode 100644 _source/plugins/entities/plugin.js create mode 100644 _source/plugins/fakeobjects/plugin.js create mode 100644 _source/plugins/filebrowser/plugin.js create mode 100644 _source/plugins/find/dialogs/find.js create mode 100644 _source/plugins/find/plugin.js create mode 100644 _source/plugins/flash/dialogs/flash.js create mode 100644 _source/plugins/flash/images/placeholder.png create mode 100644 _source/plugins/flash/plugin.js create mode 100644 _source/plugins/floatpanel/plugin.js create mode 100644 _source/plugins/font/plugin.js create mode 100644 _source/plugins/format/plugin.js create mode 100644 _source/plugins/forms/dialogs/button.js create mode 100644 _source/plugins/forms/dialogs/checkbox.js create mode 100644 _source/plugins/forms/dialogs/form.js create mode 100644 _source/plugins/forms/dialogs/hiddenfield.js create mode 100644 _source/plugins/forms/dialogs/radio.js create mode 100644 _source/plugins/forms/dialogs/select.js create mode 100644 _source/plugins/forms/dialogs/textarea.js create mode 100644 _source/plugins/forms/dialogs/textfield.js create mode 100644 _source/plugins/forms/plugin.js create mode 100644 _source/plugins/horizontalrule/plugin.js create mode 100644 _source/plugins/htmldataprocessor/plugin.js create mode 100644 _source/plugins/htmlwriter/plugin.js create mode 100644 _source/plugins/iframedialog/plugin.js create mode 100644 _source/plugins/image/dialogs/image.js create mode 100644 _source/plugins/image/plugin.js create mode 100644 _source/plugins/indent/plugin.js create mode 100644 _source/plugins/justify/plugin.js create mode 100644 _source/plugins/keystrokes/plugin.js create mode 100644 _source/plugins/link/dialogs/anchor.js create mode 100644 _source/plugins/link/dialogs/link.js create mode 100644 _source/plugins/link/images/anchor.gif create mode 100644 _source/plugins/link/plugin.js create mode 100644 _source/plugins/list/plugin.js create mode 100644 _source/plugins/listblock/plugin.js create mode 100644 _source/plugins/maximize/plugin.js create mode 100644 _source/plugins/menu/plugin.js create mode 100644 _source/plugins/menubutton/plugin.js create mode 100644 _source/plugins/newpage/plugin.js create mode 100644 _source/plugins/pagebreak/images/pagebreak.gif create mode 100644 _source/plugins/pagebreak/plugin.js create mode 100644 _source/plugins/panel/plugin.js create mode 100644 _source/plugins/panelbutton/plugin.js create mode 100644 _source/plugins/pastefromword/dialogs/pastefromword.js create mode 100644 _source/plugins/pastefromword/plugin.js create mode 100644 _source/plugins/pastetext/dialogs/pastetext.js create mode 100644 _source/plugins/pastetext/plugin.js create mode 100644 _source/plugins/popup/plugin.js create mode 100644 _source/plugins/preview/plugin.js create mode 100644 _source/plugins/print/plugin.js create mode 100644 _source/plugins/removeformat/plugin.js create mode 100644 _source/plugins/resize/plugin.js create mode 100644 _source/plugins/richcombo/plugin.js create mode 100644 _source/plugins/save/plugin.js create mode 100644 _source/plugins/scayt/dialogs/options.js create mode 100644 _source/plugins/scayt/dialogs/toolbar.css create mode 100644 _source/plugins/scayt/plugin.js create mode 100644 _source/plugins/selection/plugin.js create mode 100644 _source/plugins/showblocks/images/block_address.png create mode 100644 _source/plugins/showblocks/images/block_blockquote.png create mode 100644 _source/plugins/showblocks/images/block_div.png create mode 100644 _source/plugins/showblocks/images/block_h1.png create mode 100644 _source/plugins/showblocks/images/block_h2.png create mode 100644 _source/plugins/showblocks/images/block_h3.png create mode 100644 _source/plugins/showblocks/images/block_h4.png create mode 100644 _source/plugins/showblocks/images/block_h5.png create mode 100644 _source/plugins/showblocks/images/block_h6.png create mode 100644 _source/plugins/showblocks/images/block_p.png create mode 100644 _source/plugins/showblocks/images/block_pre.png create mode 100644 _source/plugins/showblocks/plugin.js create mode 100644 _source/plugins/smiley/dialogs/smiley.js create mode 100644 _source/plugins/smiley/images/angel_smile.gif create mode 100644 _source/plugins/smiley/images/angry_smile.gif create mode 100644 _source/plugins/smiley/images/broken_heart.gif create mode 100644 _source/plugins/smiley/images/confused_smile.gif create mode 100644 _source/plugins/smiley/images/cry_smile.gif create mode 100644 _source/plugins/smiley/images/devil_smile.gif create mode 100644 _source/plugins/smiley/images/embaressed_smile.gif create mode 100644 _source/plugins/smiley/images/envelope.gif create mode 100644 _source/plugins/smiley/images/heart.gif create mode 100644 _source/plugins/smiley/images/kiss.gif create mode 100644 _source/plugins/smiley/images/lightbulb.gif create mode 100644 _source/plugins/smiley/images/omg_smile.gif create mode 100644 _source/plugins/smiley/images/regular_smile.gif create mode 100644 _source/plugins/smiley/images/sad_smile.gif create mode 100644 _source/plugins/smiley/images/shades_smile.gif create mode 100644 _source/plugins/smiley/images/teeth_smile.gif create mode 100644 _source/plugins/smiley/images/thumbs_down.gif create mode 100644 _source/plugins/smiley/images/thumbs_up.gif create mode 100644 _source/plugins/smiley/images/tounge_smile.gif create mode 100644 _source/plugins/smiley/images/whatchutalkingabout_smile.gif create mode 100644 _source/plugins/smiley/images/wink_smile.gif create mode 100644 _source/plugins/smiley/plugin.js create mode 100644 _source/plugins/sourcearea/plugin.js create mode 100644 _source/plugins/specialchar/dialogs/specialchar.js create mode 100644 _source/plugins/specialchar/plugin.js create mode 100644 _source/plugins/styles/plugin.js create mode 100644 _source/plugins/stylescombo/plugin.js create mode 100644 _source/plugins/stylescombo/styles/default.js create mode 100644 _source/plugins/tab/plugin.js create mode 100644 _source/plugins/table/dialogs/table.js create mode 100644 _source/plugins/table/plugin.js create mode 100644 _source/plugins/tabletools/dialogs/tableCell.js create mode 100644 _source/plugins/tabletools/plugin.js create mode 100644 _source/plugins/templates/dialogs/templates.js create mode 100644 _source/plugins/templates/plugin.js create mode 100644 _source/plugins/templates/templates/default.js create mode 100644 _source/plugins/templates/templates/images/template1.gif create mode 100644 _source/plugins/templates/templates/images/template2.gif create mode 100644 _source/plugins/templates/templates/images/template3.gif create mode 100644 _source/plugins/toolbar/plugin.js create mode 100644 _source/plugins/uicolor/dialogs/uicolor.js create mode 100644 _source/plugins/uicolor/lang/en.js create mode 100644 _source/plugins/uicolor/plugin.js create mode 100644 _source/plugins/uicolor/uicolor.gif create mode 100644 _source/plugins/uicolor/yui/assets/hue_bg.png create mode 100644 _source/plugins/uicolor/yui/assets/hue_thumb.png create mode 100644 _source/plugins/uicolor/yui/assets/picker_mask.png create mode 100644 _source/plugins/uicolor/yui/assets/picker_thumb.png create mode 100644 _source/plugins/uicolor/yui/assets/yui.css create mode 100644 _source/plugins/uicolor/yui/yui.js create mode 100644 _source/plugins/undo/plugin.js create mode 100644 _source/plugins/wsc/dialogs/ciframe.html create mode 100644 _source/plugins/wsc/dialogs/tmpFrameset.html create mode 100644 _source/plugins/wsc/dialogs/wsc.css create mode 100644 _source/plugins/wsc/dialogs/wsc.js create mode 100644 _source/plugins/wsc/plugin.js create mode 100644 _source/plugins/wysiwygarea/plugin.js create mode 100644 _source/skins/kama/dialog.css create mode 100644 _source/skins/kama/editor.css create mode 100644 _source/skins/kama/elementspath.css create mode 100644 _source/skins/kama/icons.css create mode 100644 _source/skins/kama/icons.png create mode 100644 _source/skins/kama/images/dialog_sides.gif create mode 100644 _source/skins/kama/images/dialog_sides.png create mode 100644 _source/skins/kama/images/dialog_sides_rtl.png create mode 100644 _source/skins/kama/images/mini.gif create mode 100644 _source/skins/kama/images/noimage.png create mode 100644 _source/skins/kama/images/sprites.png create mode 100644 _source/skins/kama/images/sprites_ie6.png create mode 100644 _source/skins/kama/images/toolbar_start.gif create mode 100644 _source/skins/kama/mainui.css create mode 100644 _source/skins/kama/menu.css create mode 100644 _source/skins/kama/panel.css create mode 100644 _source/skins/kama/presets.css create mode 100644 _source/skins/kama/reset.css create mode 100644 _source/skins/kama/richcombo.css create mode 100644 _source/skins/kama/skin.js create mode 100644 _source/skins/kama/templates.css create mode 100644 _source/skins/kama/toolbar.css create mode 100644 _source/skins/office2003/dialog.css create mode 100644 _source/skins/office2003/editor.css create mode 100644 _source/skins/office2003/elementspath.css create mode 100644 _source/skins/office2003/icons.css create mode 100644 _source/skins/office2003/icons.png create mode 100644 _source/skins/office2003/images/dialog_sides.gif create mode 100644 _source/skins/office2003/images/dialog_sides.png create mode 100644 _source/skins/office2003/images/dialog_sides_rtl.png create mode 100644 _source/skins/office2003/images/mini.gif create mode 100644 _source/skins/office2003/images/noimage.png create mode 100644 _source/skins/office2003/images/sprites.png create mode 100644 _source/skins/office2003/images/sprites_ie6.png create mode 100644 _source/skins/office2003/mainui.css create mode 100644 _source/skins/office2003/menu.css create mode 100644 _source/skins/office2003/panel.css create mode 100644 _source/skins/office2003/presets.css create mode 100644 _source/skins/office2003/reset.css create mode 100644 _source/skins/office2003/richcombo.css create mode 100644 _source/skins/office2003/skin.js create mode 100644 _source/skins/office2003/templates.css create mode 100644 _source/skins/office2003/toolbar.css create mode 100644 _source/skins/v2/dialog.css create mode 100644 _source/skins/v2/editor.css create mode 100644 _source/skins/v2/elementspath.css create mode 100644 _source/skins/v2/icons.css create mode 100644 _source/skins/v2/icons.png create mode 100644 _source/skins/v2/images/dialog_sides.gif create mode 100644 _source/skins/v2/images/dialog_sides.png create mode 100644 _source/skins/v2/images/dialog_sides_rtl.png create mode 100644 _source/skins/v2/images/mini.gif create mode 100644 _source/skins/v2/images/noimage.png create mode 100644 _source/skins/v2/images/sprites.png create mode 100644 _source/skins/v2/images/sprites_ie6.png create mode 100644 _source/skins/v2/images/toolbar_start.gif create mode 100644 _source/skins/v2/mainui.css create mode 100644 _source/skins/v2/menu.css create mode 100644 _source/skins/v2/panel.css create mode 100644 _source/skins/v2/presets.css create mode 100644 _source/skins/v2/reset.css create mode 100644 _source/skins/v2/richcombo.css create mode 100644 _source/skins/v2/skin.js create mode 100644 _source/skins/v2/templates.css create mode 100644 _source/skins/v2/toolbar.css create mode 100644 _source/tests/_assets/sample.css create mode 100644 _source/tests/_assets/sample.js create mode 100644 _source/tests/_assets/sample.txt create mode 100644 _source/tests/_assets/sample.xml create mode 100644 _source/tests/_assets/sample_xml.txt create mode 100644 _source/tests/core/_editor/custom_config_1.js create mode 100644 _source/tests/core/_editor/custom_config_2.js create mode 100644 _source/tests/core/ajax.html create mode 100644 _source/tests/core/bootstrap.html create mode 100644 _source/tests/core/ckeditor.html create mode 100644 _source/tests/core/dom/document.html create mode 100644 _source/tests/core/dom/documentfragment.html create mode 100644 _source/tests/core/dom/element.html create mode 100644 _source/tests/core/dom/node.html create mode 100644 _source/tests/core/dom/range.html create mode 100644 _source/tests/core/dom/text.html create mode 100644 _source/tests/core/dom/walker.html create mode 100644 _source/tests/core/dom/window.html create mode 100644 _source/tests/core/editor.html create mode 100644 _source/tests/core/env.html create mode 100644 _source/tests/core/event.html create mode 100644 _source/tests/core/htmlparser/fragment.html create mode 100644 _source/tests/core/htmlparser/htmlparser.html create mode 100644 _source/tests/core/plugins.html create mode 100644 _source/tests/core/plugins/myplugins/sample/my_plugin.js create mode 100644 _source/tests/core/scriptloader.html create mode 100644 _source/tests/core/tools.html create mode 100644 _source/tests/core/xml.html create mode 100644 _source/tests/plugins/domiterator/domiterator.html create mode 100644 _source/tests/plugins/htmldataprocessor/htmldataprocessor.html create mode 100644 _source/tests/plugins/link/link.html create mode 100644 _source/tests/plugins/list/list.html create mode 100644 _source/tests/plugins/selection/selection.html create mode 100644 _source/tests/plugins/styles/styles.html create mode 100644 _source/tests/test.css create mode 100644 _source/tests/test.js create mode 100644 _source/tests/testall.html create mode 100644 _source/tests/yuitest.js create mode 100644 _source/themes/default/theme.js create mode 100644 _tests/_assets/sample.css create mode 100644 _tests/_assets/sample.js create mode 100644 _tests/_assets/sample.txt create mode 100644 _tests/_assets/sample.xml create mode 100644 _tests/_assets/sample_xml.txt create mode 100644 _tests/core/_editor/custom_config_1.js create mode 100644 _tests/core/_editor/custom_config_2.js create mode 100644 _tests/core/ajax.html create mode 100644 _tests/core/bootstrap.html create mode 100644 _tests/core/ckeditor.html create mode 100644 _tests/core/dom/document.html create mode 100644 _tests/core/dom/documentfragment.html create mode 100644 _tests/core/dom/element.html create mode 100644 _tests/core/dom/node.html create mode 100644 _tests/core/dom/range.html create mode 100644 _tests/core/dom/text.html create mode 100644 _tests/core/dom/walker.html create mode 100644 _tests/core/dom/window.html create mode 100644 _tests/core/editor.html create mode 100644 _tests/core/env.html create mode 100644 _tests/core/event.html create mode 100644 _tests/core/htmlparser/fragment.html create mode 100644 _tests/core/htmlparser/htmlparser.html create mode 100644 _tests/core/plugins.html create mode 100644 _tests/core/plugins/myplugins/sample/my_plugin.js create mode 100644 _tests/core/scriptloader.html create mode 100644 _tests/core/tools.html create mode 100644 _tests/core/xml.html create mode 100644 _tests/plugins/domiterator/domiterator.html create mode 100644 _tests/plugins/htmldataprocessor/htmldataprocessor.html create mode 100644 _tests/plugins/link/link.html create mode 100644 _tests/plugins/list/list.html create mode 100644 _tests/plugins/selection/selection.html create mode 100644 _tests/plugins/styles/styles.html create mode 100644 _tests/test.css create mode 100644 _tests/test.js create mode 100644 _tests/testall.html create mode 100644 _tests/yuitest.js create mode 100644 ckeditor.js create mode 100644 ckeditor.pack create mode 100644 ckeditor_basic.js create mode 100644 ckeditor_basic_source.js create mode 100644 ckeditor_source.js create mode 100644 config.js create mode 100644 contents.css create mode 100644 images/spacer.gif create mode 100644 lang/_languages.js create mode 100644 lang/_translationstatus.txt create mode 100644 lang/af.js create mode 100644 lang/ar.js create mode 100644 lang/bg.js create mode 100644 lang/bn.js create mode 100644 lang/bs.js create mode 100644 lang/ca.js create mode 100644 lang/cs.js create mode 100644 lang/da.js create mode 100644 lang/de.js create mode 100644 lang/el.js create mode 100644 lang/en-au.js create mode 100644 lang/en-ca.js create mode 100644 lang/en-uk.js create mode 100644 lang/en.js create mode 100644 lang/eo.js create mode 100644 lang/es.js create mode 100644 lang/et.js create mode 100644 lang/eu.js create mode 100644 lang/fa.js create mode 100644 lang/fi.js create mode 100644 lang/fo.js create mode 100644 lang/fr-ca.js create mode 100644 lang/fr.js create mode 100644 lang/gl.js create mode 100644 lang/gu.js create mode 100644 lang/he.js create mode 100644 lang/hi.js create mode 100644 lang/hr.js create mode 100644 lang/hu.js create mode 100644 lang/is.js create mode 100644 lang/it.js create mode 100644 lang/ja.js create mode 100644 lang/km.js create mode 100644 lang/ko.js create mode 100644 lang/lt.js create mode 100644 lang/lv.js create mode 100644 lang/mn.js create mode 100644 lang/ms.js create mode 100644 lang/nb.js create mode 100644 lang/nl.js create mode 100644 lang/no.js create mode 100644 lang/pl.js create mode 100644 lang/pt-br.js create mode 100644 lang/pt.js create mode 100644 lang/ro.js create mode 100644 lang/ru.js create mode 100644 lang/sk.js create mode 100644 lang/sl.js create mode 100644 lang/sr-latn.js create mode 100644 lang/sr.js create mode 100644 lang/sv.js create mode 100644 lang/th.js create mode 100644 lang/tr.js create mode 100644 lang/uk.js create mode 100644 lang/vi.js create mode 100644 lang/zh-cn.js create mode 100644 lang/zh.js create mode 100644 plugins/about/dialogs/about.js create mode 100644 plugins/about/dialogs/logo_ckeditor.png create mode 100644 plugins/about/plugin.js create mode 100644 plugins/basicstyles/plugin.js create mode 100644 plugins/blockquote/plugin.js create mode 100644 plugins/button/plugin.js create mode 100644 plugins/clipboard/dialogs/paste.js create mode 100644 plugins/clipboard/plugin.js create mode 100644 plugins/colorbutton/plugin.js create mode 100644 plugins/contextmenu/plugin.js create mode 100644 plugins/dialog/dialogDefinition.js create mode 100644 plugins/dialog/plugin.js create mode 100644 plugins/dialogui/plugin.js create mode 100644 plugins/domiterator/plugin.js create mode 100644 plugins/editingblock/plugin.js create mode 100644 plugins/elementspath/plugin.js create mode 100644 plugins/enterkey/plugin.js create mode 100644 plugins/entities/plugin.js create mode 100644 plugins/fakeobjects/plugin.js create mode 100644 plugins/filebrowser/plugin.js create mode 100644 plugins/find/dialogs/find.js create mode 100644 plugins/find/plugin.js create mode 100644 plugins/flash/dialogs/flash.js create mode 100644 plugins/flash/images/placeholder.png create mode 100644 plugins/flash/plugin.js create mode 100644 plugins/floatpanel/plugin.js create mode 100644 plugins/font/plugin.js create mode 100644 plugins/format/plugin.js create mode 100644 plugins/forms/dialogs/button.js create mode 100644 plugins/forms/dialogs/checkbox.js create mode 100644 plugins/forms/dialogs/form.js create mode 100644 plugins/forms/dialogs/hiddenfield.js create mode 100644 plugins/forms/dialogs/radio.js create mode 100644 plugins/forms/dialogs/select.js create mode 100644 plugins/forms/dialogs/textarea.js create mode 100644 plugins/forms/dialogs/textfield.js create mode 100644 plugins/forms/plugin.js create mode 100644 plugins/horizontalrule/plugin.js create mode 100644 plugins/htmldataprocessor/plugin.js create mode 100644 plugins/htmlwriter/plugin.js create mode 100644 plugins/iframedialog/plugin.js create mode 100644 plugins/image/dialogs/image.js create mode 100644 plugins/image/plugin.js create mode 100644 plugins/indent/plugin.js create mode 100644 plugins/justify/plugin.js create mode 100644 plugins/keystrokes/plugin.js create mode 100644 plugins/link/dialogs/anchor.js create mode 100644 plugins/link/dialogs/link.js create mode 100644 plugins/link/images/anchor.gif create mode 100644 plugins/link/plugin.js create mode 100644 plugins/list/plugin.js create mode 100644 plugins/listblock/plugin.js create mode 100644 plugins/maximize/plugin.js create mode 100644 plugins/menu/plugin.js create mode 100644 plugins/menubutton/plugin.js create mode 100644 plugins/newpage/plugin.js create mode 100644 plugins/pagebreak/images/pagebreak.gif create mode 100644 plugins/pagebreak/plugin.js create mode 100644 plugins/panel/plugin.js create mode 100644 plugins/panelbutton/plugin.js create mode 100644 plugins/pastefromword/dialogs/pastefromword.js create mode 100644 plugins/pastefromword/plugin.js create mode 100644 plugins/pastetext/dialogs/pastetext.js create mode 100644 plugins/pastetext/plugin.js create mode 100644 plugins/popup/plugin.js create mode 100644 plugins/preview/plugin.js create mode 100644 plugins/print/plugin.js create mode 100644 plugins/removeformat/plugin.js create mode 100644 plugins/resize/plugin.js create mode 100644 plugins/richcombo/plugin.js create mode 100644 plugins/save/plugin.js create mode 100644 plugins/scayt/dialogs/options.js create mode 100644 plugins/scayt/dialogs/toolbar.css create mode 100644 plugins/scayt/plugin.js create mode 100644 plugins/selection/plugin.js create mode 100644 plugins/showblocks/images/block_address.png create mode 100644 plugins/showblocks/images/block_blockquote.png create mode 100644 plugins/showblocks/images/block_div.png create mode 100644 plugins/showblocks/images/block_h1.png create mode 100644 plugins/showblocks/images/block_h2.png create mode 100644 plugins/showblocks/images/block_h3.png create mode 100644 plugins/showblocks/images/block_h4.png create mode 100644 plugins/showblocks/images/block_h5.png create mode 100644 plugins/showblocks/images/block_h6.png create mode 100644 plugins/showblocks/images/block_p.png create mode 100644 plugins/showblocks/images/block_pre.png create mode 100644 plugins/showblocks/plugin.js create mode 100644 plugins/smiley/dialogs/smiley.js create mode 100644 plugins/smiley/images/angel_smile.gif create mode 100644 plugins/smiley/images/angry_smile.gif create mode 100644 plugins/smiley/images/broken_heart.gif create mode 100644 plugins/smiley/images/confused_smile.gif create mode 100644 plugins/smiley/images/cry_smile.gif create mode 100644 plugins/smiley/images/devil_smile.gif create mode 100644 plugins/smiley/images/embaressed_smile.gif create mode 100644 plugins/smiley/images/envelope.gif create mode 100644 plugins/smiley/images/heart.gif create mode 100644 plugins/smiley/images/kiss.gif create mode 100644 plugins/smiley/images/lightbulb.gif create mode 100644 plugins/smiley/images/omg_smile.gif create mode 100644 plugins/smiley/images/regular_smile.gif create mode 100644 plugins/smiley/images/sad_smile.gif create mode 100644 plugins/smiley/images/shades_smile.gif create mode 100644 plugins/smiley/images/teeth_smile.gif create mode 100644 plugins/smiley/images/thumbs_down.gif create mode 100644 plugins/smiley/images/thumbs_up.gif create mode 100644 plugins/smiley/images/tounge_smile.gif create mode 100644 plugins/smiley/images/whatchutalkingabout_smile.gif create mode 100644 plugins/smiley/images/wink_smile.gif create mode 100644 plugins/smiley/plugin.js create mode 100644 plugins/sourcearea/plugin.js create mode 100644 plugins/specialchar/dialogs/specialchar.js create mode 100644 plugins/specialchar/plugin.js create mode 100644 plugins/styles/plugin.js create mode 100644 plugins/stylescombo/plugin.js create mode 100644 plugins/stylescombo/styles/default.js create mode 100644 plugins/tab/plugin.js create mode 100644 plugins/table/dialogs/table.js create mode 100644 plugins/table/plugin.js create mode 100644 plugins/tabletools/dialogs/tableCell.js create mode 100644 plugins/tabletools/plugin.js create mode 100644 plugins/templates/dialogs/templates.js create mode 100644 plugins/templates/plugin.js create mode 100644 plugins/templates/templates/default.js create mode 100644 plugins/templates/templates/images/template1.gif create mode 100644 plugins/templates/templates/images/template2.gif create mode 100644 plugins/templates/templates/images/template3.gif create mode 100644 plugins/toolbar/plugin.js create mode 100644 plugins/uicolor/dialogs/uicolor.js create mode 100644 plugins/uicolor/lang/en.js create mode 100644 plugins/uicolor/plugin.js create mode 100644 plugins/uicolor/uicolor.gif create mode 100644 plugins/uicolor/yui/assets/hue_bg.png create mode 100644 plugins/uicolor/yui/assets/hue_thumb.png create mode 100644 plugins/uicolor/yui/assets/picker_mask.png create mode 100644 plugins/uicolor/yui/assets/picker_thumb.png create mode 100644 plugins/uicolor/yui/assets/yui.css create mode 100644 plugins/uicolor/yui/yui.js create mode 100644 plugins/undo/plugin.js create mode 100644 plugins/wsc/dialogs/ciframe.html create mode 100644 plugins/wsc/dialogs/tmpFrameset.html create mode 100644 plugins/wsc/dialogs/wsc.css create mode 100644 plugins/wsc/dialogs/wsc.js create mode 100644 plugins/wsc/plugin.js create mode 100644 plugins/wysiwygarea/plugin.js create mode 100644 skins/kama/dialog.css create mode 100644 skins/kama/editor.css create mode 100644 skins/kama/icons.png create mode 100644 skins/kama/images/dialog_sides.gif create mode 100644 skins/kama/images/dialog_sides.png create mode 100644 skins/kama/images/dialog_sides_rtl.png create mode 100644 skins/kama/images/mini.gif create mode 100644 skins/kama/images/noimage.png create mode 100644 skins/kama/images/sprites.png create mode 100644 skins/kama/images/sprites_ie6.png create mode 100644 skins/kama/images/toolbar_start.gif create mode 100644 skins/kama/skin.js create mode 100644 skins/kama/templates.css create mode 100644 skins/office2003/dialog.css create mode 100644 skins/office2003/editor.css create mode 100644 skins/office2003/icons.png create mode 100644 skins/office2003/images/dialog_sides.gif create mode 100644 skins/office2003/images/dialog_sides.png create mode 100644 skins/office2003/images/dialog_sides_rtl.png create mode 100644 skins/office2003/images/mini.gif create mode 100644 skins/office2003/images/noimage.png create mode 100644 skins/office2003/images/sprites.png create mode 100644 skins/office2003/images/sprites_ie6.png create mode 100644 skins/office2003/skin.js create mode 100644 skins/office2003/templates.css create mode 100644 skins/v2/dialog.css create mode 100644 skins/v2/editor.css create mode 100644 skins/v2/icons.png create mode 100644 skins/v2/images/dialog_sides.gif create mode 100644 skins/v2/images/dialog_sides.png create mode 100644 skins/v2/images/dialog_sides_rtl.png create mode 100644 skins/v2/images/mini.gif create mode 100644 skins/v2/images/noimage.png create mode 100644 skins/v2/images/sprites.png create mode 100644 skins/v2/images/sprites_ie6.png create mode 100644 skins/v2/images/toolbar_start.gif create mode 100644 skins/v2/skin.js create mode 100644 skins/v2/templates.css create mode 100644 themes/default/theme.js diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..7644c32 --- /dev/null +++ b/.htaccess @@ -0,0 +1,24 @@ +# +# Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. +# For licensing, see LICENSE.html or http://ckeditor.com/license +# + +# +# On some specific Linux installations you could face problems with Firefox. +# It could give you errors when loading the editor saying that some illegal +# characters were found (three strange chars in the beginning of the file). +# This could happen if you map the .js or .css files to PHP, for example. +# +# Those characters are the Byte Order Mask (BOM) of the Unicode encoded files. +# All FCKeditor files are Unicode encoded. +# + +AddType application/x-javascript .js +AddType text/css .css + +# +# If PHP is mapped to handle XML files, you could have some issues. The +# following will disable it. +# + +AddType text/xml .xml diff --git a/CHANGES.html b/CHANGES.html new file mode 100644 index 0000000..859c2cb --- /dev/null +++ b/CHANGES.html @@ -0,0 +1,254 @@ + + + + + Changelog - CKEditor + + + + +

+ CKEditor Changelog +

+

+ CKEditor 3.0

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.0 RC

+

+ Changelog starts at this release.

+ + + diff --git a/INSTALL.html b/INSTALL.html new file mode 100644 index 0000000..65e12e3 --- /dev/null +++ b/INSTALL.html @@ -0,0 +1,92 @@ + + + + + Installation Guide - CKEditor + + + + +

+ CKEditor Installation Guide

+

+ What's CKEditor?

+

+ CKEditor is a text editor to be used inside web pages. It's not a replacement + for desktop text editors like Word or OpenOffice, but a component to be used as + part of web applications and web sites.

+

+ Installation

+

+ Installing CKEditor is an easy task. Just follow these simple steps:

+
    +
  1. Download the latest version of the editor from our web site: http://ckeditor.com. You should have already completed + this step, but be sure you have the very latest version.
  2. +
  3. Extract (decompress) the downloaded file into the root of your + web site.
  4. +
+

+ Note: CKEditor is by default installed in the "ckeditor" + folder. You can place the files in whichever you want though.

+

+ Checking Your Installation +

+

+ The editor comes with a few sample pages that can be used to verify that installation + proceeded properly. Take a look at the _samples directory.

+

+ To test your installation, just call the following page at your web site:

+
+http://<your site>/<CKEditor installation path>/_samples/index.html
+
+For example:
+http://www.example.com/ckeditor/_samples/index.html
+

+ Documentation

+

+ The full editor documentation is available online at the following address:
+ http://docs.cksource.com/ckeditor

+ + + diff --git a/LICENSE.html b/LICENSE.html new file mode 100644 index 0000000..7d53df4 --- /dev/null +++ b/LICENSE.html @@ -0,0 +1,1334 @@ + + + + + License - CKEditor + + +

+ Software License Agreement +

+

+ CKEditor™ - The text editor for Internet™ - + http://ckeditor.com
+ Copyright © 2003-2009, CKSource - Frederico Knabben. All rights reserved. +

+

+ Licensed under the terms of any of the following licenses at your choice: +

+ +

+ You are not required to, but if you want to explicitly declare the license you have + chosen to be bound to when using, reproducing, modifying and distributing this software, + just include a text file titled "LEGAL" in your version of this software, indicating + your license choice. In any case, your choice will not restrict any recipient of + your version of this software to use, reproduce, modify and distribute this software + under any of the above licenses. +

+

+ Sources of Intellectual Property Included in CKEditor +

+

+ Where not otherwise indicated, all CKEditor content is authored by CKSource engineers + and consists of CKSource-owned intellectual property. In some specific instances, + CKEditor will incorporate work done by developers outside of CKSource with their + express permission. +

+

+ YUI Test: At _source/tests/yuitest.js + can be found part of the source code of YUI, which is licensed under the terms of + the BSD License. YUI is + Copyright © 2008, Yahoo! Inc. +

+

+ Trademarks +

+

+ CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product + names are trademarks, registered trademarks or service marks of their respective + holders. +

+ + diff --git a/_samples/ajax.html b/_samples/ajax.html new file mode 100644 index 0000000..d2ce3bd --- /dev/null +++ b/_samples/ajax.html @@ -0,0 +1,95 @@ + + + + + Sample - CKEditor + + + + + + + +

+ CKEditor Sample +

+ +
+ +
+ +

+ + +

+
+
+