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
@@ -0,0 +1,90 @@
|
|
1
|
+
CodeHighlighter.addStyle("css", {
|
2
|
+
comment : {
|
3
|
+
exp : /\/\*[^*]*\*+([^\/][^*]*\*+)*\//
|
4
|
+
},
|
5
|
+
keywords : {
|
6
|
+
exp : /@\w[\w\s]*/
|
7
|
+
},
|
8
|
+
selectors : {
|
9
|
+
exp : "([\\w-:\\[.#][^{};>]*)(?={)"
|
10
|
+
},
|
11
|
+
properties : {
|
12
|
+
exp : "([\\w-]+)(?=\\s*:)"
|
13
|
+
},
|
14
|
+
units : {
|
15
|
+
exp : /([0-9])(em|en|px|%|pt)\b/,
|
16
|
+
replacement : "$1<span class=\"$0\">$2</span>"
|
17
|
+
},
|
18
|
+
urls : {
|
19
|
+
exp : /url\([^\)]*\)/
|
20
|
+
}
|
21
|
+
});
|
22
|
+
|
23
|
+
CodeHighlighter.addStyle("ruby",{
|
24
|
+
comment : {
|
25
|
+
exp : /#[^\n]+/
|
26
|
+
},
|
27
|
+
brackets : {
|
28
|
+
exp : /\(|\)/
|
29
|
+
},
|
30
|
+
string : {
|
31
|
+
exp : /'[^']*'|"[^"]*"/
|
32
|
+
},
|
33
|
+
keywords : {
|
34
|
+
exp : /\b(do|end|self|class|def|if|module|yield|then|else|for|until|unless|while|elsif|case|when|break|retry|redo|rescue|require|raise)\b/
|
35
|
+
},
|
36
|
+
/* Added by Shelly Fisher (shelly@agileevolved.com) */
|
37
|
+
symbol : {
|
38
|
+
exp : /([^:])(:[A-Za-z0-9_!?]+)/
|
39
|
+
},
|
40
|
+
ivar : {
|
41
|
+
exp : /\@[A-Za-z0-9_!?]+/
|
42
|
+
}
|
43
|
+
});
|
44
|
+
|
45
|
+
CodeHighlighter.addStyle("html", {
|
46
|
+
comment : {
|
47
|
+
exp: /<!\s*(--([^-]|[\r\n]|-[^-])*--\s*)>/
|
48
|
+
},
|
49
|
+
tag : {
|
50
|
+
exp: /(<\/?)([a-zA-Z1-9]+\s?)/,
|
51
|
+
replacement: "$1<span class=\"$0\">$2</span>"
|
52
|
+
},
|
53
|
+
string : {
|
54
|
+
exp : /'[^']*'|"[^"]*"/
|
55
|
+
},
|
56
|
+
attribute : {
|
57
|
+
exp: /\b([a-zA-Z-:]+)(=)/,
|
58
|
+
replacement: "<span class=\"$0\">$1</span>$2"
|
59
|
+
},
|
60
|
+
doctype : {
|
61
|
+
exp: /<!DOCTYPE([^&]|&[^g]|&g[^t])*>/
|
62
|
+
}
|
63
|
+
});
|
64
|
+
|
65
|
+
CodeHighlighter.addStyle("javascript",{
|
66
|
+
comment : {
|
67
|
+
exp : /(\/\/[^\n]*(\n|$))|(\/\*[^*]*\*+([^\/][^*]*\*+)*\/)/
|
68
|
+
},
|
69
|
+
brackets : {
|
70
|
+
exp : /\(|\)/
|
71
|
+
},
|
72
|
+
string : {
|
73
|
+
exp : /'[^']*'|"[^"]*"/
|
74
|
+
},
|
75
|
+
keywords : {
|
76
|
+
exp : /\b(arguments|break|case|continue|default|delete|do|else|false|for|function|if|in|instanceof|new|null|return|switch|this|true|typeof|var|void|while|with)\b/
|
77
|
+
},
|
78
|
+
global : {
|
79
|
+
exp : /\b(toString|valueOf|window|element|prototype|constructor|document|escape|unescape|parseInt|parseFloat|setTimeout|clearTimeout|setInterval|clearInterval|NaN|isNaN|Infinity)\b/
|
80
|
+
}
|
81
|
+
});
|
82
|
+
|
83
|
+
CodeHighlighter.addStyle("yaml", {
|
84
|
+
keyword : {
|
85
|
+
exp : /\/\*[^*]*\*+([^\/][^*]*\*+)*\//
|
86
|
+
},
|
87
|
+
value : {
|
88
|
+
exp : /@\w[\w\s]*/
|
89
|
+
},
|
90
|
+
});
|
@@ -0,0 +1,441 @@
|
|
1
|
+
/* Guides.rubyonrails.org */
|
2
|
+
/* Main.css */
|
3
|
+
/* Created January 30, 2009 */
|
4
|
+
/* Modified February 8, 2009
|
5
|
+
--------------------------------------- */
|
6
|
+
|
7
|
+
/* General
|
8
|
+
--------------------------------------- */
|
9
|
+
|
10
|
+
.left {float: left; margin-right: 1em;}
|
11
|
+
.right {float: right; margin-left: 1em;}
|
12
|
+
.small {font-size: smaller;}
|
13
|
+
.large {font-size: larger;}
|
14
|
+
.hide {display: none;}
|
15
|
+
|
16
|
+
li ul, li ol { margin:0 1.5em; }
|
17
|
+
ul, ol { margin: 0 1.5em 1.5em 1.5em; }
|
18
|
+
|
19
|
+
ul { list-style-type: disc; }
|
20
|
+
ol { list-style-type: decimal; }
|
21
|
+
|
22
|
+
dl { margin: 0 0 1.5em 0; }
|
23
|
+
dl dt { font-weight: bold; }
|
24
|
+
dd { margin-left: 1.5em;}
|
25
|
+
|
26
|
+
pre,code { margin: 1.5em 0; white-space: pre; overflow: auto; }
|
27
|
+
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }
|
28
|
+
|
29
|
+
abbr, acronym { border-bottom: 1px dotted #666; }
|
30
|
+
address { margin: 0 0 1.5em; font-style: italic; }
|
31
|
+
del { color:#666; }
|
32
|
+
|
33
|
+
blockquote { margin: 1.5em; color: #666; font-style: italic; }
|
34
|
+
strong { font-weight: bold; }
|
35
|
+
em, dfn { font-style: italic; }
|
36
|
+
dfn { font-weight: bold; }
|
37
|
+
sup, sub { line-height: 0; }
|
38
|
+
p {margin: 0 0 1.5em;}
|
39
|
+
|
40
|
+
label { font-weight: bold; }
|
41
|
+
fieldset { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
|
42
|
+
legend { font-weight: bold; font-size:1.2em; }
|
43
|
+
|
44
|
+
input.text, input.title,
|
45
|
+
textarea, select {
|
46
|
+
margin:0.5em 0;
|
47
|
+
border:1px solid #bbb;
|
48
|
+
}
|
49
|
+
|
50
|
+
table {
|
51
|
+
margin: 0 0 1.5em;
|
52
|
+
border: 2px solid #CCC;
|
53
|
+
background: #FFF;
|
54
|
+
border-collapse: collapse;
|
55
|
+
}
|
56
|
+
|
57
|
+
table th, table td {
|
58
|
+
padding: 0.25em 1em;
|
59
|
+
border: 1px solid #CCC;
|
60
|
+
border-collapse: collapse;
|
61
|
+
}
|
62
|
+
|
63
|
+
table th {
|
64
|
+
border-bottom: 2px solid #CCC;
|
65
|
+
background: #EEE;
|
66
|
+
font-weight: bold;
|
67
|
+
padding: 0.5em 1em;
|
68
|
+
}
|
69
|
+
|
70
|
+
|
71
|
+
/* Structure and Layout
|
72
|
+
--------------------------------------- */
|
73
|
+
|
74
|
+
body {
|
75
|
+
text-align: center;
|
76
|
+
font-family: Helvetica, Arial, sans-serif;
|
77
|
+
font-size: 87.5%;
|
78
|
+
line-height: 1.5em;
|
79
|
+
background: #222;
|
80
|
+
color: #999;
|
81
|
+
}
|
82
|
+
|
83
|
+
.wrapper {
|
84
|
+
text-align: left;
|
85
|
+
margin: 0 auto;
|
86
|
+
width: 69em;
|
87
|
+
}
|
88
|
+
|
89
|
+
#topNav {
|
90
|
+
padding: 1em 0;
|
91
|
+
color: #565656;
|
92
|
+
}
|
93
|
+
|
94
|
+
#header {
|
95
|
+
background: #c52f24 url(../../images/header_tile.gif) repeat-x;
|
96
|
+
color: #FFF;
|
97
|
+
padding: 1.5em 0;
|
98
|
+
position: relative;
|
99
|
+
z-index: 99;
|
100
|
+
}
|
101
|
+
|
102
|
+
#feature {
|
103
|
+
background: #d5e9f6 url(../../images/feature_tile.gif) repeat-x;
|
104
|
+
color: #333;
|
105
|
+
padding: 0.5em 0 1.5em;
|
106
|
+
}
|
107
|
+
|
108
|
+
#container {
|
109
|
+
background: #FFF;
|
110
|
+
color: #333;
|
111
|
+
padding: 0.5em 0 1.5em 0;
|
112
|
+
}
|
113
|
+
|
114
|
+
#mainCol {
|
115
|
+
width: 45em;
|
116
|
+
margin-left: 2em;
|
117
|
+
}
|
118
|
+
|
119
|
+
#subCol {
|
120
|
+
position: absolute;
|
121
|
+
z-index: 0;
|
122
|
+
top: 0;
|
123
|
+
right: 0;
|
124
|
+
background: #FFF;
|
125
|
+
padding: 1em 1.5em 1em 1.25em;
|
126
|
+
width: 17em;
|
127
|
+
font-size: 0.9285em;
|
128
|
+
line-height: 1.3846em;
|
129
|
+
}
|
130
|
+
|
131
|
+
#extraCol {display: none;}
|
132
|
+
|
133
|
+
#footer {
|
134
|
+
padding: 2em 0;
|
135
|
+
background: url(../../images/footer_tile.gif) repeat-x;
|
136
|
+
}
|
137
|
+
#footer .wrapper {
|
138
|
+
padding-left: 2em;
|
139
|
+
width: 67em;
|
140
|
+
}
|
141
|
+
|
142
|
+
#header .wrapper, #topNav .wrapper, #feature .wrapper {padding-left: 1em; width: 68em;}
|
143
|
+
#feature .wrapper {width: 45em; padding-right: 23em; position: relative; z-index: 0;}
|
144
|
+
|
145
|
+
/* Links
|
146
|
+
--------------------------------------- */
|
147
|
+
|
148
|
+
a, a:link, a:visited {
|
149
|
+
color: #ee3f3f;
|
150
|
+
text-decoration: underline;
|
151
|
+
}
|
152
|
+
|
153
|
+
#mainCol a, #subCol a, #feature a {color: #980905;}
|
154
|
+
|
155
|
+
|
156
|
+
/* Navigation
|
157
|
+
--------------------------------------- */
|
158
|
+
|
159
|
+
.nav {margin: 0; padding: 0;}
|
160
|
+
.nav li {display: inline; list-style: none;}
|
161
|
+
|
162
|
+
#header .nav {
|
163
|
+
float: right;
|
164
|
+
margin-top: 1.5em;
|
165
|
+
font-size: 1.2857em;
|
166
|
+
}
|
167
|
+
|
168
|
+
#header .nav li {margin: 0 0 0 0.5em;}
|
169
|
+
#header .nav a {color: #FFF; text-decoration: none;}
|
170
|
+
#header .nav a:hover {text-decoration: underline;}
|
171
|
+
|
172
|
+
#header .nav .index {
|
173
|
+
padding: 0.5em 1.5em;
|
174
|
+
border-radius: 1em;
|
175
|
+
-webkit-border-radius: 1em;
|
176
|
+
-moz-border-radius: 1em;
|
177
|
+
background: #980905;
|
178
|
+
position: relative;
|
179
|
+
}
|
180
|
+
|
181
|
+
#header .nav .index a {
|
182
|
+
background: #980905 url(../../images/nav_arrow.gif) no-repeat right top;
|
183
|
+
padding-right: 1em;
|
184
|
+
position: relative;
|
185
|
+
z-index: 15;
|
186
|
+
padding-bottom: 0.125em;
|
187
|
+
}
|
188
|
+
#header .nav .index:hover a, #header .nav .index a:hover {background-position: right -81px;}
|
189
|
+
|
190
|
+
#guides {
|
191
|
+
width: 27em;
|
192
|
+
display: block;
|
193
|
+
background: #980905;
|
194
|
+
border-radius: 1em;
|
195
|
+
-webkit-border-radius: 1em;
|
196
|
+
-moz-border-radius: 1em;
|
197
|
+
-webkit-box-shadow: 0.25em 0.25em 1em rgba(0,0,0,0.25);
|
198
|
+
-moz-box-shadow: rgba(0,0,0,0.25) 0.25em 0.25em 1em;
|
199
|
+
color: #f1938c;
|
200
|
+
padding: 1.5em 2em;
|
201
|
+
position: absolute;
|
202
|
+
z-index: 10;
|
203
|
+
top: -0.25em;
|
204
|
+
right: 0;
|
205
|
+
padding-top: 2em;
|
206
|
+
}
|
207
|
+
|
208
|
+
#guides dt, #guides dd {
|
209
|
+
font-weight: normal;
|
210
|
+
font-size: 0.722em;
|
211
|
+
margin: 0;
|
212
|
+
padding: 0;
|
213
|
+
}
|
214
|
+
#guides dt {padding:0; margin: 0.5em 0 0;}
|
215
|
+
#guides a {color: #FFF; background: none !important;}
|
216
|
+
#guides .L, #guides .R {float: left; width: 50%; margin: 0; padding: 0;}
|
217
|
+
#guides .R {float: right;}
|
218
|
+
#guides hr {
|
219
|
+
display: block;
|
220
|
+
border: none;
|
221
|
+
height: 1px;
|
222
|
+
color: #f1938c;
|
223
|
+
background: #f1938c;
|
224
|
+
}
|
225
|
+
|
226
|
+
/* Headings
|
227
|
+
--------------------------------------- */
|
228
|
+
|
229
|
+
h1 {
|
230
|
+
font-size: 2.5em;
|
231
|
+
line-height: 1em;
|
232
|
+
margin: 0.6em 0 .2em;
|
233
|
+
font-weight: bold;
|
234
|
+
}
|
235
|
+
|
236
|
+
h2 {
|
237
|
+
font-size: 2.1428em;
|
238
|
+
line-height: 1em;
|
239
|
+
margin: 0.7em 0 .2333em;
|
240
|
+
font-weight: bold;
|
241
|
+
}
|
242
|
+
|
243
|
+
h3 {
|
244
|
+
font-size: 1.7142em;
|
245
|
+
line-height: 1.286em;
|
246
|
+
margin: 0.875em 0 0.2916em;
|
247
|
+
font-weight: bold;
|
248
|
+
}
|
249
|
+
|
250
|
+
h4 {
|
251
|
+
font-size: 1.2857em;
|
252
|
+
line-height: 1.2em;
|
253
|
+
margin: 1.6667em 0 .3887em;
|
254
|
+
font-weight: bold;
|
255
|
+
}
|
256
|
+
|
257
|
+
h5 {
|
258
|
+
font-size: 1em;
|
259
|
+
line-height: 1.5em;
|
260
|
+
margin: 1em 0 .5em;
|
261
|
+
font-weight: bold;
|
262
|
+
}
|
263
|
+
|
264
|
+
h6 {
|
265
|
+
font-size: 1em;
|
266
|
+
line-height: 1.5em;
|
267
|
+
margin: 1em 0 .5em;
|
268
|
+
font-weight: normal;
|
269
|
+
}
|
270
|
+
|
271
|
+
.section {
|
272
|
+
padding-bottom: 0.25em;
|
273
|
+
border-bottom: 1px solid #999;
|
274
|
+
}
|
275
|
+
|
276
|
+
/* Content
|
277
|
+
--------------------------------------- */
|
278
|
+
|
279
|
+
.pic {
|
280
|
+
margin: 0 2em 2em 0;
|
281
|
+
}
|
282
|
+
|
283
|
+
#topNav strong {color: #999; margin-right: 0.5em;}
|
284
|
+
#topNav strong a {color: #FFF;}
|
285
|
+
|
286
|
+
#header h1 {
|
287
|
+
float: left;
|
288
|
+
background: url(../../images/rails_guides_logo.gif) no-repeat;
|
289
|
+
width: 297px;
|
290
|
+
text-indent: -9999em;
|
291
|
+
margin: 0;
|
292
|
+
padding: 0;
|
293
|
+
}
|
294
|
+
|
295
|
+
#header h1 a {
|
296
|
+
text-decoration: none;
|
297
|
+
display: block;
|
298
|
+
height: 77px;
|
299
|
+
}
|
300
|
+
|
301
|
+
#feature p {
|
302
|
+
font-size: 1.2857em;
|
303
|
+
margin-bottom: 0.75em;
|
304
|
+
}
|
305
|
+
|
306
|
+
#feature ul {margin-left: 0;}
|
307
|
+
#feature ul li {
|
308
|
+
list-style: none;
|
309
|
+
background: url(../../images/check_bullet.gif) no-repeat left 0.5em;
|
310
|
+
padding: 0.5em 1.75em 0.5em 1.75em;
|
311
|
+
font-size: 1.1428em;
|
312
|
+
font-weight: bold;
|
313
|
+
}
|
314
|
+
|
315
|
+
#mainCol dd, #subCol dd {
|
316
|
+
padding: 0.25em 0 1em;
|
317
|
+
border-bottom: 1px solid #CCC;
|
318
|
+
margin-bottom: 1em;
|
319
|
+
margin-left: 0;
|
320
|
+
/*padding-left: 28px;*/
|
321
|
+
padding-left: 0;
|
322
|
+
}
|
323
|
+
|
324
|
+
#mainCol dt, #subCol dt {
|
325
|
+
font-size: 1.2857em;
|
326
|
+
padding: 0.125em 0 0.25em 0;
|
327
|
+
margin-bottom: 0;
|
328
|
+
/*background: url(../../images/book_icon.gif) no-repeat left top;
|
329
|
+
padding: 0.125em 0 0.25em 28px;*/
|
330
|
+
}
|
331
|
+
|
332
|
+
#mainCol dd.ticket, #subCol dd.ticket {
|
333
|
+
background: #fff9d8 url(../../images/tab_yellow.gif) no-repeat left top;
|
334
|
+
border: none;
|
335
|
+
padding: 1.25em 1em 1.25em 48px;
|
336
|
+
margin-left: 0;
|
337
|
+
margin-top: 0.25em;
|
338
|
+
}
|
339
|
+
|
340
|
+
#mainCol div.warning, #subCol dd.warning {
|
341
|
+
background: #f9d9d8 url(../../images/tab_red.gif) no-repeat left top;
|
342
|
+
border: none;
|
343
|
+
padding: 1.25em 1.25em 1.25em 48px;
|
344
|
+
margin-left: 0;
|
345
|
+
margin-top: 0.25em;
|
346
|
+
}
|
347
|
+
|
348
|
+
#subCol .chapters {color: #980905;}
|
349
|
+
#subCol .chapters a {font-weight: bold;}
|
350
|
+
#subCol .chapters ul a {font-weight: normal;}
|
351
|
+
#subCol .chapters li {margin-bottom: 0.75em;}
|
352
|
+
#subCol h3.chapter {margin-top: 0.25em;}
|
353
|
+
#subCol h3.chapter img {vertical-align: text-bottom;}
|
354
|
+
#subCol .chapters ul {margin-left: 0; margin-top: 0.5em;}
|
355
|
+
#subCol .chapters ul li {
|
356
|
+
list-style: none;
|
357
|
+
padding: 0 0 0 1em;
|
358
|
+
background: url(../../images/bullet.gif) no-repeat left 0.45em;
|
359
|
+
margin-left: 0;
|
360
|
+
font-size: 1em;
|
361
|
+
font-weight: normal;
|
362
|
+
}
|
363
|
+
|
364
|
+
tt {
|
365
|
+
font-family: monaco, "Bitstream Vera Sans Mono", "Courier New", courier, monospace;
|
366
|
+
}
|
367
|
+
|
368
|
+
div.code_container {
|
369
|
+
background: #EEE url(../../images/tab_grey.gif) no-repeat left top;
|
370
|
+
padding: 0.25em 1em 0.5em 48px;
|
371
|
+
}
|
372
|
+
|
373
|
+
code {
|
374
|
+
font-family: monaco, "Bitstream Vera Sans Mono", "Courier New", courier, monospace;
|
375
|
+
border: none;
|
376
|
+
margin: 0.25em 0 1.5em 0;
|
377
|
+
display: block;
|
378
|
+
}
|
379
|
+
|
380
|
+
.note {
|
381
|
+
background: #fff9d8 url(../../images/tab_note.gif) no-repeat left top;
|
382
|
+
border: none;
|
383
|
+
padding: 1em 1em 0.25em 48px;
|
384
|
+
margin: 0.25em 0 1.5em 0;
|
385
|
+
}
|
386
|
+
|
387
|
+
.info {
|
388
|
+
background: #d5e9f6 url(../../images/tab_info.gif) no-repeat left top;
|
389
|
+
border: none;
|
390
|
+
padding: 1em 1em 0.25em 48px;
|
391
|
+
margin: 0.25em 0 1.5em 0;
|
392
|
+
}
|
393
|
+
|
394
|
+
.note tt, .info tt {border:none; background: none; padding: 0;}
|
395
|
+
|
396
|
+
#mainCol ul li {
|
397
|
+
list-style:none;
|
398
|
+
background: url(../../images/grey_bullet.gif) no-repeat left 0.5em;
|
399
|
+
padding-left: 1em;
|
400
|
+
margin-left: 0;
|
401
|
+
}
|
402
|
+
|
403
|
+
#subCol .content {
|
404
|
+
font-size: 0.7857em;
|
405
|
+
line-height: 1.5em;
|
406
|
+
}
|
407
|
+
|
408
|
+
#subCol .content li {
|
409
|
+
font-weight: normal;
|
410
|
+
background: none;
|
411
|
+
padding: 0 0 1em;
|
412
|
+
font-size: 1.1667em;
|
413
|
+
}
|
414
|
+
|
415
|
+
/* Clearing
|
416
|
+
--------------------------------------- */
|
417
|
+
|
418
|
+
.clearfix:after {
|
419
|
+
content: ".";
|
420
|
+
display: block;
|
421
|
+
height: 0;
|
422
|
+
clear: both;
|
423
|
+
visibility: hidden;
|
424
|
+
}
|
425
|
+
|
426
|
+
.clearfix {display: inline-block;}
|
427
|
+
* html .clearfix {height: 1%;}
|
428
|
+
.clearfix {display: block;}
|
429
|
+
.clear { clear:both; }
|
430
|
+
|
431
|
+
/* Same bottom margin for special boxes than for regular paragraphs, this way
|
432
|
+
intermediate whitespace looks uniform. */
|
433
|
+
div.code_container, div.important, div.caution, div.warning, div.note, div.info {
|
434
|
+
margin-bottom: 1.5em;
|
435
|
+
}
|
436
|
+
|
437
|
+
/* Remove bottom margin of paragraphs in special boxes, otherwise they get a
|
438
|
+
spurious blank area below with the box background. */
|
439
|
+
div.important p, div.caution p, div.warning p, div.note p, div.info p {
|
440
|
+
margin-bottom: 0px;
|
441
|
+
}
|