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,111 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
2
|
+
<!--
|
3
|
+
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
4
|
+
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
5
|
+
*
|
6
|
+
* == BEGIN LICENSE ==
|
7
|
+
*
|
8
|
+
* Licensed under the terms of any of the following licenses at your
|
9
|
+
* choice:
|
10
|
+
*
|
11
|
+
* - GNU General Public License Version 2 or later (the "GPL")
|
12
|
+
* http://www.gnu.org/licenses/gpl.html
|
13
|
+
*
|
14
|
+
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
|
15
|
+
* http://www.gnu.org/licenses/lgpl.html
|
16
|
+
*
|
17
|
+
* - Mozilla Public License Version 1.1 or later (the "MPL")
|
18
|
+
* http://www.mozilla.org/MPL/MPL-1.1.html
|
19
|
+
*
|
20
|
+
* == END LICENSE ==
|
21
|
+
*
|
22
|
+
* This is the sample style definitions file. It makes the styles combo
|
23
|
+
* completely customizable.
|
24
|
+
*
|
25
|
+
* See FCKConfig.StylesXmlPath in the configuration file.
|
26
|
+
-->
|
27
|
+
<Styles>
|
28
|
+
|
29
|
+
<!-- Block Styles -->
|
30
|
+
|
31
|
+
<!--
|
32
|
+
# These styles are already available in the "Format" combo, so they are not
|
33
|
+
# needed here by default.
|
34
|
+
|
35
|
+
<Style name="Heading 1" element="h1" />
|
36
|
+
<Style name="Heading 2" element="h2" />
|
37
|
+
<Style name="Heading 3" element="h3" />
|
38
|
+
<Style name="Heading 4" element="h4" />
|
39
|
+
<Style name="Heading 5" element="h5" />
|
40
|
+
<Style name="Heading 6" element="h6" />
|
41
|
+
<Style name="Paragraph" element="p" />
|
42
|
+
<Style name="Document Block" element="div" />
|
43
|
+
<Style name="Preformatted Text" element="pre" />
|
44
|
+
<Style name="Address" element="address" />
|
45
|
+
-->
|
46
|
+
|
47
|
+
<!-- Inline Styles -->
|
48
|
+
|
49
|
+
<!--
|
50
|
+
# These are core styles available as toolbar buttons.
|
51
|
+
|
52
|
+
<Style name="Bold" element="b">
|
53
|
+
<Override element="strong" />
|
54
|
+
</Style>
|
55
|
+
<Style name="Italic" element="i">
|
56
|
+
<Override element="em" />
|
57
|
+
</Style>
|
58
|
+
<Style name="Underline" element="u" />
|
59
|
+
<Style name="Strikethrough" element="strike" />
|
60
|
+
<Style name="Subscript" element="sub" />
|
61
|
+
<Style name="Superscript" element="sup" />
|
62
|
+
-->
|
63
|
+
|
64
|
+
<Style name="Marker: Yellow" element="span">
|
65
|
+
<Style name="background-color" value="Yellow" />
|
66
|
+
</Style>
|
67
|
+
<Style name="Marker: Green" element="span">
|
68
|
+
<Style name="background-color" value="Lime" />
|
69
|
+
</Style>
|
70
|
+
|
71
|
+
<Style name="Big" element="big" />
|
72
|
+
<Style name="Small" element="small" />
|
73
|
+
<Style name="Typewriter" element="tt" />
|
74
|
+
|
75
|
+
<Style name="Computer Code" element="code" />
|
76
|
+
<Style name="Keyboard Phrase" element="kbd" />
|
77
|
+
<Style name="Sample Text" element="samp" />
|
78
|
+
<Style name="Variable" element="var" />
|
79
|
+
|
80
|
+
<Style name="Deleted Text" element="del" />
|
81
|
+
<Style name="Inserted Text" element="ins" />
|
82
|
+
|
83
|
+
<Style name="Cited Work" element="cite" />
|
84
|
+
<Style name="Inline Quotation" element="q" />
|
85
|
+
|
86
|
+
<Style name="Language: RTL" element="span">
|
87
|
+
<Attribute name="dir" value="rtl" />
|
88
|
+
</Style>
|
89
|
+
<Style name="Language: LTR" element="span">
|
90
|
+
<Attribute name="dir" value="ltr" />
|
91
|
+
</Style>
|
92
|
+
<Style name="Language: RTL Strong" element="bdo">
|
93
|
+
<Attribute name="dir" value="rtl" />
|
94
|
+
</Style>
|
95
|
+
<Style name="Language: LTR Strong" element="bdo">
|
96
|
+
<Attribute name="dir" value="ltr" />
|
97
|
+
</Style>
|
98
|
+
|
99
|
+
<!-- Object Styles -->
|
100
|
+
|
101
|
+
<Style name="Image on Left" element="img">
|
102
|
+
<Attribute name="style" value="padding: 5px; margin-right: 5px" />
|
103
|
+
<Attribute name="border" value="2" />
|
104
|
+
<Attribute name="align" value="left" />
|
105
|
+
</Style>
|
106
|
+
<Style name="Image on Right" element="img">
|
107
|
+
<Attribute name="style" value="padding: 5px; margin-left: 5px" />
|
108
|
+
<Attribute name="border" value="2" />
|
109
|
+
<Attribute name="align" value="right" />
|
110
|
+
</Style>
|
111
|
+
</Styles>
|
@@ -0,0 +1,103 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
2
|
+
<!--
|
3
|
+
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
4
|
+
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
5
|
+
*
|
6
|
+
* == BEGIN LICENSE ==
|
7
|
+
*
|
8
|
+
* Licensed under the terms of any of the following licenses at your
|
9
|
+
* choice:
|
10
|
+
*
|
11
|
+
* - GNU General Public License Version 2 or later (the "GPL")
|
12
|
+
* http://www.gnu.org/licenses/gpl.html
|
13
|
+
*
|
14
|
+
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
|
15
|
+
* http://www.gnu.org/licenses/lgpl.html
|
16
|
+
*
|
17
|
+
* - Mozilla Public License Version 1.1 or later (the "MPL")
|
18
|
+
* http://www.mozilla.org/MPL/MPL-1.1.html
|
19
|
+
*
|
20
|
+
* == END LICENSE ==
|
21
|
+
*
|
22
|
+
* This is the sample templates definitions file. It makes the "templates"
|
23
|
+
* command completely customizable.
|
24
|
+
*
|
25
|
+
* See FCKConfig.TemplatesXmlPath in the configuration file.
|
26
|
+
-->
|
27
|
+
<Templates imagesBasePath="fck_template/images/">
|
28
|
+
<Template title="Image and Title" image="template1.gif">
|
29
|
+
<Description>One main image with a title and text that surround the image.</Description>
|
30
|
+
<Html>
|
31
|
+
<![CDATA[
|
32
|
+
<img style="MARGIN-RIGHT: 10px" height="100" alt="" width="100" align="left"/>
|
33
|
+
<h3>Type the title here</h3>
|
34
|
+
Type the text here
|
35
|
+
]]>
|
36
|
+
</Html>
|
37
|
+
</Template>
|
38
|
+
<Template title="Strange Template" image="template2.gif">
|
39
|
+
<Description>A template that defines two colums, each one with a title, and some text.</Description>
|
40
|
+
<Html>
|
41
|
+
<![CDATA[
|
42
|
+
<table cellspacing="0" cellpadding="0" width="100%" border="0">
|
43
|
+
<tbody>
|
44
|
+
<tr>
|
45
|
+
<td width="50%">
|
46
|
+
<h3>Title 1</h3>
|
47
|
+
</td>
|
48
|
+
<td> </td>
|
49
|
+
<td width="50%">
|
50
|
+
<h3>Title 2</h3>
|
51
|
+
</td>
|
52
|
+
</tr>
|
53
|
+
<tr>
|
54
|
+
<td>Text 1</td>
|
55
|
+
<td> </td>
|
56
|
+
<td>Text 2</td>
|
57
|
+
</tr>
|
58
|
+
</tbody>
|
59
|
+
</table>
|
60
|
+
More text goes here.
|
61
|
+
]]>
|
62
|
+
</Html>
|
63
|
+
</Template>
|
64
|
+
<Template title="Text and Table" image="template3.gif">
|
65
|
+
<Description>A title with some text and a table.</Description>
|
66
|
+
<Html>
|
67
|
+
<![CDATA[
|
68
|
+
<table align="left" width="80%" border="0" cellspacing="0" cellpadding="0"><tr><td>
|
69
|
+
<h3>Title goes here</h3>
|
70
|
+
<p>
|
71
|
+
<table style="FLOAT: right" cellspacing="0" cellpadding="0" width="150" border="1">
|
72
|
+
<tbody>
|
73
|
+
<tr>
|
74
|
+
<td align="center" colspan="3"><strong>Table title</strong></td>
|
75
|
+
</tr>
|
76
|
+
<tr>
|
77
|
+
<td> </td>
|
78
|
+
<td> </td>
|
79
|
+
<td> </td>
|
80
|
+
</tr>
|
81
|
+
<tr>
|
82
|
+
<td> </td>
|
83
|
+
<td> </td>
|
84
|
+
<td> </td>
|
85
|
+
</tr>
|
86
|
+
<tr>
|
87
|
+
<td> </td>
|
88
|
+
<td> </td>
|
89
|
+
<td> </td>
|
90
|
+
</tr>
|
91
|
+
<tr>
|
92
|
+
<td> </td>
|
93
|
+
<td> </td>
|
94
|
+
<td> </td>
|
95
|
+
</tr>
|
96
|
+
</tbody>
|
97
|
+
</table>
|
98
|
+
Type the text here</p>
|
99
|
+
</td></tr></table>
|
100
|
+
]]>
|
101
|
+
</Html>
|
102
|
+
</Template>
|
103
|
+
</Templates>
|
@@ -0,0 +1,1246 @@
|
|
1
|
+
FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
2
|
+
Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
3
|
+
|
4
|
+
Licensed under the terms of any of the following licenses at your
|
5
|
+
choice:
|
6
|
+
|
7
|
+
- GNU General Public License Version 2 or later (the "GPL")
|
8
|
+
http://www.gnu.org/licenses/gpl.html
|
9
|
+
(See Appendix A)
|
10
|
+
|
11
|
+
- GNU Lesser General Public License Version 2.1 or later (the "LGPL")
|
12
|
+
http://www.gnu.org/licenses/lgpl.html
|
13
|
+
(See Appendix B)
|
14
|
+
|
15
|
+
- Mozilla Public License Version 1.1 or later (the "MPL")
|
16
|
+
http://www.mozilla.org/MPL/MPL-1.1.html
|
17
|
+
(See Appendix C)
|
18
|
+
|
19
|
+
You are not required to, but if you want to explicitly declare the
|
20
|
+
license you have chosen to be bound to when using, reproducing,
|
21
|
+
modifying and distributing this software, just include a text file
|
22
|
+
titled "legal.txt" in your version of this software, indicating your
|
23
|
+
license choice. In any case, your choice will not restrict any
|
24
|
+
recipient of your version of this software to use, reproduce, modify
|
25
|
+
and distribute this software under any of the above licenses.
|
26
|
+
|
27
|
+
Appendix A: The GPL License
|
28
|
+
===========================
|
29
|
+
|
30
|
+
GNU GENERAL PUBLIC LICENSE
|
31
|
+
Version 2, June 1991
|
32
|
+
|
33
|
+
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
34
|
+
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
35
|
+
Everyone is permitted to copy and distribute verbatim copies
|
36
|
+
of this license document, but changing it is not allowed.
|
37
|
+
|
38
|
+
Preamble
|
39
|
+
|
40
|
+
The licenses for most software are designed to take away your
|
41
|
+
freedom to share and change it. By contrast, the GNU General Public
|
42
|
+
License is intended to guarantee your freedom to share and change free
|
43
|
+
software--to make sure the software is free for all its users. This
|
44
|
+
General Public License applies to most of the Free Software
|
45
|
+
Foundation's software and to any other program whose authors commit to
|
46
|
+
using it. (Some other Free Software Foundation software is covered by
|
47
|
+
the GNU Lesser General Public License instead.) You can apply it to
|
48
|
+
your programs, too.
|
49
|
+
|
50
|
+
When we speak of free software, we are referring to freedom, not
|
51
|
+
price. Our General Public Licenses are designed to make sure that you
|
52
|
+
have the freedom to distribute copies of free software (and charge for
|
53
|
+
this service if you wish), that you receive source code or can get it
|
54
|
+
if you want it, that you can change the software or use pieces of it
|
55
|
+
in new free programs; and that you know you can do these things.
|
56
|
+
|
57
|
+
To protect your rights, we need to make restrictions that forbid
|
58
|
+
anyone to deny you these rights or to ask you to surrender the rights.
|
59
|
+
These restrictions translate to certain responsibilities for you if you
|
60
|
+
distribute copies of the software, or if you modify it.
|
61
|
+
|
62
|
+
For example, if you distribute copies of such a program, whether
|
63
|
+
gratis or for a fee, you must give the recipients all the rights that
|
64
|
+
you have. You must make sure that they, too, receive or can get the
|
65
|
+
source code. And you must show them these terms so they know their
|
66
|
+
rights.
|
67
|
+
|
68
|
+
We protect your rights with two steps: (1) copyright the software, and
|
69
|
+
(2) offer you this license which gives you legal permission to copy,
|
70
|
+
distribute and/or modify the software.
|
71
|
+
|
72
|
+
Also, for each author's protection and ours, we want to make certain
|
73
|
+
that everyone understands that there is no warranty for this free
|
74
|
+
software. If the software is modified by someone else and passed on, we
|
75
|
+
want its recipients to know that what they have is not the original, so
|
76
|
+
that any problems introduced by others will not reflect on the original
|
77
|
+
authors' reputations.
|
78
|
+
|
79
|
+
Finally, any free program is threatened constantly by software
|
80
|
+
patents. We wish to avoid the danger that redistributors of a free
|
81
|
+
program will individually obtain patent licenses, in effect making the
|
82
|
+
program proprietary. To prevent this, we have made it clear that any
|
83
|
+
patent must be licensed for everyone's free use or not licensed at all.
|
84
|
+
|
85
|
+
The precise terms and conditions for copying, distribution and
|
86
|
+
modification follow.
|
87
|
+
|
88
|
+
GNU GENERAL PUBLIC LICENSE
|
89
|
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
90
|
+
|
91
|
+
0. This License applies to any program or other work which contains
|
92
|
+
a notice placed by the copyright holder saying it may be distributed
|
93
|
+
under the terms of this General Public License. The "Program", below,
|
94
|
+
refers to any such program or work, and a "work based on the Program"
|
95
|
+
means either the Program or any derivative work under copyright law:
|
96
|
+
that is to say, a work containing the Program or a portion of it,
|
97
|
+
either verbatim or with modifications and/or translated into another
|
98
|
+
language. (Hereinafter, translation is included without limitation in
|
99
|
+
the term "modification".) Each licensee is addressed as "you".
|
100
|
+
|
101
|
+
Activities other than copying, distribution and modification are not
|
102
|
+
covered by this License; they are outside its scope. The act of
|
103
|
+
running the Program is not restricted, and the output from the Program
|
104
|
+
is covered only if its contents constitute a work based on the
|
105
|
+
Program (independent of having been made by running the Program).
|
106
|
+
Whether that is true depends on what the Program does.
|
107
|
+
|
108
|
+
1. You may copy and distribute verbatim copies of the Program's
|
109
|
+
source code as you receive it, in any medium, provided that you
|
110
|
+
conspicuously and appropriately publish on each copy an appropriate
|
111
|
+
copyright notice and disclaimer of warranty; keep intact all the
|
112
|
+
notices that refer to this License and to the absence of any warranty;
|
113
|
+
and give any other recipients of the Program a copy of this License
|
114
|
+
along with the Program.
|
115
|
+
|
116
|
+
You may charge a fee for the physical act of transferring a copy, and
|
117
|
+
you may at your option offer warranty protection in exchange for a fee.
|
118
|
+
|
119
|
+
2. You may modify your copy or copies of the Program or any portion
|
120
|
+
of it, thus forming a work based on the Program, and copy and
|
121
|
+
distribute such modifications or work under the terms of Section 1
|
122
|
+
above, provided that you also meet all of these conditions:
|
123
|
+
|
124
|
+
a) You must cause the modified files to carry prominent notices
|
125
|
+
stating that you changed the files and the date of any change.
|
126
|
+
|
127
|
+
b) You must cause any work that you distribute or publish, that in
|
128
|
+
whole or in part contains or is derived from the Program or any
|
129
|
+
part thereof, to be licensed as a whole at no charge to all third
|
130
|
+
parties under the terms of this License.
|
131
|
+
|
132
|
+
c) If the modified program normally reads commands interactively
|
133
|
+
when run, you must cause it, when started running for such
|
134
|
+
interactive use in the most ordinary way, to print or display an
|
135
|
+
announcement including an appropriate copyright notice and a
|
136
|
+
notice that there is no warranty (or else, saying that you provide
|
137
|
+
a warranty) and that users may redistribute the program under
|
138
|
+
these conditions, and telling the user how to view a copy of this
|
139
|
+
License. (Exception: if the Program itself is interactive but
|
140
|
+
does not normally print such an announcement, your work based on
|
141
|
+
the Program is not required to print an announcement.)
|
142
|
+
|
143
|
+
These requirements apply to the modified work as a whole. If
|
144
|
+
identifiable sections of that work are not derived from the Program,
|
145
|
+
and can be reasonably considered independent and separate works in
|
146
|
+
themselves, then this License, and its terms, do not apply to those
|
147
|
+
sections when you distribute them as separate works. But when you
|
148
|
+
distribute the same sections as part of a whole which is a work based
|
149
|
+
on the Program, the distribution of the whole must be on the terms of
|
150
|
+
this License, whose permissions for other licensees extend to the
|
151
|
+
entire whole, and thus to each and every part regardless of who wrote it.
|
152
|
+
|
153
|
+
Thus, it is not the intent of this section to claim rights or contest
|
154
|
+
your rights to work written entirely by you; rather, the intent is to
|
155
|
+
exercise the right to control the distribution of derivative or
|
156
|
+
collective works based on the Program.
|
157
|
+
|
158
|
+
In addition, mere aggregation of another work not based on the Program
|
159
|
+
with the Program (or with a work based on the Program) on a volume of
|
160
|
+
a storage or distribution medium does not bring the other work under
|
161
|
+
the scope of this License.
|
162
|
+
|
163
|
+
3. You may copy and distribute the Program (or a work based on it,
|
164
|
+
under Section 2) in object code or executable form under the terms of
|
165
|
+
Sections 1 and 2 above provided that you also do one of the following:
|
166
|
+
|
167
|
+
a) Accompany it with the complete corresponding machine-readable
|
168
|
+
source code, which must be distributed under the terms of Sections
|
169
|
+
1 and 2 above on a medium customarily used for software interchange; or,
|
170
|
+
|
171
|
+
b) Accompany it with a written offer, valid for at least three
|
172
|
+
years, to give any third party, for a charge no more than your
|
173
|
+
cost of physically performing source distribution, a complete
|
174
|
+
machine-readable copy of the corresponding source code, to be
|
175
|
+
distributed under the terms of Sections 1 and 2 above on a medium
|
176
|
+
customarily used for software interchange; or,
|
177
|
+
|
178
|
+
c) Accompany it with the information you received as to the offer
|
179
|
+
to distribute corresponding source code. (This alternative is
|
180
|
+
allowed only for noncommercial distribution and only if you
|
181
|
+
received the program in object code or executable form with such
|
182
|
+
an offer, in accord with Subsection b above.)
|
183
|
+
|
184
|
+
The source code for a work means the preferred form of the work for
|
185
|
+
making modifications to it. For an executable work, complete source
|
186
|
+
code means all the source code for all modules it contains, plus any
|
187
|
+
associated interface definition files, plus the scripts used to
|
188
|
+
control compilation and installation of the executable. However, as a
|
189
|
+
special exception, the source code distributed need not include
|
190
|
+
anything that is normally distributed (in either source or binary
|
191
|
+
form) with the major components (compiler, kernel, and so on) of the
|
192
|
+
operating system on which the executable runs, unless that component
|
193
|
+
itself accompanies the executable.
|
194
|
+
|
195
|
+
If distribution of executable or object code is made by offering
|
196
|
+
access to copy from a designated place, then offering equivalent
|
197
|
+
access to copy the source code from the same place counts as
|
198
|
+
distribution of the source code, even though third parties are not
|
199
|
+
compelled to copy the source along with the object code.
|
200
|
+
|
201
|
+
4. You may not copy, modify, sublicense, or distribute the Program
|
202
|
+
except as expressly provided under this License. Any attempt
|
203
|
+
otherwise to copy, modify, sublicense or distribute the Program is
|
204
|
+
void, and will automatically terminate your rights under this License.
|
205
|
+
However, parties who have received copies, or rights, from you under
|
206
|
+
this License will not have their licenses terminated so long as such
|
207
|
+
parties remain in full compliance.
|
208
|
+
|
209
|
+
5. You are not required to accept this License, since you have not
|
210
|
+
signed it. However, nothing else grants you permission to modify or
|
211
|
+
distribute the Program or its derivative works. These actions are
|
212
|
+
prohibited by law if you do not accept this License. Therefore, by
|
213
|
+
modifying or distributing the Program (or any work based on the
|
214
|
+
Program), you indicate your acceptance of this License to do so, and
|
215
|
+
all its terms and conditions for copying, distributing or modifying
|
216
|
+
the Program or works based on it.
|
217
|
+
|
218
|
+
6. Each time you redistribute the Program (or any work based on the
|
219
|
+
Program), the recipient automatically receives a license from the
|
220
|
+
original licensor to copy, distribute or modify the Program subject to
|
221
|
+
these terms and conditions. You may not impose any further
|
222
|
+
restrictions on the recipients' exercise of the rights granted herein.
|
223
|
+
You are not responsible for enforcing compliance by third parties to
|
224
|
+
this License.
|
225
|
+
|
226
|
+
7. If, as a consequence of a court judgment or allegation of patent
|
227
|
+
infringement or for any other reason (not limited to patent issues),
|
228
|
+
conditions are imposed on you (whether by court order, agreement or
|
229
|
+
otherwise) that contradict the conditions of this License, they do not
|
230
|
+
excuse you from the conditions of this License. If you cannot
|
231
|
+
distribute so as to satisfy simultaneously your obligations under this
|
232
|
+
License and any other pertinent obligations, then as a consequence you
|
233
|
+
may not distribute the Program at all. For example, if a patent
|
234
|
+
license would not permit royalty-free redistribution of the Program by
|
235
|
+
all those who receive copies directly or indirectly through you, then
|
236
|
+
the only way you could satisfy both it and this License would be to
|
237
|
+
refrain entirely from distribution of the Program.
|
238
|
+
|
239
|
+
If any portion of this section is held invalid or unenforceable under
|
240
|
+
any particular circumstance, the balance of the section is intended to
|
241
|
+
apply and the section as a whole is intended to apply in other
|
242
|
+
circumstances.
|
243
|
+
|
244
|
+
It is not the purpose of this section to induce you to infringe any
|
245
|
+
patents or other property right claims or to contest validity of any
|
246
|
+
such claims; this section has the sole purpose of protecting the
|
247
|
+
integrity of the free software distribution system, which is
|
248
|
+
implemented by public license practices. Many people have made
|
249
|
+
generous contributions to the wide range of software distributed
|
250
|
+
through that system in reliance on consistent application of that
|
251
|
+
system; it is up to the author/donor to decide if he or she is willing
|
252
|
+
to distribute software through any other system and a licensee cannot
|
253
|
+
impose that choice.
|
254
|
+
|
255
|
+
This section is intended to make thoroughly clear what is believed to
|
256
|
+
be a consequence of the rest of this License.
|
257
|
+
|
258
|
+
8. If the distribution and/or use of the Program is restricted in
|
259
|
+
certain countries either by patents or by copyrighted interfaces, the
|
260
|
+
original copyright holder who places the Program under this License
|
261
|
+
may add an explicit geographical distribution limitation excluding
|
262
|
+
those countries, so that distribution is permitted only in or among
|
263
|
+
countries not thus excluded. In such case, this License incorporates
|
264
|
+
the limitation as if written in the body of this License.
|
265
|
+
|
266
|
+
9. The Free Software Foundation may publish revised and/or new versions
|
267
|
+
of the General Public License from time to time. Such new versions will
|
268
|
+
be similar in spirit to the present version, but may differ in detail to
|
269
|
+
address new problems or concerns.
|
270
|
+
|
271
|
+
Each version is given a distinguishing version number. If the Program
|
272
|
+
specifies a version number of this License which applies to it and "any
|
273
|
+
later version", you have the option of following the terms and conditions
|
274
|
+
either of that version or of any later version published by the Free
|
275
|
+
Software Foundation. If the Program does not specify a version number of
|
276
|
+
this License, you may choose any version ever published by the Free Software
|
277
|
+
Foundation.
|
278
|
+
|
279
|
+
10. If you wish to incorporate parts of the Program into other free
|
280
|
+
programs whose distribution conditions are different, write to the author
|
281
|
+
to ask for permission. For software which is copyrighted by the Free
|
282
|
+
Software Foundation, write to the Free Software Foundation; we sometimes
|
283
|
+
make exceptions for this. Our decision will be guided by the two goals
|
284
|
+
of preserving the free status of all derivatives of our free software and
|
285
|
+
of promoting the sharing and reuse of software generally.
|
286
|
+
|
287
|
+
NO WARRANTY
|
288
|
+
|
289
|
+
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
290
|
+
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
291
|
+
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
292
|
+
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
293
|
+
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
294
|
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
295
|
+
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
296
|
+
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
297
|
+
REPAIR OR CORRECTION.
|
298
|
+
|
299
|
+
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
300
|
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
301
|
+
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
302
|
+
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
303
|
+
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
304
|
+
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
305
|
+
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
306
|
+
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
307
|
+
POSSIBILITY OF SUCH DAMAGES.
|
308
|
+
|
309
|
+
END OF TERMS AND CONDITIONS
|
310
|
+
|
311
|
+
|
312
|
+
Appendix B: The LGPL License
|
313
|
+
============================
|
314
|
+
|
315
|
+
GNU LESSER GENERAL PUBLIC LICENSE
|
316
|
+
Version 2.1, February 1999
|
317
|
+
|
318
|
+
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
319
|
+
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
320
|
+
Everyone is permitted to copy and distribute verbatim copies
|
321
|
+
of this license document, but changing it is not allowed.
|
322
|
+
|
323
|
+
[This is the first released version of the Lesser GPL. It also counts
|
324
|
+
as the successor of the GNU Library Public License, version 2, hence
|
325
|
+
the version number 2.1.]
|
326
|
+
|
327
|
+
Preamble
|
328
|
+
|
329
|
+
The licenses for most software are designed to take away your
|
330
|
+
freedom to share and change it. By contrast, the GNU General Public
|
331
|
+
Licenses are intended to guarantee your freedom to share and change
|
332
|
+
free software--to make sure the software is free for all its users.
|
333
|
+
|
334
|
+
This license, the Lesser General Public License, applies to some
|
335
|
+
specially designated software packages--typically libraries--of the
|
336
|
+
Free Software Foundation and other authors who decide to use it. You
|
337
|
+
can use it too, but we suggest you first think carefully about whether
|
338
|
+
this license or the ordinary General Public License is the better
|
339
|
+
strategy to use in any particular case, based on the explanations below.
|
340
|
+
|
341
|
+
When we speak of free software, we are referring to freedom of use,
|
342
|
+
not price. Our General Public Licenses are designed to make sure that
|
343
|
+
you have the freedom to distribute copies of free software (and charge
|
344
|
+
for this service if you wish); that you receive source code or can get
|
345
|
+
it if you want it; that you can change the software and use pieces of
|
346
|
+
it in new free programs; and that you are informed that you can do
|
347
|
+
these things.
|
348
|
+
|
349
|
+
To protect your rights, we need to make restrictions that forbid
|
350
|
+
distributors to deny you these rights or to ask you to surrender these
|
351
|
+
rights. These restrictions translate to certain responsibilities for
|
352
|
+
you if you distribute copies of the library or if you modify it.
|
353
|
+
|
354
|
+
For example, if you distribute copies of the library, whether gratis
|
355
|
+
or for a fee, you must give the recipients all the rights that we gave
|
356
|
+
you. You must make sure that they, too, receive or can get the source
|
357
|
+
code. If you link other code with the library, you must provide
|
358
|
+
complete object files to the recipients, so that they can relink them
|
359
|
+
with the library after making changes to the library and recompiling
|
360
|
+
it. And you must show them these terms so they know their rights.
|
361
|
+
|
362
|
+
We protect your rights with a two-step method: (1) we copyright the
|
363
|
+
library, and (2) we offer you this license, which gives you legal
|
364
|
+
permission to copy, distribute and/or modify the library.
|
365
|
+
|
366
|
+
To protect each distributor, we want to make it very clear that
|
367
|
+
there is no warranty for the free library. Also, if the library is
|
368
|
+
modified by someone else and passed on, the recipients should know
|
369
|
+
that what they have is not the original version, so that the original
|
370
|
+
author's reputation will not be affected by problems that might be
|
371
|
+
introduced by others.
|
372
|
+
|
373
|
+
Finally, software patents pose a constant threat to the existence of
|
374
|
+
any free program. We wish to make sure that a company cannot
|
375
|
+
effectively restrict the users of a free program by obtaining a
|
376
|
+
restrictive license from a patent holder. Therefore, we insist that
|
377
|
+
any patent license obtained for a version of the library must be
|
378
|
+
consistent with the full freedom of use specified in this license.
|
379
|
+
|
380
|
+
Most GNU software, including some libraries, is covered by the
|
381
|
+
ordinary GNU General Public License. This license, the GNU Lesser
|
382
|
+
General Public License, applies to certain designated libraries, and
|
383
|
+
is quite different from the ordinary General Public License. We use
|
384
|
+
this license for certain libraries in order to permit linking those
|
385
|
+
libraries into non-free programs.
|
386
|
+
|
387
|
+
When a program is linked with a library, whether statically or using
|
388
|
+
a shared library, the combination of the two is legally speaking a
|
389
|
+
combined work, a derivative of the original library. The ordinary
|
390
|
+
General Public License therefore permits such linking only if the
|
391
|
+
entire combination fits its criteria of freedom. The Lesser General
|
392
|
+
Public License permits more lax criteria for linking other code with
|
393
|
+
the library.
|
394
|
+
|
395
|
+
We call this license the "Lesser" General Public License because it
|
396
|
+
does Less to protect the user's freedom than the ordinary General
|
397
|
+
Public License. It also provides other free software developers Less
|
398
|
+
of an advantage over competing non-free programs. These disadvantages
|
399
|
+
are the reason we use the ordinary General Public License for many
|
400
|
+
libraries. However, the Lesser license provides advantages in certain
|
401
|
+
special circumstances.
|
402
|
+
|
403
|
+
For example, on rare occasions, there may be a special need to
|
404
|
+
encourage the widest possible use of a certain library, so that it becomes
|
405
|
+
a de-facto standard. To achieve this, non-free programs must be
|
406
|
+
allowed to use the library. A more frequent case is that a free
|
407
|
+
library does the same job as widely used non-free libraries. In this
|
408
|
+
case, there is little to gain by limiting the free library to free
|
409
|
+
software only, so we use the Lesser General Public License.
|
410
|
+
|
411
|
+
In other cases, permission to use a particular library in non-free
|
412
|
+
programs enables a greater number of people to use a large body of
|
413
|
+
free software. For example, permission to use the GNU C Library in
|
414
|
+
non-free programs enables many more people to use the whole GNU
|
415
|
+
operating system, as well as its variant, the GNU/Linux operating
|
416
|
+
system.
|
417
|
+
|
418
|
+
Although the Lesser General Public License is Less protective of the
|
419
|
+
users' freedom, it does ensure that the user of a program that is
|
420
|
+
linked with the Library has the freedom and the wherewithal to run
|
421
|
+
that program using a modified version of the Library.
|
422
|
+
|
423
|
+
The precise terms and conditions for copying, distribution and
|
424
|
+
modification follow. Pay close attention to the difference between a
|
425
|
+
"work based on the library" and a "work that uses the library". The
|
426
|
+
former contains code derived from the library, whereas the latter must
|
427
|
+
be combined with the library in order to run.
|
428
|
+
|
429
|
+
GNU LESSER GENERAL PUBLIC LICENSE
|
430
|
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
431
|
+
|
432
|
+
0. This License Agreement applies to any software library or other
|
433
|
+
program which contains a notice placed by the copyright holder or
|
434
|
+
other authorized party saying it may be distributed under the terms of
|
435
|
+
this Lesser General Public License (also called "this License").
|
436
|
+
Each licensee is addressed as "you".
|
437
|
+
|
438
|
+
A "library" means a collection of software functions and/or data
|
439
|
+
prepared so as to be conveniently linked with application programs
|
440
|
+
(which use some of those functions and data) to form executables.
|
441
|
+
|
442
|
+
The "Library", below, refers to any such software library or work
|
443
|
+
which has been distributed under these terms. A "work based on the
|
444
|
+
Library" means either the Library or any derivative work under
|
445
|
+
copyright law: that is to say, a work containing the Library or a
|
446
|
+
portion of it, either verbatim or with modifications and/or translated
|
447
|
+
straightforwardly into another language. (Hereinafter, translation is
|
448
|
+
included without limitation in the term "modification".)
|
449
|
+
|
450
|
+
"Source code" for a work means the preferred form of the work for
|
451
|
+
making modifications to it. For a library, complete source code means
|
452
|
+
all the source code for all modules it contains, plus any associated
|
453
|
+
interface definition files, plus the scripts used to control compilation
|
454
|
+
and installation of the library.
|
455
|
+
|
456
|
+
Activities other than copying, distribution and modification are not
|
457
|
+
covered by this License; they are outside its scope. The act of
|
458
|
+
running a program using the Library is not restricted, and output from
|
459
|
+
such a program is covered only if its contents constitute a work based
|
460
|
+
on the Library (independent of the use of the Library in a tool for
|
461
|
+
writing it). Whether that is true depends on what the Library does
|
462
|
+
and what the program that uses the Library does.
|
463
|
+
|
464
|
+
1. You may copy and distribute verbatim copies of the Library's
|
465
|
+
complete source code as you receive it, in any medium, provided that
|
466
|
+
you conspicuously and appropriately publish on each copy an
|
467
|
+
appropriate copyright notice and disclaimer of warranty; keep intact
|
468
|
+
all the notices that refer to this License and to the absence of any
|
469
|
+
warranty; and distribute a copy of this License along with the
|
470
|
+
Library.
|
471
|
+
|
472
|
+
You may charge a fee for the physical act of transferring a copy,
|
473
|
+
and you may at your option offer warranty protection in exchange for a
|
474
|
+
fee.
|
475
|
+
|
476
|
+
2. You may modify your copy or copies of the Library or any portion
|
477
|
+
of it, thus forming a work based on the Library, and copy and
|
478
|
+
distribute such modifications or work under the terms of Section 1
|
479
|
+
above, provided that you also meet all of these conditions:
|
480
|
+
|
481
|
+
a) The modified work must itself be a software library.
|
482
|
+
|
483
|
+
b) You must cause the files modified to carry prominent notices
|
484
|
+
stating that you changed the files and the date of any change.
|
485
|
+
|
486
|
+
c) You must cause the whole of the work to be licensed at no
|
487
|
+
charge to all third parties under the terms of this License.
|
488
|
+
|
489
|
+
d) If a facility in the modified Library refers to a function or a
|
490
|
+
table of data to be supplied by an application program that uses
|
491
|
+
the facility, other than as an argument passed when the facility
|
492
|
+
is invoked, then you must make a good faith effort to ensure that,
|
493
|
+
in the event an application does not supply such function or
|
494
|
+
table, the facility still operates, and performs whatever part of
|
495
|
+
its purpose remains meaningful.
|
496
|
+
|
497
|
+
(For example, a function in a library to compute square roots has
|
498
|
+
a purpose that is entirely well-defined independent of the
|
499
|
+
application. Therefore, Subsection 2d requires that any
|
500
|
+
application-supplied function or table used by this function must
|
501
|
+
be optional: if the application does not supply it, the square
|
502
|
+
root function must still compute square roots.)
|
503
|
+
|
504
|
+
These requirements apply to the modified work as a whole. If
|
505
|
+
identifiable sections of that work are not derived from the Library,
|
506
|
+
and can be reasonably considered independent and separate works in
|
507
|
+
themselves, then this License, and its terms, do not apply to those
|
508
|
+
sections when you distribute them as separate works. But when you
|
509
|
+
distribute the same sections as part of a whole which is a work based
|
510
|
+
on the Library, the distribution of the whole must be on the terms of
|
511
|
+
this License, whose permissions for other licensees extend to the
|
512
|
+
entire whole, and thus to each and every part regardless of who wrote
|
513
|
+
it.
|
514
|
+
|
515
|
+
Thus, it is not the intent of this section to claim rights or contest
|
516
|
+
your rights to work written entirely by you; rather, the intent is to
|
517
|
+
exercise the right to control the distribution of derivative or
|
518
|
+
collective works based on the Library.
|
519
|
+
|
520
|
+
In addition, mere aggregation of another work not based on the Library
|
521
|
+
with the Library (or with a work based on the Library) on a volume of
|
522
|
+
a storage or distribution medium does not bring the other work under
|
523
|
+
the scope of this License.
|
524
|
+
|
525
|
+
3. You may opt to apply the terms of the ordinary GNU General Public
|
526
|
+
License instead of this License to a given copy of the Library. To do
|
527
|
+
this, you must alter all the notices that refer to this License, so
|
528
|
+
that they refer to the ordinary GNU General Public License, version 2,
|
529
|
+
instead of to this License. (If a newer version than version 2 of the
|
530
|
+
ordinary GNU General Public License has appeared, then you can specify
|
531
|
+
that version instead if you wish.) Do not make any other change in
|
532
|
+
these notices.
|
533
|
+
|
534
|
+
Once this change is made in a given copy, it is irreversible for
|
535
|
+
that copy, so the ordinary GNU General Public License applies to all
|
536
|
+
subsequent copies and derivative works made from that copy.
|
537
|
+
|
538
|
+
This option is useful when you wish to copy part of the code of
|
539
|
+
the Library into a program that is not a library.
|
540
|
+
|
541
|
+
4. You may copy and distribute the Library (or a portion or
|
542
|
+
derivative of it, under Section 2) in object code or executable form
|
543
|
+
under the terms of Sections 1 and 2 above provided that you accompany
|
544
|
+
it with the complete corresponding machine-readable source code, which
|
545
|
+
must be distributed under the terms of Sections 1 and 2 above on a
|
546
|
+
medium customarily used for software interchange.
|
547
|
+
|
548
|
+
If distribution of object code is made by offering access to copy
|
549
|
+
from a designated place, then offering equivalent access to copy the
|
550
|
+
source code from the same place satisfies the requirement to
|
551
|
+
distribute the source code, even though third parties are not
|
552
|
+
compelled to copy the source along with the object code.
|
553
|
+
|
554
|
+
5. A program that contains no derivative of any portion of the
|
555
|
+
Library, but is designed to work with the Library by being compiled or
|
556
|
+
linked with it, is called a "work that uses the Library". Such a
|
557
|
+
work, in isolation, is not a derivative work of the Library, and
|
558
|
+
therefore falls outside the scope of this License.
|
559
|
+
|
560
|
+
However, linking a "work that uses the Library" with the Library
|
561
|
+
creates an executable that is a derivative of the Library (because it
|
562
|
+
contains portions of the Library), rather than a "work that uses the
|
563
|
+
library". The executable is therefore covered by this License.
|
564
|
+
Section 6 states terms for distribution of such executables.
|
565
|
+
|
566
|
+
When a "work that uses the Library" uses material from a header file
|
567
|
+
that is part of the Library, the object code for the work may be a
|
568
|
+
derivative work of the Library even though the source code is not.
|
569
|
+
Whether this is true is especially significant if the work can be
|
570
|
+
linked without the Library, or if the work is itself a library. The
|
571
|
+
threshold for this to be true is not precisely defined by law.
|
572
|
+
|
573
|
+
If such an object file uses only numerical parameters, data
|
574
|
+
structure layouts and accessors, and small macros and small inline
|
575
|
+
functions (ten lines or less in length), then the use of the object
|
576
|
+
file is unrestricted, regardless of whether it is legally a derivative
|
577
|
+
work. (Executables containing this object code plus portions of the
|
578
|
+
Library will still fall under Section 6.)
|
579
|
+
|
580
|
+
Otherwise, if the work is a derivative of the Library, you may
|
581
|
+
distribute the object code for the work under the terms of Section 6.
|
582
|
+
Any executables containing that work also fall under Section 6,
|
583
|
+
whether or not they are linked directly with the Library itself.
|
584
|
+
|
585
|
+
6. As an exception to the Sections above, you may also combine or
|
586
|
+
link a "work that uses the Library" with the Library to produce a
|
587
|
+
work containing portions of the Library, and distribute that work
|
588
|
+
under terms of your choice, provided that the terms permit
|
589
|
+
modification of the work for the customer's own use and reverse
|
590
|
+
engineering for debugging such modifications.
|
591
|
+
|
592
|
+
You must give prominent notice with each copy of the work that the
|
593
|
+
Library is used in it and that the Library and its use are covered by
|
594
|
+
this License. You must supply a copy of this License. If the work
|
595
|
+
during execution displays copyright notices, you must include the
|
596
|
+
copyright notice for the Library among them, as well as a reference
|
597
|
+
directing the user to the copy of this License. Also, you must do one
|
598
|
+
of these things:
|
599
|
+
|
600
|
+
a) Accompany the work with the complete corresponding
|
601
|
+
machine-readable source code for the Library including whatever
|
602
|
+
changes were used in the work (which must be distributed under
|
603
|
+
Sections 1 and 2 above); and, if the work is an executable linked
|
604
|
+
with the Library, with the complete machine-readable "work that
|
605
|
+
uses the Library", as object code and/or source code, so that the
|
606
|
+
user can modify the Library and then relink to produce a modified
|
607
|
+
executable containing the modified Library. (It is understood
|
608
|
+
that the user who changes the contents of definitions files in the
|
609
|
+
Library will not necessarily be able to recompile the application
|
610
|
+
to use the modified definitions.)
|
611
|
+
|
612
|
+
b) Use a suitable shared library mechanism for linking with the
|
613
|
+
Library. A suitable mechanism is one that (1) uses at run time a
|
614
|
+
copy of the library already present on the user's computer system,
|
615
|
+
rather than copying library functions into the executable, and (2)
|
616
|
+
will operate properly with a modified version of the library, if
|
617
|
+
the user installs one, as long as the modified version is
|
618
|
+
interface-compatible with the version that the work was made with.
|
619
|
+
|
620
|
+
c) Accompany the work with a written offer, valid for at
|
621
|
+
least three years, to give the same user the materials
|
622
|
+
specified in Subsection 6a, above, for a charge no more
|
623
|
+
than the cost of performing this distribution.
|
624
|
+
|
625
|
+
d) If distribution of the work is made by offering access to copy
|
626
|
+
from a designated place, offer equivalent access to copy the above
|
627
|
+
specified materials from the same place.
|
628
|
+
|
629
|
+
e) Verify that the user has already received a copy of these
|
630
|
+
materials or that you have already sent this user a copy.
|
631
|
+
|
632
|
+
For an executable, the required form of the "work that uses the
|
633
|
+
Library" must include any data and utility programs needed for
|
634
|
+
reproducing the executable from it. However, as a special exception,
|
635
|
+
the materials to be distributed need not include anything that is
|
636
|
+
normally distributed (in either source or binary form) with the major
|
637
|
+
components (compiler, kernel, and so on) of the operating system on
|
638
|
+
which the executable runs, unless that component itself accompanies
|
639
|
+
the executable.
|
640
|
+
|
641
|
+
It may happen that this requirement contradicts the license
|
642
|
+
restrictions of other proprietary libraries that do not normally
|
643
|
+
accompany the operating system. Such a contradiction means you cannot
|
644
|
+
use both them and the Library together in an executable that you
|
645
|
+
distribute.
|
646
|
+
|
647
|
+
7. You may place library facilities that are a work based on the
|
648
|
+
Library side-by-side in a single library together with other library
|
649
|
+
facilities not covered by this License, and distribute such a combined
|
650
|
+
library, provided that the separate distribution of the work based on
|
651
|
+
the Library and of the other library facilities is otherwise
|
652
|
+
permitted, and provided that you do these two things:
|
653
|
+
|
654
|
+
a) Accompany the combined library with a copy of the same work
|
655
|
+
based on the Library, uncombined with any other library
|
656
|
+
facilities. This must be distributed under the terms of the
|
657
|
+
Sections above.
|
658
|
+
|
659
|
+
b) Give prominent notice with the combined library of the fact
|
660
|
+
that part of it is a work based on the Library, and explaining
|
661
|
+
where to find the accompanying uncombined form of the same work.
|
662
|
+
|
663
|
+
8. You may not copy, modify, sublicense, link with, or distribute
|
664
|
+
the Library except as expressly provided under this License. Any
|
665
|
+
attempt otherwise to copy, modify, sublicense, link with, or
|
666
|
+
distribute the Library is void, and will automatically terminate your
|
667
|
+
rights under this License. However, parties who have received copies,
|
668
|
+
or rights, from you under this License will not have their licenses
|
669
|
+
terminated so long as such parties remain in full compliance.
|
670
|
+
|
671
|
+
9. You are not required to accept this License, since you have not
|
672
|
+
signed it. However, nothing else grants you permission to modify or
|
673
|
+
distribute the Library or its derivative works. These actions are
|
674
|
+
prohibited by law if you do not accept this License. Therefore, by
|
675
|
+
modifying or distributing the Library (or any work based on the
|
676
|
+
Library), you indicate your acceptance of this License to do so, and
|
677
|
+
all its terms and conditions for copying, distributing or modifying
|
678
|
+
the Library or works based on it.
|
679
|
+
|
680
|
+
10. Each time you redistribute the Library (or any work based on the
|
681
|
+
Library), the recipient automatically receives a license from the
|
682
|
+
original licensor to copy, distribute, link with or modify the Library
|
683
|
+
subject to these terms and conditions. You may not impose any further
|
684
|
+
restrictions on the recipients' exercise of the rights granted herein.
|
685
|
+
You are not responsible for enforcing compliance by third parties with
|
686
|
+
this License.
|
687
|
+
|
688
|
+
11. If, as a consequence of a court judgment or allegation of patent
|
689
|
+
infringement or for any other reason (not limited to patent issues),
|
690
|
+
conditions are imposed on you (whether by court order, agreement or
|
691
|
+
otherwise) that contradict the conditions of this License, they do not
|
692
|
+
excuse you from the conditions of this License. If you cannot
|
693
|
+
distribute so as to satisfy simultaneously your obligations under this
|
694
|
+
License and any other pertinent obligations, then as a consequence you
|
695
|
+
may not distribute the Library at all. For example, if a patent
|
696
|
+
license would not permit royalty-free redistribution of the Library by
|
697
|
+
all those who receive copies directly or indirectly through you, then
|
698
|
+
the only way you could satisfy both it and this License would be to
|
699
|
+
refrain entirely from distribution of the Library.
|
700
|
+
|
701
|
+
If any portion of this section is held invalid or unenforceable under any
|
702
|
+
particular circumstance, the balance of the section is intended to apply,
|
703
|
+
and the section as a whole is intended to apply in other circumstances.
|
704
|
+
|
705
|
+
It is not the purpose of this section to induce you to infringe any
|
706
|
+
patents or other property right claims or to contest validity of any
|
707
|
+
such claims; this section has the sole purpose of protecting the
|
708
|
+
integrity of the free software distribution system which is
|
709
|
+
implemented by public license practices. Many people have made
|
710
|
+
generous contributions to the wide range of software distributed
|
711
|
+
through that system in reliance on consistent application of that
|
712
|
+
system; it is up to the author/donor to decide if he or she is willing
|
713
|
+
to distribute software through any other system and a licensee cannot
|
714
|
+
impose that choice.
|
715
|
+
|
716
|
+
This section is intended to make thoroughly clear what is believed to
|
717
|
+
be a consequence of the rest of this License.
|
718
|
+
|
719
|
+
12. If the distribution and/or use of the Library is restricted in
|
720
|
+
certain countries either by patents or by copyrighted interfaces, the
|
721
|
+
original copyright holder who places the Library under this License may add
|
722
|
+
an explicit geographical distribution limitation excluding those countries,
|
723
|
+
so that distribution is permitted only in or among countries not thus
|
724
|
+
excluded. In such case, this License incorporates the limitation as if
|
725
|
+
written in the body of this License.
|
726
|
+
|
727
|
+
13. The Free Software Foundation may publish revised and/or new
|
728
|
+
versions of the Lesser General Public License from time to time.
|
729
|
+
Such new versions will be similar in spirit to the present version,
|
730
|
+
but may differ in detail to address new problems or concerns.
|
731
|
+
|
732
|
+
Each version is given a distinguishing version number. If the Library
|
733
|
+
specifies a version number of this License which applies to it and
|
734
|
+
"any later version", you have the option of following the terms and
|
735
|
+
conditions either of that version or of any later version published by
|
736
|
+
the Free Software Foundation. If the Library does not specify a
|
737
|
+
license version number, you may choose any version ever published by
|
738
|
+
the Free Software Foundation.
|
739
|
+
|
740
|
+
14. If you wish to incorporate parts of the Library into other free
|
741
|
+
programs whose distribution conditions are incompatible with these,
|
742
|
+
write to the author to ask for permission. For software which is
|
743
|
+
copyrighted by the Free Software Foundation, write to the Free
|
744
|
+
Software Foundation; we sometimes make exceptions for this. Our
|
745
|
+
decision will be guided by the two goals of preserving the free status
|
746
|
+
of all derivatives of our free software and of promoting the sharing
|
747
|
+
and reuse of software generally.
|
748
|
+
|
749
|
+
NO WARRANTY
|
750
|
+
|
751
|
+
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
752
|
+
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
753
|
+
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
754
|
+
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
|
755
|
+
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
|
756
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
757
|
+
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
|
758
|
+
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
759
|
+
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
760
|
+
|
761
|
+
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
762
|
+
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
763
|
+
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
|
764
|
+
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
765
|
+
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
|
766
|
+
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
|
767
|
+
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
768
|
+
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
769
|
+
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
770
|
+
DAMAGES.
|
771
|
+
|
772
|
+
END OF TERMS AND CONDITIONS
|
773
|
+
|
774
|
+
|
775
|
+
Appendix C: The MPL License
|
776
|
+
===========================
|
777
|
+
|
778
|
+
MOZILLA PUBLIC LICENSE
|
779
|
+
Version 1.1
|
780
|
+
|
781
|
+
---------------
|
782
|
+
|
783
|
+
1. Definitions.
|
784
|
+
|
785
|
+
1.0.1. "Commercial Use" means distribution or otherwise making the
|
786
|
+
Covered Code available to a third party.
|
787
|
+
|
788
|
+
1.1. "Contributor" means each entity that creates or contributes to
|
789
|
+
the creation of Modifications.
|
790
|
+
|
791
|
+
1.2. "Contributor Version" means the combination of the Original
|
792
|
+
Code, prior Modifications used by a Contributor, and the Modifications
|
793
|
+
made by that particular Contributor.
|
794
|
+
|
795
|
+
1.3. "Covered Code" means the Original Code or Modifications or the
|
796
|
+
combination of the Original Code and Modifications, in each case
|
797
|
+
including portions thereof.
|
798
|
+
|
799
|
+
1.4. "Electronic Distribution Mechanism" means a mechanism generally
|
800
|
+
accepted in the software development community for the electronic
|
801
|
+
transfer of data.
|
802
|
+
|
803
|
+
1.5. "Executable" means Covered Code in any form other than Source
|
804
|
+
Code.
|
805
|
+
|
806
|
+
1.6. "Initial Developer" means the individual or entity identified
|
807
|
+
as the Initial Developer in the Source Code notice required by Exhibit
|
808
|
+
A.
|
809
|
+
|
810
|
+
1.7. "Larger Work" means a work which combines Covered Code or
|
811
|
+
portions thereof with code not governed by the terms of this License.
|
812
|
+
|
813
|
+
1.8. "License" means this document.
|
814
|
+
|
815
|
+
1.8.1. "Licensable" means having the right to grant, to the maximum
|
816
|
+
extent possible, whether at the time of the initial grant or
|
817
|
+
subsequently acquired, any and all of the rights conveyed herein.
|
818
|
+
|
819
|
+
1.9. "Modifications" means any addition to or deletion from the
|
820
|
+
substance or structure of either the Original Code or any previous
|
821
|
+
Modifications. When Covered Code is released as a series of files, a
|
822
|
+
Modification is:
|
823
|
+
A. Any addition to or deletion from the contents of a file
|
824
|
+
containing Original Code or previous Modifications.
|
825
|
+
|
826
|
+
B. Any new file that contains any part of the Original Code or
|
827
|
+
previous Modifications.
|
828
|
+
|
829
|
+
1.10. "Original Code" means Source Code of computer software code
|
830
|
+
which is described in the Source Code notice required by Exhibit A as
|
831
|
+
Original Code, and which, at the time of its release under this
|
832
|
+
License is not already Covered Code governed by this License.
|
833
|
+
|
834
|
+
1.10.1. "Patent Claims" means any patent claim(s), now owned or
|
835
|
+
hereafter acquired, including without limitation, method, process,
|
836
|
+
and apparatus claims, in any patent Licensable by grantor.
|
837
|
+
|
838
|
+
1.11. "Source Code" means the preferred form of the Covered Code for
|
839
|
+
making modifications to it, including all modules it contains, plus
|
840
|
+
any associated interface definition files, scripts used to control
|
841
|
+
compilation and installation of an Executable, or source code
|
842
|
+
differential comparisons against either the Original Code or another
|
843
|
+
well known, available Covered Code of the Contributor's choice. The
|
844
|
+
Source Code can be in a compressed or archival form, provided the
|
845
|
+
appropriate decompression or de-archiving software is widely available
|
846
|
+
for no charge.
|
847
|
+
|
848
|
+
1.12. "You" (or "Your") means an individual or a legal entity
|
849
|
+
exercising rights under, and complying with all of the terms of, this
|
850
|
+
License or a future version of this License issued under Section 6.1.
|
851
|
+
For legal entities, "You" includes any entity which controls, is
|
852
|
+
controlled by, or is under common control with You. For purposes of
|
853
|
+
this definition, "control" means (a) the power, direct or indirect,
|
854
|
+
to cause the direction or management of such entity, whether by
|
855
|
+
contract or otherwise, or (b) ownership of more than fifty percent
|
856
|
+
(50%) of the outstanding shares or beneficial ownership of such
|
857
|
+
entity.
|
858
|
+
|
859
|
+
2. Source Code License.
|
860
|
+
|
861
|
+
2.1. The Initial Developer Grant.
|
862
|
+
The Initial Developer hereby grants You a world-wide, royalty-free,
|
863
|
+
non-exclusive license, subject to third party intellectual property
|
864
|
+
claims:
|
865
|
+
(a) under intellectual property rights (other than patent or
|
866
|
+
trademark) Licensable by Initial Developer to use, reproduce,
|
867
|
+
modify, display, perform, sublicense and distribute the Original
|
868
|
+
Code (or portions thereof) with or without Modifications, and/or
|
869
|
+
as part of a Larger Work; and
|
870
|
+
|
871
|
+
(b) under Patents Claims infringed by the making, using or
|
872
|
+
selling of Original Code, to make, have made, use, practice,
|
873
|
+
sell, and offer for sale, and/or otherwise dispose of the
|
874
|
+
Original Code (or portions thereof).
|
875
|
+
|
876
|
+
(c) the licenses granted in this Section 2.1(a) and (b) are
|
877
|
+
effective on the date Initial Developer first distributes
|
878
|
+
Original Code under the terms of this License.
|
879
|
+
|
880
|
+
(d) Notwithstanding Section 2.1(b) above, no patent license is
|
881
|
+
granted: 1) for code that You delete from the Original Code; 2)
|
882
|
+
separate from the Original Code; or 3) for infringements caused
|
883
|
+
by: i) the modification of the Original Code or ii) the
|
884
|
+
combination of the Original Code with other software or devices.
|
885
|
+
|
886
|
+
2.2. Contributor Grant.
|
887
|
+
Subject to third party intellectual property claims, each Contributor
|
888
|
+
hereby grants You a world-wide, royalty-free, non-exclusive license
|
889
|
+
|
890
|
+
(a) under intellectual property rights (other than patent or
|
891
|
+
trademark) Licensable by Contributor, to use, reproduce, modify,
|
892
|
+
display, perform, sublicense and distribute the Modifications
|
893
|
+
created by such Contributor (or portions thereof) either on an
|
894
|
+
unmodified basis, with other Modifications, as Covered Code
|
895
|
+
and/or as part of a Larger Work; and
|
896
|
+
|
897
|
+
(b) under Patent Claims infringed by the making, using, or
|
898
|
+
selling of Modifications made by that Contributor either alone
|
899
|
+
and/or in combination with its Contributor Version (or portions
|
900
|
+
of such combination), to make, use, sell, offer for sale, have
|
901
|
+
made, and/or otherwise dispose of: 1) Modifications made by that
|
902
|
+
Contributor (or portions thereof); and 2) the combination of
|
903
|
+
Modifications made by that Contributor with its Contributor
|
904
|
+
Version (or portions of such combination).
|
905
|
+
|
906
|
+
(c) the licenses granted in Sections 2.2(a) and 2.2(b) are
|
907
|
+
effective on the date Contributor first makes Commercial Use of
|
908
|
+
the Covered Code.
|
909
|
+
|
910
|
+
(d) Notwithstanding Section 2.2(b) above, no patent license is
|
911
|
+
granted: 1) for any code that Contributor has deleted from the
|
912
|
+
Contributor Version; 2) separate from the Contributor Version;
|
913
|
+
3) for infringements caused by: i) third party modifications of
|
914
|
+
Contributor Version or ii) the combination of Modifications made
|
915
|
+
by that Contributor with other software (except as part of the
|
916
|
+
Contributor Version) or other devices; or 4) under Patent Claims
|
917
|
+
infringed by Covered Code in the absence of Modifications made by
|
918
|
+
that Contributor.
|
919
|
+
|
920
|
+
3. Distribution Obligations.
|
921
|
+
|
922
|
+
3.1. Application of License.
|
923
|
+
The Modifications which You create or to which You contribute are
|
924
|
+
governed by the terms of this License, including without limitation
|
925
|
+
Section 2.2. The Source Code version of Covered Code may be
|
926
|
+
distributed only under the terms of this License or a future version
|
927
|
+
of this License released under Section 6.1, and You must include a
|
928
|
+
copy of this License with every copy of the Source Code You
|
929
|
+
distribute. You may not offer or impose any terms on any Source Code
|
930
|
+
version that alters or restricts the applicable version of this
|
931
|
+
License or the recipients' rights hereunder. However, You may include
|
932
|
+
an additional document offering the additional rights described in
|
933
|
+
Section 3.5.
|
934
|
+
|
935
|
+
3.2. Availability of Source Code.
|
936
|
+
Any Modification which You create or to which You contribute must be
|
937
|
+
made available in Source Code form under the terms of this License
|
938
|
+
either on the same media as an Executable version or via an accepted
|
939
|
+
Electronic Distribution Mechanism to anyone to whom you made an
|
940
|
+
Executable version available; and if made available via Electronic
|
941
|
+
Distribution Mechanism, must remain available for at least twelve (12)
|
942
|
+
months after the date it initially became available, or at least six
|
943
|
+
(6) months after a subsequent version of that particular Modification
|
944
|
+
has been made available to such recipients. You are responsible for
|
945
|
+
ensuring that the Source Code version remains available even if the
|
946
|
+
Electronic Distribution Mechanism is maintained by a third party.
|
947
|
+
|
948
|
+
3.3. Description of Modifications.
|
949
|
+
You must cause all Covered Code to which You contribute to contain a
|
950
|
+
file documenting the changes You made to create that Covered Code and
|
951
|
+
the date of any change. You must include a prominent statement that
|
952
|
+
the Modification is derived, directly or indirectly, from Original
|
953
|
+
Code provided by the Initial Developer and including the name of the
|
954
|
+
Initial Developer in (a) the Source Code, and (b) in any notice in an
|
955
|
+
Executable version or related documentation in which You describe the
|
956
|
+
origin or ownership of the Covered Code.
|
957
|
+
|
958
|
+
3.4. Intellectual Property Matters
|
959
|
+
(a) Third Party Claims.
|
960
|
+
If Contributor has knowledge that a license under a third party's
|
961
|
+
intellectual property rights is required to exercise the rights
|
962
|
+
granted by such Contributor under Sections 2.1 or 2.2,
|
963
|
+
Contributor must include a text file with the Source Code
|
964
|
+
distribution titled "LEGAL" which describes the claim and the
|
965
|
+
party making the claim in sufficient detail that a recipient will
|
966
|
+
know whom to contact. If Contributor obtains such knowledge after
|
967
|
+
the Modification is made available as described in Section 3.2,
|
968
|
+
Contributor shall promptly modify the LEGAL file in all copies
|
969
|
+
Contributor makes available thereafter and shall take other steps
|
970
|
+
(such as notifying appropriate mailing lists or newsgroups)
|
971
|
+
reasonably calculated to inform those who received the Covered
|
972
|
+
Code that new knowledge has been obtained.
|
973
|
+
|
974
|
+
(b) Contributor APIs.
|
975
|
+
If Contributor's Modifications include an application programming
|
976
|
+
interface and Contributor has knowledge of patent licenses which
|
977
|
+
are reasonably necessary to implement that API, Contributor must
|
978
|
+
also include this information in the LEGAL file.
|
979
|
+
|
980
|
+
(c) Representations.
|
981
|
+
Contributor represents that, except as disclosed pursuant to
|
982
|
+
Section 3.4(a) above, Contributor believes that Contributor's
|
983
|
+
Modifications are Contributor's original creation(s) and/or
|
984
|
+
Contributor has sufficient rights to grant the rights conveyed by
|
985
|
+
this License.
|
986
|
+
|
987
|
+
3.5. Required Notices.
|
988
|
+
You must duplicate the notice in Exhibit A in each file of the Source
|
989
|
+
Code. If it is not possible to put such notice in a particular Source
|
990
|
+
Code file due to its structure, then You must include such notice in a
|
991
|
+
location (such as a relevant directory) where a user would be likely
|
992
|
+
to look for such a notice. If You created one or more Modification(s)
|
993
|
+
You may add your name as a Contributor to the notice described in
|
994
|
+
Exhibit A. You must also duplicate this License in any documentation
|
995
|
+
for the Source Code where You describe recipients' rights or ownership
|
996
|
+
rights relating to Covered Code. You may choose to offer, and to
|
997
|
+
charge a fee for, warranty, support, indemnity or liability
|
998
|
+
obligations to one or more recipients of Covered Code. However, You
|
999
|
+
may do so only on Your own behalf, and not on behalf of the Initial
|
1000
|
+
Developer or any Contributor. You must make it absolutely clear than
|
1001
|
+
any such warranty, support, indemnity or liability obligation is
|
1002
|
+
offered by You alone, and You hereby agree to indemnify the Initial
|
1003
|
+
Developer and every Contributor for any liability incurred by the
|
1004
|
+
Initial Developer or such Contributor as a result of warranty,
|
1005
|
+
support, indemnity or liability terms You offer.
|
1006
|
+
|
1007
|
+
3.6. Distribution of Executable Versions.
|
1008
|
+
You may distribute Covered Code in Executable form only if the
|
1009
|
+
requirements of Section 3.1-3.5 have been met for that Covered Code,
|
1010
|
+
and if You include a notice stating that the Source Code version of
|
1011
|
+
the Covered Code is available under the terms of this License,
|
1012
|
+
including a description of how and where You have fulfilled the
|
1013
|
+
obligations of Section 3.2. The notice must be conspicuously included
|
1014
|
+
in any notice in an Executable version, related documentation or
|
1015
|
+
collateral in which You describe recipients' rights relating to the
|
1016
|
+
Covered Code. You may distribute the Executable version of Covered
|
1017
|
+
Code or ownership rights under a license of Your choice, which may
|
1018
|
+
contain terms different from this License, provided that You are in
|
1019
|
+
compliance with the terms of this License and that the license for the
|
1020
|
+
Executable version does not attempt to limit or alter the recipient's
|
1021
|
+
rights in the Source Code version from the rights set forth in this
|
1022
|
+
License. If You distribute the Executable version under a different
|
1023
|
+
license You must make it absolutely clear that any terms which differ
|
1024
|
+
from this License are offered by You alone, not by the Initial
|
1025
|
+
Developer or any Contributor. You hereby agree to indemnify the
|
1026
|
+
Initial Developer and every Contributor for any liability incurred by
|
1027
|
+
the Initial Developer or such Contributor as a result of any such
|
1028
|
+
terms You offer.
|
1029
|
+
|
1030
|
+
3.7. Larger Works.
|
1031
|
+
You may create a Larger Work by combining Covered Code with other code
|
1032
|
+
not governed by the terms of this License and distribute the Larger
|
1033
|
+
Work as a single product. In such a case, You must make sure the
|
1034
|
+
requirements of this License are fulfilled for the Covered Code.
|
1035
|
+
|
1036
|
+
4. Inability to Comply Due to Statute or Regulation.
|
1037
|
+
|
1038
|
+
If it is impossible for You to comply with any of the terms of this
|
1039
|
+
License with respect to some or all of the Covered Code due to
|
1040
|
+
statute, judicial order, or regulation then You must: (a) comply with
|
1041
|
+
the terms of this License to the maximum extent possible; and (b)
|
1042
|
+
describe the limitations and the code they affect. Such description
|
1043
|
+
must be included in the LEGAL file described in Section 3.4 and must
|
1044
|
+
be included with all distributions of the Source Code. Except to the
|
1045
|
+
extent prohibited by statute or regulation, such description must be
|
1046
|
+
sufficiently detailed for a recipient of ordinary skill to be able to
|
1047
|
+
understand it.
|
1048
|
+
|
1049
|
+
5. Application of this License.
|
1050
|
+
|
1051
|
+
This License applies to code to which the Initial Developer has
|
1052
|
+
attached the notice in Exhibit A and to related Covered Code.
|
1053
|
+
|
1054
|
+
6. Versions of the License.
|
1055
|
+
|
1056
|
+
6.1. New Versions.
|
1057
|
+
Netscape Communications Corporation ("Netscape") may publish revised
|
1058
|
+
and/or new versions of the License from time to time. Each version
|
1059
|
+
will be given a distinguishing version number.
|
1060
|
+
|
1061
|
+
6.2. Effect of New Versions.
|
1062
|
+
Once Covered Code has been published under a particular version of the
|
1063
|
+
License, You may always continue to use it under the terms of that
|
1064
|
+
version. You may also choose to use such Covered Code under the terms
|
1065
|
+
of any subsequent version of the License published by Netscape. No one
|
1066
|
+
other than Netscape has the right to modify the terms applicable to
|
1067
|
+
Covered Code created under this License.
|
1068
|
+
|
1069
|
+
6.3. Derivative Works.
|
1070
|
+
If You create or use a modified version of this License (which you may
|
1071
|
+
only do in order to apply it to code which is not already Covered Code
|
1072
|
+
governed by this License), You must (a) rename Your license so that
|
1073
|
+
the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape",
|
1074
|
+
"MPL", "NPL" or any confusingly similar phrase do not appear in your
|
1075
|
+
license (except to note that your license differs from this License)
|
1076
|
+
and (b) otherwise make it clear that Your version of the license
|
1077
|
+
contains terms which differ from the Mozilla Public License and
|
1078
|
+
Netscape Public License. (Filling in the name of the Initial
|
1079
|
+
Developer, Original Code or Contributor in the notice described in
|
1080
|
+
Exhibit A shall not of themselves be deemed to be modifications of
|
1081
|
+
this License.)
|
1082
|
+
|
1083
|
+
7. DISCLAIMER OF WARRANTY.
|
1084
|
+
|
1085
|
+
COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS,
|
1086
|
+
WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
1087
|
+
WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF
|
1088
|
+
DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.
|
1089
|
+
THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE
|
1090
|
+
IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT,
|
1091
|
+
YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE
|
1092
|
+
COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
|
1093
|
+
OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
|
1094
|
+
ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
|
1095
|
+
|
1096
|
+
8. TERMINATION.
|
1097
|
+
|
1098
|
+
8.1. This License and the rights granted hereunder will terminate
|
1099
|
+
automatically if You fail to comply with terms herein and fail to cure
|
1100
|
+
such breach within 30 days of becoming aware of the breach. All
|
1101
|
+
sublicenses to the Covered Code which are properly granted shall
|
1102
|
+
survive any termination of this License. Provisions which, by their
|
1103
|
+
nature, must remain in effect beyond the termination of this License
|
1104
|
+
shall survive.
|
1105
|
+
|
1106
|
+
8.2. If You initiate litigation by asserting a patent infringement
|
1107
|
+
claim (excluding declatory judgment actions) against Initial Developer
|
1108
|
+
or a Contributor (the Initial Developer or Contributor against whom
|
1109
|
+
You file such action is referred to as "Participant") alleging that:
|
1110
|
+
|
1111
|
+
(a) such Participant's Contributor Version directly or indirectly
|
1112
|
+
infringes any patent, then any and all rights granted by such
|
1113
|
+
Participant to You under Sections 2.1 and/or 2.2 of this License
|
1114
|
+
shall, upon 60 days notice from Participant terminate prospectively,
|
1115
|
+
unless if within 60 days after receipt of notice You either: (i)
|
1116
|
+
agree in writing to pay Participant a mutually agreeable reasonable
|
1117
|
+
royalty for Your past and future use of Modifications made by such
|
1118
|
+
Participant, or (ii) withdraw Your litigation claim with respect to
|
1119
|
+
the Contributor Version against such Participant. If within 60 days
|
1120
|
+
of notice, a reasonable royalty and payment arrangement are not
|
1121
|
+
mutually agreed upon in writing by the parties or the litigation claim
|
1122
|
+
is not withdrawn, the rights granted by Participant to You under
|
1123
|
+
Sections 2.1 and/or 2.2 automatically terminate at the expiration of
|
1124
|
+
the 60 day notice period specified above.
|
1125
|
+
|
1126
|
+
(b) any software, hardware, or device, other than such Participant's
|
1127
|
+
Contributor Version, directly or indirectly infringes any patent, then
|
1128
|
+
any rights granted to You by such Participant under Sections 2.1(b)
|
1129
|
+
and 2.2(b) are revoked effective as of the date You first made, used,
|
1130
|
+
sold, distributed, or had made, Modifications made by that
|
1131
|
+
Participant.
|
1132
|
+
|
1133
|
+
8.3. If You assert a patent infringement claim against Participant
|
1134
|
+
alleging that such Participant's Contributor Version directly or
|
1135
|
+
indirectly infringes any patent where such claim is resolved (such as
|
1136
|
+
by license or settlement) prior to the initiation of patent
|
1137
|
+
infringement litigation, then the reasonable value of the licenses
|
1138
|
+
granted by such Participant under Sections 2.1 or 2.2 shall be taken
|
1139
|
+
into account in determining the amount or value of any payment or
|
1140
|
+
license.
|
1141
|
+
|
1142
|
+
8.4. In the event of termination under Sections 8.1 or 8.2 above,
|
1143
|
+
all end user license agreements (excluding distributors and resellers)
|
1144
|
+
which have been validly granted by You or any distributor hereunder
|
1145
|
+
prior to termination shall survive termination.
|
1146
|
+
|
1147
|
+
9. LIMITATION OF LIABILITY.
|
1148
|
+
|
1149
|
+
UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
|
1150
|
+
(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL
|
1151
|
+
DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,
|
1152
|
+
OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR
|
1153
|
+
ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY
|
1154
|
+
CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,
|
1155
|
+
WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
|
1156
|
+
COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
|
1157
|
+
INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
|
1158
|
+
LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY
|
1159
|
+
RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW
|
1160
|
+
PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE
|
1161
|
+
EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO
|
1162
|
+
THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.
|
1163
|
+
|
1164
|
+
10. U.S. GOVERNMENT END USERS.
|
1165
|
+
|
1166
|
+
The Covered Code is a "commercial item," as that term is defined in
|
1167
|
+
48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer
|
1168
|
+
software" and "commercial computer software documentation," as such
|
1169
|
+
terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48
|
1170
|
+
C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),
|
1171
|
+
all U.S. Government End Users acquire Covered Code with only those
|
1172
|
+
rights set forth herein.
|
1173
|
+
|
1174
|
+
11. MISCELLANEOUS.
|
1175
|
+
|
1176
|
+
This License represents the complete agreement concerning subject
|
1177
|
+
matter hereof. If any provision of this License is held to be
|
1178
|
+
unenforceable, such provision shall be reformed only to the extent
|
1179
|
+
necessary to make it enforceable. This License shall be governed by
|
1180
|
+
California law provisions (except to the extent applicable law, if
|
1181
|
+
any, provides otherwise), excluding its conflict-of-law provisions.
|
1182
|
+
With respect to disputes in which at least one party is a citizen of,
|
1183
|
+
or an entity chartered or registered to do business in the United
|
1184
|
+
States of America, any litigation relating to this License shall be
|
1185
|
+
subject to the jurisdiction of the Federal Courts of the Northern
|
1186
|
+
District of California, with venue lying in Santa Clara County,
|
1187
|
+
California, with the losing party responsible for costs, including
|
1188
|
+
without limitation, court costs and reasonable attorneys' fees and
|
1189
|
+
expenses. The application of the United Nations Convention on
|
1190
|
+
Contracts for the International Sale of Goods is expressly excluded.
|
1191
|
+
Any law or regulation which provides that the language of a contract
|
1192
|
+
shall be construed against the drafter shall not apply to this
|
1193
|
+
License.
|
1194
|
+
|
1195
|
+
12. RESPONSIBILITY FOR CLAIMS.
|
1196
|
+
|
1197
|
+
As between Initial Developer and the Contributors, each party is
|
1198
|
+
responsible for claims and damages arising, directly or indirectly,
|
1199
|
+
out of its utilization of rights under this License and You agree to
|
1200
|
+
work with Initial Developer and Contributors to distribute such
|
1201
|
+
responsibility on an equitable basis. Nothing herein is intended or
|
1202
|
+
shall be deemed to constitute any admission of liability.
|
1203
|
+
|
1204
|
+
13. MULTIPLE-LICENSED CODE.
|
1205
|
+
|
1206
|
+
Initial Developer may designate portions of the Covered Code as
|
1207
|
+
"Multiple-Licensed". "Multiple-Licensed" means that the Initial
|
1208
|
+
Developer permits you to utilize portions of the Covered Code under
|
1209
|
+
Your choice of the NPL or the alternative licenses, if any, specified
|
1210
|
+
by the Initial Developer in the file described in Exhibit A.
|
1211
|
+
|
1212
|
+
EXHIBIT A -Mozilla Public License.
|
1213
|
+
|
1214
|
+
``The contents of this file are subject to the Mozilla Public License
|
1215
|
+
Version 1.1 (the "License"); you may not use this file except in
|
1216
|
+
compliance with the License. You may obtain a copy of the License at
|
1217
|
+
http://www.mozilla.org/MPL/
|
1218
|
+
|
1219
|
+
Software distributed under the License is distributed on an "AS IS"
|
1220
|
+
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
1221
|
+
License for the specific language governing rights and limitations
|
1222
|
+
under the License.
|
1223
|
+
|
1224
|
+
The Original Code is ______________________________________.
|
1225
|
+
|
1226
|
+
The Initial Developer of the Original Code is ________________________.
|
1227
|
+
Portions created by ______________________ are Copyright (C) ______
|
1228
|
+
_______________________. All Rights Reserved.
|
1229
|
+
|
1230
|
+
Contributor(s): ______________________________________.
|
1231
|
+
|
1232
|
+
Alternatively, the contents of this file may be used under the terms
|
1233
|
+
of the _____ license (the "[___] License"), in which case the
|
1234
|
+
provisions of [______] License are applicable instead of those
|
1235
|
+
above. If you wish to allow use of your version of this file only
|
1236
|
+
under the terms of the [____] License and not to allow others to use
|
1237
|
+
your version of this file under the MPL, indicate your decision by
|
1238
|
+
deleting the provisions above and replace them with the notice and
|
1239
|
+
other provisions required by the [___] License. If you do not delete
|
1240
|
+
the provisions above, a recipient may use your version of this file
|
1241
|
+
under either the MPL or the [___] License."
|
1242
|
+
|
1243
|
+
[NOTE: The text of this Exhibit A may differ slightly from the text of
|
1244
|
+
the notices in the Source Code files of the Original Code. You should
|
1245
|
+
use the text of this Exhibit A rather than the text found in the
|
1246
|
+
Original Code Source Code for Your Modifications.]
|