locomotivecms_steam 0.1.2.pre.beta → 1.0.0.pre.alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -0
- data/.travis.yml +8 -1
- data/Gemfile +17 -8
- data/Gemfile.lock +160 -113
- data/LICENSE +1 -1
- data/README.md +36 -15
- data/Rakefile +27 -1
- data/bin/steam.rb +97 -0
- data/config/locales/en.yml +2 -1
- data/config/locales/fr.yml +2 -1
- data/lib/locomotive/steam.rb +28 -19
- data/lib/locomotive/steam/adapters/concerns/key.rb +15 -0
- data/lib/locomotive/steam/adapters/filesystem.rb +124 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizer.rb +54 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/content_entry.rb +86 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/content_type.rb +21 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/page.rb +160 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/simple.rb +15 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/snippet.rb +33 -0
- data/lib/locomotive/steam/adapters/filesystem/simple_cache_store.rb +38 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loader.rb +47 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/content_entry.rb +87 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/content_type.rb +96 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/page.rb +145 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/site.rb +25 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/snippet.rb +66 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/theme_asset.rb +21 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/translation.rb +72 -0
- data/lib/locomotive/steam/adapters/memory.rb +55 -0
- data/lib/locomotive/steam/adapters/memory/condition.rb +103 -0
- data/lib/locomotive/steam/adapters/memory/dataset.rb +77 -0
- data/lib/locomotive/steam/adapters/memory/order.rb +60 -0
- data/lib/locomotive/steam/adapters/memory/query.rb +116 -0
- data/lib/locomotive/steam/adapters/mongodb.rb +83 -0
- data/lib/locomotive/steam/adapters/mongodb/dataset.rb +20 -0
- data/lib/locomotive/steam/adapters/mongodb/origin.rb +3 -0
- data/lib/locomotive/steam/adapters/mongodb/query.rb +82 -0
- data/lib/locomotive/steam/configuration.rb +106 -2
- data/lib/locomotive/steam/core_ext.rb +2 -1
- data/lib/locomotive/steam/core_ext/hash.rb +31 -19
- data/lib/locomotive/steam/core_ext/kernel.rb +14 -0
- data/lib/locomotive/steam/core_ext/string.rb +35 -6
- data/lib/locomotive/steam/decorators/i18n_decorator.rb +99 -0
- data/lib/locomotive/steam/decorators/template_decorator.rb +37 -0
- data/lib/locomotive/steam/entities/content_entry.rb +151 -0
- data/lib/locomotive/steam/entities/content_type.rb +44 -6
- data/lib/locomotive/steam/entities/content_type_field.rb +71 -0
- data/lib/locomotive/steam/entities/editable_element.rb +21 -0
- data/lib/locomotive/steam/entities/page.rb +48 -127
- data/lib/locomotive/steam/entities/site.rb +36 -27
- data/lib/locomotive/steam/entities/snippet.rb +20 -0
- data/lib/locomotive/steam/entities/theme_asset.rb +9 -0
- data/lib/locomotive/steam/entities/translation.rb +15 -0
- data/lib/locomotive/steam/initializers.rb +0 -4
- data/lib/locomotive/steam/initializers/dragonfly.rb +51 -11
- data/lib/locomotive/steam/initializers/i18n.rb +6 -3
- data/lib/locomotive/steam/initializers/sprockets.rb +4 -1
- data/lib/locomotive/steam/liquid.rb +4 -7
- data/lib/locomotive/steam/liquid/drops/base.rb +0 -1
- data/lib/locomotive/steam/liquid/drops/content_entry.rb +37 -16
- data/lib/locomotive/steam/liquid/drops/content_entry_collection.rb +77 -0
- data/lib/locomotive/steam/liquid/drops/content_types.rb +5 -102
- data/lib/locomotive/steam/liquid/drops/current_user.rb +23 -0
- data/lib/locomotive/steam/liquid/drops/i18n_base.rb +39 -0
- data/lib/locomotive/steam/liquid/drops/page.rb +77 -11
- data/lib/locomotive/steam/liquid/drops/session_proxy.rb +1 -1
- data/lib/locomotive/steam/liquid/drops/site.rb +14 -8
- data/lib/locomotive/steam/liquid/drops/upload_file.rb +23 -0
- data/lib/locomotive/steam/liquid/errors.rb +3 -9
- data/lib/locomotive/steam/liquid/filters/base.rb +62 -0
- data/lib/locomotive/steam/liquid/filters/date.rb +85 -61
- data/lib/locomotive/steam/liquid/filters/html.rb +30 -115
- data/lib/locomotive/steam/liquid/filters/misc.rb +6 -5
- data/lib/locomotive/steam/liquid/filters/pagination.rb +55 -0
- data/lib/locomotive/steam/liquid/filters/resize.rb +2 -3
- data/lib/locomotive/steam/liquid/filters/text.rb +15 -15
- data/lib/locomotive/steam/liquid/filters/translate.rb +5 -14
- data/lib/locomotive/steam/liquid/patches.rb +29 -23
- data/lib/locomotive/steam/liquid/tags/concerns/i18n_page.rb +36 -0
- data/lib/locomotive/steam/liquid/tags/concerns/path.rb +114 -0
- data/lib/locomotive/steam/liquid/tags/consume.rb +39 -43
- data/lib/locomotive/steam/liquid/tags/csrf.rb +21 -12
- data/lib/locomotive/steam/liquid/tags/editable.rb +1 -3
- data/lib/locomotive/steam/liquid/tags/editable/base.rb +54 -15
- data/lib/locomotive/steam/liquid/tags/editable/control.rb +17 -4
- data/lib/locomotive/steam/liquid/tags/editable/file.rb +34 -2
- data/lib/locomotive/steam/liquid/tags/editable/text.rb +54 -2
- data/lib/locomotive/steam/liquid/tags/extends.rb +45 -8
- data/lib/locomotive/steam/liquid/tags/fetch_page.rb +38 -0
- data/lib/locomotive/steam/liquid/tags/google_analytics.rb +25 -12
- data/lib/locomotive/steam/liquid/tags/hybrid.rb +24 -12
- data/lib/locomotive/steam/liquid/tags/inherited_block.rb +39 -0
- data/lib/locomotive/steam/liquid/tags/inline_editor.rb +14 -4
- data/lib/locomotive/steam/liquid/tags/link_to.rb +16 -27
- data/lib/locomotive/steam/liquid/tags/locale_switcher.rb +45 -56
- data/lib/locomotive/steam/liquid/tags/model_form.rb +72 -0
- data/lib/locomotive/steam/liquid/tags/nav.rb +65 -57
- data/lib/locomotive/steam/liquid/tags/paginate.rb +79 -47
- data/lib/locomotive/steam/liquid/tags/path_to.rb +8 -20
- data/lib/locomotive/steam/liquid/tags/seo.rb +8 -8
- data/lib/locomotive/steam/liquid/tags/session_assign.rb +6 -8
- data/lib/locomotive/steam/liquid/tags/snippet.rb +26 -42
- data/lib/locomotive/steam/liquid/tags/with_scope.rb +44 -26
- data/lib/locomotive/steam/middlewares.rb +7 -13
- data/lib/locomotive/steam/middlewares/default_env.rb +25 -0
- data/lib/locomotive/steam/middlewares/dynamic_assets.rb +34 -17
- data/lib/locomotive/steam/middlewares/entry_submission.rb +117 -79
- data/lib/locomotive/steam/middlewares/favicon.rb +5 -2
- data/lib/locomotive/steam/middlewares/helpers.rb +44 -0
- data/lib/locomotive/steam/middlewares/locale.rb +25 -17
- data/lib/locomotive/steam/middlewares/locale_redirection.rb +62 -0
- data/lib/locomotive/steam/middlewares/logging.rb +7 -3
- data/lib/locomotive/steam/middlewares/page.rb +17 -48
- data/lib/locomotive/steam/middlewares/path.rb +5 -8
- data/lib/locomotive/steam/middlewares/renderer.rb +65 -106
- data/lib/locomotive/steam/middlewares/robots.rb +20 -0
- data/lib/locomotive/steam/middlewares/site.rb +42 -0
- data/lib/locomotive/steam/middlewares/sitemap.rb +94 -0
- data/lib/locomotive/steam/middlewares/stack_proxy.rb +46 -0
- data/lib/locomotive/steam/middlewares/templatized_page.rb +40 -14
- data/lib/locomotive/steam/middlewares/threadsafe.rb +65 -0
- data/lib/locomotive/steam/middlewares/timezone.rb +10 -6
- data/lib/locomotive/steam/models.rb +12 -0
- data/lib/locomotive/steam/models/associations/belongs_to.rb +18 -0
- data/lib/locomotive/steam/models/associations/embedded.rb +43 -0
- data/lib/locomotive/steam/models/associations/has_many.rb +22 -0
- data/lib/locomotive/steam/models/associations/many_to_many.rb +22 -0
- data/lib/locomotive/steam/models/associations/referenced.rb +48 -0
- data/lib/locomotive/steam/models/concerns/validation.rb +58 -0
- data/lib/locomotive/steam/models/entity.rb +40 -0
- data/lib/locomotive/steam/models/i18n_field.rb +42 -0
- data/lib/locomotive/steam/models/mapper.rb +119 -0
- data/lib/locomotive/steam/models/pager.rb +53 -0
- data/lib/locomotive/steam/models/repository.rb +101 -0
- data/lib/locomotive/steam/models/scope.rb +31 -0
- data/lib/locomotive/steam/repositories.rb +51 -0
- data/lib/locomotive/steam/repositories/content_entry_repository.rb +183 -0
- data/lib/locomotive/steam/repositories/content_type_field_repository.rb +50 -0
- data/lib/locomotive/steam/repositories/content_type_field_select_option_repository.rb +23 -0
- data/lib/locomotive/steam/repositories/content_type_repository.rb +38 -0
- data/lib/locomotive/steam/repositories/editable_element_repository.rb +20 -0
- data/lib/locomotive/steam/repositories/page_repository.rb +86 -0
- data/lib/locomotive/steam/repositories/site_repository.rb +29 -0
- data/lib/locomotive/steam/repositories/snippet_repository.rb +19 -0
- data/lib/locomotive/steam/repositories/theme_asset_repository.rb +24 -0
- data/lib/locomotive/steam/repositories/translation_repository.rb +17 -0
- data/lib/locomotive/steam/server.rb +61 -40
- data/lib/locomotive/steam/services.rb +120 -1
- data/lib/locomotive/steam/services/asset_host_service.rb +51 -0
- data/lib/locomotive/steam/services/concerns/decorator.rb +35 -0
- data/lib/locomotive/steam/services/csrf_protection_service.rb +13 -0
- data/lib/locomotive/steam/services/editable_element_service.rb +19 -0
- data/lib/locomotive/steam/services/entry_submission_service.rb +91 -0
- data/lib/locomotive/steam/services/external_api_service.rb +55 -0
- data/lib/locomotive/steam/services/image_resizer_service.rb +49 -0
- data/lib/locomotive/steam/services/liquid_parser_service.rb +23 -0
- data/lib/locomotive/steam/services/markdown_service.rb +17 -0
- data/lib/locomotive/steam/services/no_cache_service.rb +17 -0
- data/lib/locomotive/steam/services/page_finder_service.rb +44 -0
- data/lib/locomotive/steam/services/parent_finder_service.rb +23 -0
- data/lib/locomotive/steam/services/site_finder_service.rb +13 -0
- data/lib/locomotive/steam/services/snippet_finder_service.rb +17 -0
- data/lib/locomotive/steam/services/textile_service.rb +17 -0
- data/lib/locomotive/steam/services/theme_asset_url_service.rb +43 -0
- data/lib/locomotive/steam/services/translator_service.rb +34 -0
- data/lib/locomotive/steam/services/url_builder_service.rb +40 -0
- data/lib/locomotive/steam/version.rb +1 -1
- data/locomotivecms_steam.gemspec +34 -28
- data/script/ci/before_build.sh +4 -0
- data/spec/fixtures/default/app/content_types/bands.yml +3 -1
- data/spec/fixtures/default/app/content_types/events.yml +2 -2
- data/spec/fixtures/default/app/views/pages/about_us.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/pages/archives.liquid.haml +6 -0
- data/spec/fixtures/default/app/views/pages/basic.liquid.haml +1 -0
- data/spec/fixtures/default/app/views/pages/contest.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/pages/events.fr.liquid +4 -0
- data/spec/fixtures/default/app/views/pages/events.liquid.haml +23 -1
- data/spec/fixtures/default/app/views/pages/filtered.liquid.haml +16 -5
- data/spec/fixtures/default/app/views/pages/grunge_bands.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/pages/index.liquid.haml +12 -11
- data/spec/fixtures/default/app/views/pages/music.liquid.haml +1 -1
- data/spec/fixtures/default/app/views/pages/songs.liquid +6 -0
- data/spec/fixtures/default/app/views/pages/songs/song-number-1.liquid.haml +5 -0
- data/spec/fixtures/default/app/views/pages/store.liquid +2 -1
- data/spec/fixtures/default/app/views/pages/tags.liquid +6 -0
- data/spec/fixtures/default/app/views/pages/unlisted_pages.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/snippets/song.fr.liquid.haml +1 -1
- data/spec/fixtures/default/config/deploy.yml +2 -2
- data/spec/fixtures/default/config/site.yml +7 -1
- data/spec/fixtures/default/data/bands.yml +3 -0
- data/spec/fixtures/mongodb/locomotive_accounts.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_accounts.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_content_assets.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_content_assets.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_content_entries.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_content_entries.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_content_types.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_content_types.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_pages.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_pages.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_sites.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_sites.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_snippets.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_snippets.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_theme_assets.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_theme_assets.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_translations.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_translations.metadata.json +1 -0
- data/spec/fixtures/mongodb/sessions.bson +0 -0
- data/spec/fixtures/mongodb/sessions.metadata.json +1 -0
- data/spec/fixtures/mongodb/system.indexes.bson +0 -0
- data/spec/integration/integration_helper.rb +2 -2
- data/spec/integration/liquid/tags/paginate_spec.rb +79 -0
- data/spec/integration/repositories/content_entry_repository_spec.rb +94 -0
- data/spec/integration/repositories/content_type_repository_spec.rb +69 -0
- data/spec/integration/repositories/page_repository_spec.rb +105 -0
- data/spec/integration/repositories/site_repository_spec.rb +45 -0
- data/spec/integration/repositories/snippet_repository_spec.rb +50 -0
- data/spec/integration/repositories/theme_asset_repository_spec.rb +48 -0
- data/spec/integration/repositories/translation_repository_spec.rb +50 -0
- data/spec/integration/server/assets_spec.rb +60 -0
- data/spec/integration/server/basic_spec.rb +100 -100
- data/spec/integration/server/contact_form_spec.rb +96 -25
- data/spec/integration/server/liquid_spec.rb +19 -41
- data/spec/integration/server/nav_spec.rb +49 -0
- data/spec/integration/server/session_spec.rb +33 -0
- data/spec/integration/server/sitemap_spec.rb +34 -0
- data/spec/integration/server/with_scope_spec.rb +28 -2
- data/spec/integration/services/external_api_service_spec.rb +20 -0
- data/spec/locales/locales_spec.rb +7 -7
- data/spec/spec_helper.rb +27 -13
- data/spec/support.rb +5 -1
- data/spec/support/cache_store.rb +3 -0
- data/spec/support/helpers.rb +20 -23
- data/spec/support/liquid.rb +29 -0
- data/spec/support/pry.rb +4 -0
- data/spec/support/time.rb +3 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/content_entry_spec.rb +50 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/content_type_spec.rb +25 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/page_spec.rb +25 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/site_spec.rb +19 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/snippet_spec.rb +26 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/translation_spec.rb +25 -0
- data/spec/unit/adapters/filesystem_adapter_spec.rb +53 -0
- data/spec/unit/adapters/memory/condition_spec.rb +125 -0
- data/spec/unit/adapters/memory/dataset_spec.rb +73 -0
- data/spec/unit/adapters/memory/order_spec.rb +67 -0
- data/spec/unit/adapters/memory/query_spec.rb +85 -0
- data/spec/unit/adapters/memory_adapter_spec.rb +36 -0
- data/spec/unit/adapters/mongodb/query_spec.rb +68 -0
- data/spec/unit/adapters/mongodb_adapter_spec.rb +17 -0
- data/spec/unit/configuration_spec.rb +29 -0
- data/spec/unit/core_ext/string_spec.rb +44 -0
- data/spec/unit/decorators/i18n_decorator_spec.rb +80 -0
- data/spec/unit/entities/content_entry_spec.rb +159 -0
- data/spec/unit/entities/content_type_field_spec.rb +67 -0
- data/spec/unit/entities/content_type_spec.rb +59 -0
- data/spec/unit/entities/page_spec.rb +40 -34
- data/spec/unit/entities/site_spec.rb +56 -5
- data/spec/unit/initializers/dragonfly_spec.rb +31 -0
- data/spec/unit/liquid/drops/content_entry_collection_spec.rb +81 -0
- data/spec/unit/liquid/drops/content_entry_spec.rb +99 -0
- data/spec/unit/liquid/drops/content_types_spec.rb +25 -0
- data/spec/unit/liquid/drops/current_user_spec.rb +45 -0
- data/spec/unit/liquid/drops/page_spec.rb +134 -0
- data/spec/unit/liquid/drops/session_proxy_spec.rb +13 -0
- data/spec/unit/liquid/drops/site_spec.rb +49 -0
- data/spec/unit/liquid/filters/date_spec.rb +160 -0
- data/spec/unit/liquid/filters/html_spec.rb +263 -0
- data/spec/unit/liquid/filters/misc_spec.rb +108 -0
- data/spec/unit/liquid/filters/pagination_spec.rb +42 -0
- data/spec/unit/liquid/filters/resize_spec.rb +36 -0
- data/spec/unit/liquid/filters/text_spec.rb +56 -0
- data/spec/unit/liquid/filters/translate_spec.rb +33 -0
- data/spec/unit/liquid/patches_spec.rb +50 -0
- data/spec/unit/liquid/tags/consume_spec.rb +87 -0
- data/spec/unit/liquid/tags/csrf_spec.rb +47 -0
- data/spec/unit/liquid/tags/editable/control_spec.rb +109 -0
- data/spec/unit/liquid/tags/editable/file_spec.rb +116 -0
- data/spec/unit/liquid/tags/editable/text_spec.rb +139 -0
- data/spec/unit/liquid/tags/extends_spec.rb +38 -0
- data/spec/unit/liquid/tags/fetch_page_spec.rb +39 -0
- data/spec/unit/liquid/tags/google_analytics_spec.rb +16 -0
- data/spec/unit/liquid/tags/inherited_block_spec.rb +33 -0
- data/spec/unit/liquid/tags/link_to_spec.rb +112 -0
- data/spec/unit/liquid/tags/locale_switcher_spec.rb +58 -0
- data/spec/unit/liquid/tags/model_form_spec.rb +35 -0
- data/spec/unit/liquid/tags/nav_spec.rb +184 -111
- data/spec/unit/liquid/tags/paginate_spec.rb +131 -0
- data/spec/unit/liquid/tags/path_to_spec.rb +100 -0
- data/spec/unit/liquid/tags/seo_spec.rb +85 -0
- data/spec/unit/liquid/tags/session_assign_spec.rb +51 -0
- data/spec/unit/liquid/tags/snippet_spec.rb +42 -0
- data/spec/unit/liquid/tags/with_scope_spec.rb +66 -0
- data/spec/unit/middlewares/dynamic_assets_spec.rb +25 -0
- data/spec/unit/middlewares/locale_redirection_spec.rb +105 -0
- data/spec/unit/middlewares/renderer_spec.rb +29 -0
- data/spec/unit/middlewares/stack_proxy_spec.rb +67 -0
- data/spec/unit/models/mapper_spec.rb +75 -0
- data/spec/unit/models/pager_spec.rb +82 -0
- data/spec/unit/models/repository_spec.rb +46 -0
- data/spec/unit/models/scope_spec.rb +27 -0
- data/spec/unit/repositories/content_entry_repository_spec.rb +347 -0
- data/spec/unit/repositories/content_type_repository_spec.rb +126 -0
- data/spec/unit/repositories/page_repository_spec.rb +365 -0
- data/spec/unit/repositories/site_repository_spec.rb +41 -0
- data/spec/unit/repositories/snippet_repository_spec.rb +37 -0
- data/spec/unit/repositories/theme_asset_repository_spec.rb +35 -0
- data/spec/unit/repositories/translation_repository_spec.rb +34 -0
- data/spec/unit/services/asset_host_service_spec.rb +79 -0
- data/spec/unit/services/entry_submission_service_spec.rb +143 -0
- data/spec/unit/services/external_api_service_spec.rb +80 -0
- data/spec/unit/services/image_resizer_service_spec.rb +75 -0
- data/spec/unit/services/markdown_service_spec.rb +36 -0
- data/spec/unit/services/parent_finder_service_spec.rb +41 -0
- data/spec/unit/services/textile_service_spec.rb +34 -0
- data/spec/unit/services/translator_service_spec.rb +65 -0
- data/spec/unit/services/url_builder_service_spec.rb +48 -0
- data/spec/unit/services_spec.rb +25 -0
- metadata +462 -119
- data/example/server.rb +0 -31
- data/lib/locomotive/steam/decorators.rb +0 -1
- data/lib/locomotive/steam/decorators/page_decorator.rb +0 -50
- data/lib/locomotive/steam/exceptions.rb +0 -62
- data/lib/locomotive/steam/liquid/scopeable.rb +0 -149
- data/lib/locomotive/steam/liquid/tags/editable/long_text.rb +0 -15
- data/lib/locomotive/steam/liquid/tags/editable/short_text.rb +0 -20
- data/lib/locomotive/steam/liquid/tags/path_helper.rb +0 -98
- data/lib/locomotive/steam/loaders/yml/pages_loader.rb +0 -193
- data/lib/locomotive/steam/loaders/yml/site_loader.rb +0 -49
- data/lib/locomotive/steam/loaders/yml/utils/localized_tree.rb +0 -33
- data/lib/locomotive/steam/loaders/yml/utils/yaml_front_matters_template.rb +0 -66
- data/lib/locomotive/steam/loaders/yml_loader.rb +0 -33
- data/lib/locomotive/steam/mapper.rb +0 -86
- data/lib/locomotive/steam/middlewares/base.rb +0 -65
- data/lib/locomotive/steam/middlewares/stack.rb +0 -66
- data/lib/locomotive/steam/middlewares/static_assets.rb +0 -25
- data/lib/locomotive/steam/monkey_patches.rb +0 -3
- data/lib/locomotive/steam/monkey_patches/haml.rb +0 -17
- data/lib/locomotive/steam/repositories/content_types_repository.rb +0 -14
- data/lib/locomotive/steam/repositories/pages_repository.rb +0 -23
- data/lib/locomotive/steam/repositories/sites_repository.rb +0 -16
- data/lib/locomotive/steam/services/dragonfly.rb +0 -49
- data/lib/locomotive/steam/services/external_api.rb +0 -47
- data/lib/locomotive/steam/services/markdown.rb +0 -20
- data/lib/locomotive/steam/standalone_server.rb +0 -30
- data/spec/unit/decorators/page_decorator_spec.rb +0 -55
- data/spec/unit/loaders/pages_loader_spec.rb +0 -42
- data/spec/unit/loaders/site_loader_spec.rb +0 -21
- data/spec/unit/loaders/utils/localized_tree_spec.rb +0 -33
- data/spec/unit/loaders/utils/yaml_front_matters_template_spec.rb +0 -39
- data/spec/unit/middlewares/base_spec.rb +0 -20
- data/spec/unit/middlewares/page_spec.rb +0 -51
- data/spec/unit/repositories/pages_spec.rb +0 -11
@@ -2,26 +2,38 @@ module Locomotive
|
|
2
2
|
module Steam
|
3
3
|
module Liquid
|
4
4
|
module Tags
|
5
|
+
|
5
6
|
class Hybrid < ::Liquid::Block
|
7
|
+
|
8
|
+
def render_as_block?
|
9
|
+
@render_as_block
|
10
|
+
end
|
11
|
+
|
6
12
|
def parse(tokens)
|
7
|
-
|
13
|
+
if @render_as_block = find_block_delimiter?(tokens)
|
14
|
+
super
|
15
|
+
else
|
16
|
+
@body = nil
|
17
|
+
@blank = false
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def find_block_delimiter?(tokens)
|
8
22
|
tokens.each do |token|
|
9
|
-
next
|
10
|
-
if token
|
11
|
-
if
|
12
|
-
|
13
|
-
|
14
|
-
return
|
15
|
-
elsif $1 == block_name
|
16
|
-
nesting += 1
|
17
|
-
elsif $1 == block_delimiter
|
18
|
-
nesting -= 1
|
23
|
+
next if token.empty?
|
24
|
+
if token.start_with?(::Liquid::BlockBody::TAGSTART)
|
25
|
+
if token =~ ::Liquid::BlockBody::FullToken
|
26
|
+
return false if $1 == @tag_name
|
27
|
+
return true if $1 == block_delimiter
|
19
28
|
end
|
20
29
|
end
|
21
30
|
end
|
31
|
+
false
|
22
32
|
end
|
33
|
+
|
23
34
|
end
|
35
|
+
|
24
36
|
end
|
25
37
|
end
|
26
38
|
end
|
27
|
-
end
|
39
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
module Locomotive
|
2
|
+
module Steam
|
3
|
+
module Liquid
|
4
|
+
module Tags
|
5
|
+
class InheritedBlock < ::Liquid::InheritedBlock
|
6
|
+
|
7
|
+
def parse(tokens)
|
8
|
+
super.tap do
|
9
|
+
if listener = options[:events_listener]
|
10
|
+
listener.emit(:inherited_block, page: options[:page], name: @name, found_super: self.contains_super?(nodelist))
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
protected
|
16
|
+
|
17
|
+
def contains_super?(nodes)
|
18
|
+
nodes.any? do |node|
|
19
|
+
if is_node_block_super?(node)
|
20
|
+
true
|
21
|
+
elsif node.respond_to?(:nodelist) && !node.nodelist.nil? && !node.is_a?(Locomotive::Steam::Liquid::Tags::InheritedBlock)
|
22
|
+
contains_super?(node.nodelist)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
def is_node_block_super?(node)
|
28
|
+
return unless node.is_a?(::Liquid::Variable)
|
29
|
+
|
30
|
+
node.raw.strip == 'block.super'
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
34
|
+
|
35
|
+
::Liquid::Template.register_tag('block'.freeze, InheritedBlock)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -2,15 +2,25 @@ module Locomotive
|
|
2
2
|
module Steam
|
3
3
|
module Liquid
|
4
4
|
module Tags
|
5
|
-
class InlineEditor < ::Liquid::Tag
|
6
5
|
|
7
|
-
|
6
|
+
# Add custom CSS and JS to let the logged in users
|
7
|
+
# edit their page directly from the page it self.
|
8
|
+
#
|
9
|
+
# @deprecated
|
10
|
+
#
|
11
|
+
class InlineEditor < Solid::Tag
|
12
|
+
|
13
|
+
tag_name :inline_editor
|
14
|
+
|
15
|
+
def display
|
16
|
+
Locomotive::Common::Logger.warn %(The inline_editor liquid tag is no more used.).yellow
|
8
17
|
''
|
9
18
|
end
|
19
|
+
|
10
20
|
end
|
11
21
|
|
12
|
-
::Liquid::Template.register_tag('inline_editor', InlineEditor)
|
13
22
|
end
|
14
23
|
end
|
15
24
|
end
|
16
|
-
end
|
25
|
+
end
|
26
|
+
|
@@ -4,46 +4,35 @@ module Locomotive
|
|
4
4
|
module Tags
|
5
5
|
class LinkTo < Hybrid
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
include PathHelper
|
10
|
-
|
11
|
-
def initialize(tag_name, markup, tokens, options)
|
12
|
-
if markup =~ Syntax
|
13
|
-
@handle = $1
|
14
|
-
@_options = {}
|
15
|
-
markup.scan(::Liquid::TagAttributes) do |key, value|
|
16
|
-
@_options[key] = value
|
17
|
-
end
|
18
|
-
else
|
19
|
-
raise ::Liquid::SyntaxError.new(options[:locale].t("errors.syntax.link_to"), options[:line])
|
20
|
-
end
|
21
|
-
|
22
|
-
super
|
23
|
-
end
|
7
|
+
include Concerns::I18nPage
|
8
|
+
include Concerns::Path
|
24
9
|
|
25
10
|
def render(context)
|
26
11
|
render_path(context) do |page, path|
|
27
12
|
label = label_from_page(page)
|
28
13
|
|
29
|
-
if
|
30
|
-
context.
|
31
|
-
|
14
|
+
if render_as_block?
|
15
|
+
context.stack do
|
16
|
+
context.scopes.last['target'] = page
|
17
|
+
label = super.html_safe
|
18
|
+
end
|
32
19
|
end
|
33
20
|
|
34
21
|
%{<a href="#{path}">#{label}</a>}
|
35
22
|
end
|
36
23
|
end
|
37
24
|
|
25
|
+
def wrong_syntax!
|
26
|
+
raise SyntaxError.new("Syntax Error in 'link_to' - Valid syntax: link_to page_handle, locale es (locale is optional)")
|
27
|
+
end
|
28
|
+
|
38
29
|
protected
|
39
30
|
|
40
31
|
def label_from_page(page)
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
page.title
|
46
|
-
end
|
32
|
+
if page.templatized?
|
33
|
+
page.send(:_source).content_entry._label
|
34
|
+
else
|
35
|
+
page.title
|
47
36
|
end
|
48
37
|
end
|
49
38
|
|
@@ -53,4 +42,4 @@ module Locomotive
|
|
53
42
|
end
|
54
43
|
end
|
55
44
|
end
|
56
|
-
end
|
45
|
+
end
|
@@ -2,6 +2,7 @@ module Locomotive
|
|
2
2
|
module Steam
|
3
3
|
module Liquid
|
4
4
|
module Tags
|
5
|
+
|
5
6
|
# Display the links to change the locale of the current page
|
6
7
|
#
|
7
8
|
# Usage:
|
@@ -18,89 +19,77 @@ module Locomotive
|
|
18
19
|
# - "iso" is the default choice for label
|
19
20
|
# - " | " is the default separating code
|
20
21
|
#
|
21
|
-
class LocaleSwitcher < ::Liquid::Tag
|
22
|
-
|
23
|
-
Syntax = /(#{::Liquid::Expression}+)?/
|
24
22
|
|
25
|
-
|
26
|
-
@_options = { label: 'iso', sep: ' | ' }
|
23
|
+
class LocaleSwitcher < Solid::Tag
|
27
24
|
|
28
|
-
|
29
|
-
markup.scan(::Liquid::TagAttributes) { |key, value| @_options[key.to_sym] = value.gsub(/"|'/, '') }
|
25
|
+
include Concerns::I18nPage
|
30
26
|
|
31
|
-
|
32
|
-
else
|
33
|
-
raise ::Liquid::SyntaxError.new(options[:locale].t("errors.syntax.locale_switcher"), options[:line])
|
34
|
-
end
|
27
|
+
tag_name :locale_switcher
|
35
28
|
|
36
|
-
|
29
|
+
def display(*values)
|
30
|
+
@options = { label: 'iso', sep: ' | ' }.merge(values.first || {})
|
31
|
+
%{<div id="locale-switcher">#{build_site_locales}</div>}
|
37
32
|
end
|
38
33
|
|
39
|
-
|
40
|
-
@site, @page = context.registers[:site], context.registers[:page]
|
41
|
-
@default_locale = context.registers[:mounting_point].default_locale
|
42
|
-
|
43
|
-
output = %(<div id="locale-switcher">)
|
44
|
-
|
45
|
-
output += @site.locales.collect do |locale|
|
46
|
-
Locomotive::Mounter.with_locale(locale) do
|
47
|
-
fullpath = localized_fullpath(locale)
|
48
|
-
|
49
|
-
if @page.templatized?
|
50
|
-
permalink = context['entry']._permalink
|
51
|
-
|
52
|
-
if permalink
|
53
|
-
fullpath.gsub!('*', permalink)
|
54
|
-
else
|
55
|
-
fullpath = '404'
|
56
|
-
end
|
57
|
-
end
|
34
|
+
private
|
58
35
|
|
59
|
-
|
36
|
+
def build_site_locales
|
37
|
+
site.locales.map do |locale|
|
38
|
+
change_page_locale(locale, page) do
|
39
|
+
css = link_class(locale)
|
40
|
+
path = link_path(locale)
|
60
41
|
|
61
|
-
%(<a href="
|
42
|
+
%(<a href="#{path}" class="#{css}">#{link_label(locale)}</a>)
|
62
43
|
end
|
63
|
-
end.join(@
|
64
|
-
|
65
|
-
output += %(</div>)
|
44
|
+
end.join(@options[:sep])
|
66
45
|
end
|
67
46
|
|
68
|
-
|
69
|
-
|
70
|
-
def link_class(locale, current_locale)
|
47
|
+
def link_class(locale)
|
71
48
|
css = [locale]
|
72
|
-
css << 'current' if locale.
|
49
|
+
css << 'current' if locale.to_sym == current_locale.to_sym
|
73
50
|
css.join(' ')
|
74
51
|
end
|
75
52
|
|
53
|
+
def link_path(locale)
|
54
|
+
url_builder.url_for(page.send(:_source), locale)
|
55
|
+
end
|
56
|
+
|
76
57
|
def link_label(locale)
|
77
|
-
case @
|
78
|
-
when '
|
79
|
-
when '
|
80
|
-
when 'title' then @page.title # FIXME: this returns nil if the page has not been translated in the locale
|
58
|
+
case @options[:label]
|
59
|
+
when 'locale' then I18n.t("locomotive.locales.#{locale}")
|
60
|
+
when 'title' then page_title
|
81
61
|
else
|
82
62
|
locale
|
83
63
|
end
|
84
64
|
end
|
85
65
|
|
86
|
-
def
|
87
|
-
|
88
|
-
|
89
|
-
fullpath = @page.safe_fullpath || @page.fullpath_or_default
|
90
|
-
|
91
|
-
if locale.to_s == @default_locale.to_s # no need to specify the locale
|
92
|
-
@page.index? ? '' : fullpath
|
93
|
-
elsif @page.index? # avoid /en/index or /fr/index, prefer /en or /fr instead
|
94
|
-
locale
|
66
|
+
def page_title
|
67
|
+
if page.templatized?
|
68
|
+
page.send(:_source).content_entry._label
|
95
69
|
else
|
96
|
-
|
70
|
+
page.title
|
97
71
|
end
|
98
72
|
end
|
99
73
|
|
74
|
+
def site
|
75
|
+
@site ||= current_context.registers[:site]
|
76
|
+
end
|
77
|
+
|
78
|
+
def page
|
79
|
+
@page ||= current_context['page']
|
80
|
+
end
|
81
|
+
|
82
|
+
def url_builder
|
83
|
+
current_context.registers[:services].url_builder
|
84
|
+
end
|
85
|
+
|
86
|
+
def current_locale
|
87
|
+
@current_locale ||= current_context.registers[:locale]
|
88
|
+
end
|
89
|
+
|
100
90
|
end
|
101
91
|
|
102
|
-
::Liquid::Template.register_tag('locale_switcher', LocaleSwitcher)
|
103
92
|
end
|
104
93
|
end
|
105
94
|
end
|
106
|
-
end
|
95
|
+
end
|
@@ -0,0 +1,72 @@
|
|
1
|
+
module Locomotive
|
2
|
+
module Steam
|
3
|
+
module Liquid
|
4
|
+
module Tags
|
5
|
+
|
6
|
+
# Display the form html tag with the appropriate hidden fields in order to create
|
7
|
+
# a content entry from a public site.
|
8
|
+
# It handles callbacks, csrf and target url out of the box.
|
9
|
+
#
|
10
|
+
# Usage:
|
11
|
+
#
|
12
|
+
# {% model_form 'newsletter_addresses' %}
|
13
|
+
# <input type='text' name='content[email]' />
|
14
|
+
# <input type='submit' value='Add' />
|
15
|
+
# {% endform_form %}
|
16
|
+
#
|
17
|
+
# {% model_form 'newsletter_addresses', class: 'a-css-class', success: 'http://www.google.fr', error: '/error' %}...{% endform_form %}
|
18
|
+
#
|
19
|
+
class ModelForm < Solid::Block
|
20
|
+
|
21
|
+
tag_name :model_form
|
22
|
+
|
23
|
+
def display(*options, &block)
|
24
|
+
name = options.shift
|
25
|
+
options = options.shift || {}
|
26
|
+
|
27
|
+
form_attributes = { method: 'POST', enctype: 'multipart/form-data' }.merge(options.slice(:id, :class))
|
28
|
+
|
29
|
+
html_content_tag :form,
|
30
|
+
content_type_html(name) + csrf_html + callbacks_html(options) + yield,
|
31
|
+
form_attributes
|
32
|
+
end
|
33
|
+
|
34
|
+
def content_type_html(name)
|
35
|
+
html_tag :input, type: 'hidden', name: 'content_type_slug', value: name
|
36
|
+
end
|
37
|
+
|
38
|
+
def csrf_html
|
39
|
+
service = current_context.registers[:services].csrf_protection
|
40
|
+
|
41
|
+
html_tag :input, type: 'hidden', name: service.field, value: service.token
|
42
|
+
end
|
43
|
+
|
44
|
+
def callbacks_html(options)
|
45
|
+
options.slice(:success, :error).map do |(name, value)|
|
46
|
+
html_tag :input, type: 'hidden', name: "#{name}_callback", value: value
|
47
|
+
end.join('')
|
48
|
+
end
|
49
|
+
|
50
|
+
private
|
51
|
+
|
52
|
+
def html_content_tag(name, content, options = {})
|
53
|
+
"<#{name} #{inline_options(options)}>#{content}</#{name}>"
|
54
|
+
end
|
55
|
+
|
56
|
+
def html_tag(name, options = {})
|
57
|
+
"<#{name} #{inline_options(options)} />"
|
58
|
+
end
|
59
|
+
|
60
|
+
# Write options (Hash) into a string according to the following pattern:
|
61
|
+
# <key1>="<value1>", <key2>="<value2", ...etc
|
62
|
+
def inline_options(options = {})
|
63
|
+
return '' if options.empty?
|
64
|
+
(options.stringify_keys.to_a.collect { |a, b| "#{a}=\"#{b}\"" }).join(' ')
|
65
|
+
end
|
66
|
+
|
67
|
+
end
|
68
|
+
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
@@ -14,26 +14,28 @@ module Locomotive
|
|
14
14
|
#
|
15
15
|
class Nav < ::Liquid::Tag
|
16
16
|
|
17
|
-
Syntax = /(#{::Liquid::
|
17
|
+
Syntax = /(#{::Liquid::VariableSignature}+)/o
|
18
18
|
|
19
|
-
attr_accessor :current_page, :
|
19
|
+
attr_accessor :current_site, :current_page, :current_locale, :services, :page_repository
|
20
20
|
|
21
|
-
def initialize(tag_name, markup,
|
22
|
-
|
23
|
-
@source = ($1 || 'page').gsub(/"|'/, '')
|
21
|
+
def initialize(tag_name, markup, options)
|
22
|
+
markup =~ Syntax
|
24
23
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
end
|
24
|
+
@source = ($1 || 'page').gsub(/"|'/, '')
|
25
|
+
|
26
|
+
self.set_options(markup, options)
|
29
27
|
|
30
28
|
super
|
31
29
|
end
|
32
30
|
|
33
31
|
def render(context)
|
34
|
-
self.
|
35
|
-
|
36
|
-
|
32
|
+
self.set_vars_from_context(context)
|
33
|
+
|
34
|
+
set_template_if_asked
|
35
|
+
|
36
|
+
# get all the children of a source: site (index page), parent or page.
|
37
|
+
pages = children_of(fetch_starting_page)
|
38
|
+
output = self.build_entries_output(pages)
|
37
39
|
|
38
40
|
if self.no_wrapper?
|
39
41
|
output
|
@@ -48,17 +50,17 @@ module Locomotive
|
|
48
50
|
|
49
51
|
# Build recursively the links of all the pages.
|
50
52
|
#
|
51
|
-
# @param [ Array ]
|
53
|
+
# @param [ Array ] pages List of pages
|
52
54
|
#
|
53
55
|
# @return [ String ] The final HTML output
|
54
56
|
#
|
55
|
-
def build_entries_output(
|
57
|
+
def build_entries_output(pages, depth = 1)
|
56
58
|
output = []
|
57
59
|
|
58
|
-
|
60
|
+
pages.each_with_index do |page, index|
|
59
61
|
css = []
|
60
62
|
css << 'first' if index == 0
|
61
|
-
css << 'last' if index ==
|
63
|
+
css << 'last' if index == pages.size - 1
|
62
64
|
|
63
65
|
output << self.render_entry_link(page, css.join(' '), depth)
|
64
66
|
end
|
@@ -66,24 +68,26 @@ module Locomotive
|
|
66
68
|
output.join("\n")
|
67
69
|
end
|
68
70
|
|
69
|
-
# Get
|
71
|
+
# Get the first page used to list all the children.
|
72
|
+
# It depends on the source: site, parent, page or a fullpath
|
70
73
|
#
|
71
|
-
|
72
|
-
#
|
73
|
-
def fetch_entries
|
74
|
-
children = root.children.try(:clone) || []
|
75
|
-
children.delete_if { |p| !include_page?(p) }
|
76
|
-
end
|
77
|
-
|
78
|
-
def root
|
74
|
+
def fetch_starting_page
|
79
75
|
case @source
|
80
|
-
when 'site'
|
81
|
-
when 'parent'
|
82
|
-
when 'page'
|
76
|
+
when 'site' then page_repository.root
|
77
|
+
when 'parent' then page_repository.parent_of(current_page) || current_page
|
78
|
+
when 'page' then current_page
|
83
79
|
else
|
84
|
-
|
80
|
+
page_repository.by_fullpath(@source)
|
85
81
|
end
|
86
82
|
end
|
83
|
+
|
84
|
+
# Get all the children of page. It filters the collection
|
85
|
+
# to only return pages which will be displayed in the nav.
|
86
|
+
def children_of(page)
|
87
|
+
children = (page_repository.children_of(page) || [])
|
88
|
+
children.select { |child| self.include_page?(child) }
|
89
|
+
end
|
90
|
+
|
87
91
|
# Determine whether or not a page should be a part of the menu.
|
88
92
|
#
|
89
93
|
# @param [ Object ] page The page
|
@@ -119,8 +123,7 @@ module Locomotive
|
|
119
123
|
# @return [ Boolean ] True if the children have to be rendered.
|
120
124
|
#
|
121
125
|
def render_children_for_page?(page, depth)
|
122
|
-
depth.succ <= @_options[:depth].to_i &&
|
123
|
-
(page.children || []).select { |child| self.include_page?(child) }.any?
|
126
|
+
depth.succ <= @_options[:depth].to_i && children_of(page).any?
|
124
127
|
end
|
125
128
|
|
126
129
|
# Return the label of an entry. It may use or not the template
|
@@ -150,26 +153,21 @@ module Locomotive
|
|
150
153
|
# @return [ String ] The localized url
|
151
154
|
#
|
152
155
|
def entry_url(page)
|
153
|
-
|
154
|
-
"/#{page.fullpath}"
|
155
|
-
else
|
156
|
-
"/#{::I18n.locale}/#{page.fullpath}"
|
157
|
-
end
|
156
|
+
services.url_builder.url_for(page)
|
158
157
|
end
|
159
158
|
|
160
159
|
# Return the css of an entry (page).
|
161
160
|
#
|
162
161
|
# @param [ Object ] page The page
|
163
|
-
# @param [ String ]
|
162
|
+
# @param [ String ] extra_css The extra css
|
164
163
|
#
|
165
164
|
# @return [ String ] The css
|
166
165
|
#
|
167
|
-
def entry_css(page,
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
(_css + " #{css}").strip
|
166
|
+
def entry_css(page, extra_css = '')
|
167
|
+
['link'].tap do |css|
|
168
|
+
css << @_options[:active_class] if self.page_selected?(page)
|
169
|
+
css << extra_css if !extra_css.blank?
|
170
|
+
end.join ' '
|
173
171
|
end
|
174
172
|
|
175
173
|
# Return the HTML output of a page and its children if requested.
|
@@ -181,6 +179,7 @@ module Locomotive
|
|
181
179
|
# @return [ String ] The HTML output
|
182
180
|
#
|
183
181
|
def render_entry_link(page, css, depth)
|
182
|
+
page = decorate_page(page)
|
184
183
|
url = self.entry_url(page)
|
185
184
|
label = self.entry_label(page)
|
186
185
|
css = self.entry_css(page, css)
|
@@ -193,7 +192,7 @@ module Locomotive
|
|
193
192
|
options = %{ class="dropdown-toggle" data-toggle="dropdown"}
|
194
193
|
end
|
195
194
|
|
196
|
-
self.render_tag(:li, id: "#{page.slug.dasherize}-link", css: css) do
|
195
|
+
self.render_tag(:li, id: "#{page.slug.to_s.dasherize}-link", css: css) do
|
197
196
|
children_output = depth.succ <= @_options[:depth].to_i ? self.render_entry_children(page, depth.succ) : ''
|
198
197
|
%{<a href="#{url}"#{options}>#{label}</a>} + children_output
|
199
198
|
end
|
@@ -207,11 +206,11 @@ module Locomotive
|
|
207
206
|
# @return [ String ] The HTML code
|
208
207
|
#
|
209
208
|
def render_entry_children(page, depth)
|
210
|
-
entries = (page
|
209
|
+
entries = children_of(page)
|
211
210
|
css = self.bootstrap? ? 'dropdown-menu' : ''
|
212
211
|
|
213
212
|
unless entries.empty?
|
214
|
-
self.render_tag(:ul, id: "#{@_options[:id]}-#{page.slug.dasherize}", css: css) do
|
213
|
+
self.render_tag(:ul, id: "#{@_options[:id]}-#{page.slug.to_s.dasherize}", css: css) do
|
215
214
|
self.build_entries_output(entries, depth)
|
216
215
|
end
|
217
216
|
else
|
@@ -227,37 +226,41 @@ module Locomotive
|
|
227
226
|
markup.scan(::Liquid::TagAttributes) { |key, value| @_options[key.to_sym] = value.gsub(/"|'/, '') }
|
228
227
|
|
229
228
|
@_options[:exclude] = Regexp.new(@_options[:exclude]) if @_options[:exclude]
|
229
|
+
end
|
230
230
|
|
231
|
+
def set_template_if_asked
|
231
232
|
if @_options[:snippet]
|
232
|
-
if template =
|
233
|
+
if template = parse_snippet_template(@_options[:snippet])
|
233
234
|
@_options[:liquid_render] = template
|
234
235
|
end
|
235
236
|
end
|
236
237
|
end
|
237
238
|
|
238
|
-
# Avoid to call context.registers to get the current page
|
239
|
-
# and the site.
|
239
|
+
# Avoid to call context.registers to get the current page.
|
240
240
|
#
|
241
|
-
def
|
242
|
-
self.
|
243
|
-
self.
|
241
|
+
def set_vars_from_context(context)
|
242
|
+
self.current_site = context.registers[:site]
|
243
|
+
self.current_page = context.registers[:page]
|
244
|
+
self.services = context.registers[:services]
|
245
|
+
self.current_locale = context.registers[:locale]
|
246
|
+
self.page_repository = self.services.repositories.page
|
244
247
|
end
|
245
248
|
|
246
249
|
# Parse the template of the snippet give in option of the tag.
|
247
250
|
# If the template_name contains a liquid tag or drop, it will
|
248
251
|
# be used an inline template.
|
249
252
|
#
|
250
|
-
def parse_snippet_template(
|
251
|
-
source = if template_name.include?('{')
|
253
|
+
def parse_snippet_template(template_name)
|
254
|
+
source = if template_name.include?('{{')
|
252
255
|
template_name
|
253
256
|
else
|
254
|
-
|
257
|
+
services.snippet_finder.find(template_name).try(:source)
|
255
258
|
end
|
256
259
|
|
257
260
|
source ? ::Liquid::Template.parse(source) : nil
|
258
261
|
end
|
259
262
|
|
260
|
-
#
|
263
|
+
# Render any kind HTML tags. The content of the tag comes from
|
261
264
|
# the block.
|
262
265
|
#
|
263
266
|
# @param [ String ] tag_name Name of the HTML tag (li, ul, div, ...etc).
|
@@ -273,6 +276,11 @@ module Locomotive
|
|
273
276
|
%{<#{tag_name}#{options.join(' ')}>#{yield}</#{tag_name}>}
|
274
277
|
end
|
275
278
|
|
279
|
+
def decorate_page(page)
|
280
|
+
klass = Locomotive::Steam::Decorators::I18nDecorator
|
281
|
+
klass.new(page, current_locale, current_site.default_locale)
|
282
|
+
end
|
283
|
+
|
276
284
|
def bootstrap?
|
277
285
|
@_options[:bootstrap].to_bool
|
278
286
|
end
|
@@ -281,7 +289,7 @@ module Locomotive
|
|
281
289
|
@_options[:no_wrapper].to_bool
|
282
290
|
end
|
283
291
|
|
284
|
-
::Liquid::Template.register_tag('nav', Nav)
|
292
|
+
::Liquid::Template.register_tag('nav'.freeze, Nav)
|
285
293
|
end
|
286
294
|
end
|
287
295
|
end
|