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
@@ -19,7 +19,7 @@ class Cms::ConnectorsControllerTest < ActionController::TestCase
|
|
19
19
|
|
20
20
|
def test_new_portlet
|
21
21
|
@page = Factory(:page, :section => root_section, :name => "Test Page")
|
22
|
-
@portlet = DynamicPortlet.create!(:name => "Test", :connect_to_page_id => @page.id, :connect_to_container => "main")
|
22
|
+
@portlet = DynamicPortlet.create!(:name => "Test", :connect_to_page_id => @page.id, :connect_to_container => "main")
|
23
23
|
reset(:page)
|
24
24
|
|
25
25
|
get :new, :page_id => @page, :container => "main", :block_type => "portlets"
|
@@ -28,6 +28,17 @@ class Cms::ConnectorsControllerTest < ActionController::TestCase
|
|
28
28
|
assert_select "title", "Add Existing Content to 'Test Page' Page"
|
29
29
|
end
|
30
30
|
|
31
|
+
def test_new_with_deleted_portlet
|
32
|
+
@page = Factory(:page, :section => root_section, :name => "Test Page")
|
33
|
+
@portlet = DynamicPortlet.create!(:name => "Test Portlet")
|
34
|
+
@portlet.destroy
|
35
|
+
|
36
|
+
get :new, :page_id => @page, :container => "main", :block_type => "portlets"
|
37
|
+
|
38
|
+
assert_response :success
|
39
|
+
assert_select "#dynamic_portlet_#{@portlet.id}", :count => 0
|
40
|
+
end
|
41
|
+
|
31
42
|
def test_destroy
|
32
43
|
@page = Factory(:page, :section => root_section)
|
33
44
|
@block = Factory(:html_block, :connect_to_page_id => @page.id, :connect_to_container => "main")
|
@@ -46,6 +46,16 @@ class Cms::PortletsControllerTest < ActionController::TestCase
|
|
46
46
|
assert_raise(ActiveRecord::RecordNotFound) { DynamicPortlet.find(@block.id) }
|
47
47
|
end
|
48
48
|
|
49
|
+
def test_usages
|
50
|
+
@page = Factory(:page, :section => root_section, :name => "Test Page", :path => "test")
|
51
|
+
@page.create_connector(@block, "main")
|
52
|
+
@page.reload
|
53
|
+
|
54
|
+
get :usages, :id => @block.id
|
55
|
+
|
56
|
+
assert_response :success
|
57
|
+
assert_select "td.page_name", "Test Page"
|
58
|
+
end
|
49
59
|
|
50
60
|
# Doesn't really belong here, but I'm not sure how else to test the behavior of the form_builders
|
51
61
|
def test_form_helpers_which_use_instructions
|
@@ -87,4 +87,23 @@ class TaggableBlockTest < ActiveSupport::TestCase
|
|
87
87
|
assert_equal 0, tag_cloud[4].size
|
88
88
|
end
|
89
89
|
|
90
|
+
end
|
91
|
+
|
92
|
+
class VersionedTaggableBlockTest < ActiveSupport::TestCase
|
93
|
+
def test_tagging
|
94
|
+
article = VersionedTaggableArticle.create!(:name => "foo")
|
95
|
+
assert_equal 0, article.taggings.count
|
96
|
+
assert_equal 0, article.tags.count
|
97
|
+
assert_equal 0, Tag.count
|
98
|
+
assert_equal 0, Tagging.count
|
99
|
+
|
100
|
+
article.tag_list = "foo bar"
|
101
|
+
assert article.save
|
102
|
+
assert_equal 2, article.taggings.count
|
103
|
+
assert_equal 2, article.tags.count
|
104
|
+
assert_equal 2, Tag.count
|
105
|
+
assert_equal 2, Tagging.count
|
106
|
+
end
|
107
|
+
|
108
|
+
|
90
109
|
end
|
@@ -47,6 +47,8 @@ class Cms::MenuHelperTest < ActionView::TestCase
|
|
47
47
|
</div>
|
48
48
|
HTML
|
49
49
|
|
50
|
+
assert_equal expected, render_menu(:page => @bal)
|
51
|
+
|
50
52
|
@page = @bal
|
51
53
|
assert_equal expected, render_menu
|
52
54
|
assert_match /<div id=\"menu\" class=\"leftnav\">/, render_menu(:class => "leftnav")
|
@@ -79,7 +81,7 @@ HTML
|
|
79
81
|
HTML
|
80
82
|
|
81
83
|
assert_equal expected, render_menu(:depth => 2)
|
82
|
-
|
84
|
+
|
83
85
|
expected = <<HTML
|
84
86
|
<div id="menu" class="menu">
|
85
87
|
<ul>
|
@@ -194,6 +196,24 @@ HTML
|
|
194
196
|
|
195
197
|
assert_equal expected, render_menu(:from_top => 1, :depth => 1)
|
196
198
|
|
199
|
+
expected = <<HTML
|
200
|
+
<div id="menu" class="menu">
|
201
|
+
<ul>
|
202
|
+
<li id="section_#{@afc_east.id}" class="depth-1 first">
|
203
|
+
<a href="/buf">East</a>
|
204
|
+
</li>
|
205
|
+
<li id="section_#{@afc_north.id}" class="depth-1 open">
|
206
|
+
<a href="/bal">North</a>
|
207
|
+
</li>
|
208
|
+
<li id="section_#{@afc_south.id}" class="depth-1 last">
|
209
|
+
<a href="/hou">South</a>
|
210
|
+
</li>
|
211
|
+
</ul>
|
212
|
+
</div>
|
213
|
+
HTML
|
214
|
+
|
215
|
+
assert_equal expected, render_menu(:from_top => 1, :depth => 1, :limit => 3)
|
216
|
+
|
197
217
|
end
|
198
218
|
|
199
219
|
def test_menu_with_links
|
@@ -247,6 +267,57 @@ HTML
|
|
247
267
|
assert output !~ /\/never_published/, "Never published should not show up"
|
248
268
|
end
|
249
269
|
|
270
|
+
def test_render_menu_with_path
|
271
|
+
@test = Factory(:page, :section => root_section, :name => "Test", :path => "/test", :publish_on_save => true)
|
272
|
+
@footer = Factory(:section, :parent => root_section, :name => "Footer", :path => "/footer")
|
273
|
+
@about_us = Factory(:page, :section => @footer, :name => "About Us", :path => "/about_us", :publish_on_save => true)
|
274
|
+
@contact_us = Factory(:page, :section => @footer, :name => "Contact Us", :path => "/contact_us", :publish_on_save => true)
|
275
|
+
@privacy_policy = Factory(:page, :section => @footer, :name => "Privacy Policy", :path => "/privacy_policy", :publish_on_save => true)
|
276
|
+
|
277
|
+
expected = <<HTML
|
278
|
+
<div id="menu" class="menu">
|
279
|
+
<ul>
|
280
|
+
<li id="page_#{@about_us.id}" class="depth-1 first">
|
281
|
+
<a href="/about_us">About Us</a>
|
282
|
+
</li>
|
283
|
+
<li id="page_#{@contact_us.id}" class="depth-1">
|
284
|
+
<a href="/contact_us">Contact Us</a>
|
285
|
+
</li>
|
286
|
+
<li id="page_#{@privacy_policy.id}" class="depth-1 last">
|
287
|
+
<a href="/privacy_policy">Privacy Policy</a>
|
288
|
+
</li>
|
289
|
+
</ul>
|
290
|
+
</div>
|
291
|
+
HTML
|
292
|
+
|
293
|
+
#puts "Expected:\n#{expected}"
|
294
|
+
actual = render_menu(:page => @test, :path => "/footer", :from_top => 1)
|
295
|
+
#puts "Actual:\n#{actual}"
|
296
|
+
assert_equal expected, actual
|
297
|
+
|
298
|
+
expected = <<HTML
|
299
|
+
<div id="menu" class="menu">
|
300
|
+
<ul>
|
301
|
+
<li id="page_#{@about_us.id}" class="depth-1 first">
|
302
|
+
<a href="/about_us">About Us</a>
|
303
|
+
</li>
|
304
|
+
<li id="page_#{@contact_us.id}" class="depth-1 on">
|
305
|
+
<a href="/contact_us">Contact Us</a>
|
306
|
+
</li>
|
307
|
+
<li id="page_#{@privacy_policy.id}" class="depth-1 last">
|
308
|
+
<a href="/privacy_policy">Privacy Policy</a>
|
309
|
+
</li>
|
310
|
+
</ul>
|
311
|
+
</div>
|
312
|
+
HTML
|
313
|
+
|
314
|
+
#puts "Expected:\n#{expected}"
|
315
|
+
actual = render_menu(:page => @contact_us, :path => "/footer", :from_top => 1)
|
316
|
+
#puts "Actual:\n#{actual}"
|
317
|
+
assert_equal expected, actual
|
318
|
+
|
319
|
+
end
|
320
|
+
|
250
321
|
protected
|
251
322
|
def create_nfl_data
|
252
323
|
@afc = Factory(:section, :parent => root_section, :name => "AFC")
|
@@ -3,20 +3,38 @@ require File.join(File.dirname(__FILE__), '/../../test_helper')
|
|
3
3
|
class GeneratorsTest < Test::Unit::TestCase
|
4
4
|
|
5
5
|
def test_patterns_substition_for_windows
|
6
|
-
pattern =
|
6
|
+
pattern = /\b[A-Za-z]:\//
|
7
|
+
|
8
|
+
# Default
|
7
9
|
full_windows_path = "C:/Ruby/lib/ruby/gems/1.8/gems/browsercms-3.0.0/public/javascripts/jquery-ui.js"
|
8
10
|
assert_equal "/Ruby/lib/ruby/gems/1.8/gems/browsercms-3.0.0/public/javascripts/jquery-ui.js", full_windows_path.gsub(pattern, "/")
|
9
11
|
assert_equal "/Ruby/lib/ruby/gems/1.8/gems/browsercms-3.0.0/public/javascripts/jquery-ui.js", Cms.scrub_path(full_windows_path)
|
10
12
|
|
11
|
-
|
13
|
+
# D: drive
|
12
14
|
full_windows_path = "D:/Ruby/lib/ruby/gems/1.8/gems/browsercms-3.0.0/public/javascripts/jquery-ui.js"
|
13
15
|
assert_equal "/Ruby/lib/ruby/gems/1.8/gems/browsercms-3.0.0/public/javascripts/jquery-ui.js", full_windows_path.gsub(pattern, "/")
|
14
16
|
assert_equal "/Ruby/lib/ruby/gems/1.8/gems/browsercms-3.0.0/public/javascripts/jquery-ui.js", Cms.scrub_path(full_windows_path)
|
15
17
|
|
18
|
+
# F: Drive
|
16
19
|
full_windows_path = "F:/Ruby/lib/ruby/gems/1.8/gems/browsercms-3.0.0/public/javascripts/jquery-ui.js"
|
17
20
|
assert_equal "/Ruby/lib/ruby/gems/1.8/gems/browsercms-3.0.0/public/javascripts/jquery-ui.js", full_windows_path.gsub(pattern, "/")
|
18
21
|
assert_equal "/Ruby/lib/ruby/gems/1.8/gems/browsercms-3.0.0/public/javascripts/jquery-ui.js", Cms.scrub_path(full_windows_path)
|
19
22
|
|
23
|
+
# lower-case
|
24
|
+
full_windows_path = "c:/Ruby/lib/ruby/gems/1.8/gems/browsercms-3.0.0/public/javascripts/jquery-ui.js"
|
25
|
+
assert_equal "/Ruby/lib/ruby/gems/1.8/gems/browsercms-3.0.0/public/javascripts/jquery-ui.js", full_windows_path.gsub(pattern, "/")
|
26
|
+
assert_equal "/Ruby/lib/ruby/gems/1.8/gems/browsercms-3.0.0/public/javascripts/jquery-ui.js", Cms.scrub_path(full_windows_path)
|
27
|
+
|
28
|
+
# multiple
|
29
|
+
full_windows_path = "c:/Ruby/lib/ruby/gems/1.8/gems/browsercms-3.0.0/public/javascripts/jquery-ui.js c:/Ruby/lib/ruby/gems/1.8/gems/browsercms-3.0.0/public/javascripts/custom.js"
|
30
|
+
assert_equal "/Ruby/lib/ruby/gems/1.8/gems/browsercms-3.0.0/public/javascripts/jquery-ui.js /Ruby/lib/ruby/gems/1.8/gems/browsercms-3.0.0/public/javascripts/custom.js", full_windows_path.gsub(pattern, "/")
|
31
|
+
assert_equal "/Ruby/lib/ruby/gems/1.8/gems/browsercms-3.0.0/public/javascripts/jquery-ui.js /Ruby/lib/ruby/gems/1.8/gems/browsercms-3.0.0/public/javascripts/custom.js", Cms.scrub_path(full_windows_path)
|
32
|
+
|
33
|
+
# not scrub if in middle of string
|
34
|
+
full_windows_path = "c:/Ruby/lib/ruby/gems/1.8/gems:local/browsercms-3.0.0/public/javascripts/jquery-ui.js"
|
35
|
+
assert_equal "/Ruby/lib/ruby/gems/1.8/gems:local/browsercms-3.0.0/public/javascripts/jquery-ui.js", full_windows_path.gsub(pattern, "/")
|
36
|
+
assert_equal "/Ruby/lib/ruby/gems/1.8/gems:local/browsercms-3.0.0/public/javascripts/jquery-ui.js", Cms.scrub_path(full_windows_path)
|
37
|
+
|
20
38
|
end
|
21
39
|
|
22
|
-
end
|
40
|
+
end
|
@@ -133,4 +133,20 @@ class ConnectorTest < ActiveSupport::TestCase
|
|
133
133
|
assert_equal true, conn.should_be_copied?, "Should not copy when latest draft is deleted."
|
134
134
|
|
135
135
|
end
|
136
|
+
|
137
|
+
def test_connector_with_file_block_status
|
138
|
+
@page = Factory(:page)
|
139
|
+
@file = Factory(:image_block, :connect_to_page_id => @page.id, :connect_to_container => "main", :publish_on_save => true)
|
140
|
+
@page.reload
|
141
|
+
|
142
|
+
assert @file.live?
|
143
|
+
assert @page.connectors.last.live?
|
144
|
+
|
145
|
+
@file.update_attributes(:name => "Something Else")
|
146
|
+
@page.reload
|
147
|
+
|
148
|
+
assert !@file.live?
|
149
|
+
assert !@page.connectors.last.live?
|
150
|
+
end
|
151
|
+
|
136
152
|
end
|
@@ -46,6 +46,10 @@ class SectionTest < ActiveSupport::TestCase
|
|
46
46
|
@a2 = Factory(:page, :section => @a, :name => "A2")
|
47
47
|
|
48
48
|
assert_equal @a1, @a.first_page_or_link
|
49
|
+
|
50
|
+
@a2.section_node.move_to(@a, 0)
|
51
|
+
|
52
|
+
assert_equal @a2, @a.first_page_or_link
|
49
53
|
end
|
50
54
|
|
51
55
|
def test_find_by_name_path
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: browsercms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- BrowserMedia
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-07-14 00:00:00 -04:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -69,6 +69,7 @@ files:
|
|
69
69
|
- app/helpers/cms/page_helper.rb
|
70
70
|
- app/helpers/cms/path_helper.rb
|
71
71
|
- app/helpers/cms/section_nodes_helper.rb
|
72
|
+
- app/helpers/cms/template_support.rb
|
72
73
|
- app/models/abstract_file_block.rb
|
73
74
|
- app/models/attachment.rb
|
74
75
|
- app/models/category.rb
|
@@ -140,6 +141,7 @@ files:
|
|
140
141
|
- app/views/cms/file_blocks/_form.html.erb
|
141
142
|
- app/views/cms/file_blocks/render.html.erb
|
142
143
|
- app/views/cms/form_builder/_cms_date_picker.html.erb
|
144
|
+
- app/views/cms/form_builder/_cms_datetime_select.html.erb
|
143
145
|
- app/views/cms/form_builder/_cms_drop_down.html.erb
|
144
146
|
- app/views/cms/form_builder/_cms_file_field.html.erb
|
145
147
|
- app/views/cms/form_builder/_cms_tag_list.html.erb
|
@@ -239,6 +241,364 @@ files:
|
|
239
241
|
- db/demo/page_templates/sub_page.html.erb
|
240
242
|
- db/migrate/20080815014337_browsercms_3_0_0.rb
|
241
243
|
- db/migrate/20081114172307_load_seed_data.rb
|
244
|
+
- doc/app/classes/AbstractFileBlock.html
|
245
|
+
- doc/app/classes/ActiveRecord.html
|
246
|
+
- doc/app/classes/ActiveRecord/ConnectionAdapters/SchemaStatements.html
|
247
|
+
- doc/app/classes/ActiveSupport.html
|
248
|
+
- doc/app/classes/ActiveSupport/Cache.html
|
249
|
+
- doc/app/classes/ActiveSupport/Cache/FileStore.html
|
250
|
+
- doc/app/classes/ActsAsList.html
|
251
|
+
- doc/app/classes/ActsAsList/ClassMethods.html
|
252
|
+
- doc/app/classes/ActsAsList/InstanceMethods.html
|
253
|
+
- doc/app/classes/ApplicationController.html
|
254
|
+
- doc/app/classes/ApplicationHelper.html
|
255
|
+
- doc/app/classes/Attachment.html
|
256
|
+
- doc/app/classes/Category.html
|
257
|
+
- doc/app/classes/CategoryType.html
|
258
|
+
- doc/app/classes/Cms.html
|
259
|
+
- doc/app/classes/Cms/Acts.html
|
260
|
+
- doc/app/classes/Cms/Acts/ContentBlock.html
|
261
|
+
- doc/app/classes/Cms/Acts/ContentBlock/MacroMethods.html
|
262
|
+
- doc/app/classes/Cms/Acts/ContentBlock/MacroMethods/InstanceMethods.html
|
263
|
+
- doc/app/classes/Cms/ApplicationController.html
|
264
|
+
- doc/app/classes/Cms/ApplicationHelper.html
|
265
|
+
- doc/app/classes/Cms/AttachmentsController.html
|
266
|
+
- doc/app/classes/Cms/Authentication.html
|
267
|
+
- doc/app/classes/Cms/Authentication/Controller.html
|
268
|
+
- doc/app/classes/Cms/Authentication/Model.html
|
269
|
+
- doc/app/classes/Cms/Authentication/Model/ClassMethods.html
|
270
|
+
- doc/app/classes/Cms/Authentication/Model/InstanceMethods.html
|
271
|
+
- doc/app/classes/Cms/BaseController.html
|
272
|
+
- doc/app/classes/Cms/Behaviors.html
|
273
|
+
- doc/app/classes/Cms/Behaviors/Archiving.html
|
274
|
+
- doc/app/classes/Cms/Behaviors/Archiving/InstanceMethods.html
|
275
|
+
- doc/app/classes/Cms/Behaviors/Archiving/MacroMethods.html
|
276
|
+
- doc/app/classes/Cms/Behaviors/Attaching.html
|
277
|
+
- doc/app/classes/Cms/Behaviors/Attaching/InstanceMethods.html
|
278
|
+
- doc/app/classes/Cms/Behaviors/Attaching/MacroMethods.html
|
279
|
+
- doc/app/classes/Cms/Behaviors/Categorizing.html
|
280
|
+
- doc/app/classes/Cms/Behaviors/Categorizing/ClassMethods.html
|
281
|
+
- doc/app/classes/Cms/Behaviors/Categorizing/InstanceMethods.html
|
282
|
+
- doc/app/classes/Cms/Behaviors/Categorizing/MacroMethods.html
|
283
|
+
- doc/app/classes/Cms/Behaviors/ClassMethods.html
|
284
|
+
- doc/app/classes/Cms/Behaviors/Connecting.html
|
285
|
+
- doc/app/classes/Cms/Behaviors/Connecting/ClassMethods.html
|
286
|
+
- doc/app/classes/Cms/Behaviors/Connecting/InstanceMethods.html
|
287
|
+
- doc/app/classes/Cms/Behaviors/Connecting/MacroMethods.html
|
288
|
+
- doc/app/classes/Cms/Behaviors/DynamicAttributes.html
|
289
|
+
- doc/app/classes/Cms/Behaviors/DynamicAttributes/InstanceMethods.html
|
290
|
+
- doc/app/classes/Cms/Behaviors/DynamicAttributes/MacroMethods.html
|
291
|
+
- doc/app/classes/Cms/Behaviors/FlushCacheOnChange.html
|
292
|
+
- doc/app/classes/Cms/Behaviors/FlushCacheOnChange/InstanceMethods.html
|
293
|
+
- doc/app/classes/Cms/Behaviors/FlushCacheOnChange/MacroMethods.html
|
294
|
+
- doc/app/classes/Cms/Behaviors/Hiding.html
|
295
|
+
- doc/app/classes/Cms/Behaviors/Hiding/ClassMethods.html
|
296
|
+
- doc/app/classes/Cms/Behaviors/Hiding/InstanceMethods.html
|
297
|
+
- doc/app/classes/Cms/Behaviors/Hiding/MacroMethods.html
|
298
|
+
- doc/app/classes/Cms/Behaviors/InstanceMethods.html
|
299
|
+
- doc/app/classes/Cms/Behaviors/Pagination.html
|
300
|
+
- doc/app/classes/Cms/Behaviors/Pagination/ClassMethods.html
|
301
|
+
- doc/app/classes/Cms/Behaviors/Pagination/Collection.html
|
302
|
+
- doc/app/classes/Cms/Behaviors/Pagination/InvalidPage.html
|
303
|
+
- doc/app/classes/Cms/Behaviors/Publishing.html
|
304
|
+
- doc/app/classes/Cms/Behaviors/Publishing/ClassMethods.html
|
305
|
+
- doc/app/classes/Cms/Behaviors/Publishing/InstanceMethods.html
|
306
|
+
- doc/app/classes/Cms/Behaviors/Publishing/MacroMethods.html
|
307
|
+
- doc/app/classes/Cms/Behaviors/Rendering.html
|
308
|
+
- doc/app/classes/Cms/Behaviors/Rendering/MacroMethods.html
|
309
|
+
- doc/app/classes/Cms/Behaviors/Searching.html
|
310
|
+
- doc/app/classes/Cms/Behaviors/Searching/ClassMethods.html
|
311
|
+
- doc/app/classes/Cms/Behaviors/Searching/MacroMethods.html
|
312
|
+
- doc/app/classes/Cms/Behaviors/SoftDeleting.html
|
313
|
+
- doc/app/classes/Cms/Behaviors/SoftDeleting/ClassMethods.html
|
314
|
+
- doc/app/classes/Cms/Behaviors/SoftDeleting/InstanceMethods.html
|
315
|
+
- doc/app/classes/Cms/Behaviors/SoftDeleting/MacroMethods.html
|
316
|
+
- doc/app/classes/Cms/Behaviors/Taggable.html
|
317
|
+
- doc/app/classes/Cms/Behaviors/Taggable/ClassMethods.html
|
318
|
+
- doc/app/classes/Cms/Behaviors/Taggable/InstanceMethods.html
|
319
|
+
- doc/app/classes/Cms/Behaviors/Taggable/MacroMethods.html
|
320
|
+
- doc/app/classes/Cms/Behaviors/Userstamping.html
|
321
|
+
- doc/app/classes/Cms/Behaviors/Userstamping/ClassMethods.html
|
322
|
+
- doc/app/classes/Cms/Behaviors/Userstamping/InstanceMethods.html
|
323
|
+
- doc/app/classes/Cms/Behaviors/Userstamping/MacroMethods.html
|
324
|
+
- doc/app/classes/Cms/Behaviors/Versioning.html
|
325
|
+
- doc/app/classes/Cms/Behaviors/Versioning/ClassMethods.html
|
326
|
+
- doc/app/classes/Cms/Behaviors/Versioning/InstanceMethods.html
|
327
|
+
- doc/app/classes/Cms/Behaviors/Versioning/MacroMethods.html
|
328
|
+
- doc/app/classes/Cms/CacheController.html
|
329
|
+
- doc/app/classes/Cms/Caching.html
|
330
|
+
- doc/app/classes/Cms/CategoriesController.html
|
331
|
+
- doc/app/classes/Cms/CategoryTypesController.html
|
332
|
+
- doc/app/classes/Cms/ConnectorsController.html
|
333
|
+
- doc/app/classes/Cms/ContentBlockController.html
|
334
|
+
- doc/app/classes/Cms/ContentController.html
|
335
|
+
- doc/app/classes/Cms/ContentTypesController.html
|
336
|
+
- doc/app/classes/Cms/DashboardController.html
|
337
|
+
- doc/app/classes/Cms/DataLoader.html
|
338
|
+
- doc/app/classes/Cms/DynamicViewsController.html
|
339
|
+
- doc/app/classes/Cms/EmailMessagesController.html
|
340
|
+
- doc/app/classes/Cms/ErrorHandling.html
|
341
|
+
- doc/app/classes/Cms/Errors.html
|
342
|
+
- doc/app/classes/Cms/Errors/AccessDenied.html
|
343
|
+
- doc/app/classes/Cms/Extensions.html
|
344
|
+
- doc/app/classes/Cms/Extensions/ActionView.html
|
345
|
+
- doc/app/classes/Cms/Extensions/ActionView/Base.html
|
346
|
+
- doc/app/classes/Cms/Extensions/ActiveRecord.html
|
347
|
+
- doc/app/classes/Cms/Extensions/ActiveRecord/Base.html
|
348
|
+
- doc/app/classes/Cms/Extensions/ActiveRecord/Errors.html
|
349
|
+
- doc/app/classes/Cms/Extensions/Hash.html
|
350
|
+
- doc/app/classes/Cms/Extensions/Integer.html
|
351
|
+
- doc/app/classes/Cms/Extensions/NilClass.html
|
352
|
+
- doc/app/classes/Cms/Extensions/String.html
|
353
|
+
- doc/app/classes/Cms/FileBlocksController.html
|
354
|
+
- doc/app/classes/Cms/FormBuilder.html
|
355
|
+
- doc/app/classes/Cms/FormTagHelper.html
|
356
|
+
- doc/app/classes/Cms/GroupsController.html
|
357
|
+
- doc/app/classes/Cms/HomeController.html
|
358
|
+
- doc/app/classes/Cms/HtmlBlocksController.html
|
359
|
+
- doc/app/classes/Cms/ImageBlocksController.html
|
360
|
+
- doc/app/classes/Cms/LinksController.html
|
361
|
+
- doc/app/classes/Cms/MenuHelper.html
|
362
|
+
- doc/app/classes/Cms/PageHelper.html
|
363
|
+
- doc/app/classes/Cms/PageRouteConditionsController.html
|
364
|
+
- doc/app/classes/Cms/PageRouteOptionsController.html
|
365
|
+
- doc/app/classes/Cms/PageRouteRequirementsController.html
|
366
|
+
- doc/app/classes/Cms/PageRoutesController.html
|
367
|
+
- doc/app/classes/Cms/PagesController.html
|
368
|
+
- doc/app/classes/Cms/PathHelper.html
|
369
|
+
- doc/app/classes/Cms/PortletController.html
|
370
|
+
- doc/app/classes/Cms/PortletsController.html
|
371
|
+
- doc/app/classes/Cms/RedirectsController.html
|
372
|
+
- doc/app/classes/Cms/ResourceController.html
|
373
|
+
- doc/app/classes/Cms/Routes.html
|
374
|
+
- doc/app/classes/Cms/RoutesController.html
|
375
|
+
- doc/app/classes/Cms/SectionNodesController.html
|
376
|
+
- doc/app/classes/Cms/SectionNodesHelper.html
|
377
|
+
- doc/app/classes/Cms/SectionsController.html
|
378
|
+
- doc/app/classes/Cms/SessionsController.html
|
379
|
+
- doc/app/classes/Cms/TagsController.html
|
380
|
+
- doc/app/classes/Cms/TasksController.html
|
381
|
+
- doc/app/classes/Cms/ToolbarController.html
|
382
|
+
- doc/app/classes/Cms/UsersController.html
|
383
|
+
- doc/app/classes/Connector.html
|
384
|
+
- doc/app/classes/ContentType.html
|
385
|
+
- doc/app/classes/ContentTypeGroup.html
|
386
|
+
- doc/app/classes/DynamicPortlet.html
|
387
|
+
- doc/app/classes/DynamicView.html
|
388
|
+
- doc/app/classes/EmailMessage.html
|
389
|
+
- doc/app/classes/EmailMessageMailer.html
|
390
|
+
- doc/app/classes/EmailPagePortlet.html
|
391
|
+
- doc/app/classes/FileBlock.html
|
392
|
+
- doc/app/classes/Group.html
|
393
|
+
- doc/app/classes/GroupPermission.html
|
394
|
+
- doc/app/classes/GroupSection.html
|
395
|
+
- doc/app/classes/GroupType.html
|
396
|
+
- doc/app/classes/GroupTypePermission.html
|
397
|
+
- doc/app/classes/GuestUser.html
|
398
|
+
- doc/app/classes/HtmlBlock.html
|
399
|
+
- doc/app/classes/ImageBlock.html
|
400
|
+
- doc/app/classes/InitialData.html
|
401
|
+
- doc/app/classes/Link.html
|
402
|
+
- doc/app/classes/LoginPortlet.html
|
403
|
+
- doc/app/classes/Page.html
|
404
|
+
- doc/app/classes/PagePartial.html
|
405
|
+
- doc/app/classes/PageRoute.html
|
406
|
+
- doc/app/classes/PageRouteCondition.html
|
407
|
+
- doc/app/classes/PageRouteOption.html
|
408
|
+
- doc/app/classes/PageRouteRequirement.html
|
409
|
+
- doc/app/classes/PageTemplate.html
|
410
|
+
- doc/app/classes/Permission.html
|
411
|
+
- doc/app/classes/Portlet.html
|
412
|
+
- doc/app/classes/Redirect.html
|
413
|
+
- doc/app/classes/Section.html
|
414
|
+
- doc/app/classes/SectionNode.html
|
415
|
+
- doc/app/classes/Sequence.html
|
416
|
+
- doc/app/classes/Site.html
|
417
|
+
- doc/app/classes/Tag.html
|
418
|
+
- doc/app/classes/TagCloudPortlet.html
|
419
|
+
- doc/app/classes/Tagging.html
|
420
|
+
- doc/app/classes/Task.html
|
421
|
+
- doc/app/classes/User.html
|
422
|
+
- doc/app/classes/UserGroupMembership.html
|
423
|
+
- doc/app/created.rid
|
424
|
+
- doc/app/files/app/controllers/application_controller_rb.html
|
425
|
+
- doc/app/files/app/controllers/cms/application_controller_rb.html
|
426
|
+
- doc/app/files/app/controllers/cms/attachments_controller_rb.html
|
427
|
+
- doc/app/files/app/controllers/cms/base_controller_rb.html
|
428
|
+
- doc/app/files/app/controllers/cms/cache_controller_rb.html
|
429
|
+
- doc/app/files/app/controllers/cms/categories_controller_rb.html
|
430
|
+
- doc/app/files/app/controllers/cms/category_types_controller_rb.html
|
431
|
+
- doc/app/files/app/controllers/cms/connectors_controller_rb.html
|
432
|
+
- doc/app/files/app/controllers/cms/content_block_controller_rb.html
|
433
|
+
- doc/app/files/app/controllers/cms/content_controller_rb.html
|
434
|
+
- doc/app/files/app/controllers/cms/content_types_controller_rb.html
|
435
|
+
- doc/app/files/app/controllers/cms/dashboard_controller_rb.html
|
436
|
+
- doc/app/files/app/controllers/cms/dynamic_views_controller_rb.html
|
437
|
+
- doc/app/files/app/controllers/cms/email_messages_controller_rb.html
|
438
|
+
- doc/app/files/app/controllers/cms/error_handling_rb.html
|
439
|
+
- doc/app/files/app/controllers/cms/file_blocks_controller_rb.html
|
440
|
+
- doc/app/files/app/controllers/cms/groups_controller_rb.html
|
441
|
+
- doc/app/files/app/controllers/cms/home_controller_rb.html
|
442
|
+
- doc/app/files/app/controllers/cms/html_blocks_controller_rb.html
|
443
|
+
- doc/app/files/app/controllers/cms/image_blocks_controller_rb.html
|
444
|
+
- doc/app/files/app/controllers/cms/links_controller_rb.html
|
445
|
+
- doc/app/files/app/controllers/cms/page_route_conditions_controller_rb.html
|
446
|
+
- doc/app/files/app/controllers/cms/page_route_options_controller_rb.html
|
447
|
+
- doc/app/files/app/controllers/cms/page_route_requirements_controller_rb.html
|
448
|
+
- doc/app/files/app/controllers/cms/page_routes_controller_rb.html
|
449
|
+
- doc/app/files/app/controllers/cms/pages_controller_rb.html
|
450
|
+
- doc/app/files/app/controllers/cms/portlet_controller_rb.html
|
451
|
+
- doc/app/files/app/controllers/cms/portlets_controller_rb.html
|
452
|
+
- doc/app/files/app/controllers/cms/redirects_controller_rb.html
|
453
|
+
- doc/app/files/app/controllers/cms/resource_controller_rb.html
|
454
|
+
- doc/app/files/app/controllers/cms/routes_controller_rb.html
|
455
|
+
- doc/app/files/app/controllers/cms/section_nodes_controller_rb.html
|
456
|
+
- doc/app/files/app/controllers/cms/sections_controller_rb.html
|
457
|
+
- doc/app/files/app/controllers/cms/sessions_controller_rb.html
|
458
|
+
- doc/app/files/app/controllers/cms/tags_controller_rb.html
|
459
|
+
- doc/app/files/app/controllers/cms/tasks_controller_rb.html
|
460
|
+
- doc/app/files/app/controllers/cms/toolbar_controller_rb.html
|
461
|
+
- doc/app/files/app/controllers/cms/users_controller_rb.html
|
462
|
+
- doc/app/files/app/helpers/application_helper_rb.html
|
463
|
+
- doc/app/files/app/helpers/cms/application_helper_rb.html
|
464
|
+
- doc/app/files/app/helpers/cms/form_builder_rb.html
|
465
|
+
- doc/app/files/app/helpers/cms/form_tag_helper_rb.html
|
466
|
+
- doc/app/files/app/helpers/cms/menu_helper_rb.html
|
467
|
+
- doc/app/files/app/helpers/cms/page_helper_rb.html
|
468
|
+
- doc/app/files/app/helpers/cms/path_helper_rb.html
|
469
|
+
- doc/app/files/app/helpers/cms/section_nodes_helper_rb.html
|
470
|
+
- doc/app/files/app/models/abstract_file_block_rb.html
|
471
|
+
- doc/app/files/app/models/attachment_rb.html
|
472
|
+
- doc/app/files/app/models/category_rb.html
|
473
|
+
- doc/app/files/app/models/category_type_rb.html
|
474
|
+
- doc/app/files/app/models/connector_rb.html
|
475
|
+
- doc/app/files/app/models/content_type_group_rb.html
|
476
|
+
- doc/app/files/app/models/content_type_rb.html
|
477
|
+
- doc/app/files/app/models/dynamic_view_rb.html
|
478
|
+
- doc/app/files/app/models/email_message_mailer_rb.html
|
479
|
+
- doc/app/files/app/models/email_message_rb.html
|
480
|
+
- doc/app/files/app/models/file_block_rb.html
|
481
|
+
- doc/app/files/app/models/group_permission_rb.html
|
482
|
+
- doc/app/files/app/models/group_rb.html
|
483
|
+
- doc/app/files/app/models/group_section_rb.html
|
484
|
+
- doc/app/files/app/models/group_type_permission_rb.html
|
485
|
+
- doc/app/files/app/models/group_type_rb.html
|
486
|
+
- doc/app/files/app/models/guest_user_rb.html
|
487
|
+
- doc/app/files/app/models/html_block_rb.html
|
488
|
+
- doc/app/files/app/models/image_block_rb.html
|
489
|
+
- doc/app/files/app/models/link_rb.html
|
490
|
+
- doc/app/files/app/models/page_partial_rb.html
|
491
|
+
- doc/app/files/app/models/page_rb.html
|
492
|
+
- doc/app/files/app/models/page_route_condition_rb.html
|
493
|
+
- doc/app/files/app/models/page_route_option_rb.html
|
494
|
+
- doc/app/files/app/models/page_route_rb.html
|
495
|
+
- doc/app/files/app/models/page_route_requirement_rb.html
|
496
|
+
- doc/app/files/app/models/page_template_rb.html
|
497
|
+
- doc/app/files/app/models/permission_rb.html
|
498
|
+
- doc/app/files/app/models/portlet_rb.html
|
499
|
+
- doc/app/files/app/models/redirect_rb.html
|
500
|
+
- doc/app/files/app/models/section_node_rb.html
|
501
|
+
- doc/app/files/app/models/section_rb.html
|
502
|
+
- doc/app/files/app/models/site_rb.html
|
503
|
+
- doc/app/files/app/models/tag_rb.html
|
504
|
+
- doc/app/files/app/models/tagging_rb.html
|
505
|
+
- doc/app/files/app/models/task_rb.html
|
506
|
+
- doc/app/files/app/models/user_group_membership_rb.html
|
507
|
+
- doc/app/files/app/models/user_rb.html
|
508
|
+
- doc/app/files/app/portlets/dynamic_portlet_rb.html
|
509
|
+
- doc/app/files/app/portlets/email_page_portlet_rb.html
|
510
|
+
- doc/app/files/app/portlets/login_portlet_rb.html
|
511
|
+
- doc/app/files/app/portlets/tag_cloud_portlet_rb.html
|
512
|
+
- doc/app/files/doc/README_FOR_APP.html
|
513
|
+
- doc/app/files/lib/acts_as_list_rb.html
|
514
|
+
- doc/app/files/lib/browsercms_rb.html
|
515
|
+
- doc/app/files/lib/cms/acts/content_block_rb.html
|
516
|
+
- doc/app/files/lib/cms/authentication/controller_rb.html
|
517
|
+
- doc/app/files/lib/cms/authentication/model_rb.html
|
518
|
+
- doc/app/files/lib/cms/behaviors/archiving_rb.html
|
519
|
+
- doc/app/files/lib/cms/behaviors/attaching_rb.html
|
520
|
+
- doc/app/files/lib/cms/behaviors/categorizing_rb.html
|
521
|
+
- doc/app/files/lib/cms/behaviors/connecting_rb.html
|
522
|
+
- doc/app/files/lib/cms/behaviors/dynamic_attributes_rb.html
|
523
|
+
- doc/app/files/lib/cms/behaviors/flush_cache_on_change_rb.html
|
524
|
+
- doc/app/files/lib/cms/behaviors/hiding_rb.html
|
525
|
+
- doc/app/files/lib/cms/behaviors/pagination_rb.html
|
526
|
+
- doc/app/files/lib/cms/behaviors/publishing_rb.html
|
527
|
+
- doc/app/files/lib/cms/behaviors/rendering_rb.html
|
528
|
+
- doc/app/files/lib/cms/behaviors/searching_rb.html
|
529
|
+
- doc/app/files/lib/cms/behaviors/soft_deleting_rb.html
|
530
|
+
- doc/app/files/lib/cms/behaviors/taggable_rb.html
|
531
|
+
- doc/app/files/lib/cms/behaviors/userstamping_rb.html
|
532
|
+
- doc/app/files/lib/cms/behaviors/versioning_rb.html
|
533
|
+
- doc/app/files/lib/cms/behaviors_rb.html
|
534
|
+
- doc/app/files/lib/cms/caching_rb.html
|
535
|
+
- doc/app/files/lib/cms/data_loader_rb.html
|
536
|
+
- doc/app/files/lib/cms/extensions/action_view/base_rb.html
|
537
|
+
- doc/app/files/lib/cms/extensions/active_record/base_rb.html
|
538
|
+
- doc/app/files/lib/cms/extensions/active_record/connection_adapters/abstract/schema_statements_rb.html
|
539
|
+
- doc/app/files/lib/cms/extensions/active_record/errors_rb.html
|
540
|
+
- doc/app/files/lib/cms/extensions/active_support/cache/file_store_rb.html
|
541
|
+
- doc/app/files/lib/cms/extensions/hash_rb.html
|
542
|
+
- doc/app/files/lib/cms/extensions/integer_rb.html
|
543
|
+
- doc/app/files/lib/cms/extensions/nil_rb.html
|
544
|
+
- doc/app/files/lib/cms/extensions/string_rb.html
|
545
|
+
- doc/app/files/lib/cms/extensions_rb.html
|
546
|
+
- doc/app/files/lib/cms/init_rb.html
|
547
|
+
- doc/app/files/lib/cms/routes_rb.html
|
548
|
+
- doc/app/files/lib/initial_data_rb.html
|
549
|
+
- doc/app/files/lib/sequence_rb.html
|
550
|
+
- doc/app/fr_class_index.html
|
551
|
+
- doc/app/fr_file_index.html
|
552
|
+
- doc/app/fr_method_index.html
|
553
|
+
- doc/app/index.html
|
554
|
+
- doc/app/rdoc-style.css
|
555
|
+
- doc/guides/html/build_it_yourself.html
|
556
|
+
- doc/guides/html/deployment_guide.html
|
557
|
+
- doc/guides/html/designer_guide.html
|
558
|
+
- doc/guides/html/developer_guide.html
|
559
|
+
- doc/guides/html/files/javascripts/code_highlighter.js
|
560
|
+
- doc/guides/html/files/javascripts/guides.js
|
561
|
+
- doc/guides/html/files/javascripts/highlighters.js
|
562
|
+
- doc/guides/html/files/stylesheets/main.css
|
563
|
+
- doc/guides/html/files/stylesheets/reset.css
|
564
|
+
- doc/guides/html/files/stylesheets/style.css
|
565
|
+
- doc/guides/html/files/stylesheets/syntax.css
|
566
|
+
- doc/guides/html/getting_started.html
|
567
|
+
- doc/guides/html/images/bg.png
|
568
|
+
- doc/guides/html/images/bottom_cap.png
|
569
|
+
- doc/guides/html/images/browsercms_logo.png
|
570
|
+
- doc/guides/html/images/dot.png
|
571
|
+
- doc/guides/html/images/icons/README
|
572
|
+
- doc/guides/html/images/icons/callouts/1.png
|
573
|
+
- doc/guides/html/images/icons/callouts/10.png
|
574
|
+
- doc/guides/html/images/icons/callouts/11.png
|
575
|
+
- doc/guides/html/images/icons/callouts/12.png
|
576
|
+
- doc/guides/html/images/icons/callouts/13.png
|
577
|
+
- doc/guides/html/images/icons/callouts/14.png
|
578
|
+
- doc/guides/html/images/icons/callouts/15.png
|
579
|
+
- doc/guides/html/images/icons/callouts/2.png
|
580
|
+
- doc/guides/html/images/icons/callouts/3.png
|
581
|
+
- doc/guides/html/images/icons/callouts/4.png
|
582
|
+
- doc/guides/html/images/icons/callouts/5.png
|
583
|
+
- doc/guides/html/images/icons/callouts/6.png
|
584
|
+
- doc/guides/html/images/icons/callouts/7.png
|
585
|
+
- doc/guides/html/images/icons/callouts/8.png
|
586
|
+
- doc/guides/html/images/icons/callouts/9.png
|
587
|
+
- doc/guides/html/images/icons/caution.png
|
588
|
+
- doc/guides/html/images/icons/example.png
|
589
|
+
- doc/guides/html/images/icons/home.png
|
590
|
+
- doc/guides/html/images/icons/important.png
|
591
|
+
- doc/guides/html/images/icons/next.png
|
592
|
+
- doc/guides/html/images/icons/note.png
|
593
|
+
- doc/guides/html/images/icons/prev.png
|
594
|
+
- doc/guides/html/images/icons/tip.png
|
595
|
+
- doc/guides/html/images/icons/up.png
|
596
|
+
- doc/guides/html/images/icons/warning.png
|
597
|
+
- doc/guides/html/images/top_cap.png
|
598
|
+
- doc/guides/html/images/top_cap_content.png
|
599
|
+
- doc/guides/html/index.html
|
600
|
+
- doc/guides/html/installing_modules.html
|
601
|
+
- doc/guides/html/user_guide.html
|
242
602
|
- lib/acts_as_list.rb
|
243
603
|
- lib/browsercms.rb
|
244
604
|
- lib/cms/acts/content_block.rb
|
@@ -607,8 +967,11 @@ files:
|
|
607
967
|
- public/images/cms/buttons/button_cap.png
|
608
968
|
- public/images/cms/buttons/button_cap_h.png
|
609
969
|
- public/images/cms/buttons/button_cap_off.gif
|
970
|
+
- public/images/cms/buttons/button_cap_off_middle.gif
|
610
971
|
- public/images/cms/buttons/button_h.png
|
972
|
+
- public/images/cms/buttons/button_left_bg.png
|
611
973
|
- public/images/cms/buttons/button_off.png
|
974
|
+
- public/images/cms/buttons/button_off_middle.png
|
612
975
|
- public/images/cms/buttons/delete_x.png
|
613
976
|
- public/images/cms/buttons/delete_x_disabled.png
|
614
977
|
- public/images/cms/buttons/delete_x_h.png
|
@@ -707,9 +1070,21 @@ files:
|
|
707
1070
|
- public/images/cms/menu_open_bg.gif
|
708
1071
|
- public/images/cms/nav.png
|
709
1072
|
- public/images/cms/nav/on_bg.gif
|
1073
|
+
- public/images/cms/nav_admin.gif
|
1074
|
+
- public/images/cms/nav_admin_h.gif
|
1075
|
+
- public/images/cms/nav_admin_on.gif
|
710
1076
|
- public/images/cms/nav_cap.png
|
711
1077
|
- public/images/cms/nav_cap_h.gif
|
1078
|
+
- public/images/cms/nav_content_library.gif
|
1079
|
+
- public/images/cms/nav_content_library_h.gif
|
1080
|
+
- public/images/cms/nav_content_library_on.gif
|
1081
|
+
- public/images/cms/nav_dash.gif
|
1082
|
+
- public/images/cms/nav_dash_h.gif
|
1083
|
+
- public/images/cms/nav_dash_on.gif
|
712
1084
|
- public/images/cms/nav_h.gif
|
1085
|
+
- public/images/cms/nav_sitemap.gif
|
1086
|
+
- public/images/cms/nav_sitemap_h.gif
|
1087
|
+
- public/images/cms/nav_sitemap_on.gif
|
713
1088
|
- public/images/cms/page_toolbar/page_toolbar_bg.gif
|
714
1089
|
- public/images/cms/page_toolbar/page_toolbar_inset_bg.gif
|
715
1090
|
- public/images/cms/page_toolbar/page_toolbar_inset_draft_bg.gif
|
@@ -855,6 +1230,9 @@ files:
|
|
855
1230
|
- rails_generators/portlet/templates/portlet.rb
|
856
1231
|
- rails_generators/portlet/templates/render.html.erb
|
857
1232
|
- rails_generators/portlet/templates/unit_test.erb
|
1233
|
+
- templates/blank.rb
|
1234
|
+
- templates/demo.rb
|
1235
|
+
- templates/module.rb
|
858
1236
|
- LICENSE.txt
|
859
1237
|
- README.markdown
|
860
1238
|
has_rdoc: true
|