locomotivecms 3.0.0.pre.alpha.3 → 3.0.0.pre.beta.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +15 -8
- data/app/api/locomotive/api.rb +1 -0
- data/app/api/locomotive/api/entities/content_entry_entity.rb +1 -0
- data/app/api/locomotive/api/entities/content_type_entity.rb +2 -1
- data/app/api/locomotive/api/entities/site_entity.rb +4 -0
- data/app/api/locomotive/api/entities/theme_asset_entity.rb +3 -3
- data/app/api/locomotive/api/forms/base_form.rb +0 -6
- data/app/api/locomotive/api/forms/content_type_field_form.rb +6 -10
- data/app/api/locomotive/api/forms/content_type_form.rb +26 -4
- data/app/api/locomotive/api/middlewares/params_decoder_middleware.rb +91 -0
- data/app/api/locomotive/api/resources/content_type_resource.rb +7 -2
- data/app/api/locomotive/api/resources/current_site_resource.rb +10 -2
- data/app/assets/images/locomotive/favicon.png +0 -0
- data/app/assets/javascripts/locomotive/not_logged_in.js.coffee +11 -1
- data/app/assets/javascripts/locomotive/views/application_view.js.coffee +0 -76
- data/app/assets/javascripts/locomotive/views/content_assets/edit_image_view.js.coffee +3 -1
- data/app/assets/javascripts/locomotive/views/dashboard/show_view.js.coffee +33 -1
- data/app/assets/javascripts/locomotive/views/developers_documentation/show_view.js.coffee +9 -0
- data/app/assets/javascripts/locomotive/views/editable_elements/edit_view.js.coffee +3 -1
- data/app/assets/javascripts/locomotive/views/editable_elements/index_view.js.coffee +11 -11
- data/app/assets/javascripts/locomotive/views/inputs/text_view.js.coffee +16 -0
- data/app/assets/javascripts/locomotive/views/pages/_form_view.js.coffee +0 -158
- data/app/assets/javascripts/locomotive/views/pages/edit_view.js.coffee +0 -41
- data/app/assets/javascripts/locomotive/views/public_submission_accounts/edit_view.js.coffee +7 -0
- data/app/assets/javascripts/locomotive/views/shared/form_view.js.coffee +11 -3
- data/app/assets/javascripts/locomotive/views/shared/list_view.js.coffee +4 -2
- data/app/assets/javascripts/locomotive/views/translations/index_view.js.coffee +5 -0
- data/app/assets/stylesheets/locomotive/application.scss +4 -0
- data/app/assets/stylesheets/locomotive/base/_fonts.scss +5 -5
- data/app/assets/stylesheets/locomotive/base/form/_base.scss +9 -1
- data/app/assets/stylesheets/locomotive/components/_activity_feed.scss +66 -0
- data/app/assets/stylesheets/locomotive/components/_content_assets.scss +27 -8
- data/app/assets/stylesheets/locomotive/components/_developers.scss +34 -0
- data/app/assets/stylesheets/locomotive/components/_error.scss +37 -0
- data/app/assets/stylesheets/locomotive/components/_list.scss +6 -0
- data/app/assets/stylesheets/locomotive/components/_main.scss +4 -0
- data/app/assets/stylesheets/locomotive/components/_misc.scss +1 -0
- data/app/assets/stylesheets/locomotive/components/_translations.scss +13 -0
- data/app/assets/stylesheets/locomotive/components/header/_base.scss +7 -2
- data/app/assets/stylesheets/locomotive/components/misc/_modal.scss +13 -0
- data/app/assets/stylesheets/locomotive/components/misc/_notify.scss +2 -2
- data/app/assets/stylesheets/locomotive/components/not_logged_in/_sign_in_and_up.scss +11 -1
- data/app/assets/stylesheets/locomotive/components/sidebar/_pages_tree.scss +2 -2
- data/app/assets/stylesheets/locomotive/error.scss +12 -0
- data/app/assets/stylesheets/locomotive/globals/_bootstrap.scss +1 -1
- data/app/assets/stylesheets/locomotive/globals/_mixins.scss +8 -4
- data/app/assets/stylesheets/locomotive/globals/_variables.scss +2 -0
- data/app/assets/stylesheets/locomotive/not_logged_in.scss +4 -0
- data/app/controllers/locomotive/accounts_controller.rb +6 -1
- data/app/controllers/locomotive/base_controller.rb +1 -1
- data/app/controllers/locomotive/concerns/exception_controller.rb +2 -1
- data/app/controllers/locomotive/concerns/site_dispatcher_controller.rb +2 -1
- data/app/controllers/locomotive/content_assets_controller.rb +2 -2
- data/app/controllers/locomotive/content_entries_controller.rb +2 -2
- data/app/controllers/locomotive/current_site_controller.rb +5 -1
- data/app/controllers/locomotive/custom_fields/select_options_controller.rb +1 -1
- data/app/controllers/locomotive/dashboard_controller.rb +2 -0
- data/app/controllers/locomotive/developers_documentation_controller.rb +11 -0
- data/app/controllers/locomotive/editable_elements_controller.rb +11 -10
- data/app/controllers/locomotive/errors_controller.rb +15 -0
- data/app/controllers/locomotive/pages_controller.rb +3 -3
- data/app/controllers/locomotive/public_submission_accounts_controller.rb +42 -0
- data/app/controllers/locomotive/translations_controller.rb +9 -23
- data/app/helpers/locomotive/base_helper.rb +25 -23
- data/app/helpers/locomotive/content_assets_helper.rb +8 -0
- data/app/helpers/locomotive/content_entries_helper.rb +13 -19
- data/app/helpers/locomotive/content_types_helper.rb +9 -12
- data/app/helpers/locomotive/custom_fields_helper.rb +1 -0
- data/app/helpers/locomotive/dashboard_helper.rb +91 -0
- data/app/helpers/locomotive/developers_documentation_helper.rb +32 -0
- data/app/helpers/locomotive/editable_elements_helper.rb +25 -14
- data/app/helpers/locomotive/errors_helper.rb +21 -0
- data/app/helpers/locomotive/my_account_helper.rb +10 -8
- data/app/helpers/locomotive/pages_helper.rb +1 -1
- data/app/helpers/locomotive/public_submission_accounts_helper.rb +11 -0
- data/app/helpers/locomotive/shared/accounts_helper.rb +2 -2
- data/app/helpers/locomotive/sites_helper.rb +15 -11
- data/app/helpers/locomotive/translations_helper.rb +21 -13
- data/app/inputs/locomotive/api_key_input.rb +2 -0
- data/app/inputs/locomotive/array_input.rb +8 -3
- data/app/inputs/locomotive/code_input.rb +1 -47
- data/app/inputs/locomotive/document_picker_input.rb +1 -0
- data/app/inputs/locomotive/rte_input.rb +2 -0
- data/app/inputs/locomotive/toggle_input.rb +2 -0
- data/app/models/locomotive/activity.rb +32 -0
- data/app/models/locomotive/concerns/content_entry/localized.rb +12 -1
- data/app/models/locomotive/concerns/content_type/entry_template.rb +52 -0
- data/app/models/locomotive/concerns/page/editable_elements.rb +0 -111
- data/app/models/locomotive/concerns/page/layout.rb +21 -6
- data/app/models/locomotive/concerns/site/access_points.rb +24 -3
- data/app/models/locomotive/concerns/site/locales.rb +7 -27
- data/app/models/locomotive/content_asset.rb +0 -4
- data/app/models/locomotive/content_entry.rb +10 -8
- data/app/models/locomotive/content_type.rb +12 -1
- data/app/models/locomotive/editable_element.rb +11 -106
- data/app/models/locomotive/editable_file.rb +6 -53
- data/app/models/locomotive/editable_model.rb +13 -0
- data/app/models/locomotive/editable_text.rb +0 -51
- data/app/models/locomotive/page.rb +31 -17
- data/app/models/locomotive/site.rb +12 -13
- data/app/models/locomotive/theme_asset.rb +0 -4
- data/app/models/locomotive/translation.rb +50 -35
- data/app/policies/locomotive/content_type_policy.rb +4 -0
- data/app/policies/locomotive/site_policy.rb +4 -0
- data/app/services/locomotive/concerns/activity_service.rb +27 -0
- data/app/services/locomotive/content_asset_service.rb +16 -2
- data/app/services/locomotive/content_entry_service.rb +77 -8
- data/app/services/locomotive/content_type_service.rb +6 -2
- data/app/services/locomotive/editable_element_service.rb +11 -4
- data/app/services/locomotive/membership_service.rb +20 -4
- data/app/services/locomotive/page_parsing_service.rb +94 -23
- data/app/services/locomotive/page_service.rb +61 -3
- data/app/services/locomotive/site_service.rb +43 -1
- data/app/services/locomotive/translation_service.rb +51 -0
- data/app/uploaders/locomotive/picture_uploader.rb +5 -1
- data/app/views/locomotive/accounts/{new.html.haml → new.html.slim} +0 -0
- data/app/views/locomotive/content_assets/{_dropzone.html.haml → _dropzone.html.slim} +4 -3
- data/app/views/locomotive/content_assets/{_list.html.haml → _list.html.slim} +11 -9
- data/app/views/locomotive/content_assets/{_nav.html.haml → _nav.html.slim} +5 -5
- data/app/views/locomotive/content_assets/{_search_form.html.haml → _search_form.html.slim} +1 -1
- data/app/views/locomotive/content_assets/edit_in_drawer.html.slim +27 -0
- data/app/views/locomotive/content_assets/{index.html.haml → index.html.slim} +4 -4
- data/app/views/locomotive/content_assets/{index_in_drawer.html.haml → index_in_drawer.html.slim} +1 -1
- data/app/views/locomotive/content_entries/{_entry.html.haml → _entry.html.slim} +3 -3
- data/app/views/locomotive/content_entries/{_list.html.haml → _list.html.slim} +9 -8
- data/app/views/locomotive/content_entries/{edit.html.haml → edit.html.slim} +5 -0
- data/app/views/locomotive/content_entries/form/{_actions.html.haml → _actions.html.slim} +0 -0
- data/app/views/locomotive/content_entries/form/{_advanced.html.haml → _advanced.html.slim} +0 -0
- data/app/views/locomotive/content_entries/form/{_main.html.haml → _main.html.slim} +0 -0
- data/app/views/locomotive/content_entries/form/{_panes.html.haml → _panes.html.slim} +0 -0
- data/app/views/locomotive/content_entries/form/{_seo.html.haml → _seo.html.slim} +0 -0
- data/app/views/locomotive/content_entries/form/_tabs.html.slim +13 -0
- data/app/views/locomotive/content_entries/{index.html.haml → index.html.slim} +22 -9
- data/app/views/locomotive/content_entries/{new.html.haml → new.html.slim} +0 -0
- data/app/views/locomotive/current_site/{_domain.html.haml → _domain.html.slim} +3 -3
- data/app/views/locomotive/current_site/{_locale.html.haml → _locale.html.slim} +4 -4
- data/app/views/locomotive/current_site/{_membership.html.haml → _membership.html.slim} +7 -6
- data/app/views/locomotive/current_site/{edit.html.haml → edit.html.slim} +1 -1
- data/app/views/locomotive/current_site/form/{_access_points.html.haml → _access_points.html.slim} +1 -0
- data/app/views/locomotive/current_site/form/{_advanced.html.haml → _advanced.html.slim} +0 -0
- data/app/views/locomotive/current_site/form/{_main.html.haml → _main.html.slim} +0 -0
- data/app/views/locomotive/current_site/form/{_panes.html.haml → _panes.html.slim} +0 -0
- data/app/views/locomotive/current_site/form/{_seo.html.haml → _seo.html.slim} +0 -0
- data/app/views/locomotive/current_site/form/_tabs.html.slim +14 -0
- data/app/views/locomotive/custom_fields/select_options/{_option.html.haml → _option.html.slim} +7 -7
- data/app/views/locomotive/custom_fields/select_options/{edit.html.haml → edit.html.slim} +0 -0
- data/app/views/locomotive/dashboard/show.html.slim +28 -0
- data/app/views/locomotive/developers_documentation/_api.html.slim +44 -0
- data/app/views/locomotive/developers_documentation/_wagon.html.slim +42 -0
- data/app/views/locomotive/developers_documentation/show.html.slim +11 -0
- data/app/views/locomotive/devise_mailer/reset_password_instructions.html.slim +12 -0
- data/app/views/locomotive/editable_elements/_edit.html.slim +52 -0
- data/app/views/locomotive/editable_elements/{_form.html.haml → _form.html.slim} +12 -3
- data/app/views/locomotive/editable_elements/index.html.slim +8 -0
- data/app/views/locomotive/editable_elements/{index_without_preview.html.haml → index_without_preview.html.slim} +5 -4
- data/app/views/locomotive/errors/404.html.slim +2 -0
- data/app/views/locomotive/errors/500.html.slim +2 -0
- data/app/views/locomotive/errors/no_site.html.slim +7 -0
- data/app/views/locomotive/layouts/application.html.slim +42 -0
- data/app/views/locomotive/layouts/error.html.slim +24 -0
- data/app/views/locomotive/layouts/{live_editing.html.haml → live_editing.html.slim} +10 -10
- data/app/views/locomotive/layouts/not_logged_in.html.slim +26 -0
- data/app/views/locomotive/layouts/{without_site.html.haml → without_site.html.slim} +9 -6
- data/app/views/locomotive/memberships/{edit.html.haml → edit.html.slim} +0 -0
- data/app/views/locomotive/memberships/{new.html.haml → new.html.slim} +0 -0
- data/app/views/locomotive/my_account/{edit.html.haml → edit.html.slim} +1 -1
- data/app/views/locomotive/my_account/form/{_actions.html.haml → _actions.html.slim} +0 -0
- data/app/views/locomotive/my_account/form/{_api.html.haml → _api.html.slim} +0 -1
- data/app/views/locomotive/my_account/form/{_credentials.html.haml → _credentials.html.slim} +0 -0
- data/app/views/locomotive/my_account/form/{_main.html.haml → _main.html.slim} +0 -0
- data/app/views/locomotive/my_account/form/{_panes.html.haml → _panes.html.slim} +1 -1
- data/app/views/locomotive/my_account/form/_tabs.html.slim +7 -0
- data/app/views/locomotive/notifications/{new_content_entry.html.haml → new_content_entry.html.slim} +11 -11
- data/app/views/locomotive/pages/{edit.html.haml → edit.html.slim} +0 -0
- data/app/views/locomotive/pages/form/{_actions.html.haml → _actions.html.slim} +0 -0
- data/app/views/locomotive/pages/form/{_main.html.haml → _main.html.slim} +0 -0
- data/app/views/locomotive/pages/form/{_panes.html.haml → _panes.html.slim} +0 -0
- data/app/views/locomotive/pages/form/{_seo.html.haml → _seo.html.slim} +0 -0
- data/app/views/locomotive/pages/form/{_tabs.html.haml → _tabs.html.slim} +1 -1
- data/app/views/locomotive/pages/{new.html.haml → new.html.slim} +0 -0
- data/app/views/locomotive/pages/show.html.slim +2 -0
- data/app/views/locomotive/passwords/{edit.html.haml → edit.html.slim} +6 -6
- data/app/views/locomotive/passwords/{new.html.haml → new.html.slim} +6 -6
- data/app/views/locomotive/public_submission_accounts/_account.html.slim +19 -0
- data/app/views/locomotive/public_submission_accounts/edit.html.slim +16 -0
- data/app/views/locomotive/registrations/{new.html.haml → new.html.slim} +2 -4
- data/app/views/locomotive/sessions/{new.html.haml → new.html.slim} +2 -4
- data/app/views/locomotive/shared/_footer.html.slim +2 -0
- data/app/views/locomotive/shared/{_form_actions.html.haml → _form_actions.html.slim} +4 -4
- data/app/views/locomotive/shared/_head.html.slim +39 -0
- data/app/views/locomotive/shared/{_header.html.haml → _header.html.slim} +10 -10
- data/app/views/locomotive/shared/_locale_picker_link.html.slim +11 -0
- data/app/views/locomotive/shared/{_main_app_head.html.haml → _main_app_head.html.slim} +0 -0
- data/app/views/locomotive/shared/{_main_app_head_before_backbone.html.haml → _main_app_head_before_backbone.html.slim} +0 -0
- data/app/views/locomotive/shared/{_main_app_header.html.haml → _main_app_header.html.slim} +0 -0
- data/app/views/locomotive/shared/{_sidebar.html.haml → _sidebar.html.slim} +6 -0
- data/app/views/locomotive/shared/{_sidebar_without_site.html.haml → _sidebar_without_site.html.slim} +0 -0
- data/app/views/locomotive/shared/actions/{_contents.html.haml → _contents.html.slim} +1 -1
- data/app/views/locomotive/shared/header/{_account.html.haml → _account.html.slim} +1 -1
- data/app/views/locomotive/shared/header/_account_menu.html.slim +5 -0
- data/app/views/locomotive/shared/header/_brand.html.slim +5 -0
- data/app/views/locomotive/shared/header/{_site.html.haml → _site.html.slim} +2 -2
- data/app/views/locomotive/shared/rte/{_image_popover.html.haml → _image_popover.html.slim} +5 -5
- data/app/views/locomotive/shared/rte/{_link_popover.html.haml → _link_popover.html.slim} +5 -5
- data/app/views/locomotive/shared/rte/_toolbar.html.slim +62 -0
- data/app/views/locomotive/shared/sidebar/_content_types.html.slim +16 -0
- data/app/views/locomotive/shared/sidebar/_link.html.slim +10 -0
- data/app/views/locomotive/shared/sidebar/{_my_account.html.haml → _my_account.html.slim} +2 -2
- data/app/views/locomotive/shared/sidebar/_page.html.slim +33 -0
- data/app/views/locomotive/shared/sidebar/_pages.html.slim +11 -0
- data/app/views/locomotive/sites/{_site.html.haml → _site.html.slim} +3 -3
- data/app/views/locomotive/sites/{index.html.haml → index.html.slim} +3 -3
- data/app/views/locomotive/sites/{new.html.haml → new.html.slim} +0 -0
- data/app/views/locomotive/translations/_form.html.slim +9 -0
- data/app/views/locomotive/translations/edit.html.slim +7 -0
- data/app/views/locomotive/translations/index.html.slim +41 -0
- data/config/initializers/slim.rb +1 -0
- data/config/initializers/time_format.rb +15 -0
- data/config/locales/admin_ui.en.yml +65 -49
- data/config/locales/default.en.yml +3 -0
- data/config/locales/default.fr.yml +4 -1
- data/config/locales/simple_form.en.yml +14 -8
- data/config/routes.rb +6 -0
- data/features/support/env.rb +1 -1
- data/lib/generators/locomotive/install/install_generator.rb +48 -0
- data/lib/generators/locomotive/install/templates/heroku.rb +29 -0
- data/lib/generators/locomotive/install/templates/locomotive.rb +5 -2
- data/lib/generators/locomotive/install/templates/mongoid.yml +1 -1
- data/lib/generators/locomotive/install/templates/mongoid_heroku.yml +78 -0
- data/lib/locomotive.rb +0 -1
- data/lib/locomotive/configuration.rb +2 -6
- data/lib/locomotive/dependencies.rb +1 -2
- data/lib/locomotive/dragonfly.rb +4 -5
- data/lib/locomotive/engine.rb +10 -13
- data/lib/locomotive/middlewares.rb +0 -1
- data/lib/locomotive/middlewares/custom_public_exceptions.rb +19 -0
- data/lib/locomotive/middlewares/site.rb +49 -16
- data/lib/locomotive/simple_form.rb +67 -26
- data/lib/locomotive/steam/middlewares/missing_translations.rb +48 -0
- data/lib/locomotive/steam/middlewares/page_editing.rb +48 -0
- data/lib/locomotive/steam/services/api_entry_submission_service.rb +38 -0
- data/lib/locomotive/steam_adaptor.rb +25 -6
- data/lib/locomotive/version.rb +1 -1
- data/lib/tasks/locomotive.rake +27 -47
- data/spec/dummy/app/views/foo/index.html.slim +1 -0
- data/spec/dummy/app/views/locomotive/shared/{_main_app_head.html.haml → _main_app_head.html.slim} +0 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +4 -0
- data/spec/dummy/config/environments/profile.rb +48 -0
- data/spec/dummy/config/mongoid.yml +6 -6
- data/spec/lib/locomotive/steam/services/api_entry_submission_service_spec.rb +39 -0
- data/spec/models/locomotive/concerns/content_type/entry_template_spec.rb +55 -0
- data/spec/models/locomotive/concerns/page/layout_spec.rb +2 -2
- data/spec/models/locomotive/concerns/site/access_points_spec.rb +87 -2
- data/spec/models/locomotive/concerns/site/locales_spec.rb +2 -3
- data/spec/models/locomotive/content_entry_spec.rb +22 -37
- data/spec/models/locomotive/page_spec.rb +11 -0
- data/spec/models/locomotive/site_spec.rb +0 -36
- data/spec/requests/site_spec.rb +28 -0
- data/spec/support/capybara.rb +27 -0
- data/spec/support/factories.rb +9 -0
- data/spec/support/features/session_helpers.rb +21 -0
- data/spec/support/locomotive.rb +0 -4
- data/spec/support/matchers.rb +0 -25
- data/vendor/assets/javascripts/locomotive/highlight.pack.js +1 -0
- data/vendor/assets/stylesheets/locomotive/highlightjs/default.css +155 -0
- data/vendor/assets/stylesheets/locomotive/highlightjs/github.css +123 -0
- metadata +179 -195
- data/app/assets/images/locomotive/background/body.png +0 -0
- data/app/assets/images/locomotive/form/error-arrow.png +0 -0
- data/app/assets/images/locomotive/form/input-sep.png +0 -0
- data/app/assets/images/locomotive/icons/start.png +0 -0
- data/app/assets/images/locomotive/list/empty.png +0 -0
- data/app/assets/images/locomotive/list/item-left.png +0 -0
- data/app/assets/images/locomotive/nocoffee.png +0 -0
- data/app/assets/images/locomotive/plugins/sites_picker_top_arrow.png +0 -0
- data/app/assets/images/locomotive/rails.png +0 -0
- data/app/assets/javascripts/locomotive/views/pages/index_view.js.coffee +0 -11
- data/app/cells/locomotive/content_locale_picker/show.html.haml +0 -7
- data/app/cells/locomotive/content_locale_picker_cell.rb +0 -21
- data/app/helpers/locomotive/installation_helper.rb +0 -9
- data/app/inputs/locomotive/locale_input.rb +0 -41
- data/app/inputs/locomotive/small_code_input.rb +0 -23
- data/app/models/locomotive/concerns/content_entry/notifications.rb +0 -33
- data/app/models/locomotive/concerns/content_type/item_template.rb +0 -49
- data/app/models/locomotive/concerns/page/parse.rb +0 -133
- data/app/presenters/locomotive/account_presenter.rb +0 -20
- data/app/presenters/locomotive/base_presenter.rb +0 -144
- data/app/presenters/locomotive/content_asset_presenter.rb +0 -51
- data/app/presenters/locomotive/content_entry_presenter.rb +0 -177
- data/app/presenters/locomotive/content_field_presenter.rb +0 -76
- data/app/presenters/locomotive/content_type_presenter.rb +0 -82
- data/app/presenters/locomotive/editable_control_presenter.rb +0 -19
- data/app/presenters/locomotive/editable_element_presenter.rb +0 -46
- data/app/presenters/locomotive/editable_file_presenter.rb +0 -36
- data/app/presenters/locomotive/editable_text_presenter.rb +0 -40
- data/app/presenters/locomotive/membership_presenter.rb +0 -35
- data/app/presenters/locomotive/page_presenter.rb +0 -81
- data/app/presenters/locomotive/site_presenter.rb +0 -40
- data/app/presenters/locomotive/snippet_presenter.rb +0 -22
- data/app/presenters/locomotive/theme_asset_presenter.rb +0 -61
- data/app/presenters/locomotive/translation_presenter.rb +0 -9
- data/app/views/locomotive/content_assets/edit_in_drawer.html.haml +0 -26
- data/app/views/locomotive/content_entries/form/_tabs.html.haml +0 -9
- data/app/views/locomotive/current_site/form/_tabs.html.haml +0 -14
- data/app/views/locomotive/dashboard/show.html.haml +0 -0
- data/app/views/locomotive/devise_mailer/reset_password_instructions.html.haml +0 -12
- data/app/views/locomotive/editable_elements/_edit.html.haml +0 -49
- data/app/views/locomotive/editable_elements/_edit_with_content_entry.html.haml +0 -21
- data/app/views/locomotive/editable_elements/index.html.haml +0 -8
- data/app/views/locomotive/errors/404.html.haml +0 -7
- data/app/views/locomotive/errors/500.html.haml +0 -7
- data/app/views/locomotive/errors/no_page.html.haml +0 -1
- data/app/views/locomotive/errors/no_site.html.haml +0 -1
- data/app/views/locomotive/layouts/application.html.haml +0 -42
- data/app/views/locomotive/layouts/error.html.haml +0 -1
- data/app/views/locomotive/layouts/not_logged_in.html.haml +0 -18
- data/app/views/locomotive/my_account/form/_tabs.html.haml +0 -7
- data/app/views/locomotive/pages/_editable_elements.html.haml +0 -64
- data/app/views/locomotive/pages/index.html.haml +0 -22
- data/app/views/locomotive/pages/show.html.haml +0 -2
- data/app/views/locomotive/shared/_footer.html.haml +0 -2
- data/app/views/locomotive/shared/_head.html.haml +0 -40
- data/app/views/locomotive/shared/_locale_picker_link.html.haml +0 -6
- data/app/views/locomotive/shared/header/_account_menu.html.haml +0 -5
- data/app/views/locomotive/shared/header/_brand.html.haml +0 -4
- data/app/views/locomotive/shared/rte/_toolbar.html.haml +0 -62
- data/app/views/locomotive/shared/sidebar/_content_types.html.haml +0 -15
- data/app/views/locomotive/shared/sidebar/_link.html.haml +0 -10
- data/app/views/locomotive/shared/sidebar/_page.html.haml +0 -33
- data/app/views/locomotive/shared/sidebar/_pages.html.haml +0 -11
- data/app/views/locomotive/translations/_form.html.haml +0 -12
- data/app/views/locomotive/translations/edit.html.haml +0 -15
- data/app/views/locomotive/translations/index.html.haml +0 -30
- data/app/views/locomotive/translations/new.html.haml +0 -12
- data/config/initializers/haml.rb +0 -2
- data/config/initializers/locomotive_loaded_first.rb +0 -19
- data/config/locales/formtastic.bg.yml +0 -113
- data/config/locales/formtastic.cs.yml +0 -125
- data/config/locales/formtastic.de.yml +0 -106
- data/config/locales/formtastic.es.yml +0 -84
- data/config/locales/formtastic.et.yml +0 -103
- data/config/locales/formtastic.fr.yml +0 -109
- data/config/locales/formtastic.it.yml +0 -99
- data/config/locales/formtastic.ja.yml +0 -103
- data/config/locales/formtastic.nb.yml +0 -103
- data/config/locales/formtastic.nl.yml +0 -85
- data/config/locales/formtastic.pl.yml +0 -105
- data/config/locales/formtastic.pt-BR.yml +0 -70
- data/config/locales/formtastic.pt.yml +0 -70
- data/config/locales/formtastic.ru.yml +0 -106
- data/config/locales/formtastic.sk.yml +0 -125
- data/config/locales/formtastic.sr.yml +0 -112
- data/config/locales/formtastic.zh-CN.yml +0 -112
- data/lib/locomotive/haml.rb +0 -1
- data/lib/locomotive/middlewares/page_editing.rb +0 -41
- data/spec/dummy/app/views/foo/index.html.haml +0 -1
- data/spec/dummy/config/initializers/haml.rb +0 -2
- data/spec/support/asset_host_stubs.rb +0 -17
- data/spec/support/controller.rb +0 -32
@@ -0,0 +1,42 @@
|
|
1
|
+
.alert.alert-info
|
2
|
+
| <a href="https://github.com/locomotivecms/wagon"><strong>Wagon</strong></a> is our tool to create, modify and deploy locomotive sites. See our <a href="http://doc.locomotivecms.com" />documentation site</a> for more information.
|
3
|
+
|
4
|
+
h3 Install Wagon
|
5
|
+
|
6
|
+
.alert.alert-warning
|
7
|
+
| You need to have <strong>Ruby</strong> installed. For more explanation, check out our <a href="http://doc.locomotivecms.com" />documentation</a>.
|
8
|
+
|
9
|
+
pre
|
10
|
+
code.bash
|
11
|
+
| gem install locomotivecms_wagon --pre
|
12
|
+
|
13
|
+
h3 Get the source code of your site locally
|
14
|
+
|
15
|
+
pre
|
16
|
+
code.bash
|
17
|
+
= developer_documentation_wagon_clone_string
|
18
|
+
|
19
|
+
p
|
20
|
+
| If you already have a Wagon site, just add the following code inside your <strong>config/deploy.yml</strong> file.
|
21
|
+
|
22
|
+
pre
|
23
|
+
code.yaml
|
24
|
+
| production:<br/>
|
25
|
+
| host: #{request.scheme}://#{request.host_with_port}<br/>
|
26
|
+
| handle: #{current_site.handle}<br/>
|
27
|
+
| email: #{current_locomotive_account.email}<br/>
|
28
|
+
| api_key: #{current_locomotive_account.api_key}
|
29
|
+
|
30
|
+
h3 Run your site locally
|
31
|
+
|
32
|
+
pre
|
33
|
+
code.bash
|
34
|
+
| cd #{current_site_name_with_underscores}</br>wagon serve
|
35
|
+
|
36
|
+
p Now, update any files of your site and see the results locally.
|
37
|
+
|
38
|
+
h3 Deploy your modifications
|
39
|
+
|
40
|
+
pre
|
41
|
+
code.bash
|
42
|
+
| wagon push production
|
@@ -0,0 +1,11 @@
|
|
1
|
+
= title t('.title')
|
2
|
+
|
3
|
+
ul.nav.nav-tabs role='tablist'
|
4
|
+
li.active= link_to t('.wagon'), '#wagon', role: 'tab', data: { toggle: 'tab' }
|
5
|
+
li= link_to t('.api'), '#api', role: 'tab', data: { toggle: 'tab' }
|
6
|
+
|
7
|
+
.tab-content
|
8
|
+
- %w(wagon api).each_with_index do |name, index|
|
9
|
+
.tab-pane id=name class=(index == 0 ? 'active' : '')
|
10
|
+
.documentation
|
11
|
+
= render "locomotive/developers_documentation/#{name}"
|
@@ -0,0 +1,12 @@
|
|
1
|
+
p
|
2
|
+
== t('locomotive.devise_mailer.common.hello')
|
3
|
+
= @resource.email
|
4
|
+
| \!
|
5
|
+
p
|
6
|
+
== t('.reset_password_instruction')
|
7
|
+
p
|
8
|
+
= link_to t('.change_my_password'), edit_locomotive_account_password_url(reset_password_token: @resource.reset_password_token)
|
9
|
+
p
|
10
|
+
== t('.wrong_request_instruction')
|
11
|
+
p
|
12
|
+
== t('.unchange_password_message')
|
@@ -0,0 +1,52 @@
|
|
1
|
+
= locomotive_form_for @page, url: update_all_editable_elements_path(current_site, @page), remote: true, html: { multipart: true }, defaults: { placeholder: false, hint: false } do |f|
|
2
|
+
|
3
|
+
.container-fluid.main role='main'
|
4
|
+
.row.header-row
|
5
|
+
.col-md-12
|
6
|
+
h1= truncate(@content_entry.try(:_label) || @page.title, length: 50)
|
7
|
+
|
8
|
+
.row.info-row
|
9
|
+
.col-sm-8.col-xs-8
|
10
|
+
span.fullpath= nice_editable_elements_path
|
11
|
+
|
12
|
+
|
|
13
|
+
| —
|
14
|
+
|
|
15
|
+
|
16
|
+
= link_to edit_page_path(current_site, @page, _location: request.fullpath) do
|
17
|
+
i.fa.fa-gear
|
18
|
+
|
|
19
|
+
= t('.settings_link')
|
20
|
+
|
21
|
+
.col-sm-4.col-xs-4
|
22
|
+
.text-right
|
23
|
+
- if current_site.localized?
|
24
|
+
= locale_picker_link
|
25
|
+
- unless @editable_elements.empty?
|
26
|
+
|
|
27
|
+
= f.action
|
28
|
+
|
29
|
+
- unless @editable_elements.empty?
|
30
|
+
.col-sm-12.col-xs-12
|
31
|
+
fieldset.inputs
|
32
|
+
.form-group.input.select.optional.inline
|
33
|
+
label.select.optional.control-label for='page_block'
|
34
|
+
= t(:region, scope: 'simple_form.labels.locomotive.editable_element')
|
35
|
+
span.form-wrapper
|
36
|
+
= select_tag 'block', options_for_page_blocks(@blocks)
|
37
|
+
|
38
|
+
.scrollable class="#{'no-editable-elements' if @editable_elements.empty?}"
|
39
|
+
.container-fluid
|
40
|
+
.row
|
41
|
+
.col-md-12
|
42
|
+
- if @content_entry
|
43
|
+
fieldset.inputs
|
44
|
+
.form-group.input.link.optional
|
45
|
+
label.link.control-label.optional
|
46
|
+
span.label.label-primary= @content_entry.content_type.name
|
47
|
+
| /
|
48
|
+
= @content_entry._label
|
49
|
+
span.form_wrapper
|
50
|
+
= link_to t(:edit, scope: 'locomotive.editable_elements.form.model.buttons'), edit_content_entry_path(current_site, @content_entry.content_type.slug, @content_entry, _location: request.fullpath), class: 'btn btn-primary btn-sm'
|
51
|
+
|
52
|
+
= render 'form', f: f
|
@@ -1,14 +1,14 @@
|
|
1
1
|
.editable-elements
|
2
2
|
|
3
|
-
-
|
3
|
+
- each_editable_element(@blocks, @editable_elements_by_block) do |page, editable_element, index|
|
4
4
|
|
5
5
|
= f.inputs :editable_element do
|
6
6
|
|
7
7
|
= f.simple_fields_for :editable_elements, editable_element, child_index: index do |g|
|
8
8
|
|
9
|
-
= g.hidden_field :
|
9
|
+
= g.hidden_field :_id
|
10
10
|
|
11
|
-
= g.hidden_field :
|
11
|
+
= g.hidden_field :page_id
|
12
12
|
|
13
13
|
- case editable_element.type.to_sym
|
14
14
|
|
@@ -21,3 +21,12 @@
|
|
21
21
|
- when :editable_control
|
22
22
|
= g.input :content, editable_element_input_options(editable_element, index, as: :select, collection: editable_element.options.map { |attributes| [attributes['text'], attributes['value']] })
|
23
23
|
|
24
|
+
- when :editable_model
|
25
|
+
fieldset.inputs
|
26
|
+
.form-group.input.link.optional data-block=editable_element.block
|
27
|
+
label.link.control-label.optional= editable_element_label(editable_element)
|
28
|
+
- if editable_element.hint.present?
|
29
|
+
span class="help-inline"= editable_element.hint
|
30
|
+
span.form_wrapper
|
31
|
+
= link_to t('.model.buttons.list'), content_entries_path(current_site, editable_element.content_type.slug), class: 'btn btn-primary btn-sm'
|
32
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
= render 'edit'
|
2
|
+
|
3
|
+
- content_for :preview do
|
4
|
+
.embed-responsive.embed-page
|
5
|
+
iframe.embed-responsive-item src=(preview_path(current_site) + '/' + (params[:preview_path] || current_site.localized_page_fullpath(@page, current_content_locale))) data-redirection-error=t('.redirection_error')
|
6
|
+
|
7
|
+
|
8
|
+
|
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
= f.action 'hide'
|
8
8
|
|
9
|
-
|
9
|
+
ul.nav.nav-tabs role='tablist'
|
10
10
|
= form_nav_tab :content, true do
|
11
11
|
= link_to t('simple_form.titles.locomotive.content'), '#content', role: 'tab', data: { toggle: 'tab' }
|
12
12
|
|
@@ -19,10 +19,11 @@
|
|
19
19
|
|
20
20
|
.row
|
21
21
|
.col-md-12
|
22
|
-
|
22
|
+
fieldset.inputs.info-row
|
23
23
|
.form-group.input.select.optional.inline
|
24
|
-
|
25
|
-
|
24
|
+
label.select.optional.control-label for='page_block'
|
25
|
+
= t(:region, scope: 'simple_form.labels.locomotive.editable_element')
|
26
|
+
span.form-wrapper
|
26
27
|
= select_tag 'block', options_for_page_blocks(@editable_elements_by_block)
|
27
28
|
|
28
29
|
.col-md-12
|
@@ -0,0 +1,42 @@
|
|
1
|
+
doctype XML
|
2
|
+
doctype html
|
3
|
+
html xmlns='http://www.w3.org/1999/xhtml'
|
4
|
+
head
|
5
|
+
= render 'locomotive/shared/head'
|
6
|
+
body class=body_class
|
7
|
+
|
8
|
+
- # HEADER: brand + current site + account
|
9
|
+
= render 'locomotive/shared/header'
|
10
|
+
|
11
|
+
- # WRAPPER
|
12
|
+
.wrapper
|
13
|
+
nav.sidebar
|
14
|
+
.scrollable
|
15
|
+
= render 'locomotive/shared/sidebar'
|
16
|
+
|
17
|
+
.content
|
18
|
+
.scrollable
|
19
|
+
.container-fluid.main role='main'
|
20
|
+
- if title
|
21
|
+
.row
|
22
|
+
.col-md-8.col-xs-9
|
23
|
+
h1== title
|
24
|
+
|
25
|
+
.col-md-4.col-xs-3.actions
|
26
|
+
= yield :actions
|
27
|
+
|
28
|
+
= yield
|
29
|
+
|
30
|
+
section.drawer
|
31
|
+
.close-button
|
32
|
+
i.fa.fa-times
|
33
|
+
.inner
|
34
|
+
.scrollable
|
35
|
+
.container-fluid
|
36
|
+
.row
|
37
|
+
.col-md-12
|
38
|
+
h1 TEST
|
39
|
+
p
|
40
|
+
| Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc placerat tincidunt massa, vitae mollis dui volutpat eu. Sed ullamcorper id turpis vel pulvinar. Nullam dignissim purus vel libero sodales finibus. Donec ut pellentesque velit, nec semper felis. Curabitur lacinia egestas condimentum. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nullam non feugiat erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla enim nibh, consectetur vel mollis eu, venenatis eget elit. Nulla eget massa tincidunt, scelerisque mi non, lacinia ante. In scelerisque, nisi ut ullamcorper aliquet, nulla quam faucibus est, a congue odio enim ac nulla. Cras dictum cursus ex vel scelerisque. Vestibulum elementum auctor tellus vitae imperdiet.
|
41
|
+
|
42
|
+
= yield :foot
|
@@ -0,0 +1,24 @@
|
|
1
|
+
doctype XML
|
2
|
+
doctype html
|
3
|
+
html xmlns='http://www.w3.org/1999/xhtml'
|
4
|
+
head
|
5
|
+
title== error_title
|
6
|
+
meta name="viewport" content="width=device-width, initial-scale=1"
|
7
|
+
|
8
|
+
link rel="icon" type="image/png" href="#{asset_url('locomotive/favicon.png')}" sizes="32x32"
|
9
|
+
|
10
|
+
= stylesheet_link_tag 'locomotive/error', media: 'screen'
|
11
|
+
|
12
|
+
body
|
13
|
+
.wrapper.container-fluid
|
14
|
+
.main
|
15
|
+
.content
|
16
|
+
h1.text-center
|
17
|
+
= image_tag 'locomotive/logo.png'
|
18
|
+
|
|
19
|
+
== 'Locomotive'
|
20
|
+
small== error_title
|
21
|
+
|
22
|
+
= yield
|
23
|
+
|
24
|
+
|
@@ -1,30 +1,30 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
doctype XML
|
2
|
+
doctype html
|
3
|
+
html xmlns='http://www.w3.org/1999/xhtml'
|
4
|
+
head
|
5
5
|
= render 'locomotive/shared/head'
|
6
|
-
|
6
|
+
body class="live-editing sidebar-closed"
|
7
7
|
|
8
8
|
- # HEADER: brand + current site + account
|
9
9
|
= render 'locomotive/shared/header'
|
10
10
|
|
11
11
|
- # WRAPPER
|
12
12
|
.wrapper
|
13
|
-
|
13
|
+
section.preview
|
14
14
|
.scrollable
|
15
15
|
= yield :preview
|
16
16
|
|
17
17
|
.content
|
18
18
|
.close-button
|
19
|
-
|
19
|
+
i.fa.fa-chevron-left
|
20
20
|
.expand-button
|
21
|
-
|
21
|
+
i.fa.fa-chevron-right
|
22
22
|
.inner
|
23
23
|
= yield
|
24
24
|
|
25
|
-
|
25
|
+
section.drawer
|
26
26
|
.close-button
|
27
|
-
|
27
|
+
i.fa.fa-times
|
28
28
|
.inner
|
29
29
|
= yield :drawer
|
30
30
|
|
@@ -0,0 +1,26 @@
|
|
1
|
+
doctype XML
|
2
|
+
doctype html
|
3
|
+
html xmlns='http://www.w3.org/1999/xhtml' lang=I18n.locale
|
4
|
+
head
|
5
|
+
title= escape_once(strip_tags(title) || "#{Locomotive.config.name} — #{current_site.name}")
|
6
|
+
meta name="viewport" content="width=device-width, initial-scale=1"
|
7
|
+
|
8
|
+
link rel="icon" type="image/png" href="#{asset_url('locomotive/favicon.png')}" sizes="32x32"
|
9
|
+
|
10
|
+
= javascript_include_tag 'locomotive/not_logged_in'
|
11
|
+
= stylesheet_link_tag 'locomotive/not_logged_in', media: 'screen'
|
12
|
+
|
13
|
+
javascript:
|
14
|
+
window.flash_messages = #{flash_messages_to_json};
|
15
|
+
|
16
|
+
= yield :head
|
17
|
+
|
18
|
+
body class=[controller.controller_name, flash.empty? ? '' : 'with-flash'].join(' ')
|
19
|
+
.wrapper.container-fluid
|
20
|
+
.main
|
21
|
+
.content
|
22
|
+
h1
|
23
|
+
= image_tag 'locomotive/logo.png'
|
24
|
+
|
|
25
|
+
== title
|
26
|
+
= yield
|
@@ -1,11 +1,14 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
doctype XML
|
2
|
+
doctype html
|
3
|
+
html xmlns='http://www.w3.org/1999/xhtml'
|
4
|
+
head
|
5
5
|
= render 'locomotive/shared/head'
|
6
|
-
%body{ class: "#{body_class} without-site" }
|
7
6
|
|
8
|
-
|
7
|
+
link rel="icon" type="image/png" href="#{asset_url('locomotive/favicon.png')}" sizes="32x32"
|
8
|
+
|
9
|
+
body class="#{body_class} without-site"
|
10
|
+
|
11
|
+
nav.sidebar
|
9
12
|
.scrollable
|
10
13
|
= render 'locomotive/shared/sidebar_without_site'
|
11
14
|
|
File without changes
|
File without changes
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
= help t('.help', default: '')
|
5
5
|
|
6
|
-
= locomotive_form_for @account, url: my_account_path, html: { multipart: true } do |f|
|
6
|
+
= locomotive_form_for @account, url: my_account_path, html: { multipart: true }, defaults: { placeholder: false } do |f|
|
7
7
|
|
8
8
|
= hidden_field_tag :active_tab, ''
|
9
9
|
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,7 @@
|
|
1
|
+
ul.nav.nav-tabs role='tablist'
|
2
|
+
= form_nav_tab :main, true do
|
3
|
+
= link_to t('simple_form.titles.locomotive.account.information'), '#main', role: 'tab', data: { toggle: 'tab' }
|
4
|
+
= form_nav_tab :credentials do
|
5
|
+
= link_to t('simple_form.titles.locomotive.account.credentials'), '#credentials', role: 'tab', data: { toggle: 'tab' }
|
6
|
+
= form_nav_tab :api do
|
7
|
+
= link_to t('simple_form.titles.locomotive.account.api'), '#api', role: 'tab', data: { toggle: 'tab' }
|
data/app/views/locomotive/notifications/{new_content_entry.html.haml → new_content_entry.html.slim}
RENAMED
@@ -1,19 +1,19 @@
|
|
1
|
-
|
1
|
+
p= t('.title', name: @account.name, domain: @domain, date: I18n.l(Time.now.in_time_zone), locale: @account.locale).html_safe
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
3
|
+
p
|
4
|
+
b= t('.type', type: @type.name, locale: @account.locale)
|
5
|
+
br
|
6
|
+
i= @type.description
|
7
7
|
|
8
|
-
|
8
|
+
hr
|
9
9
|
|
10
|
-
|
10
|
+
ul
|
11
11
|
- @type.ordered_entries_custom_fields.each do |field|
|
12
12
|
- value = @entry.send(field.name)
|
13
|
-
|
14
|
-
|
15
|
-
-
|
16
|
-
|
13
|
+
li
|
14
|
+
strong= field.label
|
15
|
+
| -
|
16
|
+
i
|
17
17
|
- case field.type.to_s
|
18
18
|
- when 'file'
|
19
19
|
- url = value.guess_url
|