typus 3.1.0.rc6 → 3.1.0.rc7
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +10 -0
- data/.gitmodules +6 -0
- data/.yardopts +6 -0
- data/Gemfile +1 -1
- data/README.md +7 -7
- data/Rakefile +14 -1
- data/app/assets/javascripts/typus/jquery.application.js +13 -2
- data/app/assets/stylesheets/typus/screen.css +4 -0
- data/app/controllers/admin/account_controller.rb +2 -3
- data/app/controllers/admin/resources_controller.rb +42 -32
- data/app/controllers/admin/session_controller.rb +1 -1
- data/app/helpers/admin/base_helper.rb +28 -33
- data/app/helpers/admin/dashboard_helper.rb +5 -7
- data/app/helpers/admin/resources/data_types/belongs_to_helper.rb +82 -0
- data/app/helpers/admin/resources/data_types/boolean_helper.rb +28 -0
- data/app/helpers/admin/resources/data_types/date_helper.rb +12 -0
- data/app/helpers/admin/resources/data_types/datetime_helper.rb +17 -0
- data/app/helpers/admin/resources/data_types/dragonfly_helper.rb +37 -0
- data/app/helpers/admin/resources/data_types/float_helper.rb +3 -0
- data/app/helpers/admin/resources/data_types/has_and_belongs_to_many_helper.rb +24 -0
- data/app/helpers/admin/resources/data_types/has_many_helper.rb +43 -0
- data/app/helpers/admin/resources/data_types/has_one_helper.rb +23 -0
- data/app/helpers/admin/resources/data_types/paperclip_helper.rb +38 -0
- data/app/helpers/admin/resources/data_types/position_helper.rb +22 -0
- data/app/helpers/admin/resources/data_types/selector_helper.rb +11 -0
- data/app/helpers/admin/resources/data_types/string_helper.rb +29 -0
- data/app/helpers/admin/resources/data_types/text_helper.rb +7 -0
- data/app/helpers/admin/resources/data_types/transversal_helper.rb +8 -0
- data/app/helpers/admin/resources/data_types/tree_helper.rb +25 -0
- data/app/helpers/admin/resources/display_helper.rb +26 -0
- data/app/helpers/admin/resources/filters_helper.rb +36 -0
- data/app/helpers/admin/resources/form_helper.rb +69 -0
- data/app/helpers/admin/resources/list_helper.rb +27 -0
- data/app/helpers/admin/resources/relationships_helper.rb +55 -0
- data/app/helpers/admin/resources/table_helper.rb +61 -0
- data/app/helpers/admin/resources_helper.rb +33 -34
- data/app/views/admin/resources/_form.html.erb +4 -5
- data/app/views/admin/resources/edit.html.erb +7 -2
- data/app/views/admin/resources/index.html.erb +11 -2
- data/app/views/admin/resources/new.html.erb +2 -7
- data/app/views/admin/templates/_belongs_to_with_autocomplete.html.erb +2 -6
- data/app/views/admin/templates/_dragonfly.html.erb +5 -0
- data/app/views/admin/{helpers/_file_preview.html.erb → templates/_dragonfly_preview.html.erb} +0 -0
- data/app/views/admin/templates/_has_n.html.erb +0 -2
- data/app/views/admin/templates/_paperclip.html.erb +5 -0
- data/app/views/admin/templates/_paperclip_preview.html.erb +3 -0
- data/app/views/admin/templates/_selector.html.erb +2 -2
- data/app/views/admin/templates/{_rich_text.html.erb → _text_with_ckeditor.html.erb} +2 -2
- data/app/views/admin/templates/_text_with_ckeditor_and_assets.html.erb +24 -0
- data/app/views/admin/templates/_tree.html.erb +6 -4
- data/app/views/{admin/helpers → helpers/admin}/base/_apps.html.erb +0 -0
- data/app/views/{admin/helpers → helpers/admin}/base/_flash_message.html.erb +0 -0
- data/app/views/{admin/helpers → helpers/admin}/base/_header.html.erb +0 -0
- data/app/views/{admin/helpers → helpers/admin}/base/_login_info.html.erb +0 -0
- data/app/views/{admin/helpers → helpers/admin}/dashboard/_resources.html.erb +0 -0
- data/app/views/helpers/admin/resources/_actions.html.erb +24 -0
- data/app/views/{admin/helpers → helpers/admin}/resources/_errors.html.erb +0 -0
- data/app/views/{admin/helpers/filters → helpers/admin/resources}/_filters.html.erb +0 -0
- data/app/views/{admin/helpers/search → helpers/admin/resources}/_search.html.erb +0 -0
- data/app/views/{admin/helpers/sidebar → helpers/admin/resources}/_sidebar.html.erb +0 -0
- data/app/views/helpers/admin/resources/_table.html.erb +45 -0
- data/config/routes.rb +1 -1
- data/doc/yard/handlers/configurable_attr_handler.rb +38 -0
- data/doc/yard/setup.rb +9 -0
- data/doc/yard/templates/default/fulldoc/html/css/common.css +109 -0
- data/doc/yard/templates/default/layout/html/layout.erb +126 -0
- data/doc/yard/templates/default/module/html/configuration_summary.erb +31 -0
- data/doc/yard/templates/default/module/setup.rb +17 -0
- data/lib/generators/templates/config/initializers/typus_resources.rb +0 -3
- data/lib/generators/templates/config/typus/README +0 -1
- data/lib/generators/templates/{controller.rb → controller.erb} +0 -0
- data/lib/generators/templates/{migration.rb → migration.erb} +0 -0
- data/lib/generators/typus/controller_generator.rb +1 -1
- data/lib/generators/typus/migration_generator.rb +1 -1
- data/lib/typus/authentication/session.rb +16 -19
- data/lib/typus/controller/actions.rb +14 -5
- data/lib/typus/controller/{acts_as.rb → acts_as_list.rb} +7 -6
- data/lib/typus/controller/associations.rb +11 -13
- data/lib/typus/controller/autocomplete.rb +1 -1
- data/lib/typus/controller/bulk.rb +70 -0
- data/lib/typus/controller/filters.rb +11 -3
- data/lib/typus/controller/headless.rb +22 -1
- data/lib/typus/controller/trash.rb +10 -6
- data/lib/typus/orm/active_record/admin_user_v1.rb +9 -20
- data/lib/typus/orm/active_record/admin_user_v2.rb +9 -13
- data/lib/typus/orm/active_record/class_methods.rb +7 -2
- data/lib/typus/orm/active_record/user/class_methods.rb +29 -0
- data/lib/typus/resources.rb +0 -3
- data/lib/typus/version.rb +1 -1
- data/lib/typus.rb +2 -1
- data/test/app/controllers/admin/account_controller_test.rb +12 -1
- data/test/app/controllers/admin/base_controller_test.rb +2 -2
- data/test/app/controllers/admin/dashboard_controller_test.rb +0 -8
- data/test/app/controllers/admin/{status_controller_test.rb → resource/status_controller_test.rb} +2 -2
- data/test/app/controllers/admin/resources/acts_as_list_test.rb +48 -0
- data/test/app/controllers/admin/{assets_controller_test.rb → resources/assets_controller_test.rb.old} +1 -20
- data/test/app/controllers/admin/resources/associations_test.rb +59 -0
- data/test/app/controllers/admin/{birds_controller_test.rb → resources/birds_controller_test.rb.old} +0 -0
- data/test/app/controllers/admin/resources/bulk_test.rb +36 -0
- data/test/app/controllers/admin/{cases_controller_test.rb → resources/cases_controller_test.rb.old} +0 -0
- data/test/app/controllers/admin/{comments_controller_test.rb → resources/comments_controller_test.rb.old} +9 -6
- data/test/app/controllers/admin/resources/image_holders_controller_test.rb.old +55 -0
- data/test/app/controllers/admin/{invoices_controller_test.rb → resources/invoices_controller_test.rb.old} +8 -14
- data/test/app/controllers/admin/{orders_controller_test.rb → resources/orders_controller_test.rb.old} +0 -0
- data/test/app/controllers/admin/{pages_controller_test.rb → resources/pages_controller_test.rb.old} +0 -5
- data/test/app/controllers/admin/{posts_controller_test.rb → resources/posts_controller_test.rb.old} +7 -122
- data/test/app/controllers/admin/{projects_controller_test.rb → resources/projects_controller_test.rb.old} +0 -0
- data/test/app/controllers/admin/resources/trash_test.rb +41 -0
- data/test/app/controllers/admin/{typus_users_controller_test.rb → resources/typus_users_controller_test.rb} +9 -7
- data/test/app/controllers/admin/{users_controller_test.rb → resources/users_controller_test.rb.old} +0 -0
- data/test/app/controllers/admin/{views_controller_test.rb → resources/views_controller_test.rb.old} +0 -4
- data/test/app/controllers/admin/resources_controller_test.rb +102 -0
- data/test/app/controllers/admin/session_controller_test.rb +9 -7
- data/test/app/helpers/admin/base_helper_test.rb +4 -4
- data/test/app/helpers/admin/dashboard_helper_test.rb +1 -1
- data/test/app/helpers/admin/filters_helper_test.rb +10 -14
- data/test/app/helpers/admin/form_helper_test.rb +1 -1
- data/test/app/helpers/admin/relationships_helper_test.rb +0 -1
- data/test/app/helpers/admin/search_helper_test.rb +7 -7
- data/test/app/models/admin_user_test.rb +8 -5
- data/test/app/models/typus_user_test.rb +8 -5
- data/test/app/models/user_test.rb +8 -5
- data/test/factories.rb +10 -0
- data/test/fixtures/rails_app/app/controllers/admin/assets_controller.rb +0 -49
- data/test/fixtures/rails_app/app/controllers/admin/categories_controller.rb +3 -0
- data/test/fixtures/rails_app/app/controllers/admin/entries_controller.rb +0 -3
- data/test/fixtures/rails_app/app/controllers/admin/entry_bulks_controller.rb +5 -0
- data/test/fixtures/rails_app/app/controllers/admin/entry_trashes_controller.rb +5 -0
- data/test/fixtures/rails_app/app/models/entry.rb +1 -0
- data/test/fixtures/rails_app/app/models/entry_bulk.rb +2 -0
- data/test/fixtures/rails_app/app/models/entry_trash.rb +2 -0
- data/test/fixtures/rails_app/app/views/admin/article/entries/_index.html.erb +3 -0
- data/test/fixtures/rails_app/app/views/admin/assets/_edit.html.erb +26 -0
- data/test/fixtures/rails_app/app/views/admin/cases/_index.html.erb +1 -1
- data/test/fixtures/rails_app/app/views/admin/categories/_index.html.erb +1 -1
- data/test/fixtures/rails_app/app/views/admin/dashboard/_sidebar.html.erb +1 -1
- data/test/fixtures/rails_app/app/views/admin/entry_bulks/_index.html.erb +3 -0
- data/test/fixtures/rails_app/app/views/admin/entry_trashes/_index.html.erb +3 -0
- data/test/fixtures/rails_app/app/views/admin/templates/_datepicker.html.erb +6 -1
- data/test/fixtures/rails_app/config/deploy.rb +1 -1
- data/test/fixtures/rails_app/config/typus/README +0 -1
- data/test/fixtures/rails_app/config/typus/admin.yml +1 -1
- data/test/fixtures/rails_app/config/typus/crud_extended.yml +16 -4
- data/test/fixtures/rails_app/config/typus/crud_extended_roles.yml +2 -3
- data/test/fixtures/rails_app/config/typus/extensions.yml +29 -0
- data/test/fixtures/rails_app/config/typus/extensions_roles.yml +4 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/.htaccess +24 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/CHANGES.html +1295 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/INSTALL.html +92 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/LICENSE.html +1334 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/adobeair/application.xml +32 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/adobeair/run.bat +9 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/adobeair/run.sh +8 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/adobeair/sample.html +45 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/ajax.html +98 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/api.html +192 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/api_dialog/my_dialog.js +28 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/api_dialog.html +198 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/asp/advanced.asp +105 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/asp/events.asp +136 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/asp/index.html +103 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/asp/replace.asp +72 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/asp/replaceall.asp +77 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/asp/sample_posteddata.asp +46 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/asp/standalone.asp +72 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/assets/_posteddata.php +59 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/assets/output_for_flash.fla +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/assets/output_for_flash.swf +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/assets/output_xhtml.css +204 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/assets/parsesample.css +70 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/assets/swfobject.js +18 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/autogrow.html +103 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/bbcode.html +136 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/devtools.html +94 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/divreplace.html +154 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/enterkey.html +115 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/fullpage.html +82 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/index.html +116 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/jqueryadapter.html +99 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/output_for_flash.html +275 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/output_html.html +285 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/output_xhtml.html +181 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/php/advanced.php +120 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/php/events.php +153 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/php/index.html +47 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/php/replace.php +87 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/php/replaceall.php +88 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/php/standalone.php +83 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/placeholder.html +81 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/readonly.html +91 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/replacebyclass.html +64 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/replacebycode.html +97 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/sample.css +163 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/sample.js +65 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/sample_posteddata.php +21 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/sharedspaces.html +153 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/skins.html +110 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/stylesheetparser.html +93 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/tableresize.html +115 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/ui_color.html +129 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_samples/ui_languages.html +134 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/adapters/jquery.js +306 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/_bootstrap.js +87 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/ckeditor.js +141 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/ckeditor_base.js +227 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/ckeditor_basic.js +238 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/command.js +209 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/commanddefinition.js +129 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/config.js +431 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/dataprocessor.js +65 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/dom/comment.js +32 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/dom/document.js +251 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/dom/documentfragment.js +49 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/dom/domobject.js +258 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/dom/element.js +1663 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/dom/elementpath.js +119 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/dom/event.js +142 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/dom/node.js +690 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/dom/nodelist.js +26 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/dom/range.js +2032 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/dom/rangelist.js +213 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/dom/text.js +128 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/dom/walker.js +462 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/dom/window.js +96 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/dom.js +20 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/dtd.js +237 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/editor.js +1041 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/editor_basic.js +186 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/env.js +282 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/event.js +342 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/eventInfo.js +120 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/focusmanager.js +152 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/htmlparser/cdata.js +43 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/htmlparser/comment.js +60 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/htmlparser/element.js +249 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/htmlparser/filter.js +288 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/htmlparser/fragment.js +492 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/htmlparser/text.js +55 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/htmlparser.js +224 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/lang.js +157 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/loader.js +240 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/plugindefinition.js +83 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/plugins.js +103 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/resourcemanager.js +238 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/scriptloader.js +180 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/skins.js +184 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/themes.js +19 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/tools.js +734 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/core/ui.js +128 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/_languages.js +84 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/_translationstatus.txt +61 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/af.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/ar.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/bg.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/bn.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/bs.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/ca.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/cs.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/cy.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/da.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/de.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/el.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/en-au.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/en-ca.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/en-gb.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/en.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/eo.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/es.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/et.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/eu.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/fa.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/fi.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/fo.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/fr-ca.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/fr.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/gl.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/gu.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/he.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/hi.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/hr.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/hu.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/is.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/it.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/ja.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/ka.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/km.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/ko.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/lt.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/lv.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/mn.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/ms.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/nb.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/nl.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/no.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/pl.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/pt-br.js +809 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/pt.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/ro.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/ru.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/sk.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/sl.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/sr-latn.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/sr.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/sv.js +809 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/th.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/tr.js +809 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/uk.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/vi.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/zh-cn.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/lang/zh.js +810 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +222 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/a11yhelp/lang/he.js +216 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/a11yhelp/plugin.js +47 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/about/dialogs/about.js +76 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/about/plugin.js +24 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/adobeair/plugin.js +228 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/ajax/plugin.js +152 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/autogrow/plugin.js +88 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/basicstyles/plugin.js +101 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/bbcode/plugin.js +924 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/bidi/plugin.js +331 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/blockquote/plugin.js +305 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/button/plugin.js +285 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/clipboard/dialogs/paste.js +223 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/clipboard/plugin.js +446 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/colorbutton/plugin.js +295 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +340 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/colordialog/plugin.js +15 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/contextmenu/plugin.js +177 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/devtools/lang/en.js +16 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/devtools/plugin.js +173 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/dialog/dialogDefinition.js +1099 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/dialog/plugin.js +3235 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/dialogadvtab/plugin.js +205 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/dialogui/plugin.js +1537 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/div/dialogs/div.js +535 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/div/plugin.js +121 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/docprops/dialogs/docprops.js +686 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/docprops/plugin.js +22 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/domiterator/plugin.js +361 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/editingblock/plugin.js +269 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/elementspath/plugin.js +218 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/enterkey/plugin.js +399 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/entities/plugin.js +250 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/fakeobjects/plugin.js +126 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/filebrowser/plugin.js +524 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/find/dialogs/find.js +895 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/find/plugin.js +47 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/flash/dialogs/flash.js +698 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/flash/images/placeholder.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/flash/plugin.js +168 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/floatpanel/plugin.js +405 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/font/plugin.js +234 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/format/plugin.js +197 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/forms/dialogs/button.js +118 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/forms/dialogs/checkbox.js +153 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/forms/dialogs/form.js +177 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js +100 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/forms/dialogs/radio.js +135 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/forms/dialogs/select.js +562 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/forms/dialogs/textarea.js +114 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/forms/dialogs/textfield.js +199 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/forms/images/hiddenfield.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/forms/plugin.js +288 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/horizontalrule/plugin.js +36 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/htmldataprocessor/plugin.js +595 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/htmlwriter/plugin.js +319 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/iframe/dialogs/iframe.js +257 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/iframe/images/placeholder.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/iframe/plugin.js +106 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/iframedialog/plugin.js +188 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/image/dialogs/image.js +1403 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/image/plugin.js +81 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/indent/plugin.js +461 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/justify/plugin.js +253 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/keystrokes/plugin.js +225 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/link/dialogs/anchor.js +144 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/link/dialogs/link.js +1400 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/link/images/anchor.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/link/plugin.js +336 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/list/plugin.js +727 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/listblock/plugin.js +257 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +204 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/liststyle/plugin.js +66 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/maximize/plugin.js +352 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/menu/plugin.js +505 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/menubutton/plugin.js +98 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/newpage/plugin.js +54 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/pagebreak/plugin.js +164 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/panel/plugin.js +402 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/panelbutton/plugin.js +146 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/pastefromword/filter/default.js +1376 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/pastefromword/plugin.js +141 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +67 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/pastetext/plugin.js +98 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/placeholder/dialogs/placeholder.js +71 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/placeholder/lang/en.js +16 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/placeholder/lang/he.js +16 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/placeholder/placeholder.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/placeholder/plugin.js +171 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/popup/plugin.js +64 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/preview/plugin.js +109 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/print/plugin.js +42 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/removeformat/plugin.js +185 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/resize/plugin.js +168 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/richcombo/plugin.js +378 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/save/plugin.js +56 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/scayt/dialogs/options.js +537 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/scayt/dialogs/toolbar.css +71 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/scayt/plugin.js +964 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/selection/plugin.js +1563 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/showblocks/images/block_address.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/showblocks/images/block_blockquote.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/showblocks/images/block_div.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/showblocks/images/block_h1.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/showblocks/images/block_h2.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/showblocks/images/block_h3.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/showblocks/images/block_h4.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/showblocks/images/block_h5.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/showblocks/images/block_h6.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/showblocks/images/block_p.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/showblocks/images/block_pre.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/showblocks/plugin.js +160 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/showborders/plugin.js +207 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/dialogs/smiley.js +224 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/angel_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/angry_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/broken_heart.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/confused_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/cry_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/devil_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/envelope.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/heart.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/kiss.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/lightbulb.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/omg_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/regular_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/sad_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/shades_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/teeth_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/thumbs_down.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/thumbs_up.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/tounge_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/images/wink_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/smiley/plugin.js +94 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/sourcearea/plugin.js +209 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js +350 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/specialchar/lang/en.js +89 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/specialchar/plugin.js +70 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/styles/plugin.js +1678 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/styles/styles/default.js +88 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/stylescombo/plugin.js +219 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/stylesheetparser/plugin.js +143 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/tab/plugin.js +367 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/table/dialogs/table.js +672 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/table/plugin.js +78 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/tableresize/plugin.js +450 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +525 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/tabletools/plugin.js +1191 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/templates/dialogs/templates.js +234 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/templates/plugin.js +99 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/templates/templates/default.js +94 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/templates/templates/images/template1.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/templates/templates/images/template2.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/templates/templates/images/template3.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/toolbar/plugin.js +545 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js +205 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/uicolor/lang/en.js +15 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/uicolor/lang/he.js +15 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/uicolor/plugin.js +37 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/uicolor/uicolor.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/uicolor/yui/assets/yui.css +15 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/uicolor/yui/yui.js +71 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/undo/plugin.js +580 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/wsc/dialogs/ciframe.html +49 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html +52 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/wsc/dialogs/wsc.css +82 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/wsc/dialogs/wsc.js +192 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/wsc/plugin.js +33 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/wysiwygarea/plugin.js +1351 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/xml/plugin.js +170 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/dialog.css +920 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/editor.css +25 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/elementspath.css +73 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/icons.css +366 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/icons.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/icons_rtl.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/images/mini.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/images/noimage.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/images/sprites.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/mainui.css +203 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/menu.css +232 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/panel.css +217 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/presets.css +49 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/reset.css +84 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/richcombo.css +287 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/skin.js +236 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/templates.css +88 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/kama/toolbar.css +407 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/dialog.css +826 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/editor.css +25 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/elementspath.css +74 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/icons.css +363 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/icons.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/icons_rtl.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/images/dialog_sides.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/images/dialog_sides.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/images/mini.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/images/noimage.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/images/sprites.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/images/sprites_ie6.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/mainui.css +153 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/menu.css +229 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/panel.css +212 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/presets.css +49 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/reset.css +84 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/richcombo.css +309 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/skin.js +74 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/templates.css +87 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/office2003/toolbar.css +522 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/dialog.css +842 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/editor.css +25 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/elementspath.css +74 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/icons.css +363 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/icons.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/icons_rtl.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/images/dialog_sides.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/images/dialog_sides.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/images/mini.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/images/noimage.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/images/sprites.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/images/sprites_ie6.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/images/toolbar_start.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/mainui.css +162 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/menu.css +232 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/panel.css +212 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/presets.css +50 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/reset.css +84 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/richcombo.css +302 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/skin.js +70 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/templates.css +87 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/skins/v2/toolbar.css +465 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/_source/themes/default/theme.js +394 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/adapters/jquery.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/ckeditor.asp +955 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/ckeditor.js +145 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/ckeditor.pack +211 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/ckeditor.php +29 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/ckeditor_basic.js +8 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/ckeditor_basic_source.js +20 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/ckeditor_php4.php +566 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/ckeditor_php5.php +556 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/ckeditor_source.js +25 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/config.js +11 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/contents.css +23 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/images/spacer.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/_languages.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/_translationstatus.txt +61 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/af.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/ar.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/bg.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/bn.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/bs.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/ca.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/cs.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/cy.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/da.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/de.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/el.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/en-au.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/en-ca.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/en-gb.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/en.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/eo.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/es.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/et.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/eu.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/fa.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/fi.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/fo.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/fr-ca.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/fr.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/gl.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/gu.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/he.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/hi.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/hr.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/hu.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/is.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/it.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/ja.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/ka.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/km.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/ko.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/lt.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/lv.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/mn.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/ms.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/nb.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/nl.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/no.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/pl.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/pt-br.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/pt.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/ro.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/ru.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/sk.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/sl.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/sr-latn.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/sr.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/sv.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/th.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/tr.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/uk.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/vi.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/zh-cn.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/lang/zh.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +7 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/a11yhelp/lang/en.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/a11yhelp/lang/he.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/about/dialogs/about.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/adobeair/plugin.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/ajax/plugin.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/autogrow/plugin.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/bbcode/plugin.js +9 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/clipboard/dialogs/paste.js +7 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/colordialog/dialogs/colordialog.js +7 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/devtools/lang/en.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/devtools/plugin.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/div/dialogs/div.js +8 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/docprops/dialogs/docprops.js +10 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/docprops/plugin.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/find/dialogs/find.js +9 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/flash/dialogs/flash.js +9 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/flash/images/placeholder.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/forms/dialogs/button.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/forms/dialogs/checkbox.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/forms/dialogs/form.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/forms/dialogs/hiddenfield.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/forms/dialogs/radio.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/forms/dialogs/select.js +9 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/forms/dialogs/textarea.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/forms/dialogs/textfield.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/forms/images/hiddenfield.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/iframe/dialogs/iframe.js +7 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/iframe/images/placeholder.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/iframedialog/plugin.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/image/dialogs/image.js +13 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/link/dialogs/anchor.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/link/dialogs/link.js +11 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/link/images/anchor.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/liststyle/dialogs/liststyle.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/pastefromword/filter/default.js +11 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/pastetext/dialogs/pastetext.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/placeholder/dialogs/placeholder.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/placeholder/lang/en.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/placeholder/lang/he.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/placeholder/placeholder.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/placeholder/plugin.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/scayt/dialogs/options.js +8 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/scayt/dialogs/toolbar.css +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/showblocks/images/block_address.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/showblocks/images/block_div.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/showblocks/images/block_p.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/dialogs/smiley.js +7 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/envelope.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/heart.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/kiss.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/specialchar/dialogs/specialchar.js +7 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/specialchar/lang/en.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/styles/styles/default.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/stylesheetparser/plugin.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/table/dialogs/table.js +9 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/tableresize/plugin.js +7 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/tabletools/dialogs/tableCell.js +8 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/templates/dialogs/templates.js +7 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/templates/templates/default.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/uicolor/dialogs/uicolor.js +7 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/uicolor/lang/en.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/uicolor/lang/he.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/uicolor/plugin.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/uicolor/uicolor.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/uicolor/yui/assets/yui.css +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/uicolor/yui/yui.js +76 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/wsc/dialogs/wsc.css +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/wsc/dialogs/wsc.js +7 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/plugins/xml/plugin.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/kama/dialog.css +9 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/kama/editor.css +13 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/kama/icons.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/kama/icons_rtl.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/kama/images/dialog_sides.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/kama/images/dialog_sides.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/kama/images/mini.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/kama/images/noimage.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/kama/images/sprites.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/kama/images/sprites_ie6.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/kama/images/toolbar_start.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/kama/skin.js +7 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/kama/templates.css +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/office2003/dialog.css +9 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/office2003/editor.css +14 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/office2003/icons.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/office2003/icons_rtl.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/office2003/images/dialog_sides.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/office2003/images/dialog_sides.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/office2003/images/dialog_sides_rtl.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/office2003/images/mini.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/office2003/images/noimage.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/office2003/images/sprites.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/office2003/images/sprites_ie6.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/office2003/skin.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/office2003/templates.css +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/v2/dialog.css +9 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/v2/editor.css +13 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/v2/icons.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/v2/icons_rtl.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/v2/images/dialog_sides.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/v2/images/dialog_sides.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/v2/images/dialog_sides_rtl.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/v2/images/mini.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/v2/images/noimage.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/v2/images/sprites.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/v2/images/sprites_ie6.png +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/v2/images/toolbar_start.gif +0 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/v2/skin.js +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/skins/v2/templates.css +6 -0
- data/test/fixtures/rails_app/public/vendor/ckeditor/themes/default/theme.js +8 -0
- data/test/lib/typus/orm/active_record/class_methods_test.rb +92 -175
- data/test/lib/typus/resources_test.rb +0 -4
- data/test/test_helper.rb +5 -0
- data/typus.gemspec +1 -1
- metadata +1390 -75
- data/app/helpers/admin/display_helper.rb +0 -51
- data/app/helpers/admin/file_preview_helper.rb +0 -80
- data/app/helpers/admin/filters_helper.rb +0 -94
- data/app/helpers/admin/form_helper.rb +0 -78
- data/app/helpers/admin/list_helper.rb +0 -29
- data/app/helpers/admin/relationships_helper.rb +0 -192
- data/app/helpers/admin/search_helper.rb +0 -16
- data/app/helpers/admin/sidebar_helper.rb +0 -36
- data/app/helpers/admin/table_helper.rb +0 -159
- data/app/views/admin/helpers/resources/_display_link_to_previous.html.erb +0 -3
- data/app/views/admin/helpers/table/_table.html.erb +0 -26
- data/app/views/admin/templates/_file.html.erb +0 -5
- data/app/views/admin/templates/_relate_form.html.erb +0 -5
- data/app/views/admin/templates/_relate_form_with_autocomplete.html.erb +0 -26
- data/doc/mongo_db.md +0 -10
- data/test/app/controllers/admin/categories_controller_test.rb +0 -134
- data/test/app/controllers/admin/image_holders_controller_test.rb +0 -74
- data/test/app/helpers/admin/file_preview_helper_test.rb +0 -90
- data/test/app/helpers/admin/resources_helper_test.rb +0 -46
- data/test/fixtures/rails_app/config/typus/crud_namespaced.yml +0 -10
- data/test/fixtures/rails_app/config/typus/crud_namespaced_roles.yml +0 -2
- data/test/fixtures/rails_app/config/typus/sti.yml +0 -5
- data/test/fixtures/rails_app/config/typus/sti_roles.yml +0 -2
@@ -0,0 +1,1403 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
3
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
+
*/
|
5
|
+
|
6
|
+
(function()
|
7
|
+
{
|
8
|
+
var imageDialog = function( editor, dialogType )
|
9
|
+
{
|
10
|
+
// Load image preview.
|
11
|
+
var IMAGE = 1,
|
12
|
+
LINK = 2,
|
13
|
+
PREVIEW = 4,
|
14
|
+
CLEANUP = 8,
|
15
|
+
regexGetSize = /^\s*(\d+)((px)|\%)?\s*$/i,
|
16
|
+
regexGetSizeOrEmpty = /(^\s*(\d+)((px)|\%)?\s*$)|^$/i,
|
17
|
+
pxLengthRegex = /^\d+px$/;
|
18
|
+
|
19
|
+
var onSizeChange = function()
|
20
|
+
{
|
21
|
+
var value = this.getValue(), // This = input element.
|
22
|
+
dialog = this.getDialog(),
|
23
|
+
aMatch = value.match( regexGetSize ); // Check value
|
24
|
+
if ( aMatch )
|
25
|
+
{
|
26
|
+
if ( aMatch[2] == '%' ) // % is allowed - > unlock ratio.
|
27
|
+
switchLockRatio( dialog, false ); // Unlock.
|
28
|
+
value = aMatch[1];
|
29
|
+
}
|
30
|
+
|
31
|
+
// Only if ratio is locked
|
32
|
+
if ( dialog.lockRatio )
|
33
|
+
{
|
34
|
+
var oImageOriginal = dialog.originalElement;
|
35
|
+
if ( oImageOriginal.getCustomData( 'isReady' ) == 'true' )
|
36
|
+
{
|
37
|
+
if ( this.id == 'txtHeight' )
|
38
|
+
{
|
39
|
+
if ( value && value != '0' )
|
40
|
+
value = Math.round( oImageOriginal.$.width * ( value / oImageOriginal.$.height ) );
|
41
|
+
if ( !isNaN( value ) )
|
42
|
+
dialog.setValueOf( 'info', 'txtWidth', value );
|
43
|
+
}
|
44
|
+
else //this.id = txtWidth.
|
45
|
+
{
|
46
|
+
if ( value && value != '0' )
|
47
|
+
value = Math.round( oImageOriginal.$.height * ( value / oImageOriginal.$.width ) );
|
48
|
+
if ( !isNaN( value ) )
|
49
|
+
dialog.setValueOf( 'info', 'txtHeight', value );
|
50
|
+
}
|
51
|
+
}
|
52
|
+
}
|
53
|
+
updatePreview( dialog );
|
54
|
+
};
|
55
|
+
|
56
|
+
var updatePreview = function( dialog )
|
57
|
+
{
|
58
|
+
//Don't load before onShow.
|
59
|
+
if ( !dialog.originalElement || !dialog.preview )
|
60
|
+
return 1;
|
61
|
+
|
62
|
+
// Read attributes and update imagePreview;
|
63
|
+
dialog.commitContent( PREVIEW, dialog.preview );
|
64
|
+
return 0;
|
65
|
+
};
|
66
|
+
|
67
|
+
// Custom commit dialog logic, where we're intended to give inline style
|
68
|
+
// field (txtdlgGenStyle) higher priority to avoid overwriting styles contribute
|
69
|
+
// by other fields.
|
70
|
+
function commitContent()
|
71
|
+
{
|
72
|
+
var args = arguments;
|
73
|
+
var inlineStyleField = this.getContentElement( 'advanced', 'txtdlgGenStyle' );
|
74
|
+
inlineStyleField && inlineStyleField.commit.apply( inlineStyleField, args );
|
75
|
+
|
76
|
+
this.foreach( function( widget )
|
77
|
+
{
|
78
|
+
if ( widget.commit && widget.id != 'txtdlgGenStyle' )
|
79
|
+
widget.commit.apply( widget, args );
|
80
|
+
});
|
81
|
+
}
|
82
|
+
|
83
|
+
// Avoid recursions.
|
84
|
+
var incommit;
|
85
|
+
|
86
|
+
// Synchronous field values to other impacted fields is required, e.g. border
|
87
|
+
// size change should alter inline-style text as well.
|
88
|
+
function commitInternally( targetFields )
|
89
|
+
{
|
90
|
+
if ( incommit )
|
91
|
+
return;
|
92
|
+
|
93
|
+
incommit = 1;
|
94
|
+
|
95
|
+
var dialog = this.getDialog(),
|
96
|
+
element = dialog.imageElement;
|
97
|
+
if ( element )
|
98
|
+
{
|
99
|
+
// Commit this field and broadcast to target fields.
|
100
|
+
this.commit( IMAGE, element );
|
101
|
+
|
102
|
+
targetFields = [].concat( targetFields );
|
103
|
+
var length = targetFields.length,
|
104
|
+
field;
|
105
|
+
for ( var i = 0; i < length; i++ )
|
106
|
+
{
|
107
|
+
field = dialog.getContentElement.apply( dialog, targetFields[ i ].split( ':' ) );
|
108
|
+
// May cause recursion.
|
109
|
+
field && field.setup( IMAGE, element );
|
110
|
+
}
|
111
|
+
}
|
112
|
+
|
113
|
+
incommit = 0;
|
114
|
+
}
|
115
|
+
|
116
|
+
var switchLockRatio = function( dialog, value )
|
117
|
+
{
|
118
|
+
if ( !dialog.getContentElement( 'info', 'ratioLock' ) )
|
119
|
+
return null;
|
120
|
+
|
121
|
+
var oImageOriginal = dialog.originalElement;
|
122
|
+
|
123
|
+
// Dialog may already closed. (#5505)
|
124
|
+
if( !oImageOriginal )
|
125
|
+
return null;
|
126
|
+
|
127
|
+
// Check image ratio and original image ratio, but respecting user's preference.
|
128
|
+
if ( value == 'check' )
|
129
|
+
{
|
130
|
+
if ( !dialog.userlockRatio && oImageOriginal.getCustomData( 'isReady' ) == 'true' )
|
131
|
+
{
|
132
|
+
var width = dialog.getValueOf( 'info', 'txtWidth' ),
|
133
|
+
height = dialog.getValueOf( 'info', 'txtHeight' ),
|
134
|
+
originalRatio = oImageOriginal.$.width * 1000 / oImageOriginal.$.height,
|
135
|
+
thisRatio = width * 1000 / height;
|
136
|
+
dialog.lockRatio = false; // Default: unlock ratio
|
137
|
+
|
138
|
+
if ( !width && !height )
|
139
|
+
dialog.lockRatio = true;
|
140
|
+
else if ( !isNaN( originalRatio ) && !isNaN( thisRatio ) )
|
141
|
+
{
|
142
|
+
if ( Math.round( originalRatio ) == Math.round( thisRatio ) )
|
143
|
+
dialog.lockRatio = true;
|
144
|
+
}
|
145
|
+
}
|
146
|
+
}
|
147
|
+
else if ( value != undefined )
|
148
|
+
dialog.lockRatio = value;
|
149
|
+
else
|
150
|
+
{
|
151
|
+
dialog.userlockRatio = 1;
|
152
|
+
dialog.lockRatio = !dialog.lockRatio;
|
153
|
+
}
|
154
|
+
|
155
|
+
var ratioButton = CKEDITOR.document.getById( btnLockSizesId );
|
156
|
+
if ( dialog.lockRatio )
|
157
|
+
ratioButton.removeClass( 'cke_btn_unlocked' );
|
158
|
+
else
|
159
|
+
ratioButton.addClass( 'cke_btn_unlocked' );
|
160
|
+
|
161
|
+
var lang = dialog._.editor.lang.image,
|
162
|
+
label = lang[ dialog.lockRatio ? 'unlockRatio' : 'lockRatio' ];
|
163
|
+
|
164
|
+
ratioButton.setAttribute( 'title', label );
|
165
|
+
ratioButton.getFirst().setText( label );
|
166
|
+
|
167
|
+
return dialog.lockRatio;
|
168
|
+
};
|
169
|
+
|
170
|
+
var resetSize = function( dialog )
|
171
|
+
{
|
172
|
+
var oImageOriginal = dialog.originalElement;
|
173
|
+
if ( oImageOriginal.getCustomData( 'isReady' ) == 'true' )
|
174
|
+
{
|
175
|
+
var widthField = dialog.getContentElement( 'info', 'txtWidth' ),
|
176
|
+
heightField = dialog.getContentElement( 'info', 'txtHeight' );
|
177
|
+
widthField && widthField.setValue( oImageOriginal.$.width );
|
178
|
+
heightField && heightField.setValue( oImageOriginal.$.height );
|
179
|
+
}
|
180
|
+
updatePreview( dialog );
|
181
|
+
};
|
182
|
+
|
183
|
+
var setupDimension = function( type, element )
|
184
|
+
{
|
185
|
+
if ( type != IMAGE )
|
186
|
+
return;
|
187
|
+
|
188
|
+
function checkDimension( size, defaultValue )
|
189
|
+
{
|
190
|
+
var aMatch = size.match( regexGetSize );
|
191
|
+
if ( aMatch )
|
192
|
+
{
|
193
|
+
if ( aMatch[2] == '%' ) // % is allowed.
|
194
|
+
{
|
195
|
+
aMatch[1] += '%';
|
196
|
+
switchLockRatio( dialog, false ); // Unlock ratio
|
197
|
+
}
|
198
|
+
return aMatch[1];
|
199
|
+
}
|
200
|
+
return defaultValue;
|
201
|
+
}
|
202
|
+
|
203
|
+
var dialog = this.getDialog(),
|
204
|
+
value = '',
|
205
|
+
dimension = this.id == 'txtWidth' ? 'width' : 'height',
|
206
|
+
size = element.getAttribute( dimension );
|
207
|
+
|
208
|
+
if ( size )
|
209
|
+
value = checkDimension( size, value );
|
210
|
+
value = checkDimension( element.getStyle( dimension ), value );
|
211
|
+
|
212
|
+
this.setValue( value );
|
213
|
+
};
|
214
|
+
|
215
|
+
var previewPreloader;
|
216
|
+
|
217
|
+
var onImgLoadEvent = function()
|
218
|
+
{
|
219
|
+
// Image is ready.
|
220
|
+
var original = this.originalElement;
|
221
|
+
original.setCustomData( 'isReady', 'true' );
|
222
|
+
original.removeListener( 'load', onImgLoadEvent );
|
223
|
+
original.removeListener( 'error', onImgLoadErrorEvent );
|
224
|
+
original.removeListener( 'abort', onImgLoadErrorEvent );
|
225
|
+
|
226
|
+
// Hide loader
|
227
|
+
CKEDITOR.document.getById( imagePreviewLoaderId ).setStyle( 'display', 'none' );
|
228
|
+
|
229
|
+
// New image -> new domensions
|
230
|
+
if ( !this.dontResetSize )
|
231
|
+
resetSize( this );
|
232
|
+
|
233
|
+
if ( this.firstLoad )
|
234
|
+
CKEDITOR.tools.setTimeout( function(){ switchLockRatio( this, 'check' ); }, 0, this );
|
235
|
+
|
236
|
+
this.firstLoad = false;
|
237
|
+
this.dontResetSize = false;
|
238
|
+
};
|
239
|
+
|
240
|
+
var onImgLoadErrorEvent = function()
|
241
|
+
{
|
242
|
+
// Error. Image is not loaded.
|
243
|
+
var original = this.originalElement;
|
244
|
+
original.removeListener( 'load', onImgLoadEvent );
|
245
|
+
original.removeListener( 'error', onImgLoadErrorEvent );
|
246
|
+
original.removeListener( 'abort', onImgLoadErrorEvent );
|
247
|
+
|
248
|
+
// Set Error image.
|
249
|
+
var noimage = CKEDITOR.getUrl( editor.skinPath + 'images/noimage.png' );
|
250
|
+
|
251
|
+
if ( this.preview )
|
252
|
+
this.preview.setAttribute( 'src', noimage );
|
253
|
+
|
254
|
+
// Hide loader
|
255
|
+
CKEDITOR.document.getById( imagePreviewLoaderId ).setStyle( 'display', 'none' );
|
256
|
+
switchLockRatio( this, false ); // Unlock.
|
257
|
+
};
|
258
|
+
|
259
|
+
var numbering = function( id )
|
260
|
+
{
|
261
|
+
return CKEDITOR.tools.getNextId() + '_' + id;
|
262
|
+
},
|
263
|
+
btnLockSizesId = numbering( 'btnLockSizes' ),
|
264
|
+
btnResetSizeId = numbering( 'btnResetSize' ),
|
265
|
+
imagePreviewLoaderId = numbering( 'ImagePreviewLoader' ),
|
266
|
+
imagePreviewBoxId = numbering( 'ImagePreviewBox' ),
|
267
|
+
previewLinkId = numbering( 'previewLink' ),
|
268
|
+
previewImageId = numbering( 'previewImage' );
|
269
|
+
|
270
|
+
return {
|
271
|
+
title : editor.lang.image[ dialogType == 'image' ? 'title' : 'titleButton' ],
|
272
|
+
minWidth : 420,
|
273
|
+
minHeight : 360,
|
274
|
+
onShow : function()
|
275
|
+
{
|
276
|
+
this.imageElement = false;
|
277
|
+
this.linkElement = false;
|
278
|
+
|
279
|
+
// Default: create a new element.
|
280
|
+
this.imageEditMode = false;
|
281
|
+
this.linkEditMode = false;
|
282
|
+
|
283
|
+
this.lockRatio = true;
|
284
|
+
this.userlockRatio = 0;
|
285
|
+
this.dontResetSize = false;
|
286
|
+
this.firstLoad = true;
|
287
|
+
this.addLink = false;
|
288
|
+
|
289
|
+
var editor = this.getParentEditor(),
|
290
|
+
sel = this.getParentEditor().getSelection(),
|
291
|
+
element = sel.getSelectedElement(),
|
292
|
+
link = element && element.getAscendant( 'a' );
|
293
|
+
|
294
|
+
//Hide loader.
|
295
|
+
CKEDITOR.document.getById( imagePreviewLoaderId ).setStyle( 'display', 'none' );
|
296
|
+
// Create the preview before setup the dialog contents.
|
297
|
+
previewPreloader = new CKEDITOR.dom.element( 'img', editor.document );
|
298
|
+
this.preview = CKEDITOR.document.getById( previewImageId );
|
299
|
+
|
300
|
+
// Copy of the image
|
301
|
+
this.originalElement = editor.document.createElement( 'img' );
|
302
|
+
this.originalElement.setAttribute( 'alt', '' );
|
303
|
+
this.originalElement.setCustomData( 'isReady', 'false' );
|
304
|
+
|
305
|
+
if ( link )
|
306
|
+
{
|
307
|
+
this.linkElement = link;
|
308
|
+
this.linkEditMode = true;
|
309
|
+
|
310
|
+
// Look for Image element.
|
311
|
+
var linkChildren = link.getChildren();
|
312
|
+
if ( linkChildren.count() == 1 ) // 1 child.
|
313
|
+
{
|
314
|
+
var childTagName = linkChildren.getItem( 0 ).getName();
|
315
|
+
if ( childTagName == 'img' || childTagName == 'input' )
|
316
|
+
{
|
317
|
+
this.imageElement = linkChildren.getItem( 0 );
|
318
|
+
if ( this.imageElement.getName() == 'img' )
|
319
|
+
this.imageEditMode = 'img';
|
320
|
+
else if ( this.imageElement.getName() == 'input' )
|
321
|
+
this.imageEditMode = 'input';
|
322
|
+
}
|
323
|
+
}
|
324
|
+
// Fill out all fields.
|
325
|
+
if ( dialogType == 'image' )
|
326
|
+
this.setupContent( LINK, link );
|
327
|
+
}
|
328
|
+
|
329
|
+
if ( element && element.getName() == 'img' && !element.data( 'cke-realelement' )
|
330
|
+
|| element && element.getName() == 'input' && element.getAttribute( 'type' ) == 'image' )
|
331
|
+
{
|
332
|
+
this.imageEditMode = element.getName();
|
333
|
+
this.imageElement = element;
|
334
|
+
}
|
335
|
+
|
336
|
+
if ( this.imageEditMode )
|
337
|
+
{
|
338
|
+
// Use the original element as a buffer from since we don't want
|
339
|
+
// temporary changes to be committed, e.g. if the dialog is canceled.
|
340
|
+
this.cleanImageElement = this.imageElement;
|
341
|
+
this.imageElement = this.cleanImageElement.clone( true, true );
|
342
|
+
|
343
|
+
// Fill out all fields.
|
344
|
+
this.setupContent( IMAGE, this.imageElement );
|
345
|
+
}
|
346
|
+
else
|
347
|
+
this.imageElement = editor.document.createElement( 'img' );
|
348
|
+
|
349
|
+
// Refresh LockRatio button
|
350
|
+
switchLockRatio ( this, true );
|
351
|
+
|
352
|
+
// Dont show preview if no URL given.
|
353
|
+
if ( !CKEDITOR.tools.trim( this.getValueOf( 'info', 'txtUrl' ) ) )
|
354
|
+
{
|
355
|
+
this.preview.removeAttribute( 'src' );
|
356
|
+
this.preview.setStyle( 'display', 'none' );
|
357
|
+
}
|
358
|
+
},
|
359
|
+
onOk : function()
|
360
|
+
{
|
361
|
+
// Edit existing Image.
|
362
|
+
if ( this.imageEditMode )
|
363
|
+
{
|
364
|
+
var imgTagName = this.imageEditMode;
|
365
|
+
|
366
|
+
// Image dialog and Input element.
|
367
|
+
if ( dialogType == 'image' && imgTagName == 'input' && confirm( editor.lang.image.button2Img ) )
|
368
|
+
{
|
369
|
+
// Replace INPUT-> IMG
|
370
|
+
imgTagName = 'img';
|
371
|
+
this.imageElement = editor.document.createElement( 'img' );
|
372
|
+
this.imageElement.setAttribute( 'alt', '' );
|
373
|
+
editor.insertElement( this.imageElement );
|
374
|
+
}
|
375
|
+
// ImageButton dialog and Image element.
|
376
|
+
else if ( dialogType != 'image' && imgTagName == 'img' && confirm( editor.lang.image.img2Button ))
|
377
|
+
{
|
378
|
+
// Replace IMG -> INPUT
|
379
|
+
imgTagName = 'input';
|
380
|
+
this.imageElement = editor.document.createElement( 'input' );
|
381
|
+
this.imageElement.setAttributes(
|
382
|
+
{
|
383
|
+
type : 'image',
|
384
|
+
alt : ''
|
385
|
+
}
|
386
|
+
);
|
387
|
+
editor.insertElement( this.imageElement );
|
388
|
+
}
|
389
|
+
else
|
390
|
+
{
|
391
|
+
// Restore the original element before all commits.
|
392
|
+
this.imageElement = this.cleanImageElement;
|
393
|
+
delete this.cleanImageElement;
|
394
|
+
}
|
395
|
+
}
|
396
|
+
else // Create a new image.
|
397
|
+
{
|
398
|
+
// Image dialog -> create IMG element.
|
399
|
+
if ( dialogType == 'image' )
|
400
|
+
this.imageElement = editor.document.createElement( 'img' );
|
401
|
+
else
|
402
|
+
{
|
403
|
+
this.imageElement = editor.document.createElement( 'input' );
|
404
|
+
this.imageElement.setAttribute ( 'type' ,'image' );
|
405
|
+
}
|
406
|
+
this.imageElement.setAttribute( 'alt', '' );
|
407
|
+
}
|
408
|
+
|
409
|
+
// Create a new link.
|
410
|
+
if ( !this.linkEditMode )
|
411
|
+
this.linkElement = editor.document.createElement( 'a' );
|
412
|
+
|
413
|
+
// Set attributes.
|
414
|
+
this.commitContent( IMAGE, this.imageElement );
|
415
|
+
this.commitContent( LINK, this.linkElement );
|
416
|
+
|
417
|
+
// Remove empty style attribute.
|
418
|
+
if ( !this.imageElement.getAttribute( 'style' ) )
|
419
|
+
this.imageElement.removeAttribute( 'style' );
|
420
|
+
|
421
|
+
// Insert a new Image.
|
422
|
+
if ( !this.imageEditMode )
|
423
|
+
{
|
424
|
+
if ( this.addLink )
|
425
|
+
{
|
426
|
+
//Insert a new Link.
|
427
|
+
if ( !this.linkEditMode )
|
428
|
+
{
|
429
|
+
editor.insertElement( this.linkElement );
|
430
|
+
this.linkElement.append( this.imageElement, false );
|
431
|
+
}
|
432
|
+
else //Link already exists, image not.
|
433
|
+
editor.insertElement( this.imageElement );
|
434
|
+
}
|
435
|
+
else
|
436
|
+
editor.insertElement( this.imageElement );
|
437
|
+
}
|
438
|
+
else // Image already exists.
|
439
|
+
{
|
440
|
+
//Add a new link element.
|
441
|
+
if ( !this.linkEditMode && this.addLink )
|
442
|
+
{
|
443
|
+
editor.insertElement( this.linkElement );
|
444
|
+
this.imageElement.appendTo( this.linkElement );
|
445
|
+
}
|
446
|
+
//Remove Link, Image exists.
|
447
|
+
else if ( this.linkEditMode && !this.addLink )
|
448
|
+
{
|
449
|
+
editor.getSelection().selectElement( this.linkElement );
|
450
|
+
editor.insertElement( this.imageElement );
|
451
|
+
}
|
452
|
+
}
|
453
|
+
},
|
454
|
+
onLoad : function()
|
455
|
+
{
|
456
|
+
if ( dialogType != 'image' )
|
457
|
+
this.hidePage( 'Link' ); //Hide Link tab.
|
458
|
+
var doc = this._.element.getDocument();
|
459
|
+
|
460
|
+
if ( this.getContentElement( 'info', 'ratioLock' ) )
|
461
|
+
{
|
462
|
+
this.addFocusable( doc.getById( btnResetSizeId ), 5 );
|
463
|
+
this.addFocusable( doc.getById( btnLockSizesId ), 5 );
|
464
|
+
}
|
465
|
+
|
466
|
+
this.commitContent = commitContent;
|
467
|
+
},
|
468
|
+
onHide : function()
|
469
|
+
{
|
470
|
+
if ( this.preview )
|
471
|
+
this.commitContent( CLEANUP, this.preview );
|
472
|
+
|
473
|
+
if ( this.originalElement )
|
474
|
+
{
|
475
|
+
this.originalElement.removeListener( 'load', onImgLoadEvent );
|
476
|
+
this.originalElement.removeListener( 'error', onImgLoadErrorEvent );
|
477
|
+
this.originalElement.removeListener( 'abort', onImgLoadErrorEvent );
|
478
|
+
this.originalElement.remove();
|
479
|
+
this.originalElement = false; // Dialog is closed.
|
480
|
+
}
|
481
|
+
|
482
|
+
delete this.imageElement;
|
483
|
+
},
|
484
|
+
contents : [
|
485
|
+
{
|
486
|
+
id : 'info',
|
487
|
+
label : editor.lang.image.infoTab,
|
488
|
+
accessKey : 'I',
|
489
|
+
elements :
|
490
|
+
[
|
491
|
+
{
|
492
|
+
type : 'vbox',
|
493
|
+
padding : 0,
|
494
|
+
children :
|
495
|
+
[
|
496
|
+
{
|
497
|
+
type : 'hbox',
|
498
|
+
widths : [ '280px', '110px' ],
|
499
|
+
align : 'right',
|
500
|
+
children :
|
501
|
+
[
|
502
|
+
{
|
503
|
+
id : 'txtUrl',
|
504
|
+
type : 'text',
|
505
|
+
label : editor.lang.common.url,
|
506
|
+
required: true,
|
507
|
+
onChange : function()
|
508
|
+
{
|
509
|
+
var dialog = this.getDialog(),
|
510
|
+
newUrl = this.getValue();
|
511
|
+
|
512
|
+
//Update original image
|
513
|
+
if ( newUrl.length > 0 ) //Prevent from load before onShow
|
514
|
+
{
|
515
|
+
dialog = this.getDialog();
|
516
|
+
var original = dialog.originalElement;
|
517
|
+
|
518
|
+
dialog.preview.removeStyle( 'display' );
|
519
|
+
|
520
|
+
original.setCustomData( 'isReady', 'false' );
|
521
|
+
// Show loader
|
522
|
+
var loader = CKEDITOR.document.getById( imagePreviewLoaderId );
|
523
|
+
if ( loader )
|
524
|
+
loader.setStyle( 'display', '' );
|
525
|
+
|
526
|
+
original.on( 'load', onImgLoadEvent, dialog );
|
527
|
+
original.on( 'error', onImgLoadErrorEvent, dialog );
|
528
|
+
original.on( 'abort', onImgLoadErrorEvent, dialog );
|
529
|
+
original.setAttribute( 'src', newUrl );
|
530
|
+
|
531
|
+
// Query the preloader to figure out the url impacted by based href.
|
532
|
+
previewPreloader.setAttribute( 'src', newUrl );
|
533
|
+
dialog.preview.setAttribute( 'src', previewPreloader.$.src );
|
534
|
+
updatePreview( dialog );
|
535
|
+
}
|
536
|
+
// Dont show preview if no URL given.
|
537
|
+
else if ( dialog.preview )
|
538
|
+
{
|
539
|
+
dialog.preview.removeAttribute( 'src' );
|
540
|
+
dialog.preview.setStyle( 'display', 'none' );
|
541
|
+
}
|
542
|
+
},
|
543
|
+
setup : function( type, element )
|
544
|
+
{
|
545
|
+
if ( type == IMAGE )
|
546
|
+
{
|
547
|
+
var url = element.data( 'cke-saved-src' ) || element.getAttribute( 'src' );
|
548
|
+
var field = this;
|
549
|
+
|
550
|
+
this.getDialog().dontResetSize = true;
|
551
|
+
|
552
|
+
field.setValue( url ); // And call this.onChange()
|
553
|
+
// Manually set the initial value.(#4191)
|
554
|
+
field.setInitValue();
|
555
|
+
}
|
556
|
+
},
|
557
|
+
commit : function( type, element )
|
558
|
+
{
|
559
|
+
if ( type == IMAGE && ( this.getValue() || this.isChanged() ) )
|
560
|
+
{
|
561
|
+
element.data( 'cke-saved-src', this.getValue() );
|
562
|
+
element.setAttribute( 'src', this.getValue() );
|
563
|
+
}
|
564
|
+
else if ( type == CLEANUP )
|
565
|
+
{
|
566
|
+
element.setAttribute( 'src', '' ); // If removeAttribute doesn't work.
|
567
|
+
element.removeAttribute( 'src' );
|
568
|
+
}
|
569
|
+
},
|
570
|
+
validate : CKEDITOR.dialog.validate.notEmpty( editor.lang.image.urlMissing )
|
571
|
+
},
|
572
|
+
{
|
573
|
+
type : 'button',
|
574
|
+
id : 'browse',
|
575
|
+
// v-align with the 'txtUrl' field.
|
576
|
+
// TODO: We need something better than a fixed size here.
|
577
|
+
style : 'display:inline-block;margin-top:10px;',
|
578
|
+
align : 'center',
|
579
|
+
label : editor.lang.common.browseServer,
|
580
|
+
hidden : true,
|
581
|
+
filebrowser : 'info:txtUrl'
|
582
|
+
}
|
583
|
+
]
|
584
|
+
}
|
585
|
+
]
|
586
|
+
},
|
587
|
+
{
|
588
|
+
id : 'txtAlt',
|
589
|
+
type : 'text',
|
590
|
+
label : editor.lang.image.alt,
|
591
|
+
accessKey : 'T',
|
592
|
+
'default' : '',
|
593
|
+
onChange : function()
|
594
|
+
{
|
595
|
+
updatePreview( this.getDialog() );
|
596
|
+
},
|
597
|
+
setup : function( type, element )
|
598
|
+
{
|
599
|
+
if ( type == IMAGE )
|
600
|
+
this.setValue( element.getAttribute( 'alt' ) );
|
601
|
+
},
|
602
|
+
commit : function( type, element )
|
603
|
+
{
|
604
|
+
if ( type == IMAGE )
|
605
|
+
{
|
606
|
+
if ( this.getValue() || this.isChanged() )
|
607
|
+
element.setAttribute( 'alt', this.getValue() );
|
608
|
+
}
|
609
|
+
else if ( type == PREVIEW )
|
610
|
+
{
|
611
|
+
element.setAttribute( 'alt', this.getValue() );
|
612
|
+
}
|
613
|
+
else if ( type == CLEANUP )
|
614
|
+
{
|
615
|
+
element.removeAttribute( 'alt' );
|
616
|
+
}
|
617
|
+
}
|
618
|
+
},
|
619
|
+
{
|
620
|
+
type : 'hbox',
|
621
|
+
children :
|
622
|
+
[
|
623
|
+
{
|
624
|
+
id : 'basic',
|
625
|
+
type : 'vbox',
|
626
|
+
children :
|
627
|
+
[
|
628
|
+
{
|
629
|
+
type : 'hbox',
|
630
|
+
widths : [ '50%', '50%' ],
|
631
|
+
children :
|
632
|
+
[
|
633
|
+
{
|
634
|
+
type : 'vbox',
|
635
|
+
padding : 1,
|
636
|
+
children :
|
637
|
+
[
|
638
|
+
{
|
639
|
+
type : 'text',
|
640
|
+
width: '40px',
|
641
|
+
id : 'txtWidth',
|
642
|
+
label : editor.lang.common.width,
|
643
|
+
onKeyUp : onSizeChange,
|
644
|
+
onChange : function()
|
645
|
+
{
|
646
|
+
commitInternally.call( this, 'advanced:txtdlgGenStyle' );
|
647
|
+
},
|
648
|
+
validate : function()
|
649
|
+
{
|
650
|
+
var aMatch = this.getValue().match( regexGetSizeOrEmpty ),
|
651
|
+
isValid = !!( aMatch && parseInt( aMatch[1], 10 ) !== 0 );
|
652
|
+
if ( !isValid )
|
653
|
+
alert( editor.lang.common.invalidWidth );
|
654
|
+
return isValid;
|
655
|
+
},
|
656
|
+
setup : setupDimension,
|
657
|
+
commit : function( type, element, internalCommit )
|
658
|
+
{
|
659
|
+
var value = this.getValue();
|
660
|
+
if ( type == IMAGE )
|
661
|
+
{
|
662
|
+
if ( value )
|
663
|
+
element.setStyle( 'width', CKEDITOR.tools.cssLength( value ) );
|
664
|
+
else
|
665
|
+
element.removeStyle( 'width' );
|
666
|
+
|
667
|
+
!internalCommit && element.removeAttribute( 'width' );
|
668
|
+
}
|
669
|
+
else if ( type == PREVIEW )
|
670
|
+
{
|
671
|
+
var aMatch = value.match( regexGetSize );
|
672
|
+
if ( !aMatch )
|
673
|
+
{
|
674
|
+
var oImageOriginal = this.getDialog().originalElement;
|
675
|
+
if ( oImageOriginal.getCustomData( 'isReady' ) == 'true' )
|
676
|
+
element.setStyle( 'width', oImageOriginal.$.width + 'px');
|
677
|
+
}
|
678
|
+
else
|
679
|
+
element.setStyle( 'width', CKEDITOR.tools.cssLength( value ) );
|
680
|
+
}
|
681
|
+
else if ( type == CLEANUP )
|
682
|
+
{
|
683
|
+
element.removeAttribute( 'width' );
|
684
|
+
element.removeStyle( 'width' );
|
685
|
+
}
|
686
|
+
}
|
687
|
+
},
|
688
|
+
{
|
689
|
+
type : 'text',
|
690
|
+
id : 'txtHeight',
|
691
|
+
width: '40px',
|
692
|
+
label : editor.lang.common.height,
|
693
|
+
onKeyUp : onSizeChange,
|
694
|
+
onChange : function()
|
695
|
+
{
|
696
|
+
commitInternally.call( this, 'advanced:txtdlgGenStyle' );
|
697
|
+
},
|
698
|
+
validate : function()
|
699
|
+
{
|
700
|
+
var aMatch = this.getValue().match( regexGetSizeOrEmpty ),
|
701
|
+
isValid = !!( aMatch && parseInt( aMatch[1], 10 ) !== 0 );
|
702
|
+
if ( !isValid )
|
703
|
+
alert( editor.lang.common.invalidHeight );
|
704
|
+
return isValid;
|
705
|
+
},
|
706
|
+
setup : setupDimension,
|
707
|
+
commit : function( type, element, internalCommit )
|
708
|
+
{
|
709
|
+
var value = this.getValue();
|
710
|
+
if ( type == IMAGE )
|
711
|
+
{
|
712
|
+
if ( value )
|
713
|
+
element.setStyle( 'height', CKEDITOR.tools.cssLength( value ) );
|
714
|
+
else
|
715
|
+
element.removeStyle( 'height' );
|
716
|
+
|
717
|
+
!internalCommit && element.removeAttribute( 'height' );
|
718
|
+
}
|
719
|
+
else if ( type == PREVIEW )
|
720
|
+
{
|
721
|
+
var aMatch = value.match( regexGetSize );
|
722
|
+
if ( !aMatch )
|
723
|
+
{
|
724
|
+
var oImageOriginal = this.getDialog().originalElement;
|
725
|
+
if ( oImageOriginal.getCustomData( 'isReady' ) == 'true' )
|
726
|
+
element.setStyle( 'height', oImageOriginal.$.height + 'px' );
|
727
|
+
}
|
728
|
+
else
|
729
|
+
element.setStyle( 'height', CKEDITOR.tools.cssLength( value ) );
|
730
|
+
}
|
731
|
+
else if ( type == CLEANUP )
|
732
|
+
{
|
733
|
+
element.removeAttribute( 'height' );
|
734
|
+
element.removeStyle( 'height' );
|
735
|
+
}
|
736
|
+
}
|
737
|
+
}
|
738
|
+
]
|
739
|
+
},
|
740
|
+
{
|
741
|
+
id : 'ratioLock',
|
742
|
+
type : 'html',
|
743
|
+
style : 'margin-top:30px;width:40px;height:40px;',
|
744
|
+
onLoad : function()
|
745
|
+
{
|
746
|
+
// Activate Reset button
|
747
|
+
var resetButton = CKEDITOR.document.getById( btnResetSizeId ),
|
748
|
+
ratioButton = CKEDITOR.document.getById( btnLockSizesId );
|
749
|
+
if ( resetButton )
|
750
|
+
{
|
751
|
+
resetButton.on( 'click', function( evt )
|
752
|
+
{
|
753
|
+
resetSize( this );
|
754
|
+
evt.data && evt.data.preventDefault();
|
755
|
+
}, this.getDialog() );
|
756
|
+
resetButton.on( 'mouseover', function()
|
757
|
+
{
|
758
|
+
this.addClass( 'cke_btn_over' );
|
759
|
+
}, resetButton );
|
760
|
+
resetButton.on( 'mouseout', function()
|
761
|
+
{
|
762
|
+
this.removeClass( 'cke_btn_over' );
|
763
|
+
}, resetButton );
|
764
|
+
}
|
765
|
+
// Activate (Un)LockRatio button
|
766
|
+
if ( ratioButton )
|
767
|
+
{
|
768
|
+
ratioButton.on( 'click', function(evt)
|
769
|
+
{
|
770
|
+
var locked = switchLockRatio( this ),
|
771
|
+
oImageOriginal = this.originalElement,
|
772
|
+
width = this.getValueOf( 'info', 'txtWidth' );
|
773
|
+
|
774
|
+
if ( oImageOriginal.getCustomData( 'isReady' ) == 'true' && width )
|
775
|
+
{
|
776
|
+
var height = oImageOriginal.$.height / oImageOriginal.$.width * width;
|
777
|
+
if ( !isNaN( height ) )
|
778
|
+
{
|
779
|
+
this.setValueOf( 'info', 'txtHeight', Math.round( height ) );
|
780
|
+
updatePreview( this );
|
781
|
+
}
|
782
|
+
}
|
783
|
+
evt.data.preventDefault();
|
784
|
+
}, this.getDialog() );
|
785
|
+
ratioButton.on( 'mouseover', function()
|
786
|
+
{
|
787
|
+
this.addClass( 'cke_btn_over' );
|
788
|
+
}, ratioButton );
|
789
|
+
ratioButton.on( 'mouseout', function()
|
790
|
+
{
|
791
|
+
this.removeClass( 'cke_btn_over' );
|
792
|
+
}, ratioButton );
|
793
|
+
}
|
794
|
+
},
|
795
|
+
html : '<div>'+
|
796
|
+
'<a href="javascript:void(0)" tabindex="-1" title="' + editor.lang.image.unlockRatio +
|
797
|
+
'" class="cke_btn_locked" id="' + btnLockSizesId + '" role="button"><span class="cke_label">' + editor.lang.image.unlockRatio + '</span></a>' +
|
798
|
+
'<a href="javascript:void(0)" tabindex="-1" title="' + editor.lang.image.resetSize +
|
799
|
+
'" class="cke_btn_reset" id="' + btnResetSizeId + '" role="button"><span class="cke_label">' + editor.lang.image.resetSize + '</span></a>'+
|
800
|
+
'</div>'
|
801
|
+
}
|
802
|
+
]
|
803
|
+
},
|
804
|
+
{
|
805
|
+
type : 'vbox',
|
806
|
+
padding : 1,
|
807
|
+
children :
|
808
|
+
[
|
809
|
+
{
|
810
|
+
type : 'text',
|
811
|
+
id : 'txtBorder',
|
812
|
+
width: '60px',
|
813
|
+
label : editor.lang.image.border,
|
814
|
+
'default' : '',
|
815
|
+
onKeyUp : function()
|
816
|
+
{
|
817
|
+
updatePreview( this.getDialog() );
|
818
|
+
},
|
819
|
+
onChange : function()
|
820
|
+
{
|
821
|
+
commitInternally.call( this, 'advanced:txtdlgGenStyle' );
|
822
|
+
},
|
823
|
+
validate : CKEDITOR.dialog.validate.integer( editor.lang.image.validateBorder ),
|
824
|
+
setup : function( type, element )
|
825
|
+
{
|
826
|
+
if ( type == IMAGE )
|
827
|
+
{
|
828
|
+
var value,
|
829
|
+
borderStyle = element.getStyle( 'border-width' );
|
830
|
+
borderStyle = borderStyle && borderStyle.match( /^(\d+px)(?: \1 \1 \1)?$/ );
|
831
|
+
value = borderStyle && parseInt( borderStyle[ 1 ], 10 );
|
832
|
+
isNaN ( parseInt( value, 10 ) ) && ( value = element.getAttribute( 'border' ) );
|
833
|
+
this.setValue( value );
|
834
|
+
}
|
835
|
+
},
|
836
|
+
commit : function( type, element, internalCommit )
|
837
|
+
{
|
838
|
+
var value = parseInt( this.getValue(), 10 );
|
839
|
+
if ( type == IMAGE || type == PREVIEW )
|
840
|
+
{
|
841
|
+
if ( !isNaN( value ) )
|
842
|
+
{
|
843
|
+
element.setStyle( 'border-width', CKEDITOR.tools.cssLength( value ) );
|
844
|
+
element.setStyle( 'border-style', 'solid' );
|
845
|
+
}
|
846
|
+
else if ( !value && this.isChanged() )
|
847
|
+
{
|
848
|
+
element.removeStyle( 'border-width' );
|
849
|
+
element.removeStyle( 'border-style' );
|
850
|
+
element.removeStyle( 'border-color' );
|
851
|
+
}
|
852
|
+
|
853
|
+
if ( !internalCommit && type == IMAGE )
|
854
|
+
element.removeAttribute( 'border' );
|
855
|
+
}
|
856
|
+
else if ( type == CLEANUP )
|
857
|
+
{
|
858
|
+
element.removeAttribute( 'border' );
|
859
|
+
element.removeStyle( 'border-width' );
|
860
|
+
element.removeStyle( 'border-style' );
|
861
|
+
element.removeStyle( 'border-color' );
|
862
|
+
}
|
863
|
+
}
|
864
|
+
},
|
865
|
+
{
|
866
|
+
type : 'text',
|
867
|
+
id : 'txtHSpace',
|
868
|
+
width: '60px',
|
869
|
+
label : editor.lang.image.hSpace,
|
870
|
+
'default' : '',
|
871
|
+
onKeyUp : function()
|
872
|
+
{
|
873
|
+
updatePreview( this.getDialog() );
|
874
|
+
},
|
875
|
+
onChange : function()
|
876
|
+
{
|
877
|
+
commitInternally.call( this, 'advanced:txtdlgGenStyle' );
|
878
|
+
},
|
879
|
+
validate : CKEDITOR.dialog.validate.integer( editor.lang.image.validateHSpace ),
|
880
|
+
setup : function( type, element )
|
881
|
+
{
|
882
|
+
if ( type == IMAGE )
|
883
|
+
{
|
884
|
+
var value,
|
885
|
+
marginLeftPx,
|
886
|
+
marginRightPx,
|
887
|
+
marginLeftStyle = element.getStyle( 'margin-left' ),
|
888
|
+
marginRightStyle = element.getStyle( 'margin-right' );
|
889
|
+
|
890
|
+
marginLeftStyle = marginLeftStyle && marginLeftStyle.match( pxLengthRegex );
|
891
|
+
marginRightStyle = marginRightStyle && marginRightStyle.match( pxLengthRegex );
|
892
|
+
marginLeftPx = parseInt( marginLeftStyle, 10 );
|
893
|
+
marginRightPx = parseInt( marginRightStyle, 10 );
|
894
|
+
|
895
|
+
value = ( marginLeftPx == marginRightPx ) && marginLeftPx;
|
896
|
+
isNaN( parseInt( value, 10 ) ) && ( value = element.getAttribute( 'hspace' ) );
|
897
|
+
|
898
|
+
this.setValue( value );
|
899
|
+
}
|
900
|
+
},
|
901
|
+
commit : function( type, element, internalCommit )
|
902
|
+
{
|
903
|
+
var value = parseInt( this.getValue(), 10 );
|
904
|
+
if ( type == IMAGE || type == PREVIEW )
|
905
|
+
{
|
906
|
+
if ( !isNaN( value ) )
|
907
|
+
{
|
908
|
+
element.setStyle( 'margin-left', CKEDITOR.tools.cssLength( value ) );
|
909
|
+
element.setStyle( 'margin-right', CKEDITOR.tools.cssLength( value ) );
|
910
|
+
}
|
911
|
+
else if ( !value && this.isChanged( ) )
|
912
|
+
{
|
913
|
+
element.removeStyle( 'margin-left' );
|
914
|
+
element.removeStyle( 'margin-right' );
|
915
|
+
}
|
916
|
+
|
917
|
+
if ( !internalCommit && type == IMAGE )
|
918
|
+
element.removeAttribute( 'hspace' );
|
919
|
+
}
|
920
|
+
else if ( type == CLEANUP )
|
921
|
+
{
|
922
|
+
element.removeAttribute( 'hspace' );
|
923
|
+
element.removeStyle( 'margin-left' );
|
924
|
+
element.removeStyle( 'margin-right' );
|
925
|
+
}
|
926
|
+
}
|
927
|
+
},
|
928
|
+
{
|
929
|
+
type : 'text',
|
930
|
+
id : 'txtVSpace',
|
931
|
+
width : '60px',
|
932
|
+
label : editor.lang.image.vSpace,
|
933
|
+
'default' : '',
|
934
|
+
onKeyUp : function()
|
935
|
+
{
|
936
|
+
updatePreview( this.getDialog() );
|
937
|
+
},
|
938
|
+
onChange : function()
|
939
|
+
{
|
940
|
+
commitInternally.call( this, 'advanced:txtdlgGenStyle' );
|
941
|
+
},
|
942
|
+
validate : CKEDITOR.dialog.validate.integer( editor.lang.image.validateVSpace ),
|
943
|
+
setup : function( type, element )
|
944
|
+
{
|
945
|
+
if ( type == IMAGE )
|
946
|
+
{
|
947
|
+
var value,
|
948
|
+
marginTopPx,
|
949
|
+
marginBottomPx,
|
950
|
+
marginTopStyle = element.getStyle( 'margin-top' ),
|
951
|
+
marginBottomStyle = element.getStyle( 'margin-bottom' );
|
952
|
+
|
953
|
+
marginTopStyle = marginTopStyle && marginTopStyle.match( pxLengthRegex );
|
954
|
+
marginBottomStyle = marginBottomStyle && marginBottomStyle.match( pxLengthRegex );
|
955
|
+
marginTopPx = parseInt( marginTopStyle, 10 );
|
956
|
+
marginBottomPx = parseInt( marginBottomStyle, 10 );
|
957
|
+
|
958
|
+
value = ( marginTopPx == marginBottomPx ) && marginTopPx;
|
959
|
+
isNaN ( parseInt( value, 10 ) ) && ( value = element.getAttribute( 'vspace' ) );
|
960
|
+
this.setValue( value );
|
961
|
+
}
|
962
|
+
},
|
963
|
+
commit : function( type, element, internalCommit )
|
964
|
+
{
|
965
|
+
var value = parseInt( this.getValue(), 10 );
|
966
|
+
if ( type == IMAGE || type == PREVIEW )
|
967
|
+
{
|
968
|
+
if ( !isNaN( value ) )
|
969
|
+
{
|
970
|
+
element.setStyle( 'margin-top', CKEDITOR.tools.cssLength( value ) );
|
971
|
+
element.setStyle( 'margin-bottom', CKEDITOR.tools.cssLength( value ) );
|
972
|
+
}
|
973
|
+
else if ( !value && this.isChanged( ) )
|
974
|
+
{
|
975
|
+
element.removeStyle( 'margin-top' );
|
976
|
+
element.removeStyle( 'margin-bottom' );
|
977
|
+
}
|
978
|
+
|
979
|
+
if ( !internalCommit && type == IMAGE )
|
980
|
+
element.removeAttribute( 'vspace' );
|
981
|
+
}
|
982
|
+
else if ( type == CLEANUP )
|
983
|
+
{
|
984
|
+
element.removeAttribute( 'vspace' );
|
985
|
+
element.removeStyle( 'margin-top' );
|
986
|
+
element.removeStyle( 'margin-bottom' );
|
987
|
+
}
|
988
|
+
}
|
989
|
+
},
|
990
|
+
{
|
991
|
+
id : 'cmbAlign',
|
992
|
+
type : 'select',
|
993
|
+
widths : [ '35%','65%' ],
|
994
|
+
style : 'width:90px',
|
995
|
+
label : editor.lang.common.align,
|
996
|
+
'default' : '',
|
997
|
+
items :
|
998
|
+
[
|
999
|
+
[ editor.lang.common.notSet , ''],
|
1000
|
+
[ editor.lang.common.alignLeft , 'left'],
|
1001
|
+
[ editor.lang.common.alignRight , 'right']
|
1002
|
+
// Backward compatible with v2 on setup when specified as attribute value,
|
1003
|
+
// while these values are no more available as select options.
|
1004
|
+
// [ editor.lang.image.alignAbsBottom , 'absBottom'],
|
1005
|
+
// [ editor.lang.image.alignAbsMiddle , 'absMiddle'],
|
1006
|
+
// [ editor.lang.image.alignBaseline , 'baseline'],
|
1007
|
+
// [ editor.lang.image.alignTextTop , 'text-top'],
|
1008
|
+
// [ editor.lang.image.alignBottom , 'bottom'],
|
1009
|
+
// [ editor.lang.image.alignMiddle , 'middle'],
|
1010
|
+
// [ editor.lang.image.alignTop , 'top']
|
1011
|
+
],
|
1012
|
+
onChange : function()
|
1013
|
+
{
|
1014
|
+
updatePreview( this.getDialog() );
|
1015
|
+
commitInternally.call( this, 'advanced:txtdlgGenStyle' );
|
1016
|
+
},
|
1017
|
+
setup : function( type, element )
|
1018
|
+
{
|
1019
|
+
if ( type == IMAGE )
|
1020
|
+
{
|
1021
|
+
var value = element.getStyle( 'float' );
|
1022
|
+
switch( value )
|
1023
|
+
{
|
1024
|
+
// Ignore those unrelated values.
|
1025
|
+
case 'inherit':
|
1026
|
+
case 'none':
|
1027
|
+
value = '';
|
1028
|
+
}
|
1029
|
+
|
1030
|
+
!value && ( value = ( element.getAttribute( 'align' ) || '' ).toLowerCase() );
|
1031
|
+
this.setValue( value );
|
1032
|
+
}
|
1033
|
+
},
|
1034
|
+
commit : function( type, element, internalCommit )
|
1035
|
+
{
|
1036
|
+
var value = this.getValue();
|
1037
|
+
if ( type == IMAGE || type == PREVIEW )
|
1038
|
+
{
|
1039
|
+
if ( value )
|
1040
|
+
element.setStyle( 'float', value );
|
1041
|
+
else
|
1042
|
+
element.removeStyle( 'float' );
|
1043
|
+
|
1044
|
+
if ( !internalCommit && type == IMAGE )
|
1045
|
+
{
|
1046
|
+
value = ( element.getAttribute( 'align' ) || '' ).toLowerCase();
|
1047
|
+
switch( value )
|
1048
|
+
{
|
1049
|
+
// we should remove it only if it matches "left" or "right",
|
1050
|
+
// otherwise leave it intact.
|
1051
|
+
case 'left':
|
1052
|
+
case 'right':
|
1053
|
+
element.removeAttribute( 'align' );
|
1054
|
+
}
|
1055
|
+
}
|
1056
|
+
}
|
1057
|
+
else if ( type == CLEANUP )
|
1058
|
+
element.removeStyle( 'float' );
|
1059
|
+
|
1060
|
+
}
|
1061
|
+
}
|
1062
|
+
]
|
1063
|
+
}
|
1064
|
+
]
|
1065
|
+
},
|
1066
|
+
{
|
1067
|
+
type : 'vbox',
|
1068
|
+
height : '250px',
|
1069
|
+
children :
|
1070
|
+
[
|
1071
|
+
{
|
1072
|
+
type : 'html',
|
1073
|
+
id : 'htmlPreview',
|
1074
|
+
style : 'width:95%;',
|
1075
|
+
html : '<div>' + CKEDITOR.tools.htmlEncode( editor.lang.common.preview ) +'<br>'+
|
1076
|
+
'<div id="' + imagePreviewLoaderId + '" class="ImagePreviewLoader" style="display:none"><div class="loading"> </div></div>'+
|
1077
|
+
'<div id="' + imagePreviewBoxId + '" class="ImagePreviewBox"><table><tr><td>'+
|
1078
|
+
'<a href="javascript:void(0)" target="_blank" onclick="return false;" id="' + previewLinkId + '">'+
|
1079
|
+
'<img id="' + previewImageId + '" alt="" /></a>' +
|
1080
|
+
( editor.config.image_previewText ||
|
1081
|
+
'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. '+
|
1082
|
+
'Maecenas feugiat consequat diam. Maecenas metus. Vivamus diam purus, cursus a, commodo non, facilisis vitae, '+
|
1083
|
+
'nulla. Aenean dictum lacinia tortor. Nunc iaculis, nibh non iaculis aliquam, orci felis euismod neque, sed ornare massa mauris sed velit. Nulla pretium mi et risus. Fusce mi pede, tempor id, cursus ac, ullamcorper nec, enim. Sed tortor. Curabitur molestie. Duis velit augue, condimentum at, ultrices a, luctus ut, orci. Donec pellentesque egestas eros. Integer cursus, augue in cursus faucibus, eros pede bibendum sem, in tempus tellus justo quis ligula. Etiam eget tortor. Vestibulum rutrum, est ut placerat elementum, lectus nisl aliquam velit, tempor aliquam eros nunc nonummy metus. In eros metus, gravida a, gravida sed, lobortis id, turpis. Ut ultrices, ipsum at venenatis fringilla, sem nulla lacinia tellus, eget aliquet turpis mauris non enim. Nam turpis. Suspendisse lacinia. Curabitur ac tortor ut ipsum egestas elementum. Nunc imperdiet gravida mauris.' ) +
|
1084
|
+
'</td></tr></table></div></div>'
|
1085
|
+
}
|
1086
|
+
]
|
1087
|
+
}
|
1088
|
+
]
|
1089
|
+
}
|
1090
|
+
]
|
1091
|
+
},
|
1092
|
+
{
|
1093
|
+
id : 'Link',
|
1094
|
+
label : editor.lang.link.title,
|
1095
|
+
padding : 0,
|
1096
|
+
elements :
|
1097
|
+
[
|
1098
|
+
{
|
1099
|
+
id : 'txtUrl',
|
1100
|
+
type : 'text',
|
1101
|
+
label : editor.lang.common.url,
|
1102
|
+
style : 'width: 100%',
|
1103
|
+
'default' : '',
|
1104
|
+
setup : function( type, element )
|
1105
|
+
{
|
1106
|
+
if ( type == LINK )
|
1107
|
+
{
|
1108
|
+
var href = element.data( 'cke-saved-href' );
|
1109
|
+
if ( !href )
|
1110
|
+
href = element.getAttribute( 'href' );
|
1111
|
+
this.setValue( href );
|
1112
|
+
}
|
1113
|
+
},
|
1114
|
+
commit : function( type, element )
|
1115
|
+
{
|
1116
|
+
if ( type == LINK )
|
1117
|
+
{
|
1118
|
+
if ( this.getValue() || this.isChanged() )
|
1119
|
+
{
|
1120
|
+
var url = decodeURI( this.getValue() );
|
1121
|
+
element.data( 'cke-saved-href', url );
|
1122
|
+
element.setAttribute( 'href', url );
|
1123
|
+
|
1124
|
+
if ( this.getValue() || !editor.config.image_removeLinkByEmptyURL )
|
1125
|
+
this.getDialog().addLink = true;
|
1126
|
+
}
|
1127
|
+
}
|
1128
|
+
}
|
1129
|
+
},
|
1130
|
+
{
|
1131
|
+
type : 'button',
|
1132
|
+
id : 'browse',
|
1133
|
+
filebrowser :
|
1134
|
+
{
|
1135
|
+
action : 'Browse',
|
1136
|
+
target: 'Link:txtUrl',
|
1137
|
+
url: editor.config.filebrowserImageBrowseLinkUrl
|
1138
|
+
},
|
1139
|
+
style : 'float:right',
|
1140
|
+
hidden : true,
|
1141
|
+
label : editor.lang.common.browseServer
|
1142
|
+
},
|
1143
|
+
{
|
1144
|
+
id : 'cmbTarget',
|
1145
|
+
type : 'select',
|
1146
|
+
label : editor.lang.common.target,
|
1147
|
+
'default' : '',
|
1148
|
+
items :
|
1149
|
+
[
|
1150
|
+
[ editor.lang.common.notSet , ''],
|
1151
|
+
[ editor.lang.common.targetNew , '_blank'],
|
1152
|
+
[ editor.lang.common.targetTop , '_top'],
|
1153
|
+
[ editor.lang.common.targetSelf , '_self'],
|
1154
|
+
[ editor.lang.common.targetParent , '_parent']
|
1155
|
+
],
|
1156
|
+
setup : function( type, element )
|
1157
|
+
{
|
1158
|
+
if ( type == LINK )
|
1159
|
+
this.setValue( element.getAttribute( 'target' ) || '' );
|
1160
|
+
},
|
1161
|
+
commit : function( type, element )
|
1162
|
+
{
|
1163
|
+
if ( type == LINK )
|
1164
|
+
{
|
1165
|
+
if ( this.getValue() || this.isChanged() )
|
1166
|
+
element.setAttribute( 'target', this.getValue() );
|
1167
|
+
}
|
1168
|
+
}
|
1169
|
+
}
|
1170
|
+
]
|
1171
|
+
},
|
1172
|
+
{
|
1173
|
+
id : 'Upload',
|
1174
|
+
hidden : true,
|
1175
|
+
filebrowser : 'uploadButton',
|
1176
|
+
label : editor.lang.image.upload,
|
1177
|
+
elements :
|
1178
|
+
[
|
1179
|
+
{
|
1180
|
+
type : 'file',
|
1181
|
+
id : 'upload',
|
1182
|
+
label : editor.lang.image.btnUpload,
|
1183
|
+
style: 'height:40px',
|
1184
|
+
size : 38
|
1185
|
+
},
|
1186
|
+
{
|
1187
|
+
type : 'fileButton',
|
1188
|
+
id : 'uploadButton',
|
1189
|
+
filebrowser : 'info:txtUrl',
|
1190
|
+
label : editor.lang.image.btnUpload,
|
1191
|
+
'for' : [ 'Upload', 'upload' ]
|
1192
|
+
}
|
1193
|
+
]
|
1194
|
+
},
|
1195
|
+
{
|
1196
|
+
id : 'advanced',
|
1197
|
+
label : editor.lang.common.advancedTab,
|
1198
|
+
elements :
|
1199
|
+
[
|
1200
|
+
{
|
1201
|
+
type : 'hbox',
|
1202
|
+
widths : [ '50%', '25%', '25%' ],
|
1203
|
+
children :
|
1204
|
+
[
|
1205
|
+
{
|
1206
|
+
type : 'text',
|
1207
|
+
id : 'linkId',
|
1208
|
+
label : editor.lang.common.id,
|
1209
|
+
setup : function( type, element )
|
1210
|
+
{
|
1211
|
+
if ( type == IMAGE )
|
1212
|
+
this.setValue( element.getAttribute( 'id' ) );
|
1213
|
+
},
|
1214
|
+
commit : function( type, element )
|
1215
|
+
{
|
1216
|
+
if ( type == IMAGE )
|
1217
|
+
{
|
1218
|
+
if ( this.getValue() || this.isChanged() )
|
1219
|
+
element.setAttribute( 'id', this.getValue() );
|
1220
|
+
}
|
1221
|
+
}
|
1222
|
+
},
|
1223
|
+
{
|
1224
|
+
id : 'cmbLangDir',
|
1225
|
+
type : 'select',
|
1226
|
+
style : 'width : 100px;',
|
1227
|
+
label : editor.lang.common.langDir,
|
1228
|
+
'default' : '',
|
1229
|
+
items :
|
1230
|
+
[
|
1231
|
+
[ editor.lang.common.notSet, '' ],
|
1232
|
+
[ editor.lang.common.langDirLtr, 'ltr' ],
|
1233
|
+
[ editor.lang.common.langDirRtl, 'rtl' ]
|
1234
|
+
],
|
1235
|
+
setup : function( type, element )
|
1236
|
+
{
|
1237
|
+
if ( type == IMAGE )
|
1238
|
+
this.setValue( element.getAttribute( 'dir' ) );
|
1239
|
+
},
|
1240
|
+
commit : function( type, element )
|
1241
|
+
{
|
1242
|
+
if ( type == IMAGE )
|
1243
|
+
{
|
1244
|
+
if ( this.getValue() || this.isChanged() )
|
1245
|
+
element.setAttribute( 'dir', this.getValue() );
|
1246
|
+
}
|
1247
|
+
}
|
1248
|
+
},
|
1249
|
+
{
|
1250
|
+
type : 'text',
|
1251
|
+
id : 'txtLangCode',
|
1252
|
+
label : editor.lang.common.langCode,
|
1253
|
+
'default' : '',
|
1254
|
+
setup : function( type, element )
|
1255
|
+
{
|
1256
|
+
if ( type == IMAGE )
|
1257
|
+
this.setValue( element.getAttribute( 'lang' ) );
|
1258
|
+
},
|
1259
|
+
commit : function( type, element )
|
1260
|
+
{
|
1261
|
+
if ( type == IMAGE )
|
1262
|
+
{
|
1263
|
+
if ( this.getValue() || this.isChanged() )
|
1264
|
+
element.setAttribute( 'lang', this.getValue() );
|
1265
|
+
}
|
1266
|
+
}
|
1267
|
+
}
|
1268
|
+
]
|
1269
|
+
},
|
1270
|
+
{
|
1271
|
+
type : 'text',
|
1272
|
+
id : 'txtGenLongDescr',
|
1273
|
+
label : editor.lang.common.longDescr,
|
1274
|
+
setup : function( type, element )
|
1275
|
+
{
|
1276
|
+
if ( type == IMAGE )
|
1277
|
+
this.setValue( element.getAttribute( 'longDesc' ) );
|
1278
|
+
},
|
1279
|
+
commit : function( type, element )
|
1280
|
+
{
|
1281
|
+
if ( type == IMAGE )
|
1282
|
+
{
|
1283
|
+
if ( this.getValue() || this.isChanged() )
|
1284
|
+
element.setAttribute( 'longDesc', this.getValue() );
|
1285
|
+
}
|
1286
|
+
}
|
1287
|
+
},
|
1288
|
+
{
|
1289
|
+
type : 'hbox',
|
1290
|
+
widths : [ '50%', '50%' ],
|
1291
|
+
children :
|
1292
|
+
[
|
1293
|
+
{
|
1294
|
+
type : 'text',
|
1295
|
+
id : 'txtGenClass',
|
1296
|
+
label : editor.lang.common.cssClass,
|
1297
|
+
'default' : '',
|
1298
|
+
setup : function( type, element )
|
1299
|
+
{
|
1300
|
+
if ( type == IMAGE )
|
1301
|
+
this.setValue( element.getAttribute( 'class' ) );
|
1302
|
+
},
|
1303
|
+
commit : function( type, element )
|
1304
|
+
{
|
1305
|
+
if ( type == IMAGE )
|
1306
|
+
{
|
1307
|
+
if ( this.getValue() || this.isChanged() )
|
1308
|
+
element.setAttribute( 'class', this.getValue() );
|
1309
|
+
}
|
1310
|
+
}
|
1311
|
+
},
|
1312
|
+
{
|
1313
|
+
type : 'text',
|
1314
|
+
id : 'txtGenTitle',
|
1315
|
+
label : editor.lang.common.advisoryTitle,
|
1316
|
+
'default' : '',
|
1317
|
+
onChange : function()
|
1318
|
+
{
|
1319
|
+
updatePreview( this.getDialog() );
|
1320
|
+
},
|
1321
|
+
setup : function( type, element )
|
1322
|
+
{
|
1323
|
+
if ( type == IMAGE )
|
1324
|
+
this.setValue( element.getAttribute( 'title' ) );
|
1325
|
+
},
|
1326
|
+
commit : function( type, element )
|
1327
|
+
{
|
1328
|
+
if ( type == IMAGE )
|
1329
|
+
{
|
1330
|
+
if ( this.getValue() || this.isChanged() )
|
1331
|
+
element.setAttribute( 'title', this.getValue() );
|
1332
|
+
}
|
1333
|
+
else if ( type == PREVIEW )
|
1334
|
+
{
|
1335
|
+
element.setAttribute( 'title', this.getValue() );
|
1336
|
+
}
|
1337
|
+
else if ( type == CLEANUP )
|
1338
|
+
{
|
1339
|
+
element.removeAttribute( 'title' );
|
1340
|
+
}
|
1341
|
+
}
|
1342
|
+
}
|
1343
|
+
]
|
1344
|
+
},
|
1345
|
+
{
|
1346
|
+
type : 'text',
|
1347
|
+
id : 'txtdlgGenStyle',
|
1348
|
+
label : editor.lang.common.cssStyle,
|
1349
|
+
'default' : '',
|
1350
|
+
setup : function( type, element )
|
1351
|
+
{
|
1352
|
+
if ( type == IMAGE )
|
1353
|
+
{
|
1354
|
+
var genStyle = element.getAttribute( 'style' );
|
1355
|
+
if ( !genStyle && element.$.style.cssText )
|
1356
|
+
genStyle = element.$.style.cssText;
|
1357
|
+
this.setValue( genStyle );
|
1358
|
+
|
1359
|
+
var height = element.$.style.height,
|
1360
|
+
width = element.$.style.width,
|
1361
|
+
aMatchH = ( height ? height : '' ).match( regexGetSize ),
|
1362
|
+
aMatchW = ( width ? width : '').match( regexGetSize );
|
1363
|
+
|
1364
|
+
this.attributesInStyle =
|
1365
|
+
{
|
1366
|
+
height : !!aMatchH,
|
1367
|
+
width : !!aMatchW
|
1368
|
+
};
|
1369
|
+
}
|
1370
|
+
},
|
1371
|
+
onChange : function ()
|
1372
|
+
{
|
1373
|
+
commitInternally.call( this,
|
1374
|
+
[ 'info:cmbFloat', 'info:cmbAlign',
|
1375
|
+
'info:txtVSpace', 'info:txtHSpace',
|
1376
|
+
'info:txtBorder',
|
1377
|
+
'info:txtWidth', 'info:txtHeight' ] );
|
1378
|
+
updatePreview( this );
|
1379
|
+
},
|
1380
|
+
commit : function( type, element )
|
1381
|
+
{
|
1382
|
+
if ( type == IMAGE && ( this.getValue() || this.isChanged() ) )
|
1383
|
+
{
|
1384
|
+
element.setAttribute( 'style', this.getValue() );
|
1385
|
+
}
|
1386
|
+
}
|
1387
|
+
}
|
1388
|
+
]
|
1389
|
+
}
|
1390
|
+
]
|
1391
|
+
};
|
1392
|
+
};
|
1393
|
+
|
1394
|
+
CKEDITOR.dialog.add( 'image', function( editor )
|
1395
|
+
{
|
1396
|
+
return imageDialog( editor, 'image' );
|
1397
|
+
});
|
1398
|
+
|
1399
|
+
CKEDITOR.dialog.add( 'imagebutton', function( editor )
|
1400
|
+
{
|
1401
|
+
return imageDialog( editor, 'imagebutton' );
|
1402
|
+
});
|
1403
|
+
})();
|