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
@@ -1,4 +1,4 @@
|
|
1
|
-
#content_types li {
|
2
|
-
font-size: 10pt;
|
3
|
-
margin: 10px;
|
1
|
+
#content_types li {
|
2
|
+
font-size: 10pt;
|
3
|
+
margin: 10px;
|
4
4
|
}
|
@@ -1,118 +1,118 @@
|
|
1
|
-
.dashboard_unit {
|
2
|
-
width: 990px;
|
3
|
-
margin: -4px 5px 0 5px;
|
4
|
-
background-color: #FFFFFF;
|
5
|
-
}
|
6
|
-
|
7
|
-
.dashboard_unit h2 {
|
8
|
-
height: 12px;
|
9
|
-
color: #FFF;
|
10
|
-
padding: 12px;
|
11
|
-
font-weight: bold;
|
12
|
-
font-size: 10pt;
|
13
|
-
text-transform: uppercase;
|
14
|
-
letter-spacing: 1px;
|
15
|
-
}
|
16
|
-
.dashboard_unit h2.left {
|
17
|
-
background: #4679B8 url(/images/cms/dashboard/header_left_bg.gif) no-repeat 0 0;
|
18
|
-
}
|
19
|
-
|
20
|
-
.dashboard_unit form {
|
21
|
-
padding: 6px;
|
22
|
-
}
|
23
|
-
|
24
|
-
.dashboard_unit {
|
25
|
-
width: 485px;
|
26
|
-
background: #FFF url(/images/cms/content_bg.gif) repeat-x 100% 100%;
|
27
|
-
padding-bottom: 20px;
|
28
|
-
}
|
29
|
-
|
30
|
-
.dashboard_wrap {
|
31
|
-
background: transparent url(/images/cms/dot.png) repeat scroll 0 0;
|
32
|
-
float: left;
|
33
|
-
position: relative;
|
34
|
-
}
|
35
|
-
|
36
|
-
.tasks_margin {
|
37
|
-
margin-left: 10px;
|
38
|
-
}
|
39
|
-
|
40
|
-
.tasks_margin .dashboard_unit {
|
41
|
-
margin-left: 5px !important;
|
42
|
-
}
|
43
|
-
|
44
|
-
.lt_button {
|
45
|
-
margin-bottom: 20px;
|
46
|
-
}
|
47
|
-
table.data td.name {
|
48
|
-
padding: 6px 0 6px 15px;
|
49
|
-
}
|
50
|
-
table.data td {
|
51
|
-
padding: 0 0 0 18px;
|
52
|
-
}
|
53
|
-
|
54
|
-
table.data th {
|
55
|
-
padding-left: 15px;
|
56
|
-
}
|
57
|
-
|
58
|
-
table.data td {
|
59
|
-
color: #717171;
|
60
|
-
font-size: 7pt;
|
61
|
-
}
|
62
|
-
|
63
|
-
table.data td a {
|
64
|
-
text-decoration: none;
|
65
|
-
}
|
66
|
-
table.data td.select {
|
67
|
-
padding-left: 8px;
|
68
|
-
vertical-align: middle;
|
69
|
-
}
|
70
|
-
td.select {
|
71
|
-
width: 4px;
|
72
|
-
}
|
73
|
-
td.name {
|
74
|
-
width: 233px;
|
75
|
-
}
|
76
|
-
td.updated_by {
|
77
|
-
width: 70px;
|
78
|
-
}
|
79
|
-
|
80
|
-
table.data {
|
81
|
-
background: #FFF;
|
82
|
-
}
|
83
|
-
|
84
|
-
table.data .lt_button {
|
85
|
-
margin: 10px 0 60px 6px;
|
86
|
-
}
|
87
|
-
div.bottom_left {
|
88
|
-
margin-left: 5px;
|
89
|
-
margin-bottom: -4px;
|
90
|
-
height: 5px;
|
91
|
-
|
92
|
-
}
|
93
|
-
|
94
|
-
div.bottom_cap {
|
95
|
-
height: 9px;
|
96
|
-
background: transparent url(/images/cms/dashboard/bottom_cap_content.png) no-repeat 0 0;
|
97
|
-
}
|
98
|
-
|
99
|
-
#page_drafts {
|
100
|
-
float: left;
|
101
|
-
}
|
102
|
-
|
103
|
-
#tasks {
|
104
|
-
margin-left: 0;
|
105
|
-
float: left;
|
106
|
-
}
|
107
|
-
|
108
|
-
#tasks th.assigned_by,
|
109
|
-
#tasks th.due_date {
|
110
|
-
white-space: nowrap;
|
111
|
-
}
|
112
|
-
|
113
|
-
div.top_cap {
|
114
|
-
background: url(/images/cms/dashboard/top_cap.png) no-repeat 0 0;
|
115
|
-
}
|
116
|
-
#contentwrapbig {
|
117
|
-
background: none;
|
118
|
-
}
|
1
|
+
.dashboard_unit {
|
2
|
+
width: 990px;
|
3
|
+
margin: -4px 5px 0 5px;
|
4
|
+
background-color: #FFFFFF;
|
5
|
+
}
|
6
|
+
|
7
|
+
.dashboard_unit h2 {
|
8
|
+
height: 12px;
|
9
|
+
color: #FFF;
|
10
|
+
padding: 12px;
|
11
|
+
font-weight: bold;
|
12
|
+
font-size: 10pt;
|
13
|
+
text-transform: uppercase;
|
14
|
+
letter-spacing: 1px;
|
15
|
+
}
|
16
|
+
.dashboard_unit h2.left {
|
17
|
+
background: #4679B8 url(/images/cms/dashboard/header_left_bg.gif) no-repeat 0 0;
|
18
|
+
}
|
19
|
+
|
20
|
+
.dashboard_unit form {
|
21
|
+
padding: 6px;
|
22
|
+
}
|
23
|
+
|
24
|
+
.dashboard_unit {
|
25
|
+
width: 485px;
|
26
|
+
background: #FFF url(/images/cms/content_bg.gif) repeat-x 100% 100%;
|
27
|
+
padding-bottom: 20px;
|
28
|
+
}
|
29
|
+
|
30
|
+
.dashboard_wrap {
|
31
|
+
background: transparent url(/images/cms/dot.png) repeat scroll 0 0;
|
32
|
+
float: left;
|
33
|
+
position: relative;
|
34
|
+
}
|
35
|
+
|
36
|
+
.tasks_margin {
|
37
|
+
margin-left: 10px;
|
38
|
+
}
|
39
|
+
|
40
|
+
.tasks_margin .dashboard_unit {
|
41
|
+
margin-left: 5px !important;
|
42
|
+
}
|
43
|
+
|
44
|
+
.lt_button {
|
45
|
+
margin-bottom: 20px;
|
46
|
+
}
|
47
|
+
table.data td.name {
|
48
|
+
padding: 6px 0 6px 15px;
|
49
|
+
}
|
50
|
+
table.data td {
|
51
|
+
padding: 0 0 0 18px;
|
52
|
+
}
|
53
|
+
|
54
|
+
table.data th {
|
55
|
+
padding-left: 15px;
|
56
|
+
}
|
57
|
+
|
58
|
+
table.data td {
|
59
|
+
color: #717171;
|
60
|
+
font-size: 7pt;
|
61
|
+
}
|
62
|
+
|
63
|
+
table.data td a {
|
64
|
+
text-decoration: none;
|
65
|
+
}
|
66
|
+
table.data td.select {
|
67
|
+
padding-left: 8px;
|
68
|
+
vertical-align: middle;
|
69
|
+
}
|
70
|
+
td.select {
|
71
|
+
width: 4px;
|
72
|
+
}
|
73
|
+
td.name {
|
74
|
+
width: 233px;
|
75
|
+
}
|
76
|
+
td.updated_by {
|
77
|
+
width: 70px;
|
78
|
+
}
|
79
|
+
|
80
|
+
table.data {
|
81
|
+
background: #FFF;
|
82
|
+
}
|
83
|
+
|
84
|
+
table.data .lt_button {
|
85
|
+
margin: 10px 0 60px 6px;
|
86
|
+
}
|
87
|
+
div.bottom_left {
|
88
|
+
margin-left: 5px;
|
89
|
+
margin-bottom: -4px;
|
90
|
+
height: 5px;
|
91
|
+
|
92
|
+
}
|
93
|
+
|
94
|
+
div.bottom_cap {
|
95
|
+
height: 9px;
|
96
|
+
background: transparent url(/images/cms/dashboard/bottom_cap_content.png) no-repeat 0 0;
|
97
|
+
}
|
98
|
+
|
99
|
+
#page_drafts {
|
100
|
+
float: left;
|
101
|
+
}
|
102
|
+
|
103
|
+
#tasks {
|
104
|
+
margin-left: 0;
|
105
|
+
float: left;
|
106
|
+
}
|
107
|
+
|
108
|
+
#tasks th.assigned_by,
|
109
|
+
#tasks th.due_date {
|
110
|
+
white-space: nowrap;
|
111
|
+
}
|
112
|
+
|
113
|
+
div.top_cap {
|
114
|
+
background: url(/images/cms/dashboard/top_cap.png) no-repeat 0 0;
|
115
|
+
}
|
116
|
+
#contentwrapbig {
|
117
|
+
background: none;
|
118
|
+
}
|
@@ -1,156 +1,156 @@
|
|
1
|
-
table.data td {
|
2
|
-
padding: 6px 0;
|
3
|
-
}
|
4
|
-
|
5
|
-
table.data td div.dividers {
|
6
|
-
background: url(/images/cms/table/divider.gif) repeat-y 100% 100%;
|
7
|
-
padding: 4px 22px 4px 0;
|
8
|
-
}
|
9
|
-
|
10
|
-
table.data th div.dividers {
|
11
|
-
background: url(/images/cms/table/th_divider.gif) repeat-y 100% 100%;
|
12
|
-
padding: 8px;
|
13
|
-
position: relative;
|
14
|
-
}
|
15
|
-
table.data th.last div.dividers {
|
16
|
-
background: none;
|
17
|
-
}
|
18
|
-
|
19
|
-
table.data td.used {
|
20
|
-
text-align: center;
|
21
|
-
}
|
22
|
-
|
23
|
-
table.data {
|
24
|
-
width: 100%;
|
25
|
-
border: 1px solid #E4E4E4;
|
26
|
-
border-collapse: collapse;
|
27
|
-
}
|
28
|
-
|
29
|
-
table.data th {
|
30
|
-
font-size: 120%;
|
31
|
-
}
|
32
|
-
|
33
|
-
.dashboard_unit table.data th {
|
34
|
-
font-size: 90%;
|
35
|
-
}
|
36
|
-
|
37
|
-
.data .block_status {
|
38
|
-
padding-left: 10px;
|
39
|
-
}
|
40
|
-
.data .block_status {
|
41
|
-
padding: 2px 0 0 10px;
|
42
|
-
vertical-align: middle;
|
43
|
-
}
|
44
|
-
.data .block_status div, .block_status img {
|
45
|
-
float: left;
|
46
|
-
}
|
47
|
-
.data .block_status div {
|
48
|
-
margin: 3px 0 0 3px;
|
49
|
-
text-transform: capitalize;
|
50
|
-
}
|
51
|
-
.block_status img {
|
52
|
-
border: 1px solid white;
|
53
|
-
}
|
54
|
-
.data th.first {
|
55
|
-
background: #B6B6B6 url(/images/cms/table/tr_bg.gif) no-repeat 0 0;
|
56
|
-
}
|
57
|
-
.data th {
|
58
|
-
background: #B6B6B6 url(/images/cms/table/th_bg.gif) repeat-x 0 0;
|
59
|
-
/* border-right: 1px solid #8E8E8E; */
|
60
|
-
border-bottom: 1px solid #8E8E8E;
|
61
|
-
color: #686868;
|
62
|
-
font-weight: bold;
|
63
|
-
font-size: 8pt;
|
64
|
-
letter-spacing: 1px;
|
65
|
-
}
|
66
|
-
.data th.last {
|
67
|
-
background: #B6B6B6 url(/images/cms/table/th_last_bg.gif) no-repeat 100% 0;
|
68
|
-
border-right: none;
|
69
|
-
}
|
70
|
-
.data td {
|
71
|
-
padding-left: 30px;
|
72
|
-
}
|
73
|
-
.data td.unbordered, .data th.unbordered {
|
74
|
-
border-right: none;
|
75
|
-
}
|
76
|
-
|
77
|
-
.data td {
|
78
|
-
height: 8px;
|
79
|
-
margin: 0;
|
80
|
-
padding: 0;
|
81
|
-
border-bottom: 1px solid #E9E9E9;
|
82
|
-
border-right: none;
|
83
|
-
}
|
84
|
-
.data tr.hover {
|
85
|
-
background-color: #D0D0D0;
|
86
|
-
cursor: pointer;
|
87
|
-
}
|
88
|
-
|
89
|
-
.data tr.selected {
|
90
|
-
background-color: #CADCF4;
|
91
|
-
}
|
92
|
-
|
93
|
-
table.data td.first, table.data td.last {
|
94
|
-
width: 1%;
|
95
|
-
padding: 5px;
|
96
|
-
border-bottom: none;
|
97
|
-
}
|
98
|
-
|
99
|
-
table.data tr.hover td.first {
|
100
|
-
background: #FFFFFF url(/images/cms/table/td_cap_first_h.gif) no-repeat 100% 0;
|
101
|
-
}
|
102
|
-
|
103
|
-
table.data tr.hover td.last {
|
104
|
-
background: #FFFFFF url(/images/cms/table/td_cap_last_h.gif) no-repeat 0 0;
|
105
|
-
}
|
106
|
-
|
107
|
-
table.data tr.selected td.first {
|
108
|
-
background: #FFFFFF url(/images/cms/table/td_cap_first_s.gif) no-repeat 100% 0;
|
109
|
-
}
|
110
|
-
table.data tr.selected td.last {
|
111
|
-
background: #FFFFFF url(/images/cms/table/td_cap_last_s.gif) no-repeat 0 0;
|
112
|
-
}
|
113
|
-
table.data tr.hover td.buffer {
|
114
|
-
background: #FFFFFF;
|
115
|
-
cursor: default;
|
116
|
-
}
|
117
|
-
|
118
|
-
.roundedcorners {
|
119
|
-
position: relative;
|
120
|
-
}
|
121
|
-
|
122
|
-
.bl {
|
123
|
-
position: absolute;
|
124
|
-
bottom: 0;
|
125
|
-
left: -1px;
|
126
|
-
height: 5px;
|
127
|
-
width: 5px;
|
128
|
-
background: url(/images/cms/table/bl.gif) no-repeat 0 0
|
129
|
-
}
|
130
|
-
|
131
|
-
.br {
|
132
|
-
position: absolute;
|
133
|
-
bottom: 0;
|
134
|
-
right: 0;
|
135
|
-
height: 5px;
|
136
|
-
width: 5px;
|
137
|
-
background: url(/images/cms/table/br.gif) no-repeat 0 0
|
138
|
-
}
|
139
|
-
|
140
|
-
.tl {
|
141
|
-
position: absolute;
|
142
|
-
top: -1px;
|
143
|
-
left: -1px;
|
144
|
-
height: 5px;
|
145
|
-
width: 5px;
|
146
|
-
background: url(/images/cms/table/tl.gif) no-repeat 0 0
|
147
|
-
}
|
148
|
-
|
149
|
-
.tr {
|
150
|
-
position: absolute;
|
151
|
-
top: -1px;
|
152
|
-
right: 0px;
|
153
|
-
height: 5px;
|
154
|
-
width: 5px;
|
155
|
-
background: url(/images/cms/table/tr.gif) no-repeat 0 0
|
1
|
+
table.data td {
|
2
|
+
padding: 6px 0;
|
3
|
+
}
|
4
|
+
|
5
|
+
table.data td div.dividers {
|
6
|
+
background: url(/images/cms/table/divider.gif) repeat-y 100% 100%;
|
7
|
+
padding: 4px 22px 4px 0;
|
8
|
+
}
|
9
|
+
|
10
|
+
table.data th div.dividers {
|
11
|
+
background: url(/images/cms/table/th_divider.gif) repeat-y 100% 100%;
|
12
|
+
padding: 8px;
|
13
|
+
position: relative;
|
14
|
+
}
|
15
|
+
table.data th.last div.dividers {
|
16
|
+
background: none;
|
17
|
+
}
|
18
|
+
|
19
|
+
table.data td.used {
|
20
|
+
text-align: center;
|
21
|
+
}
|
22
|
+
|
23
|
+
table.data {
|
24
|
+
width: 100%;
|
25
|
+
border: 1px solid #E4E4E4;
|
26
|
+
border-collapse: collapse;
|
27
|
+
}
|
28
|
+
|
29
|
+
table.data th {
|
30
|
+
font-size: 120%;
|
31
|
+
}
|
32
|
+
|
33
|
+
.dashboard_unit table.data th {
|
34
|
+
font-size: 90%;
|
35
|
+
}
|
36
|
+
|
37
|
+
.data .block_status {
|
38
|
+
padding-left: 10px;
|
39
|
+
}
|
40
|
+
.data .block_status {
|
41
|
+
padding: 2px 0 0 10px;
|
42
|
+
vertical-align: middle;
|
43
|
+
}
|
44
|
+
.data .block_status div, .block_status img {
|
45
|
+
float: left;
|
46
|
+
}
|
47
|
+
.data .block_status div {
|
48
|
+
margin: 3px 0 0 3px;
|
49
|
+
text-transform: capitalize;
|
50
|
+
}
|
51
|
+
.block_status img {
|
52
|
+
border: 1px solid white;
|
53
|
+
}
|
54
|
+
.data th.first {
|
55
|
+
background: #B6B6B6 url(/images/cms/table/tr_bg.gif) no-repeat 0 0;
|
56
|
+
}
|
57
|
+
.data th {
|
58
|
+
background: #B6B6B6 url(/images/cms/table/th_bg.gif) repeat-x 0 0;
|
59
|
+
/* border-right: 1px solid #8E8E8E; */
|
60
|
+
border-bottom: 1px solid #8E8E8E;
|
61
|
+
color: #686868;
|
62
|
+
font-weight: bold;
|
63
|
+
font-size: 8pt;
|
64
|
+
letter-spacing: 1px;
|
65
|
+
}
|
66
|
+
.data th.last {
|
67
|
+
background: #B6B6B6 url(/images/cms/table/th_last_bg.gif) no-repeat 100% 0;
|
68
|
+
border-right: none;
|
69
|
+
}
|
70
|
+
.data td {
|
71
|
+
padding-left: 30px;
|
72
|
+
}
|
73
|
+
.data td.unbordered, .data th.unbordered {
|
74
|
+
border-right: none;
|
75
|
+
}
|
76
|
+
|
77
|
+
.data td {
|
78
|
+
height: 8px;
|
79
|
+
margin: 0;
|
80
|
+
padding: 0;
|
81
|
+
border-bottom: 1px solid #E9E9E9;
|
82
|
+
border-right: none;
|
83
|
+
}
|
84
|
+
.data tr.hover {
|
85
|
+
background-color: #D0D0D0;
|
86
|
+
cursor: pointer;
|
87
|
+
}
|
88
|
+
|
89
|
+
.data tr.selected {
|
90
|
+
background-color: #CADCF4;
|
91
|
+
}
|
92
|
+
|
93
|
+
table.data td.first, table.data td.last {
|
94
|
+
width: 1%;
|
95
|
+
padding: 5px;
|
96
|
+
border-bottom: none;
|
97
|
+
}
|
98
|
+
|
99
|
+
table.data tr.hover td.first {
|
100
|
+
background: #FFFFFF url(/images/cms/table/td_cap_first_h.gif) no-repeat 100% 0;
|
101
|
+
}
|
102
|
+
|
103
|
+
table.data tr.hover td.last {
|
104
|
+
background: #FFFFFF url(/images/cms/table/td_cap_last_h.gif) no-repeat 0 0;
|
105
|
+
}
|
106
|
+
|
107
|
+
table.data tr.selected td.first {
|
108
|
+
background: #FFFFFF url(/images/cms/table/td_cap_first_s.gif) no-repeat 100% 0;
|
109
|
+
}
|
110
|
+
table.data tr.selected td.last {
|
111
|
+
background: #FFFFFF url(/images/cms/table/td_cap_last_s.gif) no-repeat 0 0;
|
112
|
+
}
|
113
|
+
table.data tr.hover td.buffer {
|
114
|
+
background: #FFFFFF;
|
115
|
+
cursor: default;
|
116
|
+
}
|
117
|
+
|
118
|
+
.roundedcorners {
|
119
|
+
position: relative;
|
120
|
+
}
|
121
|
+
|
122
|
+
.bl {
|
123
|
+
position: absolute;
|
124
|
+
bottom: 0;
|
125
|
+
left: -1px;
|
126
|
+
height: 5px;
|
127
|
+
width: 5px;
|
128
|
+
background: url(/images/cms/table/bl.gif) no-repeat 0 0
|
129
|
+
}
|
130
|
+
|
131
|
+
.br {
|
132
|
+
position: absolute;
|
133
|
+
bottom: 0;
|
134
|
+
right: 0;
|
135
|
+
height: 5px;
|
136
|
+
width: 5px;
|
137
|
+
background: url(/images/cms/table/br.gif) no-repeat 0 0
|
138
|
+
}
|
139
|
+
|
140
|
+
.tl {
|
141
|
+
position: absolute;
|
142
|
+
top: -1px;
|
143
|
+
left: -1px;
|
144
|
+
height: 5px;
|
145
|
+
width: 5px;
|
146
|
+
background: url(/images/cms/table/tl.gif) no-repeat 0 0
|
147
|
+
}
|
148
|
+
|
149
|
+
.tr {
|
150
|
+
position: absolute;
|
151
|
+
top: -1px;
|
152
|
+
right: 0px;
|
153
|
+
height: 5px;
|
154
|
+
width: 5px;
|
155
|
+
background: url(/images/cms/table/tr.gif) no-repeat 0 0
|
156
156
|
}
|