forge-cli 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +6 -0
- data/bin/forge +83 -0
- data/forge-cli.rdoc +5 -0
- data/lib/forge-cli.rb +16 -0
- data/lib/forge-cli/ability_installer.rb +25 -0
- data/lib/forge-cli/application_creator.rb +37 -0
- data/lib/forge-cli/module_installer.rb +100 -0
- data/lib/forge-cli/modules/base/forge_routes.rb +23 -0
- data/lib/forge-cli/modules/base/manifest.yml +133 -0
- data/lib/forge-cli/modules/base/post_hooks.rb +48 -0
- data/lib/forge-cli/modules/base/routes.rb +16 -0
- data/lib/forge-cli/modules/ecommerce/_settings_forge_menu.html +7 -0
- data/lib/forge-cli/modules/ecommerce/manifest.yml +2 -0
- data/lib/forge-cli/post_hooks.rb +13 -0
- data/lib/forge-cli/route_installer.rb +42 -0
- data/lib/forge-cli/version.rb +3 -0
- data/lib/forge/Capfile +8 -0
- data/lib/forge/Gemfile +35 -0
- data/lib/forge/Gemfile.lock +356 -0
- data/lib/forge/Guardfile +30 -0
- data/lib/forge/Rakefile +7 -0
- data/lib/forge/app/abilities/video_ability.rb +11 -0
- data/lib/forge/app/assets/javascripts/app.js +9 -0
- data/lib/forge/app/assets/javascripts/application.js +18 -0
- data/lib/forge/app/assets/javascripts/controllers/index.js +2 -0
- data/lib/forge/app/assets/javascripts/dispatcher.js.coffee +26 -0
- data/lib/forge/app/assets/javascripts/features/checkout.js +51 -0
- data/lib/forge/app/assets/javascripts/features/mobile.js +36 -0
- data/lib/forge/app/assets/javascripts/front.js +11 -0
- data/lib/forge/app/assets/javascripts/mobile/jquery.hint.js +44 -0
- data/lib/forge/app/assets/javascripts/mobile/mobile.js +25 -0
- data/lib/forge/app/assets/stylesheets/application.css.scss +8 -0
- data/lib/forge/app/assets/stylesheets/defaults.css.scss +30 -0
- data/lib/forge/app/assets/stylesheets/flash_messages.css.scss +9 -0
- data/lib/forge/app/assets/stylesheets/mixins.css.scss +100 -0
- data/lib/forge/app/assets/stylesheets/mobile.css.scss +130 -0
- data/lib/forge/app/assets/stylesheets/naturalize.css.scss +162 -0
- data/lib/forge/app/controllers/application_controller.rb +78 -0
- data/lib/forge/app/controllers/comments_controller.rb +35 -0
- data/lib/forge/app/controllers/contact_controller.rb +30 -0
- data/lib/forge/app/controllers/countries_controller.rb +12 -0
- data/lib/forge/app/controllers/dispatch_links_controller.rb +7 -0
- data/lib/forge/app/controllers/dispatches_controller.rb +18 -0
- data/lib/forge/app/controllers/events_controller.rb +47 -0
- data/lib/forge/app/controllers/forge/assets_controller.rb +91 -0
- data/lib/forge/app/controllers/forge/banners_controller.rb +59 -0
- data/lib/forge/app/controllers/forge/comments_controller.rb +58 -0
- data/lib/forge/app/controllers/forge/countries_controller.rb +31 -0
- data/lib/forge/app/controllers/forge/dispatch_clicks_controller.rb +5 -0
- data/lib/forge/app/controllers/forge/dispatches_controller.rb +92 -0
- data/lib/forge/app/controllers/forge/events_controller.rb +47 -0
- data/lib/forge/app/controllers/forge/galleries_controller.rb +55 -0
- data/lib/forge/app/controllers/forge/help_topics_controller.rb +31 -0
- data/lib/forge/app/controllers/forge/index_controller.rb +15 -0
- data/lib/forge/app/controllers/forge/orders_controller.rb +81 -0
- data/lib/forge/app/controllers/forge/pages_controller.rb +83 -0
- data/lib/forge/app/controllers/forge/post_categories_controller.rb +53 -0
- data/lib/forge/app/controllers/forge/posts_controller.rb +76 -0
- data/lib/forge/app/controllers/forge/product_categories_controller.rb +56 -0
- data/lib/forge/app/controllers/forge/products_controller.rb +91 -0
- data/lib/forge/app/controllers/forge/sales_controller.rb +69 -0
- data/lib/forge/app/controllers/forge/settings_controller.rb +26 -0
- data/lib/forge/app/controllers/forge/subscriber_groups_controller.rb +51 -0
- data/lib/forge/app/controllers/forge/subscribers_controller.rb +67 -0
- data/lib/forge/app/controllers/forge/tax_rates_controller.rb +50 -0
- data/lib/forge/app/controllers/forge/users_controller.rb +70 -0
- data/lib/forge/app/controllers/forge/video_feeds_controller.rb +47 -0
- data/lib/forge/app/controllers/forge/videos_controller.rb +83 -0
- data/lib/forge/app/controllers/forge_controller.rb +47 -0
- data/lib/forge/app/controllers/hosted_payment_controller.rb +25 -0
- data/lib/forge/app/controllers/index_controller.rb +22 -0
- data/lib/forge/app/controllers/integrated_payment_controller.rb +36 -0
- data/lib/forge/app/controllers/orders_controller.rb +134 -0
- data/lib/forge/app/controllers/pages_controller.rb +24 -0
- data/lib/forge/app/controllers/posts_controller.rb +63 -0
- data/lib/forge/app/controllers/product_images_controller.rb +2 -0
- data/lib/forge/app/controllers/products_controller.rb +31 -0
- data/lib/forge/app/controllers/sessions_controller.rb +35 -0
- data/lib/forge/app/controllers/subscribers_controller.rb +44 -0
- data/lib/forge/app/form_builders/forge_form_builder.rb +119 -0
- data/lib/forge/app/helpers/application_helper.rb +126 -0
- data/lib/forge/app/helpers/events_helper.rb +13 -0
- data/lib/forge/app/helpers/forge/orders_helper.rb +19 -0
- data/lib/forge/app/helpers/forge/tree_helper.rb +87 -0
- data/lib/forge/app/helpers/forge/video_feeds_helper.rb +11 -0
- data/lib/forge/app/helpers/forge_button_helper.rb +49 -0
- data/lib/forge/app/helpers/forge_helper.rb +132 -0
- data/lib/forge/app/helpers/form_helper.rb +108 -0
- data/lib/forge/app/helpers/mobile_helper.rb +20 -0
- data/lib/forge/app/helpers/orders_helper.rb +12 -0
- data/lib/forge/app/helpers/routes_helper.rb +14 -0
- data/lib/forge/app/mailers/comment_mailer.rb +10 -0
- data/lib/forge/app/mailers/contact_mailer.rb +9 -0
- data/lib/forge/app/mailers/dispatch_mailer.rb +9 -0
- data/lib/forge/app/mailers/receipt_mailer.rb +16 -0
- data/lib/forge/app/mailers/user_mailer.rb +9 -0
- data/lib/forge/app/models/ability.rb +26 -0
- data/lib/forge/app/models/address.rb +21 -0
- data/lib/forge/app/models/asset.rb +75 -0
- data/lib/forge/app/models/banner.rb +11 -0
- data/lib/forge/app/models/comment.rb +64 -0
- data/lib/forge/app/models/comment_observer.rb +9 -0
- data/lib/forge/app/models/comment_subscriber.rb +9 -0
- data/lib/forge/app/models/contact.rb +21 -0
- data/lib/forge/app/models/country.rb +37 -0
- data/lib/forge/app/models/dispatch.rb +68 -0
- data/lib/forge/app/models/dispatch_bounce.rb +2 -0
- data/lib/forge/app/models/dispatch_link.rb +12 -0
- data/lib/forge/app/models/dispatch_link_click.rb +3 -0
- data/lib/forge/app/models/dispatch_open.rb +3 -0
- data/lib/forge/app/models/dispatch_unsubscribe.rb +5 -0
- data/lib/forge/app/models/event.rb +54 -0
- data/lib/forge/app/models/gallery.rb +12 -0
- data/lib/forge/app/models/help_topic.rb +14 -0
- data/lib/forge/app/models/i18n_lookup.rb +13 -0
- data/lib/forge/app/models/line_item.rb +33 -0
- data/lib/forge/app/models/my_settings.rb +5 -0
- data/lib/forge/app/models/order.rb +279 -0
- data/lib/forge/app/models/order_transaction.rb +50 -0
- data/lib/forge/app/models/page.rb +126 -0
- data/lib/forge/app/models/photo.rb +6 -0
- data/lib/forge/app/models/post.rb +55 -0
- data/lib/forge/app/models/post_category.rb +4 -0
- data/lib/forge/app/models/product.rb +60 -0
- data/lib/forge/app/models/product_category.rb +28 -0
- data/lib/forge/app/models/product_image.rb +7 -0
- data/lib/forge/app/models/province.rb +25 -0
- data/lib/forge/app/models/queued_dispatch.rb +36 -0
- data/lib/forge/app/models/role.rb +3 -0
- data/lib/forge/app/models/s3_direct_upload.rb +72 -0
- data/lib/forge/app/models/sale.rb +41 -0
- data/lib/forge/app/models/subscriber.rb +5 -0
- data/lib/forge/app/models/subscriber_group.rb +6 -0
- data/lib/forge/app/models/subscriber_group_member.rb +4 -0
- data/lib/forge/app/models/tax_rate.rb +26 -0
- data/lib/forge/app/models/user.rb +45 -0
- data/lib/forge/app/models/video.rb +97 -0
- data/lib/forge/app/models/video_feed.rb +86 -0
- data/lib/forge/app/sweepers/page_sweeper.rb +11 -0
- data/lib/forge/app/views/comment_mailer/comment_notification.html.haml +7 -0
- data/lib/forge/app/views/comments/_comment.html.haml +12 -0
- data/lib/forge/app/views/comments/_form.html.haml +38 -0
- data/lib/forge/app/views/contact/_form.html.haml +23 -0
- data/lib/forge/app/views/contact/contact.html.haml +4 -0
- data/lib/forge/app/views/contact_mailer/contact.html.haml +17 -0
- data/lib/forge/app/views/devise/confirmations/new.html.erb +12 -0
- data/lib/forge/app/views/devise/confirmations/new.html.haml +0 -0
- data/lib/forge/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/lib/forge/app/views/devise/mailer/confirmation_instructions.html.haml +0 -0
- data/lib/forge/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/lib/forge/app/views/devise/mailer/reset_password_instructions.html.haml +0 -0
- data/lib/forge/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/lib/forge/app/views/devise/mailer/unlock_instructions.html.haml +0 -0
- data/lib/forge/app/views/devise/passwords/edit.html.erb +16 -0
- data/lib/forge/app/views/devise/passwords/edit.html.haml +0 -0
- data/lib/forge/app/views/devise/passwords/new.html.haml +15 -0
- data/lib/forge/app/views/devise/registrations/edit.html.haml +0 -0
- data/lib/forge/app/views/devise/registrations/new.html.haml +22 -0
- data/lib/forge/app/views/devise/sessions/new.html.haml +26 -0
- data/lib/forge/app/views/devise/shared/_links.erb +19 -0
- data/lib/forge/app/views/devise/shared/_links.haml +0 -0
- data/lib/forge/app/views/devise/unlocks/new.html.erb +12 -0
- data/lib/forge/app/views/devise/unlocks/new.html.haml +0 -0
- data/lib/forge/app/views/dispatch_mailer/dispatch.html.haml +4 -0
- data/lib/forge/app/views/events/index_calendar.html.haml +16 -0
- data/lib/forge/app/views/events/index_list.html.haml +9 -0
- data/lib/forge/app/views/events/show.html.haml +16 -0
- data/lib/forge/app/views/forge/assets/_asset.html.haml +12 -0
- data/lib/forge/app/views/forge/assets/_drawer_asset.html.haml +11 -0
- data/lib/forge/app/views/forge/assets/_play_video.html.haml +4 -0
- data/lib/forge/app/views/forge/assets/_upload_progress.html.haml +11 -0
- data/lib/forge/app/views/forge/assets/edit.html.haml +5 -0
- data/lib/forge/app/views/forge/assets/index.html.haml +21 -0
- data/lib/forge/app/views/forge/assets/new.html.haml +15 -0
- data/lib/forge/app/views/forge/assets/place.html.haml +1 -0
- data/lib/forge/app/views/forge/assets/prepare.html.haml +34 -0
- data/lib/forge/app/views/forge/banners/_banner.html.haml +7 -0
- data/lib/forge/app/views/forge/banners/_form.html.haml +36 -0
- data/lib/forge/app/views/forge/banners/edit.html.haml +2 -0
- data/lib/forge/app/views/forge/banners/index.html.haml +16 -0
- data/lib/forge/app/views/forge/banners/new.html.haml +2 -0
- data/lib/forge/app/views/forge/comments/_comment.html.haml +38 -0
- data/lib/forge/app/views/forge/comments/index.html.haml +19 -0
- data/lib/forge/app/views/forge/countries/_active_countries.html.haml +6 -0
- data/lib/forge/app/views/forge/countries/_country_list.html.haml +3 -0
- data/lib/forge/app/views/forge/countries/index.html.haml +62 -0
- data/lib/forge/app/views/forge/dispatch_clicks/index.html.erb +2 -0
- data/lib/forge/app/views/forge/dispatches/_dispatch.html.haml +16 -0
- data/lib/forge/app/views/forge/dispatches/_form.html.haml +27 -0
- data/lib/forge/app/views/forge/dispatches/_header.html.haml +7 -0
- data/lib/forge/app/views/forge/dispatches/_show_nav.html.haml +7 -0
- data/lib/forge/app/views/forge/dispatches/clicks.html.haml +23 -0
- data/lib/forge/app/views/forge/dispatches/edit.html.haml +2 -0
- data/lib/forge/app/views/forge/dispatches/index.html.haml +14 -0
- data/lib/forge/app/views/forge/dispatches/new.html.haml +2 -0
- data/lib/forge/app/views/forge/dispatches/opens.html.haml +22 -0
- data/lib/forge/app/views/forge/dispatches/queue.html.haml +44 -0
- data/lib/forge/app/views/forge/dispatches/show.html.haml +92 -0
- data/lib/forge/app/views/forge/dispatches/unsubscribes.html.haml +23 -0
- data/lib/forge/app/views/forge/events/_event.html.haml +10 -0
- data/lib/forge/app/views/forge/events/_form.html.haml +56 -0
- data/lib/forge/app/views/forge/events/edit.html.haml +4 -0
- data/lib/forge/app/views/forge/events/index.html.haml +14 -0
- data/lib/forge/app/views/forge/events/new.html.haml +5 -0
- data/lib/forge/app/views/forge/galleries/_form.html.haml +31 -0
- data/lib/forge/app/views/forge/galleries/_gallery.html.haml +10 -0
- data/lib/forge/app/views/forge/galleries/_photo.html.haml +3 -0
- data/lib/forge/app/views/forge/galleries/edit.html.haml +4 -0
- data/lib/forge/app/views/forge/galleries/index.html.haml +17 -0
- data/lib/forge/app/views/forge/galleries/new.html.haml +4 -0
- data/lib/forge/app/views/forge/help/index.html.haml +0 -0
- data/lib/forge/app/views/forge/help_topics/_help_nav.html.haml +10 -0
- data/lib/forge/app/views/forge/help_topics/index.html.haml +6 -0
- data/lib/forge/app/views/forge/help_topics/search.html.haml +10 -0
- data/lib/forge/app/views/forge/help_topics/show.html.haml +17 -0
- data/lib/forge/app/views/forge/index/index.html.haml +25 -0
- data/lib/forge/app/views/forge/orders/_addresses.html.haml +18 -0
- data/lib/forge/app/views/forge/orders/_cart.html.haml +42 -0
- data/lib/forge/app/views/forge/orders/_form.html.haml +41 -0
- data/lib/forge/app/views/forge/orders/_order.html.haml +27 -0
- data/lib/forge/app/views/forge/orders/edit.html.haml +2 -0
- data/lib/forge/app/views/forge/orders/index.html.haml +21 -0
- data/lib/forge/app/views/forge/orders/new.html.haml +2 -0
- data/lib/forge/app/views/forge/orders/show.html.haml +21 -0
- data/lib/forge/app/views/forge/pages/_form.html.haml +47 -0
- data/lib/forge/app/views/forge/pages/_page.html.haml +10 -0
- data/lib/forge/app/views/forge/pages/_subpage.html.haml +9 -0
- data/lib/forge/app/views/forge/pages/edit.html.haml +4 -0
- data/lib/forge/app/views/forge/pages/index.html.haml +26 -0
- data/lib/forge/app/views/forge/pages/new.html.haml +4 -0
- data/lib/forge/app/views/forge/post_categories/_form.html.haml +7 -0
- data/lib/forge/app/views/forge/post_categories/_post_category.html.haml +8 -0
- data/lib/forge/app/views/forge/post_categories/edit.html.haml +3 -0
- data/lib/forge/app/views/forge/post_categories/index.html.haml +28 -0
- data/lib/forge/app/views/forge/posts/_form.html.haml +58 -0
- data/lib/forge/app/views/forge/posts/_post.html.haml +17 -0
- data/lib/forge/app/views/forge/posts/edit.html.haml +5 -0
- data/lib/forge/app/views/forge/posts/index.html.haml +14 -0
- data/lib/forge/app/views/forge/posts/new.html.haml +5 -0
- data/lib/forge/app/views/forge/product_categories/_form.html.haml +7 -0
- data/lib/forge/app/views/forge/product_categories/_product_category.html.haml +8 -0
- data/lib/forge/app/views/forge/product_categories/edit.html.haml +2 -0
- data/lib/forge/app/views/forge/product_categories/index.html.haml +32 -0
- data/lib/forge/app/views/forge/products/_form.html.haml +37 -0
- data/lib/forge/app/views/forge/products/_product.html.haml +10 -0
- data/lib/forge/app/views/forge/products/_product_list.html.haml +1 -0
- data/lib/forge/app/views/forge/products/_product_selector.html.haml +11 -0
- data/lib/forge/app/views/forge/products/edit.html.haml +6 -0
- data/lib/forge/app/views/forge/products/index.html.haml +22 -0
- data/lib/forge/app/views/forge/products/modules/_details.html.haml +28 -0
- data/lib/forge/app/views/forge/products/modules/_image.html.haml +3 -0
- data/lib/forge/app/views/forge/products/modules/_images.html.haml +14 -0
- data/lib/forge/app/views/forge/products/modules/_taxes_shipping.html.haml +33 -0
- data/lib/forge/app/views/forge/products/new.html.haml +4 -0
- data/lib/forge/app/views/forge/sales/_form.html.haml +35 -0
- data/lib/forge/app/views/forge/sales/_product.html.haml +2 -0
- data/lib/forge/app/views/forge/sales/_products.html.haml +1 -0
- data/lib/forge/app/views/forge/sales/_sale.html.haml +14 -0
- data/lib/forge/app/views/forge/sales/edit.html.haml +4 -0
- data/lib/forge/app/views/forge/sales/index.html.haml +14 -0
- data/lib/forge/app/views/forge/sales/modules/_details.html.haml +31 -0
- data/lib/forge/app/views/forge/sales/modules/_products.html.haml +62 -0
- data/lib/forge/app/views/forge/sales/new.html.haml +4 -0
- data/lib/forge/app/views/forge/settings/_ecommerce.html.haml +37 -0
- data/lib/forge/app/views/forge/settings/_general.html.haml +39 -0
- data/lib/forge/app/views/forge/settings/_mobile.html.haml +28 -0
- data/lib/forge/app/views/forge/settings/_video_feed.html.haml +37 -0
- data/lib/forge/app/views/forge/settings/show.html.haml +46 -0
- data/lib/forge/app/views/forge/shared/_asset_drawer.html.haml +24 -0
- data/lib/forge/app/views/forge/shared/_menu.html.haml +4 -0
- data/lib/forge/app/views/forge/shared/_new_model_asset.html.haml +12 -0
- data/lib/forge/app/views/forge/shared/_new_model_asset_swfupload.html.haml +2 -0
- data/lib/forge/app/views/forge/shared/_section_footer.html.haml +9 -0
- data/lib/forge/app/views/forge/shared/_section_header.html.haml +16 -0
- data/lib/forge/app/views/forge/shared/_seo_fields.html.haml +21 -0
- data/lib/forge/app/views/forge/shared/_settings_nav.html.haml +6 -0
- data/lib/forge/app/views/forge/shared/menu_items/_assets.html.haml +3 -0
- data/lib/forge/app/views/forge/shared/menu_items/_banners.html.haml +6 -0
- data/lib/forge/app/views/forge/shared/menu_items/_comments.html.haml +2 -0
- data/lib/forge/app/views/forge/shared/menu_items/_dispatches.html.haml +9 -0
- data/lib/forge/app/views/forge/shared/menu_items/_events.html.haml +6 -0
- data/lib/forge/app/views/forge/shared/menu_items/_galleries.html.haml +6 -0
- data/lib/forge/app/views/forge/shared/menu_items/_pages.html.haml +6 -0
- data/lib/forge/app/views/forge/shared/menu_items/_posts.html.haml +7 -0
- data/lib/forge/app/views/forge/shared/menu_items/_products.html.haml +8 -0
- data/lib/forge/app/views/forge/shared/menu_items/_settings.html.haml +2 -0
- data/lib/forge/app/views/forge/shared/menu_items/_users.html.haml +2 -0
- data/lib/forge/app/views/forge/shared/menu_items/_video_feeds.html.haml +5 -0
- data/lib/forge/app/views/forge/shared/menu_items/_videos.html.haml +6 -0
- data/lib/forge/app/views/forge/subscriber_groups/_form.html.haml +6 -0
- data/lib/forge/app/views/forge/subscriber_groups/_subscriber_group.html.haml +12 -0
- data/lib/forge/app/views/forge/subscriber_groups/edit.html.haml +1 -0
- data/lib/forge/app/views/forge/subscriber_groups/index.html.haml +25 -0
- data/lib/forge/app/views/forge/subscriber_groups/new.html.haml +2 -0
- data/lib/forge/app/views/forge/subscribers/_form.html.haml +22 -0
- data/lib/forge/app/views/forge/subscribers/_subscriber.html.haml +12 -0
- data/lib/forge/app/views/forge/subscribers/edit.html.haml +19 -0
- data/lib/forge/app/views/forge/subscribers/index.html.haml +48 -0
- data/lib/forge/app/views/forge/subscribers/new.html.haml +2 -0
- data/lib/forge/app/views/forge/tax_rates/_form.html.haml +25 -0
- data/lib/forge/app/views/forge/tax_rates/_tax_rate.html.haml +12 -0
- data/lib/forge/app/views/forge/tax_rates/edit.html.haml +1 -0
- data/lib/forge/app/views/forge/tax_rates/index.html.haml +34 -0
- data/lib/forge/app/views/forge/users/_form.html.haml +49 -0
- data/lib/forge/app/views/forge/users/_user.html.haml +21 -0
- data/lib/forge/app/views/forge/users/edit.html.haml +2 -0
- data/lib/forge/app/views/forge/users/index.html.haml +21 -0
- data/lib/forge/app/views/forge/users/new.html.haml +2 -0
- data/lib/forge/app/views/forge/video_feeds/_form.html.haml +36 -0
- data/lib/forge/app/views/forge/video_feeds/_video.html.haml +9 -0
- data/lib/forge/app/views/forge/video_feeds/edit.html.haml +2 -0
- data/lib/forge/app/views/forge/video_feeds/index.html.haml +15 -0
- data/lib/forge/app/views/forge/video_feeds/new.html.haml +2 -0
- data/lib/forge/app/views/forge/videos/_form.html.haml +43 -0
- data/lib/forge/app/views/forge/videos/_play.html.haml +4 -0
- data/lib/forge/app/views/forge/videos/_video.html.haml +30 -0
- data/lib/forge/app/views/forge/videos/edit.html.haml +2 -0
- data/lib/forge/app/views/forge/videos/index.html.haml +14 -0
- data/lib/forge/app/views/forge/videos/new.html.haml +2 -0
- data/lib/forge/app/views/hosted_payment/_paypal.html.haml +34 -0
- data/lib/forge/app/views/hosted_payment/billing.html.haml +11 -0
- data/lib/forge/app/views/index/index.html.haml +167 -0
- data/lib/forge/app/views/index/sitemap.html.haml +5 -0
- data/lib/forge/app/views/index/sitemap.xml.haml +25 -0
- data/lib/forge/app/views/integrated_payment/_credit_card_form.html.haml +45 -0
- data/lib/forge/app/views/integrated_payment/billing.html.haml +32 -0
- data/lib/forge/app/views/layouts/application.html.haml +26 -0
- data/lib/forge/app/views/layouts/application.mobile.haml +52 -0
- data/lib/forge/app/views/layouts/forge.html.haml +71 -0
- data/lib/forge/app/views/layouts/forge_login.html.haml +18 -0
- data/lib/forge/app/views/mobile/_comment.mobile.haml +10 -0
- data/lib/forge/app/views/mobile/_comment_form.mobile.haml +26 -0
- data/lib/forge/app/views/mobile/_navigation.mobile.haml +12 -0
- data/lib/forge/app/views/mobile/contact.mobile.haml +13 -0
- data/lib/forge/app/views/mobile/index.mobile.haml +3 -0
- data/lib/forge/app/views/mobile/page.mobile.haml +7 -0
- data/lib/forge/app/views/mobile/post.mobile.haml +24 -0
- data/lib/forge/app/views/mobile/posts.mobile.haml +12 -0
- data/lib/forge/app/views/orders/_address_form.html.haml +17 -0
- data/lib/forge/app/views/orders/_cart.html.haml +26 -0
- data/lib/forge/app/views/orders/_cart_items.html.haml +20 -0
- data/lib/forge/app/views/orders/_cart_wrapper.html.haml +5 -0
- data/lib/forge/app/views/orders/_coupon.html.haml +6 -0
- data/lib/forge/app/views/orders/_display_address.html.haml +13 -0
- data/lib/forge/app/views/orders/_order_details.html.haml +8 -0
- data/lib/forge/app/views/orders/_summary.html.haml +13 -0
- data/lib/forge/app/views/orders/cancel.html.haml +2 -0
- data/lib/forge/app/views/orders/checkout.html.haml +94 -0
- data/lib/forge/app/views/orders/edit_cart.html.haml +59 -0
- data/lib/forge/app/views/orders/paid.html.haml +14 -0
- data/lib/forge/app/views/pages/show.html.haml +4 -0
- data/lib/forge/app/views/posts/_archive_months.html.haml +5 -0
- data/lib/forge/app/views/posts/_categories.html.haml +6 -0
- data/lib/forge/app/views/posts/feed.rss.haml +18 -0
- data/lib/forge/app/views/posts/index.html.haml +23 -0
- data/lib/forge/app/views/posts/show.html.haml +23 -0
- data/lib/forge/app/views/products/_add_form.html.haml +8 -0
- data/lib/forge/app/views/products/_products.js.haml +24 -0
- data/lib/forge/app/views/products/complete.html.haml +4 -0
- data/lib/forge/app/views/products/index.html.haml +11 -0
- data/lib/forge/app/views/products/show.html.haml +36 -0
- data/lib/forge/app/views/receipt_mailer/receipt.html.haml +18 -0
- data/lib/forge/app/views/subscribers/index.html.haml +22 -0
- data/lib/forge/app/views/user_mailer/approved.html.haml +3 -0
- data/lib/forge/config.ru +4 -0
- data/lib/forge/config/application.rb +61 -0
- data/lib/forge/config/boot.rb +6 -0
- data/lib/forge/config/environment.rb +5 -0
- data/lib/forge/config/environments/development.rb +45 -0
- data/lib/forge/config/environments/production.rb +62 -0
- data/lib/forge/config/environments/test.rb +45 -0
- data/lib/forge/config/ferret_server.yml +24 -0
- data/lib/forge/config/google_sitemap.yml +7 -0
- data/lib/forge/config/i18n_fields.yml +47 -0
- data/lib/forge/config/initializers/backtrace_silencers.rb +7 -0
- data/lib/forge/config/initializers/can_be_foreign.rb +15 -0
- data/lib/forge/config/initializers/can_have_comments.rb +16 -0
- data/lib/forge/config/initializers/can_use_asset.rb +50 -0
- data/lib/forge/config/initializers/ckeditor.rb +147 -0
- data/lib/forge/config/initializers/class_extensions/hash.rb +10 -0
- data/lib/forge/config/initializers/devise.rb +146 -0
- data/lib/forge/config/initializers/ecommerce.rb +5 -0
- data/lib/forge/config/initializers/generators.rb +4 -0
- data/lib/forge/config/initializers/inflections.rb +23 -0
- data/lib/forge/config/initializers/mime_types.rb +5 -0
- data/lib/forge/config/initializers/reorderable.rb +16 -0
- data/lib/forge/config/initializers/secret_token.rb +17 -0
- data/lib/forge/config/initializers/session_store.rb +8 -0
- data/lib/forge/config/initializers/validators.rb +7 -0
- data/lib/forge/config/locales/devise.en.yml +40 -0
- data/lib/forge/config/locales/en.yml +5 -0
- data/lib/forge/config/routes.rb +200 -0
- data/lib/forge/config/s3.yml.template +19 -0
- data/lib/forge/config/settings.yml +8 -0
- data/lib/forge/config/settings.yml.template +88 -0
- data/lib/forge/config/sitemap.yml +7 -0
- data/lib/forge/db/help/assets_index.help +18 -0
- data/lib/forge/db/help/comments_index.help +6 -0
- data/lib/forge/db/help/pages_index.help +11 -0
- data/lib/forge/db/help/pages_new.help +11 -0
- data/lib/forge/db/help/posts_index.help +11 -0
- data/lib/forge/db/help/posts_new.help +10 -0
- data/lib/forge/db/help/products_new.help +50 -0
- data/lib/forge/db/help/visual_editor.help +165 -0
- data/lib/forge/db/migrate/20130404140735_create_assets.rb +24 -0
- data/lib/forge/db/migrate/20130404141259_create_comments.rb +40 -0
- data/lib/forge/db/migrate/20130404142157_create_help_topics.rb +18 -0
- data/lib/forge/db/migrate/20130404143601_create_settings.rb +18 -0
- data/lib/forge/db/migrate/20130404145209_create_roles.rb +22 -0
- data/lib/forge/db/migrate/20130404145329_create_taggings.rb +25 -0
- data/lib/forge/db/migrate/20130404151730_create_users.rb +30 -0
- data/lib/forge/db/migrate/20130405172022_create_pages.rb +35 -0
- data/lib/forge/db/schema.rb +603 -0
- data/lib/forge/db/seeds.rb +344 -0
- data/lib/forge/doc/README_FOR_APP +2 -0
- data/lib/forge/doc/i18n.md +92 -0
- data/lib/forge/lib/active_form.rb +12 -0
- data/lib/forge/lib/assets/images/forge/ajax-loader-dialog.gif +0 -0
- data/lib/forge/lib/assets/images/forge/ajax-loader.gif +0 -0
- data/lib/forge/lib/assets/images/forge/asset-icons/audio.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/asset-icons/misc.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/asset-icons/pdf.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/asset-icons/presentation.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/asset-icons/spreadsheet.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/asset-icons/text.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/asset-icons/video.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/bg-form-gradient.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/bg-pagination-active.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/bg-search.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/bg-shadow-login.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/bg-shadow.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/bg-tile.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/browse-alt.png +0 -0
- data/lib/forge/lib/assets/images/forge/browse.png +0 -0
- data/lib/forge/lib/assets/images/forge/button-cancel.gif +0 -0
- data/lib/forge/lib/assets/images/forge/buttons/bg-button.png +0 -0
- data/lib/forge/lib/assets/images/forge/buttons/forge-menu-arrows.png +0 -0
- data/lib/forge/lib/assets/images/forge/buttons/icon-button.png +0 -0
- data/lib/forge/lib/assets/images/forge/crumb-arrow.png +0 -0
- data/lib/forge/lib/assets/images/forge/down-arrow.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/drawer-close.png +0 -0
- data/lib/forge/lib/assets/images/forge/drawer-tile.gif +0 -0
- data/lib/forge/lib/assets/images/forge/file-processing.gif +0 -0
- data/lib/forge/lib/assets/images/forge/forge-loader.gif +0 -0
- data/lib/forge/lib/assets/images/forge/help/alignment.png +0 -0
- data/lib/forge/lib/assets/images/forge/help/bold_italicize_underline.png +0 -0
- data/lib/forge/lib/assets/images/forge/help/bullets.png +0 -0
- data/lib/forge/lib/assets/images/forge/help/html.png +0 -0
- data/lib/forge/lib/assets/images/forge/help/hyperlinks.png +0 -0
- data/lib/forge/lib/assets/images/forge/help/image_size_1.png +0 -0
- data/lib/forge/lib/assets/images/forge/help/image_size_2.png +0 -0
- data/lib/forge/lib/assets/images/forge/help/image_size_2b.png +0 -0
- data/lib/forge/lib/assets/images/forge/help/link_popup.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/help/link_slug.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/help/media.png +0 -0
- data/lib/forge/lib/assets/images/forge/help/prepare.png +0 -0
- data/lib/forge/lib/assets/images/forge/help/word.png +0 -0
- data/lib/forge/lib/assets/images/forge/hr.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/icons/checkmark.png +0 -0
- data/lib/forge/lib/assets/images/forge/icons/delete.png +0 -0
- data/lib/forge/lib/assets/images/forge/icons/edit.png +0 -0
- data/lib/forge/lib/assets/images/forge/icons/gear-alt.png +0 -0
- data/lib/forge/lib/assets/images/forge/icons/gear.png +0 -0
- data/lib/forge/lib/assets/images/forge/icons/image_new.gif +0 -0
- data/lib/forge/lib/assets/images/forge/icons/index-icons.png +0 -0
- data/lib/forge/lib/assets/images/forge/icons/laptop.png +0 -0
- data/lib/forge/lib/assets/images/forge/icons/left-arrow.png +0 -0
- data/lib/forge/lib/assets/images/forge/icons/nay.png +0 -0
- data/lib/forge/lib/assets/images/forge/icons/plus.png +0 -0
- data/lib/forge/lib/assets/images/forge/icons/right-arrow.png +0 -0
- data/lib/forge/lib/assets/images/forge/icons/thumbdown.png +0 -0
- data/lib/forge/lib/assets/images/forge/icons/thumbup.png +0 -0
- data/lib/forge/lib/assets/images/forge/icons/trash.png +0 -0
- data/lib/forge/lib/assets/images/forge/icons/yay.png +0 -0
- data/lib/forge/lib/assets/images/forge/image_new.gif +0 -0
- data/lib/forge/lib/assets/images/forge/input-overlay.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/item-bg.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/loader-bar.gif +0 -0
- data/lib/forge/lib/assets/images/forge/logo-big.png +0 -0
- data/lib/forge/lib/assets/images/forge/logo.png +0 -0
- data/lib/forge/lib/assets/images/forge/read-meter-bg.png +0 -0
- data/lib/forge/lib/assets/images/forge/scroll-bar-bg.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/scroll-drag-bg.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/sent-meter-bg.png +0 -0
- data/lib/forge/lib/assets/images/forge/separator-sm.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/sidebar-bg.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/slider-bg.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/slider-button.png +0 -0
- data/lib/forge/lib/assets/images/forge/slider-left.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/slider-right.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/submenu-bg.jpg +0 -0
- data/lib/forge/lib/assets/images/forge/ui/ui-bg_diagonals-thick_90_eeeeee_40x40.png +0 -0
- data/lib/forge/lib/assets/images/forge/ui/ui-bg_flat_15_cd0a0a_40x100.png +0 -0
- data/lib/forge/lib/assets/images/forge/ui/ui-bg_glass_100_e4f1fb_1x400.png +0 -0
- data/lib/forge/lib/assets/images/forge/ui/ui-bg_glass_50_3baae3_1x400.png +0 -0
- data/lib/forge/lib/assets/images/forge/ui/ui-bg_glass_80_d7ebf9_1x400.png +0 -0
- data/lib/forge/lib/assets/images/forge/ui/ui-bg_highlight-hard_100_f2f5f7_1x100.png +0 -0
- data/lib/forge/lib/assets/images/forge/ui/ui-bg_highlight-hard_70_000000_1x100.png +0 -0
- data/lib/forge/lib/assets/images/forge/ui/ui-bg_highlight-soft_100_deedf7_1x100.png +0 -0
- data/lib/forge/lib/assets/images/forge/ui/ui-bg_highlight-soft_25_ffef8f_1x100.png +0 -0
- data/lib/forge/lib/assets/images/forge/ui/ui-icons_2694e8_256x240.png +0 -0
- data/lib/forge/lib/assets/images/forge/ui/ui-icons_2e83ff_256x240.png +0 -0
- data/lib/forge/lib/assets/images/forge/ui/ui-icons_3d80b3_256x240.png +0 -0
- data/lib/forge/lib/assets/images/forge/ui/ui-icons_72a7cf_256x240.png +0 -0
- data/lib/forge/lib/assets/images/forge/ui/ui-icons_ffffff_256x240.png +0 -0
- data/lib/forge/lib/assets/images/forge/vimeo-address-bar.jpg +0 -0
- data/lib/forge/lib/assets/images/mobile/arrow-nav.png +0 -0
- data/lib/forge/lib/assets/images/mobile/arrow.png +0 -0
- data/lib/forge/lib/assets/images/mobile/expand.png +0 -0
- data/lib/forge/lib/assets/javascripts/forge/features/asset_dialog.js.erb +89 -0
- data/lib/forge/lib/assets/javascripts/forge/features/asset_drawer.js.erb +177 -0
- data/lib/forge/lib/assets/javascripts/forge/features/asset_uploads.js.erb +130 -0
- data/lib/forge/lib/assets/javascripts/forge/features/assets.js +18 -0
- data/lib/forge/lib/assets/javascripts/forge/features/buttons.js.erb +40 -0
- data/lib/forge/lib/assets/javascripts/forge/features/comments.js.erb +65 -0
- data/lib/forge/lib/assets/javascripts/forge/features/compact_form.js.erb +19 -0
- data/lib/forge/lib/assets/javascripts/forge/features/date_format.js +125 -0
- data/lib/forge/lib/assets/javascripts/forge/features/dispatch.js +58 -0
- data/lib/forge/lib/assets/javascripts/forge/features/file_select_widget.js.erb +39 -0
- data/lib/forge/lib/assets/javascripts/forge/features/forms.js.erb +42 -0
- data/lib/forge/lib/assets/javascripts/forge/features/help.js.erb +121 -0
- data/lib/forge/lib/assets/javascripts/forge/features/home_page.js +10 -0
- data/lib/forge/lib/assets/javascripts/forge/features/i18n.js +10 -0
- data/lib/forge/lib/assets/javascripts/forge/features/loading.js.erb +7 -0
- data/lib/forge/lib/assets/javascripts/forge/features/main_menu.js.erb +46 -0
- data/lib/forge/lib/assets/javascripts/forge/features/nested_fields.js +83 -0
- data/lib/forge/lib/assets/javascripts/forge/features/nested_lists.js +10 -0
- data/lib/forge/lib/assets/javascripts/forge/features/notifications.js +28 -0
- data/lib/forge/lib/assets/javascripts/forge/features/pages.js +16 -0
- data/lib/forge/lib/assets/javascripts/forge/features/s3_direct_upload.js.coffee +43 -0
- data/lib/forge/lib/assets/javascripts/forge/features/settings.js +25 -0
- data/lib/forge/lib/assets/javascripts/forge/features/video_feeds.js +8 -0
- data/lib/forge/lib/assets/javascripts/forge/features/videos.js.erb +62 -0
- data/lib/forge/lib/assets/javascripts/forge/forge.js +51 -0
- data/lib/forge/lib/assets/javascripts/forge/forge_manifest.js.erb +22 -0
- data/lib/forge/lib/assets/javascripts/forge/login.js.erb +7 -0
- data/lib/forge/lib/assets/stylesheets/forge/assets.css.scss +39 -0
- data/lib/forge/lib/assets/stylesheets/forge/buttons.css.scss +43 -0
- data/lib/forge/lib/assets/stylesheets/forge/countries.css.scss +8 -0
- data/lib/forge/lib/assets/stylesheets/forge/defaults.css.scss +21 -0
- data/lib/forge/lib/assets/stylesheets/forge/dispatches.css.scss +29 -0
- data/lib/forge/lib/assets/stylesheets/forge/flash_messages.css.scss +13 -0
- data/lib/forge/lib/assets/stylesheets/forge/fonts.css.scss +7 -0
- data/lib/forge/lib/assets/stylesheets/forge/forge.css.scss +42 -0
- data/lib/forge/lib/assets/stylesheets/forge/forge.ui.css.scss +384 -0
- data/lib/forge/lib/assets/stylesheets/forge/forms.css.scss +92 -0
- data/lib/forge/lib/assets/stylesheets/forge/help.css.scss +13 -0
- data/lib/forge/lib/assets/stylesheets/forge/i18n.css.scss +7 -0
- data/lib/forge/lib/assets/stylesheets/forge/layout.css.scss +45 -0
- data/lib/forge/lib/assets/stylesheets/forge/lists.css.scss +137 -0
- data/lib/forge/lib/assets/stylesheets/forge/loading.css.scss +6 -0
- data/lib/forge/lib/assets/stylesheets/forge/login.css.scss +38 -0
- data/lib/forge/lib/assets/stylesheets/forge/main_menu.css.scss +49 -0
- data/lib/forge/lib/assets/stylesheets/forge/orders.css.scss +17 -0
- data/lib/forge/lib/assets/stylesheets/forge/radio_slider.css.scss +14 -0
- data/lib/forge/lib/daemon.rb +74 -0
- data/lib/forge/lib/forge.rb +7 -0
- data/lib/forge/lib/forge/credit_card_processor.rb +93 -0
- data/lib/forge/lib/forge/recipes.rb +6 -0
- data/lib/forge/lib/forge/s3_signature.rb +216 -0
- data/lib/forge/lib/forge/settings.rb +4 -0
- data/lib/forge/lib/generators/forge/i18n_migrations/i18n_migrations_generator.rb +30 -0
- data/lib/forge/lib/generators/forge/i18n_migrations/templates/migration.rb +14 -0
- data/lib/forge/lib/generators/forge/scaffold/USAGE +8 -0
- data/lib/forge/lib/generators/forge/scaffold/scaffold_generator.rb +64 -0
- data/lib/forge/lib/generators/forge/scaffold/templates/controller.rb +73 -0
- data/lib/forge/lib/generators/forge/scaffold/templates/controller_spec.rb +215 -0
- data/lib/forge/lib/generators/forge/scaffold/templates/menu_section.html.haml +6 -0
- data/lib/forge/lib/generators/forge/scaffold/templates/view__form.html.haml +43 -0
- data/lib/forge/lib/generators/forge/scaffold/templates/view__item.html.haml +7 -0
- data/lib/forge/lib/generators/forge/scaffold/templates/view_edit.html.haml +4 -0
- data/lib/forge/lib/generators/forge/scaffold/templates/view_index.html.haml +17 -0
- data/lib/forge/lib/generators/forge/scaffold/templates/view_new.html.haml +5 -0
- data/lib/forge/lib/generators/forge/scaffold_small/scaffold_small_generator.rb +8 -0
- data/lib/forge/lib/generators/forge/scaffold_small/templates/controller.rb +80 -0
- data/lib/forge/lib/generators/forge/scaffold_small/templates/controller_spec.rb +193 -0
- data/lib/forge/lib/generators/forge/scaffold_small/templates/menu_section.html.haml +6 -0
- data/lib/forge/lib/generators/forge/scaffold_small/templates/view__form.html.haml +27 -0
- data/lib/forge/lib/generators/forge/scaffold_small/templates/view__item.html.haml +8 -0
- data/lib/forge/lib/generators/forge/scaffold_small/templates/view_edit.html.haml +1 -0
- data/lib/forge/lib/generators/forge/scaffold_small/templates/view_index.html.haml +35 -0
- data/lib/forge/lib/generators/forge/scaffold_small/templates/view_new.html.haml +1 -0
- data/lib/forge/lib/models/order/payment_methods.rb +85 -0
- data/lib/forge/lib/recipes/aaf_recipes.rb +114 -0
- data/lib/forge/lib/tasks/forge.rake +147 -0
- data/lib/forge/lib/templates/active_record/model/model.rb +41 -0
- data/lib/forge/public/404.html +26 -0
- data/lib/forge/public/422.html +26 -0
- data/lib/forge/public/500.html +25 -0
- data/lib/forge/public/favicon.ico +0 -0
- data/lib/forge/public/flash/swfupload.swf +0 -0
- data/lib/forge/public/images/mastercard.gif +0 -0
- data/lib/forge/public/images/visa.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/CHANGES.html +923 -0
- data/lib/forge/public/javascripts/ckeditor/INSTALL.html +92 -0
- data/lib/forge/public/javascripts/ckeditor/LICENSE.html +1334 -0
- data/lib/forge/public/javascripts/ckeditor/_source/adapters/jquery.js +297 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/_bootstrap.js +91 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/ajax.js +143 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/ckeditor.js +113 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/ckeditor_base.js +193 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/ckeditor_basic.js +242 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/command.js +73 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/commanddefinition.js +102 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/config.js +405 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/dataprocessor.js +66 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/dom.js +21 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/dom/comment.js +32 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/dom/document.js +224 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/dom/documentfragment.js +49 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/dom/domobject.js +251 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/dom/element.js +1556 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/dom/elementpath.js +116 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/dom/event.js +142 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/dom/node.js +683 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/dom/nodelist.js +23 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/dom/range.js +1880 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/dom/rangelist.js +163 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/dom/text.js +123 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/dom/walker.js +445 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/dom/window.js +96 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/dtd.js +233 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/editor.js +759 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/editor_basic.js +182 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/env.js +229 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/event.js +336 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/eventInfo.js +120 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/focusmanager.js +137 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/htmlparser.js +218 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/htmlparser/cdata.js +43 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/htmlparser/comment.js +60 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/htmlparser/element.js +240 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/htmlparser/filter.js +288 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/htmlparser/fragment.js +497 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/htmlparser/text.js +55 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/imagecacher.js +59 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/lang.js +152 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/loader.js +243 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/plugindefinition.js +66 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/plugins.js +85 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/resourcemanager.js +238 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/scriptloader.js +198 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/skins.js +204 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/themes.js +19 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/tools.js +747 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/ui.js +116 -0
- data/lib/forge/public/javascripts/ckeditor/_source/core/xml.js +165 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/_languages.js +83 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/_translationstatus.txt +60 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/af.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/ar.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/bg.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/bn.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/bs.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/ca.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/cs.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/cy.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/da.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/de.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/el.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/en-au.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/en-ca.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/en-gb.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/en.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/eo.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/es.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/et.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/eu.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/fa.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/fi.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/fo.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/fr-ca.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/fr.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/gl.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/gu.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/he.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/hi.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/hr.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/hu.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/is.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/it.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/ja.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/km.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/ko.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/lt.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/lv.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/mn.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/ms.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/nb.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/nl.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/no.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/pl.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/pt-br.js +757 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/pt.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/ro.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/ru.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/sk.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/sl.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/sr-latn.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/sr.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/sv.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/th.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/tr.js +757 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/uk.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/vi.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/zh-cn.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/lang/zh.js +758 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +211 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/a11yhelp/lang/he.js +216 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/a11yhelp/plugin.js +46 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/about/dialogs/about.js +73 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/about/plugin.js +23 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/ajax_save/plugin.js +43 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/dialogs/attachment.js +384 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/images/attachment.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/lang/en.js +10 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/lang/ru.js +10 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/lang/uk.js +10 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js +44 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/autogrow/plugin.js +79 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/basicstyles/plugin.js +101 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/bidi/plugin.js +247 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/blockquote/plugin.js +301 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/button/plugin.js +277 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/clipboard/dialogs/paste.js +205 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/clipboard/plugin.js +412 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/colorbutton/plugin.js +251 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +340 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/colordialog/plugin.js +13 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/contextmenu/plugin.js +276 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/dialog/dialogDefinition.js +315 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/dialog/plugin.js +3016 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/dialogadvtab/plugin.js +207 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/dialogui/plugin.js +1522 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/div/dialogs/div.js +535 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/div/plugin.js +121 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/domiterator/plugin.js +350 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/editingblock/plugin.js +230 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/elementspath/plugin.js +206 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/embed/dialogs/embed.js +65 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/embed/images/embed.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/embed/lang/en.js +9 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/embed/lang/ru.js +9 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/embed/lang/uk.js +9 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/embed/plugin.js +43 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/enterkey/plugin.js +363 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/entities/plugin.js +227 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/fakeobjects/plugin.js +122 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/filebrowser/plugin.js +491 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/find/dialogs/find.js +885 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/find/plugin.js +46 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/flash/dialogs/flash.js +698 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/flash/images/placeholder.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/flash/plugin.js +174 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/floatpanel/plugin.js +398 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/font/plugin.js +234 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/format/plugin.js +194 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/dialogs/button.js +135 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/dialogs/checkbox.js +155 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/dialogs/form.js +177 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js +98 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/dialogs/radio.js +135 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/dialogs/select.js +556 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/dialogs/textarea.js +114 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/dialogs/textfield.js +199 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/images/hiddenfield.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/plugin.js +281 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/horizontalrule/plugin.js +36 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/htmldataprocessor/plugin.js +494 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/htmlwriter/plugin.js +314 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/iframedialog/plugin.js +136 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/image/dialogs/image.js +1396 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/image/plugin.js +81 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/indent/plugin.js +447 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/justify/plugin.js +190 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/keystrokes/plugin.js +229 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/link/dialogs/anchor.js +99 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/link/dialogs/link.js +1420 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/link/images/anchor.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/link/plugin.js +238 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/list/plugin.js +683 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/listblock/plugin.js +257 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +203 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/liststyle/plugin.js +66 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/maximize/plugin.js +343 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/menu/plugin.js +409 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/menubutton/plugin.js +94 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/newpage/plugin.js +54 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/pagebreak/plugin.js +121 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/panel/plugin.js +398 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/panelbutton/plugin.js +147 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/pastefromword/filter/default.js +1170 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/pastefromword/plugin.js +122 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +70 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/pastetext/plugin.js +145 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/popup/plugin.js +64 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/preview/plugin.js +108 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/print/plugin.js +41 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/removeformat/plugin.js +184 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/resize/plugin.js +157 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/richcombo/plugin.js +370 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/save/plugin.js +55 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/scayt/dialogs/options.js +533 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/scayt/dialogs/toolbar.css +71 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/scayt/plugin.js +943 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/selection/plugin.js +1367 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_address.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_blockquote.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_div.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h1.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h2.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h3.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h4.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h5.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h6.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_p.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_pre.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/plugin.js +156 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/showborders/plugin.js +201 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/dialogs/smiley.js +216 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/angel_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/angry_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/broken_heart.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/confused_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/cry_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/devil_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/envelope.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/heart.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/kiss.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/lightbulb.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/omg_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/regular_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/sad_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/shades_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/teeth_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/thumbs_down.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/thumbs_up.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/tounge_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/wink_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/plugin.js +94 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/sourcearea/plugin.js +207 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js +409 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/specialchar/plugin.js +29 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/styles/plugin.js +1445 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/styles/styles/default.js +88 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/stylescombo/plugin.js +207 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/tab/plugin.js +367 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/table/dialogs/table.js +673 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/table/plugin.js +78 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/tableresize/plugin.js +450 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +533 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/tabletools/plugin.js +1120 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/templates/dialogs/templates.js +231 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/templates/plugin.js +100 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/templates/templates/default.js +94 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/templates/templates/images/template1.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/templates/templates/images/template2.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/templates/templates/images/template3.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/toolbar/plugin.js +481 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js +205 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/lang/en.js +15 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/plugin.js +37 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/uicolor.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/yui.css +15 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/yui/yui.js +71 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/undo/plugin.js +555 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/wsc/dialogs/ciframe.html +49 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html +52 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/wsc/dialogs/wsc.css +82 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/wsc/dialogs/wsc.js +176 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/wsc/plugin.js +33 -0
- data/lib/forge/public/javascripts/ckeditor/_source/plugins/wysiwygarea/plugin.js +1126 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/dialog.css +856 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/editor.css +25 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/elementspath.css +73 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/icons.css +357 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/icons.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/icons_rtl.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/images/mini.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/images/noimage.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/images/sprites.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/mainui.css +195 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/menu.css +202 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/panel.css +217 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/presets.css +49 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/reset.css +84 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/richcombo.css +277 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/skin.js +268 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/templates.css +88 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/toolbar.css +409 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/dialog.css +765 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/editor.css +25 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/elementspath.css +74 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/icons.css +354 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/icons.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/icons_rtl.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/images/dialog_sides.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/images/dialog_sides.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/images/mini.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/images/noimage.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/images/sprites.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/images/sprites_ie6.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/mainui.css +145 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/menu.css +199 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/panel.css +212 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/presets.css +49 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/reset.css +84 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/richcombo.css +297 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/skin.js +81 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/templates.css +87 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/toolbar.css +470 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/dialog.css +780 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/editor.css +25 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/elementspath.css +74 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/icons.css +354 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/icons.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/icons_rtl.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/images/dialog_sides.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/images/dialog_sides.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/images/mini.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/images/noimage.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/images/sprites.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/images/sprites_ie6.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/images/toolbar_start.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/mainui.css +154 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/menu.css +201 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/panel.css +212 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/presets.css +50 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/reset.css +84 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/richcombo.css +297 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/skin.js +77 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/templates.css +87 -0
- data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/toolbar.css +423 -0
- data/lib/forge/public/javascripts/ckeditor/_source/themes/default/theme.js +356 -0
- data/lib/forge/public/javascripts/ckeditor/adapters/jquery.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/ckeditor.js +135 -0
- data/lib/forge/public/javascripts/ckeditor/ckeditor.pack +211 -0
- data/lib/forge/public/javascripts/ckeditor/ckeditor_basic.js +8 -0
- data/lib/forge/public/javascripts/ckeditor/ckeditor_basic_source.js +20 -0
- data/lib/forge/public/javascripts/ckeditor/ckeditor_source.js +25 -0
- data/lib/forge/public/javascripts/ckeditor/config.js +45 -0
- data/lib/forge/public/javascripts/ckeditor/contents.css +35 -0
- data/lib/forge/public/javascripts/ckeditor/css/ckfinder.css +299 -0
- data/lib/forge/public/javascripts/ckeditor/css/fck_dialog.css +119 -0
- data/lib/forge/public/javascripts/ckeditor/css/fck_editor.css +448 -0
- data/lib/forge/public/javascripts/ckeditor/css/swfupload.css +94 -0
- data/lib/forge/public/javascripts/ckeditor/images/add.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/images/cancelbutton.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/images/ckfnothumb.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/images/doc.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/images/image_new.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/images/mp3.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/images/pdf.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/images/rar.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/images/refresh.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/images/select_files.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/images/spacer.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/images/swf.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/images/toolbar.start.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/images/xls.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/lang/_languages.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/_translationstatus.txt +60 -0
- data/lib/forge/public/javascripts/ckeditor/lang/af.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/ar.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/bg.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/bn.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/bs.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/ca.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/cs.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/cy.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/da.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/de.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/el.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/en-au.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/en-ca.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/en-gb.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/en.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/eo.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/es.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/et.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/eu.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/fa.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/fi.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/fo.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/fr-ca.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/fr.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/gl.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/gu.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/he.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/hi.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/hr.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/hu.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/is.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/it.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/ja.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/km.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/ko.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/lt.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/lv.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/mn.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/ms.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/nb.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/nl.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/no.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/pl.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/pt-br.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/pt.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/ro.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/ru.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/sk.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/sl.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/sr-latn.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/sr.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/sv.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/th.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/tr.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/uk.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/vi.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/zh-cn.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/lang/zh.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +7 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/a11yhelp/lang/en.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/a11yhelp/lang/he.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/about/dialogs/about.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/ajax_save/plugin.js +1 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/attachment/dialogs/attachment.js +1 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/attachment/images/attachment.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/attachment/lang/en.js +10 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/attachment/lang/ru.js +10 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/attachment/lang/uk.js +10 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/attachment/plugin.js +1 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/autogrow/plugin.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/clipboard/dialogs/paste.js +7 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/colordialog/dialogs/colordialog.js +7 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/div/dialogs/div.js +8 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/embed/dialogs/embed.js +1 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/embed/images/embed.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/embed/lang/en.js +9 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/embed/lang/ru.js +9 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/embed/lang/uk.js +9 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/embed/plugin.js +1 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/find/dialogs/find.js +9 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/flash/dialogs/flash.js +9 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/flash/images/placeholder.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/forge_assets/plugin.js +10 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/forms/dialogs/button.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/forms/dialogs/checkbox.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/forms/dialogs/form.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/forms/dialogs/hiddenfield.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/forms/dialogs/radio.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/forms/dialogs/select.js +9 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/forms/dialogs/textarea.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/forms/dialogs/textfield.js +7 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/forms/images/hiddenfield.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/iframedialog/plugin.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/image/dialogs/image.js +13 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/link/dialogs/anchor.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/link/dialogs/link.js +11 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/link/images/anchor.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/liststyle/dialogs/liststyle.js +7 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/pastefromword/filter/default.js +10 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/pastetext/dialogs/pastetext.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/scayt/dialogs/options.js +8 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/scayt/dialogs/toolbar.css +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_address.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_div.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_p.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/dialogs/smiley.js +7 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/envelope.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/heart.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/kiss.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/specialchar/dialogs/specialchar.js +7 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/styles/styles/default.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/table/dialogs/table.js +9 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/tableresize/plugin.js +7 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/tabletools/dialogs/tableCell.js +8 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/templates/dialogs/templates.js +7 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/templates/templates/default.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/dialogs/uicolor.js +7 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/lang/en.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/plugin.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/uicolor.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/yui/assets/yui.css +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/yui/yui.js +76 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/wsc/dialogs/wsc.css +6 -0
- data/lib/forge/public/javascripts/ckeditor/plugins/wsc/dialogs/wsc.js +7 -0
- data/lib/forge/public/javascripts/ckeditor/skins/kama/dialog.css +9 -0
- data/lib/forge/public/javascripts/ckeditor/skins/kama/editor.css +12 -0
- data/lib/forge/public/javascripts/ckeditor/skins/kama/icons.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/kama/icons_rtl.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/kama/images/dialog_sides.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/kama/images/dialog_sides.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/kama/images/mini.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/kama/images/noimage.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/kama/images/sprites.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/kama/images/sprites_ie6.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/kama/images/toolbar_start.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/kama/skin.js +7 -0
- data/lib/forge/public/javascripts/ckeditor/skins/kama/templates.css +6 -0
- data/lib/forge/public/javascripts/ckeditor/skins/office2003/dialog.css +9 -0
- data/lib/forge/public/javascripts/ckeditor/skins/office2003/editor.css +13 -0
- data/lib/forge/public/javascripts/ckeditor/skins/office2003/icons.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/office2003/icons_rtl.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/office2003/images/dialog_sides.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/office2003/images/dialog_sides.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/office2003/images/dialog_sides_rtl.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/office2003/images/mini.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/office2003/images/noimage.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/office2003/images/sprites.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/office2003/images/sprites_ie6.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/office2003/skin.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/skins/office2003/templates.css +6 -0
- data/lib/forge/public/javascripts/ckeditor/skins/v2/dialog.css +8 -0
- data/lib/forge/public/javascripts/ckeditor/skins/v2/editor.css +12 -0
- data/lib/forge/public/javascripts/ckeditor/skins/v2/icons.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/v2/icons_rtl.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/v2/images/dialog_sides.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/v2/images/dialog_sides.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/v2/images/dialog_sides_rtl.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/v2/images/mini.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/v2/images/noimage.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/v2/images/sprites.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/v2/images/sprites_ie6.png +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/v2/images/toolbar_start.gif +0 -0
- data/lib/forge/public/javascripts/ckeditor/skins/v2/skin.js +6 -0
- data/lib/forge/public/javascripts/ckeditor/skins/v2/templates.css +6 -0
- data/lib/forge/public/javascripts/ckeditor/swfupload/fileprogress.js +275 -0
- data/lib/forge/public/javascripts/ckeditor/swfupload/handlers.js +170 -0
- data/lib/forge/public/javascripts/ckeditor/swfupload/mootools-1.2.3-core-yc.js +356 -0
- data/lib/forge/public/javascripts/ckeditor/swfupload/querystring.js +40 -0
- data/lib/forge/public/javascripts/ckeditor/swfupload/swfupload.js +1 -0
- data/lib/forge/public/javascripts/ckeditor/swfupload/swfupload.queue.js +1 -0
- data/lib/forge/public/javascripts/ckeditor/swfupload/swfupload.swf +0 -0
- data/lib/forge/public/javascripts/ckeditor/swfupload/swfupload.swfobject.js +111 -0
- data/lib/forge/public/javascripts/ckeditor/themes/default/theme.js +8 -0
- data/lib/forge/public/pixel.gif +0 -0
- data/lib/forge/public/robots.txt +5 -0
- data/lib/forge/script/delayed_job +5 -0
- data/lib/forge/script/ferret_server +78 -0
- data/lib/forge/script/rails +6 -0
- data/lib/forge/spec/controllers/contact_controller_spec.rb +5 -0
- data/lib/forge/spec/controllers/dispatch_links_controller_spec.rb +24 -0
- data/lib/forge/spec/controllers/dispatches_controller_spec.rb +38 -0
- data/lib/forge/spec/controllers/forge/banners_controller_spec.rb +212 -0
- data/lib/forge/spec/controllers/forge/dispatches_controller_spec.rb +205 -0
- data/lib/forge/spec/controllers/forge/events_controller_spec.rb +203 -0
- data/lib/forge/spec/controllers/forge/galleries_controller_spec.rb +212 -0
- data/lib/forge/spec/controllers/forge/orders_controller_spec.rb +203 -0
- data/lib/forge/spec/controllers/forge/pages_controller_spec.rb +211 -0
- data/lib/forge/spec/controllers/forge/post_categories_controller_spec.rb +183 -0
- data/lib/forge/spec/controllers/forge/posts_controller_spec.rb +203 -0
- data/lib/forge/spec/controllers/forge/product_categories_controller_spec.rb +191 -0
- data/lib/forge/spec/controllers/forge/products_controller_spec.rb +216 -0
- data/lib/forge/spec/controllers/forge/sales_controller_spec.rb +203 -0
- data/lib/forge/spec/controllers/forge/subscriber_groups_controller_spec.rb +203 -0
- data/lib/forge/spec/controllers/forge/subscribers_controller_spec.rb +190 -0
- data/lib/forge/spec/controllers/forge/tax_rates_controller_spec.rb +184 -0
- data/lib/forge/spec/controllers/forge/users_controller_spec.rb +273 -0
- data/lib/forge/spec/controllers/forge/videos_controller_spec.rb +244 -0
- data/lib/forge/spec/controllers/sessions_controller_spec.rb +5 -0
- data/lib/forge/spec/delayed_job_spec_helper.rb +8 -0
- data/lib/forge/spec/fixtures/addresses.yml +37 -0
- data/lib/forge/spec/fixtures/assets.yml +7 -0
- data/lib/forge/spec/fixtures/countries.yml +9 -0
- data/lib/forge/spec/fixtures/dispatch_links.yml +4 -0
- data/lib/forge/spec/fixtures/dispatches.yml +8 -0
- data/lib/forge/spec/fixtures/line_items.yml +12 -0
- data/lib/forge/spec/fixtures/orders.yml +9 -0
- data/lib/forge/spec/fixtures/pages.yml +8 -0
- data/lib/forge/spec/fixtures/posts.yml +7 -0
- data/lib/forge/spec/fixtures/product_categories.yml +9 -0
- data/lib/forge/spec/fixtures/product_images.yml +4 -0
- data/lib/forge/spec/fixtures/products.yml +69 -0
- data/lib/forge/spec/fixtures/provinces.yml +11 -0
- data/lib/forge/spec/fixtures/roles.yml +8 -0
- data/lib/forge/spec/fixtures/sample_file.png +0 -0
- data/lib/forge/spec/fixtures/sample_file.txt +11 -0
- data/lib/forge/spec/fixtures/subscribers.yml +7 -0
- data/lib/forge/spec/fixtures/tax_rates.yml +21 -0
- data/lib/forge/spec/fixtures/users.yml +15 -0
- data/lib/forge/spec/integration/pages_spec.rb +21 -0
- data/lib/forge/spec/integration/posts_spec.rb +21 -0
- data/lib/forge/spec/integration/products_spec.rb +24 -0
- data/lib/forge/spec/integration/shopping_spec.rb +135 -0
- data/lib/forge/spec/mailers/comment_mailer_spec.rb +5 -0
- data/lib/forge/spec/mailers/contact_mailer_spec.rb +5 -0
- data/lib/forge/spec/mailers/user_mailer_spec.rb +5 -0
- data/lib/forge/spec/models/comment_spec.rb +29 -0
- data/lib/forge/spec/models/credit_card_processor_spec.rb +67 -0
- data/lib/forge/spec/models/dispatch_link_click_spec.rb +12 -0
- data/lib/forge/spec/models/dispatch_spec.rb +83 -0
- data/lib/forge/spec/models/event_spec.rb +105 -0
- data/lib/forge/spec/models/help_topic_spec.rb +54 -0
- data/lib/forge/spec/models/line_item_spec.rb +55 -0
- data/lib/forge/spec/models/order_spec.rb +126 -0
- data/lib/forge/spec/models/post_spec.rb +35 -0
- data/lib/forge/spec/models/product_image_spec.rb +16 -0
- data/lib/forge/spec/models/product_spec.rb +85 -0
- data/lib/forge/spec/models/reorderable_spec.rb +25 -0
- data/lib/forge/spec/models/tax_rate_spec.rb +35 -0
- data/lib/forge/spec/models/video_spec.rb +5 -0
- data/lib/forge/spec/spec_helper.rb +37 -0
- data/lib/forge/spec/support/integration_example_group.rb +33 -0
- data/lib/forge/spec/views/forge/dispatch_clicks/index.html.erb_spec.rb +5 -0
- data/lib/forge/vendor/assets/images/fancybox/blank.gif +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancy_close.png +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancy_loading.png +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancy_nav_left.png +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancy_nav_right.png +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancy_shadow_e.png +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancy_shadow_n.png +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancy_shadow_ne.png +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancy_shadow_nw.png +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancy_shadow_s.png +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancy_shadow_se.png +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancy_shadow_sw.png +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancy_shadow_w.png +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancy_title_left.png +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancy_title_main.png +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancy_title_over.png +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancy_title_right.png +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancybox-x.png +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancybox-y.png +0 -0
- data/lib/forge/vendor/assets/images/fancybox/fancybox.png +0 -0
- data/lib/forge/vendor/assets/javascripts/cufon/Aller_400.font.js +7 -0
- data/lib/forge/vendor/assets/javascripts/cufon/Aller_700.font.js +7 -0
- data/lib/forge/vendor/assets/javascripts/cufon/cufon.js +7 -0
- data/lib/forge/vendor/assets/javascripts/jquery.corner.js +249 -0
- data/lib/forge/vendor/assets/javascripts/jquery.debounce.js +9 -0
- data/lib/forge/vendor/assets/javascripts/jquery.equalHeights.js +52 -0
- data/lib/forge/vendor/assets/javascripts/jquery.fancybox.js +44 -0
- data/lib/forge/vendor/assets/javascripts/jquery.form.js +911 -0
- data/lib/forge/vendor/assets/javascripts/jquery.mousewheel.js +78 -0
- data/lib/forge/vendor/assets/javascripts/jquery.quickSearch.js.erb +79 -0
- data/lib/forge/vendor/assets/javascripts/jquery.radioSlider.js +55 -0
- data/lib/forge/vendor/assets/javascripts/jquery.swfupload.js +64 -0
- data/lib/forge/vendor/assets/javascripts/jquery.twoLevelSort.js +62 -0
- data/lib/forge/vendor/assets/javascripts/jscrollpane.js +1435 -0
- data/lib/forge/vendor/assets/javascripts/swfupload.js +980 -0
- data/lib/forge/vendor/assets/stylesheets/fancybox.css.scss +363 -0
- data/lib/forge/vendor/assets/stylesheets/jscrollpane.css.scss +20 -0
- data/lib/modules.yml +127 -0
- metadata +1431 -0
@@ -0,0 +1,92 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<!--
|
3
|
+
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
|
4
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
5
|
+
-->
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
7
|
+
<head>
|
8
|
+
<title>Installation Guide - CKEditor</title>
|
9
|
+
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
10
|
+
<style type="text/css">
|
11
|
+
h3
|
12
|
+
{
|
13
|
+
border-bottom: 1px solid #AAAAAA;
|
14
|
+
}
|
15
|
+
pre
|
16
|
+
{
|
17
|
+
background-color: #F9F9F9;
|
18
|
+
border: 1px dashed #2F6FAB;
|
19
|
+
padding: 1em;
|
20
|
+
line-height: 1.1em;
|
21
|
+
}
|
22
|
+
#footer hr
|
23
|
+
{
|
24
|
+
margin: 10px 0 15px 0;
|
25
|
+
height: 1px;
|
26
|
+
border: solid 1px gray;
|
27
|
+
border-bottom: none;
|
28
|
+
}
|
29
|
+
#footer p
|
30
|
+
{
|
31
|
+
margin: 0 10px 10px 10px;
|
32
|
+
float: left;
|
33
|
+
}
|
34
|
+
#footer #copy
|
35
|
+
{
|
36
|
+
float: right;
|
37
|
+
}
|
38
|
+
</style>
|
39
|
+
</head>
|
40
|
+
<body>
|
41
|
+
<h1>
|
42
|
+
CKEditor Installation Guide</h1>
|
43
|
+
<h3>
|
44
|
+
What's CKEditor?</h3>
|
45
|
+
<p>
|
46
|
+
CKEditor is a text editor to be used inside web pages. It's not a replacement
|
47
|
+
for desktop text editors like Word or OpenOffice, but a component to be used as
|
48
|
+
part of web applications and web sites.</p>
|
49
|
+
<h3>
|
50
|
+
Installation</h3>
|
51
|
+
<p>
|
52
|
+
Installing CKEditor is an easy task. Just follow these simple steps:</p>
|
53
|
+
<ol>
|
54
|
+
<li><strong>Download</strong> the latest version of the editor from our web site: <a
|
55
|
+
href="http://ckeditor.com">http://ckeditor.com</a>. You should have already completed
|
56
|
+
this step, but be sure you have the very latest version.</li>
|
57
|
+
<li><strong>Extract</strong> (decompress) the downloaded file into the root of your
|
58
|
+
web site.</li>
|
59
|
+
</ol>
|
60
|
+
<p>
|
61
|
+
<strong>Note:</strong> CKEditor is by default installed in the "ckeditor"
|
62
|
+
folder. You can place the files in whichever you want though.</p>
|
63
|
+
<h3>
|
64
|
+
Checking Your Installation
|
65
|
+
</h3>
|
66
|
+
<p>
|
67
|
+
The editor comes with a few sample pages that can be used to verify that installation
|
68
|
+
proceeded properly. Take a look at the <a href="_samples">_samples</a> directory.</p>
|
69
|
+
<p>
|
70
|
+
To test your installation, just call the following page at your web site:</p>
|
71
|
+
<pre>
|
72
|
+
http://<your site>/<CKEditor installation path>/_samples/index.html
|
73
|
+
|
74
|
+
For example:
|
75
|
+
http://www.example.com/ckeditor/_samples/index.html</pre>
|
76
|
+
<h3>
|
77
|
+
Documentation</h3>
|
78
|
+
<p>
|
79
|
+
The full editor documentation is available online at the following address:<br />
|
80
|
+
<a href="http://docs.cksource.com/ckeditor">http://docs.cksource.com/ckeditor</a></p>
|
81
|
+
<div id="footer">
|
82
|
+
<hr />
|
83
|
+
<p>
|
84
|
+
CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>
|
85
|
+
</p>
|
86
|
+
<p id="copy">
|
87
|
+
Copyright © 2003-2010, <a href="http://cksource.com/">CKSource</a> - Frederico
|
88
|
+
Knabben. All rights reserved.
|
89
|
+
</p>
|
90
|
+
</div>
|
91
|
+
</body>
|
92
|
+
</html>
|
@@ -0,0 +1,1334 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<!--
|
4
|
+
== BEGIN TEXT ONLY VERSION ==
|
5
|
+
|
6
|
+
Software License Agreement
|
7
|
+
==========================
|
8
|
+
|
9
|
+
CKEditor - The text editor for Internet - http://ckeditor.com
|
10
|
+
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
|
11
|
+
|
12
|
+
Licensed under the terms of any of the following licenses at your
|
13
|
+
choice:
|
14
|
+
|
15
|
+
- GNU General Public License Version 2 or later (the "GPL")
|
16
|
+
http://www.gnu.org/licenses/gpl.html
|
17
|
+
(See Appendix A)
|
18
|
+
|
19
|
+
- GNU Lesser General Public License Version 2.1 or later (the "LGPL")
|
20
|
+
http://www.gnu.org/licenses/lgpl.html
|
21
|
+
(See Appendix B)
|
22
|
+
|
23
|
+
- Mozilla Public License Version 1.1 or later (the "MPL")
|
24
|
+
http://www.mozilla.org/MPL/MPL-1.1.html
|
25
|
+
(See Appendix C)
|
26
|
+
|
27
|
+
You are not required to, but if you want to explicitly declare the
|
28
|
+
license you have chosen to be bound to when using, reproducing,
|
29
|
+
modifying and distributing this software, just include a text file
|
30
|
+
titled "legal.txt" in your version of this software, indicating your
|
31
|
+
license choice. In any case, your choice will not restrict any
|
32
|
+
recipient of your version of this software to use, reproduce, modify
|
33
|
+
and distribute this software under any of the above licenses.
|
34
|
+
|
35
|
+
Sources of Intellectual Property Included in CKEditor
|
36
|
+
=====================================================
|
37
|
+
|
38
|
+
Where not otherwise indicated, all CKEditor content is authored by
|
39
|
+
CKSource engineers and consists of CKSource-owned intellectual
|
40
|
+
property. In some specific instances, CKEditor will incorporate work
|
41
|
+
done by developers outside of CKSource with their express permission.
|
42
|
+
|
43
|
+
YUI Test: At _source/tests/yuitest.js can be found part of the source
|
44
|
+
code of YUI, which is licensed under the terms of the BSD License
|
45
|
+
(http://developer.yahoo.com/yui/license.txt). YUI is Copyright (C)
|
46
|
+
2008, Yahoo! Inc.
|
47
|
+
|
48
|
+
Trademarks
|
49
|
+
==========
|
50
|
+
|
51
|
+
CKEditor is a trademark of CKSource - Frederico Knabben. All other brand
|
52
|
+
and product names are trademarks, registered trademarks or service
|
53
|
+
marks of their respective holders.
|
54
|
+
|
55
|
+
Appendix A: The GPL License
|
56
|
+
===========================
|
57
|
+
|
58
|
+
GNU GENERAL PUBLIC LICENSE
|
59
|
+
Version 2, June 1991
|
60
|
+
|
61
|
+
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
62
|
+
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
63
|
+
Everyone is permitted to copy and distribute verbatim copies
|
64
|
+
of this license document, but changing it is not allowed.
|
65
|
+
|
66
|
+
Preamble
|
67
|
+
|
68
|
+
The licenses for most software are designed to take away your
|
69
|
+
freedom to share and change it. By contrast, the GNU General Public
|
70
|
+
License is intended to guarantee your freedom to share and change free
|
71
|
+
software-to make sure the software is free for all its users. This
|
72
|
+
General Public License applies to most of the Free Software
|
73
|
+
Foundation's software and to any other program whose authors commit to
|
74
|
+
using it. (Some other Free Software Foundation software is covered by
|
75
|
+
the GNU Lesser General Public License instead.) You can apply it to
|
76
|
+
your programs, too.
|
77
|
+
|
78
|
+
When we speak of free software, we are referring to freedom, not
|
79
|
+
price. Our General Public Licenses are designed to make sure that you
|
80
|
+
have the freedom to distribute copies of free software (and charge for
|
81
|
+
this service if you wish), that you receive source code or can get it
|
82
|
+
if you want it, that you can change the software or use pieces of it
|
83
|
+
in new free programs; and that you know you can do these things.
|
84
|
+
|
85
|
+
To protect your rights, we need to make restrictions that forbid
|
86
|
+
anyone to deny you these rights or to ask you to surrender the rights.
|
87
|
+
These restrictions translate to certain responsibilities for you if you
|
88
|
+
distribute copies of the software, or if you modify it.
|
89
|
+
|
90
|
+
For example, if you distribute copies of such a program, whether
|
91
|
+
gratis or for a fee, you must give the recipients all the rights that
|
92
|
+
you have. You must make sure that they, too, receive or can get the
|
93
|
+
source code. And you must show them these terms so they know their
|
94
|
+
rights.
|
95
|
+
|
96
|
+
We protect your rights with two steps: (1) copyright the software, and
|
97
|
+
(2) offer you this license which gives you legal permission to copy,
|
98
|
+
distribute and/or modify the software.
|
99
|
+
|
100
|
+
Also, for each author's protection and ours, we want to make certain
|
101
|
+
that everyone understands that there is no warranty for this free
|
102
|
+
software. If the software is modified by someone else and passed on, we
|
103
|
+
want its recipients to know that what they have is not the original, so
|
104
|
+
that any problems introduced by others will not reflect on the original
|
105
|
+
authors' reputations.
|
106
|
+
|
107
|
+
Finally, any free program is threatened constantly by software
|
108
|
+
patents. We wish to avoid the danger that redistributors of a free
|
109
|
+
program will individually obtain patent licenses, in effect making the
|
110
|
+
program proprietary. To prevent this, we have made it clear that any
|
111
|
+
patent must be licensed for everyone's free use or not licensed at all.
|
112
|
+
|
113
|
+
The precise terms and conditions for copying, distribution and
|
114
|
+
modification follow.
|
115
|
+
|
116
|
+
GNU GENERAL PUBLIC LICENSE
|
117
|
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
118
|
+
|
119
|
+
0. This License applies to any program or other work which contains
|
120
|
+
a notice placed by the copyright holder saying it may be distributed
|
121
|
+
under the terms of this General Public License. The "Program", below,
|
122
|
+
refers to any such program or work, and a "work based on the Program"
|
123
|
+
means either the Program or any derivative work under copyright law:
|
124
|
+
that is to say, a work containing the Program or a portion of it,
|
125
|
+
either verbatim or with modifications and/or translated into another
|
126
|
+
language. (Hereinafter, translation is included without limitation in
|
127
|
+
the term "modification".) Each licensee is addressed as "you".
|
128
|
+
|
129
|
+
Activities other than copying, distribution and modification are not
|
130
|
+
covered by this License; they are outside its scope. The act of
|
131
|
+
running the Program is not restricted, and the output from the Program
|
132
|
+
is covered only if its contents constitute a work based on the
|
133
|
+
Program (independent of having been made by running the Program).
|
134
|
+
Whether that is true depends on what the Program does.
|
135
|
+
|
136
|
+
1. You may copy and distribute verbatim copies of the Program's
|
137
|
+
source code as you receive it, in any medium, provided that you
|
138
|
+
conspicuously and appropriately publish on each copy an appropriate
|
139
|
+
copyright notice and disclaimer of warranty; keep intact all the
|
140
|
+
notices that refer to this License and to the absence of any warranty;
|
141
|
+
and give any other recipients of the Program a copy of this License
|
142
|
+
along with the Program.
|
143
|
+
|
144
|
+
You may charge a fee for the physical act of transferring a copy, and
|
145
|
+
you may at your option offer warranty protection in exchange for a fee.
|
146
|
+
|
147
|
+
2. You may modify your copy or copies of the Program or any portion
|
148
|
+
of it, thus forming a work based on the Program, and copy and
|
149
|
+
distribute such modifications or work under the terms of Section 1
|
150
|
+
above, provided that you also meet all of these conditions:
|
151
|
+
|
152
|
+
a) You must cause the modified files to carry prominent notices
|
153
|
+
stating that you changed the files and the date of any change.
|
154
|
+
|
155
|
+
b) You must cause any work that you distribute or publish, that in
|
156
|
+
whole or in part contains or is derived from the Program or any
|
157
|
+
part thereof, to be licensed as a whole at no charge to all third
|
158
|
+
parties under the terms of this License.
|
159
|
+
|
160
|
+
c) If the modified program normally reads commands interactively
|
161
|
+
when run, you must cause it, when started running for such
|
162
|
+
interactive use in the most ordinary way, to print or display an
|
163
|
+
announcement including an appropriate copyright notice and a
|
164
|
+
notice that there is no warranty (or else, saying that you provide
|
165
|
+
a warranty) and that users may redistribute the program under
|
166
|
+
these conditions, and telling the user how to view a copy of this
|
167
|
+
License. (Exception: if the Program itself is interactive but
|
168
|
+
does not normally print such an announcement, your work based on
|
169
|
+
the Program is not required to print an announcement.)
|
170
|
+
|
171
|
+
These requirements apply to the modified work as a whole. If
|
172
|
+
identifiable sections of that work are not derived from the Program,
|
173
|
+
and can be reasonably considered independent and separate works in
|
174
|
+
themselves, then this License, and its terms, do not apply to those
|
175
|
+
sections when you distribute them as separate works. But when you
|
176
|
+
distribute the same sections as part of a whole which is a work based
|
177
|
+
on the Program, the distribution of the whole must be on the terms of
|
178
|
+
this License, whose permissions for other licensees extend to the
|
179
|
+
entire whole, and thus to each and every part regardless of who wrote it.
|
180
|
+
|
181
|
+
Thus, it is not the intent of this section to claim rights or contest
|
182
|
+
your rights to work written entirely by you; rather, the intent is to
|
183
|
+
exercise the right to control the distribution of derivative or
|
184
|
+
collective works based on the Program.
|
185
|
+
|
186
|
+
In addition, mere aggregation of another work not based on the Program
|
187
|
+
with the Program (or with a work based on the Program) on a volume of
|
188
|
+
a storage or distribution medium does not bring the other work under
|
189
|
+
the scope of this License.
|
190
|
+
|
191
|
+
3. You may copy and distribute the Program (or a work based on it,
|
192
|
+
under Section 2) in object code or executable form under the terms of
|
193
|
+
Sections 1 and 2 above provided that you also do one of the following:
|
194
|
+
|
195
|
+
a) Accompany it with the complete corresponding machine-readable
|
196
|
+
source code, which must be distributed under the terms of Sections
|
197
|
+
1 and 2 above on a medium customarily used for software interchange; or,
|
198
|
+
|
199
|
+
b) Accompany it with a written offer, valid for at least three
|
200
|
+
years, to give any third party, for a charge no more than your
|
201
|
+
cost of physically performing source distribution, a complete
|
202
|
+
machine-readable copy of the corresponding source code, to be
|
203
|
+
distributed under the terms of Sections 1 and 2 above on a medium
|
204
|
+
customarily used for software interchange; or,
|
205
|
+
|
206
|
+
c) Accompany it with the information you received as to the offer
|
207
|
+
to distribute corresponding source code. (This alternative is
|
208
|
+
allowed only for noncommercial distribution and only if you
|
209
|
+
received the program in object code or executable form with such
|
210
|
+
an offer, in accord with Subsection b above.)
|
211
|
+
|
212
|
+
The source code for a work means the preferred form of the work for
|
213
|
+
making modifications to it. For an executable work, complete source
|
214
|
+
code means all the source code for all modules it contains, plus any
|
215
|
+
associated interface definition files, plus the scripts used to
|
216
|
+
control compilation and installation of the executable. However, as a
|
217
|
+
special exception, the source code distributed need not include
|
218
|
+
anything that is normally distributed (in either source or binary
|
219
|
+
form) with the major components (compiler, kernel, and so on) of the
|
220
|
+
operating system on which the executable runs, unless that component
|
221
|
+
itself accompanies the executable.
|
222
|
+
|
223
|
+
If distribution of executable or object code is made by offering
|
224
|
+
access to copy from a designated place, then offering equivalent
|
225
|
+
access to copy the source code from the same place counts as
|
226
|
+
distribution of the source code, even though third parties are not
|
227
|
+
compelled to copy the source along with the object code.
|
228
|
+
|
229
|
+
4. You may not copy, modify, sublicense, or distribute the Program
|
230
|
+
except as expressly provided under this License. Any attempt
|
231
|
+
otherwise to copy, modify, sublicense or distribute the Program is
|
232
|
+
void, and will automatically terminate your rights under this License.
|
233
|
+
However, parties who have received copies, or rights, from you under
|
234
|
+
this License will not have their licenses terminated so long as such
|
235
|
+
parties remain in full compliance.
|
236
|
+
|
237
|
+
5. You are not required to accept this License, since you have not
|
238
|
+
signed it. However, nothing else grants you permission to modify or
|
239
|
+
distribute the Program or its derivative works. These actions are
|
240
|
+
prohibited by law if you do not accept this License. Therefore, by
|
241
|
+
modifying or distributing the Program (or any work based on the
|
242
|
+
Program), you indicate your acceptance of this License to do so, and
|
243
|
+
all its terms and conditions for copying, distributing or modifying
|
244
|
+
the Program or works based on it.
|
245
|
+
|
246
|
+
6. Each time you redistribute the Program (or any work based on the
|
247
|
+
Program), the recipient automatically receives a license from the
|
248
|
+
original licensor to copy, distribute or modify the Program subject to
|
249
|
+
these terms and conditions. You may not impose any further
|
250
|
+
restrictions on the recipients' exercise of the rights granted herein.
|
251
|
+
You are not responsible for enforcing compliance by third parties to
|
252
|
+
this License.
|
253
|
+
|
254
|
+
7. If, as a consequence of a court judgment or allegation of patent
|
255
|
+
infringement or for any other reason (not limited to patent issues),
|
256
|
+
conditions are imposed on you (whether by court order, agreement or
|
257
|
+
otherwise) that contradict the conditions of this License, they do not
|
258
|
+
excuse you from the conditions of this License. If you cannot
|
259
|
+
distribute so as to satisfy simultaneously your obligations under this
|
260
|
+
License and any other pertinent obligations, then as a consequence you
|
261
|
+
may not distribute the Program at all. For example, if a patent
|
262
|
+
license would not permit royalty-free redistribution of the Program by
|
263
|
+
all those who receive copies directly or indirectly through you, then
|
264
|
+
the only way you could satisfy both it and this License would be to
|
265
|
+
refrain entirely from distribution of the Program.
|
266
|
+
|
267
|
+
If any portion of this section is held invalid or unenforceable under
|
268
|
+
any particular circumstance, the balance of the section is intended to
|
269
|
+
apply and the section as a whole is intended to apply in other
|
270
|
+
circumstances.
|
271
|
+
|
272
|
+
It is not the purpose of this section to induce you to infringe any
|
273
|
+
patents or other property right claims or to contest validity of any
|
274
|
+
such claims; this section has the sole purpose of protecting the
|
275
|
+
integrity of the free software distribution system, which is
|
276
|
+
implemented by public license practices. Many people have made
|
277
|
+
generous contributions to the wide range of software distributed
|
278
|
+
through that system in reliance on consistent application of that
|
279
|
+
system; it is up to the author/donor to decide if he or she is willing
|
280
|
+
to distribute software through any other system and a licensee cannot
|
281
|
+
impose that choice.
|
282
|
+
|
283
|
+
This section is intended to make thoroughly clear what is believed to
|
284
|
+
be a consequence of the rest of this License.
|
285
|
+
|
286
|
+
8. If the distribution and/or use of the Program is restricted in
|
287
|
+
certain countries either by patents or by copyrighted interfaces, the
|
288
|
+
original copyright holder who places the Program under this License
|
289
|
+
may add an explicit geographical distribution limitation excluding
|
290
|
+
those countries, so that distribution is permitted only in or among
|
291
|
+
countries not thus excluded. In such case, this License incorporates
|
292
|
+
the limitation as if written in the body of this License.
|
293
|
+
|
294
|
+
9. The Free Software Foundation may publish revised and/or new versions
|
295
|
+
of the General Public License from time to time. Such new versions will
|
296
|
+
be similar in spirit to the present version, but may differ in detail to
|
297
|
+
address new problems or concerns.
|
298
|
+
|
299
|
+
Each version is given a distinguishing version number. If the Program
|
300
|
+
specifies a version number of this License which applies to it and "any
|
301
|
+
later version", you have the option of following the terms and conditions
|
302
|
+
either of that version or of any later version published by the Free
|
303
|
+
Software Foundation. If the Program does not specify a version number of
|
304
|
+
this License, you may choose any version ever published by the Free Software
|
305
|
+
Foundation.
|
306
|
+
|
307
|
+
10. If you wish to incorporate parts of the Program into other free
|
308
|
+
programs whose distribution conditions are different, write to the author
|
309
|
+
to ask for permission. For software which is copyrighted by the Free
|
310
|
+
Software Foundation, write to the Free Software Foundation; we sometimes
|
311
|
+
make exceptions for this. Our decision will be guided by the two goals
|
312
|
+
of preserving the free status of all derivatives of our free software and
|
313
|
+
of promoting the sharing and reuse of software generally.
|
314
|
+
|
315
|
+
NO WARRANTY
|
316
|
+
|
317
|
+
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
318
|
+
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
319
|
+
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
320
|
+
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
321
|
+
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
322
|
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
323
|
+
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
324
|
+
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
325
|
+
REPAIR OR CORRECTION.
|
326
|
+
|
327
|
+
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
328
|
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
329
|
+
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
330
|
+
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
331
|
+
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
332
|
+
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
333
|
+
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
334
|
+
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
335
|
+
POSSIBILITY OF SUCH DAMAGES.
|
336
|
+
|
337
|
+
END OF TERMS AND CONDITIONS
|
338
|
+
|
339
|
+
|
340
|
+
Appendix B: The LGPL License
|
341
|
+
============================
|
342
|
+
|
343
|
+
GNU LESSER GENERAL PUBLIC LICENSE
|
344
|
+
Version 2.1, February 1999
|
345
|
+
|
346
|
+
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
347
|
+
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
348
|
+
Everyone is permitted to copy and distribute verbatim copies
|
349
|
+
of this license document, but changing it is not allowed.
|
350
|
+
|
351
|
+
[This is the first released version of the Lesser GPL. It also counts
|
352
|
+
as the successor of the GNU Library Public License, version 2, hence
|
353
|
+
the version number 2.1.]
|
354
|
+
|
355
|
+
Preamble
|
356
|
+
|
357
|
+
The licenses for most software are designed to take away your
|
358
|
+
freedom to share and change it. By contrast, the GNU General Public
|
359
|
+
Licenses are intended to guarantee your freedom to share and change
|
360
|
+
free software-to make sure the software is free for all its users.
|
361
|
+
|
362
|
+
This license, the Lesser General Public License, applies to some
|
363
|
+
specially designated software packages-typically libraries-of the
|
364
|
+
Free Software Foundation and other authors who decide to use it. You
|
365
|
+
can use it too, but we suggest you first think carefully about whether
|
366
|
+
this license or the ordinary General Public License is the better
|
367
|
+
strategy to use in any particular case, based on the explanations below.
|
368
|
+
|
369
|
+
When we speak of free software, we are referring to freedom of use,
|
370
|
+
not price. Our General Public Licenses are designed to make sure that
|
371
|
+
you have the freedom to distribute copies of free software (and charge
|
372
|
+
for this service if you wish); that you receive source code or can get
|
373
|
+
it if you want it; that you can change the software and use pieces of
|
374
|
+
it in new free programs; and that you are informed that you can do
|
375
|
+
these things.
|
376
|
+
|
377
|
+
To protect your rights, we need to make restrictions that forbid
|
378
|
+
distributors to deny you these rights or to ask you to surrender these
|
379
|
+
rights. These restrictions translate to certain responsibilities for
|
380
|
+
you if you distribute copies of the library or if you modify it.
|
381
|
+
|
382
|
+
For example, if you distribute copies of the library, whether gratis
|
383
|
+
or for a fee, you must give the recipients all the rights that we gave
|
384
|
+
you. You must make sure that they, too, receive or can get the source
|
385
|
+
code. If you link other code with the library, you must provide
|
386
|
+
complete object files to the recipients, so that they can relink them
|
387
|
+
with the library after making changes to the library and recompiling
|
388
|
+
it. And you must show them these terms so they know their rights.
|
389
|
+
|
390
|
+
We protect your rights with a two-step method: (1) we copyright the
|
391
|
+
library, and (2) we offer you this license, which gives you legal
|
392
|
+
permission to copy, distribute and/or modify the library.
|
393
|
+
|
394
|
+
To protect each distributor, we want to make it very clear that
|
395
|
+
there is no warranty for the free library. Also, if the library is
|
396
|
+
modified by someone else and passed on, the recipients should know
|
397
|
+
that what they have is not the original version, so that the original
|
398
|
+
author's reputation will not be affected by problems that might be
|
399
|
+
introduced by others.
|
400
|
+
|
401
|
+
Finally, software patents pose a constant threat to the existence of
|
402
|
+
any free program. We wish to make sure that a company cannot
|
403
|
+
effectively restrict the users of a free program by obtaining a
|
404
|
+
restrictive license from a patent holder. Therefore, we insist that
|
405
|
+
any patent license obtained for a version of the library must be
|
406
|
+
consistent with the full freedom of use specified in this license.
|
407
|
+
|
408
|
+
Most GNU software, including some libraries, is covered by the
|
409
|
+
ordinary GNU General Public License. This license, the GNU Lesser
|
410
|
+
General Public License, applies to certain designated libraries, and
|
411
|
+
is quite different from the ordinary General Public License. We use
|
412
|
+
this license for certain libraries in order to permit linking those
|
413
|
+
libraries into non-free programs.
|
414
|
+
|
415
|
+
When a program is linked with a library, whether statically or using
|
416
|
+
a shared library, the combination of the two is legally speaking a
|
417
|
+
combined work, a derivative of the original library. The ordinary
|
418
|
+
General Public License therefore permits such linking only if the
|
419
|
+
entire combination fits its criteria of freedom. The Lesser General
|
420
|
+
Public License permits more lax criteria for linking other code with
|
421
|
+
the library.
|
422
|
+
|
423
|
+
We call this license the "Lesser" General Public License because it
|
424
|
+
does Less to protect the user's freedom than the ordinary General
|
425
|
+
Public License. It also provides other free software developers Less
|
426
|
+
of an advantage over competing non-free programs. These disadvantages
|
427
|
+
are the reason we use the ordinary General Public License for many
|
428
|
+
libraries. However, the Lesser license provides advantages in certain
|
429
|
+
special circumstances.
|
430
|
+
|
431
|
+
For example, on rare occasions, there may be a special need to
|
432
|
+
encourage the widest possible use of a certain library, so that it becomes
|
433
|
+
a de-facto standard. To achieve this, non-free programs must be
|
434
|
+
allowed to use the library. A more frequent case is that a free
|
435
|
+
library does the same job as widely used non-free libraries. In this
|
436
|
+
case, there is little to gain by limiting the free library to free
|
437
|
+
software only, so we use the Lesser General Public License.
|
438
|
+
|
439
|
+
In other cases, permission to use a particular library in non-free
|
440
|
+
programs enables a greater number of people to use a large body of
|
441
|
+
free software. For example, permission to use the GNU C Library in
|
442
|
+
non-free programs enables many more people to use the whole GNU
|
443
|
+
operating system, as well as its variant, the GNU/Linux operating
|
444
|
+
system.
|
445
|
+
|
446
|
+
Although the Lesser General Public License is Less protective of the
|
447
|
+
users' freedom, it does ensure that the user of a program that is
|
448
|
+
linked with the Library has the freedom and the wherewithal to run
|
449
|
+
that program using a modified version of the Library.
|
450
|
+
|
451
|
+
The precise terms and conditions for copying, distribution and
|
452
|
+
modification follow. Pay close attention to the difference between a
|
453
|
+
"work based on the library" and a "work that uses the library". The
|
454
|
+
former contains code derived from the library, whereas the latter must
|
455
|
+
be combined with the library in order to run.
|
456
|
+
|
457
|
+
GNU LESSER GENERAL PUBLIC LICENSE
|
458
|
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
459
|
+
|
460
|
+
0. This License Agreement applies to any software library or other
|
461
|
+
program which contains a notice placed by the copyright holder or
|
462
|
+
other authorized party saying it may be distributed under the terms of
|
463
|
+
this Lesser General Public License (also called "this License").
|
464
|
+
Each licensee is addressed as "you".
|
465
|
+
|
466
|
+
A "library" means a collection of software functions and/or data
|
467
|
+
prepared so as to be conveniently linked with application programs
|
468
|
+
(which use some of those functions and data) to form executables.
|
469
|
+
|
470
|
+
The "Library", below, refers to any such software library or work
|
471
|
+
which has been distributed under these terms. A "work based on the
|
472
|
+
Library" means either the Library or any derivative work under
|
473
|
+
copyright law: that is to say, a work containing the Library or a
|
474
|
+
portion of it, either verbatim or with modifications and/or translated
|
475
|
+
straightforwardly into another language. (Hereinafter, translation is
|
476
|
+
included without limitation in the term "modification".)
|
477
|
+
|
478
|
+
"Source code" for a work means the preferred form of the work for
|
479
|
+
making modifications to it. For a library, complete source code means
|
480
|
+
all the source code for all modules it contains, plus any associated
|
481
|
+
interface definition files, plus the scripts used to control compilation
|
482
|
+
and installation of the library.
|
483
|
+
|
484
|
+
Activities other than copying, distribution and modification are not
|
485
|
+
covered by this License; they are outside its scope. The act of
|
486
|
+
running a program using the Library is not restricted, and output from
|
487
|
+
such a program is covered only if its contents constitute a work based
|
488
|
+
on the Library (independent of the use of the Library in a tool for
|
489
|
+
writing it). Whether that is true depends on what the Library does
|
490
|
+
and what the program that uses the Library does.
|
491
|
+
|
492
|
+
1. You may copy and distribute verbatim copies of the Library's
|
493
|
+
complete source code as you receive it, in any medium, provided that
|
494
|
+
you conspicuously and appropriately publish on each copy an
|
495
|
+
appropriate copyright notice and disclaimer of warranty; keep intact
|
496
|
+
all the notices that refer to this License and to the absence of any
|
497
|
+
warranty; and distribute a copy of this License along with the
|
498
|
+
Library.
|
499
|
+
|
500
|
+
You may charge a fee for the physical act of transferring a copy,
|
501
|
+
and you may at your option offer warranty protection in exchange for a
|
502
|
+
fee.
|
503
|
+
|
504
|
+
2. You may modify your copy or copies of the Library or any portion
|
505
|
+
of it, thus forming a work based on the Library, and copy and
|
506
|
+
distribute such modifications or work under the terms of Section 1
|
507
|
+
above, provided that you also meet all of these conditions:
|
508
|
+
|
509
|
+
a) The modified work must itself be a software library.
|
510
|
+
|
511
|
+
b) You must cause the files modified to carry prominent notices
|
512
|
+
stating that you changed the files and the date of any change.
|
513
|
+
|
514
|
+
c) You must cause the whole of the work to be licensed at no
|
515
|
+
charge to all third parties under the terms of this License.
|
516
|
+
|
517
|
+
d) If a facility in the modified Library refers to a function or a
|
518
|
+
table of data to be supplied by an application program that uses
|
519
|
+
the facility, other than as an argument passed when the facility
|
520
|
+
is invoked, then you must make a good faith effort to ensure that,
|
521
|
+
in the event an application does not supply such function or
|
522
|
+
table, the facility still operates, and performs whatever part of
|
523
|
+
its purpose remains meaningful.
|
524
|
+
|
525
|
+
(For example, a function in a library to compute square roots has
|
526
|
+
a purpose that is entirely well-defined independent of the
|
527
|
+
application. Therefore, Subsection 2d requires that any
|
528
|
+
application-supplied function or table used by this function must
|
529
|
+
be optional: if the application does not supply it, the square
|
530
|
+
root function must still compute square roots.)
|
531
|
+
|
532
|
+
These requirements apply to the modified work as a whole. If
|
533
|
+
identifiable sections of that work are not derived from the Library,
|
534
|
+
and can be reasonably considered independent and separate works in
|
535
|
+
themselves, then this License, and its terms, do not apply to those
|
536
|
+
sections when you distribute them as separate works. But when you
|
537
|
+
distribute the same sections as part of a whole which is a work based
|
538
|
+
on the Library, the distribution of the whole must be on the terms of
|
539
|
+
this License, whose permissions for other licensees extend to the
|
540
|
+
entire whole, and thus to each and every part regardless of who wrote
|
541
|
+
it.
|
542
|
+
|
543
|
+
Thus, it is not the intent of this section to claim rights or contest
|
544
|
+
your rights to work written entirely by you; rather, the intent is to
|
545
|
+
exercise the right to control the distribution of derivative or
|
546
|
+
collective works based on the Library.
|
547
|
+
|
548
|
+
In addition, mere aggregation of another work not based on the Library
|
549
|
+
with the Library (or with a work based on the Library) on a volume of
|
550
|
+
a storage or distribution medium does not bring the other work under
|
551
|
+
the scope of this License.
|
552
|
+
|
553
|
+
3. You may opt to apply the terms of the ordinary GNU General Public
|
554
|
+
License instead of this License to a given copy of the Library. To do
|
555
|
+
this, you must alter all the notices that refer to this License, so
|
556
|
+
that they refer to the ordinary GNU General Public License, version 2,
|
557
|
+
instead of to this License. (If a newer version than version 2 of the
|
558
|
+
ordinary GNU General Public License has appeared, then you can specify
|
559
|
+
that version instead if you wish.) Do not make any other change in
|
560
|
+
these notices.
|
561
|
+
|
562
|
+
Once this change is made in a given copy, it is irreversible for
|
563
|
+
that copy, so the ordinary GNU General Public License applies to all
|
564
|
+
subsequent copies and derivative works made from that copy.
|
565
|
+
|
566
|
+
This option is useful when you wish to copy part of the code of
|
567
|
+
the Library into a program that is not a library.
|
568
|
+
|
569
|
+
4. You may copy and distribute the Library (or a portion or
|
570
|
+
derivative of it, under Section 2) in object code or executable form
|
571
|
+
under the terms of Sections 1 and 2 above provided that you accompany
|
572
|
+
it with the complete corresponding machine-readable source code, which
|
573
|
+
must be distributed under the terms of Sections 1 and 2 above on a
|
574
|
+
medium customarily used for software interchange.
|
575
|
+
|
576
|
+
If distribution of object code is made by offering access to copy
|
577
|
+
from a designated place, then offering equivalent access to copy the
|
578
|
+
source code from the same place satisfies the requirement to
|
579
|
+
distribute the source code, even though third parties are not
|
580
|
+
compelled to copy the source along with the object code.
|
581
|
+
|
582
|
+
5. A program that contains no derivative of any portion of the
|
583
|
+
Library, but is designed to work with the Library by being compiled or
|
584
|
+
linked with it, is called a "work that uses the Library". Such a
|
585
|
+
work, in isolation, is not a derivative work of the Library, and
|
586
|
+
therefore falls outside the scope of this License.
|
587
|
+
|
588
|
+
However, linking a "work that uses the Library" with the Library
|
589
|
+
creates an executable that is a derivative of the Library (because it
|
590
|
+
contains portions of the Library), rather than a "work that uses the
|
591
|
+
library". The executable is therefore covered by this License.
|
592
|
+
Section 6 states terms for distribution of such executables.
|
593
|
+
|
594
|
+
When a "work that uses the Library" uses material from a header file
|
595
|
+
that is part of the Library, the object code for the work may be a
|
596
|
+
derivative work of the Library even though the source code is not.
|
597
|
+
Whether this is true is especially significant if the work can be
|
598
|
+
linked without the Library, or if the work is itself a library. The
|
599
|
+
threshold for this to be true is not precisely defined by law.
|
600
|
+
|
601
|
+
If such an object file uses only numerical parameters, data
|
602
|
+
structure layouts and accessors, and small macros and small inline
|
603
|
+
functions (ten lines or less in length), then the use of the object
|
604
|
+
file is unrestricted, regardless of whether it is legally a derivative
|
605
|
+
work. (Executables containing this object code plus portions of the
|
606
|
+
Library will still fall under Section 6.)
|
607
|
+
|
608
|
+
Otherwise, if the work is a derivative of the Library, you may
|
609
|
+
distribute the object code for the work under the terms of Section 6.
|
610
|
+
Any executables containing that work also fall under Section 6,
|
611
|
+
whether or not they are linked directly with the Library itself.
|
612
|
+
|
613
|
+
6. As an exception to the Sections above, you may also combine or
|
614
|
+
link a "work that uses the Library" with the Library to produce a
|
615
|
+
work containing portions of the Library, and distribute that work
|
616
|
+
under terms of your choice, provided that the terms permit
|
617
|
+
modification of the work for the customer's own use and reverse
|
618
|
+
engineering for debugging such modifications.
|
619
|
+
|
620
|
+
You must give prominent notice with each copy of the work that the
|
621
|
+
Library is used in it and that the Library and its use are covered by
|
622
|
+
this License. You must supply a copy of this License. If the work
|
623
|
+
during execution displays copyright notices, you must include the
|
624
|
+
copyright notice for the Library among them, as well as a reference
|
625
|
+
directing the user to the copy of this License. Also, you must do one
|
626
|
+
of these things:
|
627
|
+
|
628
|
+
a) Accompany the work with the complete corresponding
|
629
|
+
machine-readable source code for the Library including whatever
|
630
|
+
changes were used in the work (which must be distributed under
|
631
|
+
Sections 1 and 2 above); and, if the work is an executable linked
|
632
|
+
with the Library, with the complete machine-readable "work that
|
633
|
+
uses the Library", as object code and/or source code, so that the
|
634
|
+
user can modify the Library and then relink to produce a modified
|
635
|
+
executable containing the modified Library. (It is understood
|
636
|
+
that the user who changes the contents of definitions files in the
|
637
|
+
Library will not necessarily be able to recompile the application
|
638
|
+
to use the modified definitions.)
|
639
|
+
|
640
|
+
b) Use a suitable shared library mechanism for linking with the
|
641
|
+
Library. A suitable mechanism is one that (1) uses at run time a
|
642
|
+
copy of the library already present on the user's computer system,
|
643
|
+
rather than copying library functions into the executable, and (2)
|
644
|
+
will operate properly with a modified version of the library, if
|
645
|
+
the user installs one, as long as the modified version is
|
646
|
+
interface-compatible with the version that the work was made with.
|
647
|
+
|
648
|
+
c) Accompany the work with a written offer, valid for at
|
649
|
+
least three years, to give the same user the materials
|
650
|
+
specified in Subsection 6a, above, for a charge no more
|
651
|
+
than the cost of performing this distribution.
|
652
|
+
|
653
|
+
d) If distribution of the work is made by offering access to copy
|
654
|
+
from a designated place, offer equivalent access to copy the above
|
655
|
+
specified materials from the same place.
|
656
|
+
|
657
|
+
e) Verify that the user has already received a copy of these
|
658
|
+
materials or that you have already sent this user a copy.
|
659
|
+
|
660
|
+
For an executable, the required form of the "work that uses the
|
661
|
+
Library" must include any data and utility programs needed for
|
662
|
+
reproducing the executable from it. However, as a special exception,
|
663
|
+
the materials to be distributed need not include anything that is
|
664
|
+
normally distributed (in either source or binary form) with the major
|
665
|
+
components (compiler, kernel, and so on) of the operating system on
|
666
|
+
which the executable runs, unless that component itself accompanies
|
667
|
+
the executable.
|
668
|
+
|
669
|
+
It may happen that this requirement contradicts the license
|
670
|
+
restrictions of other proprietary libraries that do not normally
|
671
|
+
accompany the operating system. Such a contradiction means you cannot
|
672
|
+
use both them and the Library together in an executable that you
|
673
|
+
distribute.
|
674
|
+
|
675
|
+
7. You may place library facilities that are a work based on the
|
676
|
+
Library side-by-side in a single library together with other library
|
677
|
+
facilities not covered by this License, and distribute such a combined
|
678
|
+
library, provided that the separate distribution of the work based on
|
679
|
+
the Library and of the other library facilities is otherwise
|
680
|
+
permitted, and provided that you do these two things:
|
681
|
+
|
682
|
+
a) Accompany the combined library with a copy of the same work
|
683
|
+
based on the Library, uncombined with any other library
|
684
|
+
facilities. This must be distributed under the terms of the
|
685
|
+
Sections above.
|
686
|
+
|
687
|
+
b) Give prominent notice with the combined library of the fact
|
688
|
+
that part of it is a work based on the Library, and explaining
|
689
|
+
where to find the accompanying uncombined form of the same work.
|
690
|
+
|
691
|
+
8. You may not copy, modify, sublicense, link with, or distribute
|
692
|
+
the Library except as expressly provided under this License. Any
|
693
|
+
attempt otherwise to copy, modify, sublicense, link with, or
|
694
|
+
distribute the Library is void, and will automatically terminate your
|
695
|
+
rights under this License. However, parties who have received copies,
|
696
|
+
or rights, from you under this License will not have their licenses
|
697
|
+
terminated so long as such parties remain in full compliance.
|
698
|
+
|
699
|
+
9. You are not required to accept this License, since you have not
|
700
|
+
signed it. However, nothing else grants you permission to modify or
|
701
|
+
distribute the Library or its derivative works. These actions are
|
702
|
+
prohibited by law if you do not accept this License. Therefore, by
|
703
|
+
modifying or distributing the Library (or any work based on the
|
704
|
+
Library), you indicate your acceptance of this License to do so, and
|
705
|
+
all its terms and conditions for copying, distributing or modifying
|
706
|
+
the Library or works based on it.
|
707
|
+
|
708
|
+
10. Each time you redistribute the Library (or any work based on the
|
709
|
+
Library), the recipient automatically receives a license from the
|
710
|
+
original licensor to copy, distribute, link with or modify the Library
|
711
|
+
subject to these terms and conditions. You may not impose any further
|
712
|
+
restrictions on the recipients' exercise of the rights granted herein.
|
713
|
+
You are not responsible for enforcing compliance by third parties with
|
714
|
+
this License.
|
715
|
+
|
716
|
+
11. If, as a consequence of a court judgment or allegation of patent
|
717
|
+
infringement or for any other reason (not limited to patent issues),
|
718
|
+
conditions are imposed on you (whether by court order, agreement or
|
719
|
+
otherwise) that contradict the conditions of this License, they do not
|
720
|
+
excuse you from the conditions of this License. If you cannot
|
721
|
+
distribute so as to satisfy simultaneously your obligations under this
|
722
|
+
License and any other pertinent obligations, then as a consequence you
|
723
|
+
may not distribute the Library at all. For example, if a patent
|
724
|
+
license would not permit royalty-free redistribution of the Library by
|
725
|
+
all those who receive copies directly or indirectly through you, then
|
726
|
+
the only way you could satisfy both it and this License would be to
|
727
|
+
refrain entirely from distribution of the Library.
|
728
|
+
|
729
|
+
If any portion of this section is held invalid or unenforceable under any
|
730
|
+
particular circumstance, the balance of the section is intended to apply,
|
731
|
+
and the section as a whole is intended to apply in other circumstances.
|
732
|
+
|
733
|
+
It is not the purpose of this section to induce you to infringe any
|
734
|
+
patents or other property right claims or to contest validity of any
|
735
|
+
such claims; this section has the sole purpose of protecting the
|
736
|
+
integrity of the free software distribution system which is
|
737
|
+
implemented by public license practices. Many people have made
|
738
|
+
generous contributions to the wide range of software distributed
|
739
|
+
through that system in reliance on consistent application of that
|
740
|
+
system; it is up to the author/donor to decide if he or she is willing
|
741
|
+
to distribute software through any other system and a licensee cannot
|
742
|
+
impose that choice.
|
743
|
+
|
744
|
+
This section is intended to make thoroughly clear what is believed to
|
745
|
+
be a consequence of the rest of this License.
|
746
|
+
|
747
|
+
12. If the distribution and/or use of the Library is restricted in
|
748
|
+
certain countries either by patents or by copyrighted interfaces, the
|
749
|
+
original copyright holder who places the Library under this License may add
|
750
|
+
an explicit geographical distribution limitation excluding those countries,
|
751
|
+
so that distribution is permitted only in or among countries not thus
|
752
|
+
excluded. In such case, this License incorporates the limitation as if
|
753
|
+
written in the body of this License.
|
754
|
+
|
755
|
+
13. The Free Software Foundation may publish revised and/or new
|
756
|
+
versions of the Lesser General Public License from time to time.
|
757
|
+
Such new versions will be similar in spirit to the present version,
|
758
|
+
but may differ in detail to address new problems or concerns.
|
759
|
+
|
760
|
+
Each version is given a distinguishing version number. If the Library
|
761
|
+
specifies a version number of this License which applies to it and
|
762
|
+
"any later version", you have the option of following the terms and
|
763
|
+
conditions either of that version or of any later version published by
|
764
|
+
the Free Software Foundation. If the Library does not specify a
|
765
|
+
license version number, you may choose any version ever published by
|
766
|
+
the Free Software Foundation.
|
767
|
+
|
768
|
+
14. If you wish to incorporate parts of the Library into other free
|
769
|
+
programs whose distribution conditions are incompatible with these,
|
770
|
+
write to the author to ask for permission. For software which is
|
771
|
+
copyrighted by the Free Software Foundation, write to the Free
|
772
|
+
Software Foundation; we sometimes make exceptions for this. Our
|
773
|
+
decision will be guided by the two goals of preserving the free status
|
774
|
+
of all derivatives of our free software and of promoting the sharing
|
775
|
+
and reuse of software generally.
|
776
|
+
|
777
|
+
NO WARRANTY
|
778
|
+
|
779
|
+
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
780
|
+
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
781
|
+
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
782
|
+
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
|
783
|
+
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
|
784
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
785
|
+
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
|
786
|
+
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
787
|
+
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
788
|
+
|
789
|
+
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
790
|
+
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
791
|
+
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
|
792
|
+
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
793
|
+
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
|
794
|
+
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
|
795
|
+
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
796
|
+
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
797
|
+
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
798
|
+
DAMAGES.
|
799
|
+
|
800
|
+
END OF TERMS AND CONDITIONS
|
801
|
+
|
802
|
+
|
803
|
+
Appendix C: The MPL License
|
804
|
+
===========================
|
805
|
+
|
806
|
+
MOZILLA PUBLIC LICENSE
|
807
|
+
Version 1.1
|
808
|
+
|
809
|
+
===============
|
810
|
+
|
811
|
+
1. Definitions.
|
812
|
+
|
813
|
+
1.0.1. "Commercial Use" means distribution or otherwise making the
|
814
|
+
Covered Code available to a third party.
|
815
|
+
|
816
|
+
1.1. "Contributor" means each entity that creates or contributes to
|
817
|
+
the creation of Modifications.
|
818
|
+
|
819
|
+
1.2. "Contributor Version" means the combination of the Original
|
820
|
+
Code, prior Modifications used by a Contributor, and the Modifications
|
821
|
+
made by that particular Contributor.
|
822
|
+
|
823
|
+
1.3. "Covered Code" means the Original Code or Modifications or the
|
824
|
+
combination of the Original Code and Modifications, in each case
|
825
|
+
including portions thereof.
|
826
|
+
|
827
|
+
1.4. "Electronic Distribution Mechanism" means a mechanism generally
|
828
|
+
accepted in the software development community for the electronic
|
829
|
+
transfer of data.
|
830
|
+
|
831
|
+
1.5. "Executable" means Covered Code in any form other than Source
|
832
|
+
Code.
|
833
|
+
|
834
|
+
1.6. "Initial Developer" means the individual or entity identified
|
835
|
+
as the Initial Developer in the Source Code notice required by Exhibit
|
836
|
+
A.
|
837
|
+
|
838
|
+
1.7. "Larger Work" means a work which combines Covered Code or
|
839
|
+
portions thereof with code not governed by the terms of this License.
|
840
|
+
|
841
|
+
1.8. "License" means this document.
|
842
|
+
|
843
|
+
1.8.1. "Licensable" means having the right to grant, to the maximum
|
844
|
+
extent possible, whether at the time of the initial grant or
|
845
|
+
subsequently acquired, any and all of the rights conveyed herein.
|
846
|
+
|
847
|
+
1.9. "Modifications" means any addition to or deletion from the
|
848
|
+
substance or structure of either the Original Code or any previous
|
849
|
+
Modifications. When Covered Code is released as a series of files, a
|
850
|
+
Modification is:
|
851
|
+
A. Any addition to or deletion from the contents of a file
|
852
|
+
containing Original Code or previous Modifications.
|
853
|
+
|
854
|
+
B. Any new file that contains any part of the Original Code or
|
855
|
+
previous Modifications.
|
856
|
+
|
857
|
+
1.10. "Original Code" means Source Code of computer software code
|
858
|
+
which is described in the Source Code notice required by Exhibit A as
|
859
|
+
Original Code, and which, at the time of its release under this
|
860
|
+
License is not already Covered Code governed by this License.
|
861
|
+
|
862
|
+
1.10.1. "Patent Claims" means any patent claim(s), now owned or
|
863
|
+
hereafter acquired, including without limitation, method, process,
|
864
|
+
and apparatus claims, in any patent Licensable by grantor.
|
865
|
+
|
866
|
+
1.11. "Source Code" means the preferred form of the Covered Code for
|
867
|
+
making modifications to it, including all modules it contains, plus
|
868
|
+
any associated interface definition files, scripts used to control
|
869
|
+
compilation and installation of an Executable, or source code
|
870
|
+
differential comparisons against either the Original Code or another
|
871
|
+
well known, available Covered Code of the Contributor's choice. The
|
872
|
+
Source Code can be in a compressed or archival form, provided the
|
873
|
+
appropriate decompression or de-archiving software is widely available
|
874
|
+
for no charge.
|
875
|
+
|
876
|
+
1.12. "You" (or "Your") means an individual or a legal entity
|
877
|
+
exercising rights under, and complying with all of the terms of, this
|
878
|
+
License or a future version of this License issued under Section 6.1.
|
879
|
+
For legal entities, "You" includes any entity which controls, is
|
880
|
+
controlled by, or is under common control with You. For purposes of
|
881
|
+
this definition, "control" means (a) the power, direct or indirect,
|
882
|
+
to cause the direction or management of such entity, whether by
|
883
|
+
contract or otherwise, or (b) ownership of more than fifty percent
|
884
|
+
(50%) of the outstanding shares or beneficial ownership of such
|
885
|
+
entity.
|
886
|
+
|
887
|
+
2. Source Code License.
|
888
|
+
|
889
|
+
2.1. The Initial Developer Grant.
|
890
|
+
The Initial Developer hereby grants You a world-wide, royalty-free,
|
891
|
+
non-exclusive license, subject to third party intellectual property
|
892
|
+
claims:
|
893
|
+
(a) under intellectual property rights (other than patent or
|
894
|
+
trademark) Licensable by Initial Developer to use, reproduce,
|
895
|
+
modify, display, perform, sublicense and distribute the Original
|
896
|
+
Code (or portions thereof) with or without Modifications, and/or
|
897
|
+
as part of a Larger Work; and
|
898
|
+
|
899
|
+
(b) under Patents Claims infringed by the making, using or
|
900
|
+
selling of Original Code, to make, have made, use, practice,
|
901
|
+
sell, and offer for sale, and/or otherwise dispose of the
|
902
|
+
Original Code (or portions thereof).
|
903
|
+
|
904
|
+
(c) the licenses granted in this Section 2.1(a) and (b) are
|
905
|
+
effective on the date Initial Developer first distributes
|
906
|
+
Original Code under the terms of this License.
|
907
|
+
|
908
|
+
(d) Notwithstanding Section 2.1(b) above, no patent license is
|
909
|
+
granted: 1) for code that You delete from the Original Code; 2)
|
910
|
+
separate from the Original Code; or 3) for infringements caused
|
911
|
+
by: i) the modification of the Original Code or ii) the
|
912
|
+
combination of the Original Code with other software or devices.
|
913
|
+
|
914
|
+
2.2. Contributor Grant.
|
915
|
+
Subject to third party intellectual property claims, each Contributor
|
916
|
+
hereby grants You a world-wide, royalty-free, non-exclusive license
|
917
|
+
|
918
|
+
(a) under intellectual property rights (other than patent or
|
919
|
+
trademark) Licensable by Contributor, to use, reproduce, modify,
|
920
|
+
display, perform, sublicense and distribute the Modifications
|
921
|
+
created by such Contributor (or portions thereof) either on an
|
922
|
+
unmodified basis, with other Modifications, as Covered Code
|
923
|
+
and/or as part of a Larger Work; and
|
924
|
+
|
925
|
+
(b) under Patent Claims infringed by the making, using, or
|
926
|
+
selling of Modifications made by that Contributor either alone
|
927
|
+
and/or in combination with its Contributor Version (or portions
|
928
|
+
of such combination), to make, use, sell, offer for sale, have
|
929
|
+
made, and/or otherwise dispose of: 1) Modifications made by that
|
930
|
+
Contributor (or portions thereof); and 2) the combination of
|
931
|
+
Modifications made by that Contributor with its Contributor
|
932
|
+
Version (or portions of such combination).
|
933
|
+
|
934
|
+
(c) the licenses granted in Sections 2.2(a) and 2.2(b) are
|
935
|
+
effective on the date Contributor first makes Commercial Use of
|
936
|
+
the Covered Code.
|
937
|
+
|
938
|
+
(d) Notwithstanding Section 2.2(b) above, no patent license is
|
939
|
+
granted: 1) for any code that Contributor has deleted from the
|
940
|
+
Contributor Version; 2) separate from the Contributor Version;
|
941
|
+
3) for infringements caused by: i) third party modifications of
|
942
|
+
Contributor Version or ii) the combination of Modifications made
|
943
|
+
by that Contributor with other software (except as part of the
|
944
|
+
Contributor Version) or other devices; or 4) under Patent Claims
|
945
|
+
infringed by Covered Code in the absence of Modifications made by
|
946
|
+
that Contributor.
|
947
|
+
|
948
|
+
3. Distribution Obligations.
|
949
|
+
|
950
|
+
3.1. Application of License.
|
951
|
+
The Modifications which You create or to which You contribute are
|
952
|
+
governed by the terms of this License, including without limitation
|
953
|
+
Section 2.2. The Source Code version of Covered Code may be
|
954
|
+
distributed only under the terms of this License or a future version
|
955
|
+
of this License released under Section 6.1, and You must include a
|
956
|
+
copy of this License with every copy of the Source Code You
|
957
|
+
distribute. You may not offer or impose any terms on any Source Code
|
958
|
+
version that alters or restricts the applicable version of this
|
959
|
+
License or the recipients' rights hereunder. However, You may include
|
960
|
+
an additional document offering the additional rights described in
|
961
|
+
Section 3.5.
|
962
|
+
|
963
|
+
3.2. Availability of Source Code.
|
964
|
+
Any Modification which You create or to which You contribute must be
|
965
|
+
made available in Source Code form under the terms of this License
|
966
|
+
either on the same media as an Executable version or via an accepted
|
967
|
+
Electronic Distribution Mechanism to anyone to whom you made an
|
968
|
+
Executable version available; and if made available via Electronic
|
969
|
+
Distribution Mechanism, must remain available for at least twelve (12)
|
970
|
+
months after the date it initially became available, or at least six
|
971
|
+
(6) months after a subsequent version of that particular Modification
|
972
|
+
has been made available to such recipients. You are responsible for
|
973
|
+
ensuring that the Source Code version remains available even if the
|
974
|
+
Electronic Distribution Mechanism is maintained by a third party.
|
975
|
+
|
976
|
+
3.3. Description of Modifications.
|
977
|
+
You must cause all Covered Code to which You contribute to contain a
|
978
|
+
file documenting the changes You made to create that Covered Code and
|
979
|
+
the date of any change. You must include a prominent statement that
|
980
|
+
the Modification is derived, directly or indirectly, from Original
|
981
|
+
Code provided by the Initial Developer and including the name of the
|
982
|
+
Initial Developer in (a) the Source Code, and (b) in any notice in an
|
983
|
+
Executable version or related documentation in which You describe the
|
984
|
+
origin or ownership of the Covered Code.
|
985
|
+
|
986
|
+
3.4. Intellectual Property Matters
|
987
|
+
(a) Third Party Claims.
|
988
|
+
If Contributor has knowledge that a license under a third party's
|
989
|
+
intellectual property rights is required to exercise the rights
|
990
|
+
granted by such Contributor under Sections 2.1 or 2.2,
|
991
|
+
Contributor must include a text file with the Source Code
|
992
|
+
distribution titled "LEGAL" which describes the claim and the
|
993
|
+
party making the claim in sufficient detail that a recipient will
|
994
|
+
know whom to contact. If Contributor obtains such knowledge after
|
995
|
+
the Modification is made available as described in Section 3.2,
|
996
|
+
Contributor shall promptly modify the LEGAL file in all copies
|
997
|
+
Contributor makes available thereafter and shall take other steps
|
998
|
+
(such as notifying appropriate mailing lists or newsgroups)
|
999
|
+
reasonably calculated to inform those who received the Covered
|
1000
|
+
Code that new knowledge has been obtained.
|
1001
|
+
|
1002
|
+
(b) Contributor APIs.
|
1003
|
+
If Contributor's Modifications include an application programming
|
1004
|
+
interface and Contributor has knowledge of patent licenses which
|
1005
|
+
are reasonably necessary to implement that API, Contributor must
|
1006
|
+
also include this information in the LEGAL file.
|
1007
|
+
|
1008
|
+
(c) Representations.
|
1009
|
+
Contributor represents that, except as disclosed pursuant to
|
1010
|
+
Section 3.4(a) above, Contributor believes that Contributor's
|
1011
|
+
Modifications are Contributor's original creation(s) and/or
|
1012
|
+
Contributor has sufficient rights to grant the rights conveyed by
|
1013
|
+
this License.
|
1014
|
+
|
1015
|
+
3.5. Required Notices.
|
1016
|
+
You must duplicate the notice in Exhibit A in each file of the Source
|
1017
|
+
Code. If it is not possible to put such notice in a particular Source
|
1018
|
+
Code file due to its structure, then You must include such notice in a
|
1019
|
+
location (such as a relevant directory) where a user would be likely
|
1020
|
+
to look for such a notice. If You created one or more Modification(s)
|
1021
|
+
You may add your name as a Contributor to the notice described in
|
1022
|
+
Exhibit A. You must also duplicate this License in any documentation
|
1023
|
+
for the Source Code where You describe recipients' rights or ownership
|
1024
|
+
rights relating to Covered Code. You may choose to offer, and to
|
1025
|
+
charge a fee for, warranty, support, indemnity or liability
|
1026
|
+
obligations to one or more recipients of Covered Code. However, You
|
1027
|
+
may do so only on Your own behalf, and not on behalf of the Initial
|
1028
|
+
Developer or any Contributor. You must make it absolutely clear than
|
1029
|
+
any such warranty, support, indemnity or liability obligation is
|
1030
|
+
offered by You alone, and You hereby agree to indemnify the Initial
|
1031
|
+
Developer and every Contributor for any liability incurred by the
|
1032
|
+
Initial Developer or such Contributor as a result of warranty,
|
1033
|
+
support, indemnity or liability terms You offer.
|
1034
|
+
|
1035
|
+
3.6. Distribution of Executable Versions.
|
1036
|
+
You may distribute Covered Code in Executable form only if the
|
1037
|
+
requirements of Section 3.1-3.5 have been met for that Covered Code,
|
1038
|
+
and if You include a notice stating that the Source Code version of
|
1039
|
+
the Covered Code is available under the terms of this License,
|
1040
|
+
including a description of how and where You have fulfilled the
|
1041
|
+
obligations of Section 3.2. The notice must be conspicuously included
|
1042
|
+
in any notice in an Executable version, related documentation or
|
1043
|
+
collateral in which You describe recipients' rights relating to the
|
1044
|
+
Covered Code. You may distribute the Executable version of Covered
|
1045
|
+
Code or ownership rights under a license of Your choice, which may
|
1046
|
+
contain terms different from this License, provided that You are in
|
1047
|
+
compliance with the terms of this License and that the license for the
|
1048
|
+
Executable version does not attempt to limit or alter the recipient's
|
1049
|
+
rights in the Source Code version from the rights set forth in this
|
1050
|
+
License. If You distribute the Executable version under a different
|
1051
|
+
license You must make it absolutely clear that any terms which differ
|
1052
|
+
from this License are offered by You alone, not by the Initial
|
1053
|
+
Developer or any Contributor. You hereby agree to indemnify the
|
1054
|
+
Initial Developer and every Contributor for any liability incurred by
|
1055
|
+
the Initial Developer or such Contributor as a result of any such
|
1056
|
+
terms You offer.
|
1057
|
+
|
1058
|
+
3.7. Larger Works.
|
1059
|
+
You may create a Larger Work by combining Covered Code with other code
|
1060
|
+
not governed by the terms of this License and distribute the Larger
|
1061
|
+
Work as a single product. In such a case, You must make sure the
|
1062
|
+
requirements of this License are fulfilled for the Covered Code.
|
1063
|
+
|
1064
|
+
4. Inability to Comply Due to Statute or Regulation.
|
1065
|
+
|
1066
|
+
If it is impossible for You to comply with any of the terms of this
|
1067
|
+
License with respect to some or all of the Covered Code due to
|
1068
|
+
statute, judicial order, or regulation then You must: (a) comply with
|
1069
|
+
the terms of this License to the maximum extent possible; and (b)
|
1070
|
+
describe the limitations and the code they affect. Such description
|
1071
|
+
must be included in the LEGAL file described in Section 3.4 and must
|
1072
|
+
be included with all distributions of the Source Code. Except to the
|
1073
|
+
extent prohibited by statute or regulation, such description must be
|
1074
|
+
sufficiently detailed for a recipient of ordinary skill to be able to
|
1075
|
+
understand it.
|
1076
|
+
|
1077
|
+
5. Application of this License.
|
1078
|
+
|
1079
|
+
This License applies to code to which the Initial Developer has
|
1080
|
+
attached the notice in Exhibit A and to related Covered Code.
|
1081
|
+
|
1082
|
+
6. Versions of the License.
|
1083
|
+
|
1084
|
+
6.1. New Versions.
|
1085
|
+
Netscape Communications Corporation ("Netscape") may publish revised
|
1086
|
+
and/or new versions of the License from time to time. Each version
|
1087
|
+
will be given a distinguishing version number.
|
1088
|
+
|
1089
|
+
6.2. Effect of New Versions.
|
1090
|
+
Once Covered Code has been published under a particular version of the
|
1091
|
+
License, You may always continue to use it under the terms of that
|
1092
|
+
version. You may also choose to use such Covered Code under the terms
|
1093
|
+
of any subsequent version of the License published by Netscape. No one
|
1094
|
+
other than Netscape has the right to modify the terms applicable to
|
1095
|
+
Covered Code created under this License.
|
1096
|
+
|
1097
|
+
6.3. Derivative Works.
|
1098
|
+
If You create or use a modified version of this License (which you may
|
1099
|
+
only do in order to apply it to code which is not already Covered Code
|
1100
|
+
governed by this License), You must (a) rename Your license so that
|
1101
|
+
the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape",
|
1102
|
+
"MPL", "NPL" or any confusingly similar phrase do not appear in your
|
1103
|
+
license (except to note that your license differs from this License)
|
1104
|
+
and (b) otherwise make it clear that Your version of the license
|
1105
|
+
contains terms which differ from the Mozilla Public License and
|
1106
|
+
Netscape Public License. (Filling in the name of the Initial
|
1107
|
+
Developer, Original Code or Contributor in the notice described in
|
1108
|
+
Exhibit A shall not of themselves be deemed to be modifications of
|
1109
|
+
this License.)
|
1110
|
+
|
1111
|
+
7. DISCLAIMER OF WARRANTY.
|
1112
|
+
|
1113
|
+
COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS,
|
1114
|
+
WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
1115
|
+
WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF
|
1116
|
+
DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.
|
1117
|
+
THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE
|
1118
|
+
IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT,
|
1119
|
+
YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE
|
1120
|
+
COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
|
1121
|
+
OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
|
1122
|
+
ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
|
1123
|
+
|
1124
|
+
8. TERMINATION.
|
1125
|
+
|
1126
|
+
8.1. This License and the rights granted hereunder will terminate
|
1127
|
+
automatically if You fail to comply with terms herein and fail to cure
|
1128
|
+
such breach within 30 days of becoming aware of the breach. All
|
1129
|
+
sublicenses to the Covered Code which are properly granted shall
|
1130
|
+
survive any termination of this License. Provisions which, by their
|
1131
|
+
nature, must remain in effect beyond the termination of this License
|
1132
|
+
shall survive.
|
1133
|
+
|
1134
|
+
8.2. If You initiate litigation by asserting a patent infringement
|
1135
|
+
claim (excluding declatory judgment actions) against Initial Developer
|
1136
|
+
or a Contributor (the Initial Developer or Contributor against whom
|
1137
|
+
You file such action is referred to as "Participant") alleging that:
|
1138
|
+
|
1139
|
+
(a) such Participant's Contributor Version directly or indirectly
|
1140
|
+
infringes any patent, then any and all rights granted by such
|
1141
|
+
Participant to You under Sections 2.1 and/or 2.2 of this License
|
1142
|
+
shall, upon 60 days notice from Participant terminate prospectively,
|
1143
|
+
unless if within 60 days after receipt of notice You either: (i)
|
1144
|
+
agree in writing to pay Participant a mutually agreeable reasonable
|
1145
|
+
royalty for Your past and future use of Modifications made by such
|
1146
|
+
Participant, or (ii) withdraw Your litigation claim with respect to
|
1147
|
+
the Contributor Version against such Participant. If within 60 days
|
1148
|
+
of notice, a reasonable royalty and payment arrangement are not
|
1149
|
+
mutually agreed upon in writing by the parties or the litigation claim
|
1150
|
+
is not withdrawn, the rights granted by Participant to You under
|
1151
|
+
Sections 2.1 and/or 2.2 automatically terminate at the expiration of
|
1152
|
+
the 60 day notice period specified above.
|
1153
|
+
|
1154
|
+
(b) any software, hardware, or device, other than such Participant's
|
1155
|
+
Contributor Version, directly or indirectly infringes any patent, then
|
1156
|
+
any rights granted to You by such Participant under Sections 2.1(b)
|
1157
|
+
and 2.2(b) are revoked effective as of the date You first made, used,
|
1158
|
+
sold, distributed, or had made, Modifications made by that
|
1159
|
+
Participant.
|
1160
|
+
|
1161
|
+
8.3. If You assert a patent infringement claim against Participant
|
1162
|
+
alleging that such Participant's Contributor Version directly or
|
1163
|
+
indirectly infringes any patent where such claim is resolved (such as
|
1164
|
+
by license or settlement) prior to the initiation of patent
|
1165
|
+
infringement litigation, then the reasonable value of the licenses
|
1166
|
+
granted by such Participant under Sections 2.1 or 2.2 shall be taken
|
1167
|
+
into account in determining the amount or value of any payment or
|
1168
|
+
license.
|
1169
|
+
|
1170
|
+
8.4. In the event of termination under Sections 8.1 or 8.2 above,
|
1171
|
+
all end user license agreements (excluding distributors and resellers)
|
1172
|
+
which have been validly granted by You or any distributor hereunder
|
1173
|
+
prior to termination shall survive termination.
|
1174
|
+
|
1175
|
+
9. LIMITATION OF LIABILITY.
|
1176
|
+
|
1177
|
+
UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
|
1178
|
+
(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL
|
1179
|
+
DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,
|
1180
|
+
OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR
|
1181
|
+
ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY
|
1182
|
+
CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,
|
1183
|
+
WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
|
1184
|
+
COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
|
1185
|
+
INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
|
1186
|
+
LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY
|
1187
|
+
RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW
|
1188
|
+
PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE
|
1189
|
+
EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO
|
1190
|
+
THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.
|
1191
|
+
|
1192
|
+
10. U.S. GOVERNMENT END USERS.
|
1193
|
+
|
1194
|
+
The Covered Code is a "commercial item," as that term is defined in
|
1195
|
+
48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer
|
1196
|
+
software" and "commercial computer software documentation," as such
|
1197
|
+
terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48
|
1198
|
+
C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),
|
1199
|
+
all U.S. Government End Users acquire Covered Code with only those
|
1200
|
+
rights set forth herein.
|
1201
|
+
|
1202
|
+
11. MISCELLANEOUS.
|
1203
|
+
|
1204
|
+
This License represents the complete agreement concerning subject
|
1205
|
+
matter hereof. If any provision of this License is held to be
|
1206
|
+
unenforceable, such provision shall be reformed only to the extent
|
1207
|
+
necessary to make it enforceable. This License shall be governed by
|
1208
|
+
California law provisions (except to the extent applicable law, if
|
1209
|
+
any, provides otherwise), excluding its conflict-of-law provisions.
|
1210
|
+
With respect to disputes in which at least one party is a citizen of,
|
1211
|
+
or an entity chartered or registered to do business in the United
|
1212
|
+
States of America, any litigation relating to this License shall be
|
1213
|
+
subject to the jurisdiction of the Federal Courts of the Northern
|
1214
|
+
District of California, with venue lying in Santa Clara County,
|
1215
|
+
California, with the losing party responsible for costs, including
|
1216
|
+
without limitation, court costs and reasonable attorneys' fees and
|
1217
|
+
expenses. The application of the United Nations Convention on
|
1218
|
+
Contracts for the International Sale of Goods is expressly excluded.
|
1219
|
+
Any law or regulation which provides that the language of a contract
|
1220
|
+
shall be construed against the drafter shall not apply to this
|
1221
|
+
License.
|
1222
|
+
|
1223
|
+
12. RESPONSIBILITY FOR CLAIMS.
|
1224
|
+
|
1225
|
+
As between Initial Developer and the Contributors, each party is
|
1226
|
+
responsible for claims and damages arising, directly or indirectly,
|
1227
|
+
out of its utilization of rights under this License and You agree to
|
1228
|
+
work with Initial Developer and Contributors to distribute such
|
1229
|
+
responsibility on an equitable basis. Nothing herein is intended or
|
1230
|
+
shall be deemed to constitute any admission of liability.
|
1231
|
+
|
1232
|
+
13. MULTIPLE-LICENSED CODE.
|
1233
|
+
|
1234
|
+
Initial Developer may designate portions of the Covered Code as
|
1235
|
+
"Multiple-Licensed". "Multiple-Licensed" means that the Initial
|
1236
|
+
Developer permits you to utilize portions of the Covered Code under
|
1237
|
+
Your choice of the NPL or the alternative licenses, if any, specified
|
1238
|
+
by the Initial Developer in the file described in Exhibit A.
|
1239
|
+
|
1240
|
+
EXHIBIT A -Mozilla Public License.
|
1241
|
+
|
1242
|
+
``The contents of this file are subject to the Mozilla Public License
|
1243
|
+
Version 1.1 (the "License"); you may not use this file except in
|
1244
|
+
compliance with the License. You may obtain a copy of the License at
|
1245
|
+
http://www.mozilla.org/MPL/
|
1246
|
+
|
1247
|
+
Software distributed under the License is distributed on an "AS IS"
|
1248
|
+
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
1249
|
+
License for the specific language governing rights and limitations
|
1250
|
+
under the License.
|
1251
|
+
|
1252
|
+
The Original Code is ______________________________________.
|
1253
|
+
|
1254
|
+
The Initial Developer of the Original Code is ________________________.
|
1255
|
+
Portions created by ______________________ are Copyright (C) ______
|
1256
|
+
_______________________. All Rights Reserved.
|
1257
|
+
|
1258
|
+
Contributor(s): ______________________________________.
|
1259
|
+
|
1260
|
+
Alternatively, the contents of this file may be used under the terms
|
1261
|
+
of the _____ license (the "[___] License"), in which case the
|
1262
|
+
provisions of [______] License are applicable instead of those
|
1263
|
+
above. If you wish to allow use of your version of this file only
|
1264
|
+
under the terms of the [____] License and not to allow others to use
|
1265
|
+
your version of this file under the MPL, indicate your decision by
|
1266
|
+
deleting the provisions above and replace them with the notice and
|
1267
|
+
other provisions required by the [___] License. If you do not delete
|
1268
|
+
the provisions above, a recipient may use your version of this file
|
1269
|
+
under either the MPL or the [___] License."
|
1270
|
+
|
1271
|
+
[NOTE: The text of this Exhibit A may differ slightly from the text of
|
1272
|
+
the notices in the Source Code files of the Original Code. You should
|
1273
|
+
use the text of this Exhibit A rather than the text found in the
|
1274
|
+
Original Code Source Code for Your Modifications.]
|
1275
|
+
|
1276
|
+
== END TEXT ONLY VERSION ==
|
1277
|
+
-->
|
1278
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
1279
|
+
<head>
|
1280
|
+
<title>License - CKEditor</title>
|
1281
|
+
</head>
|
1282
|
+
<body>
|
1283
|
+
<h1>
|
1284
|
+
Software License Agreement
|
1285
|
+
</h1>
|
1286
|
+
<p>
|
1287
|
+
<strong>CKEditor™</strong> - The text editor for Internet™ - <a href="http://ckeditor.com">
|
1288
|
+
http://ckeditor.com</a><br />
|
1289
|
+
Copyright © 2003-2010, <a href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
|
1290
|
+
</p>
|
1291
|
+
<p>
|
1292
|
+
Licensed under the terms of any of the following licenses at your choice:
|
1293
|
+
</p>
|
1294
|
+
<ul>
|
1295
|
+
<li><a href="http://www.gnu.org/licenses/gpl.html">GNU General Public License</a> Version
|
1296
|
+
2 or later (the "GPL");</li>
|
1297
|
+
<li><a href="http://www.gnu.org/licenses/lgpl.html">GNU Lesser General Public License</a>
|
1298
|
+
Version 2.1 or later (the "LGPL");</li>
|
1299
|
+
<li><a href="http://www.mozilla.org/MPL/MPL-1.1.html">Mozilla Public License</a> Version
|
1300
|
+
1.1 or later (the "MPL").</li>
|
1301
|
+
</ul>
|
1302
|
+
<p>
|
1303
|
+
You are not required to, but if you want to explicitly declare the license you have
|
1304
|
+
chosen to be bound to when using, reproducing, modifying and distributing this software,
|
1305
|
+
just include a text file titled "LEGAL" in your version of this software, indicating
|
1306
|
+
your license choice. In any case, your choice will not restrict any recipient of
|
1307
|
+
your version of this software to use, reproduce, modify and distribute this software
|
1308
|
+
under any of the above licenses.
|
1309
|
+
</p>
|
1310
|
+
<h2>
|
1311
|
+
Sources of Intellectual Property Included in CKEditor
|
1312
|
+
</h2>
|
1313
|
+
<p>
|
1314
|
+
Where not otherwise indicated, all CKEditor content is authored by CKSource engineers
|
1315
|
+
and consists of CKSource-owned intellectual property. In some specific instances,
|
1316
|
+
CKEditor will incorporate work done by developers outside of CKSource with their
|
1317
|
+
express permission.
|
1318
|
+
</p>
|
1319
|
+
<p>
|
1320
|
+
<a href="http://developer.yahoo.com/yui/yuitest/">YUI Test</a>: At _source/tests/yuitest.js
|
1321
|
+
can be found part of the source code of YUI, which is licensed under the terms of
|
1322
|
+
the <a href="http://developer.yahoo.com/yui/license.txt">BSD License</a>. YUI is
|
1323
|
+
Copyright © 2008, Yahoo! Inc.
|
1324
|
+
</p>
|
1325
|
+
<h2>
|
1326
|
+
Trademarks
|
1327
|
+
</h2>
|
1328
|
+
<p>
|
1329
|
+
CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product
|
1330
|
+
names are trademarks, registered trademarks or service marks of their respective
|
1331
|
+
holders.
|
1332
|
+
</p>
|
1333
|
+
</body>
|
1334
|
+
</html>
|