browsercms 3.0.0 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (444) hide show
  1. data/app/controllers/cms/connectors_controller.rb +1 -1
  2. data/app/helpers/cms/application_helper.rb +2 -19
  3. data/app/helpers/cms/form_builder.rb +8 -5
  4. data/app/helpers/cms/menu_helper.rb +19 -5
  5. data/app/helpers/cms/page_helper.rb +9 -1
  6. data/app/helpers/cms/template_support.rb +21 -0
  7. data/app/models/abstract_file_block.rb +4 -0
  8. data/app/models/connector.rb +7 -3
  9. data/app/models/dynamic_view.rb +2 -4
  10. data/app/models/portlet.rb +22 -9
  11. data/app/models/section.rb +7 -5
  12. data/app/views/cms/blocks/_toolbar_for_member.html.erb +4 -4
  13. data/app/views/cms/blocks/index.html.erb +1 -1
  14. data/app/views/cms/blocks/usages.html.erb +44 -34
  15. data/app/views/cms/connectors/new.html.erb +2 -2
  16. data/app/views/cms/dynamic_views/_form.html.erb +1 -1
  17. data/app/views/cms/dynamic_views/index.html.erb +7 -3
  18. data/app/views/cms/email_messages/index.html.erb +3 -5
  19. data/app/views/cms/form_builder/_cms_datetime_select.html.erb +12 -0
  20. data/app/views/cms/form_builder/_cms_text_editor.html.erb +2 -2
  21. data/app/views/cms/form_builder/_cms_text_field.html.erb +1 -2
  22. data/app/views/cms/groups/_permissions.html.erb +1 -0
  23. data/app/views/cms/groups/_sections.html.erb +1 -0
  24. data/app/views/cms/groups/index.html.erb +3 -5
  25. data/app/views/cms/page_routes/index.html.erb +13 -7
  26. data/app/views/cms/page_routes/show.html.erb +4 -4
  27. data/app/views/cms/pages/_edit_connector.html.erb +4 -1
  28. data/app/views/cms/pages/_edit_container.html.erb +4 -1
  29. data/app/views/cms/redirects/index.html.erb +12 -7
  30. data/app/views/cms/routes/index.html.erb +11 -7
  31. data/app/views/cms/sections/_form.html.erb +4 -5
  32. data/app/views/cms/users/_groups.html.erb +1 -0
  33. data/app/views/layouts/_cms_toolbar.html.erb +37 -4
  34. data/app/views/layouts/_page_toolbar.html.erb +2 -2
  35. data/browsercms.gemspec +381 -3
  36. data/db/demo/data.rb +2 -1
  37. data/doc/app/classes/AbstractFileBlock.html +146 -0
  38. data/doc/app/classes/ActiveRecord.html +105 -0
  39. data/doc/app/classes/ActiveRecord/ConnectionAdapters/SchemaStatements.html +242 -0
  40. data/doc/app/classes/ActiveSupport.html +111 -0
  41. data/doc/app/classes/ActiveSupport/Cache.html +111 -0
  42. data/doc/app/classes/ActiveSupport/Cache/FileStore.html +146 -0
  43. data/doc/app/classes/ActsAsList.html +147 -0
  44. data/doc/app/classes/ActsAsList/ClassMethods.html +202 -0
  45. data/doc/app/classes/ActsAsList/InstanceMethods.html +510 -0
  46. data/doc/app/classes/ApplicationController.html +119 -0
  47. data/doc/app/classes/ApplicationHelper.html +112 -0
  48. data/doc/app/classes/Attachment.html +726 -0
  49. data/doc/app/classes/Category.html +230 -0
  50. data/doc/app/classes/CategoryType.html +214 -0
  51. data/doc/app/classes/Cms.html +638 -0
  52. data/doc/app/classes/Cms/Acts.html +111 -0
  53. data/doc/app/classes/Cms/Acts/ContentBlock.html +146 -0
  54. data/doc/app/classes/Cms/Acts/ContentBlock/MacroMethods.html +165 -0
  55. data/doc/app/classes/Cms/Acts/ContentBlock/MacroMethods/InstanceMethods.html +140 -0
  56. data/doc/app/classes/Cms/ApplicationController.html +418 -0
  57. data/doc/app/classes/Cms/ApplicationHelper.html +814 -0
  58. data/doc/app/classes/Cms/AttachmentsController.html +154 -0
  59. data/doc/app/classes/Cms/Authentication.html +116 -0
  60. data/doc/app/classes/Cms/Authentication/Controller.html +702 -0
  61. data/doc/app/classes/Cms/Authentication/Model.html +165 -0
  62. data/doc/app/classes/Cms/Authentication/Model/ClassMethods.html +246 -0
  63. data/doc/app/classes/Cms/Authentication/Model/InstanceMethods.html +412 -0
  64. data/doc/app/classes/Cms/BaseController.html +113 -0
  65. data/doc/app/classes/Cms/Behaviors.html +235 -0
  66. data/doc/app/classes/Cms/Behaviors/Archiving.html +147 -0
  67. data/doc/app/classes/Cms/Behaviors/Archiving/InstanceMethods.html +220 -0
  68. data/doc/app/classes/Cms/Behaviors/Archiving/MacroMethods.html +175 -0
  69. data/doc/app/classes/Cms/Behaviors/Attaching.html +160 -0
  70. data/doc/app/classes/Cms/Behaviors/Attaching/InstanceMethods.html +670 -0
  71. data/doc/app/classes/Cms/Behaviors/Attaching/MacroMethods.html +188 -0
  72. data/doc/app/classes/Cms/Behaviors/Categorizing.html +148 -0
  73. data/doc/app/classes/Cms/Behaviors/Categorizing/ClassMethods.html +105 -0
  74. data/doc/app/classes/Cms/Behaviors/Categorizing/InstanceMethods.html +140 -0
  75. data/doc/app/classes/Cms/Behaviors/Categorizing/MacroMethods.html +178 -0
  76. data/doc/app/classes/Cms/Behaviors/ClassMethods.html +272 -0
  77. data/doc/app/classes/Cms/Behaviors/Connecting.html +148 -0
  78. data/doc/app/classes/Cms/Behaviors/Connecting/ClassMethods.html +188 -0
  79. data/doc/app/classes/Cms/Behaviors/Connecting/InstanceMethods.html +312 -0
  80. data/doc/app/classes/Cms/Behaviors/Connecting/MacroMethods.html +184 -0
  81. data/doc/app/classes/Cms/Behaviors/DynamicAttributes.html +285 -0
  82. data/doc/app/classes/Cms/Behaviors/DynamicAttributes/InstanceMethods.html +181 -0
  83. data/doc/app/classes/Cms/Behaviors/DynamicAttributes/MacroMethods.html +243 -0
  84. data/doc/app/classes/Cms/Behaviors/FlushCacheOnChange.html +178 -0
  85. data/doc/app/classes/Cms/Behaviors/FlushCacheOnChange/InstanceMethods.html +142 -0
  86. data/doc/app/classes/Cms/Behaviors/FlushCacheOnChange/MacroMethods.html +175 -0
  87. data/doc/app/classes/Cms/Behaviors/Hiding.html +148 -0
  88. data/doc/app/classes/Cms/Behaviors/Hiding/ClassMethods.html +105 -0
  89. data/doc/app/classes/Cms/Behaviors/Hiding/InstanceMethods.html +220 -0
  90. data/doc/app/classes/Cms/Behaviors/Hiding/MacroMethods.html +176 -0
  91. data/doc/app/classes/Cms/Behaviors/InstanceMethods.html +234 -0
  92. data/doc/app/classes/Cms/Behaviors/Pagination.html +151 -0
  93. data/doc/app/classes/Cms/Behaviors/Pagination/ClassMethods.html +252 -0
  94. data/doc/app/classes/Cms/Behaviors/Pagination/Collection.html +437 -0
  95. data/doc/app/classes/Cms/Behaviors/Pagination/InvalidPage.html +146 -0
  96. data/doc/app/classes/Cms/Behaviors/Publishing.html +179 -0
  97. data/doc/app/classes/Cms/Behaviors/Publishing/ClassMethods.html +105 -0
  98. data/doc/app/classes/Cms/Behaviors/Publishing/InstanceMethods.html +333 -0
  99. data/doc/app/classes/Cms/Behaviors/Publishing/MacroMethods.html +180 -0
  100. data/doc/app/classes/Cms/Behaviors/Rendering.html +179 -0
  101. data/doc/app/classes/Cms/Behaviors/Rendering/MacroMethods.html +186 -0
  102. data/doc/app/classes/Cms/Behaviors/Searching.html +147 -0
  103. data/doc/app/classes/Cms/Behaviors/Searching/ClassMethods.html +164 -0
  104. data/doc/app/classes/Cms/Behaviors/Searching/MacroMethods.html +188 -0
  105. data/doc/app/classes/Cms/Behaviors/SoftDeleting.html +148 -0
  106. data/doc/app/classes/Cms/Behaviors/SoftDeleting/ClassMethods.html +217 -0
  107. data/doc/app/classes/Cms/Behaviors/SoftDeleting/InstanceMethods.html +247 -0
  108. data/doc/app/classes/Cms/Behaviors/SoftDeleting/MacroMethods.html +205 -0
  109. data/doc/app/classes/Cms/Behaviors/Taggable.html +148 -0
  110. data/doc/app/classes/Cms/Behaviors/Taggable/ClassMethods.html +164 -0
  111. data/doc/app/classes/Cms/Behaviors/Taggable/InstanceMethods.html +197 -0
  112. data/doc/app/classes/Cms/Behaviors/Taggable/MacroMethods.html +182 -0
  113. data/doc/app/classes/Cms/Behaviors/Userstamping.html +148 -0
  114. data/doc/app/classes/Cms/Behaviors/Userstamping/ClassMethods.html +105 -0
  115. data/doc/app/classes/Cms/Behaviors/Userstamping/InstanceMethods.html +143 -0
  116. data/doc/app/classes/Cms/Behaviors/Userstamping/MacroMethods.html +181 -0
  117. data/doc/app/classes/Cms/Behaviors/Versioning.html +148 -0
  118. data/doc/app/classes/Cms/Behaviors/Versioning/ClassMethods.html +237 -0
  119. data/doc/app/classes/Cms/Behaviors/Versioning/InstanceMethods.html +685 -0
  120. data/doc/app/classes/Cms/Behaviors/Versioning/MacroMethods.html +290 -0
  121. data/doc/app/classes/Cms/CacheController.html +174 -0
  122. data/doc/app/classes/Cms/Caching.html +171 -0
  123. data/doc/app/classes/Cms/CategoriesController.html +113 -0
  124. data/doc/app/classes/Cms/CategoryTypesController.html +148 -0
  125. data/doc/app/classes/Cms/ConnectorsController.html +215 -0
  126. data/doc/app/classes/Cms/ContentBlockController.html +1175 -0
  127. data/doc/app/classes/Cms/ContentController.html +313 -0
  128. data/doc/app/classes/Cms/ContentTypesController.html +148 -0
  129. data/doc/app/classes/Cms/DashboardController.html +151 -0
  130. data/doc/app/classes/Cms/DataLoader.html +182 -0
  131. data/doc/app/classes/Cms/DynamicViewsController.html +359 -0
  132. data/doc/app/classes/Cms/EmailMessagesController.html +172 -0
  133. data/doc/app/classes/Cms/ErrorHandling.html +172 -0
  134. data/doc/app/classes/Cms/Errors.html +111 -0
  135. data/doc/app/classes/Cms/Errors/AccessDenied.html +146 -0
  136. data/doc/app/classes/Cms/Extensions.html +140 -0
  137. data/doc/app/classes/Cms/Extensions/ActionView.html +111 -0
  138. data/doc/app/classes/Cms/Extensions/ActionView/Base.html +141 -0
  139. data/doc/app/classes/Cms/Extensions/ActiveRecord.html +116 -0
  140. data/doc/app/classes/Cms/Extensions/ActiveRecord/Base.html +144 -0
  141. data/doc/app/classes/Cms/Extensions/ActiveRecord/Errors.html +140 -0
  142. data/doc/app/classes/Cms/Extensions/Hash.html +175 -0
  143. data/doc/app/classes/Cms/Extensions/Integer.html +146 -0
  144. data/doc/app/classes/Cms/Extensions/NilClass.html +212 -0
  145. data/doc/app/classes/Cms/Extensions/String.html +212 -0
  146. data/doc/app/classes/Cms/FileBlocksController.html +113 -0
  147. data/doc/app/classes/Cms/FormBuilder.html +312 -0
  148. data/doc/app/classes/Cms/FormTagHelper.html +245 -0
  149. data/doc/app/classes/Cms/GroupsController.html +225 -0
  150. data/doc/app/classes/Cms/HomeController.html +148 -0
  151. data/doc/app/classes/Cms/HtmlBlocksController.html +113 -0
  152. data/doc/app/classes/Cms/ImageBlocksController.html +113 -0
  153. data/doc/app/classes/Cms/LinksController.html +341 -0
  154. data/doc/app/classes/Cms/MenuHelper.html +330 -0
  155. data/doc/app/classes/Cms/PageHelper.html +292 -0
  156. data/doc/app/classes/Cms/PageRouteConditionsController.html +113 -0
  157. data/doc/app/classes/Cms/PageRouteOptionsController.html +355 -0
  158. data/doc/app/classes/Cms/PageRouteRequirementsController.html +113 -0
  159. data/doc/app/classes/Cms/PageRoutesController.html +284 -0
  160. data/doc/app/classes/Cms/PagesController.html +331 -0
  161. data/doc/app/classes/Cms/PathHelper.html +268 -0
  162. data/doc/app/classes/Cms/PortletController.html +150 -0
  163. data/doc/app/classes/Cms/PortletsController.html +301 -0
  164. data/doc/app/classes/Cms/RedirectsController.html +172 -0
  165. data/doc/app/classes/Cms/ResourceController.html +616 -0
  166. data/doc/app/classes/Cms/Routes.html +303 -0
  167. data/doc/app/classes/Cms/RoutesController.html +164 -0
  168. data/doc/app/classes/Cms/SectionNodesController.html +272 -0
  169. data/doc/app/classes/Cms/SectionNodesHelper.html +145 -0
  170. data/doc/app/classes/Cms/SectionsController.html +542 -0
  171. data/doc/app/classes/Cms/SessionsController.html +270 -0
  172. data/doc/app/classes/Cms/TagsController.html +152 -0
  173. data/doc/app/classes/Cms/TasksController.html +221 -0
  174. data/doc/app/classes/Cms/ToolbarController.html +153 -0
  175. data/doc/app/classes/Cms/UsersController.html +405 -0
  176. data/doc/app/classes/Connector.html +350 -0
  177. data/doc/app/classes/ContentType.html +448 -0
  178. data/doc/app/classes/ContentTypeGroup.html +111 -0
  179. data/doc/app/classes/DynamicPortlet.html +148 -0
  180. data/doc/app/classes/DynamicView.html +411 -0
  181. data/doc/app/classes/EmailMessage.html +228 -0
  182. data/doc/app/classes/EmailMessageMailer.html +150 -0
  183. data/doc/app/classes/EmailPagePortlet.html +184 -0
  184. data/doc/app/classes/FileBlock.html +202 -0
  185. data/doc/app/classes/Group.html +170 -0
  186. data/doc/app/classes/GroupPermission.html +111 -0
  187. data/doc/app/classes/GroupSection.html +111 -0
  188. data/doc/app/classes/GroupType.html +111 -0
  189. data/doc/app/classes/GroupTypePermission.html +111 -0
  190. data/doc/app/classes/GuestUser.html +347 -0
  191. data/doc/app/classes/HtmlBlock.html +170 -0
  192. data/doc/app/classes/ImageBlock.html +202 -0
  193. data/doc/app/classes/InitialData.html +171 -0
  194. data/doc/app/classes/Link.html +249 -0
  195. data/doc/app/classes/LoginPortlet.html +151 -0
  196. data/doc/app/classes/Page.html +954 -0
  197. data/doc/app/classes/PagePartial.html +201 -0
  198. data/doc/app/classes/PageRoute.html +335 -0
  199. data/doc/app/classes/PageRouteCondition.html +113 -0
  200. data/doc/app/classes/PageRouteOption.html +111 -0
  201. data/doc/app/classes/PageRouteRequirement.html +113 -0
  202. data/doc/app/classes/PageTemplate.html +278 -0
  203. data/doc/app/classes/Permission.html +111 -0
  204. data/doc/app/classes/Portlet.html +738 -0
  205. data/doc/app/classes/Redirect.html +111 -0
  206. data/doc/app/classes/Section.html +580 -0
  207. data/doc/app/classes/SectionNode.html +410 -0
  208. data/doc/app/classes/Sequence.html +146 -0
  209. data/doc/app/classes/Site.html +253 -0
  210. data/doc/app/classes/Tag.html +292 -0
  211. data/doc/app/classes/TagCloudPortlet.html +176 -0
  212. data/doc/app/classes/Tagging.html +146 -0
  213. data/doc/app/classes/Task.html +288 -0
  214. data/doc/app/classes/User.html +618 -0
  215. data/doc/app/classes/UserGroupMembership.html +111 -0
  216. data/doc/app/created.rid +1 -0
  217. data/doc/app/files/app/controllers/application_controller_rb.html +109 -0
  218. data/doc/app/files/app/controllers/cms/application_controller_rb.html +101 -0
  219. data/doc/app/files/app/controllers/cms/attachments_controller_rb.html +101 -0
  220. data/doc/app/files/app/controllers/cms/base_controller_rb.html +101 -0
  221. data/doc/app/files/app/controllers/cms/cache_controller_rb.html +101 -0
  222. data/doc/app/files/app/controllers/cms/categories_controller_rb.html +101 -0
  223. data/doc/app/files/app/controllers/cms/category_types_controller_rb.html +101 -0
  224. data/doc/app/files/app/controllers/cms/connectors_controller_rb.html +101 -0
  225. data/doc/app/files/app/controllers/cms/content_block_controller_rb.html +107 -0
  226. data/doc/app/files/app/controllers/cms/content_controller_rb.html +101 -0
  227. data/doc/app/files/app/controllers/cms/content_types_controller_rb.html +101 -0
  228. data/doc/app/files/app/controllers/cms/dashboard_controller_rb.html +101 -0
  229. data/doc/app/files/app/controllers/cms/dynamic_views_controller_rb.html +101 -0
  230. data/doc/app/files/app/controllers/cms/email_messages_controller_rb.html +101 -0
  231. data/doc/app/files/app/controllers/cms/error_handling_rb.html +101 -0
  232. data/doc/app/files/app/controllers/cms/file_blocks_controller_rb.html +101 -0
  233. data/doc/app/files/app/controllers/cms/groups_controller_rb.html +101 -0
  234. data/doc/app/files/app/controllers/cms/home_controller_rb.html +101 -0
  235. data/doc/app/files/app/controllers/cms/html_blocks_controller_rb.html +101 -0
  236. data/doc/app/files/app/controllers/cms/image_blocks_controller_rb.html +101 -0
  237. data/doc/app/files/app/controllers/cms/links_controller_rb.html +101 -0
  238. data/doc/app/files/app/controllers/cms/page_route_conditions_controller_rb.html +101 -0
  239. data/doc/app/files/app/controllers/cms/page_route_options_controller_rb.html +101 -0
  240. data/doc/app/files/app/controllers/cms/page_route_requirements_controller_rb.html +101 -0
  241. data/doc/app/files/app/controllers/cms/page_routes_controller_rb.html +101 -0
  242. data/doc/app/files/app/controllers/cms/pages_controller_rb.html +101 -0
  243. data/doc/app/files/app/controllers/cms/portlet_controller_rb.html +101 -0
  244. data/doc/app/files/app/controllers/cms/portlets_controller_rb.html +101 -0
  245. data/doc/app/files/app/controllers/cms/redirects_controller_rb.html +101 -0
  246. data/doc/app/files/app/controllers/cms/resource_controller_rb.html +108 -0
  247. data/doc/app/files/app/controllers/cms/routes_controller_rb.html +101 -0
  248. data/doc/app/files/app/controllers/cms/section_nodes_controller_rb.html +101 -0
  249. data/doc/app/files/app/controllers/cms/sections_controller_rb.html +101 -0
  250. data/doc/app/files/app/controllers/cms/sessions_controller_rb.html +107 -0
  251. data/doc/app/files/app/controllers/cms/tags_controller_rb.html +101 -0
  252. data/doc/app/files/app/controllers/cms/tasks_controller_rb.html +101 -0
  253. data/doc/app/files/app/controllers/cms/toolbar_controller_rb.html +101 -0
  254. data/doc/app/files/app/controllers/cms/users_controller_rb.html +101 -0
  255. data/doc/app/files/app/helpers/application_helper_rb.html +108 -0
  256. data/doc/app/files/app/helpers/cms/application_helper_rb.html +107 -0
  257. data/doc/app/files/app/helpers/cms/form_builder_rb.html +101 -0
  258. data/doc/app/files/app/helpers/cms/form_tag_helper_rb.html +101 -0
  259. data/doc/app/files/app/helpers/cms/menu_helper_rb.html +101 -0
  260. data/doc/app/files/app/helpers/cms/page_helper_rb.html +101 -0
  261. data/doc/app/files/app/helpers/cms/path_helper_rb.html +101 -0
  262. data/doc/app/files/app/helpers/cms/section_nodes_helper_rb.html +101 -0
  263. data/doc/app/files/app/models/abstract_file_block_rb.html +101 -0
  264. data/doc/app/files/app/models/attachment_rb.html +109 -0
  265. data/doc/app/files/app/models/category_rb.html +101 -0
  266. data/doc/app/files/app/models/category_type_rb.html +101 -0
  267. data/doc/app/files/app/models/connector_rb.html +101 -0
  268. data/doc/app/files/app/models/content_type_group_rb.html +101 -0
  269. data/doc/app/files/app/models/content_type_rb.html +101 -0
  270. data/doc/app/files/app/models/dynamic_view_rb.html +101 -0
  271. data/doc/app/files/app/models/email_message_mailer_rb.html +101 -0
  272. data/doc/app/files/app/models/email_message_rb.html +101 -0
  273. data/doc/app/files/app/models/file_block_rb.html +101 -0
  274. data/doc/app/files/app/models/group_permission_rb.html +101 -0
  275. data/doc/app/files/app/models/group_rb.html +101 -0
  276. data/doc/app/files/app/models/group_section_rb.html +101 -0
  277. data/doc/app/files/app/models/group_type_permission_rb.html +101 -0
  278. data/doc/app/files/app/models/group_type_rb.html +101 -0
  279. data/doc/app/files/app/models/guest_user_rb.html +101 -0
  280. data/doc/app/files/app/models/html_block_rb.html +101 -0
  281. data/doc/app/files/app/models/image_block_rb.html +101 -0
  282. data/doc/app/files/app/models/link_rb.html +101 -0
  283. data/doc/app/files/app/models/page_partial_rb.html +101 -0
  284. data/doc/app/files/app/models/page_rb.html +101 -0
  285. data/doc/app/files/app/models/page_route_condition_rb.html +101 -0
  286. data/doc/app/files/app/models/page_route_option_rb.html +101 -0
  287. data/doc/app/files/app/models/page_route_rb.html +101 -0
  288. data/doc/app/files/app/models/page_route_requirement_rb.html +101 -0
  289. data/doc/app/files/app/models/page_template_rb.html +101 -0
  290. data/doc/app/files/app/models/permission_rb.html +101 -0
  291. data/doc/app/files/app/models/portlet_rb.html +101 -0
  292. data/doc/app/files/app/models/redirect_rb.html +101 -0
  293. data/doc/app/files/app/models/section_node_rb.html +101 -0
  294. data/doc/app/files/app/models/section_rb.html +101 -0
  295. data/doc/app/files/app/models/site_rb.html +101 -0
  296. data/doc/app/files/app/models/tag_rb.html +101 -0
  297. data/doc/app/files/app/models/tagging_rb.html +101 -0
  298. data/doc/app/files/app/models/task_rb.html +101 -0
  299. data/doc/app/files/app/models/user_group_membership_rb.html +101 -0
  300. data/doc/app/files/app/models/user_rb.html +108 -0
  301. data/doc/app/files/app/portlets/dynamic_portlet_rb.html +101 -0
  302. data/doc/app/files/app/portlets/email_page_portlet_rb.html +101 -0
  303. data/doc/app/files/app/portlets/login_portlet_rb.html +101 -0
  304. data/doc/app/files/app/portlets/tag_cloud_portlet_rb.html +101 -0
  305. data/doc/app/files/doc/README_FOR_APP.html +127 -0
  306. data/doc/app/files/lib/acts_as_list_rb.html +101 -0
  307. data/doc/app/files/lib/browsercms_rb.html +113 -0
  308. data/doc/app/files/lib/cms/acts/content_block_rb.html +101 -0
  309. data/doc/app/files/lib/cms/authentication/controller_rb.html +101 -0
  310. data/doc/app/files/lib/cms/authentication/model_rb.html +101 -0
  311. data/doc/app/files/lib/cms/behaviors/archiving_rb.html +101 -0
  312. data/doc/app/files/lib/cms/behaviors/attaching_rb.html +101 -0
  313. data/doc/app/files/lib/cms/behaviors/categorizing_rb.html +101 -0
  314. data/doc/app/files/lib/cms/behaviors/connecting_rb.html +101 -0
  315. data/doc/app/files/lib/cms/behaviors/dynamic_attributes_rb.html +101 -0
  316. data/doc/app/files/lib/cms/behaviors/flush_cache_on_change_rb.html +101 -0
  317. data/doc/app/files/lib/cms/behaviors/hiding_rb.html +101 -0
  318. data/doc/app/files/lib/cms/behaviors/pagination_rb.html +107 -0
  319. data/doc/app/files/lib/cms/behaviors/publishing_rb.html +101 -0
  320. data/doc/app/files/lib/cms/behaviors/rendering_rb.html +101 -0
  321. data/doc/app/files/lib/cms/behaviors/searching_rb.html +101 -0
  322. data/doc/app/files/lib/cms/behaviors/soft_deleting_rb.html +101 -0
  323. data/doc/app/files/lib/cms/behaviors/taggable_rb.html +101 -0
  324. data/doc/app/files/lib/cms/behaviors/userstamping_rb.html +101 -0
  325. data/doc/app/files/lib/cms/behaviors/versioning_rb.html +101 -0
  326. data/doc/app/files/lib/cms/behaviors_rb.html +147 -0
  327. data/doc/app/files/lib/cms/caching_rb.html +101 -0
  328. data/doc/app/files/lib/cms/data_loader_rb.html +101 -0
  329. data/doc/app/files/lib/cms/extensions/action_view/base_rb.html +101 -0
  330. data/doc/app/files/lib/cms/extensions/active_record/base_rb.html +101 -0
  331. data/doc/app/files/lib/cms/extensions/active_record/connection_adapters/abstract/schema_statements_rb.html +101 -0
  332. data/doc/app/files/lib/cms/extensions/active_record/errors_rb.html +101 -0
  333. data/doc/app/files/lib/cms/extensions/active_support/cache/file_store_rb.html +101 -0
  334. data/doc/app/files/lib/cms/extensions/hash_rb.html +101 -0
  335. data/doc/app/files/lib/cms/extensions/integer_rb.html +101 -0
  336. data/doc/app/files/lib/cms/extensions/nil_rb.html +101 -0
  337. data/doc/app/files/lib/cms/extensions/string_rb.html +101 -0
  338. data/doc/app/files/lib/cms/extensions_rb.html +101 -0
  339. data/doc/app/files/lib/cms/init_rb.html +101 -0
  340. data/doc/app/files/lib/cms/routes_rb.html +101 -0
  341. data/doc/app/files/lib/initial_data_rb.html +101 -0
  342. data/doc/app/files/lib/sequence_rb.html +101 -0
  343. data/doc/app/fr_class_index.html +205 -0
  344. data/doc/app/fr_file_index.html +152 -0
  345. data/doc/app/fr_method_index.html +738 -0
  346. data/doc/app/index.html +24 -0
  347. data/doc/app/rdoc-style.css +208 -0
  348. data/doc/guides/html/build_it_yourself.html +175 -0
  349. data/doc/guides/html/deployment_guide.html +181 -0
  350. data/doc/guides/html/designer_guide.html +153 -0
  351. data/doc/guides/html/developer_guide.html +266 -0
  352. data/doc/guides/html/files/javascripts/code_highlighter.js +188 -0
  353. data/doc/guides/html/files/javascripts/guides.js +7 -0
  354. data/doc/guides/html/files/javascripts/highlighters.js +90 -0
  355. data/doc/guides/html/files/stylesheets/main.css +441 -0
  356. data/doc/guides/html/files/stylesheets/reset.css +43 -0
  357. data/doc/guides/html/files/stylesheets/style.css +13 -0
  358. data/doc/guides/html/files/stylesheets/syntax.css +31 -0
  359. data/doc/guides/html/getting_started.html +181 -0
  360. data/doc/guides/html/images/bg.png +0 -0
  361. data/doc/guides/html/images/bottom_cap.png +0 -0
  362. data/doc/guides/html/images/browsercms_logo.png +0 -0
  363. data/doc/guides/html/images/dot.png +0 -0
  364. data/doc/guides/html/images/icons/README +5 -0
  365. data/doc/guides/html/images/icons/callouts/1.png +0 -0
  366. data/doc/guides/html/images/icons/callouts/10.png +0 -0
  367. data/doc/guides/html/images/icons/callouts/11.png +0 -0
  368. data/doc/guides/html/images/icons/callouts/12.png +0 -0
  369. data/doc/guides/html/images/icons/callouts/13.png +0 -0
  370. data/doc/guides/html/images/icons/callouts/14.png +0 -0
  371. data/doc/guides/html/images/icons/callouts/15.png +0 -0
  372. data/doc/guides/html/images/icons/callouts/2.png +0 -0
  373. data/doc/guides/html/images/icons/callouts/3.png +0 -0
  374. data/doc/guides/html/images/icons/callouts/4.png +0 -0
  375. data/doc/guides/html/images/icons/callouts/5.png +0 -0
  376. data/doc/guides/html/images/icons/callouts/6.png +0 -0
  377. data/doc/guides/html/images/icons/callouts/7.png +0 -0
  378. data/doc/guides/html/images/icons/callouts/8.png +0 -0
  379. data/doc/guides/html/images/icons/callouts/9.png +0 -0
  380. data/doc/guides/html/images/icons/caution.png +0 -0
  381. data/doc/guides/html/images/icons/example.png +0 -0
  382. data/doc/guides/html/images/icons/home.png +0 -0
  383. data/doc/guides/html/images/icons/important.png +0 -0
  384. data/doc/guides/html/images/icons/next.png +0 -0
  385. data/doc/guides/html/images/icons/note.png +0 -0
  386. data/doc/guides/html/images/icons/prev.png +0 -0
  387. data/doc/guides/html/images/icons/tip.png +0 -0
  388. data/doc/guides/html/images/icons/up.png +0 -0
  389. data/doc/guides/html/images/icons/warning.png +0 -0
  390. data/doc/guides/html/images/top_cap.png +0 -0
  391. data/doc/guides/html/images/top_cap_content.png +0 -0
  392. data/doc/guides/html/index.html +168 -0
  393. data/doc/guides/html/installing_modules.html +181 -0
  394. data/doc/guides/html/user_guide.html +266 -0
  395. data/lib/cms/behaviors/attaching.rb +1 -1
  396. data/lib/cms/behaviors/rendering.rb +1 -1
  397. data/lib/cms/behaviors/taggable.rb +2 -1
  398. data/lib/cms/behaviors/versioning.rb +1 -1
  399. data/lib/cms/init.rb +4 -4
  400. data/lib/tasks/cms.rake +16 -42
  401. data/public/images/cms/buttons/button_cap_off_middle.gif +0 -0
  402. data/public/images/cms/buttons/button_left_bg.png +0 -0
  403. data/public/images/cms/buttons/button_off_middle.png +0 -0
  404. data/public/images/cms/nav_admin.gif +0 -0
  405. data/public/images/cms/nav_admin_h.gif +0 -0
  406. data/public/images/cms/nav_admin_on.gif +0 -0
  407. data/public/images/cms/nav_content_library.gif +0 -0
  408. data/public/images/cms/nav_content_library_h.gif +0 -0
  409. data/public/images/cms/nav_content_library_on.gif +0 -0
  410. data/public/images/cms/nav_dash.gif +0 -0
  411. data/public/images/cms/nav_dash_h.gif +0 -0
  412. data/public/images/cms/nav_dash_on.gif +0 -0
  413. data/public/images/cms/nav_sitemap.gif +0 -0
  414. data/public/images/cms/nav_sitemap_h.gif +0 -0
  415. data/public/images/cms/nav_sitemap_on.gif +0 -0
  416. data/public/stylesheets/cms/administration.css +91 -91
  417. data/public/stylesheets/cms/block.css +25 -25
  418. data/public/stylesheets/cms/buttons.css +120 -111
  419. data/public/stylesheets/cms/content_library.css +2 -1
  420. data/public/stylesheets/cms/content_types.css +3 -3
  421. data/public/stylesheets/cms/dashboard.css +118 -118
  422. data/public/stylesheets/cms/data_table.css +155 -155
  423. data/public/stylesheets/cms/form_layout.css +269 -269
  424. data/public/stylesheets/cms/jquery.contextMenu.css +61 -61
  425. data/public/stylesheets/cms/login.css +77 -77
  426. data/public/stylesheets/cms/menu.css +116 -116
  427. data/public/stylesheets/cms/nav.css +98 -111
  428. data/public/stylesheets/cms/page_toolbar.css +134 -134
  429. data/public/stylesheets/cms/sitemap.css +31 -15
  430. data/rails_generators/content_block/content_block_generator.rb +4 -9
  431. data/rails_generators/content_block/templates/_form.html.erb +3 -1
  432. data/rails_generators/portlet/portlet_generator.rb +2 -6
  433. data/rails_generators/portlet/templates/_form.html.erb +1 -0
  434. data/templates/blank.rb +30 -0
  435. data/templates/demo.rb +28 -0
  436. data/templates/module.rb +945 -0
  437. data/test/functional/cms/connectors_controller_test.rb +12 -1
  438. data/test/functional/cms/portlets_controller_test.rb +10 -0
  439. data/test/unit/behaviors/taggable_test.rb +19 -0
  440. data/test/unit/helpers/menu_helper_test.rb +72 -1
  441. data/test/unit/lib/generators_test.rb +21 -3
  442. data/test/unit/models/connector_test.rb +16 -0
  443. data/test/unit/models/sections_test.rb +4 -0
  444. metadata +380 -2
@@ -0,0 +1,7 @@
1
+ function guideMenu(){
2
+ if (document.getElementById('guides').style.display == "none") {
3
+ document.getElementById('guides').style.display = "block";
4
+ } else {
5
+ document.getElementById('guides').style.display = "none";
6
+ }
7
+ }
@@ -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: /&lt;!\s*(--([^-]|[\r\n]|-[^-])*--\s*)&gt;/
48
+ },
49
+ tag : {
50
+ exp: /(&lt;\/?)([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: /&lt;!DOCTYPE([^&]|&[^g]|&g[^t])*&gt;/
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
+ }