ckeditor 3.7.3 → 4.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +38 -91
- data/app/assets/javascripts/ckeditor/config.js +1 -5
- data/app/assets/javascripts/ckeditor/{init.js → init.js.erb} +1 -1
- data/app/controllers/ckeditor/application_controller.rb +2 -8
- data/app/controllers/ckeditor/attachment_files_controller.rb +5 -0
- data/app/controllers/ckeditor/pictures_controller.rb +5 -0
- data/app/views/ckeditor/shared/_asset.html.erb +4 -4
- data/lib/ckeditor.rb +72 -7
- data/lib/ckeditor/engine.rb +6 -5
- data/lib/ckeditor/helpers/controllers.rb +7 -3
- data/lib/ckeditor/helpers/form_helper.rb +6 -10
- data/lib/ckeditor/hooks/cancan.rb +46 -0
- data/lib/ckeditor/hooks/simple_form.rb +3 -0
- data/lib/ckeditor/orm/base.rb +4 -0
- data/lib/ckeditor/utils.rb +12 -7
- data/lib/ckeditor/version.rb +2 -2
- data/lib/generators/ckeditor/install_generator.rb +2 -2
- data/lib/generators/ckeditor/templates/active_record/carrierwave/ckeditor/asset.rb +2 -2
- data/lib/generators/ckeditor/templates/active_record/paperclip/ckeditor/attachment_file.rb +4 -4
- data/lib/generators/ckeditor/templates/active_record/paperclip/ckeditor/picture.rb +8 -8
- data/lib/generators/ckeditor/templates/ckeditor.rb +3 -0
- data/lib/generators/ckeditor/templates/mongoid/carrierwave/ckeditor/asset.rb +1 -1
- data/test/dummy/app/views/posts/_form.html.erb +3 -3
- data/test/dummy/log/test.log +2843 -0
- data/test/functional/posts_controller_test.rb +3 -3
- data/test/tmp/config/initializers/ckeditor.rb +3 -0
- data/vendor/assets/javascripts/ckeditor/CHANGES.md +12 -0
- data/vendor/assets/javascripts/ckeditor/{LICENSE.html → LICENSE.md} +26 -89
- data/vendor/assets/javascripts/ckeditor/README.md +39 -0
- data/vendor/assets/javascripts/ckeditor/build-config.js +158 -0
- data/vendor/assets/javascripts/ckeditor/ckeditor.js +847 -152
- data/vendor/assets/javascripts/ckeditor/config.js +10 -11
- data/vendor/assets/javascripts/ckeditor/contents.css +72 -4
- data/vendor/assets/javascripts/ckeditor/lang/af.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/ar.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/bg.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/bn.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/bs.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/ca.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/cs.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/cy.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/da.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/de.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/el.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/en-au.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/en-ca.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/en-gb.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/en.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/eo.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/es.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/et.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/eu.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/fa.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/fi.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/fo.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/fr-ca.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/fr.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/gl.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/gu.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/he.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/hi.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/hr.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/hu.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/is.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/it.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/ja.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/ka.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/km.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/ko.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/ku.js +5 -0
- data/vendor/assets/javascripts/ckeditor/lang/lt.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/lv.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/mk.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/mn.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/ms.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/nb.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/nl.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/no.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/pl.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/pt-br.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/pt.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/ro.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/ru.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/sk.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/sl.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/sr-latn.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/sr.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/sv.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/th.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/tr.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/ug.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/uk.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/vi.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/zh-cn.js +2 -3
- data/vendor/assets/javascripts/ckeditor/lang/zh.js +2 -3
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +10 -7
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/{lang → dialogs/lang}/_translationstatus.txt +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js +9 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/da.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/de.js +9 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/el.js +9 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/en.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js +9 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/et.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js +9 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js +9 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/he.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/it.js +9 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js +9 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js +9 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js +9 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/no.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js +9 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js +9 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js +8 -0
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js +7 -0
- data/vendor/assets/javascripts/ckeditor/plugins/about/dialogs/about.js +6 -6
- data/vendor/assets/javascripts/ckeditor/plugins/clipboard/dialogs/paste.js +11 -7
- data/vendor/assets/javascripts/ckeditor/plugins/colordialog/dialogs/colordialog.js +13 -7
- data/vendor/assets/javascripts/ckeditor/plugins/dialog/dialogDefinition.js +4 -4
- data/vendor/assets/javascripts/ckeditor/plugins/div/dialogs/div.js +9 -8
- data/vendor/assets/javascripts/ckeditor/{images → plugins/fakeobjects/images}/spacer.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/find/dialogs/find.js +24 -10
- data/vendor/assets/javascripts/ckeditor/plugins/flash/dialogs/flash.js +23 -9
- data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/button.js +8 -6
- data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/checkbox.js +8 -6
- data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/form.js +8 -6
- data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/hiddenfield.js +8 -6
- data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/radio.js +8 -6
- data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/select.js +20 -9
- data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/textarea.js +8 -6
- data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/textfield.js +10 -6
- data/vendor/assets/javascripts/ckeditor/plugins/icons.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/iframe/dialogs/iframe.js +10 -7
- data/vendor/assets/javascripts/ckeditor/plugins/image/dialogs/image.js +41 -13
- data/vendor/assets/javascripts/ckeditor/{skins/kama → plugins/image}/images/noimage.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/link/dialogs/anchor.js +8 -6
- data/vendor/assets/javascripts/ckeditor/plugins/link/dialogs/link.js +36 -12
- data/vendor/assets/javascripts/ckeditor/plugins/link/images/anchor.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/liststyle/dialogs/liststyle.js +10 -7
- data/vendor/assets/javascripts/ckeditor/plugins/magicline/images/icon.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/pastefromword/filter/default.js +30 -11
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/dialogs/smiley.js +10 -7
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/embarrassed_smile.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/tongue_smile.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/{lang → dialogs/lang}/_translationstatus.txt +0 -2
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ca.js +13 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/cs.js +13 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/cy.js +14 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/de.js +13 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/el.js +13 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/en.js +13 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/eo.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/et.js +13 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/fa.js +13 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/fi.js +13 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/fr.js +11 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/he.js +13 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/hr.js +13 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/it.js +14 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ku.js +14 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/lv.js +13 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/nb.js +11 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/nl.js +13 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/no.js +11 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js +11 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/sk.js +13 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/tr.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ug.js +13 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js +9 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/specialchar.js +14 -7
- data/vendor/assets/javascripts/ckeditor/plugins/table/dialogs/table.js +20 -9
- data/vendor/assets/javascripts/ckeditor/plugins/tabletools/dialogs/tableCell.js +16 -8
- data/vendor/assets/javascripts/ckeditor/plugins/templates/dialogs/templates.css +84 -0
- data/vendor/assets/javascripts/ckeditor/plugins/templates/dialogs/templates.js +10 -7
- data/vendor/assets/javascripts/ckeditor/plugins/templates/templates/default.js +6 -6
- data/vendor/assets/javascripts/ckeditor/skins/kama/dialog.css +1 -6
- data/vendor/assets/javascripts/ckeditor/skins/kama/dialog_ie.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/kama/dialog_ie7.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/kama/dialog_ie8.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/kama/dialog_iequirks.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/kama/dialog_opera.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/kama/editor.css +1 -9
- data/vendor/assets/javascripts/ckeditor/skins/kama/editor_ie.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/kama/editor_ie7.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/kama/editor_ie8.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/kama/editor_iequirks.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/kama/icons.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/kama/readme.md +40 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono/dialog.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono/dialog_ie.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono/dialog_ie7.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono/dialog_ie8.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono/dialog_opera.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono/editor.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono/editor_gecko.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono/editor_ie.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono/editor_ie7.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono/editor_ie8.css +5 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono/icons.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono/images/arrow.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono/images/close.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono/images/mini.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono/readme.md +51 -0
- data/vendor/assets/javascripts/ckeditor/styles.js +112 -0
- metadata +113 -221
- data/app/assets/javascripts/ckeditor/plugins/attachment/dialogs/attachment.js +0 -1
- data/app/assets/javascripts/ckeditor/plugins/attachment/images/attachment.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/attachment/lang/en.js +0 -10
- data/app/assets/javascripts/ckeditor/plugins/attachment/lang/ru.js +0 -10
- data/app/assets/javascripts/ckeditor/plugins/attachment/lang/uk.js +0 -10
- data/app/assets/javascripts/ckeditor/plugins/attachment/plugin.js +0 -1
- data/app/assets/javascripts/ckeditor/plugins/embed/dialogs/embed.js +0 -1
- data/app/assets/javascripts/ckeditor/plugins/embed/images/embed.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/embed/lang/el.js +0 -9
- data/app/assets/javascripts/ckeditor/plugins/embed/lang/en.js +0 -9
- data/app/assets/javascripts/ckeditor/plugins/embed/lang/ru.js +0 -9
- data/app/assets/javascripts/ckeditor/plugins/embed/lang/uk.js +0 -9
- data/app/assets/javascripts/ckeditor/plugins/embed/plugin.js +0 -1
- data/vendor/assets/javascripts/ckeditor/CHANGES.html +0 -1548
- data/vendor/assets/javascripts/ckeditor/INSTALL.html +0 -92
- data/vendor/assets/javascripts/ckeditor/adapters/jquery.js +0 -6
- data/vendor/assets/javascripts/ckeditor/ckeditor.pack +0 -211
- data/vendor/assets/javascripts/ckeditor/ckeditor_basic.js +0 -8
- data/vendor/assets/javascripts/ckeditor/ckeditor_basic_source.js +0 -20
- data/vendor/assets/javascripts/ckeditor/ckeditor_source.js +0 -35
- data/vendor/assets/javascripts/ckeditor/lang/_languages.js +0 -6
- data/vendor/assets/javascripts/ckeditor/lang/_translationstatus.txt +0 -64
- data/vendor/assets/javascripts/ckeditor/lang/id.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/cs.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/cy.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/da.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/de.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/el.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/en.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/eo.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/fa.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/fi.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/fr.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/gu.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/he.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/it.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/mk.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/nb.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/nl.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/no.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/pt-br.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/ro.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/tr.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/ug.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/vi.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/lang/zh-cn.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/adobeair/plugin.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/ajax/plugin.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/autogrow/plugin.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/bbcode/plugin.js +0 -9
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/_translationstatus.txt +0 -28
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/bg.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/cs.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/cy.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/da.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/de.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/el.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/en.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/eo.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/et.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/fa.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/fi.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/fr.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/gu.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/he.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/hr.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/it.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/nb.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/nl.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/no.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/pl.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/pt-br.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/tr.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/ug.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/uk.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/vi.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/lang/zh-cn.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/devtools/plugin.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/docprops/dialogs/docprops.js +0 -10
- data/vendor/assets/javascripts/ckeditor/plugins/docprops/plugin.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/iframedialog/plugin.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/link/images/anchor.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/pastetext/dialogs/pastetext.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/dialogs/placeholder.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/_translationstatus.txt +0 -27
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/bg.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/cs.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/cy.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/da.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/de.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/el.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/en.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/eo.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/et.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/fa.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/fi.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/fr.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/he.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/hr.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/it.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/nb.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/nl.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/no.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/pl.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/pt-br.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/tr.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/ug.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/uk.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/vi.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/zh-cn.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/placeholder.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/plugin.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/scayt/dialogs/options.js +0 -8
- data/vendor/assets/javascripts/ckeditor/plugins/scayt/dialogs/toolbar.css +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/cs.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/cy.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/de.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/el.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/en.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/eo.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/et.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/fa.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/fi.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/fr.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/he.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/hr.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/it.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/nb.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/nl.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/no.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/pt-br.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/tr.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/ug.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/lang/zh-cn.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/styles/styles/default.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/stylesheetparser/plugin.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/tableresize/plugin.js +0 -7
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/dialogs/uicolor.js +0 -7
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/_translationstatus.txt +0 -28
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/bg.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/cs.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/cy.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/da.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/de.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/el.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/en.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/eo.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/et.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/fa.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/fi.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/fr.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/he.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/hr.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/it.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/mk.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/nb.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/nl.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/no.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/pl.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/pt-br.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/tr.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/ug.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/uk.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/vi.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/lang/zh-cn.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/plugin.js +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/uicolor.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/yui.css +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/uicolor/yui/yui.js +0 -76
- data/vendor/assets/javascripts/ckeditor/plugins/wsc/dialogs/ciframe.html +0 -49
- data/vendor/assets/javascripts/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +0 -52
- data/vendor/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc.css +0 -6
- data/vendor/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc.js +0 -7
- data/vendor/assets/javascripts/ckeditor/plugins/xml/plugin.js +0 -6
- data/vendor/assets/javascripts/ckeditor/skins/kama/icons_rtl.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/kama/skin.js +0 -7
- data/vendor/assets/javascripts/ckeditor/skins/kama/templates.css +0 -6
- data/vendor/assets/javascripts/ckeditor/skins/office2003/dialog.css +0 -10
- data/vendor/assets/javascripts/ckeditor/skins/office2003/editor.css +0 -14
- data/vendor/assets/javascripts/ckeditor/skins/office2003/icons.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/office2003/icons_rtl.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/office2003/images/dialog_sides.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/office2003/images/dialog_sides.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/office2003/images/dialog_sides_rtl.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/office2003/images/mini.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/office2003/images/noimage.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/office2003/images/sprites.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/office2003/images/sprites_ie6.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/office2003/skin.js +0 -6
- data/vendor/assets/javascripts/ckeditor/skins/office2003/templates.css +0 -6
- data/vendor/assets/javascripts/ckeditor/skins/v2/dialog.css +0 -9
- data/vendor/assets/javascripts/ckeditor/skins/v2/editor.css +0 -13
- data/vendor/assets/javascripts/ckeditor/skins/v2/icons.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/v2/icons_rtl.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/v2/images/dialog_sides.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/v2/images/dialog_sides.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/v2/images/dialog_sides_rtl.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/v2/images/mini.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/v2/images/noimage.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/v2/images/sprites.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/v2/images/sprites_ie6.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/v2/images/toolbar_start.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/v2/skin.js +0 -6
- data/vendor/assets/javascripts/ckeditor/skins/v2/templates.css +0 -6
- data/vendor/assets/javascripts/ckeditor/themes/default/theme.js +0 -8
@@ -1,92 +0,0 @@
|
|
1
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
-
<!--
|
3
|
-
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
4
|
-
For licensing, see LICENSE.html or http://ckeditor.com/license
|
5
|
-
-->
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml">
|
7
|
-
<head>
|
8
|
-
<title>Installation Guide - CKEditor</title>
|
9
|
-
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
10
|
-
<style type="text/css">
|
11
|
-
h3
|
12
|
-
{
|
13
|
-
border-bottom: 1px solid #AAAAAA;
|
14
|
-
}
|
15
|
-
pre
|
16
|
-
{
|
17
|
-
background-color: #F9F9F9;
|
18
|
-
border: 1px dashed #2F6FAB;
|
19
|
-
padding: 1em;
|
20
|
-
line-height: 1.1em;
|
21
|
-
}
|
22
|
-
#footer hr
|
23
|
-
{
|
24
|
-
margin: 10px 0 15px 0;
|
25
|
-
height: 1px;
|
26
|
-
border: solid 1px gray;
|
27
|
-
border-bottom: none;
|
28
|
-
}
|
29
|
-
#footer p
|
30
|
-
{
|
31
|
-
margin: 0 10px 10px 10px;
|
32
|
-
float: left;
|
33
|
-
}
|
34
|
-
#footer #copy
|
35
|
-
{
|
36
|
-
float: right;
|
37
|
-
}
|
38
|
-
</style>
|
39
|
-
</head>
|
40
|
-
<body>
|
41
|
-
<h1>
|
42
|
-
CKEditor Installation Guide</h1>
|
43
|
-
<h3>
|
44
|
-
What's CKEditor?</h3>
|
45
|
-
<p>
|
46
|
-
CKEditor is a text editor to be used inside web pages. It's not a replacement
|
47
|
-
for desktop text editors like Word or OpenOffice, but a component to be used as
|
48
|
-
part of web applications and web sites.</p>
|
49
|
-
<h3>
|
50
|
-
Installation</h3>
|
51
|
-
<p>
|
52
|
-
Installing CKEditor is an easy task. Just follow these simple steps:</p>
|
53
|
-
<ol>
|
54
|
-
<li><strong>Download</strong> the latest version of the editor from our web site: <a
|
55
|
-
href="http://ckeditor.com">http://ckeditor.com</a>. You should have already completed
|
56
|
-
this step, but be sure you have the very latest version.</li>
|
57
|
-
<li><strong>Extract</strong> (decompress) the downloaded file into the root of your
|
58
|
-
web site.</li>
|
59
|
-
</ol>
|
60
|
-
<p>
|
61
|
-
<strong>Note:</strong> CKEditor is by default installed in the "ckeditor"
|
62
|
-
folder. You can place the files in whichever you want though.</p>
|
63
|
-
<h3>
|
64
|
-
Checking Your Installation
|
65
|
-
</h3>
|
66
|
-
<p>
|
67
|
-
The editor comes with a few sample pages that can be used to verify that installation
|
68
|
-
proceeded properly. Take a look at the <a href="_samples">_samples</a> directory.</p>
|
69
|
-
<p>
|
70
|
-
To test your installation, just call the following page at your web site:</p>
|
71
|
-
<pre>
|
72
|
-
http://<your site>/<CKEditor installation path>/_samples/index.html
|
73
|
-
|
74
|
-
For example:
|
75
|
-
http://www.example.com/ckeditor/_samples/index.html</pre>
|
76
|
-
<h3>
|
77
|
-
Documentation</h3>
|
78
|
-
<p>
|
79
|
-
The full editor documentation is available online at the following address:<br />
|
80
|
-
<a href="http://docs.cksource.com/ckeditor">http://docs.cksource.com/ckeditor</a></p>
|
81
|
-
<div id="footer">
|
82
|
-
<hr />
|
83
|
-
<p>
|
84
|
-
CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>
|
85
|
-
</p>
|
86
|
-
<p id="copy">
|
87
|
-
Copyright © 2003-2012, <a href="http://cksource.com/">CKSource</a> - Frederico
|
88
|
-
Knabben. All rights reserved.
|
89
|
-
</p>
|
90
|
-
</div>
|
91
|
-
</body>
|
92
|
-
</html>
|
@@ -1,6 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
3
|
-
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
-
*/
|
5
|
-
|
6
|
-
(function(){CKEDITOR.config.jqueryOverrideVal=typeof CKEDITOR.config.jqueryOverrideVal=='undefined'?true:CKEDITOR.config.jqueryOverrideVal;var a=window.jQuery;if(typeof a=='undefined')return;a.extend(a.fn,{ckeditorGet:function(){var b=this.eq(0).data('ckeditorInstance');if(!b)throw 'CKEditor not yet initialized, use ckeditor() with callback.';return b;},ckeditor:function(b,c){if(!CKEDITOR.env.isCompatible)return this;if(!a.isFunction(b)){var d=c;c=b;b=d;}c=c||{};this.filter('textarea, div, p').each(function(){var e=a(this),f=e.data('ckeditorInstance'),g=e.data('_ckeditorInstanceLock'),h=this;if(f&&!g){if(b)b.apply(f,[this]);}else if(!g){if(c.autoUpdateElement||typeof c.autoUpdateElement=='undefined'&&CKEDITOR.config.autoUpdateElement)c.autoUpdateElementJquery=true;c.autoUpdateElement=false;e.data('_ckeditorInstanceLock',true);f=CKEDITOR.replace(h,c);e.data('ckeditorInstance',f);f.on('instanceReady',function(i){var j=i.editor;setTimeout(function(){if(!j.element){setTimeout(arguments.callee,100);return;}i.removeListener('instanceReady',this.callee);j.on('dataReady',function(){e.trigger('setData.ckeditor',[j]);});j.on('getData',function(l){e.trigger('getData.ckeditor',[j,l.data]);},999);j.on('destroy',function(){e.trigger('destroy.ckeditor',[j]);});if(j.config.autoUpdateElementJquery&&e.is('textarea')&&e.parents('form').length){var k=function(){e.ckeditor(function(){j.updateElement();});};e.parents('form').submit(k);e.parents('form').bind('form-pre-serialize',k);e.bind('destroy.ckeditor',function(){e.parents('form').unbind('submit',k);e.parents('form').unbind('form-pre-serialize',k);});}j.on('destroy',function(){e.data('ckeditorInstance',null);});e.data('_ckeditorInstanceLock',null);e.trigger('instanceReady.ckeditor',[j]);if(b)b.apply(j,[h]);},0);},null,null,9999);}else CKEDITOR.on('instanceReady',function(i){var j=i.editor;setTimeout(function(){if(!j.element){setTimeout(arguments.callee,100);return;}if(j.element.$==h)if(b)b.apply(j,[h]);},0);},null,null,9999);});return this;}});if(CKEDITOR.config.jqueryOverrideVal)a.fn.val=CKEDITOR.tools.override(a.fn.val,function(b){return function(c,d){var e=typeof c!='undefined',f;this.each(function(){var g=a(this),h=g.data('ckeditorInstance');if(!d&&g.is('textarea')&&h){if(e)h.setData(c);else{f=h.getData();return null;}}else if(e)b.call(g,c);else{f=b.call(g);return null;}return true;});return e?this:f;};});})();
|
@@ -1,211 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* CKPackager - Sample Package file
|
3
|
-
*/
|
4
|
-
|
5
|
-
header :
|
6
|
-
'/*' + '\n' +
|
7
|
-
'Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.' + '\n' +
|
8
|
-
'For licensing, see LICENSE.html or http://ckeditor.com/license' + '\n' +
|
9
|
-
'*/' + '\n' +
|
10
|
-
'\n',
|
11
|
-
|
12
|
-
noCheck : false,
|
13
|
-
|
14
|
-
constants :
|
15
|
-
{
|
16
|
-
'CKEDITOR.ELEMENT_MODE_NONE' : 0,
|
17
|
-
'CKEDITOR.ELEMENT_MODE_REPLACE' : 1,
|
18
|
-
'CKEDITOR.ELEMENT_MODE_APPENDTO' : 2,
|
19
|
-
'CKEDITOR.CTRL' : 0x110000,
|
20
|
-
'CKEDITOR.SHIFT' : 0x220000,
|
21
|
-
'CKEDITOR.ALT' : 0x440000,
|
22
|
-
'CKEDITOR.NODE_ELEMENT' : 1,
|
23
|
-
'CKEDITOR.NODE_DOCUMENT' : 9,
|
24
|
-
'CKEDITOR.NODE_TEXT' : 3,
|
25
|
-
'CKEDITOR.NODE_COMMENT' : 8,
|
26
|
-
'CKEDITOR.NODE_DOCUMENT_FRAGMENT' : 11,
|
27
|
-
'CKEDITOR.POSITION_IDENTICAL' : 0,
|
28
|
-
'CKEDITOR.POSITION_DISCONNECTED' : 1,
|
29
|
-
'CKEDITOR.POSITION_FOLLOWING' : 2,
|
30
|
-
'CKEDITOR.POSITION_PRECEDING' : 4,
|
31
|
-
'CKEDITOR.POSITION_IS_CONTAINED' : 8,
|
32
|
-
'CKEDITOR.POSITION_CONTAINS' : 16,
|
33
|
-
'CKEDITOR.ENTER_P' : 1,
|
34
|
-
'CKEDITOR.ENTER_BR' : 2,
|
35
|
-
'CKEDITOR.ENTER_DIV' : 3,
|
36
|
-
'CKEDITOR.TRISTATE_ON' : 1,
|
37
|
-
'CKEDITOR.TRISTATE_OFF' : 2,
|
38
|
-
'CKEDITOR.TRISTATE_DISABLED' : 0,
|
39
|
-
'CKEDITOR.POSITION_AFTER_START' : 1,
|
40
|
-
'CKEDITOR.POSITION_BEFORE_END' : 2,
|
41
|
-
'CKEDITOR.POSITION_BEFORE_START' : 3,
|
42
|
-
'CKEDITOR.POSITION_AFTER_END' : 4,
|
43
|
-
'CKEDITOR.ENLARGE_ELEMENT' : 1,
|
44
|
-
'CKEDITOR.ENLARGE_BLOCK_CONTENTS' : 2,
|
45
|
-
'CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS' : 3,
|
46
|
-
'CKEDITOR.START' : 1,
|
47
|
-
'CKEDITOR.END' : 2,
|
48
|
-
'CKEDITOR.STARTEND' : 3,
|
49
|
-
'CKEDITOR.SHRINK_ELEMENT' : 1,
|
50
|
-
'CKEDITOR.SHRINK_TEXT' : 2,
|
51
|
-
'CKEDITOR.UI_BUTTON' : '\'button\'',
|
52
|
-
'CKEDITOR.DIALOG_RESIZE_NONE' : 0,
|
53
|
-
'CKEDITOR.DIALOG_RESIZE_WIDTH' : 1,
|
54
|
-
'CKEDITOR.DIALOG_RESIZE_HEIGHT' : 2,
|
55
|
-
'CKEDITOR.DIALOG_RESIZE_BOTH' : 3,
|
56
|
-
'CKEDITOR.VALIDATE_OR' : 1,
|
57
|
-
'CKEDITOR.VALIDATE_AND' : 2,
|
58
|
-
'CKEDITOR.STYLE_BLOCK' : 1,
|
59
|
-
'CKEDITOR.STYLE_INLINE' : 2,
|
60
|
-
'CKEDITOR.STYLE_OBJECT' : 3,
|
61
|
-
'CKEDITOR.UI_PANELBUTTON' : '\'panelbutton\'',
|
62
|
-
'CKEDITOR.SELECTION_NONE' : 1,
|
63
|
-
'CKEDITOR.SELECTION_TEXT' : 2,
|
64
|
-
'CKEDITOR.SELECTION_ELEMENT' : 3,
|
65
|
-
'CKEDITOR.UI_RICHCOMBO' : '\'richcombo\'',
|
66
|
-
'CKEDITOR.UI_MENUBUTTON' : '\'menubutton\'',
|
67
|
-
'CKEDITOR.UI_PANEL' : '\'panel\''
|
68
|
-
},
|
69
|
-
|
70
|
-
packages :
|
71
|
-
[
|
72
|
-
{
|
73
|
-
output : 'ckeditor_basic.js',
|
74
|
-
wrap : true,
|
75
|
-
files :
|
76
|
-
[
|
77
|
-
'_source/core/ckeditor_base.js',
|
78
|
-
'_source/core/event.js',
|
79
|
-
'_source/core/editor_basic.js',
|
80
|
-
'_source/core/env.js',
|
81
|
-
'_source/core/ckeditor_basic.js'
|
82
|
-
]
|
83
|
-
},
|
84
|
-
|
85
|
-
{
|
86
|
-
output : 'ckeditor.js',
|
87
|
-
wrap : true,
|
88
|
-
files :
|
89
|
-
[
|
90
|
-
'_source/core/ckeditor_base.js',
|
91
|
-
'_source/core/event.js',
|
92
|
-
'_source/core/editor_basic.js',
|
93
|
-
'_source/core/env.js',
|
94
|
-
'_source/core/ckeditor_basic.js',
|
95
|
-
'_source/core/dom.js',
|
96
|
-
'_source/core/tools.js',
|
97
|
-
'_source/core/dtd.js',
|
98
|
-
'_source/core/dom/event.js',
|
99
|
-
'_source/core/dom/domobject.js',
|
100
|
-
'_source/core/dom/window.js',
|
101
|
-
'_source/core/dom/document.js',
|
102
|
-
'_source/core/dom/node.js',
|
103
|
-
'_source/core/dom/nodelist.js',
|
104
|
-
'_source/core/dom/element.js',
|
105
|
-
'_source/core/command.js',
|
106
|
-
'_source/core/config.js',
|
107
|
-
'_source/core/focusmanager.js',
|
108
|
-
'_source/core/lang.js',
|
109
|
-
'_source/core/scriptloader.js',
|
110
|
-
'_source/core/resourcemanager.js',
|
111
|
-
'_source/core/plugins.js',
|
112
|
-
'_source/core/skins.js',
|
113
|
-
'_source/core/themes.js',
|
114
|
-
'_source/core/ui.js',
|
115
|
-
'_source/core/editor.js',
|
116
|
-
'_source/core/htmlparser.js',
|
117
|
-
'_source/core/htmlparser/comment.js',
|
118
|
-
'_source/core/htmlparser/text.js',
|
119
|
-
'_source/core/htmlparser/cdata.js',
|
120
|
-
'_source/core/htmlparser/fragment.js',
|
121
|
-
'_source/core/htmlparser/element.js',
|
122
|
-
'_source/core/htmlparser/filter.js',
|
123
|
-
'_source/core/htmlparser/basicwriter.js',
|
124
|
-
'_source/core/ckeditor.js',
|
125
|
-
'_source/core/dom/comment.js',
|
126
|
-
'_source/core/dom/elementpath.js',
|
127
|
-
'_source/core/dom/text.js',
|
128
|
-
'_source/core/dom/documentfragment.js',
|
129
|
-
'_source/core/dom/walker.js',
|
130
|
-
'_source/core/dom/range.js',
|
131
|
-
'_source/core/dom/rangelist.js',
|
132
|
-
'_source/core/_bootstrap.js',
|
133
|
-
'_source/skins/kama/skin.js',
|
134
|
-
// '_source/lang/en.js',
|
135
|
-
'_source/plugins/about/plugin.js',
|
136
|
-
'_source/plugins/a11yhelp/plugin.js',
|
137
|
-
'_source/plugins/basicstyles/plugin.js',
|
138
|
-
'_source/plugins/bidi/plugin.js',
|
139
|
-
'_source/plugins/blockquote/plugin.js',
|
140
|
-
'_source/plugins/button/plugin.js',
|
141
|
-
'_source/plugins/clipboard/plugin.js',
|
142
|
-
'_source/plugins/colorbutton/plugin.js',
|
143
|
-
'_source/plugins/colordialog/plugin.js',
|
144
|
-
'_source/plugins/contextmenu/plugin.js',
|
145
|
-
'_source/plugins/dialogadvtab/plugin.js',
|
146
|
-
'_source/plugins/div/plugin.js',
|
147
|
-
'_source/plugins/elementspath/plugin.js',
|
148
|
-
'_source/plugins/enterkey/plugin.js',
|
149
|
-
'_source/plugins/entities/plugin.js',
|
150
|
-
'_source/plugins/filebrowser/plugin.js',
|
151
|
-
'_source/plugins/find/plugin.js',
|
152
|
-
'_source/plugins/flash/plugin.js',
|
153
|
-
'_source/plugins/font/plugin.js',
|
154
|
-
'_source/plugins/format/plugin.js',
|
155
|
-
'_source/plugins/forms/plugin.js',
|
156
|
-
'_source/plugins/horizontalrule/plugin.js',
|
157
|
-
'_source/plugins/htmldataprocessor/plugin.js',
|
158
|
-
'_source/plugins/iframe/plugin.js',
|
159
|
-
'_source/plugins/image/plugin.js',
|
160
|
-
'_source/plugins/indent/plugin.js',
|
161
|
-
'_source/plugins/justify/plugin.js',
|
162
|
-
'_source/plugins/keystrokes/plugin.js',
|
163
|
-
'_source/plugins/link/plugin.js',
|
164
|
-
'_source/plugins/list/plugin.js',
|
165
|
-
'_source/plugins/liststyle/plugin.js',
|
166
|
-
'_source/plugins/maximize/plugin.js',
|
167
|
-
'_source/plugins/newpage/plugin.js',
|
168
|
-
'_source/plugins/pagebreak/plugin.js',
|
169
|
-
'_source/plugins/pastefromword/plugin.js',
|
170
|
-
'_source/plugins/pastetext/plugin.js',
|
171
|
-
'_source/plugins/popup/plugin.js',
|
172
|
-
'_source/plugins/preview/plugin.js',
|
173
|
-
'_source/plugins/print/plugin.js',
|
174
|
-
'_source/plugins/removeformat/plugin.js',
|
175
|
-
'_source/plugins/resize/plugin.js',
|
176
|
-
'_source/plugins/save/plugin.js',
|
177
|
-
'_source/plugins/scayt/plugin.js',
|
178
|
-
'_source/plugins/smiley/plugin.js',
|
179
|
-
'_source/plugins/showblocks/plugin.js',
|
180
|
-
'_source/plugins/showborders/plugin.js',
|
181
|
-
'_source/plugins/sourcearea/plugin.js',
|
182
|
-
'_source/plugins/stylescombo/plugin.js',
|
183
|
-
'_source/plugins/table/plugin.js',
|
184
|
-
'_source/plugins/tabletools/plugin.js',
|
185
|
-
'_source/plugins/specialchar/plugin.js',
|
186
|
-
'_source/plugins/tab/plugin.js',
|
187
|
-
'_source/plugins/templates/plugin.js',
|
188
|
-
'_source/plugins/toolbar/plugin.js',
|
189
|
-
'_source/plugins/undo/plugin.js',
|
190
|
-
'_source/plugins/wysiwygarea/plugin.js',
|
191
|
-
'_source/plugins/wsc/plugin.js',
|
192
|
-
'_source/plugins/dialog/plugin.js',
|
193
|
-
'_source/plugins/styles/plugin.js',
|
194
|
-
'_source/plugins/domiterator/plugin.js',
|
195
|
-
'_source/plugins/panelbutton/plugin.js',
|
196
|
-
'_source/plugins/floatpanel/plugin.js',
|
197
|
-
'_source/plugins/menu/plugin.js',
|
198
|
-
'_source/plugins/editingblock/plugin.js',
|
199
|
-
'_source/plugins/selection/plugin.js',
|
200
|
-
'_source/plugins/fakeobjects/plugin.js',
|
201
|
-
'_source/plugins/richcombo/plugin.js',
|
202
|
-
'_source/plugins/htmlwriter/plugin.js',
|
203
|
-
'_source/plugins/menubutton/plugin.js',
|
204
|
-
'_source/plugins/dialogui/plugin.js',
|
205
|
-
'_source/plugins/panel/plugin.js',
|
206
|
-
'_source/plugins/listblock/plugin.js',
|
207
|
-
'_source/themes/default/theme.js'
|
208
|
-
]
|
209
|
-
}
|
210
|
-
|
211
|
-
]
|
@@ -1,8 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
3
|
-
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
-
*/
|
5
|
-
|
6
|
-
(function(){if(window.CKEDITOR&&window.CKEDITOR.dom)return;if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'C6HH5UF',version:'3.6.4',revision:'7575',rnd:Math.floor(Math.random()*900)+100,_:{},status:'unloaded',basePath:(function(){var d=window.CKEDITOR_BASEPATH||'';if(!d){var e=document.getElementsByTagName('script');for(var f=0;f<e.length;f++){var g=e[f].src.match(/(^|.*[\\\/])ckeditor(?:_basic)?(?:_source)?.js(?:\?.*)?$/i);if(g){d=g[1];break;}}}if(d.indexOf(':/')==-1)if(d.indexOf('/')===0)d=location.href.match(/^.*?:\/\/[^\/]*/)[0]+d;else d=location.href.match(/^[^\?]*\/(?:)/)[0]+d;if(!d)throw 'The CKEditor installation path could not be automatically detected. Please set the global variable "CKEDITOR_BASEPATH" before creating editor instances.';return d;})(),getUrl:function(d){if(d.indexOf(':/')==-1&&d.indexOf('/')!==0)d=this.basePath+d;if(this.timestamp&&d.charAt(d.length-1)!='/'&&!/[&?]t=/.test(d))d+=(d.indexOf('?')>=0?'&':'?')+'t='+this.timestamp;return d;}},b=window.CKEDITOR_GETURL;if(b){var c=a.getUrl;a.getUrl=function(d){return b.call(a,d)||c.call(a,d);};}return a;})();var a=CKEDITOR;if(!a.event){a.event=function(){};a.event.implementOn=function(b){var c=a.event.prototype;for(var d in c){if(b[d]==undefined)b[d]=c[d];}};a.event.prototype=(function(){var b=function(d){var e=d.getPrivate&&d.getPrivate()||d._||(d._={});return e.events||(e.events={});},c=function(d){this.name=d;this.listeners=[];};c.prototype={getListenerIndex:function(d){for(var e=0,f=this.listeners;e<f.length;e++){if(f[e].fn==d)return e;}return-1;}};return{on:function(d,e,f,g,h){var i=b(this),j=i[d]||(i[d]=new c(d));if(j.getListenerIndex(e)<0){var k=j.listeners;if(!f)f=this;if(isNaN(h))h=10;var l=this,m=function(o,p,q,r){var s={name:d,sender:this,editor:o,data:p,listenerData:g,stop:q,cancel:r,removeListener:function(){l.removeListener(d,e);}};e.call(f,s);return s.data;};m.fn=e;m.priority=h;for(var n=k.length-1;n>=0;n--){if(k[n].priority<=h){k.splice(n+1,0,m);return;}}k.unshift(m);}},fire:(function(){var d=false,e=function(){d=true;},f=false,g=function(){f=true;};return function(h,i,j){var k=b(this)[h],l=d,m=f;d=f=false;if(k){var n=k.listeners;if(n.length){n=n.slice(0);for(var o=0;o<n.length;o++){var p=n[o].call(this,j,i,e,g);if(typeof p!='undefined')i=p;if(d||f)break;}}}var q=f||(typeof i=='undefined'?false:i);d=l;f=m;return q;};})(),fireOnce:function(d,e,f){var g=this.fire(d,e,f);delete b(this)[d];return g;},removeListener:function(d,e){var f=b(this)[d];if(f){var g=f.getListenerIndex(e);
|
7
|
-
if(g>=0)f.listeners.splice(g,1);}},hasListeners:function(d){var e=b(this)[d];return e&&e.listeners.length>0;}};})();}if(!a.editor){a.ELEMENT_MODE_NONE=0;a.ELEMENT_MODE_REPLACE=1;a.ELEMENT_MODE_APPENDTO=2;a.editor=function(b,c,d,e){var f=this;f._={instanceConfig:b,element:c,data:e};f.elementMode=d||0;a.event.call(f);f._init();};a.editor.replace=function(b,c){var d=b;if(typeof d!='object'){d=document.getElementById(b);if(d&&d.tagName.toLowerCase() in {style:1,script:1,base:1,link:1,meta:1,title:1})d=null;if(!d){var e=0,f=document.getElementsByName(b);while((d=f[e++])&&d.tagName.toLowerCase()!='textarea'){}}if(!d)throw '[CKEDITOR.editor.replace] The element with id or name "'+b+'" was not found.';}d.style.visibility='hidden';return new a.editor(c,d,1);};a.editor.appendTo=function(b,c,d){var e=b;if(typeof e!='object'){e=document.getElementById(b);if(!e)throw '[CKEDITOR.editor.appendTo] The element with id "'+b+'" was not found.';}return new a.editor(c,e,2,d);};a.editor.prototype={_init:function(){var b=a.editor._pending||(a.editor._pending=[]);b.push(this);},fire:function(b,c){return a.event.prototype.fire.call(this,b,c,this);},fireOnce:function(b,c){return a.event.prototype.fireOnce.call(this,b,c,this);}};a.event.implementOn(a.editor.prototype,true);}if(!a.env)a.env=(function(){var b=navigator.userAgent.toLowerCase(),c=window.opera,d={ie:/*@cc_on!@*/false,opera:!!c&&c.version,webkit:b.indexOf(' applewebkit/')>-1,air:b.indexOf(' adobeair/')>-1,mac:b.indexOf('macintosh')>-1,quirks:document.compatMode=='BackCompat',mobile:b.indexOf('mobile')>-1,iOS:/(ipad|iphone|ipod)/.test(b),isCustomDomain:function(){if(!this.ie)return false;var g=document.domain,h=window.location.hostname;return g!=h&&g!='['+h+']';},secure:location.protocol=='https:'};d.gecko=navigator.product=='Gecko'&&!d.webkit&&!d.opera;var e=0;if(d.ie){e=parseFloat(b.match(/msie (\d+)/)[1]);d.ie8=!!document.documentMode;d.ie8Compat=document.documentMode==8;d.ie9Compat=document.documentMode==9;d.ie7Compat=e==7&&!document.documentMode||document.documentMode==7;d.ie6Compat=e<7||d.quirks;}if(d.gecko){var f=b.match(/rv:([\d\.]+)/);if(f){f=f[1].split('.');e=f[0]*10000+(f[1]||0)*100+ +(f[2]||0);}}if(d.opera)e=parseFloat(c.version());if(d.air)e=parseFloat(b.match(/ adobeair\/(\d+)/)[1]);if(d.webkit)e=parseFloat(b.match(/ applewebkit\/(\d+)/)[1]);d.version=e;d.isCompatible=d.iOS&&e>=534||!d.mobile&&(d.ie&&e>=6||d.gecko&&e>=10801||d.opera&&e>=9.5||d.air&&e>=1||d.webkit&&e>=522||false);d.cssClass='cke_browser_'+(d.ie?'ie':d.gecko?'gecko':d.opera?'opera':d.webkit?'webkit':'unknown');
|
8
|
-
if(d.quirks)d.cssClass+=' cke_browser_quirks';if(d.ie){d.cssClass+=' cke_browser_ie'+(d.version<7?'6':d.version>=8?document.documentMode:'7');if(d.quirks)d.cssClass+=' cke_browser_iequirks';}if(d.gecko&&e<10900)d.cssClass+=' cke_browser_gecko18';if(d.air)d.cssClass+=' cke_browser_air';return d;})();var b=a.env;var c=b.ie;if(a.status=='unloaded')(function(){a.event.implementOn(a);a.loadFullCore=function(){if(a.status!='basic_ready'){a.loadFullCore._load=1;return;}delete a.loadFullCore;var e=document.createElement('script');e.type='text/javascript';e.src=a.basePath+'ckeditor.js';document.getElementsByTagName('head')[0].appendChild(e);};a.loadFullCoreTimeout=0;a.replaceClass='ckeditor';a.replaceByClassEnabled=1;var d=function(e,f,g,h){if(b.isCompatible){if(a.loadFullCore)a.loadFullCore();var i=g(e,f,h);a.add(i);return i;}return null;};a.replace=function(e,f){return d(e,f,a.editor.replace);};a.appendTo=function(e,f,g){return d(e,f,a.editor.appendTo,g);};a.add=function(e){var f=this._.pending||(this._.pending=[]);f.push(e);};a.replaceAll=function(){var e=document.getElementsByTagName('textarea');for(var f=0;f<e.length;f++){var g=null,h=e[f];if(!h.name&&!h.id)continue;if(typeof arguments[0]=='string'){var i=new RegExp('(?:^|\\s)'+arguments[0]+'(?:$|\\s)');if(!i.test(h.className))continue;}else if(typeof arguments[0]=='function'){g={};if(arguments[0](h,g)===false)continue;}this.replace(h,g);}};(function(){var e=function(){var f=a.loadFullCore,g=a.loadFullCoreTimeout;if(a.replaceByClassEnabled)a.replaceAll(a.replaceClass);a.status='basic_ready';if(f&&f._load)f();else if(g)setTimeout(function(){if(a.loadFullCore)a.loadFullCore();},g*1000);};if(window.addEventListener)window.addEventListener('load',e,false);else if(window.attachEvent)window.attachEvent('onload',e);})();a.status='basic_loaded';})();})();
|
@@ -1,20 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
3
|
-
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
-
*/
|
5
|
-
|
6
|
-
// Compressed version of core/ckeditor_base.js. See original for instructions.
|
7
|
-
/*jsl:ignore*/
|
8
|
-
if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'',version:'3.6.4',revision:'7575',rnd:Math.floor(Math.random()*900)+100,_:{},status:'unloaded',basePath:(function(){var d=window.CKEDITOR_BASEPATH||'';if(!d){var e=document.getElementsByTagName('script');for(var f=0;f<e.length;f++){var g=e[f].src.match(/(^|.*[\\\/])ckeditor(?:_basic)?(?:_source)?.js(?:\?.*)?$/i);if(g){d=g[1];break;}}}if(d.indexOf(':/')==-1)if(d.indexOf('/')===0)d=location.href.match(/^.*?:\/\/[^\/]*/)[0]+d;else d=location.href.match(/^[^\?]*\/(?:)/)[0]+d;if(!d)throw 'The CKEditor installation path could not be automatically detected. Please set the global variable "CKEDITOR_BASEPATH" before creating editor instances.';return d;})(),getUrl:function(d){if(d.indexOf(':/')==-1&&d.indexOf('/')!==0)d=this.basePath+d;if(this.timestamp&&d.charAt(d.length-1)!='/'&&!/[&?]t=/.test(d))d+=(d.indexOf('?')>=0?'&':'?')+'t='+this.timestamp;return d;}},b=window.CKEDITOR_GETURL;if(b){var c=a.getUrl;a.getUrl=function(d){return b.call(a,d)||c.call(a,d);};}return a;})();
|
9
|
-
/*jsl:end*/
|
10
|
-
|
11
|
-
// Uncomment the following line to have a new timestamp generated for each
|
12
|
-
// request, having clear cache load of the editor code.
|
13
|
-
// CKEDITOR.timestamp = ( new Date() ).valueOf();
|
14
|
-
|
15
|
-
// Set the script name to be loaded by the loader.
|
16
|
-
CKEDITOR._autoLoad = 'core/ckeditor_basic';
|
17
|
-
|
18
|
-
// Include the loader script.
|
19
|
-
document.write(
|
20
|
-
'<script type="text/javascript" src="' + CKEDITOR.getUrl( '_source/core/loader.js' ) + '"></script>' );
|
@@ -1,35 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
3
|
-
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
-
*/
|
5
|
-
|
6
|
-
// Compressed version of core/ckeditor_base.js. See original for instructions.
|
7
|
-
/*jsl:ignore*/
|
8
|
-
if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'',version:'3.6.4',revision:'7575',rnd:Math.floor(Math.random()*900)+100,_:{},status:'unloaded',basePath:(function(){var d=window.CKEDITOR_BASEPATH||'';if(!d){var e=document.getElementsByTagName('script');for(var f=0;f<e.length;f++){var g=e[f].src.match(/(^|.*[\\\/])ckeditor(?:_basic)?(?:_source)?.js(?:\?.*)?$/i);if(g){d=g[1];break;}}}if(d.indexOf(':/')==-1)if(d.indexOf('/')===0)d=location.href.match(/^.*?:\/\/[^\/]*/)[0]+d;else d=location.href.match(/^[^\?]*\/(?:)/)[0]+d;if(!d)throw 'The CKEditor installation path could not be automatically detected. Please set the global variable "CKEDITOR_BASEPATH" before creating editor instances.';return d;})(),getUrl:function(d){if(d.indexOf(':/')==-1&&d.indexOf('/')!==0)d=this.basePath+d;if(this.timestamp&&d.charAt(d.length-1)!='/'&&!/[&?]t=/.test(d))d+=(d.indexOf('?')>=0?'&':'?')+'t='+this.timestamp;return d;}},b=window.CKEDITOR_GETURL;if(b){var c=a.getUrl;a.getUrl=function(d){return b.call(a,d)||c.call(a,d);};}return a;})();
|
9
|
-
/*jsl:end*/
|
10
|
-
|
11
|
-
// Uncomment the following line to have a new timestamp generated for each
|
12
|
-
// request, having clear cache load of the editor code.
|
13
|
-
// CKEDITOR.timestamp = ( new Date() ).valueOf();
|
14
|
-
|
15
|
-
if ( CKEDITOR.loader )
|
16
|
-
CKEDITOR.loader.load( 'core/ckeditor' );
|
17
|
-
else
|
18
|
-
{
|
19
|
-
// Set the script name to be loaded by the loader.
|
20
|
-
CKEDITOR._autoLoad = 'core/ckeditor';
|
21
|
-
|
22
|
-
// Include the loader script.
|
23
|
-
if ( document.body && (!document.readyState || document.readyState == 'complete') )
|
24
|
-
{
|
25
|
-
var script = document.createElement( 'script' );
|
26
|
-
script.type = 'text/javascript';
|
27
|
-
script.src = CKEDITOR.getUrl( '_source/core/loader.js' );
|
28
|
-
document.body.appendChild( script );
|
29
|
-
}
|
30
|
-
else
|
31
|
-
{
|
32
|
-
document.write(
|
33
|
-
'<script type="text/javascript" src="' + CKEDITOR.getUrl( '_source/core/loader.js' ) + '"></script>' );
|
34
|
-
}
|
35
|
-
}
|
@@ -1,6 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
3
|
-
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
-
*/
|
5
|
-
|
6
|
-
var CKEDITOR_LANGS=(function(){var b={af:'Afrikaans',ar:'Arabic',bg:'Bulgarian',bn:'Bengali/Bangla',bs:'Bosnian',ca:'Catalan',cs:'Czech',cy:'Welsh',da:'Danish',de:'German',el:'Greek',en:'English','en-au':'English (Australia)','en-ca':'English (Canadian)','en-gb':'English (United Kingdom)',eo:'Esperanto',es:'Spanish',et:'Estonian',eu:'Basque',fa:'Persian',fi:'Finnish',fo:'Faroese',fr:'French','fr-ca':'French (Canada)',gl:'Galician',gu:'Gujarati',he:'Hebrew',hi:'Hindi',hr:'Croatian',hu:'Hungarian',is:'Icelandic',it:'Italian',ja:'Japanese',ka:'Georgian',km:'Khmer',ko:'Korean',lt:'Lithuanian',lv:'Latvian',mn:'Mongolian',ms:'Malay',nb:'Norwegian Bokmal',nl:'Dutch',no:'Norwegian',pl:'Polish',pt:'Portuguese (Portugal)','pt-br':'Portuguese (Brazil)',ro:'Romanian',ru:'Russian',sk:'Slovak',sl:'Slovenian',sr:'Serbian (Cyrillic)','sr-latn':'Serbian (Latin)',sv:'Swedish',th:'Thai',tr:'Turkish',uk:'Ukrainian',vi:'Vietnamese',zh:'Chinese Traditional','zh-cn':'Chinese Simplified'},c=[];for(var d in b)c.push({code:d,name:b[d]});c.sort(function(e,f){return e.name<f.name?-1:1;});return c;})();
|
@@ -1,64 +0,0 @@
|
|
1
|
-
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
2
|
-
For licensing, see LICENSE.html or http://ckeditor.com/license
|
3
|
-
|
4
|
-
af.js Found: 548 Missing: 29
|
5
|
-
ar.js Found: 470 Missing: 107
|
6
|
-
bg.js Found: 394 Missing: 183
|
7
|
-
bn.js Found: 292 Missing: 285
|
8
|
-
bs.js Found: 175 Missing: 402
|
9
|
-
ca.js Found: 549 Missing: 28
|
10
|
-
cs.js Found: 577 Missing: 0
|
11
|
-
cy.js Found: 575 Missing: 2
|
12
|
-
da.js Found: 575 Missing: 2
|
13
|
-
de.js Found: 575 Missing: 2
|
14
|
-
el.js Found: 391 Missing: 186
|
15
|
-
en-au.js Found: 347 Missing: 230
|
16
|
-
en-ca.js Found: 345 Missing: 232
|
17
|
-
en-gb.js Found: 517 Missing: 60
|
18
|
-
eo.js Found: 577 Missing: 0
|
19
|
-
es.js Found: 575 Missing: 2
|
20
|
-
et.js Found: 577 Missing: 0
|
21
|
-
eu.js Found: 417 Missing: 160
|
22
|
-
fa.js Found: 575 Missing: 2
|
23
|
-
fi.js Found: 575 Missing: 2
|
24
|
-
fo.js Found: 575 Missing: 2
|
25
|
-
fr-ca.js Found: 319 Missing: 258
|
26
|
-
fr.js Found: 575 Missing: 2
|
27
|
-
gl.js Found: 292 Missing: 285
|
28
|
-
gu.js Found: 575 Missing: 2
|
29
|
-
he.js Found: 575 Missing: 2
|
30
|
-
hi.js Found: 327 Missing: 250
|
31
|
-
hr.js Found: 575 Missing: 2
|
32
|
-
hu.js Found: 572 Missing: 5
|
33
|
-
id.js Found: 1 Missing: 576
|
34
|
-
is.js Found: 326 Missing: 251
|
35
|
-
it.js Found: 577 Missing: 0
|
36
|
-
ja.js Found: 493 Missing: 84
|
37
|
-
ka.js Found: 568 Missing: 9
|
38
|
-
km.js Found: 286 Missing: 291
|
39
|
-
ko.js Found: 304 Missing: 273
|
40
|
-
lt.js Found: 575 Missing: 2
|
41
|
-
lv.js Found: 294 Missing: 283
|
42
|
-
mk.js Found: 0 Missing: 577
|
43
|
-
mn.js Found: 320 Missing: 257
|
44
|
-
ms.js Found: 276 Missing: 301
|
45
|
-
nb.js Found: 577 Missing: 0
|
46
|
-
nl.js Found: 575 Missing: 2
|
47
|
-
no.js Found: 577 Missing: 0
|
48
|
-
pl.js Found: 575 Missing: 2
|
49
|
-
pt-br.js Found: 577 Missing: 0
|
50
|
-
pt.js Found: 326 Missing: 251
|
51
|
-
ro.js Found: 432 Missing: 145
|
52
|
-
ru.js Found: 575 Missing: 2
|
53
|
-
sk.js Found: 364 Missing: 213
|
54
|
-
sl.js Found: 426 Missing: 151
|
55
|
-
sr-latn.js Found: 287 Missing: 290
|
56
|
-
sr.js Found: 286 Missing: 291
|
57
|
-
sv.js Found: 550 Missing: 27
|
58
|
-
th.js Found: 298 Missing: 279
|
59
|
-
tr.js Found: 575 Missing: 2
|
60
|
-
ug.js Found: 572 Missing: 5
|
61
|
-
uk.js Found: 575 Missing: 2
|
62
|
-
vi.js Found: 577 Missing: 0
|
63
|
-
zh-cn.js Found: 577 Missing: 0
|
64
|
-
zh.js Found: 433 Missing: 144
|