browsercms 3.5.7 → 4.0.0.alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/COPYRIGHT.txt +2 -1
- data/README.markdown +3 -3
- data/app/assets/fonts/icomoon.dev.svg +61 -0
- data/app/assets/fonts/icomoon.eot +0 -0
- data/app/assets/fonts/icomoon.svg +61 -0
- data/app/assets/fonts/icomoon.ttf +0 -0
- data/app/assets/fonts/icomoon.woff +0 -0
- data/app/assets/images/ckeditor/plugins/delete_content/icons/deletecontent.png +0 -0
- data/app/assets/images/ckeditor/plugins/edit_content/icons/editcontent.png +0 -0
- data/app/assets/images/ckeditor/plugins/move_content/icons/movecontentdown.png +0 -0
- data/app/assets/images/ckeditor/plugins/move_content/icons/movecontentup.png +0 -0
- data/app/assets/images/cms/arrow-down.png +0 -0
- data/app/assets/images/cms/arrow-up.png +0 -0
- data/app/assets/images/cms/cogs.png +0 -0
- data/app/assets/images/cms/dashboard/home.png +0 -0
- data/app/assets/images/cms/home.png +0 -0
- data/app/assets/images/cms/logo.png +0 -0
- data/app/assets/images/cms/pencil.png +0 -0
- data/app/assets/images/cms/plus.png +0 -0
- data/app/assets/images/cms/user.png +0 -0
- data/app/assets/javascripts/bcms/ckeditor_inline.js +23 -0
- data/app/assets/javascripts/bcms/ckeditor_standard_config.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/delete_content/plugin.js +36 -0
- data/app/assets/javascripts/ckeditor/plugins/edit_content/plugin.js +24 -0
- data/app/assets/javascripts/ckeditor/plugins/move_content/plugin.js +25 -0
- data/app/assets/javascripts/cms/ajax.js +60 -0
- data/app/assets/javascripts/cms/application.js +6 -1
- data/app/assets/javascripts/cms/attachment_manager.js.erb +3 -10
- data/app/assets/javascripts/cms/content_library.js +31 -12
- data/app/assets/javascripts/cms/core_library.js.erb +68 -36
- data/app/assets/javascripts/cms/form_builder.js +250 -0
- data/app/assets/javascripts/cms/namespace.js +2 -0
- data/app/assets/javascripts/cms/new_content_button.js +27 -0
- data/app/assets/javascripts/cms/page_editor.js +188 -0
- data/app/assets/javascripts/cms/page_toolbar.js +13 -0
- data/app/assets/javascripts/cms/site.js +2 -0
- data/app/assets/javascripts/cms/sitemap.js +219 -0
- data/app/assets/javascripts/cms/toolbar.js +17 -1
- data/app/assets/javascripts/cms/user.js +40 -0
- data/app/assets/javascripts/jquery.exists.js +5 -0
- data/app/assets/javascripts/jquery.taglist.js +37 -23
- data/app/assets/stylesheets/cms/_assets.css.scss +55 -0
- data/app/assets/stylesheets/cms/_base.css.scss +42 -0
- data/app/assets/stylesheets/cms/_cms-buttons.css.scss +73 -0
- data/app/assets/stylesheets/cms/_cms-forms.css.scss +70 -0
- data/app/assets/stylesheets/cms/_colors.css.scss +20 -0
- data/app/assets/stylesheets/cms/_dashboard.css.scss +25 -0
- data/app/assets/stylesheets/cms/_glyph.css.scss +60 -0
- data/app/assets/stylesheets/cms/_main-area.css.scss +62 -0
- data/app/assets/stylesheets/cms/_nav.css.scss +197 -0
- data/app/assets/stylesheets/cms/_sidebar.css.scss +64 -0
- data/app/assets/stylesheets/cms/_sitemap.css.scss +196 -0
- data/app/assets/stylesheets/cms/_submenu.css.scss +48 -0
- data/app/assets/stylesheets/cms/application.css.scss +49 -0
- data/app/assets/stylesheets/cms/core.css.scss +96 -0
- data/app/assets/stylesheets/cms/default-forms.css.scss +3 -0
- data/app/assets/stylesheets/cms/includes/_animation.css.scss +2 -0
- data/app/assets/stylesheets/cms/includes/_rem.css.scss +120 -0
- data/app/assets/stylesheets/cms/includes/animation/_animate.css.scss +31 -0
- data/app/assets/stylesheets/cms/includes/animation/_core.css.scss +127 -0
- data/app/assets/stylesheets/cms/includes/animation/_shared.css.scss +22 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/_attention-seekers.css.scss +152 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/_bouncing.css.scss +3 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/_classes.css.scss +21 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/_fading.css.scss +3 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/_flippers.css.scss +87 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/_lightspeed.css.scss +24 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/_rotating.css.scss +3 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/_specials.css.scss +42 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/bouncing/_bouncing-entrances.css.scss +68 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/bouncing/_bouncing-exits.css.scss +60 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/fading/_fading-entrances.css.scss +86 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/fading/_fading-exits.css.scss +86 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/rotating/_rotating-entrances.css.scss +58 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/rotating/_rotating-exits.css.scss +58 -0
- data/app/assets/stylesheets/cms/page_content_editing.css.scss +4 -0
- data/app/assets/stylesheets/cms/page_editor.css.scss +4 -0
- data/app/assets/stylesheets/cms/style.css.scss +138 -0
- data/app/assets/stylesheets/cms/styles/_alerts.css.scss +150 -0
- data/app/assets/stylesheets/cms/styles/_base-grid.css.scss +299 -0
- data/app/assets/stylesheets/cms/styles/_buttons.css.scss +247 -0
- data/app/assets/stylesheets/cms/styles/_dropdown.css.scss +155 -0
- data/app/assets/stylesheets/cms/styles/_forms.css.scss +728 -0
- data/app/assets/stylesheets/cms/styles/_glyph.css.scss +86 -0
- data/app/assets/stylesheets/cms/styles/_images.css.scss +75 -0
- data/app/assets/stylesheets/cms/styles/_lists.css.scss +115 -0
- data/app/assets/stylesheets/cms/styles/_modal.css.scss +174 -0
- data/app/assets/stylesheets/cms/styles/_progress.css.scss +43 -0
- data/app/assets/stylesheets/cms/styles/_tables.css.scss +141 -0
- data/app/assets/stylesheets/cms/styles/_text.css.scss +134 -0
- data/app/controllers/cms/application_controller.rb +3 -68
- data/app/controllers/cms/attachments_controller.rb +5 -5
- data/app/controllers/cms/base_controller.rb +20 -13
- data/app/controllers/cms/cache_controller.rb +16 -17
- data/app/controllers/cms/category_types_controller.rb +6 -1
- data/app/controllers/cms/connectors_controller.rb +12 -7
- data/app/controllers/cms/content_block_controller.rb +128 -71
- data/app/controllers/cms/content_controller.rb +54 -56
- data/app/controllers/cms/dashboard_controller.rb +5 -6
- data/app/controllers/cms/dynamic_views_controller.rb +12 -9
- data/app/controllers/cms/email_messages_controller.rb +18 -13
- data/app/controllers/cms/form_entries_controller.rb +119 -0
- data/app/controllers/cms/form_fields_controller.rb +74 -0
- data/app/controllers/cms/forms_controller.rb +35 -0
- data/app/controllers/cms/groups_controller.rb +13 -16
- data/app/controllers/cms/html_blocks_controller.rb +2 -2
- data/app/controllers/cms/inline_content_controller.rb +48 -0
- data/app/controllers/cms/links_controller.rb +58 -46
- data/app/controllers/cms/page_components_controller.rb +20 -0
- data/app/controllers/cms/page_routes_controller.rb +44 -40
- data/app/controllers/cms/pages_controller.rb +111 -97
- data/app/controllers/cms/passwords_controller.rb +17 -0
- data/app/controllers/cms/portlet_controller.rb +0 -1
- data/app/controllers/cms/portlets_controller.rb +20 -27
- data/app/controllers/cms/redirects_controller.rb +13 -9
- data/app/controllers/cms/resource_controller.rb +15 -4
- data/app/controllers/cms/routes_controller.rb +2 -4
- data/app/controllers/cms/section_nodes_controller.rb +6 -37
- data/app/controllers/cms/sections_controller.rb +13 -8
- data/app/controllers/cms/sessions_controller.rb +8 -66
- data/app/controllers/cms/sites/passwords_controller.rb +27 -0
- data/app/controllers/cms/sites/sessions_controller.rb +20 -0
- data/app/controllers/cms/tags_controller.rb +12 -12
- data/app/controllers/cms/tasks_controller.rb +45 -46
- data/app/controllers/cms/user_controller.rb +8 -0
- data/app/controllers/cms/users_controller.rb +91 -68
- data/app/helpers/cms/application_helper.rb +58 -52
- data/app/helpers/cms/content_block_helper.rb +8 -7
- data/app/helpers/cms/form_tag_helper.rb +21 -25
- data/app/helpers/cms/menu_helper.rb +1 -3
- data/app/helpers/cms/mobile_helper.rb +12 -2
- data/app/helpers/cms/nav_menu_helper.rb +23 -0
- data/app/helpers/cms/page_helper.rb +72 -30
- data/app/helpers/cms/path_helper.rb +46 -70
- data/app/helpers/cms/rendering_helper.rb +68 -12
- data/app/helpers/cms/section_nodes_helper.rb +92 -31
- data/app/helpers/cms/sites/authentication_helper.rb +25 -0
- data/app/helpers/cms/sites/devise_shim_helper.rb +31 -0
- data/app/helpers/cms/template_support.rb +1 -7
- data/app/helpers/cms/ui_elements_helper.rb +147 -6
- data/app/helpers/forgot_password_portlet_helper.rb +9 -0
- data/app/helpers/login_portlet_helper.rb +10 -0
- data/app/inputs/attachments_input.rb +14 -0
- data/app/inputs/cms_text_area_input.rb +10 -0
- data/app/inputs/cms_text_field_input.rb +29 -0
- data/app/inputs/date_picker_input.rb +8 -0
- data/app/inputs/file_picker_input.rb +75 -0
- data/app/inputs/path_input.rb +18 -0
- data/app/inputs/tag_list_input.rb +3 -0
- data/app/inputs/template_editor_input.rb +24 -0
- data/app/inputs/text_editor_input.rb +19 -0
- data/app/models/cms/abstract_file_block.rb +10 -6
- data/app/models/cms/attachment.rb +20 -27
- data/app/models/cms/category.rb +17 -7
- data/app/models/cms/category_type.rb +8 -4
- data/app/models/cms/connector.rb +32 -20
- data/app/models/cms/content.rb +31 -0
- data/app/models/cms/content_type.rb +114 -62
- data/app/models/cms/dynamic_view.rb +19 -45
- data/app/models/cms/email_message.rb +32 -2
- data/app/models/cms/external_user.rb +60 -0
- data/app/models/cms/file_block.rb +1 -0
- data/app/models/cms/form.rb +47 -0
- data/app/models/cms/form_entry.rb +71 -0
- data/app/models/cms/form_field.rb +78 -0
- data/app/models/cms/group.rb +19 -9
- data/app/models/cms/group_permission.rb +1 -1
- data/app/models/cms/group_section.rb +1 -1
- data/app/models/cms/group_type.rb +5 -5
- data/app/models/cms/group_type_permission.rb +1 -1
- data/app/models/cms/html_block.rb +14 -19
- data/app/models/cms/image_block.rb +1 -0
- data/app/models/cms/link.rb +8 -6
- data/app/models/cms/page.rb +156 -59
- data/app/models/cms/page_component.rb +43 -0
- data/app/models/cms/page_partial.rb +16 -8
- data/app/models/cms/page_route.rb +1 -1
- data/app/models/cms/page_route_condition.rb +1 -1
- data/app/models/cms/page_route_option.rb +1 -1
- data/app/models/cms/page_route_requirement.rb +1 -1
- data/app/models/cms/page_template.rb +14 -9
- data/app/models/cms/permission.rb +4 -2
- data/app/models/cms/persistent_user.rb +208 -0
- data/app/models/cms/portlet.rb +56 -9
- data/app/models/cms/redirect.rb +1 -1
- data/app/models/cms/search_filter.rb +18 -0
- data/app/models/cms/section.rb +39 -28
- data/app/models/cms/section_node.rb +32 -5
- data/app/models/cms/site.rb +3 -3
- data/app/models/cms/tag.rb +14 -12
- data/app/models/cms/tagging.rb +2 -2
- data/app/models/cms/task.rb +14 -21
- data/app/models/cms/templates.rb +1 -2
- data/app/models/cms/user.rb +21 -160
- data/app/models/cms/user_group_membership.rb +2 -2
- data/app/portlets/deprecated_placeholder.rb +12 -0
- data/app/portlets/dynamic_portlet.rb +1 -1
- data/app/portlets/email_page_portlet.rb +10 -3
- data/app/portlets/forgot_password_portlet.rb +9 -28
- data/app/portlets/login_portlet.rb +8 -5
- data/app/portlets/tag_cloud_portlet.rb +3 -1
- data/app/presenters/cms/user_presenter.rb +24 -0
- data/app/views/cms/application/_add_content_modal.html.erb +3 -0
- data/app/views/cms/application/_buttons.html.erb +7 -0
- data/app/views/cms/{shared → application}/_exception.html.erb +0 -0
- data/app/views/cms/application/_form_errors.html.erb +7 -0
- data/app/views/cms/application/_form_with_buttons.html.erb +10 -0
- data/app/views/cms/application/_main_content.html.erb +3 -0
- data/app/views/cms/application/_main_with_sidebar.html.erb +8 -0
- data/app/views/cms/application/_mobile_toolbar.html.erb +16 -0
- data/app/views/cms/application/_page_title.html.erb +5 -0
- data/app/views/cms/application/_pagination.html.erb +26 -0
- data/app/views/cms/application/_row.html.erb +1 -0
- data/app/views/cms/application/_save_buttons.html.erb +7 -0
- data/app/views/cms/application/_sidebar_layout.html.erb +3 -0
- data/app/views/cms/application/_version.html.erb +23 -0
- data/app/views/cms/{shared → application}/_version_conflict_diff.html.erb +0 -0
- data/app/views/cms/{shared → application}/_version_conflict_error.html.erb +0 -0
- data/app/views/cms/attachments/_attachment_manager.html.erb +22 -0
- data/app/views/cms/attachments/_no_attachments_defined.html.erb +1 -0
- data/app/views/cms/cache/show.html.erb +5 -10
- data/app/views/cms/categories/_form.html.erb +15 -24
- data/app/views/cms/category_types/_form.html.erb +1 -1
- data/app/views/cms/connectors/new.html.erb +33 -64
- data/app/views/cms/content/editing_frame.html.erb +1 -0
- data/app/views/cms/content/no_page.html.erb +9 -27
- data/app/views/cms/content/show.html.erb +14 -15
- data/app/views/cms/content_block/_block_form.html.erb +15 -0
- data/app/views/cms/content_block/_buttonbar.html.erb +29 -0
- data/app/views/cms/content_block/_buttons.html.erb +13 -0
- data/app/views/cms/content_block/_hidden_fields.html.erb +13 -0
- data/app/views/cms/content_block/_sidebar.html.erb +35 -0
- data/app/views/cms/content_block/edit.html.erb +3 -0
- data/app/views/cms/content_block/index.html.erb +87 -0
- data/app/views/cms/content_block/new.html.erb +3 -0
- data/app/views/cms/content_block/render_block_in_main_container.html.erb +10 -0
- data/app/views/cms/content_block/show.html.erb +1 -0
- data/app/views/cms/content_block/show_in_isolation.html.erb +15 -0
- data/app/views/cms/content_block/versions.html.erb +24 -0
- data/app/views/cms/dashboard/_page_drafts.html.erb +12 -22
- data/app/views/cms/dashboard/_tasks.html.erb +32 -45
- data/app/views/cms/dashboard/index.html.erb +11 -13
- data/app/views/cms/dynamic_views/_form.html.erb +8 -10
- data/app/views/cms/dynamic_views/edit.html.erb +2 -3
- data/app/views/cms/dynamic_views/index.html.erb +22 -44
- data/app/views/cms/dynamic_views/new.html.erb +2 -3
- data/app/views/cms/email_messages/index.html.erb +31 -34
- data/app/views/cms/email_messages/show.html.erb +45 -52
- data/app/views/cms/file_blocks/_form.html.erb +2 -4
- data/app/views/cms/form_entries/_buttons.html.erb +2 -0
- data/app/views/cms/form_entries/_form.html.erb +7 -0
- data/app/views/cms/form_entries/_internal_form.html.erb +9 -0
- data/app/views/cms/form_entries/edit.html.erb +5 -0
- data/app/views/cms/form_entries/error.html.erb +3 -0
- data/app/views/cms/form_entries/index.html.erb +4 -0
- data/app/views/cms/form_entries/new.html.erb +5 -0
- data/app/views/cms/form_entries/show.html.erb +13 -0
- data/app/views/cms/form_entries/submit.html.erb +1 -0
- data/app/views/cms/form_fields/_form.html.erb +8 -0
- data/app/views/cms/form_fields/_select.html.erb +3 -0
- data/app/views/cms/form_fields/_text_area.html.erb +3 -0
- data/app/views/cms/form_fields/_text_field.html.erb +3 -0
- data/app/views/cms/form_fields/edit.html.erb +0 -0
- data/app/views/cms/form_fields/new.html.erb +26 -0
- data/app/views/cms/form_fields/preview.html.erb +16 -0
- data/app/views/cms/forms/_form.html.erb +66 -0
- data/app/views/cms/forms/render.html.erb +15 -0
- data/app/views/cms/forms/show.html.erb +6 -0
- data/app/views/cms/groups/_form.html.erb +32 -38
- data/app/views/cms/groups/_permissions.html.erb +11 -34
- data/app/views/cms/groups/_sections.html.erb +11 -17
- data/app/views/cms/groups/edit.html.erb +1 -3
- data/app/views/cms/groups/index.html.erb +10 -32
- data/app/views/cms/groups/new.html.erb +2 -4
- data/app/views/cms/html_blocks/_form.html.erb +2 -2
- data/app/views/cms/html_blocks/render.html.erb +1 -1
- data/app/views/cms/image_blocks/_form.html.erb +3 -3
- data/app/views/cms/links/_form.html.erb +6 -11
- data/app/views/cms/links/edit.html.erb +3 -12
- data/app/views/cms/links/new.html.erb +4 -13
- data/app/views/cms/page_components/_content.html.erb +18 -0
- data/app/views/cms/page_components/new.html.erb +12 -0
- data/app/views/cms/page_routes/_form.html.erb +11 -10
- data/app/views/cms/page_routes/edit.html.erb +2 -3
- data/app/views/cms/page_routes/index.html.erb +25 -48
- data/app/views/cms/page_routes/new.html.erb +2 -3
- data/app/views/cms/pages/_edit_content.html.erb +28 -0
- data/app/views/cms/pages/_form.html.erb +20 -37
- data/app/views/cms/pages/_main_form.html.erb +23 -0
- data/app/views/cms/pages/_simple_container.html.erb +8 -0
- data/app/views/cms/pages/edit.html.erb +2 -23
- data/app/views/cms/pages/new.html.erb +2 -16
- data/app/views/cms/pages/versions.html.erb +18 -87
- data/app/views/cms/redirects/_form.html.erb +6 -14
- data/app/views/cms/redirects/edit.html.erb +2 -3
- data/app/views/cms/redirects/index.html.erb +24 -50
- data/app/views/cms/redirects/new.html.erb +2 -3
- data/app/views/cms/routes/index.html.erb +15 -20
- data/app/views/cms/section_nodes/_children.html.erb +3 -0
- data/app/views/cms/section_nodes/_row_buttons.html.erb +11 -0
- data/app/views/cms/section_nodes/_section_node.html.erb +24 -10
- data/app/views/cms/section_nodes/_sitemap_buttons.html.erb +47 -0
- data/app/views/cms/section_nodes/_status.html.erb +5 -0
- data/app/views/cms/section_nodes/show.html.erb +9 -0
- data/app/views/cms/sections/_buttons.html.erb +6 -0
- data/app/views/cms/sections/_form.html.erb +22 -49
- data/app/views/cms/sections/edit.html.erb +3 -8
- data/app/views/cms/sections/new.html.erb +4 -20
- data/app/views/cms/sessions/new.html.erb +16 -31
- data/app/views/cms/shared/access_denied.html.erb +1 -2
- data/app/views/cms/shared/error.html.erb +5 -5
- data/app/views/cms/sites/_flash.html.erb +8 -0
- data/app/views/cms/sites/passwords/new.html.erb +2 -0
- data/app/views/cms/sites/sessions/new.html.erb +2 -0
- data/app/views/cms/tags/_form.html.erb +1 -1
- data/app/views/cms/tags/render.html.erb +0 -1
- data/app/views/cms/tasks/new.html.erb +18 -32
- data/app/views/cms/toolbar/_new_pages_menu.html.erb +10 -0
- data/app/views/cms/users/_form.html.erb +8 -11
- data/app/views/cms/users/_password.html.erb +2 -8
- data/app/views/cms/users/_user_fields.html.erb +7 -20
- data/app/views/cms/users/change_password.html.erb +12 -21
- data/app/views/cms/users/edit.html.erb +1 -15
- data/app/views/cms/users/index.html.erb +61 -58
- data/app/views/cms/users/new.html.erb +1 -12
- data/app/views/devise/confirmations/new.html.erb +16 -0
- data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/devise/passwords/edit.html.erb +19 -0
- data/app/views/devise/passwords/new.html.erb +15 -0
- data/app/views/devise/registrations/edit.html.erb +28 -0
- data/app/views/devise/registrations/new.html.erb +18 -0
- data/app/views/devise/shared/_links.erb +25 -0
- data/app/views/devise/unlocks/new.html.erb +16 -0
- data/app/views/layouts/cms/_content_types.html.erb +13 -0
- data/app/views/layouts/cms/_footer.erb +2 -2
- data/app/views/layouts/cms/_head.html.erb +8 -18
- data/app/views/layouts/cms/_main_menu.html.erb +78 -0
- data/app/views/layouts/cms/application.html.erb +19 -24
- data/app/views/layouts/cms/content_page.html.erb +5 -0
- data/app/views/layouts/cms/page_editor.html.erb +90 -0
- data/app/views/portlets/deprecated_placeholders/_form.html.erb +1 -0
- data/app/views/portlets/deprecated_placeholders/render.html.erb +8 -0
- data/app/views/portlets/dynamic/_form.html.erb +3 -3
- data/app/views/portlets/email_page/_form.html.erb +5 -6
- data/app/views/portlets/forgot_password/_form.html.erb +2 -3
- data/app/views/portlets/forgot_password/render.html.erb +2 -14
- data/app/views/portlets/login/_form.html.erb +4 -6
- data/app/views/portlets/login/render.html.erb +8 -27
- data/app/views/portlets/portlets/_form.html.erb +7 -6
- data/app/views/portlets/tag_cloud/_form.html.erb +4 -4
- data/app/views/tests/pretend/open_with_layout.html.erb +1 -1
- data/bin/bcms +13 -16
- data/config/routes.rb +58 -29
- data/db/browsercms.seeds.rb +0 -6
- data/db/migrate/{20080815014337_browsercms_3_0_0.rb → 20080815014337_browsercms300.rb} +94 -73
- data/db/migrate/20130327184912_browsercms400.rb +90 -0
- data/db/migrate/20131206214021_devise_create_users.rb +47 -0
- data/db/migrate/20131211223908_kill_reset_password.rb +5 -0
- data/db/migrate/20131218222005_create_cms_external_users.rb +10 -0
- data/doc/features/design_integration.md +45 -0
- data/doc/features/external_user.md +7 -0
- data/doc/features/form_builder.md +40 -0
- data/doc/features/simple_form_refactor.md +60 -0
- data/doc/release_notes.md +224 -10
- data/lib/acts_as_list.rb +72 -71
- data/lib/browsercms.rb +41 -1
- data/lib/cms/acts/content_block.rb +12 -2
- data/lib/cms/acts/content_page.rb +3 -4
- data/lib/cms/admin_tab.rb +15 -0
- data/lib/cms/attachments/configuration.rb +1 -1
- data/lib/cms/authentication/controller.rb +83 -177
- data/lib/cms/authentication/test_password_strategy.rb +19 -0
- data/lib/cms/behaviors.rb +1 -0
- data/lib/cms/behaviors/archiving.rb +2 -2
- data/lib/cms/behaviors/attaching.rb +21 -45
- data/lib/cms/behaviors/connecting.rb +14 -4
- data/lib/cms/behaviors/dynamic_attributes.rb +3 -3
- data/lib/cms/behaviors/hiding.rb +2 -2
- data/lib/cms/behaviors/namespacing.rb +6 -36
- data/lib/cms/behaviors/publishing.rb +92 -45
- data/lib/cms/behaviors/rendering.rb +15 -7
- data/lib/cms/behaviors/searching.rb +5 -4
- data/lib/cms/behaviors/soft_deleting.rb +13 -16
- data/lib/cms/behaviors/taggable.rb +17 -10
- data/lib/cms/behaviors/versioning.rb +12 -16
- data/lib/cms/commands/to_version400.rb +10 -0
- data/lib/cms/concerns.rb +7 -0
- data/lib/cms/concerns/can_be_addressable.rb +326 -0
- data/lib/cms/concerns/has_content_type.rb +46 -0
- data/lib/cms/concerns/ignores_publishing.rb +9 -0
- data/lib/cms/configuration.rb +14 -4
- data/lib/cms/configuration/configurable_template.rb +24 -0
- data/lib/cms/configuration/devise.rb +256 -0
- data/lib/cms/configure_simple_form.rb +142 -0
- data/lib/cms/configure_simple_form_bootstrap.rb +49 -0
- data/lib/cms/content_filter.rb +18 -0
- data/lib/cms/content_page.rb +77 -0
- data/lib/cms/content_rendering_support.rb +25 -16
- data/lib/cms/controllers/admin_controller.rb +78 -0
- data/lib/cms/data_loader.rb +30 -11
- data/lib/cms/default_accessible.rb +6 -6
- data/lib/cms/domain_support.rb +0 -4
- data/lib/cms/engine.rb +52 -20
- data/lib/cms/engine_helper.rb +41 -51
- data/{app/controllers → lib}/cms/error_handling.rb +11 -5
- data/lib/cms/extensions.rb +2 -1
- data/lib/cms/extensions/active_model/name.rb +13 -0
- data/lib/cms/extensions/active_record/connection_adapters/abstract/schema_statements.rb +49 -89
- data/lib/cms/extensions/hash.rb +0 -12
- data/lib/cms/form_builder/content_block_form_builder.rb +45 -0
- data/lib/cms/form_builder/default_input.rb +13 -0
- data/lib/cms/form_builder/deprecated_inputs.rb +40 -0
- data/lib/cms/form_builder/workflow_buttons.rb +38 -0
- data/lib/cms/module.rb +1 -7
- data/lib/cms/polymorphic_single_table_inheritance.rb +19 -0
- data/lib/cms/publish_workflow.rb +26 -0
- data/lib/cms/responders/content_responder.rb +14 -0
- data/lib/cms/route_extensions.rb +112 -20
- data/lib/cms/version.rb +1 -1
- data/lib/generators/browser_cms/demo_site/templates/demo.seeds.rb +0 -2
- data/lib/generators/cms/content_block/content_block_generator.rb +19 -46
- data/lib/generators/cms/content_block/templates/_form.html.erb +22 -28
- data/lib/generators/cms/project/templates/devise.rb.erb +7 -0
- metadata +383 -150
- data/app/assets/javascripts/cms/sitemap.js.erb +0 -464
- data/app/assets/stylesheets/browsercms/application.css +0 -7
- data/app/assets/stylesheets/cms/administration.css.erb +0 -91
- data/app/assets/stylesheets/cms/application.css.erb +0 -171
- data/app/assets/stylesheets/cms/attachment_manager.css.scss +0 -28
- data/app/assets/stylesheets/cms/block.css +0 -26
- data/app/assets/stylesheets/cms/buttons.css.erb +0 -120
- data/app/assets/stylesheets/cms/content_library.css.erb +0 -139
- data/app/assets/stylesheets/cms/content_types.css +0 -4
- data/app/assets/stylesheets/cms/dashboard.css.erb +0 -118
- data/app/assets/stylesheets/cms/data_table.css.erb.erb +0 -156
- data/app/assets/stylesheets/cms/date_picker.css.erb +0 -82
- data/app/assets/stylesheets/cms/form_layout.css.erb +0 -282
- data/app/assets/stylesheets/cms/login.css.erb +0 -78
- data/app/assets/stylesheets/cms/menu.css.erb +0 -116
- data/app/assets/stylesheets/cms/nav.css.erb +0 -99
- data/app/assets/stylesheets/cms/page_toolbar.css.erb +0 -135
- data/app/assets/stylesheets/cms/reset.css +0 -46
- data/app/assets/stylesheets/cms/selectbox.css.erb +0 -56
- data/app/assets/stylesheets/cms/sitemap.css.erb +0 -390
- data/app/assets/stylesheets/cms/taglist.css +0 -18
- data/app/controllers/application_controller.rb +0 -14
- data/app/controllers/cms/content_types_controller.rb +0 -9
- data/app/helpers/application_helper.rb +0 -5
- data/app/helpers/cms/form_builder.rb +0 -241
- data/app/models/cms/content_type_group.rb +0 -15
- data/app/models/cms/forgot_password_mailer.rb +0 -14
- data/app/portlets/reset_password_portlet.rb +0 -28
- data/app/views/cms/blocks/_hidden_fields.html.erb +0 -10
- data/app/views/cms/blocks/_toolbar.html.erb +0 -9
- data/app/views/cms/blocks/_toolbar_for_collection.html.erb +0 -23
- data/app/views/cms/blocks/_toolbar_for_member.html.erb +0 -36
- data/app/views/cms/blocks/edit.html.erb +0 -28
- data/app/views/cms/blocks/index.html.erb +0 -86
- data/app/views/cms/blocks/new.html.erb +0 -19
- data/app/views/cms/blocks/show.html.erb +0 -43
- data/app/views/cms/blocks/usages.html.erb +0 -44
- data/app/views/cms/blocks/versions.html.erb +0 -90
- data/app/views/cms/content_types/index.html.erb +0 -14
- data/app/views/cms/form_builder/_cms_attachment_manager.html.erb +0 -27
- data/app/views/cms/form_builder/_cms_check_box.html.erb +0 -7
- data/app/views/cms/form_builder/_cms_date_picker.html.erb +0 -12
- data/app/views/cms/form_builder/_cms_datetime_select.html.erb +0 -12
- data/app/views/cms/form_builder/_cms_drop_down.html.erb +0 -12
- data/app/views/cms/form_builder/_cms_fancy_drop_down.html.erb +0 -9
- data/app/views/cms/form_builder/_cms_file_field.html.erb +0 -28
- data/app/views/cms/form_builder/_cms_instructions.html.erb +0 -4
- data/app/views/cms/form_builder/_cms_tag_list.html.erb +0 -15
- data/app/views/cms/form_builder/_cms_template_editor.html.erb +0 -9
- data/app/views/cms/form_builder/_cms_text_area.html.erb +0 -10
- data/app/views/cms/form_builder/_cms_text_editor.html.erb +0 -19
- data/app/views/cms/form_builder/_cms_text_field.html.erb +0 -12
- data/app/views/cms/links/destroy.js.rjs +0 -2
- data/app/views/cms/page_routes/show.html.erb +0 -10
- data/app/views/cms/pages/_edit_connector.html.erb +0 -19
- data/app/views/cms/pages/_edit_container.html.erb +0 -11
- data/app/views/cms/section_nodes/_link.html.erb +0 -14
- data/app/views/cms/section_nodes/_node.html.erb +0 -44
- data/app/views/cms/section_nodes/_page.html.erb +0 -20
- data/app/views/cms/section_nodes/_section.html.erb +0 -28
- data/app/views/cms/section_nodes/index.html.erb +0 -43
- data/app/views/cms/sections/_page.html.erb +0 -4
- data/app/views/cms/sections/_section.html.erb +0 -8
- data/app/views/cms/sections/destroy.js.rjs +0 -2
- data/app/views/cms/sections/index.html.erb +0 -23
- data/app/views/cms/shared/_admin_sidebar.html.erb +0 -36
- data/app/views/cms/shared/_pagination.html.erb +0 -31
- data/app/views/cms/toolbar/_mobile_toggle.html.erb +0 -33
- data/app/views/cms/toolbar/index.html.erb +0 -1
- data/app/views/cms/users/_groups.html.erb +0 -12
- data/app/views/cms/users/_toolbar.html.erb +0 -24
- data/app/views/cms/users/show.html.erb +0 -50
- data/app/views/layouts/_cms_toolbar.html.erb +0 -54
- data/app/views/layouts/_page_toolbar.html.erb +0 -119
- data/app/views/layouts/cms/administration.html.erb +0 -51
- data/app/views/layouts/cms/content_library.html.erb +0 -96
- data/app/views/layouts/cms/dashboard.html.erb +0 -16
- data/app/views/layouts/cms/login.html.erb +0 -31
- data/app/views/layouts/cms/section_nodes.html.erb +0 -20
- data/app/views/layouts/cms/toolbar.html.erb +0 -23
- data/app/views/portlets/reset_password/_form.html.erb +0 -3
- data/app/views/portlets/reset_password/render.html.erb +0 -22
- data/bin/bcms-upgrade +0 -332
- data/db/migrate/20091109175123_browsercms_3_0_5.rb +0 -9
- data/db/migrate/20100117144038_browsercms314.rb +0 -20
- data/db/migrate/20100117144039_browsercms315.rb +0 -95
- data/db/migrate/20100705083859_browsercms_3_3_0.rb +0 -56
- data/db/migrate/20111130221145_browsercms340.rb +0 -56
- data/db/migrate/20120329144406_browsercms350.rb +0 -32
- data/db/migrate/20120717182827_browsercms353.rb +0 -19
- data/db/migrate/20120813180110_browsercms354.rb +0 -9
- data/lib/cms/addressable.rb +0 -93
- data/lib/cms/authentication/model.rb +0 -116
- data/lib/cms/behaviors/pagination.rb +0 -212
- data/lib/cms/upgrades/v3_4_0.rb +0 -31
- data/lib/cms/upgrades/v3_5_0.rb +0 -227
@@ -0,0 +1,48 @@
|
|
1
|
+
/* SUBMENU */
|
2
|
+
#submenu {
|
3
|
+
background: darken(white,2%);
|
4
|
+
border-bottom: 1px solid rgba(black,0.3);
|
5
|
+
@include rem(padding,0.75rem 0);
|
6
|
+
|
7
|
+
.status {
|
8
|
+
margin-top: 0.25em;
|
9
|
+
color: white;
|
10
|
+
text-transform: uppercase;
|
11
|
+
font-weight: 700;
|
12
|
+
padding: 6px 12px 8px;
|
13
|
+
@include border-radius(4px);
|
14
|
+
@include rem(font-size,1rem);
|
15
|
+
-webkit-font-smoothing: antialiased;
|
16
|
+
display: inline-block;
|
17
|
+
vertical-align: top;
|
18
|
+
font-family: 'Source Sans Pro', sans-serif;
|
19
|
+
|
20
|
+
&.draft {
|
21
|
+
background: $danger;
|
22
|
+
}
|
23
|
+
&.published {
|
24
|
+
background: $success;
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
.last-saved {
|
29
|
+
display: inline-block;
|
30
|
+
margin-top: 0.25em;
|
31
|
+
margin-left: 2.5em;
|
32
|
+
text-transform: uppercase;
|
33
|
+
padding: 8px 0 10px;
|
34
|
+
color: $dark;
|
35
|
+
font-family: 'Source Sans Pro', sans-serif;
|
36
|
+
font-weight: 400;
|
37
|
+
@include rem(font-size,0.875rem);
|
38
|
+
@include opacity(0.8);
|
39
|
+
}
|
40
|
+
|
41
|
+
.btn,
|
42
|
+
.btn-group {
|
43
|
+
margin-bottom: 0;
|
44
|
+
}
|
45
|
+
.primary-cta {
|
46
|
+
@include rem(margin-left,0.75rem);
|
47
|
+
}
|
48
|
+
}
|
@@ -0,0 +1,49 @@
|
|
1
|
+
@charset "utf-8";
|
2
|
+
|
3
|
+
$experimental-support-for-khtml: false;
|
4
|
+
@import "compass/reset";
|
5
|
+
@import "compass/css3";
|
6
|
+
@import "compass/typography";
|
7
|
+
@import "compass/css3/box";
|
8
|
+
|
9
|
+
// Basic items for making modals work
|
10
|
+
@import "bootstrap/mixins";
|
11
|
+
@import "bootstrap/variables";
|
12
|
+
// @import "bootstrap/modals";
|
13
|
+
|
14
|
+
@import 'core';
|
15
|
+
|
16
|
+
@import "cms/includes/_rem";
|
17
|
+
@import "cms/includes/_animation";
|
18
|
+
|
19
|
+
|
20
|
+
/* IMPORTING STYLES */
|
21
|
+
@import 'cms/styles/_base-grid';
|
22
|
+
@import 'cms/styles/_text';
|
23
|
+
@import 'cms/styles/_images';
|
24
|
+
@import 'cms/styles/_lists';
|
25
|
+
@import 'cms/styles/_buttons';
|
26
|
+
@import 'cms/styles/_tables';
|
27
|
+
@import 'cms/styles/_forms';
|
28
|
+
@import 'cms/styles/_dropdown';
|
29
|
+
@import 'cms/styles/_progress';
|
30
|
+
@import 'cms/styles/_alerts';
|
31
|
+
@import 'cms/styles/_modal';
|
32
|
+
@import 'cms/styles/_glyph';
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
/* PAGE STYLE & LAYOUT IMPORTS */
|
38
|
+
@import 'cms/_base';
|
39
|
+
|
40
|
+
@import 'cms/_colors';
|
41
|
+
@import 'cms/_cms-buttons';
|
42
|
+
@import 'cms/_cms-forms';
|
43
|
+
@import 'cms/_nav';
|
44
|
+
@import 'cms/_submenu';
|
45
|
+
@import 'cms/_main-area';
|
46
|
+
@import 'cms/_sitemap';
|
47
|
+
@import 'cms/_assets';
|
48
|
+
@import 'cms/_dashboard';
|
49
|
+
@import 'cms/_sidebar';
|
@@ -0,0 +1,96 @@
|
|
1
|
+
/* COLORS & MIX-INS */
|
2
|
+
@mixin breakpoint($point) {
|
3
|
+
@if $point == large {
|
4
|
+
@media only screen and (min-width : 1401px) { @content; }
|
5
|
+
}
|
6
|
+
@else if $point == landscape {
|
7
|
+
@media only screen and (min-width : 802px) and (max-width : 1025px) { @content; }
|
8
|
+
}
|
9
|
+
@else if $point == portrait {
|
10
|
+
@media only screen and (min-width : 642px) and (max-width : 801px) { @content; }
|
11
|
+
}
|
12
|
+
@else if $point == mobile {
|
13
|
+
@media only screen and (max-width : 641px) { @content; }
|
14
|
+
}
|
15
|
+
}
|
16
|
+
|
17
|
+
$main-blue: #095aa6;
|
18
|
+
$light-blue: #0079c1;
|
19
|
+
|
20
|
+
$primary: $main-blue;
|
21
|
+
$secondary: $light-blue;
|
22
|
+
|
23
|
+
$light: darken(white,6%);
|
24
|
+
$gray: #9a9999;
|
25
|
+
$dark: #505050;
|
26
|
+
|
27
|
+
$success: #2ecc71;
|
28
|
+
$warning: #f1c40f;
|
29
|
+
$danger: #e74c3c;
|
30
|
+
|
31
|
+
|
32
|
+
/* RESET */
|
33
|
+
html {
|
34
|
+
min-height: 100%;
|
35
|
+
height: 100%;
|
36
|
+
-webkit-text-size-adjust: 100%;
|
37
|
+
-ms-text-size-adjust: 100%;
|
38
|
+
|
39
|
+
background: $light;
|
40
|
+
|
41
|
+
@include breakpoint(landscape) {
|
42
|
+
font-size: 95%;
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
body {
|
47
|
+
height: 100%;
|
48
|
+
width: 100%;
|
49
|
+
position: relative;
|
50
|
+
overflow-x: hidden;
|
51
|
+
}
|
52
|
+
* {
|
53
|
+
@include box-sizing(border-box);
|
54
|
+
|
55
|
+
&:after,
|
56
|
+
&:before {
|
57
|
+
@include box-sizing(border-box);
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
/* CLEAR & FLOATS */
|
62
|
+
.clear {
|
63
|
+
clear: both !important;
|
64
|
+
}
|
65
|
+
.left {
|
66
|
+
float: left !important;
|
67
|
+
}
|
68
|
+
.right {
|
69
|
+
float: right !important;
|
70
|
+
}
|
71
|
+
.clear {
|
72
|
+
clear: both;
|
73
|
+
display: block;
|
74
|
+
overflow: hidden;
|
75
|
+
visibility: hidden;
|
76
|
+
width: 0;
|
77
|
+
height: 0;
|
78
|
+
}
|
79
|
+
* html .clearfix {
|
80
|
+
height: 1%;
|
81
|
+
}
|
82
|
+
.clearfix {
|
83
|
+
display: block;
|
84
|
+
*zoom: 1;
|
85
|
+
|
86
|
+
&:after {
|
87
|
+
clear: both;
|
88
|
+
content: "";
|
89
|
+
display: block;
|
90
|
+
font-size: 0;
|
91
|
+
line-height: 0;
|
92
|
+
visibility: hidden;
|
93
|
+
width: 0;
|
94
|
+
height: 0;
|
95
|
+
}
|
96
|
+
}
|
@@ -0,0 +1,120 @@
|
|
1
|
+
// @private Default font-size for all browsers
|
2
|
+
$browser-default-font-size: 16px;
|
3
|
+
|
4
|
+
// Base font size in pixels, if not already defined.
|
5
|
+
// Should be the same as the font-size of the html element.
|
6
|
+
$base-font-size: 16px !default;
|
7
|
+
|
8
|
+
// Whether to output fallback values in px when outputting rems.
|
9
|
+
$rem-with-px-fallback: true !default;
|
10
|
+
|
11
|
+
// Convert any CSS <length> or <percentage> value to any other.
|
12
|
+
@function convert-length($length, $to-unit, $from-context: $base-font-size, $to-context: $from-context) {
|
13
|
+
$from-unit: unit($length);
|
14
|
+
|
15
|
+
// Optimize for cases where from and to may accidentally be the same.
|
16
|
+
@if $from-unit == $to-unit { @return $length; }
|
17
|
+
@if unit($from-context) != 'px' { @warn "Paremeter $from-context must resolve to a value in pixel units."; }
|
18
|
+
@if unit($to-context) != 'px' { @warn "Parameter $to-context must resolve to a value in pixel units."; }
|
19
|
+
|
20
|
+
// Fixed ratios
|
21
|
+
// https://developer.mozilla.org/en/CSS/length
|
22
|
+
// http://dev.w3.org/csswg/css3-values/#absolute-lengths
|
23
|
+
$px-per-in: 96px / 1in;
|
24
|
+
$px-per-mm: 96px / 25.4mm;
|
25
|
+
$px-per-cm: 96px / 2.54cm;
|
26
|
+
$px-per-pt: 4px / 3pt;
|
27
|
+
$px-per-pc: 16px / 1pc;
|
28
|
+
|
29
|
+
// Variables to store actual convesion ratios
|
30
|
+
$px-per-from-unit: 1;
|
31
|
+
$px-per-to-unit: 1;
|
32
|
+
|
33
|
+
@if $from-unit != 'px' {
|
34
|
+
@if $from-unit == 'em' { $px-per-from-unit: $from-context / 1em }
|
35
|
+
@else if $from-unit == 'rem' { $px-per-from-unit: $base-font-size / 1rem }
|
36
|
+
@else if $from-unit == '%' { $px-per-from-unit: $from-context / 100% }
|
37
|
+
@else if $from-unit == 'ex' { $px-per-from-unit: $from-context / 2ex }
|
38
|
+
@else if $from-unit == 'in' { $px-per-from-unit: $px-per-in }
|
39
|
+
@else if $from-unit == 'mm' { $px-per-from-unit: $px-per-mm }
|
40
|
+
@else if $from-unit == 'cm' { $px-per-from-unit: $px-per-cm }
|
41
|
+
@else if $from-unit == 'pt' { $px-per-from-unit: $px-per-pt }
|
42
|
+
@else if $from-unit == 'pc' { $px-per-from-unit: $px-per-pc }
|
43
|
+
@else if $to-unit == 'ch' or $to-unit == 'vw' or $to-unit == 'vh' or $to-unit == 'vmin' {
|
44
|
+
@warn "#{$from-unit} units can't be reliably converted; Returning original value.";
|
45
|
+
@return $length;
|
46
|
+
}
|
47
|
+
@else {
|
48
|
+
@warn "#{$from-unit} is an unknown length unit. Returning original value.";
|
49
|
+
@return $length;
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
@if $to-unit != 'px' {
|
54
|
+
@if $to-unit == 'em' { $px-per-to-unit: $to-context / 1em }
|
55
|
+
@else if $to-unit == 'rem' { $px-per-to-unit: $base-font-size / 1rem }
|
56
|
+
@else if $to-unit == '%' { $px-per-to-unit: $to-context / 100% }
|
57
|
+
@else if $to-unit == 'ex' { $px-per-to-unit: $to-context / 2ex }
|
58
|
+
@else if $to-unit == 'in' { $px-per-to-unit: $px-per-in }
|
59
|
+
@else if $to-unit == 'mm' { $px-per-to-unit: $px-per-mm }
|
60
|
+
@else if $to-unit == 'cm' { $px-per-to-unit: $px-per-cm }
|
61
|
+
@else if $to-unit == 'pt' { $px-per-to-unit: $px-per-pt }
|
62
|
+
@else if $to-unit == 'pc' { $px-per-to-unit: $px-per-px }
|
63
|
+
@else if $to-unit == 'ch' or $to-unit == 'vw' or $to-unit == 'vh' or $to-unit == 'vmin' {
|
64
|
+
@warn "#{$to-unit} units can't be reliably converted; Returning original value.";
|
65
|
+
@return $length;
|
66
|
+
}
|
67
|
+
@else {
|
68
|
+
@warn "#{$to-unit} is an unknown length unit. Returning original value.";
|
69
|
+
@return $length;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
@return $length * $px-per-from-unit / $px-per-to-unit;
|
73
|
+
}
|
74
|
+
|
75
|
+
// For the given property, use rem units with px as a fallback value for older
|
76
|
+
// browsers.
|
77
|
+
//
|
78
|
+
// $property - The css property name.
|
79
|
+
// $values - The value (or space-separated list of values) for the property.
|
80
|
+
// $use-px-fallback - Boolean, default: true; whether to use pixel fallback values
|
81
|
+
//
|
82
|
+
@mixin rem($property, $values, $use-px-fallback: $rem-with-px-fallback) {
|
83
|
+
// Create a couple of empty lists as output buffers.
|
84
|
+
$px-values: ();
|
85
|
+
$rem-values: ();
|
86
|
+
|
87
|
+
// Ensure $values is a list.
|
88
|
+
@if type-of($values) != 'list' {
|
89
|
+
$values: join((), $values);
|
90
|
+
}
|
91
|
+
|
92
|
+
// Loop through the $values list
|
93
|
+
@each $value in $values {
|
94
|
+
// For each property value, if it's in rem or px, derive both rem and
|
95
|
+
// px values for it and add those to the end of the appropriate buffer.
|
96
|
+
// Ensure all pixel values are rounded to the nearest pixel.
|
97
|
+
@if type-of($value) == number and not unitless($value) and (unit($value) == px or unit($value) == rem) {
|
98
|
+
@if unit($value) == px {
|
99
|
+
$px-values: join($px-values, round($value));
|
100
|
+
$rem-values: join($rem-values, convert-length($value, rem));
|
101
|
+
}
|
102
|
+
@else {
|
103
|
+
$px-values: join($px-values, round(convert-length($value, px)));
|
104
|
+
$rem-values: join($rem-values, $value);
|
105
|
+
}
|
106
|
+
}
|
107
|
+
@else {
|
108
|
+
$px-values: join($px-values, $value);
|
109
|
+
$rem-values: join($rem-values, $value);
|
110
|
+
}
|
111
|
+
}
|
112
|
+
|
113
|
+
// Use pixel fallback for browsers that don't understand rem units.
|
114
|
+
@if $use-px-fallback {
|
115
|
+
#{$property}: $px-values;
|
116
|
+
}
|
117
|
+
|
118
|
+
// Use rem values for everyone else (overrides pixel values).
|
119
|
+
#{$property}: $rem-values;
|
120
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
// ---------------------------------------------------------------------------
|
2
|
+
// Animations from Animate.css
|
3
|
+
// Author : Dan Eden
|
4
|
+
// URL : http://daneden.me/animate/
|
5
|
+
//
|
6
|
+
// Attention seekers
|
7
|
+
// - flash bounce shake tada swing wobble pulse
|
8
|
+
// Fading entrances
|
9
|
+
// - fadeIn fadeInUp fadeInDown fadeInLeft fadeInRight fadeInUpBig fadeInDownBig fadeInLeftBig fadeInRightBig
|
10
|
+
// Fading exits
|
11
|
+
// - fadeOut fadeOutUp fadeOutDown fadeOutLeft fadeOutRight fadeOutUpBig fadeOutDownBig fadeOutLeftBig fadeOutRightBig
|
12
|
+
// Bouncing entrances
|
13
|
+
// - bounceIn bounceInDown bounceInUp bounceInLeft bounceInRight
|
14
|
+
// Bouncing exits
|
15
|
+
// - bounceOut bounceOutDown bounceOutUp bounceOutLeft bounceOutRight
|
16
|
+
// Rotating entrances
|
17
|
+
// - rotateIn rotateInDownLeft rotateInDownRight rotateInUpLeft rotateInUpRight
|
18
|
+
// Rotating exits
|
19
|
+
// - rotateOut rotateOutDownLeft rotateOutDownRight rotateOutUpLeft rotateOutUpRight
|
20
|
+
// Lightspeed
|
21
|
+
// - lightSpeedIn lightSpeedOut
|
22
|
+
// Specials
|
23
|
+
// - hinge rollIn rollOut
|
24
|
+
// ---------------------------------------------------------------------------
|
25
|
+
@import "animate/attention-seekers";
|
26
|
+
@import "animate/bouncing";
|
27
|
+
@import "animate/fading";
|
28
|
+
@import "animate/flippers";
|
29
|
+
@import "animate/lightspeed";
|
30
|
+
@import "animate/rotating";
|
31
|
+
@import "animate/specials";
|
@@ -0,0 +1,127 @@
|
|
1
|
+
@import "shared";
|
2
|
+
|
3
|
+
// CSS Animations.
|
4
|
+
|
5
|
+
// Apply an animation property and value with the correct browser support
|
6
|
+
@mixin animation-support($property, $value) {
|
7
|
+
@include experimental($property, $value, -moz, -webkit, -o, -ms, not -khtml, official); }
|
8
|
+
|
9
|
+
// Name of any animation as a string.
|
10
|
+
$default-animation-name : false !default;
|
11
|
+
|
12
|
+
// Duration of the entire animation in seconds.
|
13
|
+
$default-animation-duration : false !default;
|
14
|
+
|
15
|
+
// Delay for start of animation in seconds.
|
16
|
+
$default-animation-delay : false !default;
|
17
|
+
|
18
|
+
// The timing function(s) to be used between keyframes. [ease | linear | ease-in | ease-out | ease-in-out | cubic-bezier($number, $number, $number, $number)]
|
19
|
+
$default-animation-timing-function : false !default;
|
20
|
+
|
21
|
+
// The number of times an animation cycle is played. [infinite | $number]
|
22
|
+
$default-animation-iteration-count : false !default;
|
23
|
+
|
24
|
+
// Whether or not the animation should play in reverse on alternate cycles. [normal | alternate]
|
25
|
+
$default-animation-direction : false !default;
|
26
|
+
|
27
|
+
// What values are applied by the animation outside the time it is executing. [none | forwards | backwards | both]
|
28
|
+
$default-animation-fill-mode : false !default;
|
29
|
+
|
30
|
+
// Whether the animation is running or paused. [running | paused]
|
31
|
+
$default-animation-play-state : false !default;
|
32
|
+
|
33
|
+
// Create a named animation sequence that can be applied to elements later.
|
34
|
+
//
|
35
|
+
// $name - The name of your animation.
|
36
|
+
// @content - The keyframes of the animation.
|
37
|
+
@mixin keyframes(
|
38
|
+
$name,
|
39
|
+
$moz: $experimental-support-for-mozilla,
|
40
|
+
$webkit: $experimental-support-for-webkit,
|
41
|
+
$o: $experimental-support-for-opera,
|
42
|
+
$ms: $experimental-support-for-microsoft,
|
43
|
+
$khtml: $experimental-support-for-khtml,
|
44
|
+
$official: true
|
45
|
+
) {
|
46
|
+
@if $moz {
|
47
|
+
@include with-only-support-for($moz: true) {
|
48
|
+
@-moz-keyframes #{$name} { @content; }
|
49
|
+
}
|
50
|
+
}
|
51
|
+
@if $webkit {
|
52
|
+
@include with-only-support-for($webkit: true) {
|
53
|
+
@-webkit-keyframes #{$name} { @content; }
|
54
|
+
}
|
55
|
+
}
|
56
|
+
@if $o {
|
57
|
+
@include with-only-support-for($o: true) {
|
58
|
+
@-o-keyframes #{$name} { @content; }
|
59
|
+
}
|
60
|
+
}
|
61
|
+
@if $ms {
|
62
|
+
@include with-only-support-for($ms: true) {
|
63
|
+
@-ms-keyframes #{$name} { @content; }
|
64
|
+
}
|
65
|
+
}
|
66
|
+
@if $khtml {
|
67
|
+
@include with-only-support-for($khtml: true) {
|
68
|
+
@-khtml-keyframes #{$name} { @content; }
|
69
|
+
}
|
70
|
+
}
|
71
|
+
@if $official {
|
72
|
+
@include with-only-support-for {
|
73
|
+
@keyframes #{$name} { @content; }
|
74
|
+
}
|
75
|
+
}
|
76
|
+
}
|
77
|
+
|
78
|
+
// Apply 1-10 animation names.
|
79
|
+
@mixin animation-name($name-1: $default-animation-name, $name-2: false, $name-3: false, $name-4: false, $name-5: false, $name-6: false, $name-7: false, $name-8: false, $name-9: false, $name-10: false) {
|
80
|
+
$name: compact($name-1, $name-2, $name-3, $name-4, $name-5, $name-6, $name-7, $name-8, $name-9, $name-10);
|
81
|
+
@include animation-support(animation-name, $name); }
|
82
|
+
|
83
|
+
// Apply 1-10 animation durations.
|
84
|
+
@mixin animation-duration($duration-1: $default-animation-duration, $duration-2: false, $duration-3: false, $duration-4: false, $duration-5: false, $duration-6: false, $duration-7: false, $duration-8: false, $duration-9: false, $duration-10: false) {
|
85
|
+
$duration: compact($duration-1, $duration-2, $duration-3, $duration-4, $duration-5, $duration-6, $duration-7, $duration-8, $duration-9, $duration-10);
|
86
|
+
@include animation-support(animation-duration, $duration); }
|
87
|
+
|
88
|
+
// Apply 1-10 animation delays.
|
89
|
+
@mixin animation-delay($delay-1: $default-animation-delay, $delay-2: false, $delay-3: false, $delay-4: false, $delay-5: false, $delay-6: false, $delay-7: false, $delay-8: false, $delay-9: false, $delay-10: false) {
|
90
|
+
$delay: compact($delay-1, $delay-2, $delay-3, $delay-4, $delay-5, $delay-6, $delay-7, $delay-8, $delay-9, $delay-10);
|
91
|
+
@include animation-support(animation-delay, $delay); }
|
92
|
+
|
93
|
+
// Apply 1-10 animation timing functions.
|
94
|
+
@mixin animation-timing-function($function-1: $default-animation-timing-function, $function-2: false, $function-3: false, $function-4: false, $function-5: false, $function-6: false, $function-7: false, $function-8: false, $function-9: false, $function-10: false) {
|
95
|
+
$function: compact($function-1, $function-2, $function-3, $function-4, $function-5, $function-6, $function-7, $function-8, $function-9, $function-10);
|
96
|
+
@include animation-support(animation-timing-function, $function); }
|
97
|
+
|
98
|
+
// Apply 1-10 animation iteration counts.
|
99
|
+
@mixin animation-iteration-count($count-1: $default-animation-iteration-count, $count-2: false, $count-3: false, $count-4: false, $count-5: false, $count-6: false, $count-7: false, $count-8: false, $count-9: false, $count-10: false) {
|
100
|
+
$count: compact($count-1, $count-2, $count-3, $count-4, $count-5, $count-6, $count-7, $count-8, $count-9, $count-10);
|
101
|
+
@include animation-support(animation-iteration-count, $count); }
|
102
|
+
|
103
|
+
// Apply 1-10 animation directions.
|
104
|
+
@mixin animation-direction($direction-1: $default-animation-direction, $direction-2: false, $direction-3: false, $direction-4: false, $direction-5: false, $direction-6: false, $direction-7: false, $direction-8: false, $direction-9: false, $direction-10: false) {
|
105
|
+
$direction: compact($direction-1, $direction-2, $direction-3, $direction-4, $direction-5, $direction-6, $direction-7, $direction-8, $direction-9, $direction-10);
|
106
|
+
@include animation-support(animation-direction, $direction); }
|
107
|
+
|
108
|
+
// Apply 1-10 animation fill modes.
|
109
|
+
@mixin animation-fill-mode($mode-1: $default-animation-fill-mode, $mode-2: false, $mode-3: false, $mode-4: false, $mode-5: false, $mode-6: false, $mode-7: false, $mode-8: false, $mode-9: false, $mode-10: false) {
|
110
|
+
$mode: compact($mode-1, $mode-2, $mode-3, $mode-4, $mode-5, $mode-6, $mode-7, $mode-8, $mode-9, $mode-10);
|
111
|
+
@include animation-support(animation-fill-mode, $mode); }
|
112
|
+
|
113
|
+
// Apply 1-10 animation play states.
|
114
|
+
@mixin animation-play-state($state-1: $default-animation-play-state, $state-2: false, $state-3: false, $state-4: false, $state-5: false, $state-6: false, $state-7: false, $state-8: false, $state-9: false, $state-10: false) {
|
115
|
+
$state: compact($state-1, $state-2, $state-3, $state-4, $state-5, $state-6, $state-7, $state-8, $state-9, $state-10);
|
116
|
+
@include animation-support(animation-play-state, $state); }
|
117
|
+
|
118
|
+
// Shortcut to apply a named animation to an element, with all the settings.
|
119
|
+
//
|
120
|
+
// $animation-1 : Name and settings for the first animation. [<values> | default]
|
121
|
+
// ...
|
122
|
+
// $animation-10 : Name and settings for the tenth animation. <values>
|
123
|
+
@mixin animation($animation-1: default, $animation-2: false, $animation-3: false, $animation-4: false, $animation-5: false, $animation-6: false, $animation-7: false, $animation-8: false, $animation-9: false, $animation-10: false) {
|
124
|
+
@if $animation-1 == default {
|
125
|
+
$animation-1: -compass-space-list(compact($default-animation-name, $default-animation-duration, $default-animation-timing-function, $default-animation-delay, $default-animation-iteration-count, $default-animation-direction, $default-animation-fill-mode, $default-animation-play-state)); }
|
126
|
+
$animation: compact($animation-1, $animation-2, $animation-3, $animation-4, $animation-5, $animation-6, $animation-7, $animation-8, $animation-9, $animation-10);
|
127
|
+
@include animation-support(animation, $animation); }
|