adva 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +21 -0
- data/CHANGELOG +263 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README +245 -0
- data/Rakefile +2 -0
- data/adva.gemspec +17 -0
- data/adva_activity/Gemfile +4 -0
- data/adva_activity/LICENSE +22 -0
- data/adva_activity/README.md +29 -0
- data/adva_activity/Rakefile +2 -0
- data/adva_activity/adva_activity.gemspec +19 -0
- data/adva_activity/app/assets/stylesheets/adva_activity/admin/activities.css +81 -0
- data/adva_activity/app/helpers/activities_helper.rb +73 -0
- data/adva_activity/app/models/activity.rb +87 -0
- data/adva_activity/app/models/activity_notifier.rb +11 -0
- data/adva_activity/app/observers/activities/activity_observer.rb +25 -0
- data/adva_activity/app/observers/activities/article_observer.rb +20 -0
- data/adva_activity/app/observers/activities/comment_observer.rb +29 -0
- data/adva_activity/app/observers/activities/logger.rb +94 -0
- data/adva_activity/app/observers/activities/section_observer.rb +9 -0
- data/adva_activity/app/views/activity_notifier/new_content_notification.html.erb +5 -0
- data/adva_activity/app/views/admin/activities/_activities.html.erb +10 -0
- data/adva_activity/app/views/admin/activities/_comment.html.erb +35 -0
- data/adva_activity/app/views/admin/activities/_content.html.erb +15 -0
- data/adva_activity/app/views/admin/activities/_topic.html.erb +16 -0
- data/adva_activity/config/locales/en.yml +22 -0
- data/adva_activity/db/migrate/20080401000000_create_activities_table.rb +23 -0
- data/adva_activity/lib/adva_activity.rb +33 -0
- data/adva_activity/lib/adva_activity/version.rb +3 -0
- data/adva_activity/test/test_helper.rb +3 -0
- data/adva_activity/test/unit/activities_notifier_test.rb +75 -0
- data/adva_activity/test/unit/activity_observer_test.rb +65 -0
- data/adva_activity/test/unit/activity_test.rb +84 -0
- data/adva_blog/.gitignore +17 -0
- data/adva_blog/Gemfile +4 -0
- data/adva_blog/LICENSE +22 -0
- data/adva_blog/README.md +29 -0
- data/adva_blog/Rakefile +2 -0
- data/adva_blog/adva_blog.gemspec +17 -0
- data/adva_blog/app/controllers/admin/blog/articles_controller.rb +5 -0
- data/adva_blog/app/controllers/admin/blog/categories_controller.rb +1 -0
- data/adva_blog/app/controllers/admin/blog/contents_controller.rb +5 -0
- data/adva_blog/app/controllers/admin/blogs_controller.rb +1 -0
- data/adva_blog/app/controllers/blog_articles_controller.rb +23 -0
- data/adva_blog/app/helpers/blog_helper.rb +49 -0
- data/adva_blog/app/models/blog.rb +34 -0
- data/adva_blog/app/views/admin/blog/articles/index.html.erb +40 -0
- data/adva_blog/app/views/admin/sections/settings/_blog.html.erb +11 -0
- data/adva_blog/app/views/blogs/articles/_article.html.erb +28 -0
- data/adva_blog/app/views/blogs/articles/_footer.html.erb +40 -0
- data/adva_blog/app/views/blogs/articles/index.atom.builder +21 -0
- data/adva_blog/app/views/blogs/articles/index.html.erb +4 -0
- data/adva_blog/app/views/blogs/articles/show.html.erb +14 -0
- data/adva_blog/config/initializers/base_controller.rb +3 -0
- data/adva_blog/config/routes.rb +49 -0
- data/adva_blog/lib/adva_blog.rb +10 -0
- data/adva_blog/lib/adva_blog/version.rb +3 -0
- data/adva_blog/test/contexts.rb +9 -0
- data/adva_blog/test/fixtures.rb +50 -0
- data/adva_blog/test/functional/blog_articles_controller_test.rb +139 -0
- data/adva_blog/test/functional/blog_articles_routes_test.rb +159 -0
- data/adva_blog/test/integration/admin/blog_article_test.rb +54 -0
- data/adva_blog/test/integration/admin/blog_ping_test.rb +68 -0
- data/adva_blog/test/integration/admin/blog_test.rb +43 -0
- data/adva_blog/test/integration/blog_article_test.rb +40 -0
- data/adva_blog/test/integration/blog_categories_test.rb +55 -0
- data/adva_blog/test/integration/blog_comment_test.rb +51 -0
- data/adva_blog/test/integration/blog_index_test.rb +104 -0
- data/adva_blog/test/test_helper.rb +2 -0
- data/adva_blog/test/unit/cells/blog_cell_test.rb +29 -0
- data/adva_blog/test/unit/helpers/blog_helper_test.rb +50 -0
- data/adva_blog/test/unit/helpers/content_helper_test.rb +19 -0
- data/adva_blog/test/unit/models/blog_test.rb +37 -0
- data/adva_blog/test/unit/models/counter_test.rb +44 -0
- data/adva_cells/.gitignore +17 -0
- data/adva_cells/Gemfile +4 -0
- data/adva_cells/LICENSE +22 -0
- data/adva_cells/README.md +29 -0
- data/adva_cells/Rakefile +2 -0
- data/adva_cells/adva_cells.gemspec +20 -0
- data/adva_cells/app/cells/base_cell.rb +83 -0
- data/adva_cells/app/controllers/admin/cells_controller.rb +10 -0
- data/adva_cells/app/helpers/contact_mailer_helper.rb +7 -0
- data/adva_cells/config/routes.rb +6 -0
- data/adva_cells/lib/adva_cells.rb +13 -0
- data/adva_cells/lib/adva_cells/version.rb +3 -0
- data/adva_cells/lib/cells_ext.rb +18 -0
- data/adva_cells/lib/contact_mail_form_builder.rb +178 -0
- data/adva_cells/lib/output_filter/cells.rb +48 -0
- data/adva_cells/test/integration/article_with_contact_mailer_test.rb +81 -0
- data/adva_cells/test/test_helper.rb +11 -0
- data/adva_cells/test/unit/album_cell_test.rb +48 -0
- data/adva_cells/test/unit/base_cell_test.rb +83 -0
- data/adva_cells/test/unit/blog_cell_test.rb +27 -0
- data/adva_cells/test/unit/contact_mailer_cell_test.rb +43 -0
- data/adva_cells/test/unit/content_cell_test.rb +33 -0
- data/adva_cells/test/unit/helpers/contact_mail_helper_test.rb +84 -0
- data/adva_cells/test/unit/lib/contact_mail_form_builder_test.rb +288 -0
- data/adva_cells/test/unit/lib/output_filter/cells_test.rb +46 -0
- data/adva_cells/test/unit/section_cell_test.rb +30 -0
- data/adva_cells/test/unit/user_cell_test.rb +27 -0
- data/adva_cms/.gitignore +17 -0
- data/adva_cms/Gemfile +4 -0
- data/adva_cms/LICENSE +22 -0
- data/adva_cms/NOTES +132 -0
- data/adva_cms/README.md +29 -0
- data/adva_cms/Rakefile +2 -0
- data/adva_cms/adva_cms.gemspec +22 -0
- data/adva_cms/app/assets/images/adva_cms/admin/header_bg.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/admin/section_menu_bg.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/admin/tab_action_active.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/admin/tab_main_active.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/admin/tab_sidebar_active.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/admin/tab_top_active.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/asset_selected.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/avatar.gif +0 -0
- data/adva_cms/app/assets/images/adva_cms/filter-bg.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/accept.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/add.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/arrow_cross.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/arrow_cross_2.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/arrow_cross_3.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/arrow_up_down.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/assets/audio.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/assets/doc.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/assets/pdf.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/assets/video.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/attach.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/bin.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/bin_closed.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/bin_empty.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/bullet_black.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/bullet_delete.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/bullet_error.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/bullet_go.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/bullet_red.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/bullet_white.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/bullet_yellow.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/cancel.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/comment.gif +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/comment.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/comment_add.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/comment_blue.gif +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/comment_delete.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/comment_edit.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/comment_yellow.gif +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/cross.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/delete.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/eye.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/favorites.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/help.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/hourglass.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/icon_attachment.gif +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/icon_padlock.gif +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/link.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/lock.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/magnifier.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/minus.gif +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/page_add.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/page_delete.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/page_edit.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/page_favorites.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/page_go.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/page_green.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/page_red.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/page_white_add.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/page_white_delete.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/page_white_edit.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/page_white_go.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/page_white_link.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/page_white_magnify.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/pencil.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/star.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/stop.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/tag_green.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/tick.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/icons/zoom.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/indicator.gif +0 -0
- data/adva_cms/app/assets/images/adva_cms/preview.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/rails.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/sortable_tree/drag.png +0 -0
- data/adva_cms/app/assets/images/adva_cms/theme_selected.png +0 -0
- data/adva_cms/app/assets/javascripts/admin.js +1 -0
- data/adva_cms/app/assets/javascripts/adva_cms/admin/jquery.admin.js +23 -0
- data/adva_cms/app/assets/javascripts/adva_cms/admin/jquery.article.js +22 -0
- data/adva_cms/app/assets/javascripts/adva_cms/admin/jquery.cached_pages.js +14 -0
- data/adva_cms/app/assets/javascripts/adva_cms/admin/jquery.table_tree.js +7 -0
- data/adva_cms/app/assets/javascripts/adva_cms/application.js +14 -0
- data/adva_cms/app/assets/javascripts/adva_cms/base.js +4 -0
- data/adva_cms/app/assets/javascripts/adva_cms/cookie.js +49 -0
- data/adva_cms/app/assets/javascripts/adva_cms/jquery.common.js +41 -0
- data/adva_cms/app/assets/javascripts/adva_cms/jquery.dates.js +51 -0
- data/adva_cms/app/assets/javascripts/adva_cms/jquery.flash.js +57 -0
- data/adva_cms/app/assets/javascripts/adva_cms/jquery.roles.js +25 -0
- data/adva_cms/app/assets/javascripts/adva_cms/jquery/jquery-lowpro.js +224 -0
- data/adva_cms/app/assets/javascripts/adva_cms/jquery/jquery.qtip.js +2085 -0
- data/adva_cms/app/assets/javascripts/adva_cms/jquery/jquery.table_tree.js +307 -0
- data/adva_cms/app/assets/javascripts/adva_cms/jquery/jquery.tablednd_0_5.js +386 -0
- data/adva_cms/app/assets/javascripts/adva_cms/json.js +139 -0
- data/adva_cms/app/assets/stylesheets/admin.css +1 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin.css +16 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/alternate/common.css +76 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/alternate/forms.css +121 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/alternate/header.css +125 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/alternate/layout.css +103 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/alternate/lists.css +153 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/alternate/sidebar.css +65 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/alternate/top.css +123 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/common.css +76 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/content.css +11 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/forms.css +116 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/header.css +114 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/helptip.css +35 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/layout.css +56 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/lists.css +152 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/projection.css +118 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/reset.css +25 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/screen/top.css +8 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/sidebar.css +67 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/themes.css +49 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/top.css +83 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/admin/users.css +40 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/common.css +49 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/default.css +201 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/forms.css +60 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/jquery/alternate/jquery.tooltip.css +13 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/jquery/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/jquery/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/jquery/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/jquery/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/jquery/images/ui-icons_222222_256x240.png +0 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/jquery/images/ui-icons_2e83ff_256x240.png +0 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/jquery/images/ui-icons_454545_256x240.png +0 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/jquery/images/ui-icons_888888_256x240.png +0 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/jquery/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/jquery/jquery-ui.css +406 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/jquery/jquery.tooltip.css +10 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/layout/login.css +8 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/layout/simple.css +8 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/menu.css +129 -0
- data/adva_cms/app/assets/stylesheets/adva_cms/reset.css +25 -0
- data/adva_cms/app/controllers/admin/base_controller.rb +101 -0
- data/adva_cms/app/controllers/admin/categories_controller.rb +3 -0
- data/adva_cms/app/controllers/admin/install_controller.rb +61 -0
- data/adva_cms/app/controllers/admin/page/articles_controller.rb +150 -0
- data/adva_cms/app/controllers/admin/page/categories_controller.rb +62 -0
- data/adva_cms/app/controllers/admin/page/contents_controller.rb +52 -0
- data/adva_cms/app/controllers/admin/page/links_controller.rb +69 -0
- data/adva_cms/app/controllers/admin/pages_controller.rb +2 -0
- data/adva_cms/app/controllers/admin/plugins_controller.rb +40 -0
- data/adva_cms/app/controllers/admin/sections_controller.rb +91 -0
- data/adva_cms/app/controllers/admin/sites_controller.rb +99 -0
- data/adva_cms/app/controllers/articles_controller.rb +81 -0
- data/adva_cms/app/controllers/base_controller.rb +82 -0
- data/adva_cms/app/helpers/admin/base_helper.rb +106 -0
- data/adva_cms/app/helpers/base_helper.rb +56 -0
- data/adva_cms/app/helpers/content_helper.rb +90 -0
- data/adva_cms/app/helpers/resource_helper.rb +127 -0
- data/adva_cms/app/models/article.rb +40 -0
- data/adva_cms/app/models/categorization.rb +4 -0
- data/adva_cms/app/models/category.rb +60 -0
- data/adva_cms/app/models/content.rb +155 -0
- data/adva_cms/app/models/event.rb +34 -0
- data/adva_cms/app/models/link.rb +4 -0
- data/adva_cms/app/models/page.rb +36 -0
- data/adva_cms/app/models/section.rb +126 -0
- data/adva_cms/app/models/site.rb +104 -0
- data/adva_cms/app/views/admin/cached_pages/_filter.html.erb +8 -0
- data/adva_cms/app/views/admin/cached_pages/destroy.js.erb +18 -0
- data/adva_cms/app/views/admin/cached_pages/index.html.erb +26 -0
- data/adva_cms/app/views/admin/install/confirmation.html.erb +10 -0
- data/adva_cms/app/views/admin/install/index.html.erb +38 -0
- data/adva_cms/app/views/admin/page/articles/_form.html.erb +40 -0
- data/adva_cms/app/views/admin/page/articles/_options.html.erb +20 -0
- data/adva_cms/app/views/admin/page/articles/edit.html.erb +15 -0
- data/adva_cms/app/views/admin/page/articles/new.html.erb +12 -0
- data/adva_cms/app/views/admin/page/categories/edit.html.erb +22 -0
- data/adva_cms/app/views/admin/page/categories/index.html.erb +23 -0
- data/adva_cms/app/views/admin/page/categories/new.html.erb +19 -0
- data/adva_cms/app/views/admin/page/contents/index.html.erb +40 -0
- data/adva_cms/app/views/admin/page/links/_form.html.erb +26 -0
- data/adva_cms/app/views/admin/page/links/_options.html.erb +23 -0
- data/adva_cms/app/views/admin/page/links/edit.html.erb +12 -0
- data/adva_cms/app/views/admin/page/links/new.html.erb +12 -0
- data/adva_cms/app/views/admin/plugins/_form.html.erb +11 -0
- data/adva_cms/app/views/admin/plugins/index.html.erb +16 -0
- data/adva_cms/app/views/admin/plugins/show.html.erb +43 -0
- data/adva_cms/app/views/admin/sections/_form.html.haml +20 -0
- data/adva_cms/app/views/admin/sections/edit.html.haml +6 -0
- data/adva_cms/app/views/admin/sections/index.html.erb +27 -0
- data/adva_cms/app/views/admin/sections/new.html.erb +29 -0
- data/adva_cms/app/views/admin/sections/settings/_page.html.haml +10 -0
- data/adva_cms/app/views/admin/shared/_header.html.erb +18 -0
- data/adva_cms/app/views/admin/shared/_language_select.html.erb +6 -0
- data/adva_cms/app/views/admin/shared/_section.html.erb +8 -0
- data/adva_cms/app/views/admin/shared/_section_summary.html.erb +23 -0
- data/adva_cms/app/views/admin/shared/_section_tree.html.erb +23 -0
- data/adva_cms/app/views/admin/sites/_email_notifications.html.erb +9 -0
- data/adva_cms/app/views/admin/sites/_form.html.erb +15 -0
- data/adva_cms/app/views/admin/sites/_recent_users.html.erb +11 -0
- data/adva_cms/app/views/admin/sites/_sections.html.erb +10 -0
- data/adva_cms/app/views/admin/sites/_unapproved_comments.html.erb +10 -0
- data/adva_cms/app/views/admin/sites/edit.html.erb +4 -0
- data/adva_cms/app/views/admin/sites/index.html.erb +21 -0
- data/adva_cms/app/views/admin/sites/multi_sites_disabled.html.erb +11 -0
- data/adva_cms/app/views/admin/sites/new.html.erb +21 -0
- data/adva_cms/app/views/admin/sites/show.html.erb +16 -0
- data/adva_cms/app/views/categories/_checkboxes.html.erb +12 -0
- data/adva_cms/app/views/layouts/admin.html.haml +50 -0
- data/adva_cms/app/views/layouts/default.html.erb +38 -0
- data/adva_cms/app/views/layouts/simple.html.erb +22 -0
- data/adva_cms/app/views/pages/articles/index.html.erb +10 -0
- data/adva_cms/app/views/pages/articles/show.html.erb +17 -0
- data/adva_cms/app/views/shared/_flash.html.erb +3 -0
- data/adva_cms/app/views/shared/_footer.html.erb +4 -0
- data/adva_cms/app/views/shared/_menu.html.erb +10 -0
- data/adva_cms/app/views/shared/_sidebar.html.erb +19 -0
- data/adva_cms/app/views/shared/messages/insufficient_permissions.html.erb +4 -0
- data/adva_cms/config/environment.rb +21 -0
- data/adva_cms/config/initializers/has_options.rb +2 -0
- data/adva_cms/config/initializers/has_permalink.rb +27 -0
- data/adva_cms/config/initializers/mailer.rb +12 -0
- data/adva_cms/config/initializers/menus.rb +184 -0
- data/adva_cms/config/initializers/roles.rb +91 -0
- data/adva_cms/config/initializers/settings.rb +26 -0
- data/adva_cms/config/initializers/site.rb +5 -0
- data/adva_cms/config/initializers/translations_are_a_pain.rb +9 -0
- data/adva_cms/config/locales/en.yml +1295 -0
- data/adva_cms/config/routes.rb +47 -0
- data/adva_cms/db/migrate/20080401000001_create_sites_table.rb +28 -0
- data/adva_cms/db/migrate/20080401000002_create_sections_table.rb +25 -0
- data/adva_cms/db/migrate/20080401000003_create_contents_table.rb +35 -0
- data/adva_cms/db/migrate/20080401000004_create_categories_table.rb +17 -0
- data/adva_cms/db/migrate/20080401000005_create_category_assignments.rb +12 -0
- data/adva_cms/db/migrate/20080401000006_create_taggable_tables.rb +26 -0
- data/adva_cms/db/migrate/20080710000000_create_plugin_configs.rb +13 -0
- data/adva_cms/db/migrate/20080715131051_plugin_owner_column.rb +13 -0
- data/adva_cms/db/migrate/20081208161500_add_content_type_to_join_tables.rb +10 -0
- data/adva_cms/db/migrate/20090216114034_rename_category_assignment_to_categorization.rb +13 -0
- data/adva_cms/db/migrate/20090305123429_move_sections_to_pages.rb +9 -0
- data/adva_cms/db/migrate/20090519132700_add_published_at_to_sections.rb +10 -0
- data/adva_cms/db/migrate/20090702085459_create_section_translations.rb +9 -0
- data/adva_cms/db/migrate/20090702200226_create_category_translations.rb +9 -0
- data/adva_cms/db/migrate/20090707171100_upgrade_paperclip_paths.rb +31 -0
- data/adva_cms/db/migrate/20090709111934_add_email_notification_to_site.rb +12 -0
- data/adva_cms/db/migrate/20091026000906_add_nesting_to_articles.rb +26 -0
- data/adva_cms/db/migrate/20140721000000_add_title_to_contents.rb +7 -0
- data/adva_cms/lib/adva_cms.rb +50 -0
- data/adva_cms/lib/adva_cms/version.rb +3 -0
- data/adva_cms/lib/core_ext.rb +7 -0
- data/adva_cms/lib/extensible_forms.rb +283 -0
- data/adva_cms/lib/has_options.rb +46 -0
- data/adva_cms/lib/html_diff.rb +48 -0
- data/adva_cms/lib/rails_ext.rb +15 -0
- data/adva_cms/lib/rails_ext/action_controller/cacheable_flash.rb +30 -0
- data/adva_cms/lib/rails_ext/action_controller/content_for_assignments.rb +105 -0
- data/adva_cms/lib/rails_ext/action_controller/default_params.rb +19 -0
- data/adva_cms/lib/rails_ext/action_controller/event_helper.rb +18 -0
- data/adva_cms/lib/rails_ext/action_controller/page_caching.rb +23 -0
- data/adva_cms/lib/rails_ext/action_controller/render_with_error_proc.rb +46 -0
- data/adva_cms/lib/rails_ext/action_controller/responds_to_parent.rb +46 -0
- data/adva_cms/lib/rails_ext/action_controller/url_for_returning.rb +12 -0
- data/adva_cms/lib/rails_ext/active_record/exists.rb +5 -0
- data/adva_cms/lib/rails_ext/active_record/sti_instantiation.rb +35 -0
- data/adva_cms/lib/rails_ext/active_record/sticky_changes.rb +30 -0
- data/adva_cms/lib/rails_ext/railties/plugin.rb +58 -0
- data/adva_cms/lib/rails_ext/railties/plugin_configuration.rb +72 -0
- data/adva_cms/lib/rails_ext/railties/plugin_initializers.rb +25 -0
- data/adva_cms/lib/registry.rb +49 -0
- data/adva_cms/lib/tasks/adva_cms.rake +178 -0
- data/adva_cms/lib/tasks/translation.rake +69 -0
- data/adva_cms/lib/time_hacks.rb +57 -0
- data/adva_cms/lib/webrat_patch.rb +11 -0
- data/adva_cms/locale/rails/fr.yml +123 -0
- data/adva_cms/test/NOTES +56 -0
- data/adva_cms/test/contexts.rb +365 -0
- data/adva_cms/test/fixtures.rb +190 -0
- data/adva_cms/test/fixtures/templates/alternative_templates/index.html.erb +1 -0
- data/adva_cms/test/fixtures/templates/context_templates_test/index.html.erb +1 -0
- data/adva_cms/test/fixtures/templates/context_templates_test/show.html.erb +0 -0
- data/adva_cms/test/fixtures/templates/layouts/alternative.html.erb +0 -0
- data/adva_cms/test/fixtures/templates/layouts/default.html.erb +0 -0
- data/adva_cms/test/fixtures/templates/menu/shared/_menu.html.erb +8 -0
- data/adva_cms/test/functional/admin/articles_controller_test.rb +329 -0
- data/adva_cms/test/functional/admin/base_controller_test.rb +68 -0
- data/adva_cms/test/functional/admin/cached_pages_controller_test.rb +66 -0
- data/adva_cms/test/functional/admin/categories_controller_test.rb +164 -0
- data/adva_cms/test/functional/admin/cells_controller_spec.rb +32 -0
- data/adva_cms/test/functional/admin/install_controller_test.rb +89 -0
- data/adva_cms/test/functional/admin/plugins_controller_test.rb +93 -0
- data/adva_cms/test/functional/admin/sections_controller_test.rb +201 -0
- data/adva_cms/test/functional/admin/sites_controller_test.rb +240 -0
- data/adva_cms/test/functional/asset_tag_expansions_test.rb +82 -0
- data/adva_cms/test/functional/base_controller_test.rb +73 -0
- data/adva_cms/test/functional/page_articles_controller_test.rb +168 -0
- data/adva_cms/test/functional/page_articles_routes_test.rb +73 -0
- data/adva_cms/test/integration/admin/cached_pages_test.rb +43 -0
- data/adva_cms/test/integration/admin/categories_test.rb +66 -0
- data/adva_cms/test/integration/admin/custom_templates_test.rb +42 -0
- data/adva_cms/test/integration/admin/filtering_articles_test.rb +32 -0
- data/adva_cms/test/integration/admin/plugins.rb +32 -0
- data/adva_cms/test/integration/admin/section_article_test.rb +150 -0
- data/adva_cms/test/integration/admin/section_test.rb +88 -0
- data/adva_cms/test/integration/admin/sites_test.rb +48 -0
- data/adva_cms/test/integration/installation_test.rb +109 -0
- data/adva_cms/test/integration/page_article_comment_test.rb +51 -0
- data/adva_cms/test/integration/page_article_test.rb +87 -0
- data/adva_cms/test/integration/section_index_test.rb +37 -0
- data/adva_cms/test/javascript/assets/jquery-lowpro.js +224 -0
- data/adva_cms/test/javascript/assets/jquery-ui.js +298 -0
- data/adva_cms/test/javascript/assets/jquery.js +4376 -0
- data/adva_cms/test/javascript/assets/testrunner.js +815 -0
- data/adva_cms/test/javascript/assets/testsuite.css +120 -0
- data/adva_cms/test/javascript/lib/jstest.rb +588 -0
- data/adva_cms/test/javascript/templates/test_case.erb +33 -0
- data/adva_cms/test/plugins/adva_context_templates/context_templates_test.rb +138 -0
- data/adva_cms/test/plugins/adva_post_ping/controller/integration_test.rb +78 -0
- data/adva_cms/test/plugins/adva_post_ping/post_ping_test.rb +94 -0
- data/adva_cms/test/plugins/adva_url_history/article_test.rb +94 -0
- data/adva_cms/test/plugins/adva_url_history/init_url_history.rb +18 -0
- data/adva_cms/test/plugins/adva_url_history/section_test.rb +49 -0
- data/adva_cms/test/test_helper.rb +75 -0
- data/adva_cms/test/test_helper/clear_directories.rb +16 -0
- data/adva_cms/test/test_helper/ensure_single_site_mode.rb +10 -0
- data/adva_cms/test/test_helper/extensions/cacheable_flash.rb +14 -0
- data/adva_cms/test/test_helper/extensions/cronjob.rb +11 -0
- data/adva_cms/test/test_helper/extensions/even_test_log.rb +21 -0
- data/adva_cms/test/test_helper/extensions/integration_test.rb +78 -0
- data/adva_cms/test/test_helper/extensions/matchy.rb +365 -0
- data/adva_cms/test/test_helper/extensions/matchy_adva_cms.rb +441 -0
- data/adva_cms/test/test_helper/extensions/rails_patch.rb +40 -0
- data/adva_cms/test/test_helper/extensions/rr.rb +7 -0
- data/adva_cms/test/test_helper/extensions/test_unit.rb +35 -0
- data/adva_cms/test/test_helper/extensions/with_sugar.rb +166 -0
- data/adva_cms/test/test_helper/parse_options.rb +18 -0
- data/adva_cms/test/test_helper/setup_db_transaction.rb +15 -0
- data/adva_cms/test/test_helper/setup_webrat.rb +9 -0
- data/adva_cms/test/test_helper/test_server/init.rb +15 -0
- data/adva_cms/test/unit/helpers/admin/base_helper_test.rb +139 -0
- data/adva_cms/test/unit/helpers/base_helper_spec.rb +54 -0
- data/adva_cms/test/unit/helpers/base_helper_test.rb +165 -0
- data/adva_cms/test/unit/helpers/content_helper_test.rb +127 -0
- data/adva_cms/test/unit/helpers/resource_helper_test.rb +180 -0
- data/adva_cms/test/unit/i18n_test.rb +22 -0
- data/adva_cms/test/unit/lib/cells_ext_spec.rb +96 -0
- data/adva_cms/test/unit/lib/extensible_forms_test.rb +362 -0
- data/adva_cms/test/unit/lib/menu_test.rb +119 -0
- data/adva_cms/test/unit/lib/rails_ext/content_for_assignments_test.rb +75 -0
- data/adva_cms/test/unit/lib/rails_ext/plugin_configuration_test.rb +40 -0
- data/adva_cms/test/unit/lib/rails_ext/sticky_changes_test.rb +33 -0
- data/adva_cms/test/unit/lib/registry_test.rb +91 -0
- data/adva_cms/test/unit/lib/routing_filter/routing_filter_categories_spec.rb +63 -0
- data/adva_cms/test/unit/lib/routing_filter/routing_filter_categories_test.rb +159 -0
- data/adva_cms/test/unit/lib/routing_filter/routing_filter_locale_spec.rb +73 -0
- data/adva_cms/test/unit/lib/routing_filter/routing_filter_root_blog_archive_spec.rb +40 -0
- data/adva_cms/test/unit/lib/routing_filter/routing_filter_root_section_articles_spec.rb +48 -0
- data/adva_cms/test/unit/lib/routing_filter/routing_filter_root_wikipages_spec.rb +40 -0
- data/adva_cms/test/unit/lib/routing_filter/routing_filter_sections_spec.rb +143 -0
- data/adva_cms/test/unit/lib/routing_filter/routing_filter_sections_test.rb +32 -0
- data/adva_cms/test/unit/lib/routing_filter/routing_filter_sets_test.rb +86 -0
- data/adva_cms/test/unit/models/article_test.rb +191 -0
- data/adva_cms/test/unit/models/category_test.rb +68 -0
- data/adva_cms/test/unit/models/content_test.rb +409 -0
- data/adva_cms/test/unit/models/counter_test.rb +43 -0
- data/adva_cms/test/unit/models/event_test.rb +41 -0
- data/adva_cms/test/unit/models/nested_categories_test.rb +34 -0
- data/adva_cms/test/unit/models/page_test.rb +63 -0
- data/adva_cms/test/unit/models/section_test.rb +315 -0
- data/adva_cms/test/unit/models/site_test.rb +199 -0
- data/adva_cms/test/unit/observers/activities_article_observer_test.rb +42 -0
- data/adva_cms/vendor/gems/belongs_to_cacheable/.gitignore +17 -0
- data/adva_cms/vendor/gems/belongs_to_cacheable/Gemfile +4 -0
- data/adva_cms/vendor/gems/belongs_to_cacheable/LICENSE +22 -0
- data/adva_cms/vendor/gems/belongs_to_cacheable/README.md +29 -0
- data/adva_cms/vendor/gems/belongs_to_cacheable/Rakefile +2 -0
- data/adva_cms/vendor/gems/belongs_to_cacheable/belongs_to_cacheable.gemspec +22 -0
- data/adva_cms/vendor/gems/belongs_to_cacheable/init.rb +1 -0
- data/adva_cms/vendor/gems/belongs_to_cacheable/lib/active_record/belongs_to_cacheable.rb +77 -0
- data/adva_cms/vendor/gems/belongs_to_cacheable/lib/belongs_to_cacheable.rb +3 -0
- data/adva_cms/vendor/gems/belongs_to_cacheable/lib/belongs_to_cacheable/version.rb +3 -0
- data/adva_cms/vendor/gems/belongs_to_cacheable/spec/belongs_to_cacheable_spec.rb +52 -0
- data/adva_cms/vendor/gems/belongs_to_cacheable/spec/spec_helper.rb +50 -0
- data/adva_cms/vendor/gems/filtered_column/.gitignore +17 -0
- data/adva_cms/vendor/gems/filtered_column/Gemfile +4 -0
- data/adva_cms/vendor/gems/filtered_column/LICENSE +22 -0
- data/adva_cms/vendor/gems/filtered_column/README +4 -0
- data/adva_cms/vendor/gems/filtered_column/README.md +29 -0
- data/adva_cms/vendor/gems/filtered_column/Rakefile +23 -0
- data/adva_cms/vendor/gems/filtered_column/filtered_column.gemspec +17 -0
- data/adva_cms/vendor/gems/filtered_column/lib/filtered_column.rb +17 -0
- data/adva_cms/vendor/gems/filtered_column/lib/filtered_column/filters/base.rb +28 -0
- data/adva_cms/vendor/gems/filtered_column/lib/filtered_column/filters/smartypants_filter.rb +14 -0
- data/adva_cms/vendor/gems/filtered_column/lib/filtered_column/filters/textile_filter.rb +13 -0
- data/adva_cms/vendor/gems/filtered_column/lib/filtered_column/macros/base.rb +25 -0
- data/adva_cms/vendor/gems/filtered_column/lib/filtered_column/mixin.rb +46 -0
- data/adva_cms/vendor/gems/filtered_column/lib/filtered_column/processor.rb +52 -0
- data/adva_cms/vendor/gems/filtered_column/lib/filtered_column/version.rb +3 -0
- data/adva_cms/vendor/gems/filtered_column/tasks/filtered_column_tasks.rake +4 -0
- data/adva_cms/vendor/gems/filtered_column/test/abstract_unit.rb +73 -0
- data/adva_cms/vendor/gems/filtered_column/test/filtered_column_test.rb +53 -0
- data/adva_cms/vendor/gems/filtered_column/test/macro_filter_test.rb +23 -0
- data/adva_cms/vendor/gems/has_counter/.gitignore +17 -0
- data/adva_cms/vendor/gems/has_counter/Gemfile +4 -0
- data/adva_cms/vendor/gems/has_counter/LICENSE +22 -0
- data/adva_cms/vendor/gems/has_counter/MIT-LICENSE +20 -0
- data/adva_cms/vendor/gems/has_counter/README.markdown +64 -0
- data/adva_cms/vendor/gems/has_counter/README.md +29 -0
- data/adva_cms/vendor/gems/has_counter/Rakefile +2 -0
- data/adva_cms/vendor/gems/has_counter/db/migrate/20080601194338_create_counters_table.rb.rb +13 -0
- data/adva_cms/vendor/gems/has_counter/has_counter.gemspec +17 -0
- data/adva_cms/vendor/gems/has_counter/lib/active_record/has_counter.rb +64 -0
- data/adva_cms/vendor/gems/has_counter/lib/counter.rb +23 -0
- data/adva_cms/vendor/gems/has_counter/lib/has_counter.rb +4 -0
- data/adva_cms/vendor/gems/has_counter/lib/has_counter/version.rb +3 -0
- data/adva_cms/vendor/gems/has_counter/spec/has_counter.sqlite3.db +0 -0
- data/adva_cms/vendor/gems/has_counter/spec/has_counter_spec.rb +55 -0
- data/adva_cms/vendor/gems/has_counter/spec/spec_helper.rb +117 -0
- data/adva_cms/vendor/gems/has_filter/.gitignore +17 -0
- data/adva_cms/vendor/gems/has_filter/Gemfile +4 -0
- data/adva_cms/vendor/gems/has_filter/LICENSE +22 -0
- data/adva_cms/vendor/gems/has_filter/README.md +29 -0
- data/adva_cms/vendor/gems/has_filter/Rakefile +2 -0
- data/adva_cms/vendor/gems/has_filter/app/assets/images/has_filter/filter_add.png +0 -0
- data/adva_cms/vendor/gems/has_filter/app/assets/images/has_filter/filter_button_left.png +0 -0
- data/adva_cms/vendor/gems/has_filter/app/assets/images/has_filter/filter_button_right.png +0 -0
- data/adva_cms/vendor/gems/has_filter/app/assets/images/has_filter/filter_remove.png +0 -0
- data/adva_cms/vendor/gems/has_filter/app/assets/javascripts/has_filter/filter.js +35 -0
- data/adva_cms/vendor/gems/has_filter/app/assets/javascripts/has_filter/jquery.filter.js +23 -0
- data/adva_cms/vendor/gems/has_filter/app/assets/stylesheets/has_filter/alternate/filter.css +102 -0
- data/adva_cms/vendor/gems/has_filter/app/assets/stylesheets/has_filter/filter.css +100 -0
- data/adva_cms/vendor/gems/has_filter/app/helpers/filter_helper.rb +3 -0
- data/adva_cms/vendor/gems/has_filter/has_filter.gemspec +17 -0
- data/adva_cms/vendor/gems/has_filter/init.rb +3 -0
- data/adva_cms/vendor/gems/has_filter/lib/has_filter.rb +22 -0
- data/adva_cms/vendor/gems/has_filter/lib/has_filter/active_record/act_macro.rb +102 -0
- data/adva_cms/vendor/gems/has_filter/lib/has_filter/filter.rb +17 -0
- data/adva_cms/vendor/gems/has_filter/lib/has_filter/filter/base.rb +67 -0
- data/adva_cms/vendor/gems/has_filter/lib/has_filter/filter/categorized.rb +24 -0
- data/adva_cms/vendor/gems/has_filter/lib/has_filter/filter/chain.rb +45 -0
- data/adva_cms/vendor/gems/has_filter/lib/has_filter/filter/set.rb +80 -0
- data/adva_cms/vendor/gems/has_filter/lib/has_filter/filter/state.rb +25 -0
- data/adva_cms/vendor/gems/has_filter/lib/has_filter/filter/tagged.rb +22 -0
- data/adva_cms/vendor/gems/has_filter/lib/has_filter/filter/text.rb +55 -0
- data/adva_cms/vendor/gems/has_filter/lib/has_filter/version.rb +3 -0
- data/adva_cms/vendor/gems/has_filter/test/db/setup.rb +45 -0
- data/adva_cms/vendor/gems/has_filter/test/db/test.sqlite3.db +0 -0
- data/adva_cms/vendor/gems/has_filter/test/fixtures.rb +15 -0
- data/adva_cms/vendor/gems/has_filter/test/has_filter/filter_chain_test.rb +41 -0
- data/adva_cms/vendor/gems/has_filter/test/has_filter/filter_scopes_test.rb +102 -0
- data/adva_cms/vendor/gems/has_filter/test/has_filter/filter_tags_test.rb +113 -0
- data/adva_cms/vendor/gems/has_filter/test/has_filter/integration.rb +15 -0
- data/adva_cms/vendor/gems/has_filter/test/has_filter/scopes_test.rb +48 -0
- data/adva_cms/vendor/gems/has_filter/test/log/test.log +34346 -0
- data/adva_cms/vendor/gems/has_filter/test/models.rb +23 -0
- data/adva_cms/vendor/gems/has_filter/test/templates/has_filter/test/index.html.erb +5 -0
- data/adva_cms/vendor/gems/has_filter/test/test_helper.rb +66 -0
- data/adva_cms/vendor/gems/simple_taggable/.gitignore +17 -0
- data/adva_cms/vendor/gems/simple_taggable/Gemfile +4 -0
- data/adva_cms/vendor/gems/simple_taggable/LICENSE +22 -0
- data/adva_cms/vendor/gems/simple_taggable/README +24 -0
- data/adva_cms/vendor/gems/simple_taggable/README.md +29 -0
- data/adva_cms/vendor/gems/simple_taggable/Rakefile +2 -0
- data/adva_cms/vendor/gems/simple_taggable/lib/simple_taggable.rb +153 -0
- data/adva_cms/vendor/gems/simple_taggable/lib/simple_taggable/version.rb +3 -0
- data/adva_cms/vendor/gems/simple_taggable/lib/tag.rb +31 -0
- data/adva_cms/vendor/gems/simple_taggable/lib/tag_list.rb +90 -0
- data/adva_cms/vendor/gems/simple_taggable/lib/tagging.rb +8 -0
- data/adva_cms/vendor/gems/simple_taggable/simple_taggable.gemspec +17 -0
- data/adva_cms/vendor/gems/simple_taggable/test/db/schema.rb +41 -0
- data/adva_cms/vendor/gems/simple_taggable/test/db/simple_taggable.sqlite3.db +0 -0
- data/adva_cms/vendor/gems/simple_taggable/test/fixtures/magazine.rb +3 -0
- data/adva_cms/vendor/gems/simple_taggable/test/fixtures/magazines.yml +2 -0
- data/adva_cms/vendor/gems/simple_taggable/test/fixtures/photo.rb +8 -0
- data/adva_cms/vendor/gems/simple_taggable/test/fixtures/photos.yml +19 -0
- data/adva_cms/vendor/gems/simple_taggable/test/fixtures/post.rb +5 -0
- data/adva_cms/vendor/gems/simple_taggable/test/fixtures/posts.yml +27 -0
- data/adva_cms/vendor/gems/simple_taggable/test/fixtures/subscription.rb +4 -0
- data/adva_cms/vendor/gems/simple_taggable/test/fixtures/subscriptions.yml +3 -0
- data/adva_cms/vendor/gems/simple_taggable/test/fixtures/taggings.yml +112 -0
- data/adva_cms/vendor/gems/simple_taggable/test/fixtures/tags.yml +14 -0
- data/adva_cms/vendor/gems/simple_taggable/test/fixtures/user.rb +6 -0
- data/adva_cms/vendor/gems/simple_taggable/test/fixtures/users.yml +5 -0
- data/adva_cms/vendor/gems/simple_taggable/test/log/simple_taggable.log +1614 -0
- data/adva_cms/vendor/gems/simple_taggable/test/simple_taggable_test.rb +226 -0
- data/adva_cms/vendor/gems/simple_taggable/test/tag_list_test.rb +105 -0
- data/adva_cms/vendor/gems/simple_taggable/test/test_helper.rb +80 -0
- data/adva_cms/vendor/gems/table_builder/.gitignore +17 -0
- data/adva_cms/vendor/gems/table_builder/Gemfile +4 -0
- data/adva_cms/vendor/gems/table_builder/LICENSE +22 -0
- data/adva_cms/vendor/gems/table_builder/README.md +29 -0
- data/adva_cms/vendor/gems/table_builder/Rakefile +2 -0
- data/adva_cms/vendor/gems/table_builder/lib/table_builder.rb +27 -0
- data/adva_cms/vendor/gems/table_builder/lib/table_builder/body.rb +28 -0
- data/adva_cms/vendor/gems/table_builder/lib/table_builder/cell.rb +21 -0
- data/adva_cms/vendor/gems/table_builder/lib/table_builder/column.rb +26 -0
- data/adva_cms/vendor/gems/table_builder/lib/table_builder/foot.rb +6 -0
- data/adva_cms/vendor/gems/table_builder/lib/table_builder/head.rb +16 -0
- data/adva_cms/vendor/gems/table_builder/lib/table_builder/row.rb +40 -0
- data/adva_cms/vendor/gems/table_builder/lib/table_builder/rows.rb +26 -0
- data/adva_cms/vendor/gems/table_builder/lib/table_builder/table.rb +75 -0
- data/adva_cms/vendor/gems/table_builder/lib/table_builder/tag.rb +58 -0
- data/adva_cms/vendor/gems/table_builder/lib/table_builder/version.rb +3 -0
- data/adva_cms/vendor/gems/table_builder/table_builder.gemspec +17 -0
- data/adva_cms/vendor/gems/table_builder/test/fixtures/templates/table_all.html.erb +20 -0
- data/adva_cms/vendor/gems/table_builder/test/fixtures/templates/table_auto_body.html.erb +3 -0
- data/adva_cms/vendor/gems/table_builder/test/fixtures/templates/table_auto_columns.html.erb +1 -0
- data/adva_cms/vendor/gems/table_builder/test/fixtures/templates/table_simple.html.erb +7 -0
- data/adva_cms/vendor/gems/table_builder/test/table_builder/table_test.rb +230 -0
- data/adva_cms/vendor/gems/table_builder/test/test_helper.rb +49 -0
- data/adva_cms/vendor/gems/tags/.gitignore +17 -0
- data/adva_cms/vendor/gems/tags/Gemfile +4 -0
- data/adva_cms/vendor/gems/tags/LICENSE +22 -0
- data/adva_cms/vendor/gems/tags/README.md +29 -0
- data/adva_cms/vendor/gems/tags/Rakefile +2 -0
- data/adva_cms/vendor/gems/tags/lib/breadcrumbs.rb +13 -0
- data/adva_cms/vendor/gems/tags/lib/menu.rb +179 -0
- data/adva_cms/vendor/gems/tags/lib/menu/builder.rb +74 -0
- data/adva_cms/vendor/gems/tags/lib/tags.rb +7 -0
- data/adva_cms/vendor/gems/tags/lib/tags/tag.rb +125 -0
- data/adva_cms/vendor/gems/tags/lib/tags/version.rb +3 -0
- data/adva_cms/vendor/gems/tags/tags.gemspec +17 -0
- data/adva_cms/vendor/gems/tags/test/tags/menu_test.rb +173 -0
- data/adva_cms/vendor/gems/tags/test/tags/tag_test.rb +13 -0
- data/adva_cms/vendor/gems/tags/test/test_helper.rb +18 -0
- data/adva_cms/vendor/gems/xss_terminate/.gitignore +17 -0
- data/adva_cms/vendor/gems/xss_terminate/Gemfile +4 -0
- data/adva_cms/vendor/gems/xss_terminate/LICENSE +22 -0
- data/adva_cms/vendor/gems/xss_terminate/MIT-LICENSE +20 -0
- data/adva_cms/vendor/gems/xss_terminate/README +94 -0
- data/adva_cms/vendor/gems/xss_terminate/README.md +29 -0
- data/adva_cms/vendor/gems/xss_terminate/Rakefile +23 -0
- data/adva_cms/vendor/gems/xss_terminate/lib/html5lib_sanitize.rb +2453 -0
- data/adva_cms/vendor/gems/xss_terminate/lib/rails_sanitize.rb +8 -0
- data/adva_cms/vendor/gems/xss_terminate/lib/xss_terminate.rb +141 -0
- data/adva_cms/vendor/gems/xss_terminate/lib/xss_terminate/version.rb +3 -0
- data/adva_cms/vendor/gems/xss_terminate/tasks/xss_terminate_tasks.rake +7 -0
- data/adva_cms/vendor/gems/xss_terminate/test/models/comment.rb +5 -0
- data/adva_cms/vendor/gems/xss_terminate/test/models/entry.rb +7 -0
- data/adva_cms/vendor/gems/xss_terminate/test/models/message.rb +3 -0
- data/adva_cms/vendor/gems/xss_terminate/test/models/person.rb +5 -0
- data/adva_cms/vendor/gems/xss_terminate/test/models/review.rb +5 -0
- data/adva_cms/vendor/gems/xss_terminate/test/schema.rb +34 -0
- data/adva_cms/vendor/gems/xss_terminate/test/setup_test.rb +16 -0
- data/adva_cms/vendor/gems/xss_terminate/test/xss_terminate_test.rb +50 -0
- data/adva_cms/vendor/gems/xss_terminate/xss_terminate.gemspec +17 -0
- data/adva_comments/.gitignore +17 -0
- data/adva_comments/Gemfile +4 -0
- data/adva_comments/LICENSE +22 -0
- data/adva_comments/README.md +29 -0
- data/adva_comments/Rakefile +2 -0
- data/adva_comments/adva_comments.gemspec +19 -0
- data/adva_comments/app/assets/javascripts/adva_comments/jquery.comments.js +41 -0
- data/adva_comments/app/assets/javascripts/antispam.js +11 -0
- data/adva_comments/app/assets/stylesheets/adva_comments/admin/comments.css +34 -0
- data/adva_comments/app/assets/stylesheets/adva_comments/comments.css +50 -0
- data/adva_comments/app/controllers/admin/comments_controller.rb +88 -0
- data/adva_comments/app/controllers/comments_controller.rb +106 -0
- data/adva_comments/app/helpers/admin/comments_helper.rb +32 -0
- data/adva_comments/app/helpers/comments_helper.rb +73 -0
- data/adva_comments/app/mailers/comment_mailer.rb +8 -0
- data/adva_comments/app/models/comment.rb +93 -0
- data/adva_comments/app/views/admin/articles/_comments_settings.html.erb +1 -0
- data/adva_comments/app/views/admin/comments/_form.html.erb +12 -0
- data/adva_comments/app/views/admin/comments/edit.html.erb +9 -0
- data/adva_comments/app/views/admin/comments/index.html.erb +43 -0
- data/adva_comments/app/views/admin/sections/_comments_settings.html.erb +7 -0
- data/adva_comments/app/views/admin/sites/_comments_settings.html.erb +7 -0
- data/adva_comments/app/views/comment_mailer/comment_notification.html.erb +12 -0
- data/adva_comments/app/views/comments/_comment.html.erb +13 -0
- data/adva_comments/app/views/comments/_form.html.erb +43 -0
- data/adva_comments/app/views/comments/_list.html.erb +8 -0
- data/adva_comments/app/views/comments/comments.atom.builder +16 -0
- data/adva_comments/app/views/comments/preview.html.erb +3 -0
- data/adva_comments/app/views/comments/show.html.erb +12 -0
- data/adva_comments/config/initializers/article.rb +13 -0
- data/adva_comments/config/initializers/content.rb +17 -0
- data/adva_comments/config/initializers/controllers.rb +43 -0
- data/adva_comments/config/initializers/menus.rb +24 -0
- data/adva_comments/config/initializers/role_contexts.rb +3 -0
- data/adva_comments/config/initializers/section.rb +15 -0
- data/adva_comments/config/initializers/site.rb +11 -0
- data/adva_comments/config/initializers/wikipage.rb +4 -0
- data/adva_comments/config/routes.rb +11 -0
- data/adva_comments/db/migrate/20080401000007_create_comments_table.rb +22 -0
- data/adva_comments/db/migrate/20080721141112_add_comment_board_id.rb +9 -0
- data/adva_comments/lib/action_controller/acts_as_commentable.rb +43 -0
- data/adva_comments/lib/active_record/has_many_comments.rb +49 -0
- data/adva_comments/lib/adva_comments.rb +19 -0
- data/adva_comments/lib/adva_comments/version.rb +3 -0
- data/adva_comments/lib/format.rb +3 -0
- data/adva_comments/test/contexts.rb +29 -0
- data/adva_comments/test/functional/admin/comments_controller_test.rb +200 -0
- data/adva_comments/test/functional/comments_controller_test.rb +133 -0
- data/adva_comments/test/functional/comments_routes_test.rb +17 -0
- data/adva_comments/test/test_helper.rb +4 -0
- data/adva_comments/test/unit/helpers/admin/comments_helper_test.rb +23 -0
- data/adva_comments/test/unit/helpers/comments_helper_test.rb +147 -0
- data/adva_comments/test/unit/models/comment_test.rb +150 -0
- data/adva_comments/test/unit/models/commentable_test.rb +30 -0
- data/adva_comments/test/unit/observers/activities_comment_observer_test.rb +45 -0
- data/adva_fckeditor/.gitignore +17 -0
- data/adva_fckeditor/Gemfile +4 -0
- data/adva_fckeditor/LICENSE +22 -0
- data/adva_fckeditor/README +21 -0
- data/adva_fckeditor/README.md +29 -0
- data/adva_fckeditor/Rakefile +2 -0
- data/adva_fckeditor/adva_fckeditor.gemspec +19 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/config.js +58 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckcontextmenu.js +223 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckdataprocessor.js +119 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js +53 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js +58 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckdomrange.js +935 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckdomrange_gecko.js +104 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckdomrange_ie.js +199 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckdomrangeiterator.js +327 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckeditingarea.js +368 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckelementpath.js +89 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckenterkey.js +708 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckevents.js +71 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckhtmliterator.js +142 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckicon.js +103 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckiecleanup.js +68 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckimagepreloader.js +64 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckkeystrokehandler.js +141 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckmenublock.js +153 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckmenublockpanel.js +54 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckmenuitem.js +161 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckpanel.js +463 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckplugin.js +56 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckspecialcombo.js +376 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckstyle.js +1500 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbar.js +103 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js +36 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js +38 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarbutton.js +81 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarbuttonui.js +198 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js +139 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js +98 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js +76 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js +103 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js +146 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js +200 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckw3crange.js +451 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckxml.js +108 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckxml_gecko.js +106 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckxml_ie.js +93 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fck_othercommands.js +634 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckblockquotecommand.js +281 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js +61 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckfitwindow.js +213 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckindentcommands.js +282 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckjustifycommands.js +173 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fcklistcommands.js +382 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fcknamedcommand.js +39 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js +40 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js +40 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckremoveformatcommand.js +45 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckshowblocks.js +94 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js +49 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js +72 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckstylecommand.js +60 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fcktablecommand.js +106 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js +201 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/fckconstants.js +56 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/fckeditorapi.js +179 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/fckjscoreextensions.js +159 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/fckscriptloader.js +122 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fck.js +1256 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fck_contextmenu.js +345 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fck_gecko.js +497 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fck_ie.js +456 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckbrowserinfo.js +61 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckcodeformatter.js +100 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckcommands.js +172 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckconfig.js +237 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckdebug.js +59 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckdebug_empty.js +31 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckdialog.js +239 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckdocumentprocessor.js +270 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckdomtools.js +1057 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcklanguagemanager.js +165 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcklisthandler.js +152 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcklistslib.js +63 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckplugins.js +46 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckregexlib.js +100 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckselection.js +42 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckselection_gecko.js +228 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckselection_ie.js +287 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckstyles.js +381 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcktablehandler.js +863 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcktablehandler_gecko.js +56 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcktablehandler_ie.js +64 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcktoolbaritems.js +124 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcktoolbarset.js +399 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcktools.js +749 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcktools_gecko.js +282 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcktools_ie.js +234 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckundo.js +223 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckurlparams.js +39 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckxhtml.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckxhtml_gecko.js +114 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckxhtml_ie.js +213 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckxhtmlentities.js +357 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/behaviors/disablehandles.htc +15 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/behaviors/showtableborders.htc +36 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/fck_editorarea.css +110 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/fck_internal.css +199 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/fck_showtableborders_gecko.css +49 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_address.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_blockquote.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_div.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_h1.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_h2.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_h3.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_h4.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_h5.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_h6.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_p.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_pre.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/fck_anchor.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/fck_flashlogo.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/fck_hiddenfield.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/fck_pagebreak.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/fck_plugin.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/common/fck_dialog_common.css +85 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/common/fck_dialog_common.js +347 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/common/images/locked.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/common/images/reset.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/common/images/unlocked.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_about.html +161 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_about/logo_fredck.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_anchor.html +220 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_button.html +104 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_checkbox.html +104 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_colorselector.html +172 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_div.html +396 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_docprops.html +600 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html +113 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_flash.html +152 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_flash/fck_flash.js +300 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html +50 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_form.html +109 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_hiddenfield.html +115 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_image.html +258 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_image/fck_image.js +512 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_image/fck_image_preview.html +72 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_link.html +295 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_link/fck_link.js +893 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_listprop.html +120 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_paste.html +347 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_radiobutton.html +104 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_replace.html +650 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_select.html +180 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_select/fck_select.js +194 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_smiley.html +111 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_source.html +68 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_specialchar.html +121 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages.html +70 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js +87 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html +153 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm +148 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php +199 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl +181 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js +461 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html +71 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css +49 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js +272 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_table.html +439 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_tablecell.html +293 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_template.html +242 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_template/images/template1.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_template/images/template2.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_template/images/template3.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_textarea.html +94 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_textfield.html +136 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dtd/fck_dtd_test.html +41 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dtd/fck_xhtml10strict.js +116 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dtd/fck_xhtml10transitional.js +140 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/fckdebug.html +153 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/fckdialog.html +819 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/fckeditor.html +317 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/fckeditor.original.html +424 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/browser.css +87 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/browser.html +200 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/frmactualfolder.html +95 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html +114 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/frmfolders.html +198 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/frmresourceslist.html +185 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/frmresourcetype.html +69 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/frmupload.html +115 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/Folder.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/Folder32.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/png.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/html.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/js.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/png.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/spacer.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/js/common.js +88 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/js/fckxml.js +147 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/asp/basexml.asp +63 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/asp/class_upload.asp +353 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/asp/commands.asp +198 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/asp/config.asp +128 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/asp/connector.asp +88 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/asp/io.asp +237 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/asp/upload.asp +65 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/asp/util.asp +55 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/aspx/config.ascx +98 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/aspx/connector.aspx +32 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/aspx/upload.aspx +32 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/ImageObject.cfc +273 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/cf5_connector.cfm +315 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/cf5_upload.cfm +299 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/cf_basexml.cfm +68 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/cf_commands.cfm +230 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/cf_connector.cfm +89 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/cf_io.cfm +291 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/cf_upload.cfm +72 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/cf_util.cfm +131 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/config.cfm +189 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/connector.cfm +32 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/image.cfc +1324 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/upload.cfm +31 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/lasso/config.lasso +65 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/lasso/connector.lasso +322 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/lasso/upload.lasso +168 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/perl/basexml.pl +63 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/perl/commands.pl +187 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/perl/connector.cgi +136 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/perl/io.pl +141 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/perl/upload.cgi +117 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/perl/upload_fck.pl +686 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/perl/util.pl +68 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/php/basexml.php +93 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/php/commands.php +302 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/php/config.php +151 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/php/connector.php +90 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/php/io.php +296 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/php/phpcompat.php +17 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/php/upload.php +59 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/php/util.php +220 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/config.py +146 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/connector.py +118 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/fckcommands.py +198 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/fckconnector.py +90 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/fckoutput.py +116 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/fckutil.py +126 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/htaccess.txt +23 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/upload.py +88 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/wsgi.py +58 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/zope.py +188 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/test.html +210 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/uploadtest.html +192 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/anchor.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/arrow_ltr.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/arrow_rtl.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/angel_smile.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/angry_smile.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/broken_heart.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/cake.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/confused_smile.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/cry_smile.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/devil_smile.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/embaressed_smile.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/envelope.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/heart.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/kiss.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/lightbulb.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/omg_smile.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/regular_smile.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/sad_smile.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/shades_smile.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/teeth_smile.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/thumbs_down.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/thumbs_up.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/tounge_smile.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/wink_smile.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/spacer.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/js/fckadobeair.js +176 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/js/fckeditorcode_gecko.js +108 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/js/fckeditorcode_ie.js +109 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/_translationstatus.txt +79 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/af.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/ar.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/bg.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/bn.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/bs.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/ca.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/cs.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/da.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/de.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/el.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/en-au.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/en-ca.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/en-uk.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/en.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/eo.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/es.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/et.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/eu.js +535 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/fa.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/fi.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/fo.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/fr-ca.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/fr.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/gl.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/gu.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/he.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/hi.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/hr.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/hu.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/is.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/it.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/ja.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/km.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/ko.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/lt.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/lv.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/mn.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/ms.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/nb.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/nl.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/no.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/pl.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/pt-br.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/pt.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/ro.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/ru.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/sk.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/sl.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/sr-latn.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/sr.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/sv.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/th.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/tr.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/uk.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/vi.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/zh-cn.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/zh.js +534 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/autogrow/fckplugin.js +111 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/bbcode/_sample/sample.config.js +26 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/bbcode/_sample/sample.html +67 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/bbcode/fckplugin.js +123 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/dragresizetable/fckplugin.js +529 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/placeholder/fck_placeholder.html +105 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/placeholder/fckplugin.js +187 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/placeholder/lang/de.js +27 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/placeholder/lang/en.js +27 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/placeholder/lang/es.js +27 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/placeholder/lang/fr.js +27 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/placeholder/lang/it.js +27 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/placeholder/lang/pl.js +27 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/placeholder/placeholder.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/simplecommands/fckplugin.js +29 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/tablecommands/fckplugin.js +33 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/_fckviewstrips.html +121 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/fck_dialog.css +402 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/fck_dialog_ie6.js +110 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/fck_editor.css +464 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/fck_strip.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/dialog.sides.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/dialog.sides.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/dialog.sides.rtl.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/sprites.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/sprites.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/toolbar.arrowright.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/toolbar.collapse.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/toolbar.end.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/toolbar.expand.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/toolbar.separator.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/toolbar.start.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/toolbar/configurecell.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/fck_dialog.css +402 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/fck_dialog_ie6.js +110 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/fck_editor.css +476 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/fck_strip.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/dialog.sides.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/dialog.sides.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/dialog.sides.rtl.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/sprites.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/sprites.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/toolbar.arrowright.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/toolbar.bg.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/toolbar.collapse.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/toolbar.end.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/toolbar.expand.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/toolbar.separator.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/toolbar.start.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/fck_dialog.css +402 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/fck_dialog_ie6.js +110 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/fck_editor.css +473 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/fck_strip.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/dialog.sides.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/dialog.sides.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/dialog.sides.rtl.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/sprites.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/sprites.png +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/toolbar.collapse.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/toolbar.end.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/toolbar.expand.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/toolbar.separator.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/toolbar.start.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/wsc/ciframe.html +65 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/wsc/tmpFrameset.html +67 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/editor/wsc/w.html +227 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/fckconfig.js +325 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/fckeditor.js +330 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/fckpackager.xml +262 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/fckstyles.xml +111 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/fcktemplates.xml +103 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor/license.txt +1246 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/cells/cell.html +259 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/cells/fckplugin.js +21 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/cells/lang/de.js +4 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/cells/lang/en.js +4 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/fckplugin.js +8 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/lang/de.js +21 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/lang/en.js +21 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/lang/it.js +22 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/lang/ja.js +21 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/lang/lt.js +21 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/lang/no.js +21 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/lang/pt.js +21 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/lang/zh-cn.js +21 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/lang/zh.js +21 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/license.txt +286 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/readme.txt +54 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/youtube.gif +0 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/youtube.html +47 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/youtube.js +121 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/setup_fckeditor.js +49 -0
- data/adva_fckeditor/app/assets/javascripts/adva_fckeditor/setup_fckeditor.prototype.js +38 -0
- data/adva_fckeditor/lib/adva_fckeditor.rb +13 -0
- data/adva_fckeditor/lib/adva_fckeditor/version.rb +3 -0
- data/adva_fckeditor/lib/fckeditor.rb +6 -0
- data/adva_meta_tags/.gitignore +17 -0
- data/adva_meta_tags/Gemfile +4 -0
- data/adva_meta_tags/LICENSE +22 -0
- data/adva_meta_tags/README +3 -0
- data/adva_meta_tags/README.md +29 -0
- data/adva_meta_tags/Rakefile +2 -0
- data/adva_meta_tags/adva_meta_tags.gemspec +17 -0
- data/adva_meta_tags/app/helpers/meta_tags_helper.rb +30 -0
- data/adva_meta_tags/app/views/admin/articles/_meta_tags.html.erb +7 -0
- data/adva_meta_tags/app/views/admin/sites/_meta_tags.html.erb +15 -0
- data/adva_meta_tags/config/initializers/article.rb +19 -0
- data/adva_meta_tags/config/initializers/site.rb +14 -0
- data/adva_meta_tags/config/locales/de.yml +6 -0
- data/adva_meta_tags/config/locales/en.yml +6 -0
- data/adva_meta_tags/db/migrate/20090218083515_add_metatags_to_contents.rb +17 -0
- data/adva_meta_tags/db/migrate/20090522082000_add_metatags_to_sites.rb +17 -0
- data/adva_meta_tags/lib/adva_meta_tags.rb +11 -0
- data/adva_meta_tags/lib/adva_meta_tags/version.rb +3 -0
- data/adva_meta_tags/test/meta_tags_test.rb +42 -0
- data/adva_rbac/.gitignore +17 -0
- data/adva_rbac/Gemfile +4 -0
- data/adva_rbac/LICENSE +22 -0
- data/adva_rbac/NOTES +98 -0
- data/adva_rbac/README.md +29 -0
- data/adva_rbac/Rakefile +2 -0
- data/adva_rbac/adva_rbac.gemspec +17 -0
- data/adva_rbac/app/controllers/roles_controller.rb +28 -0
- data/adva_rbac/app/helpers/roles_helper.rb +64 -0
- data/adva_rbac/app/views/admin/sections/settings/_permissions.html.erb +16 -0
- data/adva_rbac/app/views/roles/index.js.erb +3 -0
- data/adva_rbac/config/initializers/base_controller.rb +4 -0
- data/adva_rbac/config/initializers/rbac.rb +60 -0
- data/adva_rbac/config/initializers/user.rb +80 -0
- data/adva_rbac/db/migrate/20080402000006_create_role_tables.rb +13 -0
- data/adva_rbac/db/migrate/20090720132900_migrate_roles_table_to_new_rbac.rb +15 -0
- data/adva_rbac/lib/action_controller/guards_permissions.rb +77 -0
- data/adva_rbac/lib/adva_rbac.rb +18 -0
- data/adva_rbac/lib/adva_rbac/version.rb +3 -0
- data/adva_rbac/lib/permission_map.rb +70 -0
- data/adva_rbac/lib/rbac.rb +26 -0
- data/adva_rbac/lib/rbac/acts_as_role_context.rb +44 -0
- data/adva_rbac/lib/rbac/acts_as_role_subject.rb +65 -0
- data/adva_rbac/lib/rbac/context.rb +85 -0
- data/adva_rbac/lib/rbac/role.rb +10 -0
- data/adva_rbac/lib/rbac/role_type.rb +73 -0
- data/adva_rbac/lib/rbac/role_type/active_record.rb +47 -0
- data/adva_rbac/lib/rbac/role_type/static.rb +144 -0
- data/adva_rbac/lib/rbac/subject.rb +52 -0
- data/adva_rbac/test/functional/roles_controller_test.rb +21 -0
- data/adva_rbac/test/integration/user_rbac_test.rb +34 -0
- data/adva_rbac/test/rbac/all.rb +3 -0
- data/adva_rbac/test/rbac/database.rb +155 -0
- data/adva_rbac/test/rbac/database.yml +3 -0
- data/adva_rbac/test/rbac/implementation/active_record_test.rb +17 -0
- data/adva_rbac/test/rbac/implementation/static_test.rb +14 -0
- data/adva_rbac/test/rbac/static.rb +25 -0
- data/adva_rbac/test/rbac/test_helper.rb +62 -0
- data/adva_rbac/test/rbac/tests/acts_as_role_context.rb +37 -0
- data/adva_rbac/test/rbac/tests/context.rb +35 -0
- data/adva_rbac/test/rbac/tests/group.rb +40 -0
- data/adva_rbac/test/rbac/tests/has_role.rb +126 -0
- data/adva_rbac/test/rbac/tests/role_type.rb +110 -0
- data/adva_rbac/test/test_helper.rb +1 -0
- data/adva_rbac/test/unit/helpers/roles_helper_test.rb +69 -0
- data/adva_rbac/test/unit/models/rbac_context_test.rb +37 -0
- data/adva_rbac/test/unit/models/rbac_user_test.rb +100 -0
- data/adva_rbac/test/unit/models/role_test.rb +185 -0
- data/adva_user/.gitignore +17 -0
- data/adva_user/Gemfile +4 -0
- data/adva_user/LICENSE +22 -0
- data/adva_user/README +114 -0
- data/adva_user/README.md +29 -0
- data/adva_user/Rakefile +2 -0
- data/adva_user/adva_user.gemspec +17 -0
- data/adva_user/app/controllers/admin/base_account_controller.rb +13 -0
- data/adva_user/app/controllers/admin/users_controller.rb +95 -0
- data/adva_user/app/controllers/password_controller.rb +36 -0
- data/adva_user/app/controllers/session_controller.rb +30 -0
- data/adva_user/app/helpers/users_helper.rb +27 -0
- data/adva_user/app/models/account.rb +7 -0
- data/adva_user/app/models/membership.rb +16 -0
- data/adva_user/app/models/password_mailer.rb +43 -0
- data/adva_user/app/models/user.rb +106 -0
- data/adva_user/app/views/admin/users/_form.html.erb +29 -0
- data/adva_user/app/views/admin/users/_sidebar.html.erb +8 -0
- data/adva_user/app/views/admin/users/edit.html.erb +7 -0
- data/adva_user/app/views/admin/users/index.html.erb +13 -0
- data/adva_user/app/views/admin/users/new.html.erb +5 -0
- data/adva_user/app/views/admin/users/show.html.erb +27 -0
- data/adva_user/app/views/layouts/login.html.erb +24 -0
- data/adva_user/app/views/password/edit.html.erb +14 -0
- data/adva_user/app/views/password/new.html.erb +13 -0
- data/adva_user/app/views/password_mailer/reset_password_email.html.erb +3 -0
- data/adva_user/app/views/password_mailer/updated_password_email.html.erb +1 -0
- data/adva_user/app/views/session/new.html.erb +17 -0
- data/adva_user/config/initializers/menus.rb +25 -0
- data/adva_user/config/routes.rb +14 -0
- data/adva_user/db/migrate/20080402000001_create_users_table.rb +33 -0
- data/adva_user/db/migrate/20080402000005_create_memberships_table.rb +13 -0
- data/adva_user/db/migrate/20090625124502_create_accounts.rb +13 -0
- data/adva_user/db/migrate/20090625133231_add_account_to_user.rb +10 -0
- data/adva_user/lib/action_controller/authenticate_anonymous.rb +70 -0
- data/adva_user/lib/action_controller/authenticate_user.rb +201 -0
- data/adva_user/lib/active_record/belongs_to_author.rb +37 -0
- data/adva_user/lib/adva_user.rb +28 -0
- data/adva_user/lib/adva_user/version.rb +3 -0
- data/adva_user/lib/login/helper_integration.rb +11 -0
- data/adva_user/lib/login/mail_config.rb +39 -0
- data/adva_user/test/contexts.rb +42 -0
- data/adva_user/test/fixtures.rb +18 -0
- data/adva_user/test/functional/admin/users_controller_test.rb +176 -0
- data/adva_user/test/functional/password_controller_test.rb +96 -0
- data/adva_user/test/functional/session_controller_test.rb +1 -0
- data/adva_user/test/functional/user_controller_test.rb +95 -0
- data/adva_user/test/integration/anonymous_login_test.rb +39 -0
- data/adva_user/test/integration/edit_user_test.rb +44 -0
- data/adva_user/test/integration/memberships_test.rb +52 -0
- data/adva_user/test/integration/user_deletion_test.rb +27 -0
- data/adva_user/test/integration/user_login_test.rb +53 -0
- data/adva_user/test/integration/user_login_with_remember_me_test.rb +20 -0
- data/adva_user/test/integration/user_registration_test.rb +64 -0
- data/adva_user/test/test_helper.rb +1 -0
- data/adva_user/test/unit/cells/user_cell_test.rb +13 -0
- data/adva_user/test/unit/helpers/users_helper_test.rb +52 -0
- data/adva_user/test/unit/models/account_test.rb +21 -0
- data/adva_user/test/unit/models/anonymous_test.rb +54 -0
- data/adva_user/test/unit/models/password_mailer_test.rb +26 -0
- data/adva_user/test/unit/models/user_mailer_test.rb +16 -0
- data/adva_user/test/unit/models/user_test.rb +173 -0
- data/adva_user/vendor/gems/authentication/.gitignore +17 -0
- data/adva_user/vendor/gems/authentication/Gemfile +4 -0
- data/adva_user/vendor/gems/authentication/LICENSE +22 -0
- data/adva_user/vendor/gems/authentication/MIT-LICENSE +38 -0
- data/adva_user/vendor/gems/authentication/README +39 -0
- data/adva_user/vendor/gems/authentication/README.md +29 -0
- data/adva_user/vendor/gems/authentication/RUNNING_UNIT_TESTS +13 -0
- data/adva_user/vendor/gems/authentication/Rakefile +61 -0
- data/adva_user/vendor/gems/authentication/authentication.gemspec +17 -0
- data/adva_user/vendor/gems/authentication/lib/authentication.rb +270 -0
- data/adva_user/vendor/gems/authentication/lib/authentication/active_record_extensions.rb +11 -0
- data/adva_user/vendor/gems/authentication/lib/authentication/bogus.rb +13 -0
- data/adva_user/vendor/gems/authentication/lib/authentication/hash_helper.rb +26 -0
- data/adva_user/vendor/gems/authentication/lib/authentication/ldap.rb +49 -0
- data/adva_user/vendor/gems/authentication/lib/authentication/remember_me.rb +52 -0
- data/adva_user/vendor/gems/authentication/lib/authentication/salted_hash.rb +53 -0
- data/adva_user/vendor/gems/authentication/lib/authentication/single_token.rb +53 -0
- data/adva_user/vendor/gems/authentication/lib/authentication/version.rb +3 -0
- data/adva_user/vendor/gems/authentication/lib/radius/dictionary +207 -0
- data/adva_user/vendor/gems/authentication/test_backup/abstract_unit.rb +30 -0
- data/adva_user/vendor/gems/authentication/test_backup/active_record_extension_test.rb +17 -0
- data/adva_user/vendor/gems/authentication/test_backup/authentication_test.rb +231 -0
- data/adva_user/vendor/gems/authentication/test_backup/database.yml +12 -0
- data/adva_user/vendor/gems/authentication/test_backup/fixtures/user.rb +3 -0
- data/adva_user/vendor/gems/authentication/test_backup/fixtures/users.yml +3 -0
- data/adva_user/vendor/gems/authentication/test_backup/options_test.rb +100 -0
- data/adva_user/vendor/gems/authentication/test_backup/remember_me_test.rb +41 -0
- data/adva_user/vendor/gems/authentication/test_backup/salted_hash_test.rb +38 -0
- data/adva_user/vendor/gems/authentication/test_backup/schema.rb +10 -0
- data/adva_user/vendor/gems/authentication/test_backup/single_token_test.rb +44 -0
- data/adva_user/vendor/gems/authentication/test_backup/test_helper.rb +8 -0
- data/doc/NOTES +332 -0
- data/doc/doc_outline.txt +67 -0
- data/doc/form_builder.txt +45 -0
- data/doc/git_tips.txt +51 -0
- data/doc/js_rbac.txt +54 -0
- data/doc/notes.txt +137 -0
- data/doc/testing.txt +52 -0
- data/lib/adva.rb +5 -0
- data/lib/adva/version.rb +3 -0
- data/test/matchy/History.txt +4 -0
- data/test/matchy/License.txt +20 -0
- data/test/matchy/Manifest.txt +22 -0
- data/test/matchy/PostInstall.txt +7 -0
- data/test/matchy/README.rdoc +68 -0
- data/test/matchy/Rakefile +4 -0
- data/test/matchy/config/hoe.rb +73 -0
- data/test/matchy/config/requirements.rb +15 -0
- data/test/matchy/lib/matchy.rb +16 -0
- data/test/matchy/lib/matchy/built_in/enumerable_expectations.rb +69 -0
- data/test/matchy/lib/matchy/built_in/error_expectations.rb +90 -0
- data/test/matchy/lib/matchy/built_in/operator_expectations.rb +97 -0
- data/test/matchy/lib/matchy/built_in/truth_expectations.rb +231 -0
- data/test/matchy/lib/matchy/expectation.rb +47 -0
- data/test/matchy/lib/matchy/modals.rb +51 -0
- data/test/matchy/lib/matchy/version.rb +9 -0
- data/test/matchy/matchy.gemspec +47 -0
- data/test/matchy/setup.rb +1585 -0
- data/test/matchy/tasks/deployment.rake +34 -0
- data/test/matchy/tasks/environment.rake +7 -0
- data/test/matchy/test/test_enumerable_expectations.rb +91 -0
- data/test/matchy/test/test_error_expectations.rb +109 -0
- data/test/matchy/test/test_expectation_base.rb +35 -0
- data/test/matchy/test/test_helper.rb +2 -0
- data/test/matchy/test/test_modals.rb +39 -0
- data/test/matchy/test/test_operator_expectations.rb +157 -0
- data/test/matchy/test/test_truth_expectations.rb +258 -0
- data/test/no_peeping_toms/README +40 -0
- data/test/no_peeping_toms/init.rb +12 -0
- data/test/no_peeping_toms/install.rb +1 -0
- data/test/no_peeping_toms/lib/no_peeping_toms.rb +10 -0
- data/test/no_peeping_toms/spec/db/database.yml +3 -0
- data/test/no_peeping_toms/spec/db/schema.rb +5 -0
- data/test/no_peeping_toms/spec/no_peeping_toms_spec.rb +56 -0
- data/test/no_peeping_toms/spec/spec_helper.rb +8 -0
- data/test/no_peeping_toms/tasks/no_peeping_toms_tasks.rake +4 -0
- data/test/no_peeping_toms/uninstall.rb +1 -0
- data/test/rr/.gitignore +6 -0
- data/test/rr/CHANGES +192 -0
- data/test/rr/README.rdoc +309 -0
- data/test/rr/Rakefile +70 -0
- data/test/rr/doc/0.6.0.release.markdown +81 -0
- data/test/rr/introducting_rr.txt +206 -0
- data/test/rr/lib/rr.rb +83 -0
- data/test/rr/lib/rr/adapters/rr_methods.rb +131 -0
- data/test/rr/lib/rr/adapters/rspec.rb +23 -0
- data/test/rr/lib/rr/adapters/test_unit.rb +25 -0
- data/test/rr/lib/rr/double.rb +212 -0
- data/test/rr/lib/rr/double_definitions/child_double_definition_creator.rb +27 -0
- data/test/rr/lib/rr/double_definitions/double_definition.rb +346 -0
- data/test/rr/lib/rr/double_definitions/double_definition_creator.rb +167 -0
- data/test/rr/lib/rr/double_definitions/double_definition_creator_proxy.rb +57 -0
- data/test/rr/lib/rr/double_definitions/strategies/implementation/implementation_strategy.rb +15 -0
- data/test/rr/lib/rr/double_definitions/strategies/implementation/proxy.rb +62 -0
- data/test/rr/lib/rr/double_definitions/strategies/implementation/reimplementation.rb +14 -0
- data/test/rr/lib/rr/double_definitions/strategies/implementation/strongly_typed_reimplementation.rb +17 -0
- data/test/rr/lib/rr/double_definitions/strategies/scope/instance.rb +15 -0
- data/test/rr/lib/rr/double_definitions/strategies/scope/instance_of_class.rb +46 -0
- data/test/rr/lib/rr/double_definitions/strategies/scope/scope_strategy.rb +15 -0
- data/test/rr/lib/rr/double_definitions/strategies/strategy.rb +70 -0
- data/test/rr/lib/rr/double_definitions/strategies/verification/dont_allow.rb +34 -0
- data/test/rr/lib/rr/double_definitions/strategies/verification/mock.rb +44 -0
- data/test/rr/lib/rr/double_definitions/strategies/verification/stub.rb +45 -0
- data/test/rr/lib/rr/double_definitions/strategies/verification/verification_strategy.rb +15 -0
- data/test/rr/lib/rr/double_injection.rb +141 -0
- data/test/rr/lib/rr/double_matches.rb +51 -0
- data/test/rr/lib/rr/errors/argument_equality_error.rb +6 -0
- data/test/rr/lib/rr/errors/double_definition_error.rb +6 -0
- data/test/rr/lib/rr/errors/double_not_found_error.rb +6 -0
- data/test/rr/lib/rr/errors/double_order_error.rb +6 -0
- data/test/rr/lib/rr/errors/rr_error.rb +20 -0
- data/test/rr/lib/rr/errors/spy_verification_error.rb +6 -0
- data/test/rr/lib/rr/errors/subject_does_not_implement_method_error.rb +6 -0
- data/test/rr/lib/rr/errors/subject_has_different_arity_error.rb +6 -0
- data/test/rr/lib/rr/errors/times_called_error.rb +6 -0
- data/test/rr/lib/rr/expectations/any_argument_expectation.rb +21 -0
- data/test/rr/lib/rr/expectations/argument_equality_expectation.rb +41 -0
- data/test/rr/lib/rr/expectations/times_called_expectation.rb +57 -0
- data/test/rr/lib/rr/hash_with_object_id_key.rb +41 -0
- data/test/rr/lib/rr/invocation_matcher.rb +27 -0
- data/test/rr/lib/rr/recorded_calls.rb +72 -0
- data/test/rr/lib/rr/space.rb +123 -0
- data/test/rr/lib/rr/spy_verification.rb +38 -0
- data/test/rr/lib/rr/spy_verification_proxy.rb +18 -0
- data/test/rr/lib/rr/times_called_matchers/any_times_matcher.rb +19 -0
- data/test/rr/lib/rr/times_called_matchers/at_least_matcher.rb +16 -0
- data/test/rr/lib/rr/times_called_matchers/at_most_matcher.rb +24 -0
- data/test/rr/lib/rr/times_called_matchers/integer_matcher.rb +19 -0
- data/test/rr/lib/rr/times_called_matchers/non_terminal.rb +27 -0
- data/test/rr/lib/rr/times_called_matchers/proc_matcher.rb +11 -0
- data/test/rr/lib/rr/times_called_matchers/range_matcher.rb +21 -0
- data/test/rr/lib/rr/times_called_matchers/terminal.rb +20 -0
- data/test/rr/lib/rr/times_called_matchers/times_called_matcher.rb +44 -0
- data/test/rr/lib/rr/wildcard_matchers/anything.rb +18 -0
- data/test/rr/lib/rr/wildcard_matchers/boolean.rb +23 -0
- data/test/rr/lib/rr/wildcard_matchers/duck_type.rb +32 -0
- data/test/rr/lib/rr/wildcard_matchers/hash_including.rb +29 -0
- data/test/rr/lib/rr/wildcard_matchers/is_a.rb +25 -0
- data/test/rr/lib/rr/wildcard_matchers/numeric.rb +13 -0
- data/test/rr/lib/rr/wildcard_matchers/range.rb +7 -0
- data/test/rr/lib/rr/wildcard_matchers/regexp.rb +7 -0
- data/test/rr/lib/rr/wildcard_matchers/satisfy.rb +26 -0
- data/test/rr/spec/core_spec_suite.rb +19 -0
- data/test/rr/spec/environment_fixture_setup.rb +6 -0
- data/test/rr/spec/high_level_spec.rb +350 -0
- data/test/rr/spec/recorded_calls_spec.rb +119 -0
- data/test/rr/spec/rr/adapters/rr_methods_argument_matcher_spec.rb +67 -0
- data/test/rr/spec/rr/adapters/rr_methods_creator_spec.rb +149 -0
- data/test/rr/spec/rr/adapters/rr_methods_space_spec.rb +115 -0
- data/test/rr/spec/rr/adapters/rr_methods_spec_helper.rb +11 -0
- data/test/rr/spec/rr/adapters/rr_methods_times_matcher_spec.rb +17 -0
- data/test/rr/spec/rr/double_definitions/child_double_definition_creator_spec.rb +112 -0
- data/test/rr/spec/rr/double_definitions/double_definition_creator_proxy_spec.rb +155 -0
- data/test/rr/spec/rr/double_definitions/double_definition_creator_spec.rb +502 -0
- data/test/rr/spec/rr/double_definitions/double_definition_spec.rb +1159 -0
- data/test/rr/spec/rr/double_injection/double_injection_bind_spec.rb +111 -0
- data/test/rr/spec/rr/double_injection/double_injection_dispatching_spec.rb +244 -0
- data/test/rr/spec/rr/double_injection/double_injection_has_original_method_spec.rb +55 -0
- data/test/rr/spec/rr/double_injection/double_injection_reset_spec.rb +90 -0
- data/test/rr/spec/rr/double_injection/double_injection_spec.rb +77 -0
- data/test/rr/spec/rr/double_injection/double_injection_verify_spec.rb +29 -0
- data/test/rr/spec/rr/double_spec.rb +352 -0
- data/test/rr/spec/rr/errors/rr_error_spec.rb +67 -0
- data/test/rr/spec/rr/expectations/any_argument_expectation_spec.rb +47 -0
- data/test/rr/spec/rr/expectations/anything_argument_equality_expectation_spec.rb +14 -0
- data/test/rr/spec/rr/expectations/argument_equality_expectation_spec.rb +135 -0
- data/test/rr/spec/rr/expectations/boolean_argument_equality_expectation_spec.rb +34 -0
- data/test/rr/spec/rr/expectations/hash_including_argument_equality_expectation_spec.rb +82 -0
- data/test/rr/spec/rr/expectations/hash_including_spec.rb +17 -0
- data/test/rr/spec/rr/expectations/satisfy_argument_equality_expectation_spec.rb +59 -0
- data/test/rr/spec/rr/expectations/satisfy_spec.rb +14 -0
- data/test/rr/spec/rr/expectations/times_called_expectation/times_called_expectation_any_times_spec.rb +46 -0
- data/test/rr/spec/rr/expectations/times_called_expectation/times_called_expectation_at_least_spec.rb +69 -0
- data/test/rr/spec/rr/expectations/times_called_expectation/times_called_expectation_at_most_spec.rb +71 -0
- data/test/rr/spec/rr/expectations/times_called_expectation/times_called_expectation_helper.rb +23 -0
- data/test/rr/spec/rr/expectations/times_called_expectation/times_called_expectation_integer_spec.rb +104 -0
- data/test/rr/spec/rr/expectations/times_called_expectation/times_called_expectation_proc_spec.rb +81 -0
- data/test/rr/spec/rr/expectations/times_called_expectation/times_called_expectation_range_spec.rb +83 -0
- data/test/rr/spec/rr/expectations/times_called_expectation/times_called_expectation_spec.rb +38 -0
- data/test/rr/spec/rr/invocation_matcher_spec.rb +255 -0
- data/test/rr/spec/rr/rspec/rspec_adapter_spec.rb +66 -0
- data/test/rr/spec/rr/rspec/rspec_backtrace_tweaking_spec.rb +54 -0
- data/test/rr/spec/rr/rspec/rspec_usage_spec.rb +86 -0
- data/test/rr/spec/rr/space/hash_with_object_id_key_spec.rb +88 -0
- data/test/rr/spec/rr/space/space_spec.rb +542 -0
- data/test/rr/spec/rr/test_unit/test_helper.rb +7 -0
- data/test/rr/spec/rr/test_unit/test_unit_backtrace_test.rb +35 -0
- data/test/rr/spec/rr/test_unit/test_unit_integration_test.rb +47 -0
- data/test/rr/spec/rr/times_called_matchers/any_times_matcher_spec.rb +47 -0
- data/test/rr/spec/rr/times_called_matchers/at_least_matcher_spec.rb +55 -0
- data/test/rr/spec/rr/times_called_matchers/at_most_matcher_spec.rb +70 -0
- data/test/rr/spec/rr/times_called_matchers/integer_matcher_spec.rb +70 -0
- data/test/rr/spec/rr/times_called_matchers/proc_matcher_spec.rb +55 -0
- data/test/rr/spec/rr/times_called_matchers/range_matcher_spec.rb +76 -0
- data/test/rr/spec/rr/times_called_matchers/times_called_matcher_spec.rb +118 -0
- data/test/rr/spec/rr/wildcard_matchers/anything_spec.rb +24 -0
- data/test/rr/spec/rr/wildcard_matchers/boolean_spec.rb +36 -0
- data/test/rr/spec/rr/wildcard_matchers/duck_type_spec.rb +52 -0
- data/test/rr/spec/rr/wildcard_matchers/is_a_spec.rb +32 -0
- data/test/rr/spec/rr/wildcard_matchers/numeric_spec.rb +32 -0
- data/test/rr/spec/rr/wildcard_matchers/range_spec.rb +35 -0
- data/test/rr/spec/rr/wildcard_matchers/regexp_spec.rb +43 -0
- data/test/rr/spec/rr_spec.rb +28 -0
- data/test/rr/spec/rspec_spec_suite.rb +16 -0
- data/test/rr/spec/spec.opts +14 -0
- data/test/rr/spec/spec_helper.rb +107 -0
- data/test/rr/spec/spec_suite.rb +27 -0
- data/test/rr/spec/test_unit_spec_suite.rb +21 -0
- data/test/test_plugin/about.yml +7 -0
- data/test/test_plugin/init.rb +5 -0
- data/test/test_server/README.textile +19 -0
- data/test/test_server/bin/server +14 -0
- data/test/test_server/bin/spec +11 -0
- data/test/test_server/bin/test +11 -0
- data/test/test_server/lib/test_server.rb +5 -0
- data/test/test_server/lib/test_server/client.rb +24 -0
- data/test/test_server/lib/test_server/rails.rb +59 -0
- data/test/test_server/lib/test_server/runner/redgreen.rb +72 -0
- data/test/test_server/lib/test_server/runner/specs.rb +20 -0
- data/test/test_server/lib/test_server/runner/test_unit.rb +35 -0
- data/test/test_server/lib/test_server/server.rb +112 -0
- data/test/test_server/test/resources/test/foo_test.rb +1 -0
- data/test/test_server/test/server_test.rb +27 -0
- data/test/test_server/test/test_helper.rb +7 -0
- data/test/webrat/.document +4 -0
- data/test/webrat/History.txt +264 -0
- data/test/webrat/MIT-LICENSE.txt +19 -0
- data/test/webrat/README.rdoc +85 -0
- data/test/webrat/Rakefile +151 -0
- data/test/webrat/install.rb +1 -0
- data/test/webrat/lib/webrat.rb +34 -0
- data/test/webrat/lib/webrat/core.rb +14 -0
- data/test/webrat/lib/webrat/core/configuration.rb +89 -0
- data/test/webrat/lib/webrat/core/elements/area.rb +31 -0
- data/test/webrat/lib/webrat/core/elements/element.rb +33 -0
- data/test/webrat/lib/webrat/core/elements/field.rb +396 -0
- data/test/webrat/lib/webrat/core/elements/form.rb +103 -0
- data/test/webrat/lib/webrat/core/elements/label.rb +31 -0
- data/test/webrat/lib/webrat/core/elements/link.rb +90 -0
- data/test/webrat/lib/webrat/core/elements/select_option.rb +35 -0
- data/test/webrat/lib/webrat/core/locators.rb +20 -0
- data/test/webrat/lib/webrat/core/locators/area_locator.rb +38 -0
- data/test/webrat/lib/webrat/core/locators/button_locator.rb +54 -0
- data/test/webrat/lib/webrat/core/locators/field_by_id_locator.rb +37 -0
- data/test/webrat/lib/webrat/core/locators/field_labeled_locator.rb +56 -0
- data/test/webrat/lib/webrat/core/locators/field_locator.rb +25 -0
- data/test/webrat/lib/webrat/core/locators/field_named_locator.rb +41 -0
- data/test/webrat/lib/webrat/core/locators/form_locator.rb +19 -0
- data/test/webrat/lib/webrat/core/locators/label_locator.rb +34 -0
- data/test/webrat/lib/webrat/core/locators/link_locator.rb +66 -0
- data/test/webrat/lib/webrat/core/locators/locator.rb +20 -0
- data/test/webrat/lib/webrat/core/locators/select_option_locator.rb +59 -0
- data/test/webrat/lib/webrat/core/logging.rb +21 -0
- data/test/webrat/lib/webrat/core/matchers.rb +4 -0
- data/test/webrat/lib/webrat/core/matchers/have_content.rb +69 -0
- data/test/webrat/lib/webrat/core/matchers/have_selector.rb +52 -0
- data/test/webrat/lib/webrat/core/matchers/have_tag.rb +71 -0
- data/test/webrat/lib/webrat/core/matchers/have_xpath.rb +93 -0
- data/test/webrat/lib/webrat/core/methods.rb +61 -0
- data/test/webrat/lib/webrat/core/mime.rb +29 -0
- data/test/webrat/lib/webrat/core/save_and_open_page.rb +50 -0
- data/test/webrat/lib/webrat/core/scope.rb +350 -0
- data/test/webrat/lib/webrat/core/session.rb +259 -0
- data/test/webrat/lib/webrat/core/xml.rb +115 -0
- data/test/webrat/lib/webrat/core/xml/hpricot.rb +19 -0
- data/test/webrat/lib/webrat/core/xml/nokogiri.rb +76 -0
- data/test/webrat/lib/webrat/core/xml/rexml.rb +24 -0
- data/test/webrat/lib/webrat/core_extensions/blank.rb +58 -0
- data/test/webrat/lib/webrat/core_extensions/deprecate.rb +8 -0
- data/test/webrat/lib/webrat/core_extensions/detect_mapped.rb +12 -0
- data/test/webrat/lib/webrat/core_extensions/hash_with_indifferent_access.rb +131 -0
- data/test/webrat/lib/webrat/core_extensions/meta_class.rb +6 -0
- data/test/webrat/lib/webrat/core_extensions/nil_to_param.rb +5 -0
- data/test/webrat/lib/webrat/mechanize.rb +74 -0
- data/test/webrat/lib/webrat/merb.rb +9 -0
- data/test/webrat/lib/webrat/merb_session.rb +65 -0
- data/test/webrat/lib/webrat/rack.rb +24 -0
- data/test/webrat/lib/webrat/rails.rb +105 -0
- data/test/webrat/lib/webrat/rspec-rails.rb +13 -0
- data/test/webrat/lib/webrat/selenium.rb +99 -0
- data/test/webrat/lib/webrat/selenium/location_strategy_javascript/button.js +12 -0
- data/test/webrat/lib/webrat/selenium/location_strategy_javascript/label.js +16 -0
- data/test/webrat/lib/webrat/selenium/location_strategy_javascript/webrat.js +5 -0
- data/test/webrat/lib/webrat/selenium/location_strategy_javascript/webratlink.js +9 -0
- data/test/webrat/lib/webrat/selenium/location_strategy_javascript/webratlinkwithin.js +15 -0
- data/test/webrat/lib/webrat/selenium/location_strategy_javascript/webratselectwithoption.js +5 -0
- data/test/webrat/lib/webrat/selenium/matchers.rb +4 -0
- data/test/webrat/lib/webrat/selenium/matchers/have_content.rb +66 -0
- data/test/webrat/lib/webrat/selenium/matchers/have_selector.rb +49 -0
- data/test/webrat/lib/webrat/selenium/matchers/have_tag.rb +72 -0
- data/test/webrat/lib/webrat/selenium/matchers/have_xpath.rb +45 -0
- data/test/webrat/lib/webrat/selenium/selenium_extensions.js +6 -0
- data/test/webrat/lib/webrat/selenium/selenium_session.rb +237 -0
- data/test/webrat/lib/webrat/sinatra.rb +30 -0
- data/test/webrat/spec/fakes/test_session.rb +34 -0
- data/test/webrat/spec/integration/merb/.gitignore +21 -0
- data/test/webrat/spec/integration/merb/Rakefile +35 -0
- data/test/webrat/spec/integration/merb/app/controllers/application.rb +2 -0
- data/test/webrat/spec/integration/merb/app/controllers/exceptions.rb +13 -0
- data/test/webrat/spec/integration/merb/app/controllers/testing.rb +18 -0
- data/test/webrat/spec/integration/merb/app/views/exceptions/not_acceptable.html.erb +63 -0
- data/test/webrat/spec/integration/merb/app/views/exceptions/not_found.html.erb +47 -0
- data/test/webrat/spec/integration/merb/app/views/layout/application.html.erb +12 -0
- data/test/webrat/spec/integration/merb/app/views/testing/show_form.html.erb +27 -0
- data/test/webrat/spec/integration/merb/config/environments/development.rb +15 -0
- data/test/webrat/spec/integration/merb/config/environments/rake.rb +11 -0
- data/test/webrat/spec/integration/merb/config/environments/test.rb +14 -0
- data/test/webrat/spec/integration/merb/config/init.rb +25 -0
- data/test/webrat/spec/integration/merb/config/rack.rb +11 -0
- data/test/webrat/spec/integration/merb/config/router.rb +33 -0
- data/test/webrat/spec/integration/merb/spec/spec.opts +1 -0
- data/test/webrat/spec/integration/merb/spec/spec_helper.rb +24 -0
- data/test/webrat/spec/integration/merb/spec/webrat_spec.rb +32 -0
- data/test/webrat/spec/integration/merb/tasks/merb.thor/app_script.rb +31 -0
- data/test/webrat/spec/integration/merb/tasks/merb.thor/common.rb +64 -0
- data/test/webrat/spec/integration/merb/tasks/merb.thor/gem_ext.rb +124 -0
- data/test/webrat/spec/integration/merb/tasks/merb.thor/main.thor +150 -0
- data/test/webrat/spec/integration/merb/tasks/merb.thor/ops.rb +93 -0
- data/test/webrat/spec/integration/merb/tasks/merb.thor/utils.rb +40 -0
- data/test/webrat/spec/integration/rails/.gitignore +3 -0
- data/test/webrat/spec/integration/rails/Rakefile +30 -0
- data/test/webrat/spec/integration/rails/app/controllers/application.rb +15 -0
- data/test/webrat/spec/integration/rails/app/controllers/webrat_controller.rb +35 -0
- data/test/webrat/spec/integration/rails/app/views/webrat/before_redirect_form.html.erb +4 -0
- data/test/webrat/spec/integration/rails/app/views/webrat/form.html.erb +28 -0
- data/test/webrat/spec/integration/rails/config/boot.rb +109 -0
- data/test/webrat/spec/integration/rails/config/environment.rb +12 -0
- data/test/webrat/spec/integration/rails/config/environments/development.rb +17 -0
- data/test/webrat/spec/integration/rails/config/environments/selenium.rb +22 -0
- data/test/webrat/spec/integration/rails/config/environments/test.rb +22 -0
- data/test/webrat/spec/integration/rails/config/initializers/inflections.rb +10 -0
- data/test/webrat/spec/integration/rails/config/initializers/mime_types.rb +5 -0
- data/test/webrat/spec/integration/rails/config/initializers/new_rails_defaults.rb +17 -0
- data/test/webrat/spec/integration/rails/config/locales/en.yml +5 -0
- data/test/webrat/spec/integration/rails/config/routes.rb +13 -0
- data/test/webrat/spec/integration/rails/public/404.html +30 -0
- data/test/webrat/spec/integration/rails/public/422.html +30 -0
- data/test/webrat/spec/integration/rails/public/500.html +33 -0
- data/test/webrat/spec/integration/rails/script/about +4 -0
- data/test/webrat/spec/integration/rails/script/console +3 -0
- data/test/webrat/spec/integration/rails/script/dbconsole +3 -0
- data/test/webrat/spec/integration/rails/script/destroy +3 -0
- data/test/webrat/spec/integration/rails/script/generate +3 -0
- data/test/webrat/spec/integration/rails/script/performance/benchmarker +3 -0
- data/test/webrat/spec/integration/rails/script/performance/profiler +3 -0
- data/test/webrat/spec/integration/rails/script/performance/request +3 -0
- data/test/webrat/spec/integration/rails/script/plugin +3 -0
- data/test/webrat/spec/integration/rails/script/process/inspector +3 -0
- data/test/webrat/spec/integration/rails/script/process/reaper +3 -0
- data/test/webrat/spec/integration/rails/script/process/spawner +3 -0
- data/test/webrat/spec/integration/rails/script/runner +3 -0
- data/test/webrat/spec/integration/rails/script/server +3 -0
- data/test/webrat/spec/integration/rails/test/integration/webrat_test.rb +74 -0
- data/test/webrat/spec/integration/rails/test/test_helper.rb +25 -0
- data/test/webrat/spec/integration/sinatra/Rakefile +5 -0
- data/test/webrat/spec/integration/sinatra/app.rb +64 -0
- data/test/webrat/spec/integration/sinatra/test/test_helper.rb +17 -0
- data/test/webrat/spec/integration/sinatra/test/webrat_test.rb +36 -0
- data/test/webrat/spec/private/core/configuration_spec.rb +99 -0
- data/test/webrat/spec/private/core/field_spec.rb +67 -0
- data/test/webrat/spec/private/core/link_spec.rb +24 -0
- data/test/webrat/spec/private/core/logging_spec.rb +10 -0
- data/test/webrat/spec/private/core/session_spec.rb +207 -0
- data/test/webrat/spec/private/mechanize/mechanize_session_spec.rb +81 -0
- data/test/webrat/spec/private/merb/indifferent_access_spec.rb +47 -0
- data/test/webrat/spec/private/merb/merb_session_spec.rb +42 -0
- data/test/webrat/spec/private/nokogiri_spec.rb +77 -0
- data/test/webrat/spec/private/rails/attaches_file_spec.rb +81 -0
- data/test/webrat/spec/private/rails/rails_session_spec.rb +110 -0
- data/test/webrat/spec/private/selenium/selenium_session_spec.rb +44 -0
- data/test/webrat/spec/private/selenium/selenium_spec.rb +59 -0
- data/test/webrat/spec/private/sinatra/helper.rb +2 -0
- data/test/webrat/spec/private/sinatra/sinatra_session_spec.rb +28 -0
- data/test/webrat/spec/public/basic_auth_spec.rb +24 -0
- data/test/webrat/spec/public/check_spec.rb +154 -0
- data/test/webrat/spec/public/choose_spec.rb +118 -0
- data/test/webrat/spec/public/click_area_spec.rb +106 -0
- data/test/webrat/spec/public/click_button_spec.rb +502 -0
- data/test/webrat/spec/public/click_link_spec.rb +469 -0
- data/test/webrat/spec/public/fill_in_spec.rb +209 -0
- data/test/webrat/spec/public/locators/field_by_xpath_spec.rb +19 -0
- data/test/webrat/spec/public/locators/field_labeled_spec.rb +157 -0
- data/test/webrat/spec/public/locators/field_with_id_spec.rb +16 -0
- data/test/webrat/spec/public/matchers_spec.rb +321 -0
- data/test/webrat/spec/public/reload_spec.rb +10 -0
- data/test/webrat/spec/public/save_and_open_spec.rb +51 -0
- data/test/webrat/spec/public/select_date_spec.rb +88 -0
- data/test/webrat/spec/public/select_datetime_spec.rb +106 -0
- data/test/webrat/spec/public/select_spec.rb +246 -0
- data/test/webrat/spec/public/select_time_spec.rb +79 -0
- data/test/webrat/spec/public/set_hidden_field_spec.rb +5 -0
- data/test/webrat/spec/public/submit_form_spec.rb +5 -0
- data/test/webrat/spec/public/visit_spec.rb +67 -0
- data/test/webrat/spec/public/within_spec.rb +177 -0
- data/test/webrat/spec/rcov.opts +1 -0
- data/test/webrat/spec/spec.opts +2 -0
- data/test/webrat/spec/spec_helper.rb +50 -0
- data/test/webrat/vendor/selenium-server.jar +0 -0
- data/test/with-sugar/lib/with-sugar.rb +6 -0
- data/test/with-sugar/lib/with-sugar/caching.rb +41 -0
- data/test/with-sugar/lib/with-sugar/controller.rb +110 -0
- data/test/with-sugar/lib/with-sugar/core.rb +7 -0
- data/test/with-sugar/lib/with-sugar/model.rb +151 -0
- data/test/with-sugar/lib/with-sugar/routing.rb +30 -0
- data/test/with-sugar/lib/with-sugar/view.rb +65 -0
- data/test/with-sugar/test/helper.rb +19 -0
- data/test/with-sugar/test/view_test.rb +12 -0
- data/test/with/README.textile +136 -0
- data/test/with/demo.rb +158 -0
- data/test/with/lib/with.rb +81 -0
- data/test/with/lib/with/call.rb +40 -0
- data/test/with/lib/with/context.rb +95 -0
- data/test/with/lib/with/implementation.rb +18 -0
- data/test/with/lib/with/node.rb +65 -0
- data/test/with/lib/with/sharing.rb +29 -0
- data/test/with/test/all.rb +1 -0
- data/test/with/test/context_calls_test.rb +56 -0
- data/test/with/test/context_compile_test.rb +106 -0
- data/test/with/test/context_structure_test.rb +142 -0
- data/test/with/test/demo_test.rb +63 -0
- data/test/with/test/helper.rb +68 -0
- metadata +2179 -0
@@ -0,0 +1,56 @@
|
|
1
|
+
/*
|
2
|
+
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
+
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
4
|
+
*
|
5
|
+
* == BEGIN LICENSE ==
|
6
|
+
*
|
7
|
+
* Licensed under the terms of any of the following licenses at your
|
8
|
+
* choice:
|
9
|
+
*
|
10
|
+
* - GNU General Public License Version 2 or later (the "GPL")
|
11
|
+
* http://www.gnu.org/licenses/gpl.html
|
12
|
+
*
|
13
|
+
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
|
14
|
+
* http://www.gnu.org/licenses/lgpl.html
|
15
|
+
*
|
16
|
+
* - Mozilla Public License Version 1.1 or later (the "MPL")
|
17
|
+
* http://www.mozilla.org/MPL/MPL-1.1.html
|
18
|
+
*
|
19
|
+
* == END LICENSE ==
|
20
|
+
*
|
21
|
+
* FCKPlugin Class: Represents a single plugin.
|
22
|
+
*/
|
23
|
+
|
24
|
+
var FCKPlugin = function( name, availableLangs, basePath )
|
25
|
+
{
|
26
|
+
this.Name = name ;
|
27
|
+
this.BasePath = basePath ? basePath : FCKConfig.PluginsPath ;
|
28
|
+
this.Path = this.BasePath + name + '/' ;
|
29
|
+
|
30
|
+
if ( !availableLangs || availableLangs.length == 0 )
|
31
|
+
this.AvailableLangs = new Array() ;
|
32
|
+
else
|
33
|
+
this.AvailableLangs = availableLangs.split(',') ;
|
34
|
+
}
|
35
|
+
|
36
|
+
FCKPlugin.prototype.Load = function()
|
37
|
+
{
|
38
|
+
// Load the language file, if defined.
|
39
|
+
if ( this.AvailableLangs.length > 0 )
|
40
|
+
{
|
41
|
+
var sLang ;
|
42
|
+
|
43
|
+
// Check if the plugin has the language file for the active language.
|
44
|
+
if ( this.AvailableLangs.IndexOf( FCKLanguageManager.ActiveLanguage.Code ) >= 0 )
|
45
|
+
sLang = FCKLanguageManager.ActiveLanguage.Code ;
|
46
|
+
else
|
47
|
+
// Load the default language file (first one) if the current one is not available.
|
48
|
+
sLang = this.AvailableLangs[0] ;
|
49
|
+
|
50
|
+
// Add the main plugin script.
|
51
|
+
LoadScript( this.Path + 'lang/' + sLang + '.js' ) ;
|
52
|
+
}
|
53
|
+
|
54
|
+
// Add the main plugin script.
|
55
|
+
LoadScript( this.Path + 'fckplugin.js' ) ;
|
56
|
+
}
|
@@ -0,0 +1,376 @@
|
|
1
|
+
/*
|
2
|
+
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
+
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
4
|
+
*
|
5
|
+
* == BEGIN LICENSE ==
|
6
|
+
*
|
7
|
+
* Licensed under the terms of any of the following licenses at your
|
8
|
+
* choice:
|
9
|
+
*
|
10
|
+
* - GNU General Public License Version 2 or later (the "GPL")
|
11
|
+
* http://www.gnu.org/licenses/gpl.html
|
12
|
+
*
|
13
|
+
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
|
14
|
+
* http://www.gnu.org/licenses/lgpl.html
|
15
|
+
*
|
16
|
+
* - Mozilla Public License Version 1.1 or later (the "MPL")
|
17
|
+
* http://www.mozilla.org/MPL/MPL-1.1.html
|
18
|
+
*
|
19
|
+
* == END LICENSE ==
|
20
|
+
*
|
21
|
+
* FCKSpecialCombo Class: represents a special combo.
|
22
|
+
*/
|
23
|
+
|
24
|
+
var FCKSpecialCombo = function( caption, fieldWidth, panelWidth, panelMaxHeight, parentWindow )
|
25
|
+
{
|
26
|
+
// Default properties values.
|
27
|
+
this.FieldWidth = fieldWidth || 100 ;
|
28
|
+
this.PanelWidth = panelWidth || 150 ;
|
29
|
+
this.PanelMaxHeight = panelMaxHeight || 150 ;
|
30
|
+
this.Label = ' ' ;
|
31
|
+
this.Caption = caption ;
|
32
|
+
this.Tooltip = caption ;
|
33
|
+
this.Style = FCK_TOOLBARITEM_ICONTEXT ;
|
34
|
+
|
35
|
+
this.Enabled = true ;
|
36
|
+
|
37
|
+
this.Items = new Object() ;
|
38
|
+
|
39
|
+
this._Panel = new FCKPanel( parentWindow || window ) ;
|
40
|
+
this._Panel.AppendStyleSheet( FCKConfig.SkinEditorCSS ) ;
|
41
|
+
this._PanelBox = this._Panel.MainNode.appendChild( this._Panel.Document.createElement( 'DIV' ) ) ;
|
42
|
+
this._PanelBox.className = 'SC_Panel' ;
|
43
|
+
this._PanelBox.style.width = this.PanelWidth + 'px' ;
|
44
|
+
|
45
|
+
this._PanelBox.innerHTML = '<table cellpadding="0" cellspacing="0" width="100%" style="TABLE-LAYOUT: fixed"><tr><td nowrap></td></tr></table>' ;
|
46
|
+
|
47
|
+
this._ItemsHolderEl = this._PanelBox.getElementsByTagName('TD')[0] ;
|
48
|
+
|
49
|
+
if ( FCK.IECleanup )
|
50
|
+
FCK.IECleanup.AddItem( this, FCKSpecialCombo_Cleanup ) ;
|
51
|
+
|
52
|
+
// this._Panel.StyleSheet = FCKConfig.SkinPath + 'fck_contextmenu.css' ;
|
53
|
+
// this._Panel.Create() ;
|
54
|
+
// this._Panel.PanelDiv.className += ' SC_Panel' ;
|
55
|
+
// this._Panel.PanelDiv.innerHTML = '<table cellpadding="0" cellspacing="0" width="100%" style="TABLE-LAYOUT: fixed"><tr><td nowrap></td></tr></table>' ;
|
56
|
+
// this._ItemsHolderEl = this._Panel.PanelDiv.getElementsByTagName('TD')[0] ;
|
57
|
+
}
|
58
|
+
|
59
|
+
function FCKSpecialCombo_ItemOnMouseOver()
|
60
|
+
{
|
61
|
+
this.className += ' SC_ItemOver' ;
|
62
|
+
}
|
63
|
+
|
64
|
+
function FCKSpecialCombo_ItemOnMouseOut()
|
65
|
+
{
|
66
|
+
this.className = this.originalClass ;
|
67
|
+
}
|
68
|
+
|
69
|
+
function FCKSpecialCombo_ItemOnClick( ev, specialCombo, itemId )
|
70
|
+
{
|
71
|
+
this.className = this.originalClass ;
|
72
|
+
|
73
|
+
specialCombo._Panel.Hide() ;
|
74
|
+
|
75
|
+
specialCombo.SetLabel( this.FCKItemLabel ) ;
|
76
|
+
|
77
|
+
if ( typeof( specialCombo.OnSelect ) == 'function' )
|
78
|
+
specialCombo.OnSelect( itemId, this ) ;
|
79
|
+
}
|
80
|
+
|
81
|
+
FCKSpecialCombo.prototype.ClearItems = function ()
|
82
|
+
{
|
83
|
+
if ( this.Items )
|
84
|
+
this.Items = {} ;
|
85
|
+
|
86
|
+
var itemsholder = this._ItemsHolderEl ;
|
87
|
+
while ( itemsholder.firstChild )
|
88
|
+
itemsholder.removeChild( itemsholder.firstChild ) ;
|
89
|
+
}
|
90
|
+
|
91
|
+
FCKSpecialCombo.prototype.AddItem = function( id, html, label, bgColor )
|
92
|
+
{
|
93
|
+
// <div class="SC_Item" onmouseover="this.className='SC_Item SC_ItemOver';" onmouseout="this.className='SC_Item';"><b>Bold 1</b></div>
|
94
|
+
var oDiv = this._ItemsHolderEl.appendChild( this._Panel.Document.createElement( 'DIV' ) ) ;
|
95
|
+
oDiv.className = oDiv.originalClass = 'SC_Item' ;
|
96
|
+
oDiv.innerHTML = html ;
|
97
|
+
oDiv.FCKItemLabel = label || id ;
|
98
|
+
oDiv.Selected = false ;
|
99
|
+
|
100
|
+
// In IE, the width must be set so the borders are shown correctly when the content overflows.
|
101
|
+
if ( FCKBrowserInfo.IsIE )
|
102
|
+
oDiv.style.width = '100%' ;
|
103
|
+
|
104
|
+
if ( bgColor )
|
105
|
+
oDiv.style.backgroundColor = bgColor ;
|
106
|
+
|
107
|
+
FCKTools.AddEventListenerEx( oDiv, 'mouseover', FCKSpecialCombo_ItemOnMouseOver ) ;
|
108
|
+
FCKTools.AddEventListenerEx( oDiv, 'mouseout', FCKSpecialCombo_ItemOnMouseOut ) ;
|
109
|
+
FCKTools.AddEventListenerEx( oDiv, 'click', FCKSpecialCombo_ItemOnClick, [ this, id ] ) ;
|
110
|
+
|
111
|
+
this.Items[ id.toString().toLowerCase() ] = oDiv ;
|
112
|
+
|
113
|
+
return oDiv ;
|
114
|
+
}
|
115
|
+
|
116
|
+
FCKSpecialCombo.prototype.SelectItem = function( item )
|
117
|
+
{
|
118
|
+
if ( typeof item == 'string' )
|
119
|
+
item = this.Items[ item.toString().toLowerCase() ] ;
|
120
|
+
|
121
|
+
if ( item )
|
122
|
+
{
|
123
|
+
item.className = item.originalClass = 'SC_ItemSelected' ;
|
124
|
+
item.Selected = true ;
|
125
|
+
}
|
126
|
+
}
|
127
|
+
|
128
|
+
FCKSpecialCombo.prototype.SelectItemByLabel = function( itemLabel, setLabel )
|
129
|
+
{
|
130
|
+
for ( var id in this.Items )
|
131
|
+
{
|
132
|
+
var oDiv = this.Items[id] ;
|
133
|
+
|
134
|
+
if ( oDiv.FCKItemLabel == itemLabel )
|
135
|
+
{
|
136
|
+
oDiv.className = oDiv.originalClass = 'SC_ItemSelected' ;
|
137
|
+
oDiv.Selected = true ;
|
138
|
+
|
139
|
+
if ( setLabel )
|
140
|
+
this.SetLabel( itemLabel ) ;
|
141
|
+
}
|
142
|
+
}
|
143
|
+
}
|
144
|
+
|
145
|
+
FCKSpecialCombo.prototype.DeselectAll = function( clearLabel )
|
146
|
+
{
|
147
|
+
for ( var i in this.Items )
|
148
|
+
{
|
149
|
+
if ( !this.Items[i] ) continue;
|
150
|
+
this.Items[i].className = this.Items[i].originalClass = 'SC_Item' ;
|
151
|
+
this.Items[i].Selected = false ;
|
152
|
+
}
|
153
|
+
|
154
|
+
if ( clearLabel )
|
155
|
+
this.SetLabel( '' ) ;
|
156
|
+
}
|
157
|
+
|
158
|
+
FCKSpecialCombo.prototype.SetLabelById = function( id )
|
159
|
+
{
|
160
|
+
id = id ? id.toString().toLowerCase() : '' ;
|
161
|
+
|
162
|
+
var oDiv = this.Items[ id ] ;
|
163
|
+
this.SetLabel( oDiv ? oDiv.FCKItemLabel : '' ) ;
|
164
|
+
}
|
165
|
+
|
166
|
+
FCKSpecialCombo.prototype.SetLabel = function( text )
|
167
|
+
{
|
168
|
+
text = ( !text || text.length == 0 ) ? ' ' : text ;
|
169
|
+
|
170
|
+
if ( text == this.Label )
|
171
|
+
return ;
|
172
|
+
|
173
|
+
this.Label = text ;
|
174
|
+
|
175
|
+
var labelEl = this._LabelEl ;
|
176
|
+
if ( labelEl )
|
177
|
+
{
|
178
|
+
labelEl.innerHTML = text ;
|
179
|
+
|
180
|
+
// It may happen that the label is some HTML, including tags. This
|
181
|
+
// would be a problem because when the user click on those tags, the
|
182
|
+
// combo will get the selection from the editing area. So we must
|
183
|
+
// disable any kind of selection here.
|
184
|
+
FCKTools.DisableSelection( labelEl ) ;
|
185
|
+
}
|
186
|
+
}
|
187
|
+
|
188
|
+
FCKSpecialCombo.prototype.SetEnabled = function( isEnabled )
|
189
|
+
{
|
190
|
+
this.Enabled = isEnabled ;
|
191
|
+
|
192
|
+
// In IE it can happen when the page is reloaded that _OuterTable is null, so check its existence
|
193
|
+
if ( this._OuterTable )
|
194
|
+
this._OuterTable.className = isEnabled ? '' : 'SC_FieldDisabled' ;
|
195
|
+
}
|
196
|
+
|
197
|
+
FCKSpecialCombo.prototype.Create = function( targetElement )
|
198
|
+
{
|
199
|
+
var oDoc = FCKTools.GetElementDocument( targetElement ) ;
|
200
|
+
var eOuterTable = this._OuterTable = targetElement.appendChild( oDoc.createElement( 'TABLE' ) ) ;
|
201
|
+
eOuterTable.cellPadding = 0 ;
|
202
|
+
eOuterTable.cellSpacing = 0 ;
|
203
|
+
|
204
|
+
eOuterTable.insertRow(-1) ;
|
205
|
+
|
206
|
+
var sClass ;
|
207
|
+
var bShowLabel ;
|
208
|
+
|
209
|
+
switch ( this.Style )
|
210
|
+
{
|
211
|
+
case FCK_TOOLBARITEM_ONLYICON :
|
212
|
+
sClass = 'TB_ButtonType_Icon' ;
|
213
|
+
bShowLabel = false;
|
214
|
+
break ;
|
215
|
+
case FCK_TOOLBARITEM_ONLYTEXT :
|
216
|
+
sClass = 'TB_ButtonType_Text' ;
|
217
|
+
bShowLabel = false;
|
218
|
+
break ;
|
219
|
+
case FCK_TOOLBARITEM_ICONTEXT :
|
220
|
+
bShowLabel = true;
|
221
|
+
break ;
|
222
|
+
}
|
223
|
+
|
224
|
+
if ( this.Caption && this.Caption.length > 0 && bShowLabel )
|
225
|
+
{
|
226
|
+
var oCaptionCell = eOuterTable.rows[0].insertCell(-1) ;
|
227
|
+
oCaptionCell.innerHTML = this.Caption ;
|
228
|
+
oCaptionCell.className = 'SC_FieldCaption' ;
|
229
|
+
}
|
230
|
+
|
231
|
+
// Create the main DIV element.
|
232
|
+
var oField = FCKTools.AppendElement( eOuterTable.rows[0].insertCell(-1), 'div' ) ;
|
233
|
+
if ( bShowLabel )
|
234
|
+
{
|
235
|
+
oField.className = 'SC_Field' ;
|
236
|
+
oField.style.width = this.FieldWidth + 'px' ;
|
237
|
+
oField.innerHTML = '<table width="100%" cellpadding="0" cellspacing="0" style="TABLE-LAYOUT: fixed;"><tbody><tr><td class="SC_FieldLabel"><label> </label></td><td class="SC_FieldButton"> </td></tr></tbody></table>' ;
|
238
|
+
|
239
|
+
this._LabelEl = oField.getElementsByTagName('label')[0] ; // Memory Leak
|
240
|
+
this._LabelEl.innerHTML = this.Label ;
|
241
|
+
}
|
242
|
+
else
|
243
|
+
{
|
244
|
+
oField.className = 'TB_Button_Off' ;
|
245
|
+
//oField.innerHTML = '<span className="SC_FieldCaption">' + this.Caption + '<table cellpadding="0" cellspacing="0" style="TABLE-LAYOUT: fixed;"><tbody><tr><td class="SC_FieldButton" style="border-left: none;"> </td></tr></tbody></table>' ;
|
246
|
+
//oField.innerHTML = '<table cellpadding="0" cellspacing="0" style="TABLE-LAYOUT: fixed;"><tbody><tr><td class="SC_FieldButton" style="border-left: none;"> </td></tr></tbody></table>' ;
|
247
|
+
|
248
|
+
// Gets the correct CSS class to use for the specified style (param).
|
249
|
+
oField.innerHTML = '<table title="' + this.Tooltip + '" class="' + sClass + '" cellspacing="0" cellpadding="0" border="0">' +
|
250
|
+
'<tr>' +
|
251
|
+
//'<td class="TB_Icon"><img src="' + FCKConfig.SkinPath + 'toolbar/' + this.Command.Name.toLowerCase() + '.gif" width="21" height="21"></td>' +
|
252
|
+
'<td><img class="TB_Button_Padding" src="' + FCK_SPACER_PATH + '" /></td>' +
|
253
|
+
'<td class="TB_Text">' + this.Caption + '</td>' +
|
254
|
+
'<td><img class="TB_Button_Padding" src="' + FCK_SPACER_PATH + '" /></td>' +
|
255
|
+
'<td class="TB_ButtonArrow"><img src="' + FCKConfig.SkinPath + 'images/toolbar.buttonarrow.gif" width="5" height="3"></td>' +
|
256
|
+
'<td><img class="TB_Button_Padding" src="' + FCK_SPACER_PATH + '" /></td>' +
|
257
|
+
'</tr>' +
|
258
|
+
'</table>' ;
|
259
|
+
}
|
260
|
+
|
261
|
+
|
262
|
+
// Events Handlers
|
263
|
+
|
264
|
+
FCKTools.AddEventListenerEx( oField, 'mouseover', FCKSpecialCombo_OnMouseOver, this ) ;
|
265
|
+
FCKTools.AddEventListenerEx( oField, 'mouseout', FCKSpecialCombo_OnMouseOut, this ) ;
|
266
|
+
FCKTools.AddEventListenerEx( oField, 'click', FCKSpecialCombo_OnClick, this ) ;
|
267
|
+
|
268
|
+
FCKTools.DisableSelection( this._Panel.Document.body ) ;
|
269
|
+
}
|
270
|
+
|
271
|
+
function FCKSpecialCombo_Cleanup()
|
272
|
+
{
|
273
|
+
this._LabelEl = null ;
|
274
|
+
this._OuterTable = null ;
|
275
|
+
this._ItemsHolderEl = null ;
|
276
|
+
this._PanelBox = null ;
|
277
|
+
|
278
|
+
if ( this.Items )
|
279
|
+
{
|
280
|
+
for ( var key in this.Items )
|
281
|
+
this.Items[key] = null ;
|
282
|
+
}
|
283
|
+
}
|
284
|
+
|
285
|
+
function FCKSpecialCombo_OnMouseOver( ev, specialCombo )
|
286
|
+
{
|
287
|
+
if ( specialCombo.Enabled )
|
288
|
+
{
|
289
|
+
switch ( specialCombo.Style )
|
290
|
+
{
|
291
|
+
case FCK_TOOLBARITEM_ONLYICON :
|
292
|
+
this.className = 'TB_Button_On_Over';
|
293
|
+
break ;
|
294
|
+
case FCK_TOOLBARITEM_ONLYTEXT :
|
295
|
+
this.className = 'TB_Button_On_Over';
|
296
|
+
break ;
|
297
|
+
case FCK_TOOLBARITEM_ICONTEXT :
|
298
|
+
this.className = 'SC_Field SC_FieldOver' ;
|
299
|
+
break ;
|
300
|
+
}
|
301
|
+
}
|
302
|
+
}
|
303
|
+
|
304
|
+
function FCKSpecialCombo_OnMouseOut( ev, specialCombo )
|
305
|
+
{
|
306
|
+
switch ( specialCombo.Style )
|
307
|
+
{
|
308
|
+
case FCK_TOOLBARITEM_ONLYICON :
|
309
|
+
this.className = 'TB_Button_Off';
|
310
|
+
break ;
|
311
|
+
case FCK_TOOLBARITEM_ONLYTEXT :
|
312
|
+
this.className = 'TB_Button_Off';
|
313
|
+
break ;
|
314
|
+
case FCK_TOOLBARITEM_ICONTEXT :
|
315
|
+
this.className='SC_Field' ;
|
316
|
+
break ;
|
317
|
+
}
|
318
|
+
}
|
319
|
+
|
320
|
+
function FCKSpecialCombo_OnClick( e, specialCombo )
|
321
|
+
{
|
322
|
+
// For Mozilla we must stop the event propagation to avoid it hiding
|
323
|
+
// the panel because of a click outside of it.
|
324
|
+
// if ( e )
|
325
|
+
// {
|
326
|
+
// e.stopPropagation() ;
|
327
|
+
// FCKPanelEventHandlers.OnDocumentClick( e ) ;
|
328
|
+
// }
|
329
|
+
|
330
|
+
if ( specialCombo.Enabled )
|
331
|
+
{
|
332
|
+
var oPanel = specialCombo._Panel ;
|
333
|
+
var oPanelBox = specialCombo._PanelBox ;
|
334
|
+
var oItemsHolder = specialCombo._ItemsHolderEl ;
|
335
|
+
var iMaxHeight = specialCombo.PanelMaxHeight ;
|
336
|
+
|
337
|
+
if ( specialCombo.OnBeforeClick )
|
338
|
+
specialCombo.OnBeforeClick( specialCombo ) ;
|
339
|
+
|
340
|
+
// This is a tricky thing. We must call the "Load" function, otherwise
|
341
|
+
// it will not be possible to retrieve "oItemsHolder.offsetHeight" (IE only).
|
342
|
+
if ( FCKBrowserInfo.IsIE )
|
343
|
+
oPanel.Preload( 0, this.offsetHeight, this ) ;
|
344
|
+
|
345
|
+
if ( oItemsHolder.offsetHeight > iMaxHeight )
|
346
|
+
// {
|
347
|
+
oPanelBox.style.height = iMaxHeight + 'px' ;
|
348
|
+
|
349
|
+
// if ( FCKBrowserInfo.IsGecko )
|
350
|
+
// oPanelBox.style.overflow = '-moz-scrollbars-vertical' ;
|
351
|
+
// }
|
352
|
+
else
|
353
|
+
oPanelBox.style.height = '' ;
|
354
|
+
|
355
|
+
// oPanel.PanelDiv.style.width = specialCombo.PanelWidth + 'px' ;
|
356
|
+
|
357
|
+
oPanel.Show( 0, this.offsetHeight, this ) ;
|
358
|
+
}
|
359
|
+
|
360
|
+
// return false ;
|
361
|
+
}
|
362
|
+
|
363
|
+
/*
|
364
|
+
Sample Combo Field HTML output:
|
365
|
+
|
366
|
+
<div class="SC_Field" style="width: 80px;">
|
367
|
+
<table width="100%" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
|
368
|
+
<tbody>
|
369
|
+
<tr>
|
370
|
+
<td class="SC_FieldLabel"><label> </label></td>
|
371
|
+
<td class="SC_FieldButton"> </td>
|
372
|
+
</tr>
|
373
|
+
</tbody>
|
374
|
+
</table>
|
375
|
+
</div>
|
376
|
+
*/
|
@@ -0,0 +1,1500 @@
|
|
1
|
+
/*
|
2
|
+
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
+
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
4
|
+
*
|
5
|
+
* == BEGIN LICENSE ==
|
6
|
+
*
|
7
|
+
* Licensed under the terms of any of the following licenses at your
|
8
|
+
* choice:
|
9
|
+
*
|
10
|
+
* - GNU General Public License Version 2 or later (the "GPL")
|
11
|
+
* http://www.gnu.org/licenses/gpl.html
|
12
|
+
*
|
13
|
+
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
|
14
|
+
* http://www.gnu.org/licenses/lgpl.html
|
15
|
+
*
|
16
|
+
* - Mozilla Public License Version 1.1 or later (the "MPL")
|
17
|
+
* http://www.mozilla.org/MPL/MPL-1.1.html
|
18
|
+
*
|
19
|
+
* == END LICENSE ==
|
20
|
+
*
|
21
|
+
* FCKStyle Class: contains a style definition, and all methods to work with
|
22
|
+
* the style in a document.
|
23
|
+
*/
|
24
|
+
|
25
|
+
/**
|
26
|
+
* @param {Object} styleDesc A "style descriptor" object, containing the raw
|
27
|
+
* style definition in the following format:
|
28
|
+
* '<style name>' : {
|
29
|
+
* Element : '<element name>',
|
30
|
+
* Attributes : {
|
31
|
+
* '<att name>' : '<att value>',
|
32
|
+
* ...
|
33
|
+
* },
|
34
|
+
* Styles : {
|
35
|
+
* '<style name>' : '<style value>',
|
36
|
+
* ...
|
37
|
+
* },
|
38
|
+
* Overrides : '<element name>'|{
|
39
|
+
* Element : '<element name>',
|
40
|
+
* Attributes : {
|
41
|
+
* '<att name>' : '<att value>'|/<att regex>/
|
42
|
+
* },
|
43
|
+
* Styles : {
|
44
|
+
* '<style name>' : '<style value>'|/<style regex>/
|
45
|
+
* },
|
46
|
+
* }
|
47
|
+
* }
|
48
|
+
*/
|
49
|
+
var FCKStyle = function( styleDesc )
|
50
|
+
{
|
51
|
+
this.Element = ( styleDesc.Element || 'span' ).toLowerCase() ;
|
52
|
+
this._StyleDesc = styleDesc ;
|
53
|
+
}
|
54
|
+
|
55
|
+
FCKStyle.prototype =
|
56
|
+
{
|
57
|
+
/**
|
58
|
+
* Get the style type, based on its element name:
|
59
|
+
* - FCK_STYLE_BLOCK (0): Block Style
|
60
|
+
* - FCK_STYLE_INLINE (1): Inline Style
|
61
|
+
* - FCK_STYLE_OBJECT (2): Object Style
|
62
|
+
*/
|
63
|
+
GetType : function()
|
64
|
+
{
|
65
|
+
var type = this.GetType_$ ;
|
66
|
+
|
67
|
+
if ( type != undefined )
|
68
|
+
return type ;
|
69
|
+
|
70
|
+
var elementName = this.Element ;
|
71
|
+
|
72
|
+
if ( elementName == '#' || FCKListsLib.StyleBlockElements[ elementName ] )
|
73
|
+
type = FCK_STYLE_BLOCK ;
|
74
|
+
else if ( FCKListsLib.StyleObjectElements[ elementName ] )
|
75
|
+
type = FCK_STYLE_OBJECT ;
|
76
|
+
else
|
77
|
+
type = FCK_STYLE_INLINE ;
|
78
|
+
|
79
|
+
return ( this.GetType_$ = type ) ;
|
80
|
+
},
|
81
|
+
|
82
|
+
/**
|
83
|
+
* Apply the style to the current selection.
|
84
|
+
*/
|
85
|
+
ApplyToSelection : function( targetWindow )
|
86
|
+
{
|
87
|
+
// Create a range for the current selection.
|
88
|
+
var range = new FCKDomRange( targetWindow ) ;
|
89
|
+
range.MoveToSelection() ;
|
90
|
+
|
91
|
+
this.ApplyToRange( range, true ) ;
|
92
|
+
},
|
93
|
+
|
94
|
+
/**
|
95
|
+
* Apply the style to a FCKDomRange.
|
96
|
+
*/
|
97
|
+
ApplyToRange : function( range, selectIt, updateRange )
|
98
|
+
{
|
99
|
+
// ApplyToRange is not valid for FCK_STYLE_OBJECT types.
|
100
|
+
// Use ApplyToObject instead.
|
101
|
+
|
102
|
+
switch ( this.GetType() )
|
103
|
+
{
|
104
|
+
case FCK_STYLE_BLOCK :
|
105
|
+
this.ApplyToRange = this._ApplyBlockStyle ;
|
106
|
+
break ;
|
107
|
+
case FCK_STYLE_INLINE :
|
108
|
+
this.ApplyToRange = this._ApplyInlineStyle ;
|
109
|
+
break ;
|
110
|
+
default :
|
111
|
+
return ;
|
112
|
+
}
|
113
|
+
|
114
|
+
this.ApplyToRange( range, selectIt, updateRange ) ;
|
115
|
+
},
|
116
|
+
|
117
|
+
/**
|
118
|
+
* Apply the style to an object. Valid for FCK_STYLE_BLOCK types only.
|
119
|
+
*/
|
120
|
+
ApplyToObject : function( objectElement )
|
121
|
+
{
|
122
|
+
if ( !objectElement )
|
123
|
+
return ;
|
124
|
+
|
125
|
+
this.BuildElement( null, objectElement ) ;
|
126
|
+
},
|
127
|
+
|
128
|
+
/**
|
129
|
+
* Remove the style from the current selection.
|
130
|
+
*/
|
131
|
+
RemoveFromSelection : function( targetWindow )
|
132
|
+
{
|
133
|
+
// Create a range for the current selection.
|
134
|
+
var range = new FCKDomRange( targetWindow ) ;
|
135
|
+
range.MoveToSelection() ;
|
136
|
+
|
137
|
+
this.RemoveFromRange( range, true ) ;
|
138
|
+
},
|
139
|
+
|
140
|
+
/**
|
141
|
+
* Remove the style from a FCKDomRange. Block type styles will have no
|
142
|
+
* effect.
|
143
|
+
*/
|
144
|
+
RemoveFromRange : function( range, selectIt, updateRange )
|
145
|
+
{
|
146
|
+
var bookmark ;
|
147
|
+
|
148
|
+
// Create the attribute list to be used later for element comparisons.
|
149
|
+
var styleAttribs = this._GetAttribsForComparison() ;
|
150
|
+
var styleOverrides = this._GetOverridesForComparison() ;
|
151
|
+
|
152
|
+
// If collapsed, we are removing all conflicting styles from the range
|
153
|
+
// parent tree.
|
154
|
+
if ( range.CheckIsCollapsed() )
|
155
|
+
{
|
156
|
+
// Bookmark the range so we can re-select it after processing.
|
157
|
+
var bookmark = range.CreateBookmark( true ) ;
|
158
|
+
|
159
|
+
// Let's start from the bookmark <span> parent.
|
160
|
+
var bookmarkStart = range.GetBookmarkNode( bookmark, true ) ;
|
161
|
+
|
162
|
+
var path = new FCKElementPath( bookmarkStart.parentNode ) ;
|
163
|
+
|
164
|
+
// While looping through the path, we'll be saving references to
|
165
|
+
// parent elements if the range is in one of their boundaries. In
|
166
|
+
// this way, we are able to create a copy of those elements when
|
167
|
+
// removing a style if the range is in a boundary limit (see #1270).
|
168
|
+
var boundaryElements = [] ;
|
169
|
+
|
170
|
+
// Check if the range is in the boundary limits of an element
|
171
|
+
// (related to #1270).
|
172
|
+
var isBoundaryRight = !FCKDomTools.GetNextSibling( bookmarkStart ) ;
|
173
|
+
var isBoundary = isBoundaryRight || !FCKDomTools.GetPreviousSibling( bookmarkStart ) ;
|
174
|
+
|
175
|
+
// This is the last element to be removed in the boundary situation
|
176
|
+
// described at #1270.
|
177
|
+
var lastBoundaryElement ;
|
178
|
+
var boundaryLimitIndex = -1 ;
|
179
|
+
|
180
|
+
for ( var i = 0 ; i < path.Elements.length ; i++ )
|
181
|
+
{
|
182
|
+
var pathElement = path.Elements[i] ;
|
183
|
+
if ( this.CheckElementRemovable( pathElement ) )
|
184
|
+
{
|
185
|
+
if ( isBoundary
|
186
|
+
&& !FCKDomTools.CheckIsEmptyElement( pathElement,
|
187
|
+
function( el )
|
188
|
+
{
|
189
|
+
return ( el != bookmarkStart ) ;
|
190
|
+
} )
|
191
|
+
)
|
192
|
+
{
|
193
|
+
lastBoundaryElement = pathElement ;
|
194
|
+
|
195
|
+
// We'll be continuously including elements in the
|
196
|
+
// boundaryElements array, but only those added before
|
197
|
+
// setting lastBoundaryElement must be used later, so
|
198
|
+
// let's mark the current index here.
|
199
|
+
boundaryLimitIndex = boundaryElements.length - 1 ;
|
200
|
+
}
|
201
|
+
else
|
202
|
+
{
|
203
|
+
var pathElementName = pathElement.nodeName.toLowerCase() ;
|
204
|
+
|
205
|
+
if ( pathElementName == this.Element )
|
206
|
+
{
|
207
|
+
// Remove any attribute that conflict with this style, no
|
208
|
+
// matter their values.
|
209
|
+
for ( var att in styleAttribs )
|
210
|
+
{
|
211
|
+
if ( FCKDomTools.HasAttribute( pathElement, att ) )
|
212
|
+
{
|
213
|
+
switch ( att )
|
214
|
+
{
|
215
|
+
case 'style' :
|
216
|
+
this._RemoveStylesFromElement( pathElement ) ;
|
217
|
+
break ;
|
218
|
+
|
219
|
+
case 'class' :
|
220
|
+
// The 'class' element value must match (#1318).
|
221
|
+
if ( FCKDomTools.GetAttributeValue( pathElement, att ) != this.GetFinalAttributeValue( att ) )
|
222
|
+
continue ;
|
223
|
+
|
224
|
+
/*jsl:fallthru*/
|
225
|
+
|
226
|
+
default :
|
227
|
+
FCKDomTools.RemoveAttribute( pathElement, att ) ;
|
228
|
+
}
|
229
|
+
}
|
230
|
+
}
|
231
|
+
}
|
232
|
+
|
233
|
+
// Remove overrides defined to the same element name.
|
234
|
+
this._RemoveOverrides( pathElement, styleOverrides[ pathElementName ] ) ;
|
235
|
+
|
236
|
+
// Remove the element if no more attributes are available and it's an inline style element
|
237
|
+
if ( this.GetType() == FCK_STYLE_INLINE)
|
238
|
+
this._RemoveNoAttribElement( pathElement ) ;
|
239
|
+
}
|
240
|
+
}
|
241
|
+
else if ( isBoundary )
|
242
|
+
boundaryElements.push( pathElement ) ;
|
243
|
+
|
244
|
+
// Check if we are still in a boundary (at the same side).
|
245
|
+
isBoundary = isBoundary && ( ( isBoundaryRight && !FCKDomTools.GetNextSibling( pathElement ) ) || ( !isBoundaryRight && !FCKDomTools.GetPreviousSibling( pathElement ) ) ) ;
|
246
|
+
|
247
|
+
// If we are in an element that is not anymore a boundary, or
|
248
|
+
// we are at the last element, let's move things outside the
|
249
|
+
// boundary (if available).
|
250
|
+
if ( lastBoundaryElement && ( !isBoundary || ( i == path.Elements.length - 1 ) ) )
|
251
|
+
{
|
252
|
+
// Remove the bookmark node from the DOM.
|
253
|
+
var currentElement = FCKDomTools.RemoveNode( bookmarkStart ) ;
|
254
|
+
|
255
|
+
// Build the collapsed group of elements that are not
|
256
|
+
// removed by this style, but share the boundary.
|
257
|
+
// (see comment 1 and 2 at #1270)
|
258
|
+
for ( var j = 0 ; j <= boundaryLimitIndex ; j++ )
|
259
|
+
{
|
260
|
+
var newElement = FCKDomTools.CloneElement( boundaryElements[j] ) ;
|
261
|
+
newElement.appendChild( currentElement ) ;
|
262
|
+
currentElement = newElement ;
|
263
|
+
}
|
264
|
+
|
265
|
+
// Re-insert the bookmark node (and the collapsed elements)
|
266
|
+
// in the DOM, in the new position next to the styled element.
|
267
|
+
if ( isBoundaryRight )
|
268
|
+
FCKDomTools.InsertAfterNode( lastBoundaryElement, currentElement ) ;
|
269
|
+
else
|
270
|
+
lastBoundaryElement.parentNode.insertBefore( currentElement, lastBoundaryElement ) ;
|
271
|
+
|
272
|
+
isBoundary = false ;
|
273
|
+
lastBoundaryElement = null ;
|
274
|
+
}
|
275
|
+
}
|
276
|
+
|
277
|
+
// Re-select the original range.
|
278
|
+
if ( selectIt )
|
279
|
+
range.SelectBookmark( bookmark ) ;
|
280
|
+
|
281
|
+
if ( updateRange )
|
282
|
+
range.MoveToBookmark( bookmark ) ;
|
283
|
+
|
284
|
+
return ;
|
285
|
+
}
|
286
|
+
|
287
|
+
// Expand the range, if inside inline element boundaries.
|
288
|
+
range.Expand( 'inline_elements' ) ;
|
289
|
+
|
290
|
+
// Bookmark the range so we can re-select it after processing.
|
291
|
+
bookmark = range.CreateBookmark( true ) ;
|
292
|
+
|
293
|
+
// The style will be applied within the bookmark boundaries.
|
294
|
+
var startNode = range.GetBookmarkNode( bookmark, true ) ;
|
295
|
+
var endNode = range.GetBookmarkNode( bookmark, false ) ;
|
296
|
+
|
297
|
+
range.Release( true ) ;
|
298
|
+
|
299
|
+
// We need to check the selection boundaries (bookmark spans) to break
|
300
|
+
// the code in a way that we can properly remove partially selected nodes.
|
301
|
+
// For example, removing a <b> style from
|
302
|
+
// <b>This is [some text</b> to show <b>the] problem</b>
|
303
|
+
// ... where [ and ] represent the selection, must result:
|
304
|
+
// <b>This is </b>[some text to show the]<b> problem</b>
|
305
|
+
// The strategy is simple, we just break the partial nodes before the
|
306
|
+
// removal logic, having something that could be represented this way:
|
307
|
+
// <b>This is </b>[<b>some text</b> to show <b>the</b>]<b> problem</b>
|
308
|
+
|
309
|
+
// Let's start checking the start boundary.
|
310
|
+
var path = new FCKElementPath( startNode ) ;
|
311
|
+
var pathElements = path.Elements ;
|
312
|
+
var pathElement ;
|
313
|
+
|
314
|
+
for ( var i = 1 ; i < pathElements.length ; i++ )
|
315
|
+
{
|
316
|
+
pathElement = pathElements[i] ;
|
317
|
+
|
318
|
+
if ( pathElement == path.Block || pathElement == path.BlockLimit )
|
319
|
+
break ;
|
320
|
+
|
321
|
+
// If this element can be removed (even partially).
|
322
|
+
if ( this.CheckElementRemovable( pathElement ) )
|
323
|
+
FCKDomTools.BreakParent( startNode, pathElement, range ) ;
|
324
|
+
}
|
325
|
+
|
326
|
+
// Now the end boundary.
|
327
|
+
path = new FCKElementPath( endNode ) ;
|
328
|
+
pathElements = path.Elements ;
|
329
|
+
|
330
|
+
for ( var i = 1 ; i < pathElements.length ; i++ )
|
331
|
+
{
|
332
|
+
pathElement = pathElements[i] ;
|
333
|
+
|
334
|
+
if ( pathElement == path.Block || pathElement == path.BlockLimit )
|
335
|
+
break ;
|
336
|
+
|
337
|
+
elementName = pathElement.nodeName.toLowerCase() ;
|
338
|
+
|
339
|
+
// If this element can be removed (even partially).
|
340
|
+
if ( this.CheckElementRemovable( pathElement ) )
|
341
|
+
FCKDomTools.BreakParent( endNode, pathElement, range ) ;
|
342
|
+
}
|
343
|
+
|
344
|
+
// Navigate through all nodes between the bookmarks.
|
345
|
+
var currentNode = FCKDomTools.GetNextSourceNode( startNode, true ) ;
|
346
|
+
|
347
|
+
while ( currentNode )
|
348
|
+
{
|
349
|
+
// Cache the next node to be processed. Do it now, because
|
350
|
+
// currentNode may be removed.
|
351
|
+
var nextNode = FCKDomTools.GetNextSourceNode( currentNode ) ;
|
352
|
+
|
353
|
+
// Remove elements nodes that match with this style rules.
|
354
|
+
if ( currentNode.nodeType == 1 )
|
355
|
+
{
|
356
|
+
var elementName = currentNode.nodeName.toLowerCase() ;
|
357
|
+
|
358
|
+
var mayRemove = ( elementName == this.Element ) ;
|
359
|
+
if ( mayRemove )
|
360
|
+
{
|
361
|
+
// Remove any attribute that conflict with this style, no matter
|
362
|
+
// their values.
|
363
|
+
for ( var att in styleAttribs )
|
364
|
+
{
|
365
|
+
if ( FCKDomTools.HasAttribute( currentNode, att ) )
|
366
|
+
{
|
367
|
+
switch ( att )
|
368
|
+
{
|
369
|
+
case 'style' :
|
370
|
+
this._RemoveStylesFromElement( currentNode ) ;
|
371
|
+
break ;
|
372
|
+
|
373
|
+
case 'class' :
|
374
|
+
// The 'class' element value must match (#1318).
|
375
|
+
if ( FCKDomTools.GetAttributeValue( currentNode, att ) != this.GetFinalAttributeValue( att ) )
|
376
|
+
continue ;
|
377
|
+
|
378
|
+
/*jsl:fallthru*/
|
379
|
+
|
380
|
+
default :
|
381
|
+
FCKDomTools.RemoveAttribute( currentNode, att ) ;
|
382
|
+
}
|
383
|
+
}
|
384
|
+
}
|
385
|
+
}
|
386
|
+
else
|
387
|
+
mayRemove = !!styleOverrides[ elementName ] ;
|
388
|
+
|
389
|
+
if ( mayRemove )
|
390
|
+
{
|
391
|
+
// Remove overrides defined to the same element name.
|
392
|
+
this._RemoveOverrides( currentNode, styleOverrides[ elementName ] ) ;
|
393
|
+
|
394
|
+
// Remove the element if no more attributes are available.
|
395
|
+
this._RemoveNoAttribElement( currentNode ) ;
|
396
|
+
}
|
397
|
+
}
|
398
|
+
|
399
|
+
// If we have reached the end of the selection, stop looping.
|
400
|
+
if ( nextNode == endNode )
|
401
|
+
break ;
|
402
|
+
|
403
|
+
currentNode = nextNode ;
|
404
|
+
}
|
405
|
+
|
406
|
+
this._FixBookmarkStart( startNode ) ;
|
407
|
+
|
408
|
+
// Re-select the original range.
|
409
|
+
if ( selectIt )
|
410
|
+
range.SelectBookmark( bookmark ) ;
|
411
|
+
|
412
|
+
if ( updateRange )
|
413
|
+
range.MoveToBookmark( bookmark ) ;
|
414
|
+
},
|
415
|
+
|
416
|
+
/**
|
417
|
+
* Checks if an element, or any of its attributes, is removable by the
|
418
|
+
* current style definition.
|
419
|
+
*/
|
420
|
+
CheckElementRemovable : function( element, fullMatch )
|
421
|
+
{
|
422
|
+
if ( !element )
|
423
|
+
return false ;
|
424
|
+
|
425
|
+
var elementName = element.nodeName.toLowerCase() ;
|
426
|
+
|
427
|
+
// If the element name is the same as the style name.
|
428
|
+
if ( elementName == this.Element )
|
429
|
+
{
|
430
|
+
// If no attributes are defined in the element.
|
431
|
+
if ( !fullMatch && !FCKDomTools.HasAttributes( element ) )
|
432
|
+
return true ;
|
433
|
+
|
434
|
+
// If any attribute conflicts with the style attributes.
|
435
|
+
var attribs = this._GetAttribsForComparison() ;
|
436
|
+
var allMatched = ( attribs._length == 0 ) ;
|
437
|
+
for ( var att in attribs )
|
438
|
+
{
|
439
|
+
if ( att == '_length' )
|
440
|
+
continue ;
|
441
|
+
|
442
|
+
if ( this._CompareAttributeValues( att, FCKDomTools.GetAttributeValue( element, att ), ( this.GetFinalAttributeValue( att ) || '' ) ) )
|
443
|
+
{
|
444
|
+
allMatched = true ;
|
445
|
+
if ( !fullMatch )
|
446
|
+
break ;
|
447
|
+
}
|
448
|
+
else
|
449
|
+
{
|
450
|
+
allMatched = false ;
|
451
|
+
if ( fullMatch )
|
452
|
+
return false ;
|
453
|
+
}
|
454
|
+
}
|
455
|
+
if ( allMatched )
|
456
|
+
return true ;
|
457
|
+
}
|
458
|
+
|
459
|
+
// Check if the element can be somehow overriden.
|
460
|
+
var override = this._GetOverridesForComparison()[ elementName ] ;
|
461
|
+
if ( override )
|
462
|
+
{
|
463
|
+
// If no attributes have been defined, remove the element.
|
464
|
+
if ( !( attribs = override.Attributes ) ) // Only one "="
|
465
|
+
return true ;
|
466
|
+
|
467
|
+
for ( var i = 0 ; i < attribs.length ; i++ )
|
468
|
+
{
|
469
|
+
var attName = attribs[i][0] ;
|
470
|
+
if ( FCKDomTools.HasAttribute( element, attName ) )
|
471
|
+
{
|
472
|
+
var attValue = attribs[i][1] ;
|
473
|
+
|
474
|
+
// Remove the attribute if:
|
475
|
+
// - The override definition value is null ;
|
476
|
+
// - The override definition valie is a string that
|
477
|
+
// matches the attribute value exactly.
|
478
|
+
// - The override definition value is a regex that
|
479
|
+
// has matches in the attribute value.
|
480
|
+
if ( attValue == null ||
|
481
|
+
( typeof attValue == 'string' && FCKDomTools.GetAttributeValue( element, attName ) == attValue ) ||
|
482
|
+
attValue.test( FCKDomTools.GetAttributeValue( element, attName ) ) )
|
483
|
+
return true ;
|
484
|
+
}
|
485
|
+
}
|
486
|
+
}
|
487
|
+
|
488
|
+
return false ;
|
489
|
+
},
|
490
|
+
|
491
|
+
/**
|
492
|
+
* Get the style state for an element path. Returns "true" if the element
|
493
|
+
* is active in the path.
|
494
|
+
*/
|
495
|
+
CheckActive : function( elementPath )
|
496
|
+
{
|
497
|
+
switch ( this.GetType() )
|
498
|
+
{
|
499
|
+
case FCK_STYLE_BLOCK :
|
500
|
+
return this.CheckElementRemovable( elementPath.Block || elementPath.BlockLimit, true ) ;
|
501
|
+
|
502
|
+
case FCK_STYLE_INLINE :
|
503
|
+
|
504
|
+
var elements = elementPath.Elements ;
|
505
|
+
|
506
|
+
for ( var i = 0 ; i < elements.length ; i++ )
|
507
|
+
{
|
508
|
+
var element = elements[i] ;
|
509
|
+
|
510
|
+
if ( element == elementPath.Block || element == elementPath.BlockLimit )
|
511
|
+
continue ;
|
512
|
+
|
513
|
+
if ( this.CheckElementRemovable( element, true ) )
|
514
|
+
return true ;
|
515
|
+
}
|
516
|
+
}
|
517
|
+
return false ;
|
518
|
+
},
|
519
|
+
|
520
|
+
/**
|
521
|
+
* Removes an inline style from inside an element tree. The element node
|
522
|
+
* itself is not checked or removed, only the child tree inside of it.
|
523
|
+
*/
|
524
|
+
RemoveFromElement : function( element )
|
525
|
+
{
|
526
|
+
var attribs = this._GetAttribsForComparison() ;
|
527
|
+
var overrides = this._GetOverridesForComparison() ;
|
528
|
+
|
529
|
+
// Get all elements with the same name.
|
530
|
+
var innerElements = element.getElementsByTagName( this.Element ) ;
|
531
|
+
|
532
|
+
for ( var i = innerElements.length - 1 ; i >= 0 ; i-- )
|
533
|
+
{
|
534
|
+
var innerElement = innerElements[i] ;
|
535
|
+
|
536
|
+
// Remove any attribute that conflict with this style, no matter
|
537
|
+
// their values.
|
538
|
+
for ( var att in attribs )
|
539
|
+
{
|
540
|
+
if ( FCKDomTools.HasAttribute( innerElement, att ) )
|
541
|
+
{
|
542
|
+
switch ( att )
|
543
|
+
{
|
544
|
+
case 'style' :
|
545
|
+
this._RemoveStylesFromElement( innerElement ) ;
|
546
|
+
break ;
|
547
|
+
|
548
|
+
case 'class' :
|
549
|
+
// The 'class' element value must match (#1318).
|
550
|
+
if ( FCKDomTools.GetAttributeValue( innerElement, att ) != this.GetFinalAttributeValue( att ) )
|
551
|
+
continue ;
|
552
|
+
|
553
|
+
/*jsl:fallthru*/
|
554
|
+
|
555
|
+
default :
|
556
|
+
FCKDomTools.RemoveAttribute( innerElement, att ) ;
|
557
|
+
}
|
558
|
+
}
|
559
|
+
}
|
560
|
+
|
561
|
+
// Remove overrides defined to the same element name.
|
562
|
+
this._RemoveOverrides( innerElement, overrides[ this.Element ] ) ;
|
563
|
+
|
564
|
+
// Remove the element if no more attributes are available.
|
565
|
+
this._RemoveNoAttribElement( innerElement ) ;
|
566
|
+
}
|
567
|
+
|
568
|
+
// Now remove any other element with different name that is
|
569
|
+
// defined to be overriden.
|
570
|
+
for ( var overrideElement in overrides )
|
571
|
+
{
|
572
|
+
if ( overrideElement != this.Element )
|
573
|
+
{
|
574
|
+
// Get all elements.
|
575
|
+
innerElements = element.getElementsByTagName( overrideElement ) ;
|
576
|
+
|
577
|
+
for ( var i = innerElements.length - 1 ; i >= 0 ; i-- )
|
578
|
+
{
|
579
|
+
var innerElement = innerElements[i] ;
|
580
|
+
this._RemoveOverrides( innerElement, overrides[ overrideElement ] ) ;
|
581
|
+
this._RemoveNoAttribElement( innerElement ) ;
|
582
|
+
}
|
583
|
+
}
|
584
|
+
}
|
585
|
+
},
|
586
|
+
|
587
|
+
_RemoveStylesFromElement : function( element )
|
588
|
+
{
|
589
|
+
var elementStyle = element.style.cssText ;
|
590
|
+
var pattern = this.GetFinalStyleValue() ;
|
591
|
+
|
592
|
+
if ( elementStyle.length > 0 && pattern.length == 0 )
|
593
|
+
return ;
|
594
|
+
|
595
|
+
pattern = '(^|;)\\s*(' +
|
596
|
+
pattern.replace( /\s*([^ ]+):.*?(;|$)/g, '$1|' ).replace( /\|$/, '' ) +
|
597
|
+
'):[^;]+' ;
|
598
|
+
|
599
|
+
var regex = new RegExp( pattern, 'gi' ) ;
|
600
|
+
|
601
|
+
elementStyle = elementStyle.replace( regex, '' ).Trim() ;
|
602
|
+
|
603
|
+
if ( elementStyle.length == 0 || elementStyle == ';' )
|
604
|
+
FCKDomTools.RemoveAttribute( element, 'style' ) ;
|
605
|
+
else
|
606
|
+
element.style.cssText = elementStyle.replace( regex, '' ) ;
|
607
|
+
},
|
608
|
+
|
609
|
+
/**
|
610
|
+
* Remove all attributes that are defined to be overriden,
|
611
|
+
*/
|
612
|
+
_RemoveOverrides : function( element, override )
|
613
|
+
{
|
614
|
+
var attributes = override && override.Attributes ;
|
615
|
+
|
616
|
+
if ( attributes )
|
617
|
+
{
|
618
|
+
for ( var i = 0 ; i < attributes.length ; i++ )
|
619
|
+
{
|
620
|
+
var attName = attributes[i][0] ;
|
621
|
+
|
622
|
+
if ( FCKDomTools.HasAttribute( element, attName ) )
|
623
|
+
{
|
624
|
+
var attValue = attributes[i][1] ;
|
625
|
+
|
626
|
+
// Remove the attribute if:
|
627
|
+
// - The override definition value is null ;
|
628
|
+
// - The override definition valie is a string that
|
629
|
+
// matches the attribute value exactly.
|
630
|
+
// - The override definition value is a regex that
|
631
|
+
// has matches in the attribute value.
|
632
|
+
if ( attValue == null ||
|
633
|
+
( attValue.test && attValue.test( FCKDomTools.GetAttributeValue( element, attName ) ) ) ||
|
634
|
+
( typeof attValue == 'string' && FCKDomTools.GetAttributeValue( element, attName ) == attValue ) )
|
635
|
+
FCKDomTools.RemoveAttribute( element, attName ) ;
|
636
|
+
}
|
637
|
+
}
|
638
|
+
}
|
639
|
+
},
|
640
|
+
|
641
|
+
/**
|
642
|
+
* If the element has no more attributes, remove it.
|
643
|
+
*/
|
644
|
+
_RemoveNoAttribElement : function( element )
|
645
|
+
{
|
646
|
+
// If no more attributes remained in the element, remove it,
|
647
|
+
// leaving its children.
|
648
|
+
if ( !FCKDomTools.HasAttributes( element ) )
|
649
|
+
{
|
650
|
+
// Removing elements may open points where merging is possible,
|
651
|
+
// so let's cache the first and last nodes for later checking.
|
652
|
+
var firstChild = element.firstChild ;
|
653
|
+
var lastChild = element.lastChild ;
|
654
|
+
|
655
|
+
FCKDomTools.RemoveNode( element, true ) ;
|
656
|
+
|
657
|
+
// Check the cached nodes for merging.
|
658
|
+
this._MergeSiblings( firstChild ) ;
|
659
|
+
|
660
|
+
if ( firstChild != lastChild )
|
661
|
+
this._MergeSiblings( lastChild ) ;
|
662
|
+
}
|
663
|
+
},
|
664
|
+
|
665
|
+
/**
|
666
|
+
* Creates a DOM element for this style object.
|
667
|
+
*/
|
668
|
+
BuildElement : function( targetDoc, element )
|
669
|
+
{
|
670
|
+
// Create the element.
|
671
|
+
var el = element || targetDoc.createElement( this.Element ) ;
|
672
|
+
|
673
|
+
// Assign all defined attributes.
|
674
|
+
var attribs = this._StyleDesc.Attributes ;
|
675
|
+
var attValue ;
|
676
|
+
if ( attribs )
|
677
|
+
{
|
678
|
+
for ( var att in attribs )
|
679
|
+
{
|
680
|
+
attValue = this.GetFinalAttributeValue( att ) ;
|
681
|
+
|
682
|
+
if ( att.toLowerCase() == 'class' )
|
683
|
+
el.className = attValue ;
|
684
|
+
else
|
685
|
+
el.setAttribute( att, attValue ) ;
|
686
|
+
}
|
687
|
+
}
|
688
|
+
|
689
|
+
// Assign the style attribute.
|
690
|
+
if ( this._GetStyleText().length > 0 )
|
691
|
+
el.style.cssText = this.GetFinalStyleValue() ;
|
692
|
+
|
693
|
+
return el ;
|
694
|
+
},
|
695
|
+
|
696
|
+
_CompareAttributeValues : function( attName, valueA, valueB )
|
697
|
+
{
|
698
|
+
if ( attName == 'style' && valueA && valueB )
|
699
|
+
{
|
700
|
+
valueA = valueA.replace( /;$/, '' ).toLowerCase() ;
|
701
|
+
valueB = valueB.replace( /;$/, '' ).toLowerCase() ;
|
702
|
+
}
|
703
|
+
|
704
|
+
// Return true if they match or if valueA is null and valueB is an empty string
|
705
|
+
return ( valueA == valueB || ( ( valueA === null || valueA === '' ) && ( valueB === null || valueB === '' ) ) )
|
706
|
+
},
|
707
|
+
|
708
|
+
GetFinalAttributeValue : function( attName )
|
709
|
+
{
|
710
|
+
var attValue = this._StyleDesc.Attributes ;
|
711
|
+
var attValue = attValue ? attValue[ attName ] : null ;
|
712
|
+
|
713
|
+
if ( !attValue && attName == 'style' )
|
714
|
+
return this.GetFinalStyleValue() ;
|
715
|
+
|
716
|
+
if ( attValue && this._Variables )
|
717
|
+
// Using custom Replace() to guarantee the correct scope.
|
718
|
+
attValue = attValue.Replace( FCKRegexLib.StyleVariableAttName, this._GetVariableReplace, this ) ;
|
719
|
+
|
720
|
+
return attValue ;
|
721
|
+
},
|
722
|
+
|
723
|
+
GetFinalStyleValue : function()
|
724
|
+
{
|
725
|
+
var attValue = this._GetStyleText() ;
|
726
|
+
|
727
|
+
if ( attValue.length > 0 && this._Variables )
|
728
|
+
{
|
729
|
+
// Using custom Replace() to guarantee the correct scope.
|
730
|
+
attValue = attValue.Replace( FCKRegexLib.StyleVariableAttName, this._GetVariableReplace, this ) ;
|
731
|
+
attValue = FCKTools.NormalizeCssText( attValue ) ;
|
732
|
+
}
|
733
|
+
|
734
|
+
return attValue ;
|
735
|
+
},
|
736
|
+
|
737
|
+
_GetVariableReplace : function()
|
738
|
+
{
|
739
|
+
// The second group in the regex is the variable name.
|
740
|
+
return this._Variables[ arguments[2] ] || arguments[0] ;
|
741
|
+
},
|
742
|
+
|
743
|
+
/**
|
744
|
+
* Set the value of a variable attribute or style, to be used when
|
745
|
+
* appliying the style.
|
746
|
+
*/
|
747
|
+
SetVariable : function( name, value )
|
748
|
+
{
|
749
|
+
var variables = this._Variables ;
|
750
|
+
|
751
|
+
if ( !variables )
|
752
|
+
variables = this._Variables = {} ;
|
753
|
+
|
754
|
+
this._Variables[ name ] = value ;
|
755
|
+
},
|
756
|
+
|
757
|
+
/**
|
758
|
+
* Converting from a PRE block to a non-PRE block in formatting operations.
|
759
|
+
*/
|
760
|
+
_FromPre : function( doc, block, newBlock )
|
761
|
+
{
|
762
|
+
var innerHTML = block.innerHTML ;
|
763
|
+
|
764
|
+
// Trim the first and last linebreaks immediately after and before <pre>, </pre>,
|
765
|
+
// if they exist.
|
766
|
+
// This is done because the linebreaks are not rendered.
|
767
|
+
innerHTML = innerHTML.replace( /(\r\n|\r)/g, '\n' ) ;
|
768
|
+
innerHTML = innerHTML.replace( /^[ \t]*\n/, '' ) ;
|
769
|
+
innerHTML = innerHTML.replace( /\n$/, '' ) ;
|
770
|
+
|
771
|
+
// 1. Convert spaces or tabs at the beginning or at the end to
|
772
|
+
innerHTML = innerHTML.replace( /^[ \t]+|[ \t]+$/g, function( match, offset, s )
|
773
|
+
{
|
774
|
+
if ( match.length == 1 ) // one space, preserve it
|
775
|
+
return ' ' ;
|
776
|
+
else if ( offset == 0 ) // beginning of block
|
777
|
+
return new Array( match.length ).join( ' ' ) + ' ' ;
|
778
|
+
else // end of block
|
779
|
+
return ' ' + new Array( match.length ).join( ' ' ) ;
|
780
|
+
} ) ;
|
781
|
+
|
782
|
+
// 2. Convert \n to <BR>.
|
783
|
+
// 3. Convert contiguous (i.e. non-singular) spaces or tabs to
|
784
|
+
var htmlIterator = new FCKHtmlIterator( innerHTML ) ;
|
785
|
+
var results = [] ;
|
786
|
+
htmlIterator.Each( function( isTag, value )
|
787
|
+
{
|
788
|
+
if ( !isTag )
|
789
|
+
{
|
790
|
+
value = value.replace( /\n/g, '<br>' ) ;
|
791
|
+
value = value.replace( /[ \t]{2,}/g,
|
792
|
+
function ( match )
|
793
|
+
{
|
794
|
+
return new Array( match.length ).join( ' ' ) + ' ' ;
|
795
|
+
} ) ;
|
796
|
+
}
|
797
|
+
results.push( value ) ;
|
798
|
+
} ) ;
|
799
|
+
newBlock.innerHTML = results.join( '' ) ;
|
800
|
+
return newBlock ;
|
801
|
+
},
|
802
|
+
|
803
|
+
/**
|
804
|
+
* Converting from a non-PRE block to a PRE block in formatting operations.
|
805
|
+
*/
|
806
|
+
_ToPre : function( doc, block, newBlock )
|
807
|
+
{
|
808
|
+
// Handle converting from a regular block to a <pre> block.
|
809
|
+
var innerHTML = block.innerHTML.Trim() ;
|
810
|
+
|
811
|
+
// 1. Delete ANSI whitespaces immediately before and after <BR> because
|
812
|
+
// they are not visible.
|
813
|
+
// 2. Mark down any <BR /> nodes here so they can be turned into \n in
|
814
|
+
// the next step and avoid being compressed.
|
815
|
+
innerHTML = innerHTML.replace( /[ \t\r\n]*(<br[^>]*>)[ \t\r\n]*/gi, '<br />' ) ;
|
816
|
+
|
817
|
+
// 3. Compress other ANSI whitespaces since they're only visible as one
|
818
|
+
// single space previously.
|
819
|
+
// 4. Convert to spaces since is no longer needed in <PRE>.
|
820
|
+
// 5. Convert any <BR /> to \n. This must not be done earlier because
|
821
|
+
// the \n would then get compressed.
|
822
|
+
var htmlIterator = new FCKHtmlIterator( innerHTML ) ;
|
823
|
+
var results = [] ;
|
824
|
+
htmlIterator.Each( function( isTag, value )
|
825
|
+
{
|
826
|
+
if ( !isTag )
|
827
|
+
value = value.replace( /([ \t\n\r]+| )/g, ' ' ) ;
|
828
|
+
else if ( isTag && value == '<br />' )
|
829
|
+
value = '\n' ;
|
830
|
+
results.push( value ) ;
|
831
|
+
} ) ;
|
832
|
+
|
833
|
+
// Assigning innerHTML to <PRE> in IE causes all linebreaks to be
|
834
|
+
// reduced to spaces.
|
835
|
+
// Assigning outerHTML to <PRE> in IE doesn't work if the <PRE> isn't
|
836
|
+
// contained in another node since the node reference is changed after
|
837
|
+
// outerHTML assignment.
|
838
|
+
// So, we need some hacks to workaround IE bugs here.
|
839
|
+
if ( FCKBrowserInfo.IsIE )
|
840
|
+
{
|
841
|
+
var temp = doc.createElement( 'div' ) ;
|
842
|
+
temp.appendChild( newBlock ) ;
|
843
|
+
newBlock.outerHTML = '<pre>\n' + results.join( '' ) + '</pre>' ;
|
844
|
+
newBlock = temp.removeChild( temp.firstChild ) ;
|
845
|
+
}
|
846
|
+
else
|
847
|
+
newBlock.innerHTML = results.join( '' ) ;
|
848
|
+
|
849
|
+
return newBlock ;
|
850
|
+
},
|
851
|
+
|
852
|
+
/**
|
853
|
+
* Merge a <pre> block with a previous <pre> block, if available.
|
854
|
+
*/
|
855
|
+
_CheckAndMergePre : function( previousBlock, preBlock )
|
856
|
+
{
|
857
|
+
// Check if the previous block and the current block are next
|
858
|
+
// to each other.
|
859
|
+
if ( previousBlock != FCKDomTools.GetPreviousSourceElement( preBlock, true ) )
|
860
|
+
return ;
|
861
|
+
|
862
|
+
// Merge the previous <pre> block contents into the current <pre>
|
863
|
+
// block.
|
864
|
+
//
|
865
|
+
// Another thing to be careful here is that currentBlock might contain
|
866
|
+
// a '\n' at the beginning, and previousBlock might contain a '\n'
|
867
|
+
// towards the end. These new lines are not normally displayed but they
|
868
|
+
// become visible after merging.
|
869
|
+
var innerHTML = previousBlock.innerHTML.replace( /\n$/, '' ) + '\n\n' +
|
870
|
+
preBlock.innerHTML.replace( /^\n/, '' ) ;
|
871
|
+
|
872
|
+
// Buggy IE normalizes innerHTML from <pre>, breaking whitespaces.
|
873
|
+
if ( FCKBrowserInfo.IsIE )
|
874
|
+
preBlock.outerHTML = '<pre>' + innerHTML + '</pre>' ;
|
875
|
+
else
|
876
|
+
preBlock.innerHTML = innerHTML ;
|
877
|
+
|
878
|
+
// Remove the previous <pre> block.
|
879
|
+
//
|
880
|
+
// The preBlock must not be moved or deleted from the DOM tree. This
|
881
|
+
// guarantees the FCKDomRangeIterator in _ApplyBlockStyle would not
|
882
|
+
// get lost at the next iteration.
|
883
|
+
FCKDomTools.RemoveNode( previousBlock ) ;
|
884
|
+
},
|
885
|
+
|
886
|
+
_CheckAndSplitPre : function( newBlock )
|
887
|
+
{
|
888
|
+
var lastNewBlock ;
|
889
|
+
|
890
|
+
var cursor = newBlock.firstChild ;
|
891
|
+
|
892
|
+
// We are not splitting <br><br> at the beginning of the block, so
|
893
|
+
// we'll start from the second child.
|
894
|
+
cursor = cursor && cursor.nextSibling ;
|
895
|
+
|
896
|
+
while ( cursor )
|
897
|
+
{
|
898
|
+
var next = cursor.nextSibling ;
|
899
|
+
|
900
|
+
// If we have two <BR>s, and they're not at the beginning or the end,
|
901
|
+
// then we'll split up the contents following them into another block.
|
902
|
+
// Stop processing if we are at the last child couple.
|
903
|
+
if ( next && next.nextSibling && cursor.nodeName.IEquals( 'br' ) && next.nodeName.IEquals( 'br' ) )
|
904
|
+
{
|
905
|
+
// Remove the first <br>.
|
906
|
+
FCKDomTools.RemoveNode( cursor ) ;
|
907
|
+
|
908
|
+
// Move to the node after the second <br>.
|
909
|
+
cursor = next.nextSibling ;
|
910
|
+
|
911
|
+
// Remove the second <br>.
|
912
|
+
FCKDomTools.RemoveNode( next ) ;
|
913
|
+
|
914
|
+
// Create the block that will hold the child nodes from now on.
|
915
|
+
lastNewBlock = FCKDomTools.InsertAfterNode( lastNewBlock || newBlock, FCKDomTools.CloneElement( newBlock ) ) ;
|
916
|
+
|
917
|
+
continue ;
|
918
|
+
}
|
919
|
+
|
920
|
+
// If we split it, then start moving the nodes to the new block.
|
921
|
+
if ( lastNewBlock )
|
922
|
+
{
|
923
|
+
cursor = cursor.previousSibling ;
|
924
|
+
FCKDomTools.MoveNode(cursor.nextSibling, lastNewBlock ) ;
|
925
|
+
}
|
926
|
+
|
927
|
+
cursor = cursor.nextSibling ;
|
928
|
+
}
|
929
|
+
},
|
930
|
+
|
931
|
+
/**
|
932
|
+
* Apply an inline style to a FCKDomRange.
|
933
|
+
*
|
934
|
+
* TODO
|
935
|
+
* - Implement the "#" style handling.
|
936
|
+
* - Properly handle block containers like <div> and <blockquote>.
|
937
|
+
*/
|
938
|
+
_ApplyBlockStyle : function( range, selectIt, updateRange )
|
939
|
+
{
|
940
|
+
// Bookmark the range so we can re-select it after processing.
|
941
|
+
var bookmark ;
|
942
|
+
|
943
|
+
if ( selectIt )
|
944
|
+
bookmark = range.CreateBookmark() ;
|
945
|
+
|
946
|
+
var iterator = new FCKDomRangeIterator( range ) ;
|
947
|
+
iterator.EnforceRealBlocks = true ;
|
948
|
+
|
949
|
+
var block ;
|
950
|
+
var doc = range.Window.document ;
|
951
|
+
var previousPreBlock ;
|
952
|
+
|
953
|
+
while( ( block = iterator.GetNextParagraph() ) ) // Only one =
|
954
|
+
{
|
955
|
+
// Create the new node right before the current one.
|
956
|
+
var newBlock = this.BuildElement( doc ) ;
|
957
|
+
|
958
|
+
// Check if we are changing from/to <pre>.
|
959
|
+
var newBlockIsPre = newBlock.nodeName.IEquals( 'pre' ) ;
|
960
|
+
var blockIsPre = block.nodeName.IEquals( 'pre' ) ;
|
961
|
+
|
962
|
+
var toPre = newBlockIsPre && !blockIsPre ;
|
963
|
+
var fromPre = !newBlockIsPre && blockIsPre ;
|
964
|
+
|
965
|
+
// Move everything from the current node to the new one.
|
966
|
+
if ( toPre )
|
967
|
+
newBlock = this._ToPre( doc, block, newBlock ) ;
|
968
|
+
else if ( fromPre )
|
969
|
+
newBlock = this._FromPre( doc, block, newBlock ) ;
|
970
|
+
else // Convering from a regular block to another regular block.
|
971
|
+
FCKDomTools.MoveChildren( block, newBlock ) ;
|
972
|
+
|
973
|
+
// Replace the current block.
|
974
|
+
block.parentNode.insertBefore( newBlock, block ) ;
|
975
|
+
FCKDomTools.RemoveNode( block ) ;
|
976
|
+
|
977
|
+
// Complete other tasks after inserting the node in the DOM.
|
978
|
+
if ( newBlockIsPre )
|
979
|
+
{
|
980
|
+
if ( previousPreBlock )
|
981
|
+
this._CheckAndMergePre( previousPreBlock, newBlock ) ; // Merge successive <pre> blocks.
|
982
|
+
previousPreBlock = newBlock ;
|
983
|
+
}
|
984
|
+
else if ( fromPre )
|
985
|
+
this._CheckAndSplitPre( newBlock ) ; // Split <br><br> in successive <pre>s.
|
986
|
+
}
|
987
|
+
|
988
|
+
// Re-select the original range.
|
989
|
+
if ( selectIt )
|
990
|
+
range.SelectBookmark( bookmark ) ;
|
991
|
+
|
992
|
+
if ( updateRange )
|
993
|
+
range.MoveToBookmark( bookmark ) ;
|
994
|
+
},
|
995
|
+
|
996
|
+
/**
|
997
|
+
* Apply an inline style to a FCKDomRange.
|
998
|
+
*
|
999
|
+
* TODO
|
1000
|
+
* - Merge elements, when applying styles to similar elements that enclose
|
1001
|
+
* the entire selection, outputing:
|
1002
|
+
* <span style="color: #ff0000; background-color: #ffffff">XYZ</span>
|
1003
|
+
* instead of:
|
1004
|
+
* <span style="color: #ff0000;"><span style="background-color: #ffffff">XYZ</span></span>
|
1005
|
+
*/
|
1006
|
+
_ApplyInlineStyle : function( range, selectIt, updateRange )
|
1007
|
+
{
|
1008
|
+
var doc = range.Window.document ;
|
1009
|
+
|
1010
|
+
if ( range.CheckIsCollapsed() )
|
1011
|
+
{
|
1012
|
+
// Create the element to be inserted in the DOM.
|
1013
|
+
var collapsedElement = this.BuildElement( doc ) ;
|
1014
|
+
range.InsertNode( collapsedElement ) ;
|
1015
|
+
range.MoveToPosition( collapsedElement, 2 ) ;
|
1016
|
+
range.Select() ;
|
1017
|
+
|
1018
|
+
return ;
|
1019
|
+
}
|
1020
|
+
|
1021
|
+
// The general idea here is navigating through all nodes inside the
|
1022
|
+
// current selection, working on distinct range blocks, defined by the
|
1023
|
+
// DTD compatibility between the style element and the nodes inside the
|
1024
|
+
// ranges.
|
1025
|
+
//
|
1026
|
+
// For example, suppose we have the following selection (where [ and ]
|
1027
|
+
// are the boundaries), and we apply a <b> style there:
|
1028
|
+
//
|
1029
|
+
// <p>Here we [have <b>some</b> text.<p>
|
1030
|
+
// <p>And some here] here.</p>
|
1031
|
+
//
|
1032
|
+
// Two different ranges will be detected:
|
1033
|
+
//
|
1034
|
+
// "have <b>some</b> text."
|
1035
|
+
// "And some here"
|
1036
|
+
//
|
1037
|
+
// Both ranges will be extracted, moved to a <b> element, and
|
1038
|
+
// re-inserted, resulting in the following output:
|
1039
|
+
//
|
1040
|
+
// <p>Here we [<b>have some text.</b><p>
|
1041
|
+
// <p><b>And some here</b>] here.</p>
|
1042
|
+
//
|
1043
|
+
// Note that the <b> element at <b>some</b> is also removed because it
|
1044
|
+
// is not needed anymore.
|
1045
|
+
|
1046
|
+
var elementName = this.Element ;
|
1047
|
+
|
1048
|
+
// Get the DTD definition for the element. Defaults to "span".
|
1049
|
+
var elementDTD = FCK.DTD[ elementName ] || FCK.DTD.span ;
|
1050
|
+
|
1051
|
+
// Create the attribute list to be used later for element comparisons.
|
1052
|
+
var styleAttribs = this._GetAttribsForComparison() ;
|
1053
|
+
var styleNode ;
|
1054
|
+
|
1055
|
+
// Expand the range, if inside inline element boundaries.
|
1056
|
+
range.Expand( 'inline_elements' ) ;
|
1057
|
+
|
1058
|
+
// Bookmark the range so we can re-select it after processing.
|
1059
|
+
var bookmark = range.CreateBookmark( true ) ;
|
1060
|
+
|
1061
|
+
// The style will be applied within the bookmark boundaries.
|
1062
|
+
var startNode = range.GetBookmarkNode( bookmark, true ) ;
|
1063
|
+
var endNode = range.GetBookmarkNode( bookmark, false ) ;
|
1064
|
+
|
1065
|
+
// We'll be reusing the range to apply the styles. So, release it here
|
1066
|
+
// to indicate that it has not been initialized.
|
1067
|
+
range.Release( true ) ;
|
1068
|
+
|
1069
|
+
// Let's start the nodes lookup from the node right after the bookmark
|
1070
|
+
// span.
|
1071
|
+
var currentNode = FCKDomTools.GetNextSourceNode( startNode, true ) ;
|
1072
|
+
|
1073
|
+
while ( currentNode )
|
1074
|
+
{
|
1075
|
+
var applyStyle = false ;
|
1076
|
+
|
1077
|
+
var nodeType = currentNode.nodeType ;
|
1078
|
+
var nodeName = nodeType == 1 ? currentNode.nodeName.toLowerCase() : null ;
|
1079
|
+
|
1080
|
+
// Check if the current node can be a child of the style element.
|
1081
|
+
if ( !nodeName || elementDTD[ nodeName ] )
|
1082
|
+
{
|
1083
|
+
// Check if the style element can be a child of the current
|
1084
|
+
// node parent or if the element is not defined in the DTD.
|
1085
|
+
if ( ( FCK.DTD[ currentNode.parentNode.nodeName.toLowerCase() ] || FCK.DTD.span )[ elementName ] || !FCK.DTD[ elementName ] )
|
1086
|
+
{
|
1087
|
+
// This node will be part of our range, so if it has not
|
1088
|
+
// been started, place its start right before the node.
|
1089
|
+
if ( !range.CheckHasRange() )
|
1090
|
+
range.SetStart( currentNode, 3 ) ;
|
1091
|
+
|
1092
|
+
// Non element nodes, or empty elements can be added
|
1093
|
+
// completely to the range.
|
1094
|
+
if ( nodeType != 1 || currentNode.childNodes.length == 0 )
|
1095
|
+
{
|
1096
|
+
var includedNode = currentNode ;
|
1097
|
+
var parentNode = includedNode.parentNode ;
|
1098
|
+
|
1099
|
+
// This node is about to be included completelly, but,
|
1100
|
+
// if this is the last node in its parent, we must also
|
1101
|
+
// check if the parent itself can be added completelly
|
1102
|
+
// to the range.
|
1103
|
+
while ( includedNode == parentNode.lastChild
|
1104
|
+
&& elementDTD[ parentNode.nodeName.toLowerCase() ] )
|
1105
|
+
{
|
1106
|
+
includedNode = parentNode ;
|
1107
|
+
}
|
1108
|
+
|
1109
|
+
range.SetEnd( includedNode, 4 ) ;
|
1110
|
+
|
1111
|
+
// If the included node is the last node in its parent
|
1112
|
+
// and its parent can't be inside the style node, apply
|
1113
|
+
// the style immediately.
|
1114
|
+
if ( includedNode == includedNode.parentNode.lastChild && !elementDTD[ includedNode.parentNode.nodeName.toLowerCase() ] )
|
1115
|
+
applyStyle = true ;
|
1116
|
+
}
|
1117
|
+
else
|
1118
|
+
{
|
1119
|
+
// Element nodes will not be added directly. We need to
|
1120
|
+
// check their children because the selection could end
|
1121
|
+
// inside the node, so let's place the range end right
|
1122
|
+
// before the element.
|
1123
|
+
range.SetEnd( currentNode, 3 ) ;
|
1124
|
+
}
|
1125
|
+
}
|
1126
|
+
else
|
1127
|
+
applyStyle = true ;
|
1128
|
+
}
|
1129
|
+
else
|
1130
|
+
applyStyle = true ;
|
1131
|
+
|
1132
|
+
// Get the next node to be processed.
|
1133
|
+
currentNode = FCKDomTools.GetNextSourceNode( currentNode ) ;
|
1134
|
+
|
1135
|
+
// If we have reached the end of the selection, just apply the
|
1136
|
+
// style ot the range, and stop looping.
|
1137
|
+
if ( currentNode == endNode )
|
1138
|
+
{
|
1139
|
+
currentNode = null ;
|
1140
|
+
applyStyle = true ;
|
1141
|
+
}
|
1142
|
+
|
1143
|
+
// Apply the style if we have something to which apply it.
|
1144
|
+
if ( applyStyle && range.CheckHasRange() && !range.CheckIsCollapsed() )
|
1145
|
+
{
|
1146
|
+
// Build the style element, based on the style object definition.
|
1147
|
+
styleNode = this.BuildElement( doc ) ;
|
1148
|
+
|
1149
|
+
// Move the contents of the range to the style element.
|
1150
|
+
range.ExtractContents().AppendTo( styleNode ) ;
|
1151
|
+
|
1152
|
+
// If it is not empty.
|
1153
|
+
if ( styleNode.innerHTML.RTrim().length > 0 )
|
1154
|
+
{
|
1155
|
+
// Insert it in the range position (it is collapsed after
|
1156
|
+
// ExtractContents.
|
1157
|
+
range.InsertNode( styleNode ) ;
|
1158
|
+
|
1159
|
+
// Here we do some cleanup, removing all duplicated
|
1160
|
+
// elements from the style element.
|
1161
|
+
this.RemoveFromElement( styleNode ) ;
|
1162
|
+
|
1163
|
+
// Let's merge our new style with its neighbors, if possible.
|
1164
|
+
this._MergeSiblings( styleNode, this._GetAttribsForComparison() ) ;
|
1165
|
+
|
1166
|
+
// As the style system breaks text nodes constantly, let's normalize
|
1167
|
+
// things for performance.
|
1168
|
+
// With IE, some paragraphs get broken when calling normalize()
|
1169
|
+
// repeatedly. Also, for IE, we must normalize body, not documentElement.
|
1170
|
+
// IE is also known for having a "crash effect" with normalize().
|
1171
|
+
// We should try to normalize with IE too in some way, somewhere.
|
1172
|
+
if ( !FCKBrowserInfo.IsIE )
|
1173
|
+
styleNode.normalize() ;
|
1174
|
+
}
|
1175
|
+
|
1176
|
+
// Style applied, let's release the range, so it gets marked to
|
1177
|
+
// re-initialization in the next loop.
|
1178
|
+
range.Release( true ) ;
|
1179
|
+
}
|
1180
|
+
}
|
1181
|
+
|
1182
|
+
this._FixBookmarkStart( startNode ) ;
|
1183
|
+
|
1184
|
+
// Re-select the original range.
|
1185
|
+
if ( selectIt )
|
1186
|
+
range.SelectBookmark( bookmark ) ;
|
1187
|
+
|
1188
|
+
if ( updateRange )
|
1189
|
+
range.MoveToBookmark( bookmark ) ;
|
1190
|
+
},
|
1191
|
+
|
1192
|
+
_FixBookmarkStart : function( startNode )
|
1193
|
+
{
|
1194
|
+
// After appliying or removing an inline style, the start boundary of
|
1195
|
+
// the selection must be placed inside all inline elements it is
|
1196
|
+
// bordering.
|
1197
|
+
var startSibling ;
|
1198
|
+
while ( ( startSibling = startNode.nextSibling ) ) // Only one "=".
|
1199
|
+
{
|
1200
|
+
if ( startSibling.nodeType == 1
|
1201
|
+
&& FCKListsLib.InlineNonEmptyElements[ startSibling.nodeName.toLowerCase() ] )
|
1202
|
+
{
|
1203
|
+
// If it is an empty inline element, we can safely remove it.
|
1204
|
+
if ( !startSibling.firstChild )
|
1205
|
+
FCKDomTools.RemoveNode( startSibling ) ;
|
1206
|
+
else
|
1207
|
+
FCKDomTools.MoveNode( startNode, startSibling, true ) ;
|
1208
|
+
continue ;
|
1209
|
+
}
|
1210
|
+
|
1211
|
+
// Empty text nodes can be safely removed to not disturb.
|
1212
|
+
if ( startSibling.nodeType == 3 && startSibling.length == 0 )
|
1213
|
+
{
|
1214
|
+
FCKDomTools.RemoveNode( startSibling ) ;
|
1215
|
+
continue ;
|
1216
|
+
}
|
1217
|
+
|
1218
|
+
break ;
|
1219
|
+
}
|
1220
|
+
},
|
1221
|
+
|
1222
|
+
/**
|
1223
|
+
* Merge an element with its similar siblings.
|
1224
|
+
* "attribs" is and object computed with _CreateAttribsForComparison.
|
1225
|
+
*/
|
1226
|
+
_MergeSiblings : function( element, attribs )
|
1227
|
+
{
|
1228
|
+
if ( !element || element.nodeType != 1 || !FCKListsLib.InlineNonEmptyElements[ element.nodeName.toLowerCase() ] )
|
1229
|
+
return ;
|
1230
|
+
|
1231
|
+
this._MergeNextSibling( element, attribs ) ;
|
1232
|
+
this._MergePreviousSibling( element, attribs ) ;
|
1233
|
+
},
|
1234
|
+
|
1235
|
+
/**
|
1236
|
+
* Merge an element with its similar siblings after it.
|
1237
|
+
* "attribs" is and object computed with _CreateAttribsForComparison.
|
1238
|
+
*/
|
1239
|
+
_MergeNextSibling : function( element, attribs )
|
1240
|
+
{
|
1241
|
+
// Check the next sibling.
|
1242
|
+
var sibling = element.nextSibling ;
|
1243
|
+
|
1244
|
+
// Check if the next sibling is a bookmark element. In this case, jump it.
|
1245
|
+
var hasBookmark = ( sibling && sibling.nodeType == 1 && sibling.getAttribute( '_fck_bookmark' ) ) ;
|
1246
|
+
if ( hasBookmark )
|
1247
|
+
sibling = sibling.nextSibling ;
|
1248
|
+
|
1249
|
+
if ( sibling && sibling.nodeType == 1 && sibling.nodeName == element.nodeName )
|
1250
|
+
{
|
1251
|
+
if ( !attribs )
|
1252
|
+
attribs = this._CreateElementAttribsForComparison( element ) ;
|
1253
|
+
|
1254
|
+
if ( this._CheckAttributesMatch( sibling, attribs ) )
|
1255
|
+
{
|
1256
|
+
// Save the last child to be checked too (to merge things like <b><i></i></b><b><i></i></b>).
|
1257
|
+
var innerSibling = element.lastChild ;
|
1258
|
+
|
1259
|
+
if ( hasBookmark )
|
1260
|
+
FCKDomTools.MoveNode( element.nextSibling, element ) ;
|
1261
|
+
|
1262
|
+
// Move contents from the sibling.
|
1263
|
+
FCKDomTools.MoveChildren( sibling, element ) ;
|
1264
|
+
FCKDomTools.RemoveNode( sibling ) ;
|
1265
|
+
|
1266
|
+
// Now check the last inner child (see two comments above).
|
1267
|
+
if ( innerSibling )
|
1268
|
+
this._MergeNextSibling( innerSibling ) ;
|
1269
|
+
}
|
1270
|
+
}
|
1271
|
+
},
|
1272
|
+
|
1273
|
+
/**
|
1274
|
+
* Merge an element with its similar siblings before it.
|
1275
|
+
* "attribs" is and object computed with _CreateAttribsForComparison.
|
1276
|
+
*/
|
1277
|
+
_MergePreviousSibling : function( element, attribs )
|
1278
|
+
{
|
1279
|
+
// Check the previous sibling.
|
1280
|
+
var sibling = element.previousSibling ;
|
1281
|
+
|
1282
|
+
// Check if the previous sibling is a bookmark element. In this case, jump it.
|
1283
|
+
var hasBookmark = ( sibling && sibling.nodeType == 1 && sibling.getAttribute( '_fck_bookmark' ) ) ;
|
1284
|
+
if ( hasBookmark )
|
1285
|
+
sibling = sibling.previousSibling ;
|
1286
|
+
|
1287
|
+
if ( sibling && sibling.nodeType == 1 && sibling.nodeName == element.nodeName )
|
1288
|
+
{
|
1289
|
+
if ( !attribs )
|
1290
|
+
attribs = this._CreateElementAttribsForComparison( element ) ;
|
1291
|
+
|
1292
|
+
if ( this._CheckAttributesMatch( sibling, attribs ) )
|
1293
|
+
{
|
1294
|
+
// Save the first child to be checked too (to merge things like <b><i></i></b><b><i></i></b>).
|
1295
|
+
var innerSibling = element.firstChild ;
|
1296
|
+
|
1297
|
+
if ( hasBookmark )
|
1298
|
+
FCKDomTools.MoveNode( element.previousSibling, element, true ) ;
|
1299
|
+
|
1300
|
+
// Move contents to the sibling.
|
1301
|
+
FCKDomTools.MoveChildren( sibling, element, true ) ;
|
1302
|
+
FCKDomTools.RemoveNode( sibling ) ;
|
1303
|
+
|
1304
|
+
// Now check the first inner child (see two comments above).
|
1305
|
+
if ( innerSibling )
|
1306
|
+
this._MergePreviousSibling( innerSibling ) ;
|
1307
|
+
}
|
1308
|
+
}
|
1309
|
+
},
|
1310
|
+
|
1311
|
+
/**
|
1312
|
+
* Build the cssText based on the styles definition.
|
1313
|
+
*/
|
1314
|
+
_GetStyleText : function()
|
1315
|
+
{
|
1316
|
+
var stylesDef = this._StyleDesc.Styles ;
|
1317
|
+
|
1318
|
+
// Builds the StyleText.
|
1319
|
+
var stylesText = ( this._StyleDesc.Attributes ? this._StyleDesc.Attributes['style'] || '' : '' ) ;
|
1320
|
+
|
1321
|
+
if ( stylesText.length > 0 )
|
1322
|
+
stylesText += ';' ;
|
1323
|
+
|
1324
|
+
for ( var style in stylesDef )
|
1325
|
+
stylesText += style + ':' + stylesDef[style] + ';' ;
|
1326
|
+
|
1327
|
+
// Browsers make some changes to the style when applying them. So, here
|
1328
|
+
// we normalize it to the browser format. We'll not do that if there
|
1329
|
+
// are variables inside the style.
|
1330
|
+
if ( stylesText.length > 0 && !( /#\(/.test( stylesText ) ) )
|
1331
|
+
{
|
1332
|
+
stylesText = FCKTools.NormalizeCssText( stylesText ) ;
|
1333
|
+
}
|
1334
|
+
|
1335
|
+
return (this._GetStyleText = function() { return stylesText ; })() ;
|
1336
|
+
},
|
1337
|
+
|
1338
|
+
/**
|
1339
|
+
* Get the the collection used to compare the attributes defined in this
|
1340
|
+
* style with attributes in an element. All information in it is lowercased.
|
1341
|
+
*/
|
1342
|
+
_GetAttribsForComparison : function()
|
1343
|
+
{
|
1344
|
+
// If we have already computed it, just return it.
|
1345
|
+
var attribs = this._GetAttribsForComparison_$ ;
|
1346
|
+
if ( attribs )
|
1347
|
+
return attribs ;
|
1348
|
+
|
1349
|
+
attribs = new Object() ;
|
1350
|
+
|
1351
|
+
// Loop through all defined attributes.
|
1352
|
+
var styleAttribs = this._StyleDesc.Attributes ;
|
1353
|
+
if ( styleAttribs )
|
1354
|
+
{
|
1355
|
+
for ( var styleAtt in styleAttribs )
|
1356
|
+
{
|
1357
|
+
attribs[ styleAtt.toLowerCase() ] = styleAttribs[ styleAtt ].toLowerCase() ;
|
1358
|
+
}
|
1359
|
+
}
|
1360
|
+
|
1361
|
+
// Includes the style definitions.
|
1362
|
+
if ( this._GetStyleText().length > 0 )
|
1363
|
+
{
|
1364
|
+
attribs['style'] = this._GetStyleText().toLowerCase() ;
|
1365
|
+
}
|
1366
|
+
|
1367
|
+
// Appends the "length" information to the object.
|
1368
|
+
FCKTools.AppendLengthProperty( attribs, '_length' ) ;
|
1369
|
+
|
1370
|
+
// Return it, saving it to the next request.
|
1371
|
+
return ( this._GetAttribsForComparison_$ = attribs ) ;
|
1372
|
+
},
|
1373
|
+
|
1374
|
+
/**
|
1375
|
+
* Get the the collection used to compare the elements and attributes,
|
1376
|
+
* defined in this style overrides, with other element. All information in
|
1377
|
+
* it is lowercased.
|
1378
|
+
*/
|
1379
|
+
_GetOverridesForComparison : function()
|
1380
|
+
{
|
1381
|
+
// If we have already computed it, just return it.
|
1382
|
+
var overrides = this._GetOverridesForComparison_$ ;
|
1383
|
+
if ( overrides )
|
1384
|
+
return overrides ;
|
1385
|
+
|
1386
|
+
overrides = new Object() ;
|
1387
|
+
|
1388
|
+
var overridesDesc = this._StyleDesc.Overrides ;
|
1389
|
+
|
1390
|
+
if ( overridesDesc )
|
1391
|
+
{
|
1392
|
+
// The override description can be a string, object or array.
|
1393
|
+
// Internally, well handle arrays only, so transform it if needed.
|
1394
|
+
if ( !FCKTools.IsArray( overridesDesc ) )
|
1395
|
+
overridesDesc = [ overridesDesc ] ;
|
1396
|
+
|
1397
|
+
// Loop through all override definitions.
|
1398
|
+
for ( var i = 0 ; i < overridesDesc.length ; i++ )
|
1399
|
+
{
|
1400
|
+
var override = overridesDesc[i] ;
|
1401
|
+
var elementName ;
|
1402
|
+
var overrideEl ;
|
1403
|
+
var attrs ;
|
1404
|
+
|
1405
|
+
// If can be a string with the element name.
|
1406
|
+
if ( typeof override == 'string' )
|
1407
|
+
elementName = override.toLowerCase() ;
|
1408
|
+
// Or an object.
|
1409
|
+
else
|
1410
|
+
{
|
1411
|
+
elementName = override.Element ? override.Element.toLowerCase() : this.Element ;
|
1412
|
+
attrs = override.Attributes ;
|
1413
|
+
}
|
1414
|
+
|
1415
|
+
// We can have more than one override definition for the same
|
1416
|
+
// element name, so we attempt to simply append information to
|
1417
|
+
// it if it already exists.
|
1418
|
+
overrideEl = overrides[ elementName ] || ( overrides[ elementName ] = {} ) ;
|
1419
|
+
|
1420
|
+
if ( attrs )
|
1421
|
+
{
|
1422
|
+
// The returning attributes list is an array, because we
|
1423
|
+
// could have different override definitions for the same
|
1424
|
+
// attribute name.
|
1425
|
+
var overrideAttrs = ( overrideEl.Attributes = overrideEl.Attributes || new Array() ) ;
|
1426
|
+
for ( var attName in attrs )
|
1427
|
+
{
|
1428
|
+
// Each item in the attributes array is also an array,
|
1429
|
+
// where [0] is the attribute name and [1] is the
|
1430
|
+
// override value.
|
1431
|
+
overrideAttrs.push( [ attName.toLowerCase(), attrs[ attName ] ] ) ;
|
1432
|
+
}
|
1433
|
+
}
|
1434
|
+
}
|
1435
|
+
}
|
1436
|
+
|
1437
|
+
return ( this._GetOverridesForComparison_$ = overrides ) ;
|
1438
|
+
},
|
1439
|
+
|
1440
|
+
/*
|
1441
|
+
* Create and object containing all attributes specified in an element,
|
1442
|
+
* added by a "_length" property. All values are lowercased.
|
1443
|
+
*/
|
1444
|
+
_CreateElementAttribsForComparison : function( element )
|
1445
|
+
{
|
1446
|
+
var attribs = new Object() ;
|
1447
|
+
var attribsCount = 0 ;
|
1448
|
+
|
1449
|
+
for ( var i = 0 ; i < element.attributes.length ; i++ )
|
1450
|
+
{
|
1451
|
+
var att = element.attributes[i] ;
|
1452
|
+
|
1453
|
+
if ( att.specified )
|
1454
|
+
{
|
1455
|
+
attribs[ att.nodeName.toLowerCase() ] = FCKDomTools.GetAttributeValue( element, att ).toLowerCase() ;
|
1456
|
+
attribsCount++ ;
|
1457
|
+
}
|
1458
|
+
}
|
1459
|
+
|
1460
|
+
attribs._length = attribsCount ;
|
1461
|
+
|
1462
|
+
return attribs ;
|
1463
|
+
},
|
1464
|
+
|
1465
|
+
/**
|
1466
|
+
* Checks is the element attributes have a perfect match with the style
|
1467
|
+
* attributes.
|
1468
|
+
*/
|
1469
|
+
_CheckAttributesMatch : function( element, styleAttribs )
|
1470
|
+
{
|
1471
|
+
// Loop through all specified attributes. The same number of
|
1472
|
+
// attributes must be found and their values must match to
|
1473
|
+
// declare them as equal.
|
1474
|
+
|
1475
|
+
var elementAttrbs = element.attributes ;
|
1476
|
+
var matchCount = 0 ;
|
1477
|
+
|
1478
|
+
for ( var i = 0 ; i < elementAttrbs.length ; i++ )
|
1479
|
+
{
|
1480
|
+
var att = elementAttrbs[i] ;
|
1481
|
+
if ( att.specified )
|
1482
|
+
{
|
1483
|
+
var attName = att.nodeName.toLowerCase() ;
|
1484
|
+
var styleAtt = styleAttribs[ attName ] ;
|
1485
|
+
|
1486
|
+
// The attribute is not defined in the style.
|
1487
|
+
if ( !styleAtt )
|
1488
|
+
break ;
|
1489
|
+
|
1490
|
+
// The values are different.
|
1491
|
+
if ( styleAtt != FCKDomTools.GetAttributeValue( element, att ).toLowerCase() )
|
1492
|
+
break ;
|
1493
|
+
|
1494
|
+
matchCount++ ;
|
1495
|
+
}
|
1496
|
+
}
|
1497
|
+
|
1498
|
+
return ( matchCount == styleAttribs._length ) ;
|
1499
|
+
}
|
1500
|
+
} ;
|