ckeditor 4.3.0 → 5.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Gemfile +11 -11
- data/README.md +40 -83
- data/Rakefile +15 -8
- data/app/assets/javascripts/ckeditor/config.js +1 -0
- data/app/controllers/ckeditor/application_controller.rb +3 -0
- data/app/controllers/ckeditor/attachment_files_controller.rb +2 -0
- data/app/controllers/ckeditor/pictures_controller.rb +2 -0
- data/app/helpers/ckeditor/application_helper.rb +2 -0
- data/config/locales/da.ckeditor.yml +9 -0
- data/config/routes.rb +2 -0
- data/lib/ckeditor.rb +9 -16
- data/lib/ckeditor/asset_response.rb +15 -4
- data/lib/ckeditor/backend/active_storage.rb +68 -0
- data/lib/ckeditor/backend/carrierwave.rb +2 -12
- data/lib/ckeditor/backend/dragonfly.rb +2 -0
- data/lib/ckeditor/backend/paperclip.rb +2 -15
- data/lib/ckeditor/backend/shrine.rb +29 -0
- data/lib/ckeditor/helpers/controllers.rb +2 -0
- data/lib/ckeditor/helpers/form_builder.rb +2 -0
- data/lib/ckeditor/helpers/form_helper.rb +2 -0
- data/lib/ckeditor/helpers/view_helper.rb +2 -0
- data/lib/ckeditor/hooks/cancan.rb +4 -1
- data/lib/ckeditor/hooks/formtastic.rb +2 -0
- data/lib/ckeditor/hooks/pundit.rb +2 -0
- data/lib/ckeditor/hooks/simple_form.rb +2 -0
- data/lib/ckeditor/http.rb +8 -5
- data/lib/ckeditor/orm/active_record.rb +2 -0
- data/lib/ckeditor/orm/base.rb +2 -0
- data/lib/ckeditor/orm/mongoid.rb +2 -0
- data/lib/ckeditor/paginatable.rb +2 -0
- data/lib/ckeditor/rails.rb +2 -0
- data/lib/ckeditor/text_area.rb +2 -0
- data/lib/ckeditor/utils.rb +1 -39
- data/lib/ckeditor/utils/javascript_code.rb +1 -1
- data/lib/ckeditor/version.rb +4 -2
- data/lib/generators/ckeditor/install_generator.rb +15 -18
- data/lib/generators/ckeditor/pundit_policy_generator.rb +2 -0
- data/lib/generators/ckeditor/templates/active_record/active_storage/ckeditor/asset.rb +10 -0
- data/lib/generators/ckeditor/templates/active_record/{refile → active_storage}/ckeditor/attachment_file.rb +3 -1
- data/lib/generators/ckeditor/templates/active_record/active_storage/ckeditor/picture.rb +13 -0
- data/lib/generators/ckeditor/templates/active_record/{carrierwave/migration_versioned.rb → active_storage/migration.rb} +8 -5
- data/lib/generators/ckeditor/templates/active_record/carrierwave/ckeditor/asset.rb +2 -0
- data/lib/generators/ckeditor/templates/active_record/carrierwave/ckeditor/attachment_file.rb +2 -0
- data/lib/generators/ckeditor/templates/active_record/carrierwave/ckeditor/picture.rb +2 -0
- data/lib/generators/ckeditor/templates/active_record/carrierwave/migration.rb +7 -5
- data/lib/generators/ckeditor/templates/active_record/dragonfly/ckeditor/asset.rb +2 -0
- data/lib/generators/ckeditor/templates/active_record/dragonfly/ckeditor/attachment_file.rb +2 -0
- data/lib/generators/ckeditor/templates/active_record/dragonfly/ckeditor/picture.rb +2 -0
- data/lib/generators/ckeditor/templates/active_record/dragonfly/migration.rb +7 -5
- data/lib/generators/ckeditor/templates/active_record/paperclip/ckeditor/asset.rb +2 -0
- data/lib/generators/ckeditor/templates/active_record/paperclip/ckeditor/attachment_file.rb +2 -0
- data/lib/generators/ckeditor/templates/active_record/paperclip/ckeditor/picture.rb +2 -0
- data/lib/generators/ckeditor/templates/active_record/paperclip/migration.rb +8 -6
- data/lib/generators/ckeditor/templates/base/carrierwave/uploaders/ckeditor_attachment_file_uploader.rb +2 -1
- data/lib/generators/ckeditor/templates/base/carrierwave/uploaders/ckeditor_picture_uploader.rb +2 -3
- data/lib/generators/ckeditor/templates/base/dragonfly/initializer.rb +2 -0
- data/lib/generators/ckeditor/templates/base/shrine/initializer.rb +25 -0
- data/lib/generators/ckeditor/templates/ckeditor.rb +3 -6
- data/lib/generators/ckeditor/templates/mongoid/carrierwave/ckeditor/asset.rb +2 -0
- data/lib/generators/ckeditor/templates/mongoid/carrierwave/ckeditor/attachment_file.rb +2 -0
- data/lib/generators/ckeditor/templates/mongoid/carrierwave/ckeditor/picture.rb +2 -0
- data/lib/generators/ckeditor/templates/mongoid/paperclip/ckeditor/asset.rb +2 -0
- data/lib/generators/ckeditor/templates/mongoid/paperclip/ckeditor/attachment_file.rb +2 -0
- data/lib/generators/ckeditor/templates/mongoid/paperclip/ckeditor/picture.rb +2 -0
- data/lib/generators/ckeditor/templates/mongoid/shrine/ckeditor/asset.rb +8 -0
- data/lib/generators/ckeditor/templates/mongoid/shrine/ckeditor/attachment_file.rb +21 -0
- data/lib/generators/ckeditor/templates/mongoid/shrine/ckeditor/picture.rb +51 -0
- data/lib/generators/ckeditor/templates/pundit_policy/attachment_file_policy.rb +2 -0
- data/lib/generators/ckeditor/templates/pundit_policy/picture_policy.rb +2 -0
- data/lib/tasks/ckeditor.rake +2 -0
- data/test/controllers/attachment_files_controller_test.rb +17 -15
- data/test/controllers/pictures_controller_test.rb +17 -15
- data/test/dummy/Rakefile +2 -0
- data/test/dummy/app/assets/javascripts/application.js +0 -2
- data/test/dummy/app/controllers/application_controller.rb +2 -0
- data/test/dummy/app/controllers/posts_controller.rb +2 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/posts_helper.rb +2 -0
- data/test/dummy/app/models/post.rb +2 -0
- data/test/dummy/app/views/posts/index.html.erb +0 -3
- data/test/dummy/app/views/posts/show.html.erb +3 -0
- data/test/dummy/config.ru +2 -0
- data/test/dummy/config/application.rb +5 -1
- data/test/dummy/config/boot.rb +2 -0
- data/test/dummy/config/environment.rb +2 -0
- data/test/dummy/config/environments/development.rb +2 -0
- data/test/dummy/config/environments/production.rb +2 -0
- data/test/dummy/config/environments/test.rb +5 -3
- data/test/dummy/config/initializers/assets.rb +2 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +2 -0
- data/test/dummy/config/initializers/ckeditor.rb +2 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +2 -0
- data/test/dummy/config/initializers/inflections.rb +2 -0
- data/test/dummy/config/initializers/mime_types.rb +2 -0
- data/test/dummy/config/initializers/paperclip.rb +2 -0
- data/test/dummy/config/initializers/session_store.rb +2 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +2 -0
- data/test/dummy/config/routes.rb +2 -0
- data/test/dummy/config/storage.yml +3 -0
- data/test/dummy/db/migrate/20110623120047_create_posts.rb +5 -3
- data/test/dummy/db/migrate/20170806125915_create_active_storage_tables.rb +26 -0
- data/test/dummy/script/rails +2 -0
- data/test/functional/posts_controller_test.rb +18 -16
- data/test/generators/install_generator_test.rb +58 -56
- data/test/integration/navigation_test.rb +2 -0
- data/test/models/attachment_file_test.rb +4 -4
- data/test/models/ckeditor_test.rb +3 -21
- data/test/models/picture_test.rb +12 -10
- data/test/models/utils_test.rb +2 -0
- data/test/orm/active_record.rb +11 -1
- data/test/orm/mongoid.rb +2 -0
- data/test/support/helpers.rb +2 -0
- data/test/support/integration_case.rb +2 -0
- data/test/test_helper.rb +15 -9
- data/vendor/assets/javascripts/ckeditor/plugins/image2/dialogs/image2.js +15 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/dev/placeholder.html +60 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/dialogs/placeholder.js +49 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/icons/hidpi/placeholder.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/icons/placeholder.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/af.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/ar.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/az.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/bg.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/ca.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/cs.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/cy.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/da.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/de-ch.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/de.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/el.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/en-au.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/en-gb.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/en.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/eo.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/es-mx.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/es.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/et.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/eu.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/fa.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/fi.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/fr-ca.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/fr.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/gl.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/he.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/hr.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/hu.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/id.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/it.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/ja.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/km.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/ko.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/ku.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/lv.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/nb.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/nl.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/no.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/oc.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/pl.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/pt-br.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/pt.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/ro.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/ru.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/si.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/sk.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/sl.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/sq.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/sv.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/th.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/tr.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/tt.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/ug.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/uk.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/vi.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/zh-cn.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/lang/zh.js +12 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/plugin.js +99 -0
- data/vendor/assets/javascripts/ckeditor/plugins/placeholder/samples/placeholder.html +75 -0
- data/vendor/assets/javascripts/ckeditor/samples/old/image2/assets/image1.jpg +0 -0
- data/vendor/assets/javascripts/ckeditor/samples/old/image2/assets/image2.jpg +0 -0
- data/vendor/assets/javascripts/ckeditor/samples/old/image2/image2.html +68 -0
- metadata +84 -456
- data/app/assets/javascripts/ckeditor/init.js.erb +0 -8
- data/lib/ckeditor/backend/refile.rb +0 -39
- data/lib/ckeditor/utils/content_type_detector.rb +0 -37
- data/lib/generators/ckeditor/templates/active_record/dragonfly/migration_versioned.rb +0 -23
- data/lib/generators/ckeditor/templates/active_record/paperclip/migration_versioned.rb +0 -23
- data/lib/generators/ckeditor/templates/active_record/refile/ckeditor/asset.rb +0 -4
- data/lib/generators/ckeditor/templates/active_record/refile/ckeditor/picture.rb +0 -11
- data/lib/generators/ckeditor/templates/active_record/refile/migration.rb +0 -23
- data/lib/generators/ckeditor/templates/active_record/refile/migration_versioned.rb +0 -23
- data/test/support/raw_post.rb +0 -9
- data/vendor/assets/javascripts/ckeditor/CHANGES.md +0 -1637
- data/vendor/assets/javascripts/ckeditor/LICENSE.md +0 -1420
- data/vendor/assets/javascripts/ckeditor/README.md +0 -39
- data/vendor/assets/javascripts/ckeditor/adapters/jquery.js +0 -10
- data/vendor/assets/javascripts/ckeditor/build-config.js +0 -192
- data/vendor/assets/javascripts/ckeditor/ckeditor.js +0 -1362
- data/vendor/assets/javascripts/ckeditor/config.js +0 -10
- data/vendor/assets/javascripts/ckeditor/contents.css +0 -208
- data/vendor/assets/javascripts/ckeditor/lang/af.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/ar.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/az.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/bg.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/bn.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/bs.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/ca.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/cs.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/cy.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/da.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/de-ch.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/de.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/el.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/en-au.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/en-ca.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/en-gb.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/en.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/eo.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/es-mx.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/es.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/et.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/eu.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/fa.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/fi.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/fo.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/fr-ca.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/fr.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/gl.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/gu.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/he.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/hi.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/hr.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/hu.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/id.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/is.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/it.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/ja.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/ka.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/km.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/ko.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/ku.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/lt.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/lv.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/mk.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/mn.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/ms.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/nb.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/nl.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/no.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/oc.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/pl.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/pt-br.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/pt.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/ro.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/ru.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/si.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/sk.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/sl.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/sq.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/sr-latn.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/sr.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/sv.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/th.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/tr.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/tt.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/ug.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/uk.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/vi.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/zh-cn.js +0 -5
- data/vendor/assets/javascripts/ckeditor/lang/zh.js +0 -5
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +0 -10
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt +0 -25
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/af.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/az.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/da.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/de-ch.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/de.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/el.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/en-au.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/en-gb.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/en.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/es-mx.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/es.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/et.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/eu.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fo.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/he.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/id.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/it.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js +0 -9
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/km.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js +0 -10
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/no.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/oc.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/si.js +0 -10
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/th.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/tt.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js +0 -9
- data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js +0 -9
- data/vendor/assets/javascripts/ckeditor/plugins/about/dialogs/about.js +0 -8
- data/vendor/assets/javascripts/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/balloonpanel/skins/kama/balloonpanel.css +0 -220
- data/vendor/assets/javascripts/ckeditor/plugins/balloonpanel/skins/moono-lisa/balloonpanel.css +0 -223
- data/vendor/assets/javascripts/ckeditor/plugins/balloonpanel/skins/moono-lisa/images/close.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/balloonpanel/skins/moono-lisa/images/hidpi/close.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/balloonpanel/skins/moono/balloonpanel.css +0 -237
- data/vendor/assets/javascripts/ckeditor/plugins/balloonpanel/skins/moono/images/close.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/balloonpanel/skins/moono/images/hidpi/close.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/balloontoolbar/skins/default.css +0 -95
- data/vendor/assets/javascripts/ckeditor/plugins/balloontoolbar/skins/kama/balloontoolbar.css +0 -30
- data/vendor/assets/javascripts/ckeditor/plugins/balloontoolbar/skins/moono-lisa/balloontoolbar.css +0 -44
- data/vendor/assets/javascripts/ckeditor/plugins/balloontoolbar/skins/moono/balloontoolbar.css +0 -34
- data/vendor/assets/javascripts/ckeditor/plugins/clipboard/dialogs/paste.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/colordialog/dialogs/colordialog.css +0 -20
- data/vendor/assets/javascripts/ckeditor/plugins/colordialog/dialogs/colordialog.js +0 -14
- data/vendor/assets/javascripts/ckeditor/plugins/copyformatting/cursors/cursor-disabled.svg +0 -25
- data/vendor/assets/javascripts/ckeditor/plugins/copyformatting/cursors/cursor.svg +0 -14
- data/vendor/assets/javascripts/ckeditor/plugins/copyformatting/styles/copyformatting.css +0 -45
- data/vendor/assets/javascripts/ckeditor/plugins/dialog/dialogDefinition.js +0 -4
- data/vendor/assets/javascripts/ckeditor/plugins/div/dialogs/div.js +0 -9
- data/vendor/assets/javascripts/ckeditor/plugins/find/dialogs/find.js +0 -25
- data/vendor/assets/javascripts/ckeditor/plugins/flash/dialogs/flash.js +0 -24
- data/vendor/assets/javascripts/ckeditor/plugins/flash/images/placeholder.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/button.js +0 -8
- data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/checkbox.js +0 -9
- data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/form.js +0 -8
- data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/hiddenfield.js +0 -7
- data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/radio.js +0 -9
- data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/select.js +0 -21
- data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/textarea.js +0 -8
- data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/textfield.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/forms/images/hiddenfield.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/icons.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/icons_hidpi.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/iframe/dialogs/iframe.js +0 -10
- data/vendor/assets/javascripts/ckeditor/plugins/iframe/images/placeholder.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/image/dialogs/image.js +0 -44
- data/vendor/assets/javascripts/ckeditor/plugins/image/images/noimage.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/link/dialogs/anchor.js +0 -8
- data/vendor/assets/javascripts/ckeditor/plugins/link/dialogs/link.js +0 -30
- data/vendor/assets/javascripts/ckeditor/plugins/link/images/anchor.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/link/images/hidpi/anchor.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/liststyle/dialogs/liststyle.js +0 -10
- data/vendor/assets/javascripts/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/magicline/images/hidpi/icon.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/magicline/images/icon-rtl.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/magicline/images/icon.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/pastefromword/filter/default.js +0 -55
- data/vendor/assets/javascripts/ckeditor/plugins/preview/preview.html +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/scayt/CHANGELOG.md +0 -20
- data/vendor/assets/javascripts/ckeditor/plugins/scayt/LICENSE.md +0 -28
- data/vendor/assets/javascripts/ckeditor/plugins/scayt/README.md +0 -25
- data/vendor/assets/javascripts/ckeditor/plugins/scayt/dialogs/dialog.css +0 -23
- data/vendor/assets/javascripts/ckeditor/plugins/scayt/dialogs/options.js +0 -32
- data/vendor/assets/javascripts/ckeditor/plugins/scayt/dialogs/toolbar.css +0 -71
- data/vendor/assets/javascripts/ckeditor/plugins/scayt/skins/moono-lisa/scayt.css +0 -25
- data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_address.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_div.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_p.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/dialogs/smiley.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/angel_smile.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/angry_smile.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/broken_heart.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/confused_smile.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/cry_smile.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/devil_smile.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/embarrassed_smile.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/embarrassed_smile.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/envelope.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/envelope.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/heart.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/heart.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/kiss.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/kiss.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/lightbulb.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/omg_smile.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/regular_smile.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/sad_smile.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/shades_smile.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/teeth_smile.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/thumbs_down.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/thumbs_up.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/tongue_smile.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/tongue_smile.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/wink_smile.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt +0 -20
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/af.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ar.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/az.js +0 -10
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/bg.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ca.js +0 -14
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/cs.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/cy.js +0 -14
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/da.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/de-ch.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/de.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/el.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/en-au.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/en-ca.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/en-gb.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/en.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/eo.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/es-mx.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/es.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/et.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/eu.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/fa.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/fi.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js +0 -10
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/fr.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/gl.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/he.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/hr.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/hu.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/id.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/it.js +0 -14
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ja.js +0 -9
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/km.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ko.js +0 -10
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ku.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/lt.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/lv.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/nb.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/nl.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/no.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/oc.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/pl.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/pt.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ro.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ru.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/si.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/sk.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/sl.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/sq.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/sv.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/th.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/tr.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/tt.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ug.js +0 -13
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/uk.js +0 -12
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/vi.js +0 -14
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js +0 -9
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/zh.js +0 -9
- data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/specialchar.js +0 -14
- data/vendor/assets/javascripts/ckeditor/plugins/table/dialogs/table.js +0 -21
- data/vendor/assets/javascripts/ckeditor/plugins/tableselection/styles/tableselection.css +0 -36
- data/vendor/assets/javascripts/ckeditor/plugins/tabletools/dialogs/tableCell.js +0 -18
- data/vendor/assets/javascripts/ckeditor/plugins/templates/dialogs/templates.css +0 -84
- data/vendor/assets/javascripts/ckeditor/plugins/templates/dialogs/templates.js +0 -10
- data/vendor/assets/javascripts/ckeditor/plugins/templates/templates/default.js +0 -7
- data/vendor/assets/javascripts/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/widget/images/handle.png +0 -0
- data/vendor/assets/javascripts/ckeditor/plugins/wsc/LICENSE.md +0 -28
- data/vendor/assets/javascripts/ckeditor/plugins/wsc/README.md +0 -25
- data/vendor/assets/javascripts/ckeditor/plugins/wsc/dialogs/ciframe.html +0 -66
- data/vendor/assets/javascripts/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +0 -52
- data/vendor/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc.css +0 -82
- data/vendor/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc.js +0 -91
- data/vendor/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc_ie.js +0 -11
- data/vendor/assets/javascripts/ckeditor/plugins/wsc/skins/moono-lisa/wsc.css +0 -43
- data/vendor/assets/javascripts/ckeditor/samples/css/samples.css +0 -1637
- data/vendor/assets/javascripts/ckeditor/samples/img/github-top.png +0 -0
- data/vendor/assets/javascripts/ckeditor/samples/img/header-bg.png +0 -0
- data/vendor/assets/javascripts/ckeditor/samples/img/header-separator.png +0 -0
- data/vendor/assets/javascripts/ckeditor/samples/img/logo.png +0 -0
- data/vendor/assets/javascripts/ckeditor/samples/img/logo.svg +0 -13
- data/vendor/assets/javascripts/ckeditor/samples/img/navigation-tip.png +0 -0
- data/vendor/assets/javascripts/ckeditor/samples/index.html +0 -128
- data/vendor/assets/javascripts/ckeditor/samples/js/sample.js +0 -53
- data/vendor/assets/javascripts/ckeditor/samples/js/sf.js +0 -17
- data/vendor/assets/javascripts/ckeditor/samples/old/ajax.html +0 -85
- data/vendor/assets/javascripts/ckeditor/samples/old/api.html +0 -210
- data/vendor/assets/javascripts/ckeditor/samples/old/appendto.html +0 -59
- data/vendor/assets/javascripts/ckeditor/samples/old/assets/inlineall/logo.png +0 -0
- data/vendor/assets/javascripts/ckeditor/samples/old/assets/outputxhtml/outputxhtml.css +0 -204
- data/vendor/assets/javascripts/ckeditor/samples/old/assets/posteddata.php +0 -59
- data/vendor/assets/javascripts/ckeditor/samples/old/assets/sample.jpg +0 -0
- data/vendor/assets/javascripts/ckeditor/samples/old/assets/uilanguages/languages.js +0 -7
- data/vendor/assets/javascripts/ckeditor/samples/old/datafiltering.html +0 -508
- data/vendor/assets/javascripts/ckeditor/samples/old/dialog/assets/my_dialog.js +0 -48
- data/vendor/assets/javascripts/ckeditor/samples/old/dialog/dialog.html +0 -190
- data/vendor/assets/javascripts/ckeditor/samples/old/divreplace.html +0 -144
- data/vendor/assets/javascripts/ckeditor/samples/old/enterkey/enterkey.html +0 -106
- data/vendor/assets/javascripts/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla +0 -0
- data/vendor/assets/javascripts/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf +0 -0
- data/vendor/assets/javascripts/ckeditor/samples/old/htmlwriter/assets/outputforflash/swfobject.js +0 -19
- data/vendor/assets/javascripts/ckeditor/samples/old/htmlwriter/outputforflash.html +0 -283
- data/vendor/assets/javascripts/ckeditor/samples/old/htmlwriter/outputhtml.html +0 -224
- data/vendor/assets/javascripts/ckeditor/samples/old/index.html +0 -131
- data/vendor/assets/javascripts/ckeditor/samples/old/inlineall.html +0 -314
- data/vendor/assets/javascripts/ckeditor/samples/old/inlinebycode.html +0 -124
- data/vendor/assets/javascripts/ckeditor/samples/old/inlinetextarea.html +0 -113
- data/vendor/assets/javascripts/ckeditor/samples/old/jquery.html +0 -103
- data/vendor/assets/javascripts/ckeditor/samples/old/magicline/magicline.html +0 -209
- data/vendor/assets/javascripts/ckeditor/samples/old/readonly.html +0 -76
- data/vendor/assets/javascripts/ckeditor/samples/old/replacebyclass.html +0 -60
- data/vendor/assets/javascripts/ckeditor/samples/old/replacebycode.html +0 -59
- data/vendor/assets/javascripts/ckeditor/samples/old/sample.css +0 -357
- data/vendor/assets/javascripts/ckeditor/samples/old/sample.js +0 -50
- data/vendor/assets/javascripts/ckeditor/samples/old/sample_posteddata.php +0 -16
- data/vendor/assets/javascripts/ckeditor/samples/old/tabindex.html +0 -78
- data/vendor/assets/javascripts/ckeditor/samples/old/toolbar/toolbar.html +0 -235
- data/vendor/assets/javascripts/ckeditor/samples/old/uicolor.html +0 -72
- data/vendor/assets/javascripts/ckeditor/samples/old/uilanguages.html +0 -122
- data/vendor/assets/javascripts/ckeditor/samples/old/wysiwygarea/fullpage.html +0 -80
- data/vendor/assets/javascripts/ckeditor/samples/old/xhtmlstyle.html +0 -234
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/css/fontello.css +0 -55
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt +0 -10
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/font/config.json +0 -28
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/font/fontello.eot +0 -0
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/font/fontello.svg +0 -14
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/font/fontello.ttf +0 -0
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/font/fontello.woff +0 -0
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/index.html +0 -446
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/js/abstracttoolbarmodifier.js +0 -13
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/js/fulltoolbareditor.js +0 -9
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/js/toolbarmodifier.js +0 -33
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/js/toolbartextmodifier.js +0 -14
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/LICENSE +0 -19
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/codemirror.css +0 -325
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/codemirror.js +0 -288
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/javascript.js +0 -25
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/neo.css +0 -36
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.css +0 -38
- data/vendor/assets/javascripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.js +0 -16
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/dialog.css +0 -5
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/dialog_ie.css +0 -5
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/dialog_ie8.css +0 -5
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/dialog_iequirks.css +0 -5
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/editor.css +0 -5
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/editor_gecko.css +0 -5
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/editor_ie.css +0 -5
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/editor_ie8.css +0 -5
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/editor_iequirks.css +0 -5
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/icons.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/icons_hidpi.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/arrow.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/close.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/hidpi/close.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/hidpi/lock.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/hidpi/refresh.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/lock-open.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/lock.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/refresh.png +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/spinner.gif +0 -0
- data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/readme.md +0 -46
- data/vendor/assets/javascripts/ckeditor/styles.js +0 -137
@@ -1,50 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
|
3
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
|
-
*/
|
5
|
-
|
6
|
-
// Tool scripts for the sample pages.
|
7
|
-
// This file can be ignored and is not required to make use of CKEditor.
|
8
|
-
|
9
|
-
( function() {
|
10
|
-
CKEDITOR.on( 'instanceReady', function( ev ) {
|
11
|
-
// Check for sample compliance.
|
12
|
-
var editor = ev.editor,
|
13
|
-
meta = CKEDITOR.document.$.getElementsByName( 'ckeditor-sample-required-plugins' ),
|
14
|
-
requires = meta.length ? CKEDITOR.dom.element.get( meta[ 0 ] ).getAttribute( 'content' ).split( ',' ) : [],
|
15
|
-
missing = [],
|
16
|
-
i;
|
17
|
-
|
18
|
-
if ( requires.length ) {
|
19
|
-
for ( i = 0; i < requires.length; i++ ) {
|
20
|
-
if ( !editor.plugins[ requires[ i ] ] )
|
21
|
-
missing.push( '<code>' + requires[ i ] + '</code>' );
|
22
|
-
}
|
23
|
-
|
24
|
-
if ( missing.length ) {
|
25
|
-
var warn = CKEDITOR.dom.element.createFromHtml(
|
26
|
-
'<div class="warning">' +
|
27
|
-
'<span>To fully experience this demo, the ' + missing.join( ', ' ) + ' plugin' + ( missing.length > 1 ? 's are' : ' is' ) + ' required.</span>' +
|
28
|
-
'</div>'
|
29
|
-
);
|
30
|
-
warn.insertBefore( editor.container );
|
31
|
-
}
|
32
|
-
}
|
33
|
-
|
34
|
-
// Set icons.
|
35
|
-
var doc = new CKEDITOR.dom.document( document ),
|
36
|
-
icons = doc.find( '.button_icon' );
|
37
|
-
|
38
|
-
for ( i = 0; i < icons.count(); i++ ) {
|
39
|
-
var icon = icons.getItem( i ),
|
40
|
-
name = icon.getAttribute( 'data-icon' ),
|
41
|
-
style = CKEDITOR.skin.getIconStyle( name, ( CKEDITOR.lang.dir == 'rtl' ) );
|
42
|
-
|
43
|
-
icon.addClass( 'cke_button_icon' );
|
44
|
-
icon.addClass( 'cke_button__' + name + '_icon' );
|
45
|
-
icon.setAttribute( 'style', style );
|
46
|
-
icon.setStyle( 'float', 'none' );
|
47
|
-
|
48
|
-
}
|
49
|
-
} );
|
50
|
-
} )();
|
@@ -1,16 +0,0 @@
|
|
1
|
-
<?php /* <body><pre>
|
2
|
-
|
3
|
-
-------------------------------------------------------------------------------------------
|
4
|
-
CKEditor - Posted Data
|
5
|
-
|
6
|
-
We are sorry, but your Web server does not support the PHP language used in this script.
|
7
|
-
|
8
|
-
Please note that CKEditor can be used with any other server-side language than just PHP.
|
9
|
-
To save the content created with CKEditor you need to read the POST data on the server
|
10
|
-
side and write it to a file or the database.
|
11
|
-
|
12
|
-
Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
|
13
|
-
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
14
|
-
-------------------------------------------------------------------------------------------
|
15
|
-
|
16
|
-
</pre><div style="display:none"></body> */ include "assets/posteddata.php"; ?>
|
@@ -1,78 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<!--
|
3
|
-
Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
|
4
|
-
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
5
|
-
-->
|
6
|
-
<html>
|
7
|
-
<head>
|
8
|
-
<meta charset="utf-8">
|
9
|
-
<title>TAB Key-Based Navigation — CKEditor Sample</title>
|
10
|
-
<script src="../../ckeditor.js"></script>
|
11
|
-
<link href="sample.css" rel="stylesheet">
|
12
|
-
<style>
|
13
|
-
|
14
|
-
.cke_focused,
|
15
|
-
.cke_editable.cke_focused
|
16
|
-
{
|
17
|
-
outline: 3px dotted blue !important;
|
18
|
-
*border: 3px dotted blue !important; /* For IE7 */
|
19
|
-
}
|
20
|
-
|
21
|
-
</style>
|
22
|
-
<script>
|
23
|
-
|
24
|
-
CKEDITOR.on( 'instanceReady', function( evt ) {
|
25
|
-
var editor = evt.editor;
|
26
|
-
editor.setData( 'This editor has it\'s tabIndex set to <strong>' + editor.tabIndex + '</strong>' );
|
27
|
-
|
28
|
-
// Apply focus class name.
|
29
|
-
editor.on( 'focus', function() {
|
30
|
-
editor.container.addClass( 'cke_focused' );
|
31
|
-
});
|
32
|
-
editor.on( 'blur', function() {
|
33
|
-
editor.container.removeClass( 'cke_focused' );
|
34
|
-
});
|
35
|
-
|
36
|
-
// Put startup focus on the first editor in tab order.
|
37
|
-
if ( editor.tabIndex == 1 )
|
38
|
-
editor.focus();
|
39
|
-
});
|
40
|
-
|
41
|
-
</script>
|
42
|
-
</head>
|
43
|
-
<body>
|
44
|
-
<h1 class="samples">
|
45
|
-
<a href="index.html">CKEditor Samples</a> » TAB Key-Based Navigation
|
46
|
-
</h1>
|
47
|
-
<div class="warning deprecated">
|
48
|
-
This sample is not maintained anymore. Check out its <a href="https://sdk.ckeditor.com/samples/tabindex.html">brand new version in CKEditor SDK</a>.
|
49
|
-
</div>
|
50
|
-
<div class="description">
|
51
|
-
<p>
|
52
|
-
This sample shows how tab key navigation among editor instances is
|
53
|
-
affected by the <code>tabIndex</code> attribute from
|
54
|
-
the original page element. Use TAB key to move between the editors.
|
55
|
-
</p>
|
56
|
-
</div>
|
57
|
-
<p>
|
58
|
-
<textarea class="ckeditor" cols="80" id="editor4" rows="10" tabindex="1"></textarea>
|
59
|
-
</p>
|
60
|
-
<div class="ckeditor" contenteditable="true" id="editor1" tabindex="4"></div>
|
61
|
-
<p>
|
62
|
-
<textarea class="ckeditor" cols="80" id="editor2" rows="10" tabindex="2"></textarea>
|
63
|
-
</p>
|
64
|
-
<p>
|
65
|
-
<textarea class="ckeditor" cols="80" id="editor3" rows="10" tabindex="3"></textarea>
|
66
|
-
</p>
|
67
|
-
<div id="footer">
|
68
|
-
<hr>
|
69
|
-
<p>
|
70
|
-
CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
|
71
|
-
</p>
|
72
|
-
<p id="copy">
|
73
|
-
Copyright © 2003-2018, <a class="samples" href="https://cksource.com/">CKSource</a> - Frederico
|
74
|
-
Knabben. All rights reserved.
|
75
|
-
</p>
|
76
|
-
</div>
|
77
|
-
</body>
|
78
|
-
</html>
|
@@ -1,235 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<!--
|
3
|
-
Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
|
4
|
-
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
5
|
-
-->
|
6
|
-
<html>
|
7
|
-
<head>
|
8
|
-
<meta charset="utf-8">
|
9
|
-
<title>Toolbar Configuration — CKEditor Sample</title>
|
10
|
-
<meta name="ckeditor-sample-name" content="Toolbar Configurations">
|
11
|
-
<meta name="ckeditor-sample-group" content="Advanced Samples">
|
12
|
-
<meta name="ckeditor-sample-description" content="Configuring CKEditor to display full or custom toolbar layout.">
|
13
|
-
<script src="../../../ckeditor.js"></script>
|
14
|
-
<link href="../../../samples/old/sample.css" rel="stylesheet">
|
15
|
-
</head>
|
16
|
-
<body>
|
17
|
-
<h1 class="samples">
|
18
|
-
<a href="../../../samples/old/index.html">CKEditor Samples</a> » Toolbar Configuration
|
19
|
-
</h1>
|
20
|
-
<div class="warning deprecated">
|
21
|
-
This sample is not maintained anymore. Check out the <a href="../../../samples/toolbarconfigurator/index.html#basic">brand new CKEditor Toolbar Configurator</a>.
|
22
|
-
</div>
|
23
|
-
<div class="description">
|
24
|
-
<p>
|
25
|
-
This sample page demonstrates editor with loaded <a href="#fullToolbar">full toolbar</a> (all registered buttons) and, if
|
26
|
-
current editor's configuration modifies default settings, also editor with <a href="#currentToolbar">modified toolbar</a>.
|
27
|
-
</p>
|
28
|
-
|
29
|
-
<p>Since CKEditor 4 there are two ways to configure toolbar buttons.</p>
|
30
|
-
|
31
|
-
<h2 class="samples">By <a href="https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-toolbar">config.toolbar</a></h2>
|
32
|
-
|
33
|
-
<p>
|
34
|
-
You can explicitly define which buttons are displayed in which groups and in which order.
|
35
|
-
This is the more precise setting, but less flexible. If newly added plugin adds its
|
36
|
-
own button you'll have to add it manually to your <code>config.toolbar</code> setting as well.
|
37
|
-
</p>
|
38
|
-
|
39
|
-
<p>To add a CKEditor instance with custom toolbar setting, insert the following JavaScript call to your code:</p>
|
40
|
-
|
41
|
-
<pre class="samples">
|
42
|
-
CKEDITOR.replace( <em>'textarea_id'</em>, {
|
43
|
-
<strong>toolbar:</strong> [
|
44
|
-
{ name: 'document', items: [ 'Source', '-', 'NewPage', 'Preview', '-', 'Templates' ] }, // Defines toolbar group with name (used to create voice label) and items in 3 subgroups.
|
45
|
-
[ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ], // Defines toolbar group without name.
|
46
|
-
'/', // Line break - next group will be placed in new line.
|
47
|
-
{ name: 'basicstyles', items: [ 'Bold', 'Italic' ] }
|
48
|
-
]
|
49
|
-
});</pre>
|
50
|
-
|
51
|
-
<h2 class="samples">By <a href="https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-toolbarGroups">config.toolbarGroups</a></h2>
|
52
|
-
|
53
|
-
<p>
|
54
|
-
You can define which groups of buttons (like e.g. <code>basicstyles</code>, <code>clipboard</code>
|
55
|
-
and <code>forms</code>) are displayed and in which order. Registered buttons are associated
|
56
|
-
with toolbar groups by <code>toolbar</code> property in their definition.
|
57
|
-
This setting's advantage is that you don't have to modify toolbar configuration
|
58
|
-
when adding/removing plugins which register their own buttons.
|
59
|
-
</p>
|
60
|
-
|
61
|
-
<p>To add a CKEditor instance with custom toolbar groups setting, insert the following JavaScript call to your code:</p>
|
62
|
-
|
63
|
-
<pre class="samples">
|
64
|
-
CKEDITOR.replace( <em>'textarea_id'</em>, {
|
65
|
-
<strong>toolbarGroups:</strong> [
|
66
|
-
{ name: 'document', groups: [ 'mode', 'document' ] }, // Displays document group with its two subgroups.
|
67
|
-
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ] }, // Group's name will be used to create voice label.
|
68
|
-
'/', // Line break - next group will be placed in new line.
|
69
|
-
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
|
70
|
-
{ name: 'links' }
|
71
|
-
]
|
72
|
-
|
73
|
-
// NOTE: Remember to leave 'toolbar' property with the default value (null).
|
74
|
-
});</pre>
|
75
|
-
</div>
|
76
|
-
|
77
|
-
<div id="currentToolbar" style="display: none">
|
78
|
-
<h2 class="samples">Current toolbar configuration</h2>
|
79
|
-
<p>Below you can see editor with current toolbar definition.</p>
|
80
|
-
<textarea cols="80" id="editorCurrent" name="editorCurrent" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="https://ckeditor.com/">CKEditor</a>.</p></textarea>
|
81
|
-
<pre id="editorCurrentCfg" class="samples"></pre>
|
82
|
-
</div>
|
83
|
-
|
84
|
-
<div id="fullToolbar">
|
85
|
-
<h2 class="samples">Full toolbar configuration</h2>
|
86
|
-
<p>Below you can see editor with full toolbar, generated automatically by the editor.</p>
|
87
|
-
<p>
|
88
|
-
<strong>Note</strong>: To create editor instance with full toolbar you don't have to set anything.
|
89
|
-
Just leave <code>toolbar</code> and <code>toolbarGroups</code> with the default, <code>null</code> values.
|
90
|
-
</p>
|
91
|
-
<textarea cols="80" id="editorFull" name="editorFull" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="https://ckeditor.com/">CKEditor</a>.</p></textarea>
|
92
|
-
<pre id="editorFullCfg" class="samples"></pre>
|
93
|
-
</div>
|
94
|
-
|
95
|
-
<script>
|
96
|
-
|
97
|
-
(function() {
|
98
|
-
'use strict';
|
99
|
-
|
100
|
-
var buttonsNames;
|
101
|
-
|
102
|
-
CKEDITOR.config.extraPlugins = 'toolbar';
|
103
|
-
|
104
|
-
CKEDITOR.on( 'instanceReady', function( evt ) {
|
105
|
-
var editor = evt.editor,
|
106
|
-
editorCurrent = editor.name == 'editorCurrent',
|
107
|
-
defaultToolbar = !( editor.config.toolbar || editor.config.toolbarGroups || editor.config.removeButtons ),
|
108
|
-
pre = CKEDITOR.document.getById( editor.name + 'Cfg' ),
|
109
|
-
output = '';
|
110
|
-
|
111
|
-
if ( editorCurrent ) {
|
112
|
-
// If default toolbar configuration has been modified, show "current toolbar" section.
|
113
|
-
if ( !defaultToolbar )
|
114
|
-
CKEDITOR.document.getById( 'currentToolbar' ).show();
|
115
|
-
else
|
116
|
-
return;
|
117
|
-
}
|
118
|
-
|
119
|
-
if ( !buttonsNames )
|
120
|
-
buttonsNames = createButtonsNamesHash( editor.ui.items );
|
121
|
-
|
122
|
-
// Toolbar isn't set explicitly, so it was created automatically from toolbarGroups.
|
123
|
-
if ( !editor.config.toolbar ) {
|
124
|
-
output +=
|
125
|
-
'// Toolbar configuration generated automatically by the editor based on config.toolbarGroups.\n' +
|
126
|
-
dumpToolbarConfiguration( editor ) +
|
127
|
-
'\n\n' +
|
128
|
-
'// Toolbar groups configuration.\n' +
|
129
|
-
dumpToolbarConfiguration( editor, true )
|
130
|
-
}
|
131
|
-
// Toolbar groups doesn't count in this case - print only toolbar.
|
132
|
-
else {
|
133
|
-
output += '// Toolbar configuration.\n' +
|
134
|
-
dumpToolbarConfiguration( editor );
|
135
|
-
}
|
136
|
-
|
137
|
-
// Recreate to avoid old IE from loosing whitespaces on filling <pre> content.
|
138
|
-
var preOutput = pre.getOuterHtml().replace( /(?=<\/)/, output );
|
139
|
-
CKEDITOR.dom.element.createFromHtml( preOutput ).replace( pre );
|
140
|
-
} );
|
141
|
-
|
142
|
-
CKEDITOR.replace( 'editorCurrent', { height: 100 } );
|
143
|
-
CKEDITOR.replace( 'editorFull', {
|
144
|
-
// Reset toolbar settings, so full toolbar will be generated automatically.
|
145
|
-
toolbar: null,
|
146
|
-
toolbarGroups: null,
|
147
|
-
removeButtons: null,
|
148
|
-
height: 100
|
149
|
-
} );
|
150
|
-
|
151
|
-
function dumpToolbarConfiguration( editor, printGroups ) {
|
152
|
-
var output = [],
|
153
|
-
toolbar = editor.toolbar;
|
154
|
-
|
155
|
-
for ( var i = 0; i < toolbar.length; ++i ) {
|
156
|
-
var group = dumpToolbarGroup( toolbar[ i ], printGroups );
|
157
|
-
if ( group )
|
158
|
-
output.push( group );
|
159
|
-
}
|
160
|
-
|
161
|
-
return 'config.toolbar' + ( printGroups ? 'Groups' : '' ) + ' = [\n\t' + output.join( ',\n\t' ) + '\n];';
|
162
|
-
}
|
163
|
-
|
164
|
-
function dumpToolbarGroup( group, printGroups ) {
|
165
|
-
var output = [];
|
166
|
-
|
167
|
-
if ( typeof group == 'string' )
|
168
|
-
return '\'' + group + '\'';
|
169
|
-
if ( CKEDITOR.tools.isArray( group ) )
|
170
|
-
return dumpToolbarItems( group );
|
171
|
-
// Skip group when printing entire toolbar configuration and there are no items in this group.
|
172
|
-
if ( !printGroups && !group.items )
|
173
|
-
return;
|
174
|
-
|
175
|
-
if ( group.name )
|
176
|
-
output.push( 'name: \'' + group.name + '\'' );
|
177
|
-
|
178
|
-
if ( group.groups )
|
179
|
-
output.push( 'groups: ' + dumpToolbarItems( group.groups ) );
|
180
|
-
|
181
|
-
if ( !printGroups )
|
182
|
-
output.push( 'items: ' + dumpToolbarItems( group.items ) );
|
183
|
-
|
184
|
-
return '{ ' + output.join( ', ' ) + ' }';
|
185
|
-
}
|
186
|
-
|
187
|
-
function dumpToolbarItems( items ) {
|
188
|
-
if ( typeof items == 'string' )
|
189
|
-
return '\'' + items + '\'';
|
190
|
-
|
191
|
-
var names = [],
|
192
|
-
i, item;
|
193
|
-
|
194
|
-
for ( var i = 0; i < items.length; ++i ) {
|
195
|
-
item = items[ i ];
|
196
|
-
if ( typeof item == 'string' )
|
197
|
-
names.push( item );
|
198
|
-
else {
|
199
|
-
if ( item.type == CKEDITOR.UI_SEPARATOR )
|
200
|
-
names.push( '-' );
|
201
|
-
else
|
202
|
-
names.push( buttonsNames[ item.name ] );
|
203
|
-
}
|
204
|
-
}
|
205
|
-
|
206
|
-
return '[ \'' + names.join( '\', \'' ) + '\' ]';
|
207
|
-
}
|
208
|
-
|
209
|
-
// Creates { 'lowercased': 'LowerCased' } buttons names hash.
|
210
|
-
function createButtonsNamesHash( items ) {
|
211
|
-
var hash = {},
|
212
|
-
name;
|
213
|
-
|
214
|
-
for ( name in items ) {
|
215
|
-
hash[ items[ name ].name ] = name;
|
216
|
-
}
|
217
|
-
|
218
|
-
return hash;
|
219
|
-
}
|
220
|
-
|
221
|
-
})();
|
222
|
-
</script>
|
223
|
-
|
224
|
-
<div id="footer">
|
225
|
-
<hr>
|
226
|
-
<p>
|
227
|
-
CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
|
228
|
-
</p>
|
229
|
-
<p id="copy">
|
230
|
-
Copyright © 2003-2018, <a class="samples" href="https://cksource.com/">CKSource</a> - Frederico
|
231
|
-
Knabben. All rights reserved.
|
232
|
-
</p>
|
233
|
-
</div>
|
234
|
-
</body>
|
235
|
-
</html>
|
@@ -1,72 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<!--
|
3
|
-
Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
|
4
|
-
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
5
|
-
-->
|
6
|
-
<html>
|
7
|
-
<head>
|
8
|
-
<meta charset="utf-8">
|
9
|
-
<title>UI Color Picker — CKEditor Sample</title>
|
10
|
-
<script src="../../ckeditor.js"></script>
|
11
|
-
<link rel="stylesheet" href="sample.css">
|
12
|
-
</head>
|
13
|
-
<body>
|
14
|
-
<h1 class="samples">
|
15
|
-
<a href="index.html">CKEditor Samples</a> » UI Color
|
16
|
-
</h1>
|
17
|
-
<div class="warning deprecated">
|
18
|
-
This sample is not maintained anymore. Check out its <a href="https://sdk.ckeditor.com/samples/uicolor.html">brand new version in CKEditor SDK</a>.
|
19
|
-
</div>
|
20
|
-
<div class="description">
|
21
|
-
<p>
|
22
|
-
This sample shows how to automatically replace <code><textarea></code> elements
|
23
|
-
with a CKEditor instance with an option to change the color of its user interface.<br>
|
24
|
-
<strong>Note:</strong>The UI skin color feature depends on the CKEditor skin
|
25
|
-
compatibility. The Moono and Kama skins are examples of skins that work with it.
|
26
|
-
</p>
|
27
|
-
</div>
|
28
|
-
<form action="sample_posteddata.php" method="post">
|
29
|
-
<p>
|
30
|
-
This editor instance has a UI color value defined in configuration to change the skin color,
|
31
|
-
To specify the color of the user interface, set the <code>uiColor</code> property:
|
32
|
-
</p>
|
33
|
-
<pre class="samples">
|
34
|
-
CKEDITOR.replace( '<em>textarea_id</em>', {
|
35
|
-
<strong>uiColor: '#14B8C4'</strong>
|
36
|
-
});</pre>
|
37
|
-
<p>
|
38
|
-
Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of
|
39
|
-
the <code><textarea></code> element to be replaced.
|
40
|
-
</p>
|
41
|
-
<p>
|
42
|
-
<textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="https://ckeditor.com/">CKEditor</a>.</p></textarea>
|
43
|
-
<script>
|
44
|
-
|
45
|
-
// Replace the <textarea id="editor"> with an CKEditor
|
46
|
-
// instance, using default configurations.
|
47
|
-
CKEDITOR.replace( 'editor1', {
|
48
|
-
uiColor: '#14B8C4',
|
49
|
-
toolbar: [
|
50
|
-
[ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
|
51
|
-
[ 'FontSize', 'TextColor', 'BGColor' ]
|
52
|
-
]
|
53
|
-
});
|
54
|
-
|
55
|
-
</script>
|
56
|
-
</p>
|
57
|
-
<p>
|
58
|
-
<input type="submit" value="Submit">
|
59
|
-
</p>
|
60
|
-
</form>
|
61
|
-
<div id="footer">
|
62
|
-
<hr>
|
63
|
-
<p>
|
64
|
-
CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
|
65
|
-
</p>
|
66
|
-
<p id="copy">
|
67
|
-
Copyright © 2003-2018, <a class="samples" href="https://cksource.com/">CKSource</a> - Frederico
|
68
|
-
Knabben. All rights reserved.
|
69
|
-
</p>
|
70
|
-
</div>
|
71
|
-
</body>
|
72
|
-
</html>
|