browsercms 3.0.0 → 3.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/app/controllers/cms/connectors_controller.rb +1 -1
- data/app/helpers/cms/application_helper.rb +2 -19
- data/app/helpers/cms/form_builder.rb +8 -5
- data/app/helpers/cms/menu_helper.rb +19 -5
- data/app/helpers/cms/page_helper.rb +9 -1
- data/app/helpers/cms/template_support.rb +21 -0
- data/app/models/abstract_file_block.rb +4 -0
- data/app/models/connector.rb +7 -3
- data/app/models/dynamic_view.rb +2 -4
- data/app/models/portlet.rb +22 -9
- data/app/models/section.rb +7 -5
- data/app/views/cms/blocks/_toolbar_for_member.html.erb +4 -4
- data/app/views/cms/blocks/index.html.erb +1 -1
- data/app/views/cms/blocks/usages.html.erb +44 -34
- data/app/views/cms/connectors/new.html.erb +2 -2
- data/app/views/cms/dynamic_views/_form.html.erb +1 -1
- data/app/views/cms/dynamic_views/index.html.erb +7 -3
- data/app/views/cms/email_messages/index.html.erb +3 -5
- data/app/views/cms/form_builder/_cms_datetime_select.html.erb +12 -0
- data/app/views/cms/form_builder/_cms_text_editor.html.erb +2 -2
- data/app/views/cms/form_builder/_cms_text_field.html.erb +1 -2
- data/app/views/cms/groups/_permissions.html.erb +1 -0
- data/app/views/cms/groups/_sections.html.erb +1 -0
- data/app/views/cms/groups/index.html.erb +3 -5
- data/app/views/cms/page_routes/index.html.erb +13 -7
- data/app/views/cms/page_routes/show.html.erb +4 -4
- data/app/views/cms/pages/_edit_connector.html.erb +4 -1
- data/app/views/cms/pages/_edit_container.html.erb +4 -1
- data/app/views/cms/redirects/index.html.erb +12 -7
- data/app/views/cms/routes/index.html.erb +11 -7
- data/app/views/cms/sections/_form.html.erb +4 -5
- data/app/views/cms/users/_groups.html.erb +1 -0
- data/app/views/layouts/_cms_toolbar.html.erb +37 -4
- data/app/views/layouts/_page_toolbar.html.erb +2 -2
- data/browsercms.gemspec +381 -3
- data/db/demo/data.rb +2 -1
- data/doc/app/classes/AbstractFileBlock.html +146 -0
- data/doc/app/classes/ActiveRecord.html +105 -0
- data/doc/app/classes/ActiveRecord/ConnectionAdapters/SchemaStatements.html +242 -0
- data/doc/app/classes/ActiveSupport.html +111 -0
- data/doc/app/classes/ActiveSupport/Cache.html +111 -0
- data/doc/app/classes/ActiveSupport/Cache/FileStore.html +146 -0
- data/doc/app/classes/ActsAsList.html +147 -0
- data/doc/app/classes/ActsAsList/ClassMethods.html +202 -0
- data/doc/app/classes/ActsAsList/InstanceMethods.html +510 -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.html +638 -0
- data/doc/app/classes/Cms/Acts.html +111 -0
- data/doc/app/classes/Cms/Acts/ContentBlock.html +146 -0
- data/doc/app/classes/Cms/Acts/ContentBlock/MacroMethods.html +165 -0
- data/doc/app/classes/Cms/Acts/ContentBlock/MacroMethods/InstanceMethods.html +140 -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.html +116 -0
- data/doc/app/classes/Cms/Authentication/Controller.html +702 -0
- data/doc/app/classes/Cms/Authentication/Model.html +165 -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/BaseController.html +113 -0
- data/doc/app/classes/Cms/Behaviors.html +235 -0
- data/doc/app/classes/Cms/Behaviors/Archiving.html +147 -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/Attaching.html +160 -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/Categorizing.html +148 -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/ClassMethods.html +272 -0
- data/doc/app/classes/Cms/Behaviors/Connecting.html +148 -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/DynamicAttributes.html +285 -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/FlushCacheOnChange.html +178 -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/Hiding.html +148 -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/InstanceMethods.html +234 -0
- data/doc/app/classes/Cms/Behaviors/Pagination.html +151 -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/Publishing.html +179 -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/Rendering.html +179 -0
- data/doc/app/classes/Cms/Behaviors/Rendering/MacroMethods.html +186 -0
- data/doc/app/classes/Cms/Behaviors/Searching.html +147 -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/SoftDeleting.html +148 -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/Taggable.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/Userstamping.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/Versioning.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/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.html +111 -0
- data/doc/app/classes/Cms/Errors/AccessDenied.html +146 -0
- data/doc/app/classes/Cms/Extensions.html +140 -0
- data/doc/app/classes/Cms/Extensions/ActionView.html +111 -0
- data/doc/app/classes/Cms/Extensions/ActionView/Base.html +141 -0
- data/doc/app/classes/Cms/Extensions/ActiveRecord.html +116 -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/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/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/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/deployment_guide.html +181 -0
- data/doc/guides/html/designer_guide.html +153 -0
- data/doc/guides/html/developer_guide.html +266 -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/cms/behaviors/attaching.rb +1 -1
- data/lib/cms/behaviors/rendering.rb +1 -1
- data/lib/cms/behaviors/taggable.rb +2 -1
- data/lib/cms/behaviors/versioning.rb +1 -1
- data/lib/cms/init.rb +4 -4
- data/lib/tasks/cms.rake +16 -42
- data/public/images/cms/buttons/button_cap_off_middle.gif +0 -0
- data/public/images/cms/buttons/button_left_bg.png +0 -0
- data/public/images/cms/buttons/button_off_middle.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_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_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/stylesheets/cms/administration.css +91 -91
- data/public/stylesheets/cms/block.css +25 -25
- data/public/stylesheets/cms/buttons.css +120 -111
- data/public/stylesheets/cms/content_library.css +2 -1
- data/public/stylesheets/cms/content_types.css +3 -3
- data/public/stylesheets/cms/dashboard.css +118 -118
- data/public/stylesheets/cms/data_table.css +155 -155
- data/public/stylesheets/cms/form_layout.css +269 -269
- data/public/stylesheets/cms/jquery.contextMenu.css +61 -61
- data/public/stylesheets/cms/login.css +77 -77
- data/public/stylesheets/cms/menu.css +116 -116
- data/public/stylesheets/cms/nav.css +98 -111
- data/public/stylesheets/cms/page_toolbar.css +134 -134
- data/public/stylesheets/cms/sitemap.css +31 -15
- data/rails_generators/content_block/content_block_generator.rb +4 -9
- data/rails_generators/content_block/templates/_form.html.erb +3 -1
- data/rails_generators/portlet/portlet_generator.rb +2 -6
- data/rails_generators/portlet/templates/_form.html.erb +1 -0
- data/templates/blank.rb +30 -0
- data/templates/demo.rb +28 -0
- data/templates/module.rb +945 -0
- data/test/functional/cms/connectors_controller_test.rb +12 -1
- data/test/functional/cms/portlets_controller_test.rb +10 -0
- data/test/unit/behaviors/taggable_test.rb +19 -0
- data/test/unit/helpers/menu_helper_test.rb +72 -1
- data/test/unit/lib/generators_test.rb +21 -3
- data/test/unit/models/connector_test.rb +16 -0
- data/test/unit/models/sections_test.rb +4 -0
- metadata +380 -2
@@ -56,8 +56,8 @@
|
|
56
56
|
<table class="data">
|
57
57
|
<thead>
|
58
58
|
<tr>
|
59
|
-
<th class="name first">Name</th>
|
60
|
-
<th class="updated">Updated</th>
|
59
|
+
<th class="name first"><div class="dividers">Name</div></th>
|
60
|
+
<th class="updated"><div class="dividers">Updated</div></th>
|
61
61
|
<th class="used last">Uses</th>
|
62
62
|
</tr>
|
63
63
|
</thead>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<%= f.error_messages %>
|
4
4
|
<%= f.cms_text_field :name %>
|
5
5
|
<%= f.cms_text_field :format %>
|
6
|
-
<%= f.cms_drop_down :handler, ActionView::Template.template_handler_extensions %>
|
6
|
+
<%= f.cms_drop_down :handler, ActionView::Template.template_handler_extensions, :default => "erb" %>
|
7
7
|
<%= f.cms_text_area :body, :style => "height: 500px" %>
|
8
8
|
<div class="buttons">
|
9
9
|
<%= lt_button_wrapper(f.submit("Save", :class => "submit", :tabindex => next_tabindex)) %>
|
@@ -20,9 +20,9 @@
|
|
20
20
|
<% end %>
|
21
21
|
|
22
22
|
<% content_for :functions do %>
|
23
|
-
<%= link_to(span_tag("Add"), cms_new_path_for(dynamic_view_type.name.underscore), :class => "button") %>
|
24
|
-
<%= link_to(span_tag("Edit"), '#', :id => 'edit_button', :class => "button disabled") %>
|
25
|
-
<%= link_to span_tag("Delete"), "#",
|
23
|
+
<%= link_to(span_tag(" Add "), cms_new_path_for(dynamic_view_type.name.underscore), :class => "button") %>
|
24
|
+
<%= link_to(span_tag(" Edit "), '#', :id => 'edit_button', :class => "button disabled") %>
|
25
|
+
<%= link_to span_tag("<span class=\"delete_img\"> </span>Delete"), "#",
|
26
26
|
:id => "delete_button",
|
27
27
|
:class => "button disabled http_delete",
|
28
28
|
:onclick => "return confirm('Are you sure you want to delete this #{dynamic_view_type.name.underscore.titleize}?')" %>
|
@@ -45,4 +45,8 @@
|
|
45
45
|
</tr>
|
46
46
|
<% end %>
|
47
47
|
</table>
|
48
|
+
<div class="tl"></div>
|
49
|
+
<div class="tr"></div>
|
50
|
+
<div class="bl"></div>
|
51
|
+
<div class="br"></div>
|
48
52
|
</div>
|
@@ -5,11 +5,9 @@
|
|
5
5
|
<table class="data" width="100%">
|
6
6
|
<thead>
|
7
7
|
<tr>
|
8
|
-
<th class="first"></th>
|
9
|
-
<th><div class="dividers">
|
10
|
-
<th><div class="dividers">
|
11
|
-
<th style="width: 20%;">Delivered</th>
|
12
|
-
<th class="last"></th>
|
8
|
+
<th class="first" colspan="2"><div class="dividers">To</div></th>
|
9
|
+
<th style="width: 48%;"><div class="dividers">Subject</div></th>
|
10
|
+
<th class="last" colspan="2" style="width: 20%;"><div class="dividers">Delivered</div></th>
|
13
11
|
</tr>
|
14
12
|
</thead>
|
15
13
|
<tbody>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<div class="fields text_fields">
|
2
|
+
<% if cms_options[:label] %>
|
3
|
+
<%= f.label method, cms_options[:label] %>
|
4
|
+
<% else %>
|
5
|
+
<%= f.label method %>
|
6
|
+
<% end %>
|
7
|
+
<%= f.datetime_select method, options %>
|
8
|
+
<% if cms_options[:instructions] %>
|
9
|
+
<div class="instructions"><%=h cms_options[:instructions] %></div>
|
10
|
+
<br clear="all"/>
|
11
|
+
<% end %>
|
12
|
+
</div>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<% content_for :html_head do %>
|
2
2
|
<% javascript_tag do %>
|
3
3
|
jQuery(function($) {
|
4
|
-
$('select
|
4
|
+
$('select.<%= object_name %>_<%= method %>_dhtml_selector').selectbox({width: '96px', dhtml_selector: '<%= object_name %>_<%= method %>'});
|
5
5
|
})
|
6
6
|
<% end %>
|
7
7
|
<% end %>
|
@@ -11,7 +11,7 @@
|
|
11
11
|
<% else %>
|
12
12
|
<%= f.label method %>
|
13
13
|
<% end %>
|
14
|
-
<%= drop_down_tag :dhtml_selector, options_for_select([["Rich Text", ""],["Simple Text", "disabled"]], cookies[:editorEnabled] == 'true' ? "" : "disabled"), :class => "
|
14
|
+
<%= drop_down_tag :dhtml_selector, options_for_select([["Rich Text", ""],["Simple Text", "disabled"]], cookies[:editorEnabled] == 'true' ? "" : "disabled"), :class => "#{object_name}_#{method}_dhtml_selector", :onchange => "toggleEditor('#{id}', this)" %>
|
15
15
|
<div class="editor">
|
16
16
|
<%= f.text_editor method, options %>
|
17
17
|
</div>
|
@@ -10,8 +10,7 @@
|
|
10
10
|
<table class="data">
|
11
11
|
<thead>
|
12
12
|
<tr>
|
13
|
-
<th class="first"
|
14
|
-
<th>
|
13
|
+
<th colspan="2" class="first">
|
15
14
|
<div class="dividers">
|
16
15
|
<%= link_to "Name", cms_groups_path(:order => determine_order(params[:order], "groups.name")) %>
|
17
16
|
</div>
|
@@ -21,8 +20,7 @@
|
|
21
20
|
<%= link_to "Type", cms_groups_path(:order => determine_order(params[:order], "group_types.name")) %>
|
22
21
|
</div>
|
23
22
|
</th>
|
24
|
-
<th class="last">Permissions</th>
|
25
|
-
<th class="last"></th>
|
23
|
+
<th colspan="2" class="last"><div class="dividers">Permissions</div></th>
|
26
24
|
</tr>
|
27
25
|
</thead>
|
28
26
|
<% section_count = Section.count %>
|
@@ -57,4 +55,4 @@
|
|
57
55
|
</div>
|
58
56
|
<% if @groups.total_pages > 1 %>
|
59
57
|
<%= render_pagination @groups, :groups %>
|
60
|
-
<% end %>
|
58
|
+
<% end %>
|
@@ -20,9 +20,9 @@
|
|
20
20
|
<% end %>
|
21
21
|
|
22
22
|
<% content_for :functions do %>
|
23
|
-
<%= link_to(span_tag("Add"), new_cms_page_route_path, :class => "button") %>
|
24
|
-
<%= link_to(span_tag("Edit"), '#', :id => 'edit_button', :class => "button disabled") %>
|
25
|
-
<%= link_to span_tag("Delete"), "#",
|
23
|
+
<%= link_to(span_tag(" Add "), new_cms_page_route_path, :class => "button") %>
|
24
|
+
<%= link_to(span_tag(" Edit "), '#', :id => 'edit_button', :class => "button disabled") %>
|
25
|
+
<%= link_to span_tag("<span class=\"delete_img\"> </span>Delete"), "#",
|
26
26
|
:id => "delete_button",
|
27
27
|
:class => "button disabled http_delete",
|
28
28
|
:onclick => "return confirm('Are you sure you want to delete this Page Route?')" %>
|
@@ -33,10 +33,8 @@
|
|
33
33
|
<div class="roundedcorners">
|
34
34
|
<table class="data">
|
35
35
|
<tr>
|
36
|
-
<th class="first"></th>
|
37
|
-
<th><div class="dividers">
|
38
|
-
<th><div>Pattern</div></th>
|
39
|
-
<th class="last"></th>
|
36
|
+
<th class="first" colspan="2"><div class="dividers">Name</div></th>
|
37
|
+
<th colspan="2" class="last"><div class="dividers">Pattern</div></th>
|
40
38
|
</tr>
|
41
39
|
<% @page_routes.each do |page_route| %>
|
42
40
|
<tr id="page_route_<%= page_route.id %>">
|
@@ -46,5 +44,13 @@
|
|
46
44
|
<td class="last"></td>
|
47
45
|
</tr>
|
48
46
|
<% end %>
|
47
|
+
<tr>
|
48
|
+
<td colspan="4" class="buffer"></td>
|
49
|
+
</tr>
|
50
|
+
|
49
51
|
</table>
|
52
|
+
<div class="tl"></div>
|
53
|
+
<div class="tr"></div>
|
54
|
+
<div class="bl"></div>
|
55
|
+
<div class="br"></div>
|
50
56
|
</div>
|
@@ -1,9 +1,9 @@
|
|
1
1
|
<% @toolbar_title = page_title "'#{@page_route.name}' Page Route" %>
|
2
2
|
|
3
3
|
<% content_for :functions do %>
|
4
|
-
<%= link_to(span_tag("Add"), new_cms_page_route_path, :class => "button") %>
|
5
|
-
<%= link_to(span_tag("Edit"), edit_cms_page_route_path(@page_route), :id => 'edit_button', :class => "button") %>
|
6
|
-
<%= link_to span_tag("Delete"), [:cms, @page_route],
|
4
|
+
<%= link_to(span_tag(" Add "), new_cms_page_route_path, :class => "button") %>
|
5
|
+
<%= link_to(span_tag(" Edit "), edit_cms_page_route_path(@page_route), :id => 'edit_button', :class => "button") %>
|
6
|
+
<%= link_to span_tag("<span class=\"delete_img\"> </span>Delete"), [:cms, @page_route],
|
7
7
|
:id => "delete_button",
|
8
8
|
:class => "button http_delete",
|
9
9
|
:onclick => "return confirm('Are you sure you want to delete this Page Route?')" %>
|
@@ -11,4 +11,4 @@
|
|
11
11
|
<%= link_to(span_tag("View Rails Routes"), cms_routes_path, :class => "button") %>
|
12
12
|
<% end %>
|
13
13
|
|
14
|
-
<%= @page_route.name %>
|
14
|
+
<%= @page_route.name %>
|
@@ -10,7 +10,10 @@
|
|
10
10
|
<%= image_tag("cms/pages/down_connectable_disabled.gif", :style => "text-decoration: none; padding: 0; background: none; margin: 0; float: none; border: none;") %>
|
11
11
|
<% end %>
|
12
12
|
<%= link_to image_tag("cms/pages/delete_connectable.gif", :style => "text-decoration: none; padding: 0; background: none; margin: 0; float: none; border: none;"), cms_connector_path(connector, :_redirect_to => @page.path), :class => "confirm_with_title http_delete", :title => "Remove this content from page (#{connectable.name}). It will remain available in the Content Library." , :style => "text-decoration: none; padding: 0 2px 0 0; background: none; margin: 0; float: none; border: none;"%>
|
13
|
-
<%=
|
13
|
+
<%= status_icon connector.status,
|
14
|
+
:class => "published_status",
|
15
|
+
:title => connector.live? ? "This content is published and can be seen by site visitors." : "This content is a draft and won't be seen by site visitors until this page is published." ,
|
16
|
+
:style => "text-decoration: none; padding: 0 2px 0 0; background: none; margin: 0; float: none; border: 0; position: absolute; top: -1px; right: 10px;" %>
|
14
17
|
</div>
|
15
18
|
<%= render_connectable connectable %>
|
16
19
|
</div>
|
@@ -2,7 +2,10 @@
|
|
2
2
|
<div style="display: block; width: 100%; position: absolute; top: 5px; left: 5px; height: 30px;">
|
3
3
|
<%= link_to image_tag("cms/pages/add_connectable.gif", :style => "text-decoration: none; padding: 0; background: none; margin: 0; float: none; border: none;"), cms_content_types_path(:connect_to_page_id => @page, :connect_to_container => name), :title => "Add new content to this container (#{name})" , :style => "text-decoration: none; padding: 0 2px 0 0; background: none; margin: 0; float: none; border: none;"%>
|
4
4
|
<%= link_to image_tag("cms/pages/connect_connectable.gif", :style => "text-decoration: none; padding: 0; background: none; margin: 0; float: none; border: none;"), new_cms_connector_path(:page_id => @page, :container => name), :title => "Insert existing content into this container (#{name})" , :style => "text-decoration: none; padding: 0 2px 0 0; background: none; margin: 0; float: none; border: none;"%>
|
5
|
-
<%=
|
5
|
+
<%= image_tag "cms/#{@page.container_published?(name) ? 'published' : 'draft'}_status.gif",
|
6
|
+
:class => "published_status",
|
7
|
+
:title => @page.container_published?(name) ? "This content is published and can be seen by site visitors." : "This content is a draft and won't be seen by site visitors until this page is published.",
|
8
|
+
:style => "text-decoration: none; padding: 0 2px 0 0; background: none; margin: 0; float: none; border: none; position: absolute; top: -1px; right: 12px;" %>
|
6
9
|
</div>
|
7
10
|
<%= content %>
|
8
11
|
</div>
|
@@ -19,18 +19,16 @@
|
|
19
19
|
<% end %>
|
20
20
|
<% end %>
|
21
21
|
<% content_for :functions do %>
|
22
|
-
<%= link_to(span_tag("Add"), new_cms_redirect_path, :class => "button") %>
|
23
|
-
<%= link_to(span_tag("Edit"), '#', :id => 'edit_button', :class => "button disabled") %>
|
24
|
-
<%= link_to span_tag("Delete"), "#", :id => "delete_button", :class => "button disabled http_delete", :onclick => "return confirm('Are you sure you want to delete this redirect?')" %>
|
22
|
+
<%= link_to(span_tag(" Add "), new_cms_redirect_path, :class => "button") %>
|
23
|
+
<%= link_to(span_tag(" Edit "), '#', :id => 'edit_button', :class => "button disabled") %>
|
24
|
+
<%= link_to span_tag("<span class=\"delete_img\"> </span>Delete"), "#", :id => "delete_button", :class => "button disabled http_delete", :onclick => "return confirm('Are you sure you want to delete this redirect?')" %>
|
25
25
|
<% end %>
|
26
26
|
<div class="roundedcorners">
|
27
27
|
<table class="data">
|
28
28
|
<thead>
|
29
29
|
<tr>
|
30
|
-
<th class="first"></th>
|
31
|
-
<th
|
32
|
-
<th>To</th>
|
33
|
-
<th class="last"></th>
|
30
|
+
<th class="first" colspan="2" style="width: 48%;"><div class="dividers">From</div></th>
|
31
|
+
<th class="last" colspan="2"><div class="dividers">To</div></th>
|
34
32
|
</tr>
|
35
33
|
</thead>
|
36
34
|
<% @redirects.each do |redirect| %>
|
@@ -41,5 +39,12 @@
|
|
41
39
|
<td class="last"></td>
|
42
40
|
</tr>
|
43
41
|
<% end %>
|
42
|
+
<tr>
|
43
|
+
<td colspan="4" class="buffer"></td>
|
44
|
+
</tr>
|
44
45
|
</table>
|
46
|
+
<div class="tl"></div>
|
47
|
+
<div class="tr"></div>
|
48
|
+
<div class="bl"></div>
|
49
|
+
<div class="br"></div>
|
45
50
|
</div>
|
@@ -15,15 +15,14 @@
|
|
15
15
|
<% end %>
|
16
16
|
<% end %>
|
17
17
|
</div>
|
18
|
-
|
18
|
+
<div class="roundedcorners">
|
19
19
|
<table class="data">
|
20
20
|
<tr>
|
21
|
-
<th class="first"></th>
|
22
|
-
<th><div class="dividers">
|
23
|
-
<th><div class="dividers">Verb</div></th>
|
21
|
+
<th class="first" colspan="2"><div class="dividers">Name</div></th>
|
22
|
+
<th><div class="dividers" style="width: 50px;">Verb</div></th>
|
24
23
|
<th><div class="dividers">Pattern</div></th>
|
25
|
-
<th><div class="dividers">Result</div></th>
|
26
|
-
|
24
|
+
<th class="last" colspan="2"><div class="dividers">Result</div></th>
|
25
|
+
|
27
26
|
</tr>
|
28
27
|
<% for route in @routes %><tr>
|
29
28
|
<td class="first"></td>
|
@@ -33,4 +32,9 @@
|
|
33
32
|
<td><%=h route[:reqs] %></td>
|
34
33
|
<td class="last"></td>
|
35
34
|
</tr><% end %>
|
36
|
-
</table>
|
35
|
+
</table>
|
36
|
+
<div class="tl"></div>
|
37
|
+
<div class="tr"></div>
|
38
|
+
<div class="bl"></div>
|
39
|
+
<div class="br"></div>
|
40
|
+
</div>
|
@@ -19,7 +19,7 @@
|
|
19
19
|
<div class="checkbox_fields">
|
20
20
|
<%= check_box_tag "section[group_ids][]", group.id,
|
21
21
|
@section.groups.include?(group), :class => "public_group_ids", :id => "public_group_ids_#{group.id}", :tabindex => next_tabindex %>
|
22
|
-
<label><%= group.name %></label>
|
22
|
+
<label for="public_group_ids_<%= group.id %>"><%= group.name %></label>
|
23
23
|
</div>
|
24
24
|
<% end %>
|
25
25
|
<div class="instructions">Which “Public” groups can view pages in this section?</div>
|
@@ -32,7 +32,7 @@
|
|
32
32
|
|
33
33
|
<br clear="all" />
|
34
34
|
|
35
|
-
<div class="checkbox_group fields" style="">
|
35
|
+
<div class="checkbox_group fields" style="float: left; width: 100%">
|
36
36
|
<label>CMS Permissions</label>
|
37
37
|
<%= hidden_field_tag "section[group_ids][]", "", :id => nil %>
|
38
38
|
<div class="checkboxes">
|
@@ -40,7 +40,7 @@
|
|
40
40
|
<div class="checkbox_fields">
|
41
41
|
<%= check_box_tag "section[group_ids][]", group.id,
|
42
42
|
@section.groups.include?(group), :class => "cms_group_ids", :id => "cms_group_ids_#{group.id}", :tabindex => next_tabindex %>
|
43
|
-
<label><%= group.name %></label>
|
43
|
+
<label for="cms_group_ids_<%= group.id %>"><%= group.name %></label>
|
44
44
|
</div>
|
45
45
|
<% end %>
|
46
46
|
<div class="instructions">Which “CMS” groups can edit pages and content in this section?</div>
|
@@ -49,9 +49,8 @@
|
|
49
49
|
<%= link_to_uncheck_all 'input.cms_group_ids' %>
|
50
50
|
</div>
|
51
51
|
</div>
|
52
|
-
<br clear="all" />
|
53
52
|
</div>
|
54
|
-
|
53
|
+
<br clear="all" />
|
55
54
|
|
56
55
|
<div class="buttons">
|
57
56
|
<%= lt_button_wrapper(f.submit("Save", :class => "submit", :tabindex => next_tabindex)) %>
|
@@ -2,10 +2,10 @@
|
|
2
2
|
<div id="nav">
|
3
3
|
<h1><%= link_to image_tag("cms/browsercms_logo.png"), "/", :target => "_top" %></h1>
|
4
4
|
<ul id="section">
|
5
|
-
<li
|
6
|
-
<% able_to?(:edit_content, :publish_content) do %><li
|
7
|
-
<% able_to?(:edit_content, :publish_content) do %><li
|
8
|
-
<% able_to?(:administrate) do %><li
|
5
|
+
<li><%= link_to image_tag("/images/cms/nav_dash#{'_on' if tab == :dashboard}.gif", :id => 'nav_dash_img'), cms_dashboard_path, :target => "_top" %></li>
|
6
|
+
<% able_to?(:edit_content, :publish_content) do %><li><%= link_to image_tag("/images/cms/nav_sitemap#{'_on' if tab == :sitemap}.gif", :id => 'nav_sitemap_img'), cms_sitemap_path, :target => "_top" %></li><% end %>
|
7
|
+
<% able_to?(:edit_content, :publish_content) do %><li><%= link_to image_tag("/images/cms/nav_content_library#{'_on' if tab == :content_library}.gif", :id => 'nav_content_library_img'), cms_content_library_path, :target => "_top" %></li><% end %>
|
8
|
+
<% able_to?(:administrate) do %><li><%= link_to image_tag("/images/cms/nav_admin#{'_on' if tab == :administration}.gif", :id => 'nav_admin_img'), cms_administration_path, :target => "_top" %></li><% end %>
|
9
9
|
</ul>
|
10
10
|
<ul id="userlinks">
|
11
11
|
<li id="user_info"><%= image_tag "cms/icons/user.png" %><span><%= current_user.full_name %></span></li>
|
@@ -19,3 +19,36 @@
|
|
19
19
|
</div>
|
20
20
|
</div>
|
21
21
|
<% end -%>
|
22
|
+
<% javascript_tag do %>
|
23
|
+
jQuery(function($){
|
24
|
+
<% unless tab == :dashboard %>
|
25
|
+
$('#nav_dash_img').hover(function(){
|
26
|
+
$('#nav_dash_img').attr('src', '/images/cms/nav_dash_h.gif');
|
27
|
+
}, function(){
|
28
|
+
$('#nav_dash_img').attr('src', '/images/cms/nav_dash.gif');
|
29
|
+
});
|
30
|
+
<% end %>
|
31
|
+
<% unless tab == :sitemap %>
|
32
|
+
$('#nav_sitemap_img').hover(function(){
|
33
|
+
$('#nav_sitemap_img').attr('src', '/images/cms/nav_sitemap_h.gif');
|
34
|
+
}, function(){
|
35
|
+
$('#nav_sitemap_img').attr('src', '/images/cms/nav_sitemap.gif');
|
36
|
+
});
|
37
|
+
<% end %>
|
38
|
+
<% unless tab == :content_library %>
|
39
|
+
$('#nav_content_library_img').hover(function(){
|
40
|
+
$('#nav_content_library_img').attr('src', '/images/cms/nav_content_library_h.gif');
|
41
|
+
}, function(){
|
42
|
+
$('#nav_content_library_img').attr('src', '/images/cms/nav_content_library.gif');
|
43
|
+
});
|
44
|
+
<% end %>
|
45
|
+
<% unless tab == :administration %>
|
46
|
+
$('#nav_admin_img').hover(function(){
|
47
|
+
$('#nav_admin_img').attr('src', '/images/cms/nav_admin_h.gif');
|
48
|
+
}, function(){
|
49
|
+
$('#nav_admin_img').attr('src', '/images/cms/nav_admin.gif');
|
50
|
+
});
|
51
|
+
<% end %>
|
52
|
+
|
53
|
+
});
|
54
|
+
<% end %>
|
@@ -73,7 +73,7 @@
|
|
73
73
|
|
74
74
|
<%= link_to "<span>List Versions</span>",
|
75
75
|
versions_cms_page_path(@page),
|
76
|
-
:class => "spacer button
|
76
|
+
:class => "spacer button",
|
77
77
|
:target => "_top" %>
|
78
78
|
|
79
79
|
<% able_to? :publish_content do %>
|
@@ -83,7 +83,7 @@
|
|
83
83
|
:id => "delete_button",
|
84
84
|
:title => "Are you sure you want to delete '#{@page.name}'?",
|
85
85
|
:target => "_top",
|
86
|
-
:class => "button confirm_with_title http_delete
|
86
|
+
:class => "spacer button confirm_with_title http_delete" %>
|
87
87
|
<% else %>
|
88
88
|
<%= link_to "<span>Revert to this Version</span>",
|
89
89
|
revert_to_cms_page_path(@page, @page.version),
|
data/browsercms.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{browsercms}
|
5
|
-
s.version = "3.0.
|
5
|
+
s.version = "3.0.1"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["BrowserMedia"]
|
9
|
-
s.date = %q{2009-
|
9
|
+
s.date = %q{2009-07-14}
|
10
10
|
s.email = %q{github@browsermedia.com}
|
11
11
|
s.extra_rdoc_files = [
|
12
12
|
"LICENSE.txt",
|
@@ -59,6 +59,7 @@ Gem::Specification.new do |s|
|
|
59
59
|
"app/helpers/cms/page_helper.rb",
|
60
60
|
"app/helpers/cms/path_helper.rb",
|
61
61
|
"app/helpers/cms/section_nodes_helper.rb",
|
62
|
+
"app/helpers/cms/template_support.rb",
|
62
63
|
"app/models/abstract_file_block.rb",
|
63
64
|
"app/models/attachment.rb",
|
64
65
|
"app/models/category.rb",
|
@@ -130,6 +131,7 @@ Gem::Specification.new do |s|
|
|
130
131
|
"app/views/cms/file_blocks/_form.html.erb",
|
131
132
|
"app/views/cms/file_blocks/render.html.erb",
|
132
133
|
"app/views/cms/form_builder/_cms_date_picker.html.erb",
|
134
|
+
"app/views/cms/form_builder/_cms_datetime_select.html.erb",
|
133
135
|
"app/views/cms/form_builder/_cms_drop_down.html.erb",
|
134
136
|
"app/views/cms/form_builder/_cms_file_field.html.erb",
|
135
137
|
"app/views/cms/form_builder/_cms_tag_list.html.erb",
|
@@ -229,6 +231,364 @@ Gem::Specification.new do |s|
|
|
229
231
|
"db/demo/page_templates/sub_page.html.erb",
|
230
232
|
"db/migrate/20080815014337_browsercms_3_0_0.rb",
|
231
233
|
"db/migrate/20081114172307_load_seed_data.rb",
|
234
|
+
"doc/app/classes/AbstractFileBlock.html",
|
235
|
+
"doc/app/classes/ActiveRecord.html",
|
236
|
+
"doc/app/classes/ActiveRecord/ConnectionAdapters/SchemaStatements.html",
|
237
|
+
"doc/app/classes/ActiveSupport.html",
|
238
|
+
"doc/app/classes/ActiveSupport/Cache.html",
|
239
|
+
"doc/app/classes/ActiveSupport/Cache/FileStore.html",
|
240
|
+
"doc/app/classes/ActsAsList.html",
|
241
|
+
"doc/app/classes/ActsAsList/ClassMethods.html",
|
242
|
+
"doc/app/classes/ActsAsList/InstanceMethods.html",
|
243
|
+
"doc/app/classes/ApplicationController.html",
|
244
|
+
"doc/app/classes/ApplicationHelper.html",
|
245
|
+
"doc/app/classes/Attachment.html",
|
246
|
+
"doc/app/classes/Category.html",
|
247
|
+
"doc/app/classes/CategoryType.html",
|
248
|
+
"doc/app/classes/Cms.html",
|
249
|
+
"doc/app/classes/Cms/Acts.html",
|
250
|
+
"doc/app/classes/Cms/Acts/ContentBlock.html",
|
251
|
+
"doc/app/classes/Cms/Acts/ContentBlock/MacroMethods.html",
|
252
|
+
"doc/app/classes/Cms/Acts/ContentBlock/MacroMethods/InstanceMethods.html",
|
253
|
+
"doc/app/classes/Cms/ApplicationController.html",
|
254
|
+
"doc/app/classes/Cms/ApplicationHelper.html",
|
255
|
+
"doc/app/classes/Cms/AttachmentsController.html",
|
256
|
+
"doc/app/classes/Cms/Authentication.html",
|
257
|
+
"doc/app/classes/Cms/Authentication/Controller.html",
|
258
|
+
"doc/app/classes/Cms/Authentication/Model.html",
|
259
|
+
"doc/app/classes/Cms/Authentication/Model/ClassMethods.html",
|
260
|
+
"doc/app/classes/Cms/Authentication/Model/InstanceMethods.html",
|
261
|
+
"doc/app/classes/Cms/BaseController.html",
|
262
|
+
"doc/app/classes/Cms/Behaviors.html",
|
263
|
+
"doc/app/classes/Cms/Behaviors/Archiving.html",
|
264
|
+
"doc/app/classes/Cms/Behaviors/Archiving/InstanceMethods.html",
|
265
|
+
"doc/app/classes/Cms/Behaviors/Archiving/MacroMethods.html",
|
266
|
+
"doc/app/classes/Cms/Behaviors/Attaching.html",
|
267
|
+
"doc/app/classes/Cms/Behaviors/Attaching/InstanceMethods.html",
|
268
|
+
"doc/app/classes/Cms/Behaviors/Attaching/MacroMethods.html",
|
269
|
+
"doc/app/classes/Cms/Behaviors/Categorizing.html",
|
270
|
+
"doc/app/classes/Cms/Behaviors/Categorizing/ClassMethods.html",
|
271
|
+
"doc/app/classes/Cms/Behaviors/Categorizing/InstanceMethods.html",
|
272
|
+
"doc/app/classes/Cms/Behaviors/Categorizing/MacroMethods.html",
|
273
|
+
"doc/app/classes/Cms/Behaviors/ClassMethods.html",
|
274
|
+
"doc/app/classes/Cms/Behaviors/Connecting.html",
|
275
|
+
"doc/app/classes/Cms/Behaviors/Connecting/ClassMethods.html",
|
276
|
+
"doc/app/classes/Cms/Behaviors/Connecting/InstanceMethods.html",
|
277
|
+
"doc/app/classes/Cms/Behaviors/Connecting/MacroMethods.html",
|
278
|
+
"doc/app/classes/Cms/Behaviors/DynamicAttributes.html",
|
279
|
+
"doc/app/classes/Cms/Behaviors/DynamicAttributes/InstanceMethods.html",
|
280
|
+
"doc/app/classes/Cms/Behaviors/DynamicAttributes/MacroMethods.html",
|
281
|
+
"doc/app/classes/Cms/Behaviors/FlushCacheOnChange.html",
|
282
|
+
"doc/app/classes/Cms/Behaviors/FlushCacheOnChange/InstanceMethods.html",
|
283
|
+
"doc/app/classes/Cms/Behaviors/FlushCacheOnChange/MacroMethods.html",
|
284
|
+
"doc/app/classes/Cms/Behaviors/Hiding.html",
|
285
|
+
"doc/app/classes/Cms/Behaviors/Hiding/ClassMethods.html",
|
286
|
+
"doc/app/classes/Cms/Behaviors/Hiding/InstanceMethods.html",
|
287
|
+
"doc/app/classes/Cms/Behaviors/Hiding/MacroMethods.html",
|
288
|
+
"doc/app/classes/Cms/Behaviors/InstanceMethods.html",
|
289
|
+
"doc/app/classes/Cms/Behaviors/Pagination.html",
|
290
|
+
"doc/app/classes/Cms/Behaviors/Pagination/ClassMethods.html",
|
291
|
+
"doc/app/classes/Cms/Behaviors/Pagination/Collection.html",
|
292
|
+
"doc/app/classes/Cms/Behaviors/Pagination/InvalidPage.html",
|
293
|
+
"doc/app/classes/Cms/Behaviors/Publishing.html",
|
294
|
+
"doc/app/classes/Cms/Behaviors/Publishing/ClassMethods.html",
|
295
|
+
"doc/app/classes/Cms/Behaviors/Publishing/InstanceMethods.html",
|
296
|
+
"doc/app/classes/Cms/Behaviors/Publishing/MacroMethods.html",
|
297
|
+
"doc/app/classes/Cms/Behaviors/Rendering.html",
|
298
|
+
"doc/app/classes/Cms/Behaviors/Rendering/MacroMethods.html",
|
299
|
+
"doc/app/classes/Cms/Behaviors/Searching.html",
|
300
|
+
"doc/app/classes/Cms/Behaviors/Searching/ClassMethods.html",
|
301
|
+
"doc/app/classes/Cms/Behaviors/Searching/MacroMethods.html",
|
302
|
+
"doc/app/classes/Cms/Behaviors/SoftDeleting.html",
|
303
|
+
"doc/app/classes/Cms/Behaviors/SoftDeleting/ClassMethods.html",
|
304
|
+
"doc/app/classes/Cms/Behaviors/SoftDeleting/InstanceMethods.html",
|
305
|
+
"doc/app/classes/Cms/Behaviors/SoftDeleting/MacroMethods.html",
|
306
|
+
"doc/app/classes/Cms/Behaviors/Taggable.html",
|
307
|
+
"doc/app/classes/Cms/Behaviors/Taggable/ClassMethods.html",
|
308
|
+
"doc/app/classes/Cms/Behaviors/Taggable/InstanceMethods.html",
|
309
|
+
"doc/app/classes/Cms/Behaviors/Taggable/MacroMethods.html",
|
310
|
+
"doc/app/classes/Cms/Behaviors/Userstamping.html",
|
311
|
+
"doc/app/classes/Cms/Behaviors/Userstamping/ClassMethods.html",
|
312
|
+
"doc/app/classes/Cms/Behaviors/Userstamping/InstanceMethods.html",
|
313
|
+
"doc/app/classes/Cms/Behaviors/Userstamping/MacroMethods.html",
|
314
|
+
"doc/app/classes/Cms/Behaviors/Versioning.html",
|
315
|
+
"doc/app/classes/Cms/Behaviors/Versioning/ClassMethods.html",
|
316
|
+
"doc/app/classes/Cms/Behaviors/Versioning/InstanceMethods.html",
|
317
|
+
"doc/app/classes/Cms/Behaviors/Versioning/MacroMethods.html",
|
318
|
+
"doc/app/classes/Cms/CacheController.html",
|
319
|
+
"doc/app/classes/Cms/Caching.html",
|
320
|
+
"doc/app/classes/Cms/CategoriesController.html",
|
321
|
+
"doc/app/classes/Cms/CategoryTypesController.html",
|
322
|
+
"doc/app/classes/Cms/ConnectorsController.html",
|
323
|
+
"doc/app/classes/Cms/ContentBlockController.html",
|
324
|
+
"doc/app/classes/Cms/ContentController.html",
|
325
|
+
"doc/app/classes/Cms/ContentTypesController.html",
|
326
|
+
"doc/app/classes/Cms/DashboardController.html",
|
327
|
+
"doc/app/classes/Cms/DataLoader.html",
|
328
|
+
"doc/app/classes/Cms/DynamicViewsController.html",
|
329
|
+
"doc/app/classes/Cms/EmailMessagesController.html",
|
330
|
+
"doc/app/classes/Cms/ErrorHandling.html",
|
331
|
+
"doc/app/classes/Cms/Errors.html",
|
332
|
+
"doc/app/classes/Cms/Errors/AccessDenied.html",
|
333
|
+
"doc/app/classes/Cms/Extensions.html",
|
334
|
+
"doc/app/classes/Cms/Extensions/ActionView.html",
|
335
|
+
"doc/app/classes/Cms/Extensions/ActionView/Base.html",
|
336
|
+
"doc/app/classes/Cms/Extensions/ActiveRecord.html",
|
337
|
+
"doc/app/classes/Cms/Extensions/ActiveRecord/Base.html",
|
338
|
+
"doc/app/classes/Cms/Extensions/ActiveRecord/Errors.html",
|
339
|
+
"doc/app/classes/Cms/Extensions/Hash.html",
|
340
|
+
"doc/app/classes/Cms/Extensions/Integer.html",
|
341
|
+
"doc/app/classes/Cms/Extensions/NilClass.html",
|
342
|
+
"doc/app/classes/Cms/Extensions/String.html",
|
343
|
+
"doc/app/classes/Cms/FileBlocksController.html",
|
344
|
+
"doc/app/classes/Cms/FormBuilder.html",
|
345
|
+
"doc/app/classes/Cms/FormTagHelper.html",
|
346
|
+
"doc/app/classes/Cms/GroupsController.html",
|
347
|
+
"doc/app/classes/Cms/HomeController.html",
|
348
|
+
"doc/app/classes/Cms/HtmlBlocksController.html",
|
349
|
+
"doc/app/classes/Cms/ImageBlocksController.html",
|
350
|
+
"doc/app/classes/Cms/LinksController.html",
|
351
|
+
"doc/app/classes/Cms/MenuHelper.html",
|
352
|
+
"doc/app/classes/Cms/PageHelper.html",
|
353
|
+
"doc/app/classes/Cms/PageRouteConditionsController.html",
|
354
|
+
"doc/app/classes/Cms/PageRouteOptionsController.html",
|
355
|
+
"doc/app/classes/Cms/PageRouteRequirementsController.html",
|
356
|
+
"doc/app/classes/Cms/PageRoutesController.html",
|
357
|
+
"doc/app/classes/Cms/PagesController.html",
|
358
|
+
"doc/app/classes/Cms/PathHelper.html",
|
359
|
+
"doc/app/classes/Cms/PortletController.html",
|
360
|
+
"doc/app/classes/Cms/PortletsController.html",
|
361
|
+
"doc/app/classes/Cms/RedirectsController.html",
|
362
|
+
"doc/app/classes/Cms/ResourceController.html",
|
363
|
+
"doc/app/classes/Cms/Routes.html",
|
364
|
+
"doc/app/classes/Cms/RoutesController.html",
|
365
|
+
"doc/app/classes/Cms/SectionNodesController.html",
|
366
|
+
"doc/app/classes/Cms/SectionNodesHelper.html",
|
367
|
+
"doc/app/classes/Cms/SectionsController.html",
|
368
|
+
"doc/app/classes/Cms/SessionsController.html",
|
369
|
+
"doc/app/classes/Cms/TagsController.html",
|
370
|
+
"doc/app/classes/Cms/TasksController.html",
|
371
|
+
"doc/app/classes/Cms/ToolbarController.html",
|
372
|
+
"doc/app/classes/Cms/UsersController.html",
|
373
|
+
"doc/app/classes/Connector.html",
|
374
|
+
"doc/app/classes/ContentType.html",
|
375
|
+
"doc/app/classes/ContentTypeGroup.html",
|
376
|
+
"doc/app/classes/DynamicPortlet.html",
|
377
|
+
"doc/app/classes/DynamicView.html",
|
378
|
+
"doc/app/classes/EmailMessage.html",
|
379
|
+
"doc/app/classes/EmailMessageMailer.html",
|
380
|
+
"doc/app/classes/EmailPagePortlet.html",
|
381
|
+
"doc/app/classes/FileBlock.html",
|
382
|
+
"doc/app/classes/Group.html",
|
383
|
+
"doc/app/classes/GroupPermission.html",
|
384
|
+
"doc/app/classes/GroupSection.html",
|
385
|
+
"doc/app/classes/GroupType.html",
|
386
|
+
"doc/app/classes/GroupTypePermission.html",
|
387
|
+
"doc/app/classes/GuestUser.html",
|
388
|
+
"doc/app/classes/HtmlBlock.html",
|
389
|
+
"doc/app/classes/ImageBlock.html",
|
390
|
+
"doc/app/classes/InitialData.html",
|
391
|
+
"doc/app/classes/Link.html",
|
392
|
+
"doc/app/classes/LoginPortlet.html",
|
393
|
+
"doc/app/classes/Page.html",
|
394
|
+
"doc/app/classes/PagePartial.html",
|
395
|
+
"doc/app/classes/PageRoute.html",
|
396
|
+
"doc/app/classes/PageRouteCondition.html",
|
397
|
+
"doc/app/classes/PageRouteOption.html",
|
398
|
+
"doc/app/classes/PageRouteRequirement.html",
|
399
|
+
"doc/app/classes/PageTemplate.html",
|
400
|
+
"doc/app/classes/Permission.html",
|
401
|
+
"doc/app/classes/Portlet.html",
|
402
|
+
"doc/app/classes/Redirect.html",
|
403
|
+
"doc/app/classes/Section.html",
|
404
|
+
"doc/app/classes/SectionNode.html",
|
405
|
+
"doc/app/classes/Sequence.html",
|
406
|
+
"doc/app/classes/Site.html",
|
407
|
+
"doc/app/classes/Tag.html",
|
408
|
+
"doc/app/classes/TagCloudPortlet.html",
|
409
|
+
"doc/app/classes/Tagging.html",
|
410
|
+
"doc/app/classes/Task.html",
|
411
|
+
"doc/app/classes/User.html",
|
412
|
+
"doc/app/classes/UserGroupMembership.html",
|
413
|
+
"doc/app/created.rid",
|
414
|
+
"doc/app/files/app/controllers/application_controller_rb.html",
|
415
|
+
"doc/app/files/app/controllers/cms/application_controller_rb.html",
|
416
|
+
"doc/app/files/app/controllers/cms/attachments_controller_rb.html",
|
417
|
+
"doc/app/files/app/controllers/cms/base_controller_rb.html",
|
418
|
+
"doc/app/files/app/controllers/cms/cache_controller_rb.html",
|
419
|
+
"doc/app/files/app/controllers/cms/categories_controller_rb.html",
|
420
|
+
"doc/app/files/app/controllers/cms/category_types_controller_rb.html",
|
421
|
+
"doc/app/files/app/controllers/cms/connectors_controller_rb.html",
|
422
|
+
"doc/app/files/app/controllers/cms/content_block_controller_rb.html",
|
423
|
+
"doc/app/files/app/controllers/cms/content_controller_rb.html",
|
424
|
+
"doc/app/files/app/controllers/cms/content_types_controller_rb.html",
|
425
|
+
"doc/app/files/app/controllers/cms/dashboard_controller_rb.html",
|
426
|
+
"doc/app/files/app/controllers/cms/dynamic_views_controller_rb.html",
|
427
|
+
"doc/app/files/app/controllers/cms/email_messages_controller_rb.html",
|
428
|
+
"doc/app/files/app/controllers/cms/error_handling_rb.html",
|
429
|
+
"doc/app/files/app/controllers/cms/file_blocks_controller_rb.html",
|
430
|
+
"doc/app/files/app/controllers/cms/groups_controller_rb.html",
|
431
|
+
"doc/app/files/app/controllers/cms/home_controller_rb.html",
|
432
|
+
"doc/app/files/app/controllers/cms/html_blocks_controller_rb.html",
|
433
|
+
"doc/app/files/app/controllers/cms/image_blocks_controller_rb.html",
|
434
|
+
"doc/app/files/app/controllers/cms/links_controller_rb.html",
|
435
|
+
"doc/app/files/app/controllers/cms/page_route_conditions_controller_rb.html",
|
436
|
+
"doc/app/files/app/controllers/cms/page_route_options_controller_rb.html",
|
437
|
+
"doc/app/files/app/controllers/cms/page_route_requirements_controller_rb.html",
|
438
|
+
"doc/app/files/app/controllers/cms/page_routes_controller_rb.html",
|
439
|
+
"doc/app/files/app/controllers/cms/pages_controller_rb.html",
|
440
|
+
"doc/app/files/app/controllers/cms/portlet_controller_rb.html",
|
441
|
+
"doc/app/files/app/controllers/cms/portlets_controller_rb.html",
|
442
|
+
"doc/app/files/app/controllers/cms/redirects_controller_rb.html",
|
443
|
+
"doc/app/files/app/controllers/cms/resource_controller_rb.html",
|
444
|
+
"doc/app/files/app/controllers/cms/routes_controller_rb.html",
|
445
|
+
"doc/app/files/app/controllers/cms/section_nodes_controller_rb.html",
|
446
|
+
"doc/app/files/app/controllers/cms/sections_controller_rb.html",
|
447
|
+
"doc/app/files/app/controllers/cms/sessions_controller_rb.html",
|
448
|
+
"doc/app/files/app/controllers/cms/tags_controller_rb.html",
|
449
|
+
"doc/app/files/app/controllers/cms/tasks_controller_rb.html",
|
450
|
+
"doc/app/files/app/controllers/cms/toolbar_controller_rb.html",
|
451
|
+
"doc/app/files/app/controllers/cms/users_controller_rb.html",
|
452
|
+
"doc/app/files/app/helpers/application_helper_rb.html",
|
453
|
+
"doc/app/files/app/helpers/cms/application_helper_rb.html",
|
454
|
+
"doc/app/files/app/helpers/cms/form_builder_rb.html",
|
455
|
+
"doc/app/files/app/helpers/cms/form_tag_helper_rb.html",
|
456
|
+
"doc/app/files/app/helpers/cms/menu_helper_rb.html",
|
457
|
+
"doc/app/files/app/helpers/cms/page_helper_rb.html",
|
458
|
+
"doc/app/files/app/helpers/cms/path_helper_rb.html",
|
459
|
+
"doc/app/files/app/helpers/cms/section_nodes_helper_rb.html",
|
460
|
+
"doc/app/files/app/models/abstract_file_block_rb.html",
|
461
|
+
"doc/app/files/app/models/attachment_rb.html",
|
462
|
+
"doc/app/files/app/models/category_rb.html",
|
463
|
+
"doc/app/files/app/models/category_type_rb.html",
|
464
|
+
"doc/app/files/app/models/connector_rb.html",
|
465
|
+
"doc/app/files/app/models/content_type_group_rb.html",
|
466
|
+
"doc/app/files/app/models/content_type_rb.html",
|
467
|
+
"doc/app/files/app/models/dynamic_view_rb.html",
|
468
|
+
"doc/app/files/app/models/email_message_mailer_rb.html",
|
469
|
+
"doc/app/files/app/models/email_message_rb.html",
|
470
|
+
"doc/app/files/app/models/file_block_rb.html",
|
471
|
+
"doc/app/files/app/models/group_permission_rb.html",
|
472
|
+
"doc/app/files/app/models/group_rb.html",
|
473
|
+
"doc/app/files/app/models/group_section_rb.html",
|
474
|
+
"doc/app/files/app/models/group_type_permission_rb.html",
|
475
|
+
"doc/app/files/app/models/group_type_rb.html",
|
476
|
+
"doc/app/files/app/models/guest_user_rb.html",
|
477
|
+
"doc/app/files/app/models/html_block_rb.html",
|
478
|
+
"doc/app/files/app/models/image_block_rb.html",
|
479
|
+
"doc/app/files/app/models/link_rb.html",
|
480
|
+
"doc/app/files/app/models/page_partial_rb.html",
|
481
|
+
"doc/app/files/app/models/page_rb.html",
|
482
|
+
"doc/app/files/app/models/page_route_condition_rb.html",
|
483
|
+
"doc/app/files/app/models/page_route_option_rb.html",
|
484
|
+
"doc/app/files/app/models/page_route_rb.html",
|
485
|
+
"doc/app/files/app/models/page_route_requirement_rb.html",
|
486
|
+
"doc/app/files/app/models/page_template_rb.html",
|
487
|
+
"doc/app/files/app/models/permission_rb.html",
|
488
|
+
"doc/app/files/app/models/portlet_rb.html",
|
489
|
+
"doc/app/files/app/models/redirect_rb.html",
|
490
|
+
"doc/app/files/app/models/section_node_rb.html",
|
491
|
+
"doc/app/files/app/models/section_rb.html",
|
492
|
+
"doc/app/files/app/models/site_rb.html",
|
493
|
+
"doc/app/files/app/models/tag_rb.html",
|
494
|
+
"doc/app/files/app/models/tagging_rb.html",
|
495
|
+
"doc/app/files/app/models/task_rb.html",
|
496
|
+
"doc/app/files/app/models/user_group_membership_rb.html",
|
497
|
+
"doc/app/files/app/models/user_rb.html",
|
498
|
+
"doc/app/files/app/portlets/dynamic_portlet_rb.html",
|
499
|
+
"doc/app/files/app/portlets/email_page_portlet_rb.html",
|
500
|
+
"doc/app/files/app/portlets/login_portlet_rb.html",
|
501
|
+
"doc/app/files/app/portlets/tag_cloud_portlet_rb.html",
|
502
|
+
"doc/app/files/doc/README_FOR_APP.html",
|
503
|
+
"doc/app/files/lib/acts_as_list_rb.html",
|
504
|
+
"doc/app/files/lib/browsercms_rb.html",
|
505
|
+
"doc/app/files/lib/cms/acts/content_block_rb.html",
|
506
|
+
"doc/app/files/lib/cms/authentication/controller_rb.html",
|
507
|
+
"doc/app/files/lib/cms/authentication/model_rb.html",
|
508
|
+
"doc/app/files/lib/cms/behaviors/archiving_rb.html",
|
509
|
+
"doc/app/files/lib/cms/behaviors/attaching_rb.html",
|
510
|
+
"doc/app/files/lib/cms/behaviors/categorizing_rb.html",
|
511
|
+
"doc/app/files/lib/cms/behaviors/connecting_rb.html",
|
512
|
+
"doc/app/files/lib/cms/behaviors/dynamic_attributes_rb.html",
|
513
|
+
"doc/app/files/lib/cms/behaviors/flush_cache_on_change_rb.html",
|
514
|
+
"doc/app/files/lib/cms/behaviors/hiding_rb.html",
|
515
|
+
"doc/app/files/lib/cms/behaviors/pagination_rb.html",
|
516
|
+
"doc/app/files/lib/cms/behaviors/publishing_rb.html",
|
517
|
+
"doc/app/files/lib/cms/behaviors/rendering_rb.html",
|
518
|
+
"doc/app/files/lib/cms/behaviors/searching_rb.html",
|
519
|
+
"doc/app/files/lib/cms/behaviors/soft_deleting_rb.html",
|
520
|
+
"doc/app/files/lib/cms/behaviors/taggable_rb.html",
|
521
|
+
"doc/app/files/lib/cms/behaviors/userstamping_rb.html",
|
522
|
+
"doc/app/files/lib/cms/behaviors/versioning_rb.html",
|
523
|
+
"doc/app/files/lib/cms/behaviors_rb.html",
|
524
|
+
"doc/app/files/lib/cms/caching_rb.html",
|
525
|
+
"doc/app/files/lib/cms/data_loader_rb.html",
|
526
|
+
"doc/app/files/lib/cms/extensions/action_view/base_rb.html",
|
527
|
+
"doc/app/files/lib/cms/extensions/active_record/base_rb.html",
|
528
|
+
"doc/app/files/lib/cms/extensions/active_record/connection_adapters/abstract/schema_statements_rb.html",
|
529
|
+
"doc/app/files/lib/cms/extensions/active_record/errors_rb.html",
|
530
|
+
"doc/app/files/lib/cms/extensions/active_support/cache/file_store_rb.html",
|
531
|
+
"doc/app/files/lib/cms/extensions/hash_rb.html",
|
532
|
+
"doc/app/files/lib/cms/extensions/integer_rb.html",
|
533
|
+
"doc/app/files/lib/cms/extensions/nil_rb.html",
|
534
|
+
"doc/app/files/lib/cms/extensions/string_rb.html",
|
535
|
+
"doc/app/files/lib/cms/extensions_rb.html",
|
536
|
+
"doc/app/files/lib/cms/init_rb.html",
|
537
|
+
"doc/app/files/lib/cms/routes_rb.html",
|
538
|
+
"doc/app/files/lib/initial_data_rb.html",
|
539
|
+
"doc/app/files/lib/sequence_rb.html",
|
540
|
+
"doc/app/fr_class_index.html",
|
541
|
+
"doc/app/fr_file_index.html",
|
542
|
+
"doc/app/fr_method_index.html",
|
543
|
+
"doc/app/index.html",
|
544
|
+
"doc/app/rdoc-style.css",
|
545
|
+
"doc/guides/html/build_it_yourself.html",
|
546
|
+
"doc/guides/html/deployment_guide.html",
|
547
|
+
"doc/guides/html/designer_guide.html",
|
548
|
+
"doc/guides/html/developer_guide.html",
|
549
|
+
"doc/guides/html/files/javascripts/code_highlighter.js",
|
550
|
+
"doc/guides/html/files/javascripts/guides.js",
|
551
|
+
"doc/guides/html/files/javascripts/highlighters.js",
|
552
|
+
"doc/guides/html/files/stylesheets/main.css",
|
553
|
+
"doc/guides/html/files/stylesheets/reset.css",
|
554
|
+
"doc/guides/html/files/stylesheets/style.css",
|
555
|
+
"doc/guides/html/files/stylesheets/syntax.css",
|
556
|
+
"doc/guides/html/getting_started.html",
|
557
|
+
"doc/guides/html/images/bg.png",
|
558
|
+
"doc/guides/html/images/bottom_cap.png",
|
559
|
+
"doc/guides/html/images/browsercms_logo.png",
|
560
|
+
"doc/guides/html/images/dot.png",
|
561
|
+
"doc/guides/html/images/icons/README",
|
562
|
+
"doc/guides/html/images/icons/callouts/1.png",
|
563
|
+
"doc/guides/html/images/icons/callouts/10.png",
|
564
|
+
"doc/guides/html/images/icons/callouts/11.png",
|
565
|
+
"doc/guides/html/images/icons/callouts/12.png",
|
566
|
+
"doc/guides/html/images/icons/callouts/13.png",
|
567
|
+
"doc/guides/html/images/icons/callouts/14.png",
|
568
|
+
"doc/guides/html/images/icons/callouts/15.png",
|
569
|
+
"doc/guides/html/images/icons/callouts/2.png",
|
570
|
+
"doc/guides/html/images/icons/callouts/3.png",
|
571
|
+
"doc/guides/html/images/icons/callouts/4.png",
|
572
|
+
"doc/guides/html/images/icons/callouts/5.png",
|
573
|
+
"doc/guides/html/images/icons/callouts/6.png",
|
574
|
+
"doc/guides/html/images/icons/callouts/7.png",
|
575
|
+
"doc/guides/html/images/icons/callouts/8.png",
|
576
|
+
"doc/guides/html/images/icons/callouts/9.png",
|
577
|
+
"doc/guides/html/images/icons/caution.png",
|
578
|
+
"doc/guides/html/images/icons/example.png",
|
579
|
+
"doc/guides/html/images/icons/home.png",
|
580
|
+
"doc/guides/html/images/icons/important.png",
|
581
|
+
"doc/guides/html/images/icons/next.png",
|
582
|
+
"doc/guides/html/images/icons/note.png",
|
583
|
+
"doc/guides/html/images/icons/prev.png",
|
584
|
+
"doc/guides/html/images/icons/tip.png",
|
585
|
+
"doc/guides/html/images/icons/up.png",
|
586
|
+
"doc/guides/html/images/icons/warning.png",
|
587
|
+
"doc/guides/html/images/top_cap.png",
|
588
|
+
"doc/guides/html/images/top_cap_content.png",
|
589
|
+
"doc/guides/html/index.html",
|
590
|
+
"doc/guides/html/installing_modules.html",
|
591
|
+
"doc/guides/html/user_guide.html",
|
232
592
|
"lib/acts_as_list.rb",
|
233
593
|
"lib/browsercms.rb",
|
234
594
|
"lib/cms/acts/content_block.rb",
|
@@ -597,8 +957,11 @@ Gem::Specification.new do |s|
|
|
597
957
|
"public/images/cms/buttons/button_cap.png",
|
598
958
|
"public/images/cms/buttons/button_cap_h.png",
|
599
959
|
"public/images/cms/buttons/button_cap_off.gif",
|
960
|
+
"public/images/cms/buttons/button_cap_off_middle.gif",
|
600
961
|
"public/images/cms/buttons/button_h.png",
|
962
|
+
"public/images/cms/buttons/button_left_bg.png",
|
601
963
|
"public/images/cms/buttons/button_off.png",
|
964
|
+
"public/images/cms/buttons/button_off_middle.png",
|
602
965
|
"public/images/cms/buttons/delete_x.png",
|
603
966
|
"public/images/cms/buttons/delete_x_disabled.png",
|
604
967
|
"public/images/cms/buttons/delete_x_h.png",
|
@@ -697,9 +1060,21 @@ Gem::Specification.new do |s|
|
|
697
1060
|
"public/images/cms/menu_open_bg.gif",
|
698
1061
|
"public/images/cms/nav.png",
|
699
1062
|
"public/images/cms/nav/on_bg.gif",
|
1063
|
+
"public/images/cms/nav_admin.gif",
|
1064
|
+
"public/images/cms/nav_admin_h.gif",
|
1065
|
+
"public/images/cms/nav_admin_on.gif",
|
700
1066
|
"public/images/cms/nav_cap.png",
|
701
1067
|
"public/images/cms/nav_cap_h.gif",
|
1068
|
+
"public/images/cms/nav_content_library.gif",
|
1069
|
+
"public/images/cms/nav_content_library_h.gif",
|
1070
|
+
"public/images/cms/nav_content_library_on.gif",
|
1071
|
+
"public/images/cms/nav_dash.gif",
|
1072
|
+
"public/images/cms/nav_dash_h.gif",
|
1073
|
+
"public/images/cms/nav_dash_on.gif",
|
702
1074
|
"public/images/cms/nav_h.gif",
|
1075
|
+
"public/images/cms/nav_sitemap.gif",
|
1076
|
+
"public/images/cms/nav_sitemap_h.gif",
|
1077
|
+
"public/images/cms/nav_sitemap_on.gif",
|
703
1078
|
"public/images/cms/page_toolbar/page_toolbar_bg.gif",
|
704
1079
|
"public/images/cms/page_toolbar/page_toolbar_inset_bg.gif",
|
705
1080
|
"public/images/cms/page_toolbar/page_toolbar_inset_draft_bg.gif",
|
@@ -844,7 +1219,10 @@ Gem::Specification.new do |s|
|
|
844
1219
|
"rails_generators/portlet/templates/_form.html.erb",
|
845
1220
|
"rails_generators/portlet/templates/portlet.rb",
|
846
1221
|
"rails_generators/portlet/templates/render.html.erb",
|
847
|
-
"rails_generators/portlet/templates/unit_test.erb"
|
1222
|
+
"rails_generators/portlet/templates/unit_test.erb",
|
1223
|
+
"templates/blank.rb",
|
1224
|
+
"templates/demo.rb",
|
1225
|
+
"templates/module.rb"
|
848
1226
|
]
|
849
1227
|
s.has_rdoc = true
|
850
1228
|
s.homepage = %q{http://www.browsercms.org}
|