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
@@ -3,11 +3,11 @@ class TrustyCms::AdminUI::RegionPartials
|
|
3
3
|
@partials = Hash.new {|h,k| h[k] = "<strong>`#{k}' default partial not found!</strong>" }
|
4
4
|
@template = template
|
5
5
|
end
|
6
|
-
|
6
|
+
|
7
7
|
def [](key)
|
8
8
|
@partials[key.to_s]
|
9
9
|
end
|
10
|
-
|
10
|
+
|
11
11
|
def method_missing(method, *args, &block)
|
12
12
|
if block_given?
|
13
13
|
# Ruby 1.9.2 yields self in instance_eval... see https://gist.github.com/479572
|
@@ -20,4 +20,4 @@ class TrustyCms::AdminUI::RegionPartials
|
|
20
20
|
@partials[method.to_s]
|
21
21
|
end
|
22
22
|
end
|
23
|
-
end
|
23
|
+
end
|
@@ -6,11 +6,11 @@ class TrustyCms::AdminUI::RegionSet
|
|
6
6
|
end
|
7
7
|
yield self if block_given?
|
8
8
|
end
|
9
|
-
|
9
|
+
|
10
10
|
def [](region)
|
11
11
|
@regions[region.to_sym]
|
12
12
|
end
|
13
|
-
|
13
|
+
|
14
14
|
def add(region=nil, partial=nil, options={})
|
15
15
|
raise ArgumentError, "You must specify a region and a partial" unless region and partial
|
16
16
|
if options[:before]
|
@@ -23,7 +23,7 @@ class TrustyCms::AdminUI::RegionSet
|
|
23
23
|
self[region] << partial
|
24
24
|
end
|
25
25
|
end
|
26
|
-
|
26
|
+
|
27
27
|
def method_missing(method, *args, &block)
|
28
28
|
if args.empty?
|
29
29
|
self[method]
|
@@ -31,5 +31,5 @@ class TrustyCms::AdminUI::RegionSet
|
|
31
31
|
super
|
32
32
|
end
|
33
33
|
end
|
34
|
-
|
35
|
-
end
|
34
|
+
|
35
|
+
end
|
@@ -1,14 +1,14 @@
|
|
1
1
|
module TrustyCms
|
2
2
|
class Config
|
3
3
|
class Definition
|
4
|
-
|
4
|
+
|
5
5
|
attr_reader :empty, :default, :type, :notes, :validate_with, :select_from, :allow_blank, :allow_display, :allow_change, :units, :definer
|
6
6
|
|
7
7
|
# Configuration 'definitions' are metadata held in memory that add restriction and description to individual config entries.
|
8
8
|
#
|
9
9
|
# By default radiant's configuration machinery is open and ad-hoc: config items are just globally-accessible variables.
|
10
|
-
# They're created when first mentioned and then available in all parts of the application. The definition mechanism is a way
|
11
|
-
# to place limits on that behavior. It allows you to protect a config entry, to specify the values it can take and to
|
10
|
+
# They're created when first mentioned and then available in all parts of the application. The definition mechanism is a way
|
11
|
+
# to place limits on that behavior. It allows you to protect a config entry, to specify the values it can take and to
|
12
12
|
# validate it when it changes. In the next update it will also allow you to declare that
|
13
13
|
# a config item is global or site-specific.
|
14
14
|
#
|
@@ -27,32 +27,32 @@ module TrustyCms
|
|
27
27
|
instance_variable_set "@#{attribute}".to_sym, options[attribute]
|
28
28
|
end
|
29
29
|
end
|
30
|
-
|
30
|
+
|
31
31
|
# Returns true if the definition included an :empty flag, which should only be the case for the blank, unrestricting
|
32
32
|
# definitions created when an undefined config item is set or got.
|
33
33
|
#
|
34
34
|
def empty?
|
35
35
|
!!empty
|
36
36
|
end
|
37
|
-
|
38
|
-
# Returns true if the definition included a :type => :boolean parameter. Config entries that end in '?' are automatically
|
37
|
+
|
38
|
+
# Returns true if the definition included a :type => :boolean parameter. Config entries that end in '?' are automatically
|
39
39
|
# considered boolean, whether a type is declared or not. config.boolean? may therefore differ from config.definition.boolean?
|
40
40
|
#
|
41
41
|
def boolean?
|
42
42
|
type == :boolean
|
43
43
|
end
|
44
|
-
|
44
|
+
|
45
45
|
# Returns true if the definition included a :select_from parameter (either as list or proc).
|
46
46
|
#
|
47
47
|
def selector?
|
48
|
-
!select_from.blank?
|
48
|
+
!select_from.blank?
|
49
49
|
end
|
50
|
-
|
50
|
+
|
51
51
|
# Returns true if the definition included a :type => :integer parameter
|
52
52
|
def integer?
|
53
53
|
type == :integer
|
54
54
|
end
|
55
|
-
|
55
|
+
|
56
56
|
# Returns the list of possible values for this config entry in a form suitable for passing to options_for_select.
|
57
57
|
# if :select_from is a proc it is called first with no arguments and its return value passed through.
|
58
58
|
#
|
@@ -65,7 +65,7 @@ module TrustyCms
|
|
65
65
|
choices
|
66
66
|
end
|
67
67
|
end
|
68
|
-
|
68
|
+
|
69
69
|
# in definitions we accept anything that options_for_select would normally take
|
70
70
|
# here we standardises on an options array-of-arrays so that it's easier to validate input
|
71
71
|
#
|
@@ -73,8 +73,8 @@ module TrustyCms
|
|
73
73
|
choices = choices.to_a if Hash === choices
|
74
74
|
choices = choices.collect{|c| (c.is_a? Array) ? c : [c,c]}
|
75
75
|
end
|
76
|
-
|
77
|
-
# If the config item is a selector and :select_from specifies [name, value] pairs (as hash or array),
|
76
|
+
|
77
|
+
# If the config item is a selector and :select_from specifies [name, value] pairs (as hash or array),
|
78
78
|
# this will return the name corresponding to the currently selected value.
|
79
79
|
#
|
80
80
|
def selected(value)
|
@@ -82,7 +82,7 @@ module TrustyCms
|
|
82
82
|
pair.first
|
83
83
|
end
|
84
84
|
end
|
85
|
-
|
85
|
+
|
86
86
|
# Checks the supplied value against the validation rules for this definition.
|
87
87
|
# There are several ways in which validations might be defined or implied:
|
88
88
|
# * if :validate_with specifies a block, the setting object is passed to the block
|
@@ -106,36 +106,36 @@ module TrustyCms
|
|
106
106
|
Integer(setting.value) rescue setting.errors.add :value, :not_a_number
|
107
107
|
end
|
108
108
|
end
|
109
|
-
|
109
|
+
|
110
110
|
# Returns true if the value is one of the permitted selections. Not case-sensitive.
|
111
111
|
def selectable?(value)
|
112
112
|
return true unless selector?
|
113
113
|
selection.map(&:last).map(&:downcase).include?(value.downcase)
|
114
114
|
end
|
115
|
-
|
115
|
+
|
116
116
|
# Returns true unless :allow_blank has been explicitly set to false. Defaults to true.
|
117
117
|
# A config item that does not allow_blank must be set or it will not be valid.
|
118
118
|
def allow_blank?
|
119
119
|
true unless allow_blank == false
|
120
120
|
end
|
121
|
-
|
122
|
-
# Returns true unless :allow_change has been explicitly set to false. Defaults to true.
|
121
|
+
|
122
|
+
# Returns true unless :allow_change has been explicitly set to false. Defaults to true.
|
123
123
|
# A config item that is not settable cannot be changed in the running application.
|
124
124
|
def settable?
|
125
125
|
true unless allow_change == false
|
126
126
|
end
|
127
|
-
|
127
|
+
|
128
128
|
# Returns true unless :allow_change has been explicitly set to false. Defaults to true.
|
129
129
|
# A config item that is not visible cannot be displayed in a radius tag.
|
130
130
|
def visible?
|
131
131
|
true unless allow_display == false
|
132
132
|
end
|
133
|
-
|
133
|
+
|
134
134
|
# Returns true if :allow_display has been explicitly set to false. Defaults to true.
|
135
135
|
def hidden?
|
136
136
|
true if allow_display == false
|
137
137
|
end
|
138
|
-
|
138
|
+
|
139
139
|
end
|
140
140
|
end
|
141
141
|
end
|
data/lib/trusty_cms/engine.rb
CHANGED
data/lib/trusty_cms/extension.rb
CHANGED
@@ -10,46 +10,46 @@ module TrustyCms
|
|
10
10
|
annotate :version, :description, :url, :extension_name, :path
|
11
11
|
|
12
12
|
attr_writer :active
|
13
|
-
|
13
|
+
|
14
14
|
def active?
|
15
15
|
@active
|
16
16
|
end
|
17
|
-
|
17
|
+
|
18
18
|
def root
|
19
19
|
path.to_s
|
20
20
|
end
|
21
|
-
|
21
|
+
|
22
22
|
def migrated?
|
23
23
|
migrator.new(:up, migrations_path).pending_migrations.empty?
|
24
24
|
end
|
25
|
-
|
25
|
+
|
26
26
|
def enabled?
|
27
27
|
active? and migrated?
|
28
28
|
end
|
29
|
-
|
29
|
+
|
30
30
|
# Conventional plugin-like routing
|
31
31
|
def routed?
|
32
32
|
File.exist?(routing_file)
|
33
33
|
end
|
34
|
-
|
34
|
+
|
35
35
|
def migrations_path
|
36
36
|
File.join(self.root, 'db', 'migrate')
|
37
37
|
end
|
38
|
-
|
38
|
+
|
39
39
|
def migrates_from
|
40
40
|
@migrates_from ||= {}
|
41
41
|
end
|
42
|
-
|
42
|
+
|
43
43
|
def routing_file
|
44
44
|
File.join(self.root, 'config', 'routes.rb')
|
45
45
|
end
|
46
|
-
|
46
|
+
|
47
47
|
def load_initializers
|
48
48
|
Dir["#{self.root}/config/initializers/**/*.rb"].sort.each do |initializer|
|
49
|
-
|
49
|
+
require initializer
|
50
50
|
end
|
51
51
|
end
|
52
|
-
|
52
|
+
|
53
53
|
def migrator
|
54
54
|
unless @migrator
|
55
55
|
extension = self
|
@@ -57,11 +57,11 @@ module TrustyCms
|
|
57
57
|
end
|
58
58
|
@migrator
|
59
59
|
end
|
60
|
-
|
60
|
+
|
61
61
|
def admin
|
62
62
|
AdminUI.instance
|
63
63
|
end
|
64
|
-
|
64
|
+
|
65
65
|
def tab(name, options={}, &block)
|
66
66
|
@the_tab = admin.nav[name]
|
67
67
|
unless @the_tab
|
@@ -84,7 +84,7 @@ module TrustyCms
|
|
84
84
|
return @the_tab
|
85
85
|
end
|
86
86
|
alias :add_tab :tab
|
87
|
-
|
87
|
+
|
88
88
|
def add_item(*args)
|
89
89
|
@the_tab.add_item(*args)
|
90
90
|
end
|
@@ -140,7 +140,7 @@ module TrustyCms
|
|
140
140
|
def extension_config(&block)
|
141
141
|
yield Rails.configuration
|
142
142
|
end
|
143
|
-
|
143
|
+
|
144
144
|
end
|
145
145
|
end
|
146
146
|
end
|
@@ -48,11 +48,11 @@ Supports: TrustyCms #{supports_radiant_version}
|
|
48
48
|
tasks = Rake.application.tasks.map(&:name)
|
49
49
|
tasks.include? task
|
50
50
|
end
|
51
|
-
|
51
|
+
|
52
52
|
def file_utils
|
53
53
|
FileUtils
|
54
54
|
end
|
55
|
-
|
55
|
+
|
56
56
|
delegate :cd, :cp_r, :rm_r, :to => :file_utils
|
57
57
|
end
|
58
58
|
|
@@ -151,11 +151,11 @@ Supports: TrustyCms #{supports_radiant_version}
|
|
151
151
|
def project_in_git?
|
152
152
|
@in_git ||= File.directory?(".git")
|
153
153
|
end
|
154
|
-
|
154
|
+
|
155
155
|
def checkout_command
|
156
156
|
"git clone #{url} #{name}"
|
157
157
|
end
|
158
|
-
|
158
|
+
|
159
159
|
def checkout
|
160
160
|
if project_in_git?
|
161
161
|
system "git submodule add #{url} vendor/extensions/#{name}"
|
@@ -169,7 +169,7 @@ Supports: TrustyCms #{supports_radiant_version}
|
|
169
169
|
end
|
170
170
|
end
|
171
171
|
end
|
172
|
-
|
172
|
+
|
173
173
|
def copy_to_vendor_extensions
|
174
174
|
super unless project_in_git?
|
175
175
|
end
|
@@ -355,10 +355,10 @@ module TrustyCms
|
|
355
355
|
|
356
356
|
For help on an individual command:
|
357
357
|
script/extension help command
|
358
|
-
|
358
|
+
|
359
359
|
You may install extensions from another registry by setting the REGISTRY_URL
|
360
360
|
By default the REGISTRY_URL is set to http://ext.radiantcms.org
|
361
|
-
|
361
|
+
|
362
362
|
Code for the registry application may be found at:
|
363
363
|
http://github.com/radiant/radiant-extension-registry/
|
364
364
|
}
|
@@ -4,13 +4,13 @@ require 'method_observer'
|
|
4
4
|
|
5
5
|
module TrustyCms
|
6
6
|
class ExtensionLoader
|
7
|
-
# The ExtensionLoader is reponsible for the loading, activation and reactivation of extensions.
|
7
|
+
# The ExtensionLoader is reponsible for the loading, activation and reactivation of extensions.
|
8
8
|
# The noticing of important subdirectories is now handled by the ExtensionPath class.
|
9
9
|
|
10
10
|
class DependenciesObserver < MethodObserver
|
11
11
|
# Extends the reload mechanism in ActiveSupport so that extensions are deactivated and reactivated
|
12
12
|
# when model classes are reloaded (in development mode, usually).
|
13
|
-
|
13
|
+
|
14
14
|
attr_accessor :config
|
15
15
|
|
16
16
|
def initialize(rails_config) #:nodoc
|
@@ -49,13 +49,13 @@ module TrustyCms
|
|
49
49
|
# extension_loader.paths(:eager_load) #=> ['extension/app/controllers', 'extension/app/models', 'extension/app/helpers']
|
50
50
|
#
|
51
51
|
# For compatibility with the old loader, there are corresponding +type_paths+ methods.
|
52
|
-
# There are also (deprecated) +add_type_paths+ methods.
|
52
|
+
# There are also (deprecated) +add_type_paths+ methods.
|
53
53
|
#
|
54
54
|
def paths(type)
|
55
55
|
ExtensionPath.send("#{type}_paths".to_sym)
|
56
56
|
end
|
57
57
|
|
58
|
-
# Loads but does not activate all the extensions that have been enabled, in the configured order
|
58
|
+
# Loads but does not activate all the extensions that have been enabled, in the configured order
|
59
59
|
# (which defaults to alphabetically). If an extension fails to load an error will be logged
|
60
60
|
# but application startup will continue. If an extension doesn't exist, a LoadError will be raised
|
61
61
|
# and startup will halt.
|
@@ -65,7 +65,7 @@ module TrustyCms
|
|
65
65
|
@observer ||= DependenciesObserver.new(configuration).observe(::ActiveSupport::Dependencies)
|
66
66
|
self.extensions = configuration.enabled_extensions.map { |ext| load_extension(ext) }.compact
|
67
67
|
end
|
68
|
-
|
68
|
+
|
69
69
|
# Loads the specified extension.
|
70
70
|
#
|
71
71
|
def load_extension(name)
|
@@ -81,17 +81,17 @@ module TrustyCms
|
|
81
81
|
nil
|
82
82
|
end
|
83
83
|
end
|
84
|
-
|
84
|
+
|
85
85
|
# Loads all the initializers defined in enabled extensions, in the configured order.
|
86
86
|
#
|
87
87
|
def load_extension_initalizers
|
88
|
-
extensions.each
|
88
|
+
extensions.each(&:load_initializers)
|
89
89
|
end
|
90
90
|
|
91
91
|
# Deactivates all enabled extensions.
|
92
92
|
#
|
93
93
|
def deactivate_extensions
|
94
|
-
extensions.each
|
94
|
+
extensions.each(&:deactivate)
|
95
95
|
end
|
96
96
|
|
97
97
|
# Activates all enabled extensions and makes sure that any newly declared subclasses of Page are recognised.
|
@@ -99,21 +99,33 @@ module TrustyCms
|
|
99
99
|
#
|
100
100
|
def activate_extensions
|
101
101
|
initializer.initialize_views
|
102
|
-
|
102
|
+
ordered_extensions = []
|
103
|
+
configuration = TrustyCms::Application.config
|
104
|
+
if configuration.extensions.first == :all
|
105
|
+
ordered_extensions = extensions
|
106
|
+
else
|
107
|
+
configuration.extensions.each {|name| ordered_extensions << select_extension(name) }
|
108
|
+
end
|
109
|
+
ordered_extensions.flatten.each(&:activate)
|
103
110
|
Page.load_subclasses
|
104
111
|
end
|
112
|
+
|
113
|
+
def select_extension(name)
|
114
|
+
extensions.select {|ext| ext.extension_name.symbolize == name}
|
115
|
+
end
|
116
|
+
|
105
117
|
alias :reactivate :activate_extensions
|
106
118
|
|
107
119
|
class << self
|
108
120
|
# Builds an ExtensionPath object from the supplied path, working out the name of the extension on the way.
|
109
121
|
# The ExtensionPath object will later be used to scan and load the extension.
|
110
|
-
# An extension name can be supplied in addition to the path. It will be processed in the usual way to
|
122
|
+
# An extension name can be supplied in addition to the path. It will be processed in the usual way to
|
111
123
|
# remove radiant- and -extension and any verion numbering.
|
112
124
|
#
|
113
125
|
def record_path(path, name=nil)
|
114
126
|
ExtensionPath.from_path(path, name)
|
115
127
|
end
|
116
|
-
|
128
|
+
|
117
129
|
# For compatibility with old calls probably still to be found in some extensions.
|
118
130
|
#
|
119
131
|
%w{controller model view metal plugin load locale}.each do |type|
|
@@ -6,7 +6,7 @@ module TrustyCms
|
|
6
6
|
def migrate(target_version = nil)
|
7
7
|
super extension.migrations_path, target_version
|
8
8
|
end
|
9
|
-
|
9
|
+
|
10
10
|
def migrate_extensions
|
11
11
|
TrustyCms::Application.config.enabled_extensions.each do |ext|
|
12
12
|
to_migrate = Extension.descendants.detect{|descendant| descendant.name == "#{ext.to_s.camelize}Extension" }
|
@@ -20,30 +20,30 @@ module TrustyCms
|
|
20
20
|
map { |version| version.sub("#{@extension.extension_name}-", '').to_i }.sort
|
21
21
|
end
|
22
22
|
end
|
23
|
-
|
23
|
+
|
24
24
|
def initialize(direction, migrations_path, target_version = nil)
|
25
25
|
super
|
26
26
|
initialize_extension_schema_migrations
|
27
27
|
initialize_received_migrations
|
28
28
|
end
|
29
|
-
|
29
|
+
|
30
30
|
private
|
31
31
|
def quote(s)
|
32
32
|
ActiveRecord::Base.connection.quote(s)
|
33
33
|
end
|
34
|
-
|
34
|
+
|
35
35
|
def extension_name
|
36
36
|
self.class.extension.extension_name
|
37
37
|
end
|
38
|
-
|
38
|
+
|
39
39
|
def version_string(version)
|
40
40
|
"#{extension_name}-#{version}"
|
41
41
|
end
|
42
|
-
|
42
|
+
|
43
43
|
def initialize_extension_schema_migrations
|
44
44
|
current_version = ActiveRecord::Base.connection.select_value("SELECT schema_version FROM extension_meta WHERE name = #{quote(extension_name)}")
|
45
45
|
if current_version
|
46
|
-
assume_migrated_upto_version(current_version.to_i)
|
46
|
+
assume_migrated_upto_version(current_version.to_i)
|
47
47
|
ActiveRecord::Base.connection.delete("DELETE FROM extension_meta WHERE name = #{quote(extension_name)}")
|
48
48
|
end
|
49
49
|
end
|
@@ -57,7 +57,7 @@ module TrustyCms
|
|
57
57
|
end
|
58
58
|
end
|
59
59
|
end
|
60
|
-
|
60
|
+
|
61
61
|
def assume_migrated_upto_version(version)
|
62
62
|
version = version.to_i
|
63
63
|
sm_table = self.class.schema_migrations_table_name
|
@@ -81,7 +81,7 @@ module TrustyCms
|
|
81
81
|
end
|
82
82
|
end
|
83
83
|
end
|
84
|
-
|
84
|
+
|
85
85
|
def record_version_state_after_migrating(version)
|
86
86
|
sm_table = self.class.schema_migrations_table_name
|
87
87
|
|