trusty-cms 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -1
- data/CHANGELOG.md +1 -1
- data/Gemfile +12 -8
- data/Gemfile.lock +141 -82
- data/LICENSE.md +1 -1
- data/README.md +48 -5
- data/Vagrantfile +122 -0
- data/{public → app/assets}/images/admin/add_tab.png +0 -0
- data/app/assets/images/admin/animated-overlay.gif +0 -0
- data/{public → app/assets}/images/admin/avatar_32x32.png +0 -0
- data/{public → app/assets}/images/admin/avatar_64x64.png +0 -0
- data/{public → app/assets}/images/admin/avatar_96x96.png +0 -0
- data/{public → app/assets}/images/admin/brown_bottom_line.gif +0 -0
- data/{public → app/assets}/images/admin/calendar_down.gif +0 -0
- data/{public → app/assets}/images/admin/collapse.png +0 -0
- data/{public/images/admin/expand.png → app/assets/images/admin/collapsed.png} +0 -0
- data/{public → app/assets}/images/admin/draft_page.png +0 -0
- data/{public → app/assets}/images/admin/image.png +0 -0
- data/{public → app/assets}/images/admin/javascript.png +0 -0
- data/{public → app/assets}/images/admin/layout.png +0 -0
- data/{public → app/assets}/images/admin/metadata_toggle.png +0 -0
- data/{public → app/assets}/images/admin/minus.png +0 -0
- data/{public → app/assets}/images/admin/minus_disabled.png +0 -0
- data/{public → app/assets}/images/admin/minus_grey.png +0 -0
- data/{public → app/assets}/images/admin/navigation_secondary_separator.gif +0 -0
- data/{public → app/assets}/images/admin/page.png +0 -0
- data/{public → app/assets}/images/admin/plus.png +0 -0
- data/{public → app/assets}/images/admin/plus_disabled.png +0 -0
- data/{public → app/assets}/images/admin/plus_grey.png +0 -0
- data/{public → app/assets}/images/admin/popup_border_background.png +0 -0
- data/{public → app/assets}/images/admin/popup_border_bottom_left.png +0 -0
- data/{public → app/assets}/images/admin/popup_border_bottom_right.png +0 -0
- data/{public → app/assets}/images/admin/popup_border_top_left.png +0 -0
- data/{public → app/assets}/images/admin/popup_border_top_right.png +0 -0
- data/{public → app/assets}/images/admin/search.png +0 -0
- data/{public → app/assets}/images/admin/single_form_shadow.png +0 -0
- data/{public → app/assets}/images/admin/snippet.png +0 -0
- data/{public → app/assets}/images/admin/spinner.gif +0 -0
- data/{public → app/assets}/images/admin/status_background.png +0 -0
- data/{public → app/assets}/images/admin/status_bottom_left.png +0 -0
- data/{public → app/assets}/images/admin/status_bottom_right.png +0 -0
- data/{public → app/assets}/images/admin/status_spinner.gif +0 -0
- data/{public → app/assets}/images/admin/status_top_left.png +0 -0
- data/{public → app/assets}/images/admin/status_top_right.png +0 -0
- data/{public → app/assets}/images/admin/stylesheet.png +0 -0
- data/{public → app/assets}/images/admin/tab_close.png +0 -0
- data/app/assets/images/admin/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/images/admin/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/app/assets/images/admin/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/app/assets/images/admin/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/app/assets/images/admin/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/app/assets/images/admin/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/app/assets/images/admin/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/app/assets/images/admin/ui-icons_222222_256x240.png +0 -0
- data/app/assets/images/admin/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/images/admin/ui-icons_454545_256x240.png +0 -0
- data/app/assets/images/admin/ui-icons_888888_256x240.png +0 -0
- data/app/assets/images/admin/ui-icons_cd0a0a_256x240.png +0 -0
- data/{public → app/assets}/images/admin/upload.png +0 -0
- data/{public → app/assets}/images/admin/virtual_page.png +0 -0
- data/{public → app/assets}/images/radiant/radiant-badge-color.png +0 -0
- data/app/assets/javascripts/admin.js +35 -0
- data/app/assets/javascripts/admin/autopopulate-breadcrumb.js +35 -0
- data/{public → app/assets}/javascripts/admin/cookie.js +13 -13
- data/app/assets/javascripts/admin/datecheck.js +7 -0
- data/app/assets/javascripts/admin/dropdown.js +26 -0
- data/app/assets/javascripts/admin/jquery-ui.js +2371 -0
- data/app/assets/javascripts/admin/jquery.treetable.js +629 -0
- data/app/assets/javascripts/admin/jquery.validate.min.js +4 -0
- data/app/assets/javascripts/admin/modernizr.js +409 -0
- data/app/assets/javascripts/admin/more-or-less.js +38 -0
- data/app/assets/javascripts/admin/page-edit.js +51 -0
- data/app/assets/javascripts/admin/pagefield.js +35 -0
- data/app/assets/javascripts/admin/persist.min.js +31 -0
- data/app/assets/javascripts/admin/popup.js +40 -0
- data/app/assets/javascripts/admin/preview.js +40 -0
- data/app/assets/javascripts/admin/tabcontrol.js.erb +81 -0
- data/app/assets/javascripts/admin/tags.js +41 -0
- data/app/assets/javascripts/admin/treetable.js +50 -0
- data/app/assets/javascripts/admin/utilities.js +5 -0
- data/app/assets/javascripts/admin/validation.js +7 -0
- data/app/assets/javascripts/admin/validations/user_validations.js +21 -0
- data/app/assets/javascripts/ckeditor/config.js +10 -0
- data/{config/initializers/configuration_extensions.rb → app/assets/javascripts/ckeditor/contents.css} +0 -0
- data/app/assets/javascripts/notes.md +40 -0
- data/app/assets/stylesheets/admin/_base.scss +17 -0
- data/app/assets/stylesheets/admin/main.scss +34 -0
- data/app/assets/stylesheets/admin/modules/_boxes.scss +7 -0
- data/app/assets/stylesheets/admin/modules/_gradients.scss +5 -0
- data/app/assets/stylesheets/admin/modules/_links.scss +24 -0
- data/app/assets/stylesheets/admin/partials/_actions.scss +118 -0
- data/app/assets/stylesheets/admin/partials/_avatars.scss +12 -0
- data/app/assets/stylesheets/admin/partials/_content.scss +74 -0
- data/app/assets/stylesheets/admin/partials/_dateinput.scss +71 -0
- data/app/assets/stylesheets/admin/partials/_deprecated.scss +65 -0
- data/app/assets/stylesheets/admin/partials/_dropdown.scss +34 -0
- data/app/assets/stylesheets/admin/partials/_footer.scss +14 -0
- data/app/assets/stylesheets/admin/partials/_forms.scss +419 -0
- data/app/assets/stylesheets/admin/partials/_header.scss +135 -0
- data/app/assets/stylesheets/admin/partials/_index.scss +198 -0
- data/app/assets/stylesheets/admin/partials/_jquery-ui-structure.scss +258 -0
- data/app/assets/stylesheets/admin/partials/_jquery-ui-theme.scss +410 -0
- data/app/assets/stylesheets/admin/partials/_jquery-ui.scss +650 -0
- data/app/assets/stylesheets/admin/partials/_layout.scss +14 -0
- data/app/assets/stylesheets/admin/partials/_messages.scss +13 -0
- data/app/assets/stylesheets/admin/partials/_popup.scss +263 -0
- data/app/assets/stylesheets/admin/partials/_tabcontrol.scss +94 -0
- data/app/assets/stylesheets/admin/partials/_toolbar.scss +40 -0
- data/app/assets/stylesheets/admin/partials/_treetable.scss +120 -0
- data/app/assets/stylesheets/admin/partials/_typography.scss +77 -0
- data/app/assets/stylesheets/admin/partials/_validations.scss +22 -0
- data/app/controllers/admin/configuration_controller.rb +9 -9
- data/app/controllers/admin/extensions_controller.rb +1 -1
- data/app/controllers/admin/page_parts_controller.rb +1 -1
- data/app/controllers/admin/pages_controller.rb +8 -5
- data/app/controllers/admin/preferences_controller.rb +8 -25
- data/app/controllers/admin/resource_controller.rb +19 -20
- data/app/controllers/admin/users_controller.rb +7 -7
- data/app/controllers/admin/welcome_controller.rb +9 -9
- data/app/controllers/application_controller.rb +13 -24
- data/app/controllers/site_controller.rb +2 -1
- data/app/helpers/admin/configuration_helper.rb +20 -19
- data/app/helpers/admin/extensions_helper.rb +1 -1
- data/app/helpers/admin/layouts_helper.rb +1 -19
- data/app/helpers/admin/node_helper.rb +21 -7
- data/app/helpers/admin/pages_helper.rb +4 -92
- data/app/helpers/admin/preferences_helper.rb +1 -1
- data/app/helpers/admin/regions_helper.rb +5 -4
- data/app/helpers/application_helper.rb +62 -64
- data/app/models/deprecated_tags.rb +1 -21
- data/app/models/file_not_found_page.rb +8 -8
- data/app/models/layout.rb +3 -2
- data/app/models/menu_renderer.rb +7 -7
- data/app/models/page.rb +8 -7
- data/app/models/page_context.rb +10 -10
- data/app/models/page_field.rb +1 -0
- data/app/models/page_part.rb +5 -5
- data/app/models/standard_tags.rb +95 -75
- data/app/models/status.rb +8 -8
- data/app/models/text_filter.rb +5 -5
- data/app/models/trusty_cms/config.rb +36 -42
- data/app/models/trusty_cms/page_response_cache_director.rb +2 -1
- data/app/models/user.rb +1 -10
- data/app/models/user_action_observer.rb +5 -5
- data/app/views/admin/configuration/edit.html.haml +5 -5
- data/app/views/admin/configuration/show.html.haml +11 -11
- data/app/views/admin/extensions/index.html.haml +4 -4
- data/app/views/admin/layouts/_form.html.haml +6 -7
- data/app/views/admin/layouts/_popups.html.haml +4 -0
- data/app/views/admin/layouts/edit.html.haml +4 -2
- data/app/views/admin/layouts/new.html.haml +1 -1
- data/app/views/admin/layouts/remove.html.haml +3 -3
- data/app/views/admin/page_fields/_page_field.html.haml +3 -2
- data/app/views/admin/page_parts/_page_part.html.haml +4 -5
- data/app/views/admin/pages/_fields.html.haml +2 -3
- data/app/views/admin/pages/_meta_row.html.haml +2 -2
- data/app/views/admin/pages/_node.html.haml +4 -9
- data/app/views/admin/pages/_popups.html.haml +9 -5
- data/app/views/admin/pages/children.html.haml +5 -1
- data/app/views/admin/pages/edit.html.haml +1 -3
- data/app/views/admin/pages/index.html.haml +2 -2
- data/app/views/admin/pages/new.html.haml +2 -4
- data/app/views/admin/pages/remove.html.haml +8 -7
- data/app/views/admin/preferences/edit.html.haml +14 -14
- data/app/views/admin/references/_tag_reference.haml +1 -1
- data/app/views/admin/references/filters.haml +1 -1
- data/app/views/admin/references/tags.haml +9 -27
- data/app/views/admin/users/_avatar.html.haml +2 -2
- data/app/views/admin/users/_form.html.haml +16 -16
- data/app/views/admin/users/_password_fields.html.haml +3 -3
- data/app/views/admin/users/edit.html.haml +1 -1
- data/app/views/admin/users/new.html.haml +2 -2
- data/app/views/admin/users/remove.html.haml +4 -4
- data/app/views/admin/welcome/login.html.haml +6 -6
- data/app/views/layouts/application.html.haml +22 -11
- data/app/views/site/not_found.html.haml +1 -1
- data/app/views/site/show_page.html.haml +1 -0
- data/bin/ci/before_script +0 -5
- data/config.ru +4 -0
- data/config/application.rb +118 -108
- data/config/boot.rb +1 -1
- data/config/database.mysql.yml +3 -6
- data/config/environments/development.rb +17 -5
- data/config/environments/production.rb +20 -3
- data/config/environments/test.rb +17 -0
- data/config/initializers/active_record_extensions.rb +1 -1
- data/config/initializers/haml.rb +1 -1
- data/config/initializers/rails_patch.rb +1 -1
- data/config/initializers/secret_token.rb +7 -0
- data/config/initializers/string_extensions.rb +1 -1
- data/config/initializers/symbol_extensions.rb +1 -1
- data/config/initializers/{radiant_config.rb → trusty_cms_config.rb} +2 -2
- data/config/locales/en.yml +33 -33
- data/config/locales/en_available_tags.yml +62 -62
- data/config/routes.rb +18 -10
- data/db/migrate/001_create_radiant_tables.rb +3 -3
- data/db/migrate/002_insert_initial_data.rb +2 -2
- data/db/migrate/005_add_virtual_column_to_page.rb +1 -1
- data/db/migrate/006_integer_columns_to_boolean.rb +9 -9
- data/db/migrate/007_remove_virtual_column_from_page.rb +1 -1
- data/db/migrate/008_add_virtual_column_to_page_again.rb +1 -1
- data/db/migrate/010_merge_behaviors_and_pages.rb +6 -6
- data/db/migrate/014_rename_config_default_parts_key.rb +3 -3
- data/db/migrate/015_add_optimistic_locking.rb +2 -2
- data/db/migrate/020_add_session_info_to_users.rb +1 -1
- data/db/migrate/20081203140407_add_indexes.rb +2 -2
- data/db/migrate/20090226140109_add_user_language.rb +2 -2
- data/db/migrate/20100805155020_convert_page_metas.rb +1 -1
- data/db/migrate/20110902203823_add_allowed_children_cache_to_pages.rb +1 -1
- data/db/migrate/20111016150725_extend_page_part_content_limit.rb +1 -1
- data/db/migrate/20120209231801_change_pages_allowed_children_cache_to_text.rb +3 -4
- data/db/schema.rb +0 -6
- data/lib/active_record_extensions/active_record_extensions.rb +3 -3
- data/lib/annotatable.rb +3 -3
- data/lib/configuration_extensions/configuration_extensions.rb +7 -42
- data/lib/generators/extension/extension_generator.rb +11 -11
- data/lib/generators/extension/templates/README.md +1 -1
- data/lib/generators/extension/templates/cucumber.yml +1 -1
- data/lib/generators/extension/templates/cucumber_env.rb +2 -2
- data/lib/generators/extension/templates/cucumber_paths.rb +7 -7
- data/lib/generators/extension/templates/en.yml +1 -1
- data/lib/generators/extension/templates/functional_test.rb +3 -3
- data/lib/generators/extension/templates/migration.rb +4 -4
- data/lib/generators/extension/templates/routes.rb +1 -1
- data/lib/generators/extension/templates/spec_helper.rb +1 -1
- data/lib/generators/extension/templates/tasks.rake +5 -5
- data/lib/generators/extension/templates/test_helper.rb +5 -5
- data/lib/generators/extension_controller/extension_controller_generator.rb +11 -11
- data/lib/generators/extension_controller/templates/helper.rb +1 -1
- data/lib/generators/extension_controller/templates/helper_spec.rb +2 -2
- data/lib/generators/extension_controller/templates/view.html.erb +1 -1
- data/lib/generators/extension_controller/templates/view_spec.rb +1 -1
- data/lib/generators/extension_mailer/extension_mailer_generator.rb +10 -10
- data/lib/generators/extension_mailer/templates/mailer.rb +2 -2
- data/lib/generators/extension_migration/extension_migration_generator.rb +5 -5
- data/lib/generators/extension_model/extension_model_generator.rb +10 -10
- data/lib/generators/generator_base_extension.rb +1 -1
- data/lib/generators/instance/instance_generator.rb +14 -14
- data/lib/generators/instance/templates/databases/db2.yml +3 -3
- data/lib/generators/instance/templates/databases/mysql.yml +2 -2
- data/lib/generators/instance/templates/instance_boot.rb +4 -4
- data/lib/generators/instance/templates/instance_environment.rb +13 -3
- data/lib/generators/instance/templates/instance_radiant_config.rb +2 -2
- data/lib/generators/language_extension/language_extension_generator.rb +14 -14
- data/lib/generators/language_extension/templates/available_tags.yml +91 -91
- data/lib/generators/language_extension/templates/cucumber.yml +1 -1
- data/lib/generators/language_extension/templates/cucumber_env.rb +3 -3
- data/lib/generators/language_extension/templates/cucumber_paths.rb +4 -4
- data/lib/generators/language_extension/templates/extension.rb +1 -1
- data/lib/generators/language_extension/templates/functional_test.rb +3 -3
- data/lib/generators/language_extension/templates/lang.yml +39 -39
- data/lib/generators/language_extension/templates/spec_helper.rb +1 -1
- data/lib/generators/language_extension/templates/tasks.rake +3 -3
- data/lib/generators/language_extension/templates/test_helper.rb +5 -5
- data/lib/inheritable_class_attributes.rb +11 -11
- data/lib/local_time.rb +2 -2
- data/lib/login_system.rb +5 -6
- data/lib/method_observer.rb +9 -9
- data/lib/simpleton.rb +7 -7
- data/lib/string_extensions/string_extensions.rb +5 -5
- data/lib/symbol_extensions/symbol_extensions.rb +1 -1
- data/lib/tasks/database.rake +17 -20
- data/lib/tasks/extensions.rake +2 -2
- data/lib/tasks/framework.rake +13 -13
- data/lib/tasks/instance.rake +1 -1
- data/lib/tasks/radiant_config.rake +3 -3
- data/lib/tasks/translate.rake +10 -10
- data/lib/tasks/undefine.rake +1 -5
- data/lib/translation_support.rb +7 -7
- data/lib/trusty_cms.rb +1 -1
- data/lib/trusty_cms/admin_ui.rb +34 -34
- data/lib/trusty_cms/admin_ui/region_partials.rb +3 -3
- data/lib/trusty_cms/admin_ui/region_set.rb +5 -5
- data/lib/trusty_cms/available_locales.rb +1 -1
- data/lib/trusty_cms/config/definition.rb +21 -21
- data/lib/trusty_cms/engine.rb +4 -7
- data/lib/trusty_cms/extension.rb +15 -15
- data/lib/trusty_cms/extension/script.rb +7 -7
- data/lib/trusty_cms/extension_loader.rb +23 -11
- data/lib/trusty_cms/extension_migrator.rb +9 -9
- data/lib/trusty_cms/extension_path.rb +23 -23
- data/lib/trusty_cms/initializer.rb +33 -15
- data/lib/trusty_cms/pagination/link_renderer.rb +3 -3
- data/lib/trusty_cms/resource_responses.rb +15 -15
- data/lib/trusty_cms/setup.rb +35 -33
- data/lib/trusty_cms/taggable.rb +18 -18
- data/public/404.html +1 -1
- data/public/500.html +1 -1
- data/public/loading-iframe.html +1 -1
- data/public/robots.txt +1 -1
- data/script/rails +0 -0
- data/spec/features/admin_login_spec.rb +92 -0
- data/spec/features/config_spec.rb +34 -0
- data/spec/features/javascript_smoke_spec.rb +59 -0
- data/spec/features/layouts_spec.rb +49 -0
- data/spec/features/pages_spec.rb +55 -0
- data/spec/fixtures/users.yml +16 -0
- data/spec/helpers/regions_helper_spec.rb +16 -0
- data/spec/rails_helper.rb +74 -0
- data/spec/spec_helper.rb +78 -0
- data/spec/support/custom_actions.rb +9 -0
- data/trusty_cms.gemspec +22 -25
- metadata +393 -242
- checksums.yaml +0 -15
- data/config/compass.config +0 -15
- data/config/database.db2.yml +0 -20
- data/config/database.postgresql.yml +0 -25
- data/config/database.sqlite.yml +0 -16
- data/config/database.sqlserver.yml +0 -20
- data/config/initializers/object_extensions.rb +0 -1
- data/config/preinitializer.rb +0 -18
- data/lib/object_extensions/object_extensions.rb +0 -5
- data/lib/tasks/prototype.rake +0 -31
- data/lib/tasks/release.rake +0 -131
- data/lib/trusty_cms/cache.rb +0 -100
- data/public/javascripts/admin/application.js +0 -94
- data/public/javascripts/admin/codearea.js +0 -165
- data/public/javascripts/admin/controls.js +0 -965
- data/public/javascripts/admin/dateinput.js +0 -402
- data/public/javascripts/admin/dragdrop.js +0 -974
- data/public/javascripts/admin/dropdown.js +0 -216
- data/public/javascripts/admin/effects.js +0 -1122
- data/public/javascripts/admin/lowpro.js +0 -340
- data/public/javascripts/admin/overrides.js +0 -1
- data/public/javascripts/admin/page_preview.js +0 -41
- data/public/javascripts/admin/pagefield.js +0 -54
- data/public/javascripts/admin/pagestatus.js +0 -17
- data/public/javascripts/admin/popup.js +0 -339
- data/public/javascripts/admin/prototype.js +0 -4874
- data/public/javascripts/admin/ruledtable.js +0 -13
- data/public/javascripts/admin/shortcuts.js +0 -33
- data/public/javascripts/admin/sitemap.js +0 -149
- data/public/javascripts/admin/status.js +0 -233
- data/public/javascripts/admin/tabcontrol.js +0 -123
- data/public/javascripts/admin/toggle.js +0 -430
- data/public/javascripts/admin/utility.js +0 -53
- data/public/javascripts/admin/validationerror.js +0 -18
- data/public/stylesheets/sass/admin/_base.sass +0 -18
- data/public/stylesheets/sass/admin/main.sass +0 -27
- data/public/stylesheets/sass/admin/modules/_boxes.sass +0 -6
- data/public/stylesheets/sass/admin/modules/_gradients.sass +0 -4
- data/public/stylesheets/sass/admin/modules/_links.sass +0 -18
- data/public/stylesheets/sass/admin/overrides.sass +0 -2
- data/public/stylesheets/sass/admin/partials/_actions.sass +0 -96
- data/public/stylesheets/sass/admin/partials/_avatars.sass +0 -10
- data/public/stylesheets/sass/admin/partials/_content.sass +0 -58
- data/public/stylesheets/sass/admin/partials/_dateinput.sass +0 -62
- data/public/stylesheets/sass/admin/partials/_deprecated.sass +0 -55
- data/public/stylesheets/sass/admin/partials/_dropdown.sass +0 -28
- data/public/stylesheets/sass/admin/partials/_footer.sass +0 -12
- data/public/stylesheets/sass/admin/partials/_forms.sass +0 -322
- data/public/stylesheets/sass/admin/partials/_header.sass +0 -114
- data/public/stylesheets/sass/admin/partials/_index.sass +0 -147
- data/public/stylesheets/sass/admin/partials/_layout.sass +0 -10
- data/public/stylesheets/sass/admin/partials/_messages.sass +0 -10
- data/public/stylesheets/sass/admin/partials/_popup.sass +0 -213
- data/public/stylesheets/sass/admin/partials/_tabcontrol.sass +0 -72
- data/public/stylesheets/sass/admin/partials/_toolbar.sass +0 -31
- data/public/stylesheets/sass/admin/partials/_typography.sass +0 -60
- data/public/stylesheets/sass/admin/partials/_validations.sass +0 -19
- data/rails/init.rb +0 -1
- data/script/about +0 -4
- data/script/breakpointer +0 -3
- data/script/console +0 -3
- data/script/dbconsole +0 -3
- data/script/destroy +0 -3
- data/script/generate +0 -3
- data/script/performance/benchmarker +0 -3
- data/script/performance/profiler +0 -3
- data/script/performance/request +0 -3
- data/script/plugin +0 -3
- data/script/process/inspector +0 -3
- data/script/process/reaper +0 -3
- data/script/process/spawner +0 -3
- data/script/process/spinner +0 -3
- data/script/runner +0 -3
- data/script/server +0 -3
- data/script/version +0 -5
- data/spec/ci/database.postgresql.yml +0 -4
- data/spec/ci/database.sqlite.yml +0 -3
@@ -8,14 +8,31 @@ TrustyCms::Application.configure do
|
|
8
8
|
# Use a different logger for distributed setups
|
9
9
|
# config.logger = SyslogLogger.new
|
10
10
|
|
11
|
-
|
12
11
|
# Full error reports are disabled and caching is on
|
13
12
|
config.consider_all_requests_local = false
|
14
|
-
config.action_controller.perform_caching
|
13
|
+
config.action_controller.perform_caching = true
|
15
14
|
|
16
15
|
# Enable serving of images, stylesheets, and javascripts from an asset server
|
17
16
|
# config.action_controller.asset_host = "http://assets.example.com"
|
18
17
|
|
18
|
+
# Disable Rails's static asset server (Apache or nginx will already do this)
|
19
|
+
config.serve_static_assets = false
|
20
|
+
|
21
|
+
# Compress JavaScripts and CSS
|
22
|
+
config.assets.compress = true
|
23
|
+
|
24
|
+
# Don't fallback to assets pipeline if a precompiled asset is missed
|
25
|
+
config.assets.compile = false
|
26
|
+
|
27
|
+
# Generate digests for assets URLs
|
28
|
+
config.assets.digest = true
|
29
|
+
|
30
|
+
# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
|
31
|
+
# config.assets.precompile += %w( search.js )
|
32
|
+
|
33
|
+
# Send deprecation notices to registered listeners
|
34
|
+
config.active_support.deprecation = :notify
|
35
|
+
|
19
36
|
# Disable delivery errors if you bad email addresses should just be ignored
|
20
37
|
# config.action_mailer.raise_delivery_errors = false
|
21
38
|
|
@@ -24,4 +41,4 @@ TrustyCms::Application.configure do
|
|
24
41
|
# SiteController.cache_timeout = 12.hours
|
25
42
|
# end
|
26
43
|
|
27
|
-
end
|
44
|
+
end
|
data/config/environments/test.rb
CHANGED
@@ -23,6 +23,14 @@ TrustyCms::Application.configure do
|
|
23
23
|
config.consider_all_requests_local = true
|
24
24
|
config.action_controller.perform_caching = false
|
25
25
|
|
26
|
+
# Quiet rack cache logging in test mode
|
27
|
+
Rails.application.middleware.delete Rack::Cache
|
28
|
+
Rails.application.middleware.insert 0, Rack::Cache, { verbose: false }
|
29
|
+
|
30
|
+
# Raise an ActiveModel::MassAssignmentSecurity::Error any time
|
31
|
+
# something is mass-assigned that shouldn't be for ease in debugging.
|
32
|
+
# config.active_record.mass_assignment_sanitizer = :strict
|
33
|
+
|
26
34
|
# Disable request forgery protection in test environment
|
27
35
|
config.action_controller.allow_forgery_protection = false
|
28
36
|
|
@@ -30,6 +38,15 @@ TrustyCms::Application.configure do
|
|
30
38
|
# The :test delivery method accumulates sent emails in the
|
31
39
|
# ActionMailer::Base.deliveries array.
|
32
40
|
config.action_mailer.delivery_method = :test
|
41
|
+
|
42
|
+
# Configure static asset server for tests with Cache-Control for performance
|
43
|
+
config.serve_static_assets = true
|
44
|
+
config.static_cache_control = "public, max-age=3600"
|
45
|
+
|
46
|
+
# Raise exceptions instead of rendering exception templates
|
47
|
+
config.action_dispatch.show_exceptions = false
|
48
|
+
|
49
|
+
config.active_support.deprecation = :stderr
|
33
50
|
end
|
34
51
|
|
35
52
|
|
@@ -1 +1 @@
|
|
1
|
-
require 'active_record_extensions/active_record_extensions'
|
1
|
+
require 'active_record_extensions/active_record_extensions'
|
data/config/initializers/haml.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
#Haml::Template.options[:format] = :html5
|
2
|
-
#Haml::Template.options[:ugly] = Rails.env == 'production'
|
2
|
+
#Haml::Template.options[:ugly] = Rails.env == 'production'
|
@@ -1,2 +1,2 @@
|
|
1
1
|
# The following code alters Rails MissingSourceFile to catch errors in Ruby 1.9.3
|
2
|
-
MissingSourceFile::REGEXPS.push([/^cannot load such file -- (.+)$/i, 1])
|
2
|
+
MissingSourceFile::REGEXPS.push([/^cannot load such file -- (.+)$/i, 1])
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
TrustyCms::Application.config.secret_token = Rails.env.production? ? ENV['SECRET_TOKEN'] : 'this-should-never-be-used-in-production-8d8c51c1afea65da45a7dba520f52536569dd203d5901369001c59259b59393f93a862a869a650b6f58214f8204ac0693a61e93b4c0a349827d4c36320f336a1'
|
@@ -1 +1 @@
|
|
1
|
-
#require 'string_extensions/string_extensions'
|
1
|
+
#require 'string_extensions/string_extensions'
|
@@ -1 +1 @@
|
|
1
|
-
#require 'symbol_extensions'
|
1
|
+
#require 'symbol_extensions'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
TrustyCms
|
1
|
+
TrustyCms.config do |config|
|
2
2
|
config.define 'admin.title', :default => "TrustyCms CMS"
|
3
3
|
config.define 'dev.host'
|
4
4
|
config.define 'local.timezone', :allow_change => true, :select_from => lambda { ActiveSupport::TimeZone::MAPPING.keys.sort }
|
@@ -13,4 +13,4 @@ TrustyCms::Application.config do |config|
|
|
13
13
|
config.define 'site.title', :default => "Your site title", :allow_blank => false
|
14
14
|
config.define 'site.host', :default => "www.example.com", :allow_blank => false
|
15
15
|
config.define 'user.allow_password_reset?', :default => true
|
16
|
-
end
|
16
|
+
end
|
data/config/locales/en.yml
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
---
|
2
|
-
en:
|
2
|
+
en:
|
3
3
|
account: 'Account'
|
4
4
|
activerecord:
|
5
5
|
errors:
|
@@ -29,19 +29,19 @@ en:
|
|
29
29
|
add_field: 'Add Field'
|
30
30
|
add_part: 'Add Part'
|
31
31
|
add_tab: 'Add Tab'
|
32
|
-
admin: 'Administrator'
|
32
|
+
admin: 'Administrator'
|
33
33
|
available_tags: 'Available Tags'
|
34
34
|
available_tags_for: 'Available Tags for %{name}'
|
35
|
-
body: 'Body'
|
35
|
+
body: 'Body'
|
36
36
|
breadcrumb: 'Breadcrumb'
|
37
37
|
buttons:
|
38
38
|
create: 'Create %{name}'
|
39
39
|
save_and_continue: 'Save and Continue Editing'
|
40
|
-
save_changes: 'Save Changes'
|
40
|
+
save_changes: 'Save Changes'
|
41
41
|
cancel: 'Cancel'
|
42
42
|
change: 'Change'
|
43
43
|
close: 'Close'
|
44
|
-
|
44
|
+
trusty_config:
|
45
45
|
admin:
|
46
46
|
title: 'admin header title'
|
47
47
|
defaults:
|
@@ -61,7 +61,7 @@ en:
|
|
61
61
|
user:
|
62
62
|
allow_password_reset?: "allow password reset"
|
63
63
|
content: 'Content'
|
64
|
-
content_type: 'Content‑Type'
|
64
|
+
content_type: 'Content‑Type'
|
65
65
|
creating_status: 'Creating %{model}…'
|
66
66
|
date:
|
67
67
|
abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
|
@@ -72,7 +72,7 @@ en:
|
|
72
72
|
long: "%B %e, %Y"
|
73
73
|
only_day: "%e"
|
74
74
|
short: "%e %b"
|
75
|
-
month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
|
75
|
+
month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
|
76
76
|
order:
|
77
77
|
- :year
|
78
78
|
- :month
|
@@ -87,7 +87,7 @@ en:
|
|
87
87
|
edit: 'Edit'
|
88
88
|
edit_configuration: 'Edit Configuration'
|
89
89
|
edit_layout: 'Edit Layout'
|
90
|
-
edit_page: 'Edit Page'
|
90
|
+
edit_page: 'Edit Page'
|
91
91
|
edit_preferences: 'Edit Preferences'
|
92
92
|
edit_settings: 'Edit Settings'
|
93
93
|
edit_user: 'Edit User'
|
@@ -96,7 +96,7 @@ en:
|
|
96
96
|
extensions: 'Extensions'
|
97
97
|
filter: 'Filter'
|
98
98
|
hidden: 'Hidden'
|
99
|
-
hide: 'Hide'
|
99
|
+
hide: 'Hide'
|
100
100
|
keywords: 'Keywords'
|
101
101
|
language: 'Language'
|
102
102
|
layout: 'Layout'
|
@@ -109,40 +109,40 @@ en:
|
|
109
109
|
more_info: 'More Info'
|
110
110
|
name: 'Name'
|
111
111
|
new_homepage: 'New Homepage'
|
112
|
-
new_layout: 'New Layout'
|
112
|
+
new_layout: 'New Layout'
|
113
113
|
new_page: 'New Page'
|
114
114
|
new_password: 'New Password'
|
115
|
-
new_user: 'New User'
|
115
|
+
new_user: 'New User'
|
116
116
|
'no': 'No'
|
117
117
|
no_layouts: 'No Layouts'
|
118
118
|
no_pages: 'No Pages'
|
119
119
|
normal_page: 'Normal Page'
|
120
|
-
notes: 'Notes'
|
120
|
+
notes: 'Notes'
|
121
121
|
optional: 'Optional'
|
122
122
|
or: 'or'
|
123
123
|
page: 'Page'
|
124
124
|
page_hierarchy: 'Page hierarchy of the current site'
|
125
125
|
page_page: 'Page Part'
|
126
|
-
page_title: 'Page Title'
|
126
|
+
page_title: 'Page Title'
|
127
127
|
page_type: 'Page Type'
|
128
128
|
pages: 'Pages'
|
129
129
|
pages_controller:
|
130
|
-
removed_many: "The pages were successfully removed from the site."
|
131
|
-
removed_one: "The page was successfully removed from the site."
|
132
|
-
saved: "Your page has been saved below."
|
133
|
-
password: 'Password'
|
130
|
+
removed_many: "The pages were successfully removed from the site."
|
131
|
+
removed_one: "The page was successfully removed from the site."
|
132
|
+
saved: "Your page has been saved below."
|
133
|
+
password: 'Password'
|
134
134
|
password_confirmation: 'Confirm New Password'
|
135
135
|
personal: 'Personal'
|
136
136
|
personal_preferences: 'Personal Preferences'
|
137
137
|
please_login: 'Please Login'
|
138
138
|
powered_by: 'Powered by'
|
139
|
-
preferences: 'Preferences'
|
139
|
+
preferences: 'Preferences'
|
140
140
|
preferences_controller:
|
141
|
-
error_updating: 'There was an error updating your preferences.'
|
142
|
-
updated: 'Your preferences have been updated.'
|
141
|
+
error_updating: 'There was an error updating your preferences.'
|
142
|
+
updated: 'Your preferences have been updated.'
|
143
143
|
preview: 'Preview'
|
144
144
|
published: 'Published'
|
145
|
-
published_at: 'Published at'
|
145
|
+
published_at: 'Published at'
|
146
146
|
published_on: 'Published On'
|
147
147
|
reference: 'Reference'
|
148
148
|
remember_me: 'Remember me'
|
@@ -154,7 +154,7 @@ en:
|
|
154
154
|
remove_pages: 'Remove %{pages}'
|
155
155
|
remove_tab: 'Remove Tab'
|
156
156
|
remove_user: 'Remove user'
|
157
|
-
required: 'Required'
|
157
|
+
required: 'Required'
|
158
158
|
resource_controller:
|
159
159
|
not_found: "%{humanized_model_name} could not be found."
|
160
160
|
removed: "%{humanized_model_name} has been deleted."
|
@@ -164,13 +164,13 @@ en:
|
|
164
164
|
reviewed: 'Reviewed'
|
165
165
|
roles: 'Roles'
|
166
166
|
saving_changes: Saving Changes
|
167
|
-
saving_preferences: Saving preferences
|
167
|
+
saving_preferences: Saving preferences
|
168
168
|
scheduled: "Scheduled"
|
169
169
|
search_tags: 'Search Tags:'
|
170
170
|
select:
|
171
171
|
default: '<default>'
|
172
172
|
inherit: '<inherit>'
|
173
|
-
none: '<none>'
|
173
|
+
none: '<none>'
|
174
174
|
normal: '<normal>'
|
175
175
|
settings: 'Settings'
|
176
176
|
show_all: 'Show all'
|
@@ -180,24 +180,24 @@ en:
|
|
180
180
|
testing: Testing
|
181
181
|
text:
|
182
182
|
layouts:
|
183
|
-
remove_warning: 'Are you sure you want to <strong class="warning">permanently remove</strong> the following layout?'
|
184
|
-
pages:
|
183
|
+
remove_warning: 'Are you sure you want to <strong class="warning">permanently remove</strong> the following layout?'
|
184
|
+
pages:
|
185
185
|
remove_warning: 'Are you sure you want to <strong class="warning">permanently remove</strong> the following %{pages}?'
|
186
|
-
users:
|
186
|
+
users:
|
187
187
|
remove_warning: 'Are you sure you want to <strong class="warning">permanently remove</strong> the following user?'
|
188
|
-
this_file_language: "English"
|
188
|
+
this_file_language: "English"
|
189
189
|
time:
|
190
190
|
am: 'am'
|
191
191
|
formats:
|
192
192
|
datetime:
|
193
193
|
formats:
|
194
194
|
default: "%Y-%m-%dT%H:%M:%S%Z"
|
195
|
-
default: "%a %b %d %H:%M:%S %Z %Y"
|
195
|
+
default: "%a %b %d %H:%M:%S %Z %Y"
|
196
196
|
long: "%B %d, %Y %H:%M"
|
197
197
|
only_second: "%S"
|
198
198
|
short: "%d %b %H:%M"
|
199
199
|
time: "%H:%M"
|
200
|
-
timestamp: "%I:%M %p on %B %d, %Y"
|
200
|
+
timestamp: "%I:%M %p on %B %d, %Y"
|
201
201
|
pm: 'pm'
|
202
202
|
timestamp:
|
203
203
|
at: 'at'
|
@@ -219,12 +219,12 @@ en:
|
|
219
219
|
username_or_email: 'Username or E-mail Address'
|
220
220
|
users: 'Users'
|
221
221
|
users_controller:
|
222
|
-
cannot_delete_self: 'You cannot delete yourself.'
|
222
|
+
cannot_delete_self: 'You cannot delete yourself.'
|
223
223
|
version: 'Version'
|
224
224
|
view_site: 'View Site'
|
225
225
|
warning: 'Warning'
|
226
226
|
website: 'Website'
|
227
227
|
welcome_controller:
|
228
|
-
invalid_user: 'Invalid username, e-mail address, or password.'
|
229
|
-
logged_out: 'You are now logged out.'
|
228
|
+
invalid_user: 'Invalid username, e-mail address, or password.'
|
229
|
+
logged_out: 'You are now logged out.'
|
230
230
|
'yes': 'Yes'
|
@@ -1,12 +1,12 @@
|
|
1
1
|
|
2
2
|
---
|
3
3
|
en:
|
4
|
-
desc:
|
4
|
+
desc:
|
5
5
|
aggregate-children-count: "Renders the total count of children of the aggregated pages. Accepts the
|
6
6
|
same options as @<r:children:each />@.
|
7
7
|
|
8
8
|
*Usage*:
|
9
|
-
|
9
|
+
|
10
10
|
<pre><code><r:aggregate paths=\"/section1; /section2; /section3\">
|
11
11
|
<r:children:count />
|
12
12
|
</r:aggregate></code></pre>"
|
@@ -14,7 +14,7 @@ en:
|
|
14
14
|
same options as the plain @<r:children:each />@.
|
15
15
|
|
16
16
|
*Usage*:
|
17
|
-
|
17
|
+
|
18
18
|
<pre><code><r:aggregate paths=\"/section1; /section2; /section3\">
|
19
19
|
<r:children:each>
|
20
20
|
...
|
@@ -24,7 +24,7 @@ en:
|
|
24
24
|
same options as @<r:children:each />@.
|
25
25
|
|
26
26
|
*Usage*:
|
27
|
-
|
27
|
+
|
28
28
|
<pre><code><r:aggregate paths=\"/section1; /section2; /section3\">
|
29
29
|
<r:children:first>
|
30
30
|
...
|
@@ -34,7 +34,7 @@ en:
|
|
34
34
|
same options as @<r:children:each />@.
|
35
35
|
|
36
36
|
*Usage*:
|
37
|
-
|
37
|
+
|
38
38
|
<pre><code><r:aggregate paths=\"/section1; /section2; /section3\">
|
39
39
|
<r:children:last>
|
40
40
|
...
|
@@ -42,23 +42,23 @@ en:
|
|
42
42
|
</r:aggregate></code></pre>"
|
43
43
|
aggregate-each: "Sets the scope to the individual aggregated page allowing you to
|
44
44
|
iterate through each of the listed paths.
|
45
|
-
|
45
|
+
|
46
46
|
*Usage*:
|
47
|
-
|
47
|
+
|
48
48
|
<pre><code><r:aggregate:each paths=\"/section1; /section2; /section3\"> ... </r:aggregate:each></code></pre>"
|
49
49
|
aggregate: "Aggregates the children of multiple paths using the @paths@ attribute.
|
50
50
|
Useful for combining many different sections/categories into a single
|
51
51
|
feed or listing.
|
52
|
-
|
52
|
+
|
53
53
|
*Usage*:
|
54
|
-
|
54
|
+
|
55
55
|
<pre><code><r:aggregate paths=\"/section1; /section2; /section3\"> ... </r:aggregate></code></pre>"
|
56
56
|
author: "Renders the name of the author of the current page."
|
57
57
|
breadcrumb: "Renders the @breadcrumb@ attribute of the current page."
|
58
58
|
breadcrumbs: "Renders a trail of breadcrumbs to the current page. The separator attribute
|
59
59
|
specifies the HTML fragment that is inserted between each of the breadcrumbs. By
|
60
60
|
default it is set to @>@. The boolean @nolinks@ attribute can be specified to render
|
61
|
-
breadcrumbs in plain text, without any links (useful when generating title tag).
|
61
|
+
breadcrumbs in plain text, without any links (useful when generating title tag).
|
62
62
|
Set the boolean @noself@ attribute to omit the present page (useful in page headers).
|
63
63
|
|
64
64
|
*Usage:*
|
@@ -70,7 +70,7 @@ en:
|
|
70
70
|
current child.
|
71
71
|
|
72
72
|
*Usage:*
|
73
|
-
|
73
|
+
|
74
74
|
<pre><code><r:children:each>
|
75
75
|
<r:child>...</r:child>
|
76
76
|
</r:children:each>
|
@@ -87,7 +87,7 @@ en:
|
|
87
87
|
separated list.
|
88
88
|
|
89
89
|
*Usage:*
|
90
|
-
|
90
|
+
|
91
91
|
<pre><code><r:children:each>
|
92
92
|
<r:header [name=\"header_name\"] [restart=\"name1[;name2;...]\"]>
|
93
93
|
...
|
@@ -96,9 +96,9 @@ en:
|
|
96
96
|
</code></pre>"
|
97
97
|
children-each-if_first: "Renders the tag contents only if the current page is the first child in the context of
|
98
98
|
a children:each tag
|
99
|
-
|
99
|
+
|
100
100
|
*Usage:*
|
101
|
-
|
101
|
+
|
102
102
|
<pre><code><r:children:each>
|
103
103
|
<r:if_first >
|
104
104
|
...
|
@@ -107,9 +107,9 @@ en:
|
|
107
107
|
</code></pre>"
|
108
108
|
children-each-if_last: "Renders the tag contents only if the current page is the last child in the context of
|
109
109
|
a children:each tag
|
110
|
-
|
110
|
+
|
111
111
|
*Usage:*
|
112
|
-
|
112
|
+
|
113
113
|
<pre><code><r:children:each>
|
114
114
|
<r:if_last >
|
115
115
|
...
|
@@ -118,9 +118,9 @@ en:
|
|
118
118
|
</code></pre>"
|
119
119
|
children-each-unless_first: "Renders the tag contents unless the current page is the first child in the context of
|
120
120
|
a children:each tag
|
121
|
-
|
121
|
+
|
122
122
|
*Usage:*
|
123
|
-
|
123
|
+
|
124
124
|
<pre><code><r:children:each>
|
125
125
|
<r:unless_first >
|
126
126
|
...
|
@@ -129,9 +129,9 @@ en:
|
|
129
129
|
</code></pre>"
|
130
130
|
children-each-unless_last: "Renders the tag contents unless the current page is the last child in the context of
|
131
131
|
a children:each tag
|
132
|
-
|
132
|
+
|
133
133
|
*Usage:*
|
134
|
-
|
134
|
+
|
135
135
|
<pre><code><r:children:each>
|
136
136
|
<r:unless_last >
|
137
137
|
...
|
@@ -140,16 +140,16 @@ en:
|
|
140
140
|
</code></pre>"
|
141
141
|
children-each: "Cycles through each of the children. Inside this tag all page attribute tags
|
142
142
|
are mapped to the current child page.
|
143
|
-
|
143
|
+
|
144
144
|
Supply @paginated=\"true\"@ to paginate the displayed list. will_paginate view helper
|
145
145
|
options can also be specified, including @per_page@, @previous_label@, @next_label@,
|
146
146
|
@class@, @separator@, @inner_window@ and @outer_window@.
|
147
147
|
|
148
148
|
*Usage:*
|
149
|
-
|
149
|
+
|
150
150
|
<pre><code><r:children:each [offset=\"number\"] [limit=\"number\"]
|
151
151
|
[by=\"published_at|updated_at|created_at|slug|title|keywords|description\"]
|
152
|
-
[order=\"asc|desc\"]
|
152
|
+
[order=\"asc|desc\"]
|
153
153
|
[status=\"draft|reviewed|published|hidden|all\"]
|
154
154
|
[paginated=\"true\"]
|
155
155
|
[per_page=\"number\"]
|
@@ -161,18 +161,18 @@ en:
|
|
161
161
|
the first child. Takes the same ordering options as @<r:children:each>@.
|
162
162
|
|
163
163
|
*Usage:*
|
164
|
-
|
164
|
+
|
165
165
|
<pre><code><r:children:first>...</r:children:first></code></pre>"
|
166
166
|
children-last: "Returns the last child. Inside this tag all page attribute tags are mapped to
|
167
167
|
the last child. Takes the same ordering options as @<r:children:each>@.
|
168
168
|
|
169
169
|
*Usage:*
|
170
|
-
|
170
|
+
|
171
171
|
<pre><code><r:children:last>...</r:children:last></code></pre>"
|
172
172
|
children: "Gives access to a page's children.
|
173
173
|
|
174
174
|
*Usage:*
|
175
|
-
|
175
|
+
|
176
176
|
<pre><code><r:children>...</r:children></code></pre>"
|
177
177
|
comment: "This is deprecated and will be removed. Plase use @<r:hide>@
|
178
178
|
Nothing inside a set of comment tags is rendered.
|
@@ -189,17 +189,17 @@ en:
|
|
189
189
|
is set to true.
|
190
190
|
|
191
191
|
*Usage:*
|
192
|
-
|
192
|
+
|
193
193
|
<pre><code><r:content [part=\"part_name\"] [inherit=\"true|false\"] [contextual=\"true|false\"] /></code></pre>"
|
194
|
-
cycle: "Renders a counter value or one of the values given based on a global cycle counter.
|
195
|
-
|
194
|
+
cycle: "Renders a counter value or one of the values given based on a global cycle counter.
|
195
|
+
|
196
196
|
To get a numeric counter just use the tag, or specify a start value with @start@.
|
197
197
|
Use the @reset@ attribute to reset the cycle to the beginning. Using @reset@ on a
|
198
|
-
numbered cycle will begin at 0. Use the @name@ attribute to track multiple cycles;
|
198
|
+
numbered cycle will begin at 0. Use the @name@ attribute to track multiple cycles;
|
199
199
|
the default is @cycle@.
|
200
200
|
|
201
201
|
*Usage:*
|
202
|
-
|
202
|
+
|
203
203
|
<pre><code><r:cycle [values=\"first, second, third\"] [reset=\"true|false\"] [name=\"cycle\"] [start=\"second\"] /></code></pre>
|
204
204
|
<pre><code><r:cycle start=\"3\" /></code></pre>"
|
205
205
|
date: "Renders the date based on the current page (by default when it was published or created).
|
@@ -248,7 +248,7 @@ en:
|
|
248
248
|
This is typically used inside another tag (like <r:children:each>) to add conditional mark-up if the child element is or descends from the current page.
|
249
249
|
|
250
250
|
*Usage:*
|
251
|
-
|
251
|
+
|
252
252
|
<pre><code><r:if_ancestor_or_self>...</r:if_ancestor_or_self></code></pre>"
|
253
253
|
if_children: "Renders the contained elements only if the current contextual page has one or
|
254
254
|
more child pages. The @status@ attribute limits the status of found child pages
|
@@ -256,7 +256,7 @@ en:
|
|
256
256
|
non-virtual pages regardless of status.
|
257
257
|
|
258
258
|
*Usage:*
|
259
|
-
|
259
|
+
|
260
260
|
<pre><code><r:if_children [status=\"published\"]>...</r:if_children></code></pre>"
|
261
261
|
if_content: "Renders the containing elements if all of the listed parts exist on a page.
|
262
262
|
By default the @part@ attribute is set to @body@, but you may list more than one
|
@@ -268,7 +268,7 @@ en:
|
|
268
268
|
By default the @find@ attribute is set to @all@.
|
269
269
|
|
270
270
|
*Usage:*
|
271
|
-
|
271
|
+
|
272
272
|
<pre><code><r:if_content [part=\"part_name, other_part\"] [inherit=\"true\"] [find=\"any\"]>...</r:if_content></code></pre>"
|
273
273
|
if_dev: "Renders the containing elements only if TrustyCms in is development mode.
|
274
274
|
|
@@ -287,24 +287,24 @@ en:
|
|
287
287
|
is not the root page.
|
288
288
|
|
289
289
|
*Usage:*
|
290
|
-
|
290
|
+
|
291
291
|
<pre><code><r:if_parent>...</r:if_parent></code></pre>"
|
292
292
|
if_path: "Renders the containing elements only if the page's path matches the regular expression
|
293
293
|
given in the @matches@ attribute. If the @ignore_case@ attribute is set to false, the
|
294
294
|
match is case sensitive. By default, @ignore_case@ is set to true.
|
295
295
|
|
296
296
|
*Usage:*
|
297
|
-
|
297
|
+
|
298
298
|
<pre><code><r:if_path matches=\"regexp\" [ignore_case=\"true|false\"]>...</r:if_path></code></pre>"
|
299
299
|
if_self: "Renders the contained elements if the current contextual page is also the actual page.
|
300
300
|
|
301
301
|
This is typically used inside another tag (like <r:children:each>) to add conditional mark-up if the child element is the current page.
|
302
302
|
|
303
303
|
*Usage:*
|
304
|
-
|
304
|
+
|
305
305
|
<pre><code><r:if_self>...</r:if_self></code></pre>"
|
306
|
-
javascript: "Renders the content from or a reference to the javascript specified in the @slug@
|
307
|
-
attribute. Additionally, the @as@ attribute can be used to make the tag render
|
306
|
+
javascript: "Renders the content from or a reference to the javascript specified in the @slug@
|
307
|
+
attribute. Additionally, the @as@ attribute can be used to make the tag render
|
308
308
|
as one of the following:
|
309
309
|
|
310
310
|
* with no @as@ value the javascript's content is rendered by default.
|
@@ -317,15 +317,15 @@ When rendering @as=\"inline\"@ or @as=\"link\"@, the (X)HTML @type@ attribute
|
|
317
317
|
is automatically be set to the default javascript content-type.
|
318
318
|
You can overrride this attribute or add additional ones by passing extra
|
319
319
|
attributes to the @<r:javascript>@ tag.
|
320
|
-
|
320
|
+
|
321
321
|
*Usage:*
|
322
|
-
|
323
|
-
<pre><code><r:javascript slug=\"site.js\" as=\"inline\"
|
322
|
+
|
323
|
+
<pre><code><r:javascript slug=\"site.js\" as=\"inline\"
|
324
324
|
type=\"text/custom\" id=\"my_id\" />
|
325
325
|
<r:javascript slug=\"other.js\" as=\"link\" /></code></pre>
|
326
326
|
|
327
327
|
The above example will produce the following:
|
328
|
-
|
328
|
+
|
329
329
|
<pre><code><script type=\"text/custom\" id=\"my_id\">
|
330
330
|
//<![CDATA[
|
331
331
|
var your_script = 'this content';
|
@@ -343,9 +343,9 @@ The above example will produce the following:
|
|
343
343
|
*Usage:*
|
344
344
|
|
345
345
|
<pre><code><r:link [anchor=\"name\"] [other attributes...] /></code></pre>
|
346
|
-
|
346
|
+
|
347
347
|
or
|
348
|
-
|
348
|
+
|
349
349
|
<pre><code><r:link [anchor=\"name\"] [other attributes...]>link text here</r:link></code></pre>"
|
350
350
|
markdown: "Filters its contents with the Markdown filter.
|
351
351
|
|
@@ -430,13 +430,13 @@ The above example will produce the following:
|
|
430
430
|
page: "Causes the tags referring to a page's attributes to refer to the current page.
|
431
431
|
|
432
432
|
*Usage:*
|
433
|
-
|
433
|
+
|
434
434
|
<pre><code><r:page>...</r:page></code></pre>"
|
435
435
|
pagination: "The pagination tag is not usually called directly. Supply paginated=\"true\" when you display a list and it will
|
436
436
|
be automatically display only the current page of results, with pagination controls at the bottom.
|
437
437
|
|
438
438
|
*Usage:*
|
439
|
-
|
439
|
+
|
440
440
|
<pre><code><r:children:each paginated=\"true\" per_page=\"50\" container=\"false\" previous_label=\"foo\" next_label=\"bar\">
|
441
441
|
<r:child>...</r:child>
|
442
442
|
</r:children:each>
|
@@ -444,7 +444,7 @@ The above example will produce the following:
|
|
444
444
|
parent: "Page attribute tags inside this tag refer to the parent of the current page.
|
445
445
|
|
446
446
|
*Usage:*
|
447
|
-
|
447
|
+
|
448
448
|
<pre><code><r:parent>...</r:parent></code></pre>"
|
449
449
|
path: "Renders the @path@ attribute of the current page."
|
450
450
|
random: "Randomly renders one of the options specified by the @option@ tags.
|
@@ -490,8 +490,8 @@ The above example will produce the following:
|
|
490
490
|
*Usage:*
|
491
491
|
|
492
492
|
<pre><code><r:status [downcase='true'] /></code></pre>"
|
493
|
-
stylesheet: "Renders the content from or a reference to the stylesheet specified in the @slug@
|
494
|
-
attribute. Additionally, the @as@ attribute can be used to make the tag render
|
493
|
+
stylesheet: "Renders the content from or a reference to the stylesheet specified in the @slug@
|
494
|
+
attribute. Additionally, the @as@ attribute can be used to make the tag render
|
495
495
|
as one of the following:
|
496
496
|
|
497
497
|
* with no @as@ value the stylesheet's content is rendered by default.
|
@@ -504,22 +504,22 @@ When rendering @as=\"inline\"@ or @as=\"link\"@, the (X)HTML @type@ attribute
|
|
504
504
|
is automatically be set to the default stylesheet content-type.
|
505
505
|
You can overrride this attribute or add additional ones by passing extra
|
506
506
|
attributes to the @<r:stylesheet>@ tag.
|
507
|
-
|
507
|
+
|
508
508
|
*Usage:*
|
509
|
-
|
510
|
-
<pre><code><r:stylesheet slug=\"site.css\" as=\"inline\"
|
509
|
+
|
510
|
+
<pre><code><r:stylesheet slug=\"site.css\" as=\"inline\"
|
511
511
|
type=\"text/custom\" id=\"my_id\" />
|
512
|
-
<r:stylesheet slug=\"other.css\" as=\"link\"
|
512
|
+
<r:stylesheet slug=\"other.css\" as=\"link\"
|
513
513
|
rel=\"alternate stylesheet\" /></code></pre>
|
514
514
|
|
515
515
|
The above example will produce the following:
|
516
|
-
|
516
|
+
|
517
517
|
<pre><code><style type=\"text/custom\" id=\"my_id\">
|
518
518
|
/*<![CDATA[*/
|
519
519
|
.your_stylesheet { content: 'here' }
|
520
520
|
/*]]>*/
|
521
521
|
</style>
|
522
|
-
<link rel=\"alternate stylesheet\" type=\"text/css\"
|
522
|
+
<link rel=\"alternate stylesheet\" type=\"text/css\"
|
523
523
|
href=\"/css/other.css\" /></code></pre>"
|
524
524
|
textile: "Filters its contents with the Textile filter.
|
525
525
|
|
@@ -542,7 +542,7 @@ The above example will produce the following:
|
|
542
542
|
This is typically used inside another tag (like <r:children:each>) to add conditional mark-up unless the child element is or descends from the current page.
|
543
543
|
|
544
544
|
*Usage:*
|
545
|
-
|
545
|
+
|
546
546
|
<pre><code><r:unless_ancestor_or_self>...</r:unless_ancestor_or_self></code></pre>"
|
547
547
|
unless_children: "Renders the contained elements only if the current contextual page has no children.
|
548
548
|
The @status@ attribute limits the status of found child pages to the given status,
|
@@ -550,7 +550,7 @@ The above example will produce the following:
|
|
550
550
|
regardless of status.
|
551
551
|
|
552
552
|
*Usage:*
|
553
|
-
|
553
|
+
|
554
554
|
<pre><code><r:unless_children [status=\"published\"]>...</r:unless_children></code></pre>"
|
555
555
|
unless_content: "The opposite of the @if_content@ tag. It renders the contained elements if all of the
|
556
556
|
specified parts do not exist. Setting the optional @inherit@ to true will search
|
@@ -561,7 +561,7 @@ The above example will produce the following:
|
|
561
561
|
By default the @find@ attribute is set to @all@.
|
562
562
|
|
563
563
|
*Usage:*
|
564
|
-
|
564
|
+
|
565
565
|
<pre><code><r:unless_content [part=\"part_name, other_part\"] [inherit=\"false\"] [find=\"any\"]>...</r:unless_content></code></pre>"
|
566
566
|
unless_dev: "The opposite of the @if_dev@ tag.
|
567
567
|
|
@@ -580,12 +580,12 @@ The above example will produce the following:
|
|
580
580
|
is the root page.
|
581
581
|
|
582
582
|
*Usage:*
|
583
|
-
|
583
|
+
|
584
584
|
<pre><code><r:unless_parent>...</r:unless_parent></code></pre>"
|
585
585
|
unless_path: "The opposite of the @if_path@ tag.
|
586
586
|
|
587
587
|
*Usage:*
|
588
|
-
|
588
|
+
|
589
589
|
<pre><code><r:unless_path matches=\"regexp\" [ignore_case=\"true|false\"]>...</r:unless_path></code></pre>"
|
590
590
|
unless_self: "Renders the contained elements unless the current contextual page is also the actual page.
|
591
591
|
|
@@ -598,7 +598,7 @@ The above example will produce the following:
|
|
598
598
|
the snippet is called as a double tag.
|
599
599
|
|
600
600
|
*Usage (within a snippet):*
|
601
|
-
|
601
|
+
|
602
602
|
<pre><code>
|
603
603
|
<div id=\"outer\">
|
604
604
|
<p>before</p>
|