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,92 @@ module Locomotive
|
|
2
2
|
module Steam
|
3
3
|
module Liquid
|
4
4
|
module Drops
|
5
|
-
class Page <
|
6
|
-
extend Forwardable
|
5
|
+
class Page < I18nBase
|
7
6
|
|
8
|
-
|
9
|
-
|
7
|
+
delegate :fullpath, :depth, :seo_title, :meta_keywords, :meta_description, :redirect_url, :handle, to: :@_source
|
8
|
+
delegate :listed?, :published?, :redirect?, :is_layout?, :templatized?, to: :@_source
|
9
|
+
|
10
|
+
def title
|
11
|
+
title = @_source.templatized? ? @context['entry'].try(:_label) : nil
|
12
|
+
title || @_source.title
|
13
|
+
end
|
14
|
+
|
15
|
+
def slug
|
16
|
+
slug = @_source.templatized? ? @context['entry'].try(:_slug).try(:singularize) : nil
|
17
|
+
slug || @_source.slug
|
18
|
+
end
|
19
|
+
|
20
|
+
def original_title
|
21
|
+
@_source.title
|
22
|
+
end
|
23
|
+
|
24
|
+
def original_slug
|
25
|
+
@_source.slug
|
26
|
+
end
|
27
|
+
|
28
|
+
def parent
|
29
|
+
@parent ||= repository.parent_of(@_source).to_liquid
|
30
|
+
end
|
31
|
+
|
32
|
+
def breadcrumbs
|
33
|
+
@breadcrumbs ||= liquify(*repository.ancestors_of(@_source))
|
34
|
+
end
|
10
35
|
|
11
36
|
def children
|
12
|
-
|
13
|
-
_children = _children.sort { |a, b| a.position.to_i <=> b.position.to_i }
|
14
|
-
@children ||= liquify(*_children)
|
37
|
+
@children ||= liquify(*repository.children_of(@_source))
|
15
38
|
end
|
16
39
|
|
17
40
|
def content_type
|
18
|
-
|
41
|
+
if @_source.templatized?
|
42
|
+
# content_type can be either the slug of a content type or a content type
|
43
|
+
content_type = content_type_repository.find(@_source.content_type_id)
|
44
|
+
ContentEntryCollection.new(content_type)
|
45
|
+
else
|
46
|
+
nil
|
47
|
+
end
|
19
48
|
end
|
20
49
|
|
21
|
-
def
|
22
|
-
|
23
|
-
''
|
50
|
+
def editable_elements
|
51
|
+
@editable_elements_hash ||= build_editable_elements_hash
|
24
52
|
end
|
53
|
+
|
54
|
+
private
|
55
|
+
|
56
|
+
def repository
|
57
|
+
@context.registers[:services].repositories.page
|
58
|
+
end
|
59
|
+
|
60
|
+
def content_type_repository
|
61
|
+
@context.registers[:services].repositories.content_type
|
62
|
+
end
|
63
|
+
|
64
|
+
def build_editable_elements_hash
|
65
|
+
{}.tap do |hash|
|
66
|
+
repository.editable_elements_of(@_source).each do |el|
|
67
|
+
safe_slug = el.slug.parameterize.underscore
|
68
|
+
keys = el.block.try(:split, '/').try(:compact) || []
|
69
|
+
|
70
|
+
_hash = _build_editable_elements_hashes(hash, keys)
|
71
|
+
|
72
|
+
_hash[safe_slug] = el.content
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
def _build_editable_elements_hashes(hash, keys)
|
78
|
+
_hash = hash
|
79
|
+
|
80
|
+
keys.each do |key|
|
81
|
+
safe_key = key.parameterize.underscore
|
82
|
+
|
83
|
+
_hash[safe_key] = {} if _hash[safe_key].nil?
|
84
|
+
|
85
|
+
_hash = _hash[safe_key]
|
86
|
+
end
|
87
|
+
|
88
|
+
_hash
|
89
|
+
end
|
90
|
+
|
25
91
|
end
|
26
92
|
end
|
27
93
|
end
|
@@ -2,22 +2,28 @@ module Locomotive
|
|
2
2
|
module Steam
|
3
3
|
module Liquid
|
4
4
|
module Drops
|
5
|
-
class Site <
|
6
|
-
include Scopeable
|
7
|
-
extend Forwardable
|
5
|
+
class Site < I18nBase
|
8
6
|
|
9
|
-
|
7
|
+
delegate :name, :domains, :seo_title, :meta_keywords, :meta_description, to: :@_source
|
10
8
|
|
11
9
|
def index
|
12
|
-
@index ||=
|
10
|
+
@index ||= repository.root.to_liquid
|
13
11
|
end
|
14
12
|
|
15
13
|
def pages
|
16
|
-
liquify(*
|
14
|
+
@pages ||= liquify(*self.scoped_pages)
|
17
15
|
end
|
18
16
|
|
19
|
-
|
20
|
-
|
17
|
+
protected
|
18
|
+
|
19
|
+
def repository
|
20
|
+
@context.registers[:services].repositories.page
|
21
|
+
end
|
22
|
+
|
23
|
+
def scoped_pages
|
24
|
+
conditions = @context['with_scope'] || {}
|
25
|
+
conditions['slug.ne'] = '404'
|
26
|
+
repository.all(conditions)
|
21
27
|
end
|
22
28
|
|
23
29
|
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module Locomotive
|
2
|
+
module Steam
|
3
|
+
module Liquid
|
4
|
+
module Drops
|
5
|
+
class UploadedFile < Base
|
6
|
+
|
7
|
+
delegate :size, :filename, to: :@_source
|
8
|
+
|
9
|
+
def url
|
10
|
+
asset_host.compute(@_source.url, @_source.updated_at.try(:to_i))
|
11
|
+
end
|
12
|
+
|
13
|
+
private
|
14
|
+
|
15
|
+
def asset_host
|
16
|
+
@context.registers[:services].asset_host
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -3,15 +3,9 @@ module Locomotive
|
|
3
3
|
module Liquid
|
4
4
|
class PageNotFound < ::Liquid::Error; end
|
5
5
|
|
6
|
-
class
|
7
|
-
|
8
|
-
class ContentEntryNotTranslated < ::Liquid::Error; end
|
9
|
-
|
10
|
-
class UnknownConditionInScope < ::Liquid::Error; end
|
6
|
+
class SnippetNotFound < ::Liquid::Error; end
|
11
7
|
|
12
|
-
class
|
13
|
-
|
14
|
-
class ConnectionRefused < ::Liquid::Error; end
|
8
|
+
class PageNotTranslated < ::Liquid::Error; end
|
15
9
|
end
|
16
10
|
end
|
17
|
-
end
|
11
|
+
end
|
@@ -0,0 +1,62 @@
|
|
1
|
+
module Locomotive
|
2
|
+
module Steam
|
3
|
+
module Liquid
|
4
|
+
module Filters
|
5
|
+
module Base
|
6
|
+
|
7
|
+
protected
|
8
|
+
|
9
|
+
# Convert an array of properties ('key:value') into a hash
|
10
|
+
# Ex: ['width:50', 'height:100'] => { width: '50', height: '100' }
|
11
|
+
def args_to_options(*args)
|
12
|
+
options = {}
|
13
|
+
args.flatten.each do |a|
|
14
|
+
if (a =~ /^(.*):(.*)$/)
|
15
|
+
options[$1.to_sym] = $2
|
16
|
+
end
|
17
|
+
end
|
18
|
+
options
|
19
|
+
end
|
20
|
+
|
21
|
+
# Write options (Hash) into a string according to the following pattern:
|
22
|
+
# <key1>="<value1>", <key2>="<value2", ...etc
|
23
|
+
def inline_options(options = {})
|
24
|
+
return '' if options.empty?
|
25
|
+
(options.stringify_keys.sort.to_a.collect { |a, b| "#{a}=\"#{b}\"" }).join(' ') << ' '
|
26
|
+
end
|
27
|
+
|
28
|
+
# Get the url to be used in html tags such as image_tag, flash_tag, ...etc
|
29
|
+
# input: url (String) OR asset drop
|
30
|
+
def get_url_from_asset(input)
|
31
|
+
input.respond_to?(:url) ? input.url : input
|
32
|
+
end
|
33
|
+
|
34
|
+
def css_js_asset_url(input, extension, folder)
|
35
|
+
return '' if input.nil?
|
36
|
+
|
37
|
+
if input =~ /^(\/|https?:)/
|
38
|
+
uri = URI(input)
|
39
|
+
else
|
40
|
+
uri = URI(asset_url("#{folder}/#{input}"))
|
41
|
+
end
|
42
|
+
|
43
|
+
uri.path = "#{uri.path}#{extension}" unless uri.path.ends_with?(extension)
|
44
|
+
uri.to_s
|
45
|
+
end
|
46
|
+
|
47
|
+
def asset_url(path)
|
48
|
+
@context.registers[:services].theme_asset_url.build(path)
|
49
|
+
end
|
50
|
+
|
51
|
+
def absolute_url(url)
|
52
|
+
url.starts_with?('/') ? url : "/#{url}"
|
53
|
+
end
|
54
|
+
|
55
|
+
end
|
56
|
+
|
57
|
+
::Liquid::Template.register_filter(Base)
|
58
|
+
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
@@ -30,6 +30,18 @@ module Locomotive
|
|
30
30
|
end
|
31
31
|
end
|
32
32
|
|
33
|
+
def distance_of_time_in_words(input, from_time = Time.zone.now, include_seconds = false)
|
34
|
+
return '' if input.blank?
|
35
|
+
|
36
|
+
# make sure we deal with instances of Time
|
37
|
+
to_time = convert_to_time!(input)
|
38
|
+
from_time = convert_to_time!(from_time)
|
39
|
+
|
40
|
+
::I18n.with_options(scope: :'datetime.distance_in_words') do |locale|
|
41
|
+
_distance_of_time_in_words(locale, from_time, to_time, include_seconds)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
33
45
|
def localized_date(input, *args)
|
34
46
|
return '' if input.blank?
|
35
47
|
|
@@ -43,94 +55,106 @@ module Locomotive
|
|
43
55
|
fragments = ::Date._strptime(input, format)
|
44
56
|
input = ::Date.new(fragments[:year], fragments[:mon], fragments[:mday])
|
45
57
|
rescue
|
46
|
-
input = Time.
|
58
|
+
input = Time.parse(input)
|
47
59
|
end
|
48
60
|
end
|
49
61
|
|
50
62
|
return input.to_s unless input.respond_to?(:strftime)
|
51
63
|
|
64
|
+
input = input.in_time_zone(@context.registers[:site].timezone) if input.respond_to?(:in_time_zone)
|
65
|
+
|
52
66
|
I18n.l input, format: format, locale: locale
|
53
67
|
end
|
54
68
|
|
55
69
|
alias :format_date :localized_date
|
56
70
|
|
57
|
-
|
58
|
-
return '' if input.blank?
|
71
|
+
private
|
59
72
|
|
60
|
-
|
61
|
-
|
62
|
-
|
73
|
+
def convert_to_time(input)
|
74
|
+
case input
|
75
|
+
when ::Date then input.to_time
|
76
|
+
when ::String then Time.zone.parse(input)
|
77
|
+
else
|
78
|
+
input
|
79
|
+
end
|
80
|
+
end
|
63
81
|
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
distance_in_seconds = ((to_time - from_time).abs).round
|
82
|
+
def convert_to_time!(input)
|
83
|
+
convert_to_time(input).to_time
|
84
|
+
end
|
68
85
|
|
69
|
-
|
86
|
+
def _distance_of_time_in_words(locale, from_time, to_time, include_seconds = false)
|
87
|
+
in_minutes, in_seconds = get_distance_in_minutes_and_seconds(from_time, to_time)
|
88
|
+
|
89
|
+
case in_minutes
|
90
|
+
when 0..1 then to_distance_in_seconds(locale, in_minutes, in_seconds, include_seconds)
|
91
|
+
when 2..44 then locale.t :x_minutes, count: in_minutes
|
92
|
+
when 45..89 then locale.t :about_x_hours, count: 1
|
93
|
+
when 90..1439 then locale.t :about_x_hours, count: (in_minutes.to_f / 60.0).round
|
94
|
+
when 1440..2519 then locale.t :x_days, count: 1
|
95
|
+
when 2520..43199 then locale.t :x_days, count: (in_minutes.to_f / 1440.0).round
|
96
|
+
when 43200..86399 then locale.t :about_x_months, count: 1
|
97
|
+
when 86400..525599 then locale.t :x_months, count: (in_minutes.to_f / 43200.0).round
|
98
|
+
else
|
99
|
+
to_distance_in_years(locale, from_time, to_time, in_minutes)
|
100
|
+
end
|
101
|
+
end
|
70
102
|
|
71
|
-
|
72
|
-
|
73
|
-
return distance_in_minutes == 0 ?
|
103
|
+
def to_distance_in_seconds(locale, distance_in_minutes, distance_in_seconds, include_seconds)
|
104
|
+
return distance_in_minutes == 0 ?
|
74
105
|
locale.t(:less_than_x_minutes, count: 1) :
|
75
106
|
locale.t(:x_minutes, count: distance_in_minutes) unless include_seconds
|
76
107
|
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
end
|
85
|
-
|
86
|
-
when 2..44 then locale.t :x_minutes, count: distance_in_minutes
|
87
|
-
when 45..89 then locale.t :about_x_hours, count: 1
|
88
|
-
when 90..1439 then locale.t :about_x_hours, count: (distance_in_minutes.to_f / 60.0).round
|
89
|
-
when 1440..2519 then locale.t :x_days, count: 1
|
90
|
-
when 2520..43199 then locale.t :x_days, count: (distance_in_minutes.to_f / 1440.0).round
|
91
|
-
when 43200..86399 then locale.t :about_x_months, count: 1
|
92
|
-
when 86400..525599 then locale.t :x_months, count: (distance_in_minutes.to_f / 43200.0).round
|
93
|
-
else
|
94
|
-
fyear = from_time.year
|
95
|
-
fyear += 1 if from_time.month >= 3
|
96
|
-
tyear = to_time.year
|
97
|
-
tyear -= 1 if to_time.month < 3
|
98
|
-
leap_years = (fyear > tyear) ? 0 : (fyear..tyear).count{|x| ::Date.leap?(x)}
|
99
|
-
minute_offset_for_leap_year = leap_years * 1440
|
100
|
-
# Discount the leap year days when calculating year distance.
|
101
|
-
# e.g. if there are 20 leap year days between 2 dates having the same day
|
102
|
-
# and month then the based on 365 days calculation
|
103
|
-
# the distance in years will come out to over 80 years when in written
|
104
|
-
# english it would read better as about 80 years.
|
105
|
-
minutes_with_offset = distance_in_minutes - minute_offset_for_leap_year
|
106
|
-
remainder = (minutes_with_offset % 525600)
|
107
|
-
distance_in_years = (minutes_with_offset / 525600)
|
108
|
-
if remainder < 131400
|
109
|
-
locale.t(:about_x_years, count: distance_in_years)
|
110
|
-
elsif remainder < 394200
|
111
|
-
locale.t(:over_x_years, count: distance_in_years)
|
112
|
-
else
|
113
|
-
locale.t(:almost_x_years, count: distance_in_years + 1)
|
114
|
-
end
|
115
|
-
end
|
108
|
+
case distance_in_seconds
|
109
|
+
when 0..4 then locale.t :less_than_x_seconds, count: 5
|
110
|
+
when 5..9 then locale.t :less_than_x_seconds, count: 10
|
111
|
+
when 10..19 then locale.t :less_than_x_seconds, count: 20
|
112
|
+
when 20..39 then locale.t :half_a_minute
|
113
|
+
when 40..59 then locale.t :less_than_x_minutes, count: 1
|
114
|
+
else locale.t :x_minutes, count: 1
|
116
115
|
end
|
117
116
|
end
|
118
117
|
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
when
|
124
|
-
|
118
|
+
def to_distance_in_years(locale, from_time, to_time, distance_in_minutes)
|
119
|
+
# Discount the leap year days when calculating year distance.
|
120
|
+
# e.g. if there are 20 leap year days between 2 dates having the same day
|
121
|
+
# and month then the based on 365 days calculation
|
122
|
+
# the distance in years will come out to over 80 years when in written
|
123
|
+
# english it would read better as about 80 years.
|
124
|
+
minute_offset_for_leap_year = get_minute_offset_for_leap_year(from_time, to_time)
|
125
|
+
minutes_with_offset = distance_in_minutes - minute_offset_for_leap_year
|
126
|
+
remainder = (minutes_with_offset % 525600)
|
127
|
+
distance_in_years = (minutes_with_offset / 525600)
|
128
|
+
|
129
|
+
if remainder < 131400
|
130
|
+
locale.t(:about_x_years, count: distance_in_years)
|
131
|
+
elsif remainder < 394200
|
132
|
+
locale.t(:over_x_years, count: distance_in_years)
|
125
133
|
else
|
126
|
-
|
134
|
+
locale.t(:almost_x_years, count: distance_in_years + 1)
|
127
135
|
end
|
128
136
|
end
|
129
137
|
|
138
|
+
def get_minute_offset_for_leap_year(from_time, to_time)
|
139
|
+
fyear = from_time.year
|
140
|
+
fyear += 1 if from_time.month >= 3
|
141
|
+
tyear = to_time.year
|
142
|
+
tyear -= 1 if to_time.month < 3
|
143
|
+
leap_years = (fyear > tyear) ? 0 : (fyear..tyear).count{|x| ::Date.leap?(x)}
|
144
|
+
leap_years * 1440
|
145
|
+
end
|
146
|
+
|
147
|
+
def get_distance_in_minutes_and_seconds(from_time, to_time)
|
148
|
+
in_minutes = (((to_time - from_time).abs) / 60).round
|
149
|
+
in_seconds = ((to_time - from_time).abs).round
|
150
|
+
|
151
|
+
[in_minutes, in_seconds]
|
152
|
+
end
|
153
|
+
|
130
154
|
end
|
131
155
|
|
132
156
|
::Liquid::Template.register_filter(Date)
|
133
157
|
end
|
134
158
|
end
|
135
159
|
end
|
136
|
-
end
|
160
|
+
end
|
@@ -4,7 +4,7 @@ module Locomotive
|
|
4
4
|
module Filters
|
5
5
|
module Html
|
6
6
|
|
7
|
-
#
|
7
|
+
# Return a link tag that browsers and news readers can use to auto-detect an RSS or ATOM feed.
|
8
8
|
# input: url of the feed
|
9
9
|
# example:
|
10
10
|
# {{ '/foo/bar' | auto_discovery_link_tag: 'rel:alternate', 'type:application/atom+xml', 'title:A title' }}
|
@@ -12,7 +12,7 @@ module Locomotive
|
|
12
12
|
options = args_to_options(args)
|
13
13
|
|
14
14
|
rel = options[:rel] || 'alternate'
|
15
|
-
type = options[:type] ||
|
15
|
+
type = options[:type] || 'application/rss+xml'
|
16
16
|
title = options[:title] || 'RSS'
|
17
17
|
|
18
18
|
%{<link rel="#{rel}" type="#{type}" title="#{title}" href="#{input}" />}
|
@@ -21,18 +21,10 @@ module Locomotive
|
|
21
21
|
# Write the url of a theme stylesheet
|
22
22
|
# input: name of the css file
|
23
23
|
def stylesheet_url(input)
|
24
|
-
|
25
|
-
|
26
|
-
if input =~ /^https?:/
|
27
|
-
input
|
28
|
-
else
|
29
|
-
input = "/stylesheets/#{input}" unless input =~ /^\//
|
30
|
-
input = "#{input}.css" unless input.ends_with?('.css')
|
31
|
-
input
|
32
|
-
end
|
24
|
+
css_js_asset_url(input, '.css', 'stylesheets')
|
33
25
|
end
|
34
26
|
|
35
|
-
# Write the link
|
27
|
+
# Write the link tag of a theme stylesheet
|
36
28
|
# input: url of the css file
|
37
29
|
def stylesheet_tag(input, media = 'screen')
|
38
30
|
return '' if input.nil?
|
@@ -45,52 +37,43 @@ module Locomotive
|
|
45
37
|
# Write the url to javascript resource
|
46
38
|
# input: name of the javascript file
|
47
39
|
def javascript_url(input)
|
48
|
-
|
49
|
-
|
50
|
-
input = "/javascripts/#{input}" unless input =~ /^(\/|https?:)/
|
51
|
-
|
52
|
-
input = "#{input}.js" unless input.ends_with?('.js')
|
53
|
-
|
54
|
-
input
|
40
|
+
css_js_asset_url(input, '.js', 'javascripts')
|
55
41
|
end
|
56
42
|
|
57
43
|
# Write the link to javascript resource
|
58
44
|
# input: url of the javascript file
|
59
|
-
def javascript_tag(input)
|
45
|
+
def javascript_tag(input, *args)
|
60
46
|
return '' if input.nil?
|
61
47
|
|
48
|
+
javascript_options = inline_options(args_to_options(args))
|
62
49
|
input = javascript_url(input)
|
63
50
|
|
64
|
-
|
51
|
+
%{<script src="#{input}" type="text/javascript" #{javascript_options}></script>}
|
65
52
|
end
|
66
53
|
|
67
|
-
|
68
|
-
|
69
|
-
def image_tag(input, *args)
|
70
|
-
image_options = inline_options(args_to_options(args))
|
54
|
+
def theme_image_url(input)
|
55
|
+
return '' if input.nil?
|
71
56
|
|
72
|
-
|
57
|
+
input = "images/#{input}" unless input.starts_with?('/')
|
58
|
+
|
59
|
+
asset_url(input)
|
73
60
|
end
|
74
61
|
|
75
62
|
# Write a theme image tag
|
76
63
|
# input: name of file including folder
|
77
|
-
# example: 'about/myphoto.jpg' | theme_image # <img src="images/about/myphoto.jpg"
|
64
|
+
# example: 'about/myphoto.jpg' | theme_image # <img src="images/about/myphoto.jpg">
|
78
65
|
def theme_image_tag(input, *args)
|
79
66
|
image_options = inline_options(args_to_options(args))
|
80
|
-
"<img src=\"#{theme_image_url(input)}\" #{image_options}/>"
|
81
|
-
end
|
82
67
|
|
83
|
-
|
84
|
-
return '' if input.nil?
|
85
|
-
|
86
|
-
input = "images/#{input}" unless input.starts_with?('/')
|
87
|
-
|
88
|
-
File.join('/', input)
|
68
|
+
%{<img src="#{theme_image_url(input)}" #{image_options}>}
|
89
69
|
end
|
90
70
|
|
91
|
-
|
92
|
-
|
93
|
-
|
71
|
+
# Write an image tag
|
72
|
+
# input: url of the image OR asset drop
|
73
|
+
def image_tag(input, *args)
|
74
|
+
image_options = inline_options(args_to_options(args))
|
75
|
+
|
76
|
+
%{<img src="#{get_url_from_asset(input)}" #{image_options}>}
|
94
77
|
end
|
95
78
|
|
96
79
|
# Embed a flash movie into a page
|
@@ -100,84 +83,16 @@ module Locomotive
|
|
100
83
|
def flash_tag(input, *args)
|
101
84
|
path = get_url_from_asset(input)
|
102
85
|
embed_options = inline_options(args_to_options(args))
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
# Steam the navigation for a paginated collection
|
113
|
-
def default_pagination(paginate, *args)
|
114
|
-
return '' if paginate['parts'].empty?
|
115
|
-
|
116
|
-
options = args_to_options(args)
|
117
|
-
|
118
|
-
previous_label = options[:previous_label] || I18n.t('pagination.previous')
|
119
|
-
next_label = options[:next_label] || I18n.t('pagination.next')
|
120
|
-
|
121
|
-
previous_link = (if paginate['previous'].blank?
|
122
|
-
"<span class=\"disabled prev_page\">#{previous_label}</span>"
|
123
|
-
else
|
124
|
-
"<a href=\"#{absolute_url(paginate['previous']['url'])}\" class=\"prev_page\">#{previous_label}</a>"
|
125
|
-
end)
|
126
|
-
|
127
|
-
links = ""
|
128
|
-
paginate['parts'].each do |part|
|
129
|
-
links << (if part['is_link']
|
130
|
-
"<a href=\"#{absolute_url(part['url'])}\">#{part['title']}</a>"
|
131
|
-
elsif part['hellip_break']
|
132
|
-
"<span class=\"gap\">#{part['title']}</span>"
|
133
|
-
else
|
134
|
-
"<span class=\"current\">#{part['title']}</span>"
|
135
|
-
end)
|
136
|
-
end
|
137
|
-
|
138
|
-
next_link = (if paginate['next'].blank?
|
139
|
-
"<span class=\"disabled next_page\">#{next_label}</span>"
|
140
|
-
else
|
141
|
-
"<a href=\"#{absolute_url(paginate['next']['url'])}\" class=\"next_page\">#{next_label}</a>"
|
142
|
-
end)
|
143
|
-
|
144
|
-
%{<div class="pagination #{options[:css]}">
|
145
|
-
#{previous_link}
|
146
|
-
#{links}
|
147
|
-
#{next_link}
|
148
|
-
</div>}
|
86
|
+
html = <<-EOF
|
87
|
+
<object #{embed_options}>
|
88
|
+
<param name="movie" value="#{path}">
|
89
|
+
<embed src="#{path}" #{embed_options}>
|
90
|
+
</embed>
|
91
|
+
</object>
|
92
|
+
EOF
|
93
|
+
html.gsub(/ >/, '>').strip
|
149
94
|
end
|
150
95
|
|
151
|
-
protected
|
152
|
-
|
153
|
-
# Convert an array of properties ('key:value') into a hash
|
154
|
-
# Ex: ['width:50', 'height:100'] => { :width => '50', :height => '100' }
|
155
|
-
def args_to_options(*args)
|
156
|
-
options = {}
|
157
|
-
args.flatten.each do |a|
|
158
|
-
if (a =~ /^(.*):(.*)$/)
|
159
|
-
options[$1.to_sym] = $2
|
160
|
-
end
|
161
|
-
end
|
162
|
-
options
|
163
|
-
end
|
164
|
-
|
165
|
-
# Write options (Hash) into a string according to the following pattern:
|
166
|
-
# <key1>="<value1>", <key2>="<value2", ...etc
|
167
|
-
def inline_options(options = {})
|
168
|
-
return '' if options.empty?
|
169
|
-
(options.stringify_keys.to_a.collect { |a, b| "#{a}=\"#{b}\"" }).join(' ') << ' '
|
170
|
-
end
|
171
|
-
|
172
|
-
# Get the path to be used in html tags such as image_tag, flash_tag, ...etc
|
173
|
-
# input: url (String) OR asset drop
|
174
|
-
def get_url_from_asset(input)
|
175
|
-
input.respond_to?(:url) ? input.url : input
|
176
|
-
end
|
177
|
-
|
178
|
-
def absolute_url(url)
|
179
|
-
url =~ /^\// ? url : "/#{url}"
|
180
|
-
end
|
181
96
|
end
|
182
97
|
|
183
98
|
::Liquid::Template.register_filter(Html)
|
@@ -185,4 +100,4 @@ module Locomotive
|
|
185
100
|
end
|
186
101
|
end
|
187
102
|
end
|
188
|
-
end
|
103
|
+
end
|