browsercms_s3 3.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE.txt +165 -0
- data/README.markdown +64 -0
- data/app/controllers/application_controller.rb +14 -0
- data/app/controllers/cms/application_controller.rb +78 -0
- data/app/controllers/cms/attachments_controller.rb +11 -0
- data/app/controllers/cms/base_controller.rb +13 -0
- data/app/controllers/cms/cache_controller.rb +22 -0
- data/app/controllers/cms/categories_controller.rb +2 -0
- data/app/controllers/cms/category_types_controller.rb +5 -0
- data/app/controllers/cms/connectors_controller.rb +63 -0
- data/app/controllers/cms/content_block_controller.rb +285 -0
- data/app/controllers/cms/content_controller.rb +257 -0
- data/app/controllers/cms/content_types_controller.rb +7 -0
- data/app/controllers/cms/dashboard_controller.rb +10 -0
- data/app/controllers/cms/dynamic_views_controller.rb +65 -0
- data/app/controllers/cms/email_messages_controller.rb +14 -0
- data/app/controllers/cms/error_handling.rb +25 -0
- data/app/controllers/cms/file_blocks_controller.rb +2 -0
- data/app/controllers/cms/groups_controller.rb +26 -0
- data/app/controllers/cms/home_controller.rb +5 -0
- data/app/controllers/cms/html_blocks_controller.rb +2 -0
- data/app/controllers/cms/image_blocks_controller.rb +2 -0
- data/app/controllers/cms/links_controller.rb +67 -0
- data/app/controllers/cms/page_route_conditions_controller.rb +2 -0
- data/app/controllers/cms/page_route_options_controller.rb +56 -0
- data/app/controllers/cms/page_route_requirements_controller.rb +2 -0
- data/app/controllers/cms/page_routes_controller.rb +45 -0
- data/app/controllers/cms/pages_controller.rb +131 -0
- data/app/controllers/cms/portlet_controller.rb +12 -0
- data/app/controllers/cms/portlets_controller.rb +40 -0
- data/app/controllers/cms/redirects_controller.rb +19 -0
- data/app/controllers/cms/resource_controller.rb +108 -0
- data/app/controllers/cms/routes_controller.rb +23 -0
- data/app/controllers/cms/section_nodes_controller.rb +40 -0
- data/app/controllers/cms/sections_controller.rb +130 -0
- data/app/controllers/cms/sessions_controller.rb +64 -0
- data/app/controllers/cms/tags_controller.rb +9 -0
- data/app/controllers/cms/tasks_controller.rb +52 -0
- data/app/controllers/cms/toolbar_controller.rb +12 -0
- data/app/controllers/cms/users_controller.rb +100 -0
- data/app/helpers/application_helper.rb +3 -0
- data/app/helpers/cms/application_helper.rb +169 -0
- data/app/helpers/cms/form_builder.rb +101 -0
- data/app/helpers/cms/form_tag_helper.rb +32 -0
- data/app/helpers/cms/menu_helper.rb +158 -0
- data/app/helpers/cms/page_helper.rb +68 -0
- data/app/helpers/cms/path_helper.rb +48 -0
- data/app/helpers/cms/section_nodes_helper.rb +13 -0
- data/app/helpers/cms/template_support.rb +21 -0
- data/app/models/abstract_file_block.rb +17 -0
- data/app/models/attachment.rb +226 -0
- data/app/models/category.rb +40 -0
- data/app/models/category_type.rb +34 -0
- data/app/models/connector.rb +80 -0
- data/app/models/content_type.rb +95 -0
- data/app/models/content_type_group.rb +3 -0
- data/app/models/dynamic_view.rb +80 -0
- data/app/models/email_message.rb +31 -0
- data/app/models/email_message_mailer.rb +11 -0
- data/app/models/file_block.rb +21 -0
- data/app/models/group.rb +30 -0
- data/app/models/group_permission.rb +7 -0
- data/app/models/group_section.rb +4 -0
- data/app/models/group_type.rb +12 -0
- data/app/models/group_type_permission.rb +4 -0
- data/app/models/guest_user.rb +39 -0
- data/app/models/html_block.rb +40 -0
- data/app/models/image_block.rb +22 -0
- data/app/models/link.rb +35 -0
- data/app/models/page.rb +286 -0
- data/app/models/page_partial.rb +22 -0
- data/app/models/page_route.rb +58 -0
- data/app/models/page_route_condition.rb +2 -0
- data/app/models/page_route_option.rb +3 -0
- data/app/models/page_route_requirement.rb +2 -0
- data/app/models/page_template.rb +48 -0
- data/app/models/permission.rb +10 -0
- data/app/models/portlet.rb +157 -0
- data/app/models/redirect.rb +4 -0
- data/app/models/section.rb +147 -0
- data/app/models/section_node.rb +93 -0
- data/app/models/site.rb +41 -0
- data/app/models/tag.rb +62 -0
- data/app/models/tagging.rb +9 -0
- data/app/models/task.rb +67 -0
- data/app/models/user.rb +143 -0
- data/app/models/user_group_membership.rb +4 -0
- data/app/portlets/dynamic_portlet.rb +7 -0
- data/app/portlets/email_page_portlet.rb +24 -0
- data/app/portlets/login_portlet.rb +10 -0
- data/app/portlets/tag_cloud_portlet.rb +13 -0
- data/app/views/cms/blocks/_hidden_fields.html.erb +10 -0
- data/app/views/cms/blocks/_toolbar.html.erb +9 -0
- data/app/views/cms/blocks/_toolbar_for_collection.html.erb +26 -0
- data/app/views/cms/blocks/_toolbar_for_member.html.erb +38 -0
- data/app/views/cms/blocks/edit.html.erb +25 -0
- data/app/views/cms/blocks/index.html.erb +127 -0
- data/app/views/cms/blocks/new.html.erb +21 -0
- data/app/views/cms/blocks/show.html.erb +40 -0
- data/app/views/cms/blocks/usages.html.erb +44 -0
- data/app/views/cms/blocks/versions.html.erb +90 -0
- data/app/views/cms/cache/show.html.erb +12 -0
- data/app/views/cms/categories/_form.html.erb +36 -0
- data/app/views/cms/category_types/_form.html.erb +1 -0
- data/app/views/cms/connectors/new.html.erb +71 -0
- data/app/views/cms/content/no_page.html.erb +37 -0
- data/app/views/cms/content/show.html.erb +21 -0
- data/app/views/cms/content_types/index.html.erb +14 -0
- data/app/views/cms/dashboard/_page_drafts.html.erb +49 -0
- data/app/views/cms/dashboard/_tasks.html.erb +54 -0
- data/app/views/cms/dashboard/index.html.erb +15 -0
- data/app/views/cms/dynamic_views/_form.html.erb +11 -0
- data/app/views/cms/dynamic_views/edit.html.erb +3 -0
- data/app/views/cms/dynamic_views/index.html.erb +52 -0
- data/app/views/cms/dynamic_views/new.html.erb +3 -0
- data/app/views/cms/email_messages/index.html.erb +39 -0
- data/app/views/cms/email_messages/show.html.erb +57 -0
- data/app/views/cms/file_blocks/_form.html.erb +30 -0
- data/app/views/cms/file_blocks/render.html.erb +5 -0
- data/app/views/cms/form_builder/_cms_date_picker.html.erb +12 -0
- data/app/views/cms/form_builder/_cms_datetime_select.html.erb +12 -0
- data/app/views/cms/form_builder/_cms_drop_down.html.erb +19 -0
- data/app/views/cms/form_builder/_cms_file_field.html.erb +32 -0
- data/app/views/cms/form_builder/_cms_tag_list.html.erb +15 -0
- data/app/views/cms/form_builder/_cms_text_area.html.erb +13 -0
- data/app/views/cms/form_builder/_cms_text_editor.html.erb +18 -0
- data/app/views/cms/form_builder/_cms_text_field.html.erb +12 -0
- data/app/views/cms/groups/_form.html.erb +45 -0
- data/app/views/cms/groups/_permissions.html.erb +37 -0
- data/app/views/cms/groups/_sections.html.erb +19 -0
- data/app/views/cms/groups/edit.html.erb +4 -0
- data/app/views/cms/groups/index.html.erb +58 -0
- data/app/views/cms/groups/new.html.erb +4 -0
- data/app/views/cms/html_blocks/_form.html.erb +3 -0
- data/app/views/cms/html_blocks/render.html.erb +1 -0
- data/app/views/cms/image_blocks/_form.html.erb +30 -0
- data/app/views/cms/image_blocks/render.html.erb +1 -0
- data/app/views/cms/links/_form.html.erb +13 -0
- data/app/views/cms/links/destroy.js.rjs +2 -0
- data/app/views/cms/links/edit.html.erb +14 -0
- data/app/views/cms/links/new.html.erb +15 -0
- data/app/views/cms/menus/_menu.html.erb +9 -0
- data/app/views/cms/menus/_menu_item.html.erb +11 -0
- data/app/views/cms/page_routes/_form.html.erb +11 -0
- data/app/views/cms/page_routes/edit.html.erb +3 -0
- data/app/views/cms/page_routes/index.html.erb +56 -0
- data/app/views/cms/page_routes/new.html.erb +3 -0
- data/app/views/cms/page_routes/show.html.erb +14 -0
- data/app/views/cms/pages/_edit_connector.html.erb +19 -0
- data/app/views/cms/pages/_edit_container.html.erb +11 -0
- data/app/views/cms/pages/_form.html.erb +46 -0
- data/app/views/cms/pages/edit.html.erb +23 -0
- data/app/views/cms/pages/new.html.erb +33 -0
- data/app/views/cms/pages/versions.html.erb +91 -0
- data/app/views/cms/redirects/_form.html.erb +15 -0
- data/app/views/cms/redirects/edit.html.erb +3 -0
- data/app/views/cms/redirects/index.html.erb +50 -0
- data/app/views/cms/redirects/new.html.erb +3 -0
- data/app/views/cms/routes/index.html.erb +40 -0
- data/app/views/cms/section_nodes/_link.html.erb +11 -0
- data/app/views/cms/section_nodes/_node.html.erb +34 -0
- data/app/views/cms/section_nodes/_page.html.erb +14 -0
- data/app/views/cms/section_nodes/_section.html.erb +12 -0
- data/app/views/cms/section_nodes/_section_node.html.erb +10 -0
- data/app/views/cms/section_nodes/index.html.erb +31 -0
- data/app/views/cms/sections/_form.html.erb +59 -0
- data/app/views/cms/sections/_page.html.erb +4 -0
- data/app/views/cms/sections/_section.html.erb +8 -0
- data/app/views/cms/sections/destroy.js.rjs +2 -0
- data/app/views/cms/sections/edit.html.erb +10 -0
- data/app/views/cms/sections/file_browser.xml.builder +14 -0
- data/app/views/cms/sections/index.html.erb +23 -0
- data/app/views/cms/sections/new.html.erb +21 -0
- data/app/views/cms/sessions/new.html.erb +32 -0
- data/app/views/cms/shared/_admin_sidebar.html.erb +30 -0
- data/app/views/cms/shared/_exception.html.erb +6 -0
- data/app/views/cms/shared/_pagination.html.erb +31 -0
- data/app/views/cms/shared/_version_conflict_diff.html.erb +11 -0
- data/app/views/cms/shared/_version_conflict_error.html.erb +6 -0
- data/app/views/cms/shared/access_denied.html.erb +3 -0
- data/app/views/cms/shared/error.html.erb +40 -0
- data/app/views/cms/tags/_form.html.erb +1 -0
- data/app/views/cms/tags/render.html.erb +53 -0
- data/app/views/cms/tasks/new.html.erb +36 -0
- data/app/views/cms/toolbar/index.html.erb +12 -0
- data/app/views/cms/users/_form.html.erb +12 -0
- data/app/views/cms/users/_groups.html.erb +12 -0
- data/app/views/cms/users/_password.html.erb +8 -0
- data/app/views/cms/users/_toolbar.html.erb +22 -0
- data/app/views/cms/users/_user_fields.html.erb +20 -0
- data/app/views/cms/users/change_password.html.erb +21 -0
- data/app/views/cms/users/edit.html.erb +16 -0
- data/app/views/cms/users/index.html.erb +62 -0
- data/app/views/cms/users/new.html.erb +13 -0
- data/app/views/cms/users/show.html.erb +50 -0
- data/app/views/layouts/_cms_toolbar.html.erb +54 -0
- data/app/views/layouts/_page_toolbar.html.erb +118 -0
- data/app/views/layouts/application.html.erb +11 -0
- data/app/views/layouts/cms/_footer.erb +4 -0
- data/app/views/layouts/cms/_head.html.erb +21 -0
- data/app/views/layouts/cms/administration.html.erb +51 -0
- data/app/views/layouts/cms/application.html.erb +25 -0
- data/app/views/layouts/cms/content_library.html.erb +94 -0
- data/app/views/layouts/cms/dashboard.html.erb +16 -0
- data/app/views/layouts/cms/login.html.erb +30 -0
- data/app/views/layouts/cms/section_nodes.html.erb +20 -0
- data/app/views/layouts/cms/thickbox.html.erb +24 -0
- data/app/views/layouts/cms/toolbar.html.erb +23 -0
- data/app/views/portlets/dynamic/_form.html.erb +3 -0
- data/app/views/portlets/email_page/_form.html.erb +7 -0
- data/app/views/portlets/email_page/render.html.erb +17 -0
- data/app/views/portlets/login/_form.html.erb +6 -0
- data/app/views/portlets/login/render.html.erb +27 -0
- data/app/views/portlets/portlets/_form.html.erb +19 -0
- data/app/views/portlets/tag_cloud/_form.html.erb +4 -0
- data/app/views/portlets/tag_cloud/render.html.erb +5 -0
- data/browsercms.gemspec +1317 -0
- data/db/demo/data.rb +97 -0
- data/db/demo/page_partials/_footer.html.erb +6 -0
- data/db/demo/page_partials/_header.html.erb +24 -0
- data/db/demo/page_templates/home_page.html.erb +49 -0
- data/db/demo/page_templates/sub_page.html.erb +37 -0
- data/db/migrate/20080815014337_browsercms_3_0_0.rb +274 -0
- data/db/migrate/20081114172307_load_seed_data.rb +92 -0
- data/doc/app/classes/AbstractFileBlock.html +146 -0
- data/doc/app/classes/ActiveRecord/ConnectionAdapters/SchemaStatements.html +242 -0
- data/doc/app/classes/ActiveRecord.html +105 -0
- data/doc/app/classes/ActiveSupport/Cache/FileStore.html +146 -0
- data/doc/app/classes/ActiveSupport/Cache.html +111 -0
- data/doc/app/classes/ActiveSupport.html +111 -0
- data/doc/app/classes/ActsAsList/ClassMethods.html +202 -0
- data/doc/app/classes/ActsAsList/InstanceMethods.html +510 -0
- data/doc/app/classes/ActsAsList.html +147 -0
- data/doc/app/classes/ApplicationController.html +119 -0
- data/doc/app/classes/ApplicationHelper.html +112 -0
- data/doc/app/classes/Attachment.html +726 -0
- data/doc/app/classes/Category.html +230 -0
- data/doc/app/classes/CategoryType.html +214 -0
- data/doc/app/classes/Cms/Acts/ContentBlock/MacroMethods/InstanceMethods.html +140 -0
- data/doc/app/classes/Cms/Acts/ContentBlock/MacroMethods.html +165 -0
- data/doc/app/classes/Cms/Acts/ContentBlock.html +146 -0
- data/doc/app/classes/Cms/Acts.html +111 -0
- data/doc/app/classes/Cms/ApplicationController.html +418 -0
- data/doc/app/classes/Cms/ApplicationHelper.html +814 -0
- data/doc/app/classes/Cms/AttachmentsController.html +154 -0
- data/doc/app/classes/Cms/Authentication/Controller.html +702 -0
- data/doc/app/classes/Cms/Authentication/Model/ClassMethods.html +246 -0
- data/doc/app/classes/Cms/Authentication/Model/InstanceMethods.html +412 -0
- data/doc/app/classes/Cms/Authentication/Model.html +165 -0
- data/doc/app/classes/Cms/Authentication.html +116 -0
- data/doc/app/classes/Cms/BaseController.html +113 -0
- data/doc/app/classes/Cms/Behaviors/Archiving/InstanceMethods.html +220 -0
- data/doc/app/classes/Cms/Behaviors/Archiving/MacroMethods.html +175 -0
- data/doc/app/classes/Cms/Behaviors/Archiving.html +147 -0
- data/doc/app/classes/Cms/Behaviors/Attaching/InstanceMethods.html +670 -0
- data/doc/app/classes/Cms/Behaviors/Attaching/MacroMethods.html +188 -0
- data/doc/app/classes/Cms/Behaviors/Attaching.html +160 -0
- data/doc/app/classes/Cms/Behaviors/Categorizing/ClassMethods.html +105 -0
- data/doc/app/classes/Cms/Behaviors/Categorizing/InstanceMethods.html +140 -0
- data/doc/app/classes/Cms/Behaviors/Categorizing/MacroMethods.html +178 -0
- data/doc/app/classes/Cms/Behaviors/Categorizing.html +148 -0
- data/doc/app/classes/Cms/Behaviors/ClassMethods.html +272 -0
- data/doc/app/classes/Cms/Behaviors/Connecting/ClassMethods.html +188 -0
- data/doc/app/classes/Cms/Behaviors/Connecting/InstanceMethods.html +312 -0
- data/doc/app/classes/Cms/Behaviors/Connecting/MacroMethods.html +184 -0
- data/doc/app/classes/Cms/Behaviors/Connecting.html +148 -0
- data/doc/app/classes/Cms/Behaviors/DynamicAttributes/InstanceMethods.html +181 -0
- data/doc/app/classes/Cms/Behaviors/DynamicAttributes/MacroMethods.html +243 -0
- data/doc/app/classes/Cms/Behaviors/DynamicAttributes.html +285 -0
- data/doc/app/classes/Cms/Behaviors/FlushCacheOnChange/InstanceMethods.html +142 -0
- data/doc/app/classes/Cms/Behaviors/FlushCacheOnChange/MacroMethods.html +175 -0
- data/doc/app/classes/Cms/Behaviors/FlushCacheOnChange.html +178 -0
- data/doc/app/classes/Cms/Behaviors/Hiding/ClassMethods.html +105 -0
- data/doc/app/classes/Cms/Behaviors/Hiding/InstanceMethods.html +220 -0
- data/doc/app/classes/Cms/Behaviors/Hiding/MacroMethods.html +176 -0
- data/doc/app/classes/Cms/Behaviors/Hiding.html +148 -0
- data/doc/app/classes/Cms/Behaviors/InstanceMethods.html +234 -0
- data/doc/app/classes/Cms/Behaviors/Pagination/ClassMethods.html +252 -0
- data/doc/app/classes/Cms/Behaviors/Pagination/Collection.html +437 -0
- data/doc/app/classes/Cms/Behaviors/Pagination/InvalidPage.html +146 -0
- data/doc/app/classes/Cms/Behaviors/Pagination.html +151 -0
- data/doc/app/classes/Cms/Behaviors/Publishing/ClassMethods.html +105 -0
- data/doc/app/classes/Cms/Behaviors/Publishing/InstanceMethods.html +333 -0
- data/doc/app/classes/Cms/Behaviors/Publishing/MacroMethods.html +180 -0
- data/doc/app/classes/Cms/Behaviors/Publishing.html +179 -0
- data/doc/app/classes/Cms/Behaviors/Rendering/MacroMethods.html +186 -0
- data/doc/app/classes/Cms/Behaviors/Rendering.html +179 -0
- data/doc/app/classes/Cms/Behaviors/Searching/ClassMethods.html +164 -0
- data/doc/app/classes/Cms/Behaviors/Searching/MacroMethods.html +188 -0
- data/doc/app/classes/Cms/Behaviors/Searching.html +147 -0
- data/doc/app/classes/Cms/Behaviors/SoftDeleting/ClassMethods.html +217 -0
- data/doc/app/classes/Cms/Behaviors/SoftDeleting/InstanceMethods.html +247 -0
- data/doc/app/classes/Cms/Behaviors/SoftDeleting/MacroMethods.html +205 -0
- data/doc/app/classes/Cms/Behaviors/SoftDeleting.html +148 -0
- data/doc/app/classes/Cms/Behaviors/Taggable/ClassMethods.html +164 -0
- data/doc/app/classes/Cms/Behaviors/Taggable/InstanceMethods.html +197 -0
- data/doc/app/classes/Cms/Behaviors/Taggable/MacroMethods.html +182 -0
- data/doc/app/classes/Cms/Behaviors/Taggable.html +148 -0
- data/doc/app/classes/Cms/Behaviors/Userstamping/ClassMethods.html +105 -0
- data/doc/app/classes/Cms/Behaviors/Userstamping/InstanceMethods.html +143 -0
- data/doc/app/classes/Cms/Behaviors/Userstamping/MacroMethods.html +181 -0
- data/doc/app/classes/Cms/Behaviors/Userstamping.html +148 -0
- data/doc/app/classes/Cms/Behaviors/Versioning/ClassMethods.html +237 -0
- data/doc/app/classes/Cms/Behaviors/Versioning/InstanceMethods.html +685 -0
- data/doc/app/classes/Cms/Behaviors/Versioning/MacroMethods.html +290 -0
- data/doc/app/classes/Cms/Behaviors/Versioning.html +148 -0
- data/doc/app/classes/Cms/Behaviors.html +235 -0
- data/doc/app/classes/Cms/CacheController.html +174 -0
- data/doc/app/classes/Cms/Caching.html +171 -0
- data/doc/app/classes/Cms/CategoriesController.html +113 -0
- data/doc/app/classes/Cms/CategoryTypesController.html +148 -0
- data/doc/app/classes/Cms/ConnectorsController.html +215 -0
- data/doc/app/classes/Cms/ContentBlockController.html +1175 -0
- data/doc/app/classes/Cms/ContentController.html +313 -0
- data/doc/app/classes/Cms/ContentTypesController.html +148 -0
- data/doc/app/classes/Cms/DashboardController.html +151 -0
- data/doc/app/classes/Cms/DataLoader.html +182 -0
- data/doc/app/classes/Cms/DynamicViewsController.html +359 -0
- data/doc/app/classes/Cms/EmailMessagesController.html +172 -0
- data/doc/app/classes/Cms/ErrorHandling.html +172 -0
- data/doc/app/classes/Cms/Errors/AccessDenied.html +146 -0
- data/doc/app/classes/Cms/Errors.html +111 -0
- data/doc/app/classes/Cms/Extensions/ActionView/Base.html +141 -0
- data/doc/app/classes/Cms/Extensions/ActionView.html +111 -0
- data/doc/app/classes/Cms/Extensions/ActiveRecord/Base.html +144 -0
- data/doc/app/classes/Cms/Extensions/ActiveRecord/Errors.html +140 -0
- data/doc/app/classes/Cms/Extensions/ActiveRecord.html +116 -0
- data/doc/app/classes/Cms/Extensions/Hash.html +175 -0
- data/doc/app/classes/Cms/Extensions/Integer.html +146 -0
- data/doc/app/classes/Cms/Extensions/NilClass.html +212 -0
- data/doc/app/classes/Cms/Extensions/String.html +212 -0
- data/doc/app/classes/Cms/Extensions.html +140 -0
- data/doc/app/classes/Cms/FileBlocksController.html +113 -0
- data/doc/app/classes/Cms/FormBuilder.html +312 -0
- data/doc/app/classes/Cms/FormTagHelper.html +245 -0
- data/doc/app/classes/Cms/GroupsController.html +225 -0
- data/doc/app/classes/Cms/HomeController.html +148 -0
- data/doc/app/classes/Cms/HtmlBlocksController.html +113 -0
- data/doc/app/classes/Cms/ImageBlocksController.html +113 -0
- data/doc/app/classes/Cms/LinksController.html +341 -0
- data/doc/app/classes/Cms/MenuHelper.html +330 -0
- data/doc/app/classes/Cms/PageHelper.html +292 -0
- data/doc/app/classes/Cms/PageRouteConditionsController.html +113 -0
- data/doc/app/classes/Cms/PageRouteOptionsController.html +355 -0
- data/doc/app/classes/Cms/PageRouteRequirementsController.html +113 -0
- data/doc/app/classes/Cms/PageRoutesController.html +284 -0
- data/doc/app/classes/Cms/PagesController.html +331 -0
- data/doc/app/classes/Cms/PathHelper.html +268 -0
- data/doc/app/classes/Cms/PortletController.html +150 -0
- data/doc/app/classes/Cms/PortletsController.html +301 -0
- data/doc/app/classes/Cms/RedirectsController.html +172 -0
- data/doc/app/classes/Cms/ResourceController.html +616 -0
- data/doc/app/classes/Cms/Routes.html +303 -0
- data/doc/app/classes/Cms/RoutesController.html +164 -0
- data/doc/app/classes/Cms/SectionNodesController.html +272 -0
- data/doc/app/classes/Cms/SectionNodesHelper.html +145 -0
- data/doc/app/classes/Cms/SectionsController.html +542 -0
- data/doc/app/classes/Cms/SessionsController.html +270 -0
- data/doc/app/classes/Cms/TagsController.html +152 -0
- data/doc/app/classes/Cms/TasksController.html +221 -0
- data/doc/app/classes/Cms/ToolbarController.html +153 -0
- data/doc/app/classes/Cms/UsersController.html +405 -0
- data/doc/app/classes/Cms.html +638 -0
- data/doc/app/classes/Connector.html +350 -0
- data/doc/app/classes/ContentType.html +448 -0
- data/doc/app/classes/ContentTypeGroup.html +111 -0
- data/doc/app/classes/DynamicPortlet.html +148 -0
- data/doc/app/classes/DynamicView.html +411 -0
- data/doc/app/classes/EmailMessage.html +228 -0
- data/doc/app/classes/EmailMessageMailer.html +150 -0
- data/doc/app/classes/EmailPagePortlet.html +184 -0
- data/doc/app/classes/FileBlock.html +202 -0
- data/doc/app/classes/Group.html +170 -0
- data/doc/app/classes/GroupPermission.html +111 -0
- data/doc/app/classes/GroupSection.html +111 -0
- data/doc/app/classes/GroupType.html +111 -0
- data/doc/app/classes/GroupTypePermission.html +111 -0
- data/doc/app/classes/GuestUser.html +347 -0
- data/doc/app/classes/HtmlBlock.html +170 -0
- data/doc/app/classes/ImageBlock.html +202 -0
- data/doc/app/classes/InitialData.html +171 -0
- data/doc/app/classes/Link.html +249 -0
- data/doc/app/classes/LoginPortlet.html +151 -0
- data/doc/app/classes/Page.html +954 -0
- data/doc/app/classes/PagePartial.html +201 -0
- data/doc/app/classes/PageRoute.html +335 -0
- data/doc/app/classes/PageRouteCondition.html +113 -0
- data/doc/app/classes/PageRouteOption.html +111 -0
- data/doc/app/classes/PageRouteRequirement.html +113 -0
- data/doc/app/classes/PageTemplate.html +278 -0
- data/doc/app/classes/Permission.html +111 -0
- data/doc/app/classes/Portlet.html +738 -0
- data/doc/app/classes/Redirect.html +111 -0
- data/doc/app/classes/Section.html +580 -0
- data/doc/app/classes/SectionNode.html +410 -0
- data/doc/app/classes/Sequence.html +146 -0
- data/doc/app/classes/Site.html +253 -0
- data/doc/app/classes/Tag.html +292 -0
- data/doc/app/classes/TagCloudPortlet.html +176 -0
- data/doc/app/classes/Tagging.html +146 -0
- data/doc/app/classes/Task.html +288 -0
- data/doc/app/classes/User.html +618 -0
- data/doc/app/classes/UserGroupMembership.html +111 -0
- data/doc/app/created.rid +1 -0
- data/doc/app/files/app/controllers/application_controller_rb.html +109 -0
- data/doc/app/files/app/controllers/cms/application_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/attachments_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/base_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/cache_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/categories_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/category_types_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/connectors_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/content_block_controller_rb.html +107 -0
- data/doc/app/files/app/controllers/cms/content_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/content_types_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/dashboard_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/dynamic_views_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/email_messages_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/error_handling_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/file_blocks_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/groups_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/home_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/html_blocks_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/image_blocks_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/links_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/page_route_conditions_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/page_route_options_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/page_route_requirements_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/page_routes_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/pages_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/portlet_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/portlets_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/redirects_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/resource_controller_rb.html +108 -0
- data/doc/app/files/app/controllers/cms/routes_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/section_nodes_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/sections_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/sessions_controller_rb.html +107 -0
- data/doc/app/files/app/controllers/cms/tags_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/tasks_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/toolbar_controller_rb.html +101 -0
- data/doc/app/files/app/controllers/cms/users_controller_rb.html +101 -0
- data/doc/app/files/app/helpers/application_helper_rb.html +108 -0
- data/doc/app/files/app/helpers/cms/application_helper_rb.html +107 -0
- data/doc/app/files/app/helpers/cms/form_builder_rb.html +101 -0
- data/doc/app/files/app/helpers/cms/form_tag_helper_rb.html +101 -0
- data/doc/app/files/app/helpers/cms/menu_helper_rb.html +101 -0
- data/doc/app/files/app/helpers/cms/page_helper_rb.html +101 -0
- data/doc/app/files/app/helpers/cms/path_helper_rb.html +101 -0
- data/doc/app/files/app/helpers/cms/section_nodes_helper_rb.html +101 -0
- data/doc/app/files/app/models/abstract_file_block_rb.html +101 -0
- data/doc/app/files/app/models/attachment_rb.html +109 -0
- data/doc/app/files/app/models/category_rb.html +101 -0
- data/doc/app/files/app/models/category_type_rb.html +101 -0
- data/doc/app/files/app/models/connector_rb.html +101 -0
- data/doc/app/files/app/models/content_type_group_rb.html +101 -0
- data/doc/app/files/app/models/content_type_rb.html +101 -0
- data/doc/app/files/app/models/dynamic_view_rb.html +101 -0
- data/doc/app/files/app/models/email_message_mailer_rb.html +101 -0
- data/doc/app/files/app/models/email_message_rb.html +101 -0
- data/doc/app/files/app/models/file_block_rb.html +101 -0
- data/doc/app/files/app/models/group_permission_rb.html +101 -0
- data/doc/app/files/app/models/group_rb.html +101 -0
- data/doc/app/files/app/models/group_section_rb.html +101 -0
- data/doc/app/files/app/models/group_type_permission_rb.html +101 -0
- data/doc/app/files/app/models/group_type_rb.html +101 -0
- data/doc/app/files/app/models/guest_user_rb.html +101 -0
- data/doc/app/files/app/models/html_block_rb.html +101 -0
- data/doc/app/files/app/models/image_block_rb.html +101 -0
- data/doc/app/files/app/models/link_rb.html +101 -0
- data/doc/app/files/app/models/page_partial_rb.html +101 -0
- data/doc/app/files/app/models/page_rb.html +101 -0
- data/doc/app/files/app/models/page_route_condition_rb.html +101 -0
- data/doc/app/files/app/models/page_route_option_rb.html +101 -0
- data/doc/app/files/app/models/page_route_rb.html +101 -0
- data/doc/app/files/app/models/page_route_requirement_rb.html +101 -0
- data/doc/app/files/app/models/page_template_rb.html +101 -0
- data/doc/app/files/app/models/permission_rb.html +101 -0
- data/doc/app/files/app/models/portlet_rb.html +101 -0
- data/doc/app/files/app/models/redirect_rb.html +101 -0
- data/doc/app/files/app/models/section_node_rb.html +101 -0
- data/doc/app/files/app/models/section_rb.html +101 -0
- data/doc/app/files/app/models/site_rb.html +101 -0
- data/doc/app/files/app/models/tag_rb.html +101 -0
- data/doc/app/files/app/models/tagging_rb.html +101 -0
- data/doc/app/files/app/models/task_rb.html +101 -0
- data/doc/app/files/app/models/user_group_membership_rb.html +101 -0
- data/doc/app/files/app/models/user_rb.html +108 -0
- data/doc/app/files/app/portlets/dynamic_portlet_rb.html +101 -0
- data/doc/app/files/app/portlets/email_page_portlet_rb.html +101 -0
- data/doc/app/files/app/portlets/login_portlet_rb.html +101 -0
- data/doc/app/files/app/portlets/tag_cloud_portlet_rb.html +101 -0
- data/doc/app/files/doc/README_FOR_APP.html +127 -0
- data/doc/app/files/lib/acts_as_list_rb.html +101 -0
- data/doc/app/files/lib/browsercms_rb.html +113 -0
- data/doc/app/files/lib/cms/acts/content_block_rb.html +101 -0
- data/doc/app/files/lib/cms/authentication/controller_rb.html +101 -0
- data/doc/app/files/lib/cms/authentication/model_rb.html +101 -0
- data/doc/app/files/lib/cms/behaviors/archiving_rb.html +101 -0
- data/doc/app/files/lib/cms/behaviors/attaching_rb.html +101 -0
- data/doc/app/files/lib/cms/behaviors/categorizing_rb.html +101 -0
- data/doc/app/files/lib/cms/behaviors/connecting_rb.html +101 -0
- data/doc/app/files/lib/cms/behaviors/dynamic_attributes_rb.html +101 -0
- data/doc/app/files/lib/cms/behaviors/flush_cache_on_change_rb.html +101 -0
- data/doc/app/files/lib/cms/behaviors/hiding_rb.html +101 -0
- data/doc/app/files/lib/cms/behaviors/pagination_rb.html +107 -0
- data/doc/app/files/lib/cms/behaviors/publishing_rb.html +101 -0
- data/doc/app/files/lib/cms/behaviors/rendering_rb.html +101 -0
- data/doc/app/files/lib/cms/behaviors/searching_rb.html +101 -0
- data/doc/app/files/lib/cms/behaviors/soft_deleting_rb.html +101 -0
- data/doc/app/files/lib/cms/behaviors/taggable_rb.html +101 -0
- data/doc/app/files/lib/cms/behaviors/userstamping_rb.html +101 -0
- data/doc/app/files/lib/cms/behaviors/versioning_rb.html +101 -0
- data/doc/app/files/lib/cms/behaviors_rb.html +147 -0
- data/doc/app/files/lib/cms/caching_rb.html +101 -0
- data/doc/app/files/lib/cms/data_loader_rb.html +101 -0
- data/doc/app/files/lib/cms/extensions/action_view/base_rb.html +101 -0
- data/doc/app/files/lib/cms/extensions/active_record/base_rb.html +101 -0
- data/doc/app/files/lib/cms/extensions/active_record/connection_adapters/abstract/schema_statements_rb.html +101 -0
- data/doc/app/files/lib/cms/extensions/active_record/errors_rb.html +101 -0
- data/doc/app/files/lib/cms/extensions/active_support/cache/file_store_rb.html +101 -0
- data/doc/app/files/lib/cms/extensions/hash_rb.html +101 -0
- data/doc/app/files/lib/cms/extensions/integer_rb.html +101 -0
- data/doc/app/files/lib/cms/extensions/nil_rb.html +101 -0
- data/doc/app/files/lib/cms/extensions/string_rb.html +101 -0
- data/doc/app/files/lib/cms/extensions_rb.html +101 -0
- data/doc/app/files/lib/cms/init_rb.html +101 -0
- data/doc/app/files/lib/cms/routes_rb.html +101 -0
- data/doc/app/files/lib/initial_data_rb.html +101 -0
- data/doc/app/files/lib/sequence_rb.html +101 -0
- data/doc/app/fr_class_index.html +205 -0
- data/doc/app/fr_file_index.html +152 -0
- data/doc/app/fr_method_index.html +738 -0
- data/doc/app/index.html +24 -0
- data/doc/app/rdoc-style.css +208 -0
- data/doc/guides/html/build_it_yourself.html +175 -0
- data/doc/guides/html/building_modules.html +193 -0
- data/doc/guides/html/deployment_guide.html +181 -0
- data/doc/guides/html/designer_guide.html +163 -0
- data/doc/guides/html/developer_guide.html +308 -0
- data/doc/guides/html/files/javascripts/code_highlighter.js +188 -0
- data/doc/guides/html/files/javascripts/guides.js +7 -0
- data/doc/guides/html/files/javascripts/highlighters.js +90 -0
- data/doc/guides/html/files/stylesheets/main.css +441 -0
- data/doc/guides/html/files/stylesheets/reset.css +43 -0
- data/doc/guides/html/files/stylesheets/style.css +13 -0
- data/doc/guides/html/files/stylesheets/syntax.css +31 -0
- data/doc/guides/html/getting_started.html +181 -0
- data/doc/guides/html/images/bg.png +0 -0
- data/doc/guides/html/images/bottom_cap.png +0 -0
- data/doc/guides/html/images/browsercms_logo.png +0 -0
- data/doc/guides/html/images/dot.png +0 -0
- data/doc/guides/html/images/icons/README +5 -0
- data/doc/guides/html/images/icons/callouts/1.png +0 -0
- data/doc/guides/html/images/icons/callouts/10.png +0 -0
- data/doc/guides/html/images/icons/callouts/11.png +0 -0
- data/doc/guides/html/images/icons/callouts/12.png +0 -0
- data/doc/guides/html/images/icons/callouts/13.png +0 -0
- data/doc/guides/html/images/icons/callouts/14.png +0 -0
- data/doc/guides/html/images/icons/callouts/15.png +0 -0
- data/doc/guides/html/images/icons/callouts/2.png +0 -0
- data/doc/guides/html/images/icons/callouts/3.png +0 -0
- data/doc/guides/html/images/icons/callouts/4.png +0 -0
- data/doc/guides/html/images/icons/callouts/5.png +0 -0
- data/doc/guides/html/images/icons/callouts/6.png +0 -0
- data/doc/guides/html/images/icons/callouts/7.png +0 -0
- data/doc/guides/html/images/icons/callouts/8.png +0 -0
- data/doc/guides/html/images/icons/callouts/9.png +0 -0
- data/doc/guides/html/images/icons/caution.png +0 -0
- data/doc/guides/html/images/icons/example.png +0 -0
- data/doc/guides/html/images/icons/home.png +0 -0
- data/doc/guides/html/images/icons/important.png +0 -0
- data/doc/guides/html/images/icons/next.png +0 -0
- data/doc/guides/html/images/icons/note.png +0 -0
- data/doc/guides/html/images/icons/prev.png +0 -0
- data/doc/guides/html/images/icons/tip.png +0 -0
- data/doc/guides/html/images/icons/up.png +0 -0
- data/doc/guides/html/images/icons/warning.png +0 -0
- data/doc/guides/html/images/top_cap.png +0 -0
- data/doc/guides/html/images/top_cap_content.png +0 -0
- data/doc/guides/html/index.html +168 -0
- data/doc/guides/html/installing_modules.html +181 -0
- data/doc/guides/html/user_guide.html +266 -0
- data/lib/acts_as_list.rb +256 -0
- data/lib/browsercms.rb +12 -0
- data/lib/cms/acts/content_block.rb +31 -0
- data/lib/cms/authentication/controller.rb +195 -0
- data/lib/cms/authentication/model.rb +116 -0
- data/lib/cms/behaviors/archiving.rb +43 -0
- data/lib/cms/behaviors/attaching.rb +184 -0
- data/lib/cms/behaviors/categorizing.rb +31 -0
- data/lib/cms/behaviors/connecting.rb +99 -0
- data/lib/cms/behaviors/dynamic_attributes.rb +367 -0
- data/lib/cms/behaviors/flush_cache_on_change.rb +33 -0
- data/lib/cms/behaviors/hiding.rb +46 -0
- data/lib/cms/behaviors/pagination.rb +209 -0
- data/lib/cms/behaviors/publishing.rb +123 -0
- data/lib/cms/behaviors/rendering.rb +157 -0
- data/lib/cms/behaviors/searching.rb +49 -0
- data/lib/cms/behaviors/soft_deleting.rb +77 -0
- data/lib/cms/behaviors/taggable.rb +57 -0
- data/lib/cms/behaviors/userstamping.rb +37 -0
- data/lib/cms/behaviors/versioning.rb +265 -0
- data/lib/cms/behaviors.rb +33 -0
- data/lib/cms/caching.rb +20 -0
- data/lib/cms/data_loader.rb +28 -0
- data/lib/cms/extensions/action_view/base.rb +13 -0
- data/lib/cms/extensions/active_record/base.rb +16 -0
- data/lib/cms/extensions/active_record/connection_adapters/abstract/schema_statements.rb +88 -0
- data/lib/cms/extensions/active_record/errors.rb +12 -0
- data/lib/cms/extensions/active_support/cache/file_store.rb +9 -0
- data/lib/cms/extensions/hash.rb +21 -0
- data/lib/cms/extensions/integer.rb +16 -0
- data/lib/cms/extensions/nil.rb +19 -0
- data/lib/cms/extensions/string.rb +19 -0
- data/lib/cms/extensions.rb +4 -0
- data/lib/cms/init.rb +106 -0
- data/lib/cms/routes.rb +136 -0
- data/lib/initial_data.rb +30 -0
- data/lib/sequence.rb +6 -0
- data/lib/tasks/cms.rake +39 -0
- data/lib/tasks/db.rake +71 -0
- data/lib/tasks/dev.rake +20 -0
- data/public/fckeditor/editor/css/behaviors/disablehandles.htc +15 -0
- data/public/fckeditor/editor/css/behaviors/showtableborders.htc +36 -0
- data/public/fckeditor/editor/css/fck_editorarea.css +110 -0
- data/public/fckeditor/editor/css/fck_internal.css +199 -0
- data/public/fckeditor/editor/css/fck_showtableborders_gecko.css +49 -0
- data/public/fckeditor/editor/css/images/block_address.png +0 -0
- data/public/fckeditor/editor/css/images/block_blockquote.png +0 -0
- data/public/fckeditor/editor/css/images/block_div.png +0 -0
- data/public/fckeditor/editor/css/images/block_h1.png +0 -0
- data/public/fckeditor/editor/css/images/block_h2.png +0 -0
- data/public/fckeditor/editor/css/images/block_h3.png +0 -0
- data/public/fckeditor/editor/css/images/block_h4.png +0 -0
- data/public/fckeditor/editor/css/images/block_h5.png +0 -0
- data/public/fckeditor/editor/css/images/block_h6.png +0 -0
- data/public/fckeditor/editor/css/images/block_p.png +0 -0
- data/public/fckeditor/editor/css/images/block_pre.png +0 -0
- data/public/fckeditor/editor/css/images/fck_anchor.gif +0 -0
- data/public/fckeditor/editor/css/images/fck_flashlogo.gif +0 -0
- data/public/fckeditor/editor/css/images/fck_hiddenfield.gif +0 -0
- data/public/fckeditor/editor/css/images/fck_pagebreak.gif +0 -0
- data/public/fckeditor/editor/css/images/fck_plugin.gif +0 -0
- data/public/fckeditor/editor/dialog/common/fck_dialog_common.css +85 -0
- data/public/fckeditor/editor/dialog/common/fck_dialog_common.js +311 -0
- data/public/fckeditor/editor/dialog/common/images/locked.gif +0 -0
- data/public/fckeditor/editor/dialog/common/images/reset.gif +0 -0
- data/public/fckeditor/editor/dialog/common/images/unlocked.gif +0 -0
- data/public/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif +0 -0
- data/public/fckeditor/editor/dialog/fck_about/logo_fredck.gif +0 -0
- data/public/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif +0 -0
- data/public/fckeditor/editor/dialog/fck_about.html +161 -0
- data/public/fckeditor/editor/dialog/fck_anchor.html +220 -0
- data/public/fckeditor/editor/dialog/fck_button.html +104 -0
- data/public/fckeditor/editor/dialog/fck_checkbox.html +104 -0
- data/public/fckeditor/editor/dialog/fck_colorselector.html +172 -0
- data/public/fckeditor/editor/dialog/fck_div.html +364 -0
- data/public/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html +113 -0
- data/public/fckeditor/editor/dialog/fck_docprops.html +600 -0
- data/public/fckeditor/editor/dialog/fck_flash/fck_flash.js +300 -0
- data/public/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html +50 -0
- data/public/fckeditor/editor/dialog/fck_flash.html +152 -0
- data/public/fckeditor/editor/dialog/fck_form.html +109 -0
- data/public/fckeditor/editor/dialog/fck_hiddenfield.html +115 -0
- data/public/fckeditor/editor/dialog/fck_image/fck_image.js +512 -0
- data/public/fckeditor/editor/dialog/fck_image/fck_image_preview.html +72 -0
- data/public/fckeditor/editor/dialog/fck_image.html +258 -0
- data/public/fckeditor/editor/dialog/fck_link/fck_link.js +893 -0
- data/public/fckeditor/editor/dialog/fck_link.html +295 -0
- data/public/fckeditor/editor/dialog/fck_listprop.html +120 -0
- data/public/fckeditor/editor/dialog/fck_paste.html +346 -0
- data/public/fckeditor/editor/dialog/fck_radiobutton.html +104 -0
- data/public/fckeditor/editor/dialog/fck_replace.html +648 -0
- data/public/fckeditor/editor/dialog/fck_select/fck_select.js +194 -0
- data/public/fckeditor/editor/dialog/fck_select.html +180 -0
- data/public/fckeditor/editor/dialog/fck_smiley.html +111 -0
- data/public/fckeditor/editor/dialog/fck_source.html +68 -0
- data/public/fckeditor/editor/dialog/fck_specialchar.html +121 -0
- data/public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html +0 -0
- data/public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js +87 -0
- data/public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html +153 -0
- data/public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm +148 -0
- data/public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php +199 -0
- data/public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl +181 -0
- data/public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js +461 -0
- data/public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html +71 -0
- data/public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css +49 -0
- data/public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js +272 -0
- data/public/fckeditor/editor/dialog/fck_spellerpages.html +70 -0
- data/public/fckeditor/editor/dialog/fck_table.html +298 -0
- data/public/fckeditor/editor/dialog/fck_tablecell.html +257 -0
- data/public/fckeditor/editor/dialog/fck_template/images/template1.gif +0 -0
- data/public/fckeditor/editor/dialog/fck_template/images/template2.gif +0 -0
- data/public/fckeditor/editor/dialog/fck_template/images/template3.gif +0 -0
- data/public/fckeditor/editor/dialog/fck_template.html +242 -0
- data/public/fckeditor/editor/dialog/fck_textarea.html +94 -0
- data/public/fckeditor/editor/dialog/fck_textfield.html +136 -0
- data/public/fckeditor/editor/dtd/fck_dtd_test.html +41 -0
- data/public/fckeditor/editor/dtd/fck_xhtml10strict.js +116 -0
- data/public/fckeditor/editor/dtd/fck_xhtml10transitional.js +140 -0
- data/public/fckeditor/editor/fckdebug.html +153 -0
- data/public/fckeditor/editor/fckdialog.html +812 -0
- data/public/fckeditor/editor/fckeditor.html +317 -0
- data/public/fckeditor/editor/fckeditor.original.html +424 -0
- data/public/fckeditor/editor/filemanager/browser/default/browser.css +87 -0
- data/public/fckeditor/editor/filemanager/browser/default/browser.html +200 -0
- data/public/fckeditor/editor/filemanager/browser/default/frmactualfolder.html +95 -0
- data/public/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html +114 -0
- data/public/fckeditor/editor/filemanager/browser/default/frmfolders.html +198 -0
- data/public/fckeditor/editor/filemanager/browser/default/frmresourceslist.html +169 -0
- data/public/fckeditor/editor/filemanager/browser/default/frmresourcetype.html +68 -0
- data/public/fckeditor/editor/filemanager/browser/default/frmupload.html +115 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/Folder.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/Folder32.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/png.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/html.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/js.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/png.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/images/spacer.gif +0 -0
- data/public/fckeditor/editor/filemanager/browser/default/js/common.js +88 -0
- data/public/fckeditor/editor/filemanager/browser/default/js/fckxml.js +147 -0
- data/public/fckeditor/editor/images/anchor.gif +0 -0
- data/public/fckeditor/editor/images/arrow_ltr.gif +0 -0
- data/public/fckeditor/editor/images/arrow_rtl.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/angel_smile.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/angry_smile.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/broken_heart.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/cake.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/confused_smile.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/cry_smile.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/devil_smile.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/embaressed_smile.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/envelope.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/heart.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/kiss.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/lightbulb.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/omg_smile.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/regular_smile.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/sad_smile.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/shades_smile.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/teeth_smile.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/thumbs_down.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/thumbs_up.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/tounge_smile.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif +0 -0
- data/public/fckeditor/editor/images/smiley/msn/wink_smile.gif +0 -0
- data/public/fckeditor/editor/images/spacer.gif +0 -0
- data/public/fckeditor/editor/js/fckadobeair.js +176 -0
- data/public/fckeditor/editor/js/fckeditorcode_gecko.js +108 -0
- data/public/fckeditor/editor/js/fckeditorcode_ie.js +109 -0
- data/public/fckeditor/editor/lang/_translationstatus.txt +78 -0
- data/public/fckeditor/editor/lang/af.js +526 -0
- data/public/fckeditor/editor/lang/ar.js +526 -0
- data/public/fckeditor/editor/lang/bg.js +526 -0
- data/public/fckeditor/editor/lang/bn.js +526 -0
- data/public/fckeditor/editor/lang/bs.js +526 -0
- data/public/fckeditor/editor/lang/ca.js +526 -0
- data/public/fckeditor/editor/lang/cs.js +526 -0
- data/public/fckeditor/editor/lang/da.js +526 -0
- data/public/fckeditor/editor/lang/de.js +526 -0
- data/public/fckeditor/editor/lang/el.js +526 -0
- data/public/fckeditor/editor/lang/en-au.js +526 -0
- data/public/fckeditor/editor/lang/en-ca.js +526 -0
- data/public/fckeditor/editor/lang/en-uk.js +526 -0
- data/public/fckeditor/editor/lang/en.js +526 -0
- data/public/fckeditor/editor/lang/eo.js +526 -0
- data/public/fckeditor/editor/lang/es.js +526 -0
- data/public/fckeditor/editor/lang/et.js +526 -0
- data/public/fckeditor/editor/lang/eu.js +527 -0
- data/public/fckeditor/editor/lang/fa.js +526 -0
- data/public/fckeditor/editor/lang/fi.js +526 -0
- data/public/fckeditor/editor/lang/fo.js +526 -0
- data/public/fckeditor/editor/lang/fr-ca.js +526 -0
- data/public/fckeditor/editor/lang/fr.js +526 -0
- data/public/fckeditor/editor/lang/gl.js +526 -0
- data/public/fckeditor/editor/lang/gu.js +526 -0
- data/public/fckeditor/editor/lang/he.js +526 -0
- data/public/fckeditor/editor/lang/hi.js +526 -0
- data/public/fckeditor/editor/lang/hr.js +526 -0
- data/public/fckeditor/editor/lang/hu.js +526 -0
- data/public/fckeditor/editor/lang/it.js +526 -0
- data/public/fckeditor/editor/lang/ja.js +526 -0
- data/public/fckeditor/editor/lang/km.js +526 -0
- data/public/fckeditor/editor/lang/ko.js +526 -0
- data/public/fckeditor/editor/lang/lt.js +526 -0
- data/public/fckeditor/editor/lang/lv.js +526 -0
- data/public/fckeditor/editor/lang/mn.js +526 -0
- data/public/fckeditor/editor/lang/ms.js +526 -0
- data/public/fckeditor/editor/lang/nb.js +526 -0
- data/public/fckeditor/editor/lang/nl.js +526 -0
- data/public/fckeditor/editor/lang/no.js +526 -0
- data/public/fckeditor/editor/lang/pl.js +526 -0
- data/public/fckeditor/editor/lang/pt-br.js +526 -0
- data/public/fckeditor/editor/lang/pt.js +526 -0
- data/public/fckeditor/editor/lang/ro.js +526 -0
- data/public/fckeditor/editor/lang/ru.js +526 -0
- data/public/fckeditor/editor/lang/sk.js +526 -0
- data/public/fckeditor/editor/lang/sl.js +526 -0
- data/public/fckeditor/editor/lang/sr-latn.js +526 -0
- data/public/fckeditor/editor/lang/sr.js +526 -0
- data/public/fckeditor/editor/lang/sv.js +526 -0
- data/public/fckeditor/editor/lang/th.js +526 -0
- data/public/fckeditor/editor/lang/tr.js +526 -0
- data/public/fckeditor/editor/lang/uk.js +526 -0
- data/public/fckeditor/editor/lang/vi.js +526 -0
- data/public/fckeditor/editor/lang/zh-cn.js +526 -0
- data/public/fckeditor/editor/lang/zh.js +526 -0
- data/public/fckeditor/editor/plugins/autogrow/fckplugin.js +99 -0
- data/public/fckeditor/editor/plugins/bbcode/_sample/sample.config.js +26 -0
- data/public/fckeditor/editor/plugins/bbcode/_sample/sample.html +67 -0
- data/public/fckeditor/editor/plugins/bbcode/fckplugin.js +123 -0
- data/public/fckeditor/editor/plugins/dragresizetable/fckplugin.js +524 -0
- data/public/fckeditor/editor/plugins/placeholder/fck_placeholder.html +105 -0
- data/public/fckeditor/editor/plugins/placeholder/fckplugin.js +187 -0
- data/public/fckeditor/editor/plugins/placeholder/lang/de.js +27 -0
- data/public/fckeditor/editor/plugins/placeholder/lang/en.js +27 -0
- data/public/fckeditor/editor/plugins/placeholder/lang/es.js +27 -0
- data/public/fckeditor/editor/plugins/placeholder/lang/fr.js +27 -0
- data/public/fckeditor/editor/plugins/placeholder/lang/it.js +27 -0
- data/public/fckeditor/editor/plugins/placeholder/lang/pl.js +27 -0
- data/public/fckeditor/editor/plugins/placeholder/placeholder.gif +0 -0
- data/public/fckeditor/editor/plugins/simplecommands/fckplugin.js +29 -0
- data/public/fckeditor/editor/plugins/tablecommands/fckplugin.js +33 -0
- data/public/fckeditor/editor/skins/_fckviewstrips.html +121 -0
- data/public/fckeditor/editor/skins/default/fck_dialog.css +402 -0
- data/public/fckeditor/editor/skins/default/fck_dialog_ie6.js +110 -0
- data/public/fckeditor/editor/skins/default/fck_editor.css +464 -0
- data/public/fckeditor/editor/skins/default/fck_strip.gif +0 -0
- data/public/fckeditor/editor/skins/default/images/dialog.sides.gif +0 -0
- data/public/fckeditor/editor/skins/default/images/dialog.sides.png +0 -0
- data/public/fckeditor/editor/skins/default/images/dialog.sides.rtl.png +0 -0
- data/public/fckeditor/editor/skins/default/images/sprites.gif +0 -0
- data/public/fckeditor/editor/skins/default/images/sprites.png +0 -0
- data/public/fckeditor/editor/skins/default/images/toolbar.arrowright.gif +0 -0
- data/public/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif +0 -0
- data/public/fckeditor/editor/skins/default/images/toolbar.collapse.gif +0 -0
- data/public/fckeditor/editor/skins/default/images/toolbar.end.gif +0 -0
- data/public/fckeditor/editor/skins/default/images/toolbar.expand.gif +0 -0
- data/public/fckeditor/editor/skins/default/images/toolbar.separator.gif +0 -0
- data/public/fckeditor/editor/skins/default/images/toolbar.start.gif +0 -0
- data/public/fckeditor/editor/skins/office2003/fck_dialog.css +402 -0
- data/public/fckeditor/editor/skins/office2003/fck_dialog_ie6.js +110 -0
- data/public/fckeditor/editor/skins/office2003/fck_editor.css +476 -0
- data/public/fckeditor/editor/skins/office2003/fck_strip.gif +0 -0
- data/public/fckeditor/editor/skins/office2003/images/dialog.sides.gif +0 -0
- data/public/fckeditor/editor/skins/office2003/images/dialog.sides.png +0 -0
- data/public/fckeditor/editor/skins/office2003/images/dialog.sides.rtl.png +0 -0
- data/public/fckeditor/editor/skins/office2003/images/sprites.gif +0 -0
- data/public/fckeditor/editor/skins/office2003/images/sprites.png +0 -0
- data/public/fckeditor/editor/skins/office2003/images/toolbar.arrowright.gif +0 -0
- data/public/fckeditor/editor/skins/office2003/images/toolbar.bg.gif +0 -0
- data/public/fckeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif +0 -0
- data/public/fckeditor/editor/skins/office2003/images/toolbar.collapse.gif +0 -0
- data/public/fckeditor/editor/skins/office2003/images/toolbar.end.gif +0 -0
- data/public/fckeditor/editor/skins/office2003/images/toolbar.expand.gif +0 -0
- data/public/fckeditor/editor/skins/office2003/images/toolbar.separator.gif +0 -0
- data/public/fckeditor/editor/skins/office2003/images/toolbar.start.gif +0 -0
- data/public/fckeditor/editor/skins/silver/fck_dialog.css +402 -0
- data/public/fckeditor/editor/skins/silver/fck_dialog_ie6.js +110 -0
- data/public/fckeditor/editor/skins/silver/fck_editor.css +473 -0
- data/public/fckeditor/editor/skins/silver/fck_strip.gif +0 -0
- data/public/fckeditor/editor/skins/silver/images/dialog.sides.gif +0 -0
- data/public/fckeditor/editor/skins/silver/images/dialog.sides.png +0 -0
- data/public/fckeditor/editor/skins/silver/images/dialog.sides.rtl.png +0 -0
- data/public/fckeditor/editor/skins/silver/images/sprites.gif +0 -0
- data/public/fckeditor/editor/skins/silver/images/sprites.png +0 -0
- data/public/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif +0 -0
- data/public/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif +0 -0
- data/public/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif +0 -0
- data/public/fckeditor/editor/skins/silver/images/toolbar.collapse.gif +0 -0
- data/public/fckeditor/editor/skins/silver/images/toolbar.end.gif +0 -0
- data/public/fckeditor/editor/skins/silver/images/toolbar.expand.gif +0 -0
- data/public/fckeditor/editor/skins/silver/images/toolbar.separator.gif +0 -0
- data/public/fckeditor/editor/skins/silver/images/toolbar.start.gif +0 -0
- data/public/fckeditor/fckconfig.js +364 -0
- data/public/fckeditor/fckdebug.html +153 -0
- data/public/fckeditor/fckdialog.html +812 -0
- data/public/fckeditor/fckeditor.html +317 -0
- data/public/fckeditor/fckeditor.js +328 -0
- data/public/fckeditor/fckeditor.original.html +424 -0
- data/public/fckeditor/fckpackager.xml +262 -0
- data/public/fckeditor/fckstyles.xml +111 -0
- data/public/fckeditor/fcktemplates.xml +103 -0
- data/public/images/cms/administration/user_browser_bg.gif +0 -0
- data/public/images/cms/bg.png +0 -0
- data/public/images/cms/bl_curve.png +0 -0
- data/public/images/cms/bottom_cap.png +0 -0
- data/public/images/cms/bottom_cap_content.png +0 -0
- data/public/images/cms/browse.gif +0 -0
- data/public/images/cms/browser_media_logo.png +0 -0
- data/public/images/cms/browsercms_logo.png +0 -0
- data/public/images/cms/buttons/button.png +0 -0
- data/public/images/cms/buttons/button_bg.png +0 -0
- data/public/images/cms/buttons/button_cap.png +0 -0
- data/public/images/cms/buttons/button_cap_h.png +0 -0
- data/public/images/cms/buttons/button_cap_off.gif +0 -0
- data/public/images/cms/buttons/button_cap_off_middle.gif +0 -0
- data/public/images/cms/buttons/button_h.png +0 -0
- data/public/images/cms/buttons/button_left_bg.png +0 -0
- data/public/images/cms/buttons/button_off.png +0 -0
- data/public/images/cms/buttons/button_off_middle.png +0 -0
- data/public/images/cms/buttons/delete_x.png +0 -0
- data/public/images/cms/buttons/delete_x_disabled.png +0 -0
- data/public/images/cms/buttons/delete_x_h.png +0 -0
- data/public/images/cms/buttons/sm_button.gif +0 -0
- data/public/images/cms/buttons/sm_button_2.gif +0 -0
- data/public/images/cms/buttons/sm_button_2_h.gif +0 -0
- data/public/images/cms/buttons/sm_button_h.gif +0 -0
- data/public/images/cms/containers/add.gif +0 -0
- data/public/images/cms/containers/alpha.png +0 -0
- data/public/images/cms/containers/beta.png +0 -0
- data/public/images/cms/containers/delete.gif +0 -0
- data/public/images/cms/containers/down.gif +0 -0
- data/public/images/cms/containers/edit.gif +0 -0
- data/public/images/cms/containers/up.gif +0 -0
- data/public/images/cms/containers/view.gif +0 -0
- data/public/images/cms/content_bg.gif +0 -0
- data/public/images/cms/dashboard/bottom_cap.png +0 -0
- data/public/images/cms/dashboard/bottom_cap_content.png +0 -0
- data/public/images/cms/dashboard/header_bg.gif +0 -0
- data/public/images/cms/dashboard/header_left_bg.gif +0 -0
- data/public/images/cms/dashboard/table_header_bg.gif +0 -0
- data/public/images/cms/dashboard/top_cap.png +0 -0
- data/public/images/cms/dashed.gif +0 -0
- data/public/images/cms/datepicker/clear.gif +0 -0
- data/public/images/cms/datepicker/close.gif +0 -0
- data/public/images/cms/dk_button_l.gif +0 -0
- data/public/images/cms/dk_button_r.gif +0 -0
- data/public/images/cms/dot.png +0 -0
- data/public/images/cms/draft_status.gif +0 -0
- data/public/images/cms/gray_long_bg.gif +0 -0
- data/public/images/cms/icons/actions/add.png +0 -0
- data/public/images/cms/icons/actions/config.png +0 -0
- data/public/images/cms/icons/actions/connect.png +0 -0
- data/public/images/cms/icons/actions/delete.png +0 -0
- data/public/images/cms/icons/actions/down.png +0 -0
- data/public/images/cms/icons/actions/edit.png +0 -0
- data/public/images/cms/icons/actions/folder.png +0 -0
- data/public/images/cms/icons/actions/folder_add.png +0 -0
- data/public/images/cms/icons/actions/folder_delete.png +0 -0
- data/public/images/cms/icons/actions/folder_edit.png +0 -0
- data/public/images/cms/icons/actions/folder_move.png +0 -0
- data/public/images/cms/icons/actions/folder_open.png +0 -0
- data/public/images/cms/icons/actions/history.png +0 -0
- data/public/images/cms/icons/actions/home.png +0 -0
- data/public/images/cms/icons/actions/left.png +0 -0
- data/public/images/cms/icons/actions/link.png +0 -0
- data/public/images/cms/icons/actions/page.png +0 -0
- data/public/images/cms/icons/actions/page_add.png +0 -0
- data/public/images/cms/icons/actions/page_edit.png +0 -0
- data/public/images/cms/icons/actions/page_move.png +0 -0
- data/public/images/cms/icons/actions/redo.png +0 -0
- data/public/images/cms/icons/actions/refresh.png +0 -0
- data/public/images/cms/icons/actions/right.png +0 -0
- data/public/images/cms/icons/actions/root_folder.png +0 -0
- data/public/images/cms/icons/actions/root_link.png +0 -0
- data/public/images/cms/icons/actions/root_page.png +0 -0
- data/public/images/cms/icons/actions/undo.png +0 -0
- data/public/images/cms/icons/actions/up.png +0 -0
- data/public/images/cms/icons/actions/view.png +0 -0
- data/public/images/cms/icons/file_types/doc.png +0 -0
- data/public/images/cms/icons/file_types/file.png +0 -0
- data/public/images/cms/icons/file_types/gif.png +0 -0
- data/public/images/cms/icons/file_types/htm.png +0 -0
- data/public/images/cms/icons/file_types/pdf.png +0 -0
- data/public/images/cms/icons/file_types/ppt.png +0 -0
- data/public/images/cms/icons/file_types/swf.png +0 -0
- data/public/images/cms/icons/file_types/txt.png +0 -0
- data/public/images/cms/icons/file_types/xls.png +0 -0
- data/public/images/cms/icons/file_types/xml.png +0 -0
- data/public/images/cms/icons/file_types/zip.png +0 -0
- data/public/images/cms/icons/status/archived.gif +0 -0
- data/public/images/cms/icons/status/draft.gif +0 -0
- data/public/images/cms/icons/status/hidden.gif +0 -0
- data/public/images/cms/icons/status/locked.gif +0 -0
- data/public/images/cms/icons/status/published.gif +0 -0
- data/public/images/cms/icons/status/unlocked.gif +0 -0
- data/public/images/cms/icons/user.png +0 -0
- data/public/images/cms/login_bg.jpg +0 -0
- data/public/images/cms/login_bottom.jpg +0 -0
- data/public/images/cms/login_top.gif +0 -0
- data/public/images/cms/lt_button_bg.gif +0 -0
- data/public/images/cms/lt_button_l.gif +0 -0
- data/public/images/cms/lt_button_r.gif +0 -0
- data/public/images/cms/menu/block_cap_h.gif +0 -0
- data/public/images/cms/menu/bottom_cap.png +0 -0
- data/public/images/cms/menu/bottom_cap_menu.png +0 -0
- data/public/images/cms/menu/bottom_cap_menu_first.png +0 -0
- data/public/images/cms/menu/menu_header_first_bg.gif +0 -0
- data/public/images/cms/menu/selected_block_cap.gif +0 -0
- data/public/images/cms/menu/top_cap.png +0 -0
- data/public/images/cms/menu/top_cap_menu_header.png +0 -0
- data/public/images/cms/menu.png +0 -0
- data/public/images/cms/menu_h.gif +0 -0
- data/public/images/cms/menu_header.png +0 -0
- data/public/images/cms/menu_open.png +0 -0
- data/public/images/cms/menu_open_bg.gif +0 -0
- data/public/images/cms/nav/on_bg.gif +0 -0
- data/public/images/cms/nav.png +0 -0
- data/public/images/cms/nav_admin.gif +0 -0
- data/public/images/cms/nav_admin_h.gif +0 -0
- data/public/images/cms/nav_admin_on.gif +0 -0
- data/public/images/cms/nav_cap.png +0 -0
- data/public/images/cms/nav_cap_h.gif +0 -0
- data/public/images/cms/nav_content_library.gif +0 -0
- data/public/images/cms/nav_content_library_h.gif +0 -0
- data/public/images/cms/nav_content_library_on.gif +0 -0
- data/public/images/cms/nav_dash.gif +0 -0
- data/public/images/cms/nav_dash_h.gif +0 -0
- data/public/images/cms/nav_dash_on.gif +0 -0
- data/public/images/cms/nav_h.gif +0 -0
- data/public/images/cms/nav_sitemap.gif +0 -0
- data/public/images/cms/nav_sitemap_h.gif +0 -0
- data/public/images/cms/nav_sitemap_on.gif +0 -0
- data/public/images/cms/page_toolbar/page_toolbar_bg.gif +0 -0
- data/public/images/cms/page_toolbar/page_toolbar_inset_bg.gif +0 -0
- data/public/images/cms/page_toolbar/page_toolbar_inset_draft_bg.gif +0 -0
- data/public/images/cms/page_toolbar/page_toolbar_inset_draft_l.gif +0 -0
- data/public/images/cms/page_toolbar/page_toolbar_inset_draft_r.gif +0 -0
- data/public/images/cms/page_toolbar/page_toolbar_inset_l.gif +0 -0
- data/public/images/cms/page_toolbar/page_toolbar_inset_published_bg.gif +0 -0
- data/public/images/cms/page_toolbar/page_toolbar_inset_published_l.gif +0 -0
- data/public/images/cms/page_toolbar/page_toolbar_inset_published_r.gif +0 -0
- data/public/images/cms/page_toolbar/page_toolbar_inset_r.gif +0 -0
- data/public/images/cms/page_toolbar/page_toolbar_l.gif +0 -0
- data/public/images/cms/page_toolbar/page_toolbar_r.gif +0 -0
- data/public/images/cms/page_toolbar/status_draft_bg.gif +0 -0
- data/public/images/cms/page_toolbar/status_draft_l.gif +0 -0
- data/public/images/cms/page_toolbar/status_l.gif +0 -0
- data/public/images/cms/page_toolbar/status_published_bg.gif +0 -0
- data/public/images/cms/page_toolbar/status_published_l.gif +0 -0
- data/public/images/cms/page_toolbar/visual_editor_bg.gif +0 -0
- data/public/images/cms/page_toolbar/visual_editor_end.gif +0 -0
- data/public/images/cms/page_toolbar/visual_editor_r.gif +0 -0
- data/public/images/cms/page_toolbar/visual_editor_state_bg.gif +0 -0
- data/public/images/cms/pages/add_connectable.gif +0 -0
- data/public/images/cms/pages/connect_connectable.gif +0 -0
- data/public/images/cms/pages/container_border.gif +0 -0
- data/public/images/cms/pages/container_border_l.gif +0 -0
- data/public/images/cms/pages/container_border_r.gif +0 -0
- data/public/images/cms/pages/delete_connectable.gif +0 -0
- data/public/images/cms/pages/down_connectable.gif +0 -0
- data/public/images/cms/pages/down_connectable_disabled.gif +0 -0
- data/public/images/cms/pages/edit_connectable.gif +0 -0
- data/public/images/cms/pages/edit_connectable_2.gif +0 -0
- data/public/images/cms/pages/show_connectable.gif +0 -0
- data/public/images/cms/pages/up_connectable.gif +0 -0
- data/public/images/cms/pages/up_connectable_disabled.gif +0 -0
- data/public/images/cms/pagination/first.gif +0 -0
- data/public/images/cms/pagination/first_h.gif +0 -0
- data/public/images/cms/pagination/input.gif +0 -0
- data/public/images/cms/pagination/last.gif +0 -0
- data/public/images/cms/pagination/last_h.gif +0 -0
- data/public/images/cms/pagination/next.gif +0 -0
- data/public/images/cms/pagination/next_h.gif +0 -0
- data/public/images/cms/pagination/previous.gif +0 -0
- data/public/images/cms/pagination/previous_h.gif +0 -0
- data/public/images/cms/published_status.gif +0 -0
- data/public/images/cms/search.png +0 -0
- data/public/images/cms/search_submit.gif +0 -0
- data/public/images/cms/search_submit_h.gif +0 -0
- data/public/images/cms/searchbox_gradient.gif +0 -0
- data/public/images/cms/select_bg.gif +0 -0
- data/public/images/cms/select_bg_2.gif +0 -0
- data/public/images/cms/sitemap/bottom_cap.png +0 -0
- data/public/images/cms/sitemap/buffer_caps.png +0 -0
- data/public/images/cms/sitemap/contract.png +0 -0
- data/public/images/cms/sitemap/corners.gif +0 -0
- data/public/images/cms/sitemap/corners_hover.gif +0 -0
- data/public/images/cms/sitemap/divider.gif +0 -0
- data/public/images/cms/sitemap/expand.png +0 -0
- data/public/images/cms/sitemap/gradient.gif +0 -0
- data/public/images/cms/sitemap/gray_contract.png +0 -0
- data/public/images/cms/sitemap/gray_expand.png +0 -0
- data/public/images/cms/sitemap/no_contents.png +0 -0
- data/public/images/cms/sitemap/site_root_cap.png +0 -0
- data/public/images/cms/sitemap/tooltip.gif +0 -0
- data/public/images/cms/sitemap/top_cap_content.png +0 -0
- data/public/images/cms/solid.gif +0 -0
- data/public/images/cms/table/bl.gif +0 -0
- data/public/images/cms/table/br.gif +0 -0
- data/public/images/cms/table/divider.gif +0 -0
- data/public/images/cms/table/td_cap_first_h.gif +0 -0
- data/public/images/cms/table/td_cap_first_s.gif +0 -0
- data/public/images/cms/table/td_cap_last_h.gif +0 -0
- data/public/images/cms/table/td_cap_last_s.gif +0 -0
- data/public/images/cms/table/td_last_bg.gif +0 -0
- data/public/images/cms/table/th_bg.gif +0 -0
- data/public/images/cms/table/th_divider.gif +0 -0
- data/public/images/cms/table/th_last_bg.gif +0 -0
- data/public/images/cms/table/tl.gif +0 -0
- data/public/images/cms/table/tr.gif +0 -0
- data/public/images/cms/table/tr_bg.gif +0 -0
- data/public/images/cms/thickbox/loadingAnimation.gif +0 -0
- data/public/images/cms/thickbox/macFFBgHack.png +0 -0
- data/public/images/cms/toolbar_bg.png +0 -0
- data/public/images/cms/top_cap.png +0 -0
- data/public/images/cms/top_cap_content.png +0 -0
- data/public/images/cms/top_cap_menu_header.png +0 -0
- data/public/images/cms/user_search_submit.gif +0 -0
- data/public/images/cms/usercontrols_bg.png +0 -0
- data/public/images/cms/usercontrols_bg_cap.png +0 -0
- data/public/javascripts/cms/application.js +148 -0
- data/public/javascripts/cms/editor.js +56 -0
- data/public/javascripts/cms/sitemap.js +438 -0
- data/public/javascripts/jquery-ui.js +591 -0
- data/public/javascripts/jquery.contextMenu.js +211 -0
- data/public/javascripts/jquery.cookie.js +96 -0
- data/public/javascripts/jquery.dimensions.js +119 -0
- data/public/javascripts/jquery.js +11 -0
- data/public/javascripts/jquery.selectbox-0.5.js +209 -0
- data/public/javascripts/jquery.taglist.js +136 -0
- data/public/javascripts/jquery.thickbox.js +10 -0
- data/public/site/customconfig.js +1 -0
- data/public/stylesheets/cms/administration.css +91 -0
- data/public/stylesheets/cms/application.css +166 -0
- data/public/stylesheets/cms/block.css +26 -0
- data/public/stylesheets/cms/buttons.css +120 -0
- data/public/stylesheets/cms/content_library.css +139 -0
- data/public/stylesheets/cms/content_types.css +4 -0
- data/public/stylesheets/cms/dashboard.css +118 -0
- data/public/stylesheets/cms/data_table.css +156 -0
- data/public/stylesheets/cms/date_picker.css +73 -0
- data/public/stylesheets/cms/form_layout.css +283 -0
- data/public/stylesheets/cms/jquery.contextMenu.css +61 -0
- data/public/stylesheets/cms/login.css +78 -0
- data/public/stylesheets/cms/menu.css +116 -0
- data/public/stylesheets/cms/nav.css +99 -0
- data/public/stylesheets/cms/page_toolbar.css +135 -0
- data/public/stylesheets/cms/reset.css +46 -0
- data/public/stylesheets/cms/selectbox.css +56 -0
- data/public/stylesheets/cms/sitemap.css +390 -0
- data/public/stylesheets/cms/taglist.css +18 -0
- data/public/stylesheets/cms/thickbox.css +163 -0
- data/public/themes/blue_steel/images/logo.jpg +0 -0
- data/public/themes/blue_steel/images/splash.jpg +0 -0
- data/public/themes/blue_steel/stylesheets/style.css +257 -0
- data/rails/init.rb +3 -0
- data/rails_generators/browser_cms/USAGE +2 -0
- data/rails_generators/browser_cms/browser_cms_generator.rb +35 -0
- data/rails_generators/browser_cms/templates/README +1 -0
- data/rails_generators/browser_cms_demo_site/USAGE +1 -0
- data/rails_generators/browser_cms_demo_site/browser_cms_demo_site_generator.rb +63 -0
- data/rails_generators/browser_cms_demo_site/templates/migration.rb +21 -0
- data/rails_generators/content_block/USAGE +32 -0
- data/rails_generators/content_block/content_block_generator.rb +69 -0
- data/rails_generators/content_block/templates/_form.html.erb +22 -0
- data/rails_generators/content_block/templates/content_block.rb +27 -0
- data/rails_generators/content_block/templates/controller.rb +2 -0
- data/rails_generators/content_block/templates/functional_test.erb +11 -0
- data/rails_generators/content_block/templates/migration.rb +38 -0
- data/rails_generators/content_block/templates/render.html.erb +14 -0
- data/rails_generators/content_block/templates/unit_test.erb +9 -0
- data/rails_generators/portlet/USAGE +37 -0
- data/rails_generators/portlet/portlet_generator.rb +31 -0
- data/rails_generators/portlet/templates/_form.html.erb +6 -0
- data/rails_generators/portlet/templates/portlet.rb +7 -0
- data/rails_generators/portlet/templates/render.html.erb +1 -0
- data/rails_generators/portlet/templates/unit_test.erb +9 -0
- data/templates/blank.rb +36 -0
- data/templates/demo.rb +28 -0
- data/templates/module.rb +945 -0
- data/test/custom_assertions.rb +68 -0
- data/test/factories.rb +109 -0
- data/test/functional/cms/cache_controller_test.rb +14 -0
- data/test/functional/cms/categories_controller_test.rb +25 -0
- data/test/functional/cms/connectors_controller_test.rb +60 -0
- data/test/functional/cms/content_block_controller_test.rb +120 -0
- data/test/functional/cms/content_controller_test.rb +434 -0
- data/test/functional/cms/content_types_controller_test.rb +18 -0
- data/test/functional/cms/dashboard_controller_test.rb +17 -0
- data/test/functional/cms/dynamic_views_controller_test.rb +28 -0
- data/test/functional/cms/file_blocks_controller_test.rb +51 -0
- data/test/functional/cms/groups_controller_test.rb +50 -0
- data/test/functional/cms/home_controller_test.rb +156 -0
- data/test/functional/cms/html_blocks_controller_test.rb +163 -0
- data/test/functional/cms/image_blocks_controller_test.rb +75 -0
- data/test/functional/cms/links_controller_test.rb +148 -0
- data/test/functional/cms/pages_controller_test.rb +220 -0
- data/test/functional/cms/portlets_controller_test.rb +67 -0
- data/test/functional/cms/section_nodes_controller_test.rb +84 -0
- data/test/functional/cms/sections_controller_test.rb +225 -0
- data/test/functional/cms/sessions_controller_test.rb +52 -0
- data/test/functional/cms/toolbar_controller_test.rb +64 -0
- data/test/functional/cms/users_controller_test.rb +231 -0
- data/test/integration/login_test.rb +14 -0
- data/test/test_helper.rb +161 -0
- data/test/test_logging.rb +67 -0
- data/test/unit/behaviors/attaching_test.rb +359 -0
- data/test/unit/behaviors/dynamic_attributes_test.rb +38 -0
- data/test/unit/behaviors/publishable_test.rb +53 -0
- data/test/unit/behaviors/searching_test.rb +102 -0
- data/test/unit/behaviors/taggable_test.rb +109 -0
- data/test/unit/extensions/active_record/base_test.rb +10 -0
- data/test/unit/extensions/hash_test.rb +17 -0
- data/test/unit/extensions/integer_test.rb +10 -0
- data/test/unit/helpers/application_helper_test.rb +29 -0
- data/test/unit/helpers/form_builder_test.rb +17 -0
- data/test/unit/helpers/menu_helper_test.rb +217 -0
- data/test/unit/helpers/page_helper_test.rb +57 -0
- data/test/unit/helpers/path_helper_test.rb +57 -0
- data/test/unit/lib/content_block_test.rb +166 -0
- data/test/unit/lib/generators_test.rb +40 -0
- data/test/unit/lib/routes_test.rb +57 -0
- data/test/unit/models/attachment_test.rb +96 -0
- data/test/unit/models/category_test.rb +40 -0
- data/test/unit/models/category_type_test.rb +8 -0
- data/test/unit/models/connector_test.rb +152 -0
- data/test/unit/models/content_type_test.rb +44 -0
- data/test/unit/models/email_page_portlet_test.rb +14 -0
- data/test/unit/models/file_block_test.rb +211 -0
- data/test/unit/models/group_test.rb +7 -0
- data/test/unit/models/html_block_test.rb +102 -0
- data/test/unit/models/link_test.rb +8 -0
- data/test/unit/models/page_partial_test.rb +29 -0
- data/test/unit/models/page_route_test.rb +29 -0
- data/test/unit/models/page_template_test.rb +37 -0
- data/test/unit/models/page_test.rb +726 -0
- data/test/unit/models/permission_test.rb +10 -0
- data/test/unit/models/portlet_test.rb +21 -0
- data/test/unit/models/section_node_test.rb +92 -0
- data/test/unit/models/sections_test.rb +125 -0
- data/test/unit/models/site_test.rb +50 -0
- data/test/unit/models/task_test.rb +126 -0
- data/test/unit/models/user_test.rb +228 -0
- data/test/unit/schema_statements_test.rb +41 -0
- metadata +1335 -0
data/templates/module.rb
ADDED
@@ -0,0 +1,945 @@
|
|
1
|
+
run "rm public/index.html"
|
2
|
+
gem "browsercms"
|
3
|
+
rake "db:create"
|
4
|
+
route "map.routes_for_browser_cms"
|
5
|
+
generate :browser_cms
|
6
|
+
environment 'SITE_DOMAIN="localhost:3000"', :env => "development"
|
7
|
+
environment 'SITE_DOMAIN="localhost:3000"', :env => "test"
|
8
|
+
environment 'SITE_DOMAIN="localhost:3000"', :env => "production"
|
9
|
+
environment 'config.action_view.cache_template_loading = false', :env => "production"
|
10
|
+
environment 'config.action_controller.page_cache_directory = RAILS_ROOT + "/public/cache/"', :env => "production"
|
11
|
+
rake "db:migrate"
|
12
|
+
|
13
|
+
git :init
|
14
|
+
file '.gitignore', <<-CODE
|
15
|
+
coverage/**/*
|
16
|
+
.DS_Store
|
17
|
+
log/*.log
|
18
|
+
tmp/**/*
|
19
|
+
db/*.sqlite3
|
20
|
+
db/schema.rb
|
21
|
+
*.gem
|
22
|
+
.dotest
|
23
|
+
tmp/restart.txt
|
24
|
+
public/cache
|
25
|
+
CODE
|
26
|
+
|
27
|
+
module_name = File.basename(root).match(/bcms_(.+)/)[1]
|
28
|
+
gem_name = "bcms_#{module_name}"
|
29
|
+
|
30
|
+
file "#{File.basename(root)}.gemspec", <<-CODE
|
31
|
+
SPEC = Gem::Specification.new do |spec|
|
32
|
+
spec.name = "#{gem_name}"
|
33
|
+
spec.rubyforge_project = spec.name
|
34
|
+
spec.version = "1.0.0"
|
35
|
+
spec.summary = "A #{module_name.titleize} Module for BrowserCMS"
|
36
|
+
spec.author = "BrowserMedia"
|
37
|
+
spec.email = "github@browsermedia.com"
|
38
|
+
spec.homepage = "http://www.browsercms.org"
|
39
|
+
spec.files += Dir["app/**/*"]
|
40
|
+
spec.files += Dir["db/migrate/*.rb"]
|
41
|
+
spec.files -= Dir["db/migrate/*_browsercms_*.rb"]
|
42
|
+
spec.files -= Dir["db/migrate/*_load_seed_data.rb"]
|
43
|
+
spec.files += Dir["lib/#{gem_name}.rb"]
|
44
|
+
spec.files += Dir["lib/#{gem_name}/*"]
|
45
|
+
spec.files += Dir["rails/init.rb"]
|
46
|
+
spec.has_rdoc = true
|
47
|
+
spec.extra_rdoc_files = ["README"]
|
48
|
+
end
|
49
|
+
CODE
|
50
|
+
|
51
|
+
file "config/initializers/init_module.rb",
|
52
|
+
%Q{require File.join(File.dirname(__FILE__), "..", "..", "lib", "#{gem_name}")}
|
53
|
+
|
54
|
+
file "lib/#{gem_name}.rb", "require '#{gem_name}/routes'\n"
|
55
|
+
|
56
|
+
file "lib/#{gem_name}/routes.rb", <<-CODE
|
57
|
+
module Cms::Routes
|
58
|
+
def routes_for_#{gem_name}
|
59
|
+
namespace(:cms) do |cms|
|
60
|
+
#cms.content_blocks :#{module_name.pluralize}
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
CODE
|
65
|
+
|
66
|
+
|
67
|
+
file "rails/init.rb", <<-CODE
|
68
|
+
gem_root = File.expand_path(File.join(File.dirname(__FILE__), ".."))
|
69
|
+
Cms.add_to_rails_paths gem_root
|
70
|
+
Cms.add_generator_paths gem_root, "db/migrate/[0-9]*_*.rb"
|
71
|
+
CODE
|
72
|
+
|
73
|
+
file "LICENSE.txt", <<-CODE
|
74
|
+
GNU LESSER GENERAL PUBLIC LICENSE
|
75
|
+
Version 3, 29 June 2007
|
76
|
+
|
77
|
+
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
78
|
+
Everyone is permitted to copy and distribute verbatim copies
|
79
|
+
of this license document, but changing it is not allowed.
|
80
|
+
|
81
|
+
|
82
|
+
This version of the GNU Lesser General Public License incorporates
|
83
|
+
the terms and conditions of version 3 of the GNU General Public
|
84
|
+
License, supplemented by the additional permissions listed below.
|
85
|
+
|
86
|
+
0. Additional Definitions.
|
87
|
+
|
88
|
+
As used herein, "this License" refers to version 3 of the GNU Lesser
|
89
|
+
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
90
|
+
General Public License.
|
91
|
+
|
92
|
+
"The Library" refers to a covered work governed by this License,
|
93
|
+
other than an Application or a Combined Work as defined below.
|
94
|
+
|
95
|
+
An "Application" is any work that makes use of an interface provided
|
96
|
+
by the Library, but which is not otherwise based on the Library.
|
97
|
+
Defining a subclass of a class defined by the Library is deemed a mode
|
98
|
+
of using an interface provided by the Library.
|
99
|
+
|
100
|
+
A "Combined Work" is a work produced by combining or linking an
|
101
|
+
Application with the Library. The particular version of the Library
|
102
|
+
with which the Combined Work was made is also called the "Linked
|
103
|
+
Version".
|
104
|
+
|
105
|
+
The "Minimal Corresponding Source" for a Combined Work means the
|
106
|
+
Corresponding Source for the Combined Work, excluding any source code
|
107
|
+
for portions of the Combined Work that, considered in isolation, are
|
108
|
+
based on the Application, and not on the Linked Version.
|
109
|
+
|
110
|
+
The "Corresponding Application Code" for a Combined Work means the
|
111
|
+
object code and/or source code for the Application, including any data
|
112
|
+
and utility programs needed for reproducing the Combined Work from the
|
113
|
+
Application, but excluding the System Libraries of the Combined Work.
|
114
|
+
|
115
|
+
1. Exception to Section 3 of the GNU GPL.
|
116
|
+
|
117
|
+
You may convey a covered work under sections 3 and 4 of this License
|
118
|
+
without being bound by section 3 of the GNU GPL.
|
119
|
+
|
120
|
+
2. Conveying Modified Versions.
|
121
|
+
|
122
|
+
If you modify a copy of the Library, and, in your modifications, a
|
123
|
+
facility refers to a function or data to be supplied by an Application
|
124
|
+
that uses the facility (other than as an argument passed when the
|
125
|
+
facility is invoked), then you may convey a copy of the modified
|
126
|
+
version:
|
127
|
+
|
128
|
+
a) under this License, provided that you make a good faith effort to
|
129
|
+
ensure that, in the event an Application does not supply the
|
130
|
+
function or data, the facility still operates, and performs
|
131
|
+
whatever part of its purpose remains meaningful, or
|
132
|
+
|
133
|
+
b) under the GNU GPL, with none of the additional permissions of
|
134
|
+
this License applicable to that copy.
|
135
|
+
|
136
|
+
3. Object Code Incorporating Material from Library Header Files.
|
137
|
+
|
138
|
+
The object code form of an Application may incorporate material from
|
139
|
+
a header file that is part of the Library. You may convey such object
|
140
|
+
code under terms of your choice, provided that, if the incorporated
|
141
|
+
material is not limited to numerical parameters, data structure
|
142
|
+
layouts and accessors, or small macros, inline functions and templates
|
143
|
+
(ten or fewer lines in length), you do both of the following:
|
144
|
+
|
145
|
+
a) Give prominent notice with each copy of the object code that the
|
146
|
+
Library is used in it and that the Library and its use are
|
147
|
+
covered by this License.
|
148
|
+
|
149
|
+
b) Accompany the object code with a copy of the GNU GPL and this license
|
150
|
+
document.
|
151
|
+
|
152
|
+
4. Combined Works.
|
153
|
+
|
154
|
+
You may convey a Combined Work under terms of your choice that,
|
155
|
+
taken together, effectively do not restrict modification of the
|
156
|
+
portions of the Library contained in the Combined Work and reverse
|
157
|
+
engineering for debugging such modifications, if you also do each of
|
158
|
+
the following:
|
159
|
+
|
160
|
+
a) Give prominent notice with each copy of the Combined Work that
|
161
|
+
the Library is used in it and that the Library and its use are
|
162
|
+
covered by this License.
|
163
|
+
|
164
|
+
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
165
|
+
document.
|
166
|
+
|
167
|
+
c) For a Combined Work that displays copyright notices during
|
168
|
+
execution, include the copyright notice for the Library among
|
169
|
+
these notices, as well as a reference directing the user to the
|
170
|
+
copies of the GNU GPL and this license document.
|
171
|
+
|
172
|
+
d) Do one of the following:
|
173
|
+
|
174
|
+
0) Convey the Minimal Corresponding Source under the terms of this
|
175
|
+
License, and the Corresponding Application Code in a form
|
176
|
+
suitable for, and under terms that permit, the user to
|
177
|
+
recombine or relink the Application with a modified version of
|
178
|
+
the Linked Version to produce a modified Combined Work, in the
|
179
|
+
manner specified by section 6 of the GNU GPL for conveying
|
180
|
+
Corresponding Source.
|
181
|
+
|
182
|
+
1) Use a suitable shared library mechanism for linking with the
|
183
|
+
Library. A suitable mechanism is one that (a) uses at run time
|
184
|
+
a copy of the Library already present on the user's computer
|
185
|
+
system, and (b) will operate properly with a modified version
|
186
|
+
of the Library that is interface-compatible with the Linked
|
187
|
+
Version.
|
188
|
+
|
189
|
+
e) Provide Installation Information, but only if you would otherwise
|
190
|
+
be required to provide such information under section 6 of the
|
191
|
+
GNU GPL, and only to the extent that such information is
|
192
|
+
necessary to install and execute a modified version of the
|
193
|
+
Combined Work produced by recombining or relinking the
|
194
|
+
Application with a modified version of the Linked Version. (If
|
195
|
+
you use option 4d0, the Installation Information must accompany
|
196
|
+
the Minimal Corresponding Source and Corresponding Application
|
197
|
+
Code. If you use option 4d1, you must provide the Installation
|
198
|
+
Information in the manner specified by section 6 of the GNU GPL
|
199
|
+
for conveying Corresponding Source.)
|
200
|
+
|
201
|
+
5. Combined Libraries.
|
202
|
+
|
203
|
+
You may place library facilities that are a work based on the
|
204
|
+
Library side by side in a single library together with other library
|
205
|
+
facilities that are not Applications and are not covered by this
|
206
|
+
License, and convey such a combined library under terms of your
|
207
|
+
choice, if you do both of the following:
|
208
|
+
|
209
|
+
a) Accompany the combined library with a copy of the same work based
|
210
|
+
on the Library, uncombined with any other library facilities,
|
211
|
+
conveyed under the terms of this License.
|
212
|
+
|
213
|
+
b) Give prominent notice with the combined library that part of it
|
214
|
+
is a work based on the Library, and explaining where to find the
|
215
|
+
accompanying uncombined form of the same work.
|
216
|
+
|
217
|
+
6. Revised Versions of the GNU Lesser General Public License.
|
218
|
+
|
219
|
+
The Free Software Foundation may publish revised and/or new versions
|
220
|
+
of the GNU Lesser General Public License from time to time. Such new
|
221
|
+
versions will be similar in spirit to the present version, but may
|
222
|
+
differ in detail to address new problems or concerns.
|
223
|
+
|
224
|
+
Each version is given a distinguishing version number. If the
|
225
|
+
Library as you received it specifies that a certain numbered version
|
226
|
+
of the GNU Lesser General Public License "or any later version"
|
227
|
+
applies to it, you have the option of following the terms and
|
228
|
+
conditions either of that published version or of any later version
|
229
|
+
published by the Free Software Foundation. If the Library as you
|
230
|
+
received it does not specify a version number of the GNU Lesser
|
231
|
+
General Public License, you may choose any version of the GNU Lesser
|
232
|
+
General Public License ever published by the Free Software Foundation.
|
233
|
+
|
234
|
+
If the Library as you received it specifies that a proxy can decide
|
235
|
+
whether future versions of the GNU Lesser General Public License shall
|
236
|
+
apply, that proxy's public statement of acceptance of any version is
|
237
|
+
permanent authorization for you to choose that version for the
|
238
|
+
Library.
|
239
|
+
CODE
|
240
|
+
|
241
|
+
file "COPYRIGHT.txt", <<-CODE
|
242
|
+
All BrowserCMS code is Copyright (C) 1998-2009 by BrowserMedia, LLC.
|
243
|
+
|
244
|
+
This program is free software: you can redistribute it and/or modify
|
245
|
+
it under the terms of the GNU Lesser General Public License as published by
|
246
|
+
the Free Software Foundation, either version 3 of the License, or
|
247
|
+
(at your option) any later version.
|
248
|
+
|
249
|
+
This program is distributed in the hope that it will be useful,
|
250
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
251
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
252
|
+
GNU Lesser General Public License for more details.
|
253
|
+
|
254
|
+
You should have received a copy of the GNU Lesser General Public License
|
255
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
256
|
+
|
257
|
+
BrowserCMS is a registered trademark of BrowserMedia, LLC.
|
258
|
+
|
259
|
+
BrowserCMS includes works under other copyright notices and distributed
|
260
|
+
according to the terms of the GNU Lesser Public License or a compatible
|
261
|
+
license, including:
|
262
|
+
|
263
|
+
- jQuery - Copyright (C) 2009 John Resig
|
264
|
+
- FCKEditor - Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
265
|
+
CODE
|
266
|
+
|
267
|
+
file "GPL.txt", <<-CODE
|
268
|
+
GNU GENERAL PUBLIC LICENSE
|
269
|
+
Version 3, 29 June 2007
|
270
|
+
|
271
|
+
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
272
|
+
Everyone is permitted to copy and distribute verbatim copies
|
273
|
+
of this license document, but changing it is not allowed.
|
274
|
+
|
275
|
+
Preamble
|
276
|
+
|
277
|
+
The GNU General Public License is a free, copyleft license for
|
278
|
+
software and other kinds of works.
|
279
|
+
|
280
|
+
The licenses for most software and other practical works are designed
|
281
|
+
to take away your freedom to share and change the works. By contrast,
|
282
|
+
the GNU General Public License is intended to guarantee your freedom to
|
283
|
+
share and change all versions of a program--to make sure it remains free
|
284
|
+
software for all its users. We, the Free Software Foundation, use the
|
285
|
+
GNU General Public License for most of our software; it applies also to
|
286
|
+
any other work released this way by its authors. You can apply it to
|
287
|
+
your programs, too.
|
288
|
+
|
289
|
+
When we speak of free software, we are referring to freedom, not
|
290
|
+
price. Our General Public Licenses are designed to make sure that you
|
291
|
+
have the freedom to distribute copies of free software (and charge for
|
292
|
+
them if you wish), that you receive source code or can get it if you
|
293
|
+
want it, that you can change the software or use pieces of it in new
|
294
|
+
free programs, and that you know you can do these things.
|
295
|
+
|
296
|
+
To protect your rights, we need to prevent others from denying you
|
297
|
+
these rights or asking you to surrender the rights. Therefore, you have
|
298
|
+
certain responsibilities if you distribute copies of the software, or if
|
299
|
+
you modify it: responsibilities to respect the freedom of others.
|
300
|
+
|
301
|
+
For example, if you distribute copies of such a program, whether
|
302
|
+
gratis or for a fee, you must pass on to the recipients the same
|
303
|
+
freedoms that you received. You must make sure that they, too, receive
|
304
|
+
or can get the source code. And you must show them these terms so they
|
305
|
+
know their rights.
|
306
|
+
|
307
|
+
Developers that use the GNU GPL protect your rights with two steps:
|
308
|
+
(1) assert copyright on the software, and (2) offer you this License
|
309
|
+
giving you legal permission to copy, distribute and/or modify it.
|
310
|
+
|
311
|
+
For the developers' and authors' protection, the GPL clearly explains
|
312
|
+
that there is no warranty for this free software. For both users' and
|
313
|
+
authors' sake, the GPL requires that modified versions be marked as
|
314
|
+
changed, so that their problems will not be attributed erroneously to
|
315
|
+
authors of previous versions.
|
316
|
+
|
317
|
+
Some devices are designed to deny users access to install or run
|
318
|
+
modified versions of the software inside them, although the manufacturer
|
319
|
+
can do so. This is fundamentally incompatible with the aim of
|
320
|
+
protecting users' freedom to change the software. The systematic
|
321
|
+
pattern of such abuse occurs in the area of products for individuals to
|
322
|
+
use, which is precisely where it is most unacceptable. Therefore, we
|
323
|
+
have designed this version of the GPL to prohibit the practice for those
|
324
|
+
products. If such problems arise substantially in other domains, we
|
325
|
+
stand ready to extend this provision to those domains in future versions
|
326
|
+
of the GPL, as needed to protect the freedom of users.
|
327
|
+
|
328
|
+
Finally, every program is threatened constantly by software patents.
|
329
|
+
States should not allow patents to restrict development and use of
|
330
|
+
software on general-purpose computers, but in those that do, we wish to
|
331
|
+
avoid the special danger that patents applied to a free program could
|
332
|
+
make it effectively proprietary. To prevent this, the GPL assures that
|
333
|
+
patents cannot be used to render the program non-free.
|
334
|
+
|
335
|
+
The precise terms and conditions for copying, distribution and
|
336
|
+
modification follow.
|
337
|
+
|
338
|
+
TERMS AND CONDITIONS
|
339
|
+
|
340
|
+
0. Definitions.
|
341
|
+
|
342
|
+
"This License" refers to version 3 of the GNU General Public License.
|
343
|
+
|
344
|
+
"Copyright" also means copyright-like laws that apply to other kinds of
|
345
|
+
works, such as semiconductor masks.
|
346
|
+
|
347
|
+
"The Program" refers to any copyrightable work licensed under this
|
348
|
+
License. Each licensee is addressed as "you". "Licensees" and
|
349
|
+
"recipients" may be individuals or organizations.
|
350
|
+
|
351
|
+
To "modify" a work means to copy from or adapt all or part of the work
|
352
|
+
in a fashion requiring copyright permission, other than the making of an
|
353
|
+
exact copy. The resulting work is called a "modified version" of the
|
354
|
+
earlier work or a work "based on" the earlier work.
|
355
|
+
|
356
|
+
A "covered work" means either the unmodified Program or a work based
|
357
|
+
on the Program.
|
358
|
+
|
359
|
+
To "propagate" a work means to do anything with it that, without
|
360
|
+
permission, would make you directly or secondarily liable for
|
361
|
+
infringement under applicable copyright law, except executing it on a
|
362
|
+
computer or modifying a private copy. Propagation includes copying,
|
363
|
+
distribution (with or without modification), making available to the
|
364
|
+
public, and in some countries other activities as well.
|
365
|
+
|
366
|
+
To "convey" a work means any kind of propagation that enables other
|
367
|
+
parties to make or receive copies. Mere interaction with a user through
|
368
|
+
a computer network, with no transfer of a copy, is not conveying.
|
369
|
+
|
370
|
+
An interactive user interface displays "Appropriate Legal Notices"
|
371
|
+
to the extent that it includes a convenient and prominently visible
|
372
|
+
feature that (1) displays an appropriate copyright notice, and (2)
|
373
|
+
tells the user that there is no warranty for the work (except to the
|
374
|
+
extent that warranties are provided), that licensees may convey the
|
375
|
+
work under this License, and how to view a copy of this License. If
|
376
|
+
the interface presents a list of user commands or options, such as a
|
377
|
+
menu, a prominent item in the list meets this criterion.
|
378
|
+
|
379
|
+
1. Source Code.
|
380
|
+
|
381
|
+
The "source code" for a work means the preferred form of the work
|
382
|
+
for making modifications to it. "Object code" means any non-source
|
383
|
+
form of a work.
|
384
|
+
|
385
|
+
A "Standard Interface" means an interface that either is an official
|
386
|
+
standard defined by a recognized standards body, or, in the case of
|
387
|
+
interfaces specified for a particular programming language, one that
|
388
|
+
is widely used among developers working in that language.
|
389
|
+
|
390
|
+
The "System Libraries" of an executable work include anything, other
|
391
|
+
than the work as a whole, that (a) is included in the normal form of
|
392
|
+
packaging a Major Component, but which is not part of that Major
|
393
|
+
Component, and (b) serves only to enable use of the work with that
|
394
|
+
Major Component, or to implement a Standard Interface for which an
|
395
|
+
implementation is available to the public in source code form. A
|
396
|
+
"Major Component", in this context, means a major essential component
|
397
|
+
(kernel, window system, and so on) of the specific operating system
|
398
|
+
(if any) on which the executable work runs, or a compiler used to
|
399
|
+
produce the work, or an object code interpreter used to run it.
|
400
|
+
|
401
|
+
The "Corresponding Source" for a work in object code form means all
|
402
|
+
the source code needed to generate, install, and (for an executable
|
403
|
+
work) run the object code and to modify the work, including scripts to
|
404
|
+
control those activities. However, it does not include the work's
|
405
|
+
System Libraries, or general-purpose tools or generally available free
|
406
|
+
programs which are used unmodified in performing those activities but
|
407
|
+
which are not part of the work. For example, Corresponding Source
|
408
|
+
includes interface definition files associated with source files for
|
409
|
+
the work, and the source code for shared libraries and dynamically
|
410
|
+
linked subprograms that the work is specifically designed to require,
|
411
|
+
such as by intimate data communication or control flow between those
|
412
|
+
subprograms and other parts of the work.
|
413
|
+
|
414
|
+
The Corresponding Source need not include anything that users
|
415
|
+
can regenerate automatically from other parts of the Corresponding
|
416
|
+
Source.
|
417
|
+
|
418
|
+
The Corresponding Source for a work in source code form is that
|
419
|
+
same work.
|
420
|
+
|
421
|
+
2. Basic Permissions.
|
422
|
+
|
423
|
+
All rights granted under this License are granted for the term of
|
424
|
+
copyright on the Program, and are irrevocable provided the stated
|
425
|
+
conditions are met. This License explicitly affirms your unlimited
|
426
|
+
permission to run the unmodified Program. The output from running a
|
427
|
+
covered work is covered by this License only if the output, given its
|
428
|
+
content, constitutes a covered work. This License acknowledges your
|
429
|
+
rights of fair use or other equivalent, as provided by copyright law.
|
430
|
+
|
431
|
+
You may make, run and propagate covered works that you do not
|
432
|
+
convey, without conditions so long as your license otherwise remains
|
433
|
+
in force. You may convey covered works to others for the sole purpose
|
434
|
+
of having them make modifications exclusively for you, or provide you
|
435
|
+
with facilities for running those works, provided that you comply with
|
436
|
+
the terms of this License in conveying all material for which you do
|
437
|
+
not control copyright. Those thus making or running the covered works
|
438
|
+
for you must do so exclusively on your behalf, under your direction
|
439
|
+
and control, on terms that prohibit them from making any copies of
|
440
|
+
your copyrighted material outside their relationship with you.
|
441
|
+
|
442
|
+
Conveying under any other circumstances is permitted solely under
|
443
|
+
the conditions stated below. Sublicensing is not allowed; section 10
|
444
|
+
makes it unnecessary.
|
445
|
+
|
446
|
+
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
447
|
+
|
448
|
+
No covered work shall be deemed part of an effective technological
|
449
|
+
measure under any applicable law fulfilling obligations under article
|
450
|
+
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
451
|
+
similar laws prohibiting or restricting circumvention of such
|
452
|
+
measures.
|
453
|
+
|
454
|
+
When you convey a covered work, you waive any legal power to forbid
|
455
|
+
circumvention of technological measures to the extent such circumvention
|
456
|
+
is effected by exercising rights under this License with respect to
|
457
|
+
the covered work, and you disclaim any intention to limit operation or
|
458
|
+
modification of the work as a means of enforcing, against the work's
|
459
|
+
users, your or third parties' legal rights to forbid circumvention of
|
460
|
+
technological measures.
|
461
|
+
|
462
|
+
4. Conveying Verbatim Copies.
|
463
|
+
|
464
|
+
You may convey verbatim copies of the Program's source code as you
|
465
|
+
receive it, in any medium, provided that you conspicuously and
|
466
|
+
appropriately publish on each copy an appropriate copyright notice;
|
467
|
+
keep intact all notices stating that this License and any
|
468
|
+
non-permissive terms added in accord with section 7 apply to the code;
|
469
|
+
keep intact all notices of the absence of any warranty; and give all
|
470
|
+
recipients a copy of this License along with the Program.
|
471
|
+
|
472
|
+
You may charge any price or no price for each copy that you convey,
|
473
|
+
and you may offer support or warranty protection for a fee.
|
474
|
+
|
475
|
+
5. Conveying Modified Source Versions.
|
476
|
+
|
477
|
+
You may convey a work based on the Program, or the modifications to
|
478
|
+
produce it from the Program, in the form of source code under the
|
479
|
+
terms of section 4, provided that you also meet all of these conditions:
|
480
|
+
|
481
|
+
a) The work must carry prominent notices stating that you modified
|
482
|
+
it, and giving a relevant date.
|
483
|
+
|
484
|
+
b) The work must carry prominent notices stating that it is
|
485
|
+
released under this License and any conditions added under section
|
486
|
+
7. This requirement modifies the requirement in section 4 to
|
487
|
+
"keep intact all notices".
|
488
|
+
|
489
|
+
c) You must license the entire work, as a whole, under this
|
490
|
+
License to anyone who comes into possession of a copy. This
|
491
|
+
License will therefore apply, along with any applicable section 7
|
492
|
+
additional terms, to the whole of the work, and all its parts,
|
493
|
+
regardless of how they are packaged. This License gives no
|
494
|
+
permission to license the work in any other way, but it does not
|
495
|
+
invalidate such permission if you have separately received it.
|
496
|
+
|
497
|
+
d) If the work has interactive user interfaces, each must display
|
498
|
+
Appropriate Legal Notices; however, if the Program has interactive
|
499
|
+
interfaces that do not display Appropriate Legal Notices, your
|
500
|
+
work need not make them do so.
|
501
|
+
|
502
|
+
A compilation of a covered work with other separate and independent
|
503
|
+
works, which are not by their nature extensions of the covered work,
|
504
|
+
and which are not combined with it such as to form a larger program,
|
505
|
+
in or on a volume of a storage or distribution medium, is called an
|
506
|
+
"aggregate" if the compilation and its resulting copyright are not
|
507
|
+
used to limit the access or legal rights of the compilation's users
|
508
|
+
beyond what the individual works permit. Inclusion of a covered work
|
509
|
+
in an aggregate does not cause this License to apply to the other
|
510
|
+
parts of the aggregate.
|
511
|
+
|
512
|
+
6. Conveying Non-Source Forms.
|
513
|
+
|
514
|
+
You may convey a covered work in object code form under the terms
|
515
|
+
of sections 4 and 5, provided that you also convey the
|
516
|
+
machine-readable Corresponding Source under the terms of this License,
|
517
|
+
in one of these ways:
|
518
|
+
|
519
|
+
a) Convey the object code in, or embodied in, a physical product
|
520
|
+
(including a physical distribution medium), accompanied by the
|
521
|
+
Corresponding Source fixed on a durable physical medium
|
522
|
+
customarily used for software interchange.
|
523
|
+
|
524
|
+
b) Convey the object code in, or embodied in, a physical product
|
525
|
+
(including a physical distribution medium), accompanied by a
|
526
|
+
written offer, valid for at least three years and valid for as
|
527
|
+
long as you offer spare parts or customer support for that product
|
528
|
+
model, to give anyone who possesses the object code either (1) a
|
529
|
+
copy of the Corresponding Source for all the software in the
|
530
|
+
product that is covered by this License, on a durable physical
|
531
|
+
medium customarily used for software interchange, for a price no
|
532
|
+
more than your reasonable cost of physically performing this
|
533
|
+
conveying of source, or (2) access to copy the
|
534
|
+
Corresponding Source from a network server at no charge.
|
535
|
+
|
536
|
+
c) Convey individual copies of the object code with a copy of the
|
537
|
+
written offer to provide the Corresponding Source. This
|
538
|
+
alternative is allowed only occasionally and noncommercially, and
|
539
|
+
only if you received the object code with such an offer, in accord
|
540
|
+
with subsection 6b.
|
541
|
+
|
542
|
+
d) Convey the object code by offering access from a designated
|
543
|
+
place (gratis or for a charge), and offer equivalent access to the
|
544
|
+
Corresponding Source in the same way through the same place at no
|
545
|
+
further charge. You need not require recipients to copy the
|
546
|
+
Corresponding Source along with the object code. If the place to
|
547
|
+
copy the object code is a network server, the Corresponding Source
|
548
|
+
may be on a different server (operated by you or a third party)
|
549
|
+
that supports equivalent copying facilities, provided you maintain
|
550
|
+
clear directions next to the object code saying where to find the
|
551
|
+
Corresponding Source. Regardless of what server hosts the
|
552
|
+
Corresponding Source, you remain obligated to ensure that it is
|
553
|
+
available for as long as needed to satisfy these requirements.
|
554
|
+
|
555
|
+
e) Convey the object code using peer-to-peer transmission, provided
|
556
|
+
you inform other peers where the object code and Corresponding
|
557
|
+
Source of the work are being offered to the general public at no
|
558
|
+
charge under subsection 6d.
|
559
|
+
|
560
|
+
A separable portion of the object code, whose source code is excluded
|
561
|
+
from the Corresponding Source as a System Library, need not be
|
562
|
+
included in conveying the object code work.
|
563
|
+
|
564
|
+
A "User Product" is either (1) a "consumer product", which means any
|
565
|
+
tangible personal property which is normally used for personal, family,
|
566
|
+
or household purposes, or (2) anything designed or sold for incorporation
|
567
|
+
into a dwelling. In determining whether a product is a consumer product,
|
568
|
+
doubtful cases shall be resolved in favor of coverage. For a particular
|
569
|
+
product received by a particular user, "normally used" refers to a
|
570
|
+
typical or common use of that class of product, regardless of the status
|
571
|
+
of the particular user or of the way in which the particular user
|
572
|
+
actually uses, or expects or is expected to use, the product. A product
|
573
|
+
is a consumer product regardless of whether the product has substantial
|
574
|
+
commercial, industrial or non-consumer uses, unless such uses represent
|
575
|
+
the only significant mode of use of the product.
|
576
|
+
|
577
|
+
"Installation Information" for a User Product means any methods,
|
578
|
+
procedures, authorization keys, or other information required to install
|
579
|
+
and execute modified versions of a covered work in that User Product from
|
580
|
+
a modified version of its Corresponding Source. The information must
|
581
|
+
suffice to ensure that the continued functioning of the modified object
|
582
|
+
code is in no case prevented or interfered with solely because
|
583
|
+
modification has been made.
|
584
|
+
|
585
|
+
If you convey an object code work under this section in, or with, or
|
586
|
+
specifically for use in, a User Product, and the conveying occurs as
|
587
|
+
part of a transaction in which the right of possession and use of the
|
588
|
+
User Product is transferred to the recipient in perpetuity or for a
|
589
|
+
fixed term (regardless of how the transaction is characterized), the
|
590
|
+
Corresponding Source conveyed under this section must be accompanied
|
591
|
+
by the Installation Information. But this requirement does not apply
|
592
|
+
if neither you nor any third party retains the ability to install
|
593
|
+
modified object code on the User Product (for example, the work has
|
594
|
+
been installed in ROM).
|
595
|
+
|
596
|
+
The requirement to provide Installation Information does not include a
|
597
|
+
requirement to continue to provide support service, warranty, or updates
|
598
|
+
for a work that has been modified or installed by the recipient, or for
|
599
|
+
the User Product in which it has been modified or installed. Access to a
|
600
|
+
network may be denied when the modification itself materially and
|
601
|
+
adversely affects the operation of the network or violates the rules and
|
602
|
+
protocols for communication across the network.
|
603
|
+
|
604
|
+
Corresponding Source conveyed, and Installation Information provided,
|
605
|
+
in accord with this section must be in a format that is publicly
|
606
|
+
documented (and with an implementation available to the public in
|
607
|
+
source code form), and must require no special password or key for
|
608
|
+
unpacking, reading or copying.
|
609
|
+
|
610
|
+
7. Additional Terms.
|
611
|
+
|
612
|
+
"Additional permissions" are terms that supplement the terms of this
|
613
|
+
License by making exceptions from one or more of its conditions.
|
614
|
+
Additional permissions that are applicable to the entire Program shall
|
615
|
+
be treated as though they were included in this License, to the extent
|
616
|
+
that they are valid under applicable law. If additional permissions
|
617
|
+
apply only to part of the Program, that part may be used separately
|
618
|
+
under those permissions, but the entire Program remains governed by
|
619
|
+
this License without regard to the additional permissions.
|
620
|
+
|
621
|
+
When you convey a copy of a covered work, you may at your option
|
622
|
+
remove any additional permissions from that copy, or from any part of
|
623
|
+
it. (Additional permissions may be written to require their own
|
624
|
+
removal in certain cases when you modify the work.) You may place
|
625
|
+
additional permissions on material, added by you to a covered work,
|
626
|
+
for which you have or can give appropriate copyright permission.
|
627
|
+
|
628
|
+
Notwithstanding any other provision of this License, for material you
|
629
|
+
add to a covered work, you may (if authorized by the copyright holders of
|
630
|
+
that material) supplement the terms of this License with terms:
|
631
|
+
|
632
|
+
a) Disclaiming warranty or limiting liability differently from the
|
633
|
+
terms of sections 15 and 16 of this License; or
|
634
|
+
|
635
|
+
b) Requiring preservation of specified reasonable legal notices or
|
636
|
+
author attributions in that material or in the Appropriate Legal
|
637
|
+
Notices displayed by works containing it; or
|
638
|
+
|
639
|
+
c) Prohibiting misrepresentation of the origin of that material, or
|
640
|
+
requiring that modified versions of such material be marked in
|
641
|
+
reasonable ways as different from the original version; or
|
642
|
+
|
643
|
+
d) Limiting the use for publicity purposes of names of licensors or
|
644
|
+
authors of the material; or
|
645
|
+
|
646
|
+
e) Declining to grant rights under trademark law for use of some
|
647
|
+
trade names, trademarks, or service marks; or
|
648
|
+
|
649
|
+
f) Requiring indemnification of licensors and authors of that
|
650
|
+
material by anyone who conveys the material (or modified versions of
|
651
|
+
it) with contractual assumptions of liability to the recipient, for
|
652
|
+
any liability that these contractual assumptions directly impose on
|
653
|
+
those licensors and authors.
|
654
|
+
|
655
|
+
All other non-permissive additional terms are considered "further
|
656
|
+
restrictions" within the meaning of section 10. If the Program as you
|
657
|
+
received it, or any part of it, contains a notice stating that it is
|
658
|
+
governed by this License along with a term that is a further
|
659
|
+
restriction, you may remove that term. If a license document contains
|
660
|
+
a further restriction but permits relicensing or conveying under this
|
661
|
+
License, you may add to a covered work material governed by the terms
|
662
|
+
of that license document, provided that the further restriction does
|
663
|
+
not survive such relicensing or conveying.
|
664
|
+
|
665
|
+
If you add terms to a covered work in accord with this section, you
|
666
|
+
must place, in the relevant source files, a statement of the
|
667
|
+
additional terms that apply to those files, or a notice indicating
|
668
|
+
where to find the applicable terms.
|
669
|
+
|
670
|
+
Additional terms, permissive or non-permissive, may be stated in the
|
671
|
+
form of a separately written license, or stated as exceptions;
|
672
|
+
the above requirements apply either way.
|
673
|
+
|
674
|
+
8. Termination.
|
675
|
+
|
676
|
+
You may not propagate or modify a covered work except as expressly
|
677
|
+
provided under this License. Any attempt otherwise to propagate or
|
678
|
+
modify it is void, and will automatically terminate your rights under
|
679
|
+
this License (including any patent licenses granted under the third
|
680
|
+
paragraph of section 11).
|
681
|
+
|
682
|
+
However, if you cease all violation of this License, then your
|
683
|
+
license from a particular copyright holder is reinstated (a)
|
684
|
+
provisionally, unless and until the copyright holder explicitly and
|
685
|
+
finally terminates your license, and (b) permanently, if the copyright
|
686
|
+
holder fails to notify you of the violation by some reasonable means
|
687
|
+
prior to 60 days after the cessation.
|
688
|
+
|
689
|
+
Moreover, your license from a particular copyright holder is
|
690
|
+
reinstated permanently if the copyright holder notifies you of the
|
691
|
+
violation by some reasonable means, this is the first time you have
|
692
|
+
received notice of violation of this License (for any work) from that
|
693
|
+
copyright holder, and you cure the violation prior to 30 days after
|
694
|
+
your receipt of the notice.
|
695
|
+
|
696
|
+
Termination of your rights under this section does not terminate the
|
697
|
+
licenses of parties who have received copies or rights from you under
|
698
|
+
this License. If your rights have been terminated and not permanently
|
699
|
+
reinstated, you do not qualify to receive new licenses for the same
|
700
|
+
material under section 10.
|
701
|
+
|
702
|
+
9. Acceptance Not Required for Having Copies.
|
703
|
+
|
704
|
+
You are not required to accept this License in order to receive or
|
705
|
+
run a copy of the Program. Ancillary propagation of a covered work
|
706
|
+
occurring solely as a consequence of using peer-to-peer transmission
|
707
|
+
to receive a copy likewise does not require acceptance. However,
|
708
|
+
nothing other than this License grants you permission to propagate or
|
709
|
+
modify any covered work. These actions infringe copyright if you do
|
710
|
+
not accept this License. Therefore, by modifying or propagating a
|
711
|
+
covered work, you indicate your acceptance of this License to do so.
|
712
|
+
|
713
|
+
10. Automatic Licensing of Downstream Recipients.
|
714
|
+
|
715
|
+
Each time you convey a covered work, the recipient automatically
|
716
|
+
receives a license from the original licensors, to run, modify and
|
717
|
+
propagate that work, subject to this License. You are not responsible
|
718
|
+
for enforcing compliance by third parties with this License.
|
719
|
+
|
720
|
+
An "entity transaction" is a transaction transferring control of an
|
721
|
+
organization, or substantially all assets of one, or subdividing an
|
722
|
+
organization, or merging organizations. If propagation of a covered
|
723
|
+
work results from an entity transaction, each party to that
|
724
|
+
transaction who receives a copy of the work also receives whatever
|
725
|
+
licenses to the work the party's predecessor in interest had or could
|
726
|
+
give under the previous paragraph, plus a right to possession of the
|
727
|
+
Corresponding Source of the work from the predecessor in interest, if
|
728
|
+
the predecessor has it or can get it with reasonable efforts.
|
729
|
+
|
730
|
+
You may not impose any further restrictions on the exercise of the
|
731
|
+
rights granted or affirmed under this License. For example, you may
|
732
|
+
not impose a license fee, royalty, or other charge for exercise of
|
733
|
+
rights granted under this License, and you may not initiate litigation
|
734
|
+
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
735
|
+
any patent claim is infringed by making, using, selling, offering for
|
736
|
+
sale, or importing the Program or any portion of it.
|
737
|
+
|
738
|
+
11. Patents.
|
739
|
+
|
740
|
+
A "contributor" is a copyright holder who authorizes use under this
|
741
|
+
License of the Program or a work on which the Program is based. The
|
742
|
+
work thus licensed is called the contributor's "contributor version".
|
743
|
+
|
744
|
+
A contributor's "essential patent claims" are all patent claims
|
745
|
+
owned or controlled by the contributor, whether already acquired or
|
746
|
+
hereafter acquired, that would be infringed by some manner, permitted
|
747
|
+
by this License, of making, using, or selling its contributor version,
|
748
|
+
but do not include claims that would be infringed only as a
|
749
|
+
consequence of further modification of the contributor version. For
|
750
|
+
purposes of this definition, "control" includes the right to grant
|
751
|
+
patent sublicenses in a manner consistent with the requirements of
|
752
|
+
this License.
|
753
|
+
|
754
|
+
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
755
|
+
patent license under the contributor's essential patent claims, to
|
756
|
+
make, use, sell, offer for sale, import and otherwise run, modify and
|
757
|
+
propagate the contents of its contributor version.
|
758
|
+
|
759
|
+
In the following three paragraphs, a "patent license" is any express
|
760
|
+
agreement or commitment, however denominated, not to enforce a patent
|
761
|
+
(such as an express permission to practice a patent or covenant not to
|
762
|
+
sue for patent infringement). To "grant" such a patent license to a
|
763
|
+
party means to make such an agreement or commitment not to enforce a
|
764
|
+
patent against the party.
|
765
|
+
|
766
|
+
If you convey a covered work, knowingly relying on a patent license,
|
767
|
+
and the Corresponding Source of the work is not available for anyone
|
768
|
+
to copy, free of charge and under the terms of this License, through a
|
769
|
+
publicly available network server or other readily accessible means,
|
770
|
+
then you must either (1) cause the Corresponding Source to be so
|
771
|
+
available, or (2) arrange to deprive yourself of the benefit of the
|
772
|
+
patent license for this particular work, or (3) arrange, in a manner
|
773
|
+
consistent with the requirements of this License, to extend the patent
|
774
|
+
license to downstream recipients. "Knowingly relying" means you have
|
775
|
+
actual knowledge that, but for the patent license, your conveying the
|
776
|
+
covered work in a country, or your recipient's use of the covered work
|
777
|
+
in a country, would infringe one or more identifiable patents in that
|
778
|
+
country that you have reason to believe are valid.
|
779
|
+
|
780
|
+
If, pursuant to or in connection with a single transaction or
|
781
|
+
arrangement, you convey, or propagate by procuring conveyance of, a
|
782
|
+
covered work, and grant a patent license to some of the parties
|
783
|
+
receiving the covered work authorizing them to use, propagate, modify
|
784
|
+
or convey a specific copy of the covered work, then the patent license
|
785
|
+
you grant is automatically extended to all recipients of the covered
|
786
|
+
work and works based on it.
|
787
|
+
|
788
|
+
A patent license is "discriminatory" if it does not include within
|
789
|
+
the scope of its coverage, prohibits the exercise of, or is
|
790
|
+
conditioned on the non-exercise of one or more of the rights that are
|
791
|
+
specifically granted under this License. You may not convey a covered
|
792
|
+
work if you are a party to an arrangement with a third party that is
|
793
|
+
in the business of distributing software, under which you make payment
|
794
|
+
to the third party based on the extent of your activity of conveying
|
795
|
+
the work, and under which the third party grants, to any of the
|
796
|
+
parties who would receive the covered work from you, a discriminatory
|
797
|
+
patent license (a) in connection with copies of the covered work
|
798
|
+
conveyed by you (or copies made from those copies), or (b) primarily
|
799
|
+
for and in connection with specific products or compilations that
|
800
|
+
contain the covered work, unless you entered into that arrangement,
|
801
|
+
or that patent license was granted, prior to 28 March 2007.
|
802
|
+
|
803
|
+
Nothing in this License shall be construed as excluding or limiting
|
804
|
+
any implied license or other defenses to infringement that may
|
805
|
+
otherwise be available to you under applicable patent law.
|
806
|
+
|
807
|
+
12. No Surrender of Others' Freedom.
|
808
|
+
|
809
|
+
If conditions are imposed on you (whether by court order, agreement or
|
810
|
+
otherwise) that contradict the conditions of this License, they do not
|
811
|
+
excuse you from the conditions of this License. If you cannot convey a
|
812
|
+
covered work so as to satisfy simultaneously your obligations under this
|
813
|
+
License and any other pertinent obligations, then as a consequence you may
|
814
|
+
not convey it at all. For example, if you agree to terms that obligate you
|
815
|
+
to collect a royalty for further conveying from those to whom you convey
|
816
|
+
the Program, the only way you could satisfy both those terms and this
|
817
|
+
License would be to refrain entirely from conveying the Program.
|
818
|
+
|
819
|
+
13. Use with the GNU Affero General Public License.
|
820
|
+
|
821
|
+
Notwithstanding any other provision of this License, you have
|
822
|
+
permission to link or combine any covered work with a work licensed
|
823
|
+
under version 3 of the GNU Affero General Public License into a single
|
824
|
+
combined work, and to convey the resulting work. The terms of this
|
825
|
+
License will continue to apply to the part which is the covered work,
|
826
|
+
but the special requirements of the GNU Affero General Public License,
|
827
|
+
section 13, concerning interaction through a network will apply to the
|
828
|
+
combination as such.
|
829
|
+
|
830
|
+
14. Revised Versions of this License.
|
831
|
+
|
832
|
+
The Free Software Foundation may publish revised and/or new versions of
|
833
|
+
the GNU General Public License from time to time. Such new versions will
|
834
|
+
be similar in spirit to the present version, but may differ in detail to
|
835
|
+
address new problems or concerns.
|
836
|
+
|
837
|
+
Each version is given a distinguishing version number. If the
|
838
|
+
Program specifies that a certain numbered version of the GNU General
|
839
|
+
Public License "or any later version" applies to it, you have the
|
840
|
+
option of following the terms and conditions either of that numbered
|
841
|
+
version or of any later version published by the Free Software
|
842
|
+
Foundation. If the Program does not specify a version number of the
|
843
|
+
GNU General Public License, you may choose any version ever published
|
844
|
+
by the Free Software Foundation.
|
845
|
+
|
846
|
+
If the Program specifies that a proxy can decide which future
|
847
|
+
versions of the GNU General Public License can be used, that proxy's
|
848
|
+
public statement of acceptance of a version permanently authorizes you
|
849
|
+
to choose that version for the Program.
|
850
|
+
|
851
|
+
Later license versions may give you additional or different
|
852
|
+
permissions. However, no additional obligations are imposed on any
|
853
|
+
author or copyright holder as a result of your choosing to follow a
|
854
|
+
later version.
|
855
|
+
|
856
|
+
15. Disclaimer of Warranty.
|
857
|
+
|
858
|
+
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
859
|
+
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
860
|
+
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
861
|
+
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
862
|
+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
863
|
+
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
864
|
+
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
865
|
+
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
866
|
+
|
867
|
+
16. Limitation of Liability.
|
868
|
+
|
869
|
+
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
870
|
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
871
|
+
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
872
|
+
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
873
|
+
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
874
|
+
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
875
|
+
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
876
|
+
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
877
|
+
SUCH DAMAGES.
|
878
|
+
|
879
|
+
17. Interpretation of Sections 15 and 16.
|
880
|
+
|
881
|
+
If the disclaimer of warranty and limitation of liability provided
|
882
|
+
above cannot be given local legal effect according to their terms,
|
883
|
+
reviewing courts shall apply local law that most closely approximates
|
884
|
+
an absolute waiver of all civil liability in connection with the
|
885
|
+
Program, unless a warranty or assumption of liability accompanies a
|
886
|
+
copy of the Program in return for a fee.
|
887
|
+
|
888
|
+
END OF TERMS AND CONDITIONS
|
889
|
+
|
890
|
+
How to Apply These Terms to Your New Programs
|
891
|
+
|
892
|
+
If you develop a new program, and you want it to be of the greatest
|
893
|
+
possible use to the public, the best way to achieve this is to make it
|
894
|
+
free software which everyone can redistribute and change under these terms.
|
895
|
+
|
896
|
+
To do so, attach the following notices to the program. It is safest
|
897
|
+
to attach them to the start of each source file to most effectively
|
898
|
+
state the exclusion of warranty; and each file should have at least
|
899
|
+
the "copyright" line and a pointer to where the full notice is found.
|
900
|
+
|
901
|
+
<one line to give the program's name and a brief idea of what it does.>
|
902
|
+
Copyright (C) <year> <name of author>
|
903
|
+
|
904
|
+
This program is free software: you can redistribute it and/or modify
|
905
|
+
it under the terms of the GNU General Public License as published by
|
906
|
+
the Free Software Foundation, either version 3 of the License, or
|
907
|
+
(at your option) any later version.
|
908
|
+
|
909
|
+
This program is distributed in the hope that it will be useful,
|
910
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
911
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
912
|
+
GNU General Public License for more details.
|
913
|
+
|
914
|
+
You should have received a copy of the GNU General Public License
|
915
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
916
|
+
|
917
|
+
Also add information on how to contact you by electronic and paper mail.
|
918
|
+
|
919
|
+
If the program does terminal interaction, make it output a short
|
920
|
+
notice like this when it starts in an interactive mode:
|
921
|
+
|
922
|
+
<program> Copyright (C) <year> <name of author>
|
923
|
+
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
924
|
+
This is free software, and you are welcome to redistribute it
|
925
|
+
under certain conditions; type `show c' for details.
|
926
|
+
|
927
|
+
The hypothetical commands `show w' and `show c' should show the appropriate
|
928
|
+
parts of the General Public License. Of course, your program's commands
|
929
|
+
might be different; for a GUI interface, you would use an "about box".
|
930
|
+
|
931
|
+
You should also get your employer (if you work as a programmer) or school,
|
932
|
+
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
933
|
+
For more information on this, and how to apply and follow the GNU GPL, see
|
934
|
+
<http://www.gnu.org/licenses/>.
|
935
|
+
|
936
|
+
The GNU General Public License does not permit incorporating your program
|
937
|
+
into proprietary programs. If your program is a subroutine library, you
|
938
|
+
may consider it more useful to permit linking proprietary applications with
|
939
|
+
the library. If this is what you want to do, use the GNU Lesser General
|
940
|
+
Public License instead of this License. But first, please read
|
941
|
+
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
942
|
+
CODE
|
943
|
+
|
944
|
+
git :add => "."
|
945
|
+
git :commit => "-a -m 'New Module'"
|