alchemy_cms 2.5.3.1 → 2.6.0.rc5
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -1
- data/.travis.yml +5 -13
- data/Gemfile +6 -3
- data/README.md +3 -2
- data/alchemy_cms.gemspec +22 -22
- data/app/assets/fonts/alchemy-icons.eot +0 -0
- data/app/assets/fonts/alchemy-icons.svg +54 -0
- data/app/assets/fonts/alchemy-icons.ttf +0 -0
- data/app/assets/fonts/alchemy-icons.woff +0 -0
- data/app/assets/images/alchemy/icons.png +0 -0
- data/app/assets/javascripts/alchemy/alchemy.base.js.coffee +151 -0
- data/app/assets/javascripts/alchemy/alchemy.buttons.js.coffee +3 -2
- data/app/assets/javascripts/alchemy/alchemy.datepicker.js.coffee +31 -0
- data/app/assets/javascripts/alchemy/alchemy.dragndrop.js +1 -1
- data/app/assets/javascripts/alchemy/alchemy.element_editors.js.coffee +98 -0
- data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +23 -24
- data/app/assets/javascripts/alchemy/alchemy.growler.js.coffee +27 -0
- data/app/assets/javascripts/alchemy/alchemy.gui.js.coffee +11 -8
- data/app/assets/javascripts/alchemy/alchemy.hotkeys.js.coffee +32 -0
- data/app/assets/javascripts/alchemy/alchemy.image_cropper.js.coffee +46 -0
- data/app/assets/javascripts/alchemy/alchemy.js +8 -2
- data/app/assets/javascripts/alchemy/alchemy.link_overlay.js.coffee +5 -4
- data/app/assets/javascripts/alchemy/alchemy.list_filter.js.coffee +49 -0
- data/app/assets/javascripts/alchemy/alchemy.onload.js.coffee +3 -0
- data/app/assets/javascripts/alchemy/alchemy.preview_window.js.coffee +71 -0
- data/app/assets/javascripts/alchemy/alchemy.sitemap.js.coffee +61 -0
- data/app/assets/javascripts/alchemy/alchemy.spinner.js.coffee +35 -0
- data/app/assets/javascripts/alchemy/alchemy.string_extension.js.coffee +11 -0
- data/app/assets/javascripts/alchemy/alchemy.windows.js.coffee +278 -0
- data/app/assets/stylesheets/alchemy/admin.css.scss +2 -0
- data/app/assets/stylesheets/alchemy/archive.scss +109 -65
- data/app/assets/stylesheets/alchemy/base.scss +16 -188
- data/app/assets/stylesheets/alchemy/dashboard.scss +2 -2
- data/app/assets/stylesheets/alchemy/defaults.scss +2 -1
- data/app/assets/stylesheets/alchemy/elements.scss +58 -94
- data/app/assets/stylesheets/alchemy/errors.scss +2 -2
- data/app/assets/stylesheets/alchemy/{mixins.scss → extends.scss} +104 -80
- data/app/assets/stylesheets/alchemy/flash.scss +4 -6
- data/app/assets/stylesheets/alchemy/fonts.scss +46 -0
- data/app/assets/stylesheets/alchemy/form_elements.scss +46 -45
- data/app/assets/stylesheets/alchemy/frame.scss +20 -15
- data/app/assets/stylesheets/alchemy/icons.scss +22 -9
- data/app/assets/stylesheets/alchemy/jquery-ui.scss +476 -399
- data/app/assets/stylesheets/alchemy/login.scss +1 -1
- data/app/assets/stylesheets/alchemy/menubar.css.scss +1 -1
- data/app/assets/stylesheets/alchemy/notices.scss +5 -5
- data/app/assets/stylesheets/alchemy/pagination.scss +25 -13
- data/app/assets/stylesheets/alchemy/search.scss +29 -17
- data/app/assets/stylesheets/alchemy/sitemap.scss +41 -36
- data/app/assets/stylesheets/alchemy/tables.scss +102 -50
- data/app/assets/stylesheets/alchemy/tinymce_dialog.css.scss +18 -16
- data/app/assets/stylesheets/alchemy/toolbar.scss +84 -24
- data/app/assets/stylesheets/alchemy/upload.scss +14 -9
- data/app/assets/stylesheets/alchemy/variables.scss +1 -0
- data/app/assets/stylesheets/tiny_mce/plugins/inlinepopups/skins/alchemy/window.css.scss +18 -21
- data/app/controllers/alchemy/admin/attachments_controller.rb +29 -39
- data/app/controllers/alchemy/admin/base_controller.rb +3 -9
- data/app/controllers/alchemy/admin/clipboard_controller.rb +1 -1
- data/app/controllers/alchemy/admin/contents_controller.rb +1 -1
- data/app/controllers/alchemy/admin/dashboard_controller.rb +1 -1
- data/app/controllers/alchemy/admin/elements_controller.rb +3 -3
- data/app/controllers/alchemy/admin/essence_files_controller.rb +1 -1
- data/app/controllers/alchemy/admin/essence_pictures_controller.rb +5 -5
- data/app/controllers/alchemy/admin/languages_controller.rb +1 -1
- data/app/controllers/alchemy/admin/pages_controller.rb +18 -16
- data/app/controllers/alchemy/admin/pictures_controller.rb +11 -10
- data/app/controllers/alchemy/admin/resources_controller.rb +87 -14
- data/app/controllers/alchemy/admin/tags_controller.rb +3 -3
- data/app/controllers/alchemy/admin/trash_controller.rb +3 -3
- data/app/controllers/alchemy/admin/users_controller.rb +6 -11
- data/app/controllers/alchemy/attachments_controller.rb +8 -9
- data/app/controllers/alchemy/base_controller.rb +17 -10
- data/app/controllers/alchemy/pages_controller.rb +7 -19
- data/app/controllers/alchemy/passwords_controller.rb +15 -3
- data/app/controllers/alchemy/user_sessions_controller.rb +5 -4
- data/app/controllers/alchemy/users_controller.rb +1 -1
- data/app/helpers/alchemy/admin/attachments_helper.rb +2 -2
- data/app/helpers/alchemy/admin/base_helper.rb +62 -90
- data/app/helpers/alchemy/admin/elements_helper.rb +13 -5
- data/app/helpers/alchemy/admin/essences_helper.rb +3 -5
- data/app/helpers/alchemy/admin/pages_helper.rb +6 -3
- data/app/helpers/alchemy/admin/tags_helper.rb +60 -0
- data/app/helpers/alchemy/base_helper.rb +16 -20
- data/app/helpers/alchemy/elements_helper.rb +7 -11
- data/app/helpers/alchemy/essences_helper.rb +2 -2
- data/app/helpers/alchemy/pages_helper.rb +31 -69
- data/app/helpers/alchemy/url_helper.rb +11 -3
- data/app/models/alchemy/attachment.rb +73 -45
- data/app/models/alchemy/cell.rb +1 -1
- data/app/models/alchemy/content.rb +20 -9
- data/app/models/alchemy/element.rb +9 -7
- data/app/models/alchemy/page.rb +15 -248
- data/app/models/alchemy/page/cells.rb +71 -0
- data/app/models/alchemy/page/elements.rb +147 -0
- data/app/models/alchemy/page/naming.rb +90 -0
- data/app/models/alchemy/picture.rb +18 -13
- data/app/models/alchemy/tag.rb +1 -1
- data/app/models/alchemy/user.rb +38 -6
- data/app/views/alchemy/admin/attachments/_archive_overlay.html.erb +14 -7
- data/app/views/alchemy/admin/attachments/_attachment.html.erb +17 -12
- data/app/views/alchemy/admin/attachments/_file_to_assign.html.erb +3 -8
- data/app/views/alchemy/admin/attachments/_files_list.html.erb +20 -12
- data/app/views/alchemy/admin/attachments/_overlay_file_list.html.erb +11 -0
- data/app/views/alchemy/admin/attachments/_tag_list.html.erb +31 -0
- data/app/views/alchemy/admin/attachments/archive_overlay.js.erb +4 -0
- data/app/views/alchemy/admin/attachments/edit.html.erb +8 -7
- data/app/views/alchemy/admin/attachments/index.html.erb +19 -12
- data/app/views/alchemy/admin/attachments/new.html.erb +2 -2
- data/app/views/alchemy/admin/attachments/show.html.erb +3 -0
- data/app/views/alchemy/admin/contents/_missing.html.erb +4 -4
- data/app/views/alchemy/admin/contents/create.js.erb +1 -1
- data/app/views/alchemy/admin/contents/new.html.erb +6 -3
- data/app/views/alchemy/admin/dashboard/_locked_pages.html.erb +1 -1
- data/app/views/alchemy/admin/dashboard/_users.html.erb +1 -1
- data/app/views/alchemy/admin/dashboard/index.html.erb +3 -3
- data/app/views/alchemy/admin/dashboard/info.html.erb +16 -13
- data/app/views/alchemy/admin/elements/_add_picture.html.erb +1 -1
- data/app/views/alchemy/admin/elements/_element_foot.html.erb +4 -4
- data/app/views/alchemy/admin/elements/_element_head.html.erb +1 -7
- data/app/views/alchemy/admin/elements/_elements_select.html.erb +2 -2
- data/app/views/alchemy/admin/elements/_new_element_form.html.erb +4 -4
- data/app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb +1 -1
- data/app/views/alchemy/admin/elements/create.js.erb +2 -2
- data/app/views/alchemy/admin/elements/fold.js.erb +3 -6
- data/app/views/alchemy/admin/elements/new.html.erb +1 -1
- data/app/views/alchemy/admin/elements/order.js.erb +1 -1
- data/app/views/alchemy/admin/elements/trash.js.erb +1 -1
- data/app/views/alchemy/admin/elements/update.js.erb +2 -2
- data/app/views/alchemy/admin/essence_files/edit.html.erb +4 -4
- data/app/views/alchemy/admin/essence_pictures/crop.html.erb +17 -18
- data/app/views/alchemy/admin/essence_pictures/edit.html.erb +2 -2
- data/app/views/alchemy/admin/essence_pictures/update.js.erb +1 -0
- data/app/views/alchemy/admin/languages/_form.html.erb +12 -10
- data/app/views/alchemy/admin/languages/_language.html.erb +2 -1
- data/app/views/alchemy/admin/languages/_table.html.erb +3 -3
- data/app/views/alchemy/admin/languages/index.html.erb +15 -15
- data/app/views/alchemy/admin/layoutpages/_layoutpage.html.erb +6 -6
- data/app/views/alchemy/admin/layoutpages/index.html.erb +41 -40
- data/app/views/alchemy/admin/pages/_contactform_links.html.erb +4 -4
- data/app/views/alchemy/admin/pages/_create_language_form.html.erb +6 -6
- data/app/views/alchemy/admin/pages/_external_link.html.erb +2 -2
- data/app/views/alchemy/admin/pages/_file_link.html.erb +3 -3
- data/app/views/alchemy/admin/pages/_internal_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_new_page_form.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_page.html.erb +13 -13
- data/app/views/alchemy/admin/pages/_page_for_links.html.erb +2 -4
- data/app/views/alchemy/admin/pages/_sitemap.html.erb +5 -0
- data/app/views/alchemy/admin/pages/configure.html.erb +7 -7
- data/app/views/alchemy/admin/pages/configure_external.html.erb +4 -4
- data/app/views/alchemy/admin/pages/edit.html.erb +23 -30
- data/app/views/alchemy/admin/pages/index.html.erb +34 -23
- data/app/views/alchemy/admin/pages/new.html.erb +1 -1
- data/app/views/alchemy/admin/pages/sort.js.erb +1 -1
- data/app/views/alchemy/admin/partials/_flash_upload.html.erb +2 -3
- data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +2 -2
- data/app/views/alchemy/admin/partials/_search_form.html.erb +3 -3
- data/app/views/alchemy/admin/partials/_upload_form.html.erb +2 -2
- data/app/views/alchemy/admin/pictures/_archive.html.erb +7 -7
- data/app/views/alchemy/admin/pictures/_archive_overlay.html.erb +1 -1
- data/app/views/alchemy/admin/pictures/_filter_and_size_bar.html.erb +6 -6
- data/app/views/alchemy/admin/pictures/_filter_bar.html.erb +4 -4
- data/app/views/alchemy/admin/pictures/_overlay_picture_list.html.erb +1 -1
- data/app/views/alchemy/admin/pictures/_picture.html.erb +3 -8
- data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +9 -14
- data/app/views/alchemy/admin/pictures/_tag_list.html.erb +27 -25
- data/app/views/alchemy/admin/pictures/archive_overlay.js.erb +3 -1
- data/app/views/alchemy/admin/pictures/index.html.erb +49 -42
- data/app/views/alchemy/admin/pictures/new.html.erb +2 -2
- data/app/views/alchemy/admin/pictures/show.html.erb +11 -0
- data/app/views/alchemy/admin/resources/_boolean.html.erb +2 -2
- data/app/views/alchemy/admin/resources/_datetime.html.erb +2 -2
- data/app/views/alchemy/admin/resources/_form.html.erb +9 -8
- data/app/views/alchemy/admin/resources/_resource.html.erb +15 -21
- data/app/views/alchemy/admin/resources/_string.html.erb +2 -2
- data/app/views/alchemy/admin/resources/_table.html.erb +11 -13
- data/app/views/alchemy/admin/resources/_text.html.erb +2 -2
- data/app/views/alchemy/admin/resources/index.csv.erb +13 -0
- data/app/views/alchemy/admin/resources/index.html.erb +24 -15
- data/app/views/alchemy/admin/sites/index.html.erb +23 -0
- data/app/views/alchemy/admin/tags/_radio_tag.html.erb +1 -1
- data/app/views/alchemy/admin/tags/_tag.html.erb +2 -1
- data/app/views/alchemy/admin/tags/edit.html.erb +1 -1
- data/app/views/alchemy/admin/tags/index.html.erb +16 -11
- data/app/views/alchemy/admin/tags/new.html.erb +3 -3
- data/app/views/alchemy/admin/trash/clear.js.coffee +1 -1
- data/app/views/alchemy/admin/users/_table.html.erb +12 -5
- data/app/views/alchemy/admin/users/_user.html.erb +16 -16
- data/app/views/alchemy/admin/users/index.html.erb +28 -16
- data/app/views/alchemy/breadcrumb/_page.html.erb +15 -0
- data/app/views/alchemy/breadcrumb/_spacer.html.erb +1 -0
- data/app/views/alchemy/elements/_editor_not_found.html.erb +1 -1
- data/app/views/alchemy/essences/_essence_file_editor.html.erb +16 -16
- data/app/views/alchemy/essences/_essence_file_view.html.erb +8 -9
- data/app/views/alchemy/essences/_essence_picture_editor.html.erb +3 -6
- data/app/views/alchemy/essences/_essence_picture_tools.html.erb +9 -8
- data/app/views/alchemy/essences/_essence_richtext_editor.html.erb +0 -5
- data/app/views/alchemy/essences/_linkable_essence_tools.html.erb +2 -2
- data/app/views/alchemy/navigation/_link.html.erb +7 -7
- data/app/views/alchemy/navigation/_renderer.html.erb +29 -36
- data/app/views/alchemy/notifications/admin_user_created.de.text.erb +5 -1
- data/app/views/alchemy/notifications/admin_user_created.en.text.erb +5 -1
- data/app/views/alchemy/notifications/registered_user_created.de.text.erb +13 -0
- data/app/views/alchemy/notifications/registered_user_created.en.text.erb +13 -0
- data/app/views/alchemy/search/_result.html.erb +4 -6
- data/app/views/alchemy/search/_results.html.erb +4 -5
- data/app/views/alchemy/user_sessions/leave.html.erb +1 -1
- data/app/views/alchemy/user_sessions/new.html.erb +2 -2
- data/app/views/kaminari/_first_page.html.erb +11 -0
- data/app/views/kaminari/_gap.html.erb +1 -1
- data/app/views/kaminari/_last_page.html.erb +11 -0
- data/app/views/kaminari/_next_page.html.erb +2 -2
- data/app/views/kaminari/_page.html.erb +1 -1
- data/app/views/kaminari/_paginator.html.erb +2 -0
- data/app/views/kaminari/_prev_page.html.erb +2 -2
- data/app/views/layouts/alchemy/admin.html.erb +4 -5
- data/config/alchemy/config.yml +8 -12
- data/config/authorization_rules.rb +4 -3
- data/config/initializers/dragonfly.rb +20 -12
- data/config/locales/alchemy.de.yml +20 -15
- data/config/locales/alchemy.en.yml +15 -10
- data/config/locales/devise.de.yml +1 -0
- data/config/routes.rb +3 -3
- data/{spec/dummy/db/migrate/20121118000000_alchemy_two_point_four.rb → db/migrate/20130214233001_alchemy_two_point_five.rb} +50 -36
- data/db/migrate/20130221200514_migrate_attachments_to_dragonfly.rb +21 -0
- data/db/migrate/20130312205327_change_alchemy_users_role_to_roles.rb +11 -0
- data/lib/alchemy/capistrano.rb +10 -8
- data/lib/alchemy/errors.rb +7 -0
- data/lib/alchemy/filetypes.rb +33 -0
- data/lib/alchemy/i18n.rb +9 -1
- data/lib/alchemy/name_conversions.rb +28 -0
- data/lib/alchemy/page_layout.rb +5 -3
- data/lib/alchemy/resource.rb +132 -29
- data/lib/alchemy/resources_helper.rb +81 -12
- data/lib/alchemy/upgrader.rb +14 -276
- data/lib/alchemy/version.rb +1 -1
- data/lib/alchemy_cms.rb +17 -2
- data/lib/rails/generators/alchemy/deploy_script/templates/deploy.rb.tt +1 -1
- data/lib/rails/generators/alchemy/scaffold/scaffold_generator.rb +1 -1
- data/lib/tasks/alchemy/convert.rake +39 -0
- data/lib/tasks/alchemy/install.rake +4 -6
- data/lib/tasks/alchemy/upgrade.rake +18 -1
- data/spec/controllers/admin/clipboard_controller_spec.rb +4 -4
- data/spec/controllers/admin/elements_controller_spec.rb +23 -23
- data/spec/controllers/admin/pages_controller_spec.rb +15 -0
- data/spec/controllers/admin/resources_controller_spec.rb +1 -11
- data/spec/controllers/admin/trash_controller_spec.rb +9 -9
- data/spec/controllers/attachments_controller_spec.rb +3 -3
- data/spec/controllers/elements_controller_spec.rb +2 -2
- data/spec/controllers/pages_controller_spec.rb +160 -129
- data/spec/controllers/pictures_controller_spec.rb +2 -2
- data/spec/controllers/user_sessions_controller_spec.rb +3 -3
- data/spec/controllers/users_controller_spec.rb +2 -2
- data/spec/dummy/app/models/event.rb +2 -2
- data/spec/dummy/app/models/location.rb +4 -0
- data/spec/dummy/app/views/layouts/application.html.erb +6 -42
- data/spec/dummy/config/routes.rb +1 -1
- data/spec/dummy/db/migrate/20121026104128_create_events.rb +0 -1
- data/{db/migrate/20121118000000_alchemy_two_point_four.rb → spec/dummy/db/migrate/20130214233001_alchemy_two_point_five.rb} +50 -36
- data/spec/dummy/db/migrate/20130221200514_migrate_attachments_to_dragonfly.rb +21 -0
- data/spec/dummy/db/migrate/20130312205327_change_alchemy_users_role_to_roles.rb +11 -0
- data/spec/dummy/db/migrate/20130328101418_create_locations.rb +9 -0
- data/spec/dummy/db/schema.rb +15 -6
- data/spec/factories.rb +4 -4
- data/spec/{integration → features}/admin/link_overlay_spec.rb +0 -0
- data/spec/{integration → features}/admin/modules_integration_spec.rb +1 -1
- data/spec/{integration → features}/admin/pages_controller_spec.rb +9 -4
- data/spec/{integration → features}/admin/picture_library_integration_spec.rb +5 -5
- data/spec/{integration → features}/admin/resources_integration_spec.rb +1 -1
- data/spec/{integration → features}/navigation_spec.rb +0 -0
- data/spec/{integration → features}/pages_controller_spec.rb +42 -112
- data/spec/{integration → features}/picture_security_spec.rb +2 -2
- data/spec/{integration → features}/security_spec.rb +7 -7
- data/spec/{integration → features}/translation_integration_spec.rb +0 -0
- data/spec/helpers/admin/base_helper_spec.rb +0 -50
- data/spec/helpers/admin/tags_helper_spec.rb +53 -0
- data/spec/helpers/base_helper_spec.rb +19 -3
- data/spec/helpers/pages_helper_spec.rb +92 -44
- data/spec/{url_helpers_spec.rb → helpers/picture_url_helpers_spec.rb} +7 -7
- data/spec/helpers/url_helper_spec.rb +92 -72
- data/spec/{config_spec.rb → libraries/config_spec.rb} +0 -0
- data/spec/libraries/resource_spec.rb +215 -76
- data/spec/libraries/resources_helper_spec.rb +70 -28
- data/spec/models/attachment_spec.rb +75 -9
- data/spec/models/clipboard_spec.rb +1 -1
- data/spec/models/element_spec.rb +7 -0
- data/spec/models/page_spec.rb +144 -25
- data/spec/models/picture_spec.rb +5 -5
- data/spec/models/resource_spec.rb +47 -10
- data/spec/models/user_spec.rb +115 -3
- data/spec/{routing_spec.rb → routing/routing_spec.rb} +8 -20
- data/spec/spec_helper.rb +5 -6
- data/spec/support/alchemy/specs_helpers.rb +1 -1
- data/spec/support/ci/install_phantomjs +1 -1
- data/spec/support/image with spaces.png +0 -0
- data/vendor/assets/javascripts/jquery_plugins/jquery.Jcrop.min.js +18 -18
- data/vendor/assets/javascripts/jquery_plugins/{jquery.dialogextend.1_0_1.js → jquery.dialogextend.js} +25 -17
- data/vendor/assets/javascripts/jquery_plugins/jquery.scrollTo.min.js +7 -0
- data/vendor/assets/javascripts/jquery_plugins/jquery.ui.tabspaging.js +7 -7
- data/vendor/assets/javascripts/keymage.min.js +6 -0
- data/vendor/assets/javascripts/spin.min.js +1 -0
- metadata +122 -124
- data/app/assets/images/alchemy/ajax_loader.gif +0 -0
- data/app/assets/images/alchemy/gui/toggle.png +0 -0
- data/app/assets/images/alchemy/image_loader.gif +0 -0
- data/app/assets/images/alchemy/shading.png +0 -0
- data/app/assets/images/alchemy/tabs.gif +0 -0
- data/app/assets/javascripts/alchemy/alchemy.base.js +0 -172
- data/app/assets/javascripts/alchemy/alchemy.datepicker.js +0 -47
- data/app/assets/javascripts/alchemy/alchemy.element_editor_selector.js +0 -91
- data/app/assets/javascripts/alchemy/alchemy.growler.js +0 -46
- data/app/assets/javascripts/alchemy/alchemy.image_cropper.js +0 -60
- data/app/assets/javascripts/alchemy/alchemy.js_extensions.js +0 -15
- data/app/assets/javascripts/alchemy/alchemy.preview_window.js +0 -97
- data/app/assets/javascripts/alchemy/alchemy.windows.js +0 -321
- data/app/models/alchemy/clipboard_spec.rb +0 -0
- data/app/views/alchemy/admin/pictures/show_in_window.html.erb +0 -8
- data/app/views/alchemy/notifications/registered_user_created.text.erb +0 -11
- data/db/migrate/20121121162313_switch_from_fleximage_to_dragonfly.rb +0 -21
- data/db/migrate/20121205155004_create_alchemy_sites.rb +0 -14
- data/db/migrate/20121211163003_add_public_to_alchemy_sites.rb +0 -6
- data/db/migrate/20121220102223_add_aliases_to_site.rb +0 -6
- data/db/migrate/20130110212411_create_alchemy_legacy_page_urls.rb +0 -11
- data/db/migrate/20130121092645_migrate_to_devise.rb +0 -24
- data/spec/alchemy_spec.rb +0 -7
- data/spec/dummy/db/migrate/20121121162313_switch_from_fleximage_to_dragonfly.rb +0 -21
- data/spec/dummy/db/migrate/20121205155004_create_alchemy_sites.rb +0 -14
- data/spec/dummy/db/migrate/20121211163003_add_public_to_alchemy_sites.rb +0 -6
- data/spec/dummy/db/migrate/20121220102223_add_aliases_to_site.rb +0 -6
- data/spec/dummy/db/migrate/20130110212411_create_alchemy_legacy_page_urls.rb +0 -11
- data/spec/dummy/db/migrate/20130121092645_migrate_to_devise.rb +0 -24
- data/vendor/assets/javascripts/jquery_plugins/jquery.scrollTo-1.4.2-min.js +0 -11
@@ -8,9 +8,9 @@ end
|
|
8
8
|
module Alchemy
|
9
9
|
describe PicturesController do
|
10
10
|
|
11
|
-
let(:
|
11
|
+
let(:public_page) { FactoryGirl.create(:public_page, :restricted => false) }
|
12
12
|
let(:restricted_page) { FactoryGirl.create(:public_page, :restricted => true) }
|
13
|
-
let(:element) { FactoryGirl.create(:element, :page =>
|
13
|
+
let(:element) { FactoryGirl.create(:element, :page => public_page, :name => 'bild', :create_contents_after_create => true) }
|
14
14
|
let(:restricted_element) { FactoryGirl.create(:element, :page => restricted_page, :name => 'bild', :create_contents_after_create => true) }
|
15
15
|
let(:picture) { Picture.create(:image_file => fixture_file_upload(File.expand_path('../../support/image.png', __FILE__), 'image/png')) }
|
16
16
|
|
@@ -3,15 +3,15 @@ require 'spec_helper'
|
|
3
3
|
module Alchemy
|
4
4
|
describe UserSessionsController do
|
5
5
|
|
6
|
-
let(:user)
|
7
|
-
let(:
|
6
|
+
let(:user) { FactoryGirl.create(:admin_user) }
|
7
|
+
let(:alchemy_page) { FactoryGirl.create(:page) }
|
8
8
|
|
9
9
|
before { sign_in :user, user }
|
10
10
|
|
11
11
|
describe "signout" do
|
12
12
|
it "should unlock all pages" do
|
13
13
|
@request.env["devise.mapping"] = Devise.mappings[:user]
|
14
|
-
|
14
|
+
alchemy_page.lock(user)
|
15
15
|
delete :destroy
|
16
16
|
user.locked_pages.should be_empty
|
17
17
|
end
|
@@ -22,11 +22,11 @@ module Alchemy
|
|
22
22
|
end
|
23
23
|
|
24
24
|
it "should render hidden field for role" do
|
25
|
-
response.body.should have_selector('input[type="hidden"]#
|
25
|
+
response.body.should have_selector('input[type="hidden"]#user_roles')
|
26
26
|
end
|
27
27
|
|
28
28
|
it "should set the role to admin" do
|
29
|
-
assigns(:user).
|
29
|
+
assigns(:user).roles.should include("admin")
|
30
30
|
end
|
31
31
|
end
|
32
32
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
class Event < ActiveRecord::Base
|
2
|
-
attr_accessible :name, :hidden_name, :starts_at, :ends_at, :description, :published, :entrance_fee, :location_id
|
2
|
+
attr_accessible :name, :hidden_name, :starts_at, :ends_at, :description, :published, :entrance_fee, :location_id
|
3
3
|
validates_presence_of :name
|
4
|
-
|
4
|
+
belongs_to :location
|
5
5
|
end
|
@@ -1,51 +1,15 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
2
|
<html>
|
3
3
|
<head>
|
4
|
-
|
5
|
-
|
6
|
-
<%= render_meta_data(:title_prefix => sitename_from_header_page, :title_seperator => "-") %>
|
7
|
-
<!-- Paths here are relative to app/assets/stylesheets.
|
8
|
-
alchemy/standard_set, though, is located in Alchemy-source and doesn't have to be present in your app,
|
9
|
-
but you can copy it over and customize it of course. -->
|
10
|
-
<%= stylesheet_link_tag "alchemy/standard_set", :media => :screen %>
|
11
|
-
<%= stylesheet_link_tag "alchemy/standard_set", :media => :print %>
|
12
|
-
<!-- Here is also the place for custom javascripts. Put them in app/assets/javascripts/yourscript.js (or yourscript.js.coffee)
|
13
|
-
and include them like this (remove the \):
|
14
|
-
<\%= javascript_include_tag "yourscript" %> -->
|
4
|
+
<%= render_meta_data %>
|
5
|
+
<%= stylesheet_link_tag 'application' %>
|
15
6
|
</head>
|
16
7
|
<body>
|
17
|
-
<div id="page">
|
18
|
-
<div id="language_select">
|
19
|
-
<!-- Render links with flags for all public languages -->
|
20
|
-
<%= language_switches(:linkname => :code) %>
|
21
|
-
</div>
|
22
|
-
<div id="breadcrump">
|
23
|
-
<!-- Renders a breadcrumb/ariadne-path. For customizing see docs for render_breadcrumb (link?) -->
|
24
|
-
<%= render_breadcrumb :seperator => "<span> < </span>" %>
|
25
|
-
</div>
|
26
|
-
<div id="navigation">
|
27
|
-
<!-- Renders main navigation. For customizing see docs for render_navigation (link?)
|
28
|
-
You can overwrite app/views/navigation/_renderer.html.erb and app/views/navigation/_link.html.erb
|
29
|
-
if you want to roll out your own markup -->
|
30
|
-
<%= render_navigation :all_sub_menues => true %>
|
31
|
-
</div>
|
32
|
-
<!-- Most important call here!
|
33
|
-
This yields (=inserts) all content of the current page.
|
34
|
-
Markup depends on page_layout, elements and essences and can be changed in app/views/alchemy/... -->
|
35
8
|
<%= yield %>
|
36
|
-
<div
|
37
|
-
|
38
|
-
from page_layout "layout_footer" (name-attribute in page_layout.yml) -->
|
39
|
-
<%= render_elements(
|
40
|
-
:from_page => 'layout_footer',
|
41
|
-
:only => ['footnote']
|
42
|
-
) %>
|
9
|
+
<div id="navigation">
|
10
|
+
<%= render_navigation(:all_sub_menues => true) %>
|
43
11
|
</div>
|
44
|
-
|
45
|
-
|
46
|
-
<%= alchemy_preview_mode_code %>
|
47
|
-
<!-- Renders a menu_bar when a user with sufficient rights visits a page -->
|
48
|
-
<%= alchemy_menu_bar %>
|
12
|
+
<%= alchemy_preview_mode_code %>
|
13
|
+
<%= alchemy_menu_bar %>
|
49
14
|
</body>
|
50
15
|
</html>
|
51
|
-
|
data/spec/dummy/config/routes.rb
CHANGED
@@ -10,7 +10,6 @@ class CreateEvents < ActiveRecord::Migration
|
|
10
10
|
t.decimal "entrance_fee", :precision => 6, :scale => 2
|
11
11
|
t.boolean "published"
|
12
12
|
t.integer "location_id"
|
13
|
-
t.integer "organizer_id"
|
14
13
|
t.datetime "created_at", :null => false
|
15
14
|
t.datetime "updated_at", :null => false
|
16
15
|
end
|
@@ -1,11 +1,11 @@
|
|
1
|
-
# This is a compressed migration for creating all Alchemy 2.
|
1
|
+
# This is a compressed migration for creating all Alchemy 2.5 tables at once.
|
2
2
|
#
|
3
3
|
# === Notice
|
4
4
|
#
|
5
5
|
# In order to upgrade from an old version of Alchemy, you have to run all migrations from
|
6
6
|
# each version you missed up to the version you want to upgrade to, before running this migration.
|
7
7
|
#
|
8
|
-
class
|
8
|
+
class AlchemyTwoPointFive < ActiveRecord::Migration
|
9
9
|
def up
|
10
10
|
# Do not run if Alchemy tables are already present
|
11
11
|
return if table_exists?(:alchemy_pages)
|
@@ -184,10 +184,21 @@ class AlchemyTwoPointFour < ActiveRecord::Migration
|
|
184
184
|
t.integer "updater_id"
|
185
185
|
t.boolean "default", :default => false
|
186
186
|
t.string "country_code", :default => "", :null => false
|
187
|
+
t.integer "site_id"
|
187
188
|
end
|
188
189
|
|
189
190
|
add_index "alchemy_languages", ["language_code", "country_code"], :name => "index_alchemy_languages_on_language_code_and_country_code"
|
190
191
|
add_index "alchemy_languages", ["language_code"], :name => "index_alchemy_languages_on_language_code"
|
192
|
+
add_index "alchemy_languages", ["site_id"], :name => "index_alchemy_languages_on_site_id"
|
193
|
+
|
194
|
+
create_table "alchemy_legacy_page_urls", :force => true do |t|
|
195
|
+
t.string "urlname", :null => false
|
196
|
+
t.integer "page_id", :null => false
|
197
|
+
t.datetime "created_at", :null => false
|
198
|
+
t.datetime "updated_at", :null => false
|
199
|
+
end
|
200
|
+
|
201
|
+
add_index "alchemy_legacy_page_urls", ["urlname"], :name => "index_alchemy_legacy_page_urls_on_urlname"
|
191
202
|
|
192
203
|
create_table "alchemy_pages", :force => true do |t|
|
193
204
|
t.string "name"
|
@@ -225,59 +236,61 @@ class AlchemyTwoPointFour < ActiveRecord::Migration
|
|
225
236
|
|
226
237
|
create_table "alchemy_pictures", :force => true do |t|
|
227
238
|
t.string "name"
|
228
|
-
t.string "
|
229
|
-
t.integer "
|
230
|
-
t.integer "
|
231
|
-
t.datetime "created_at",
|
232
|
-
t.datetime "updated_at",
|
239
|
+
t.string "image_file_name"
|
240
|
+
t.integer "image_file_width"
|
241
|
+
t.integer "image_file_height"
|
242
|
+
t.datetime "created_at", :null => false
|
243
|
+
t.datetime "updated_at", :null => false
|
233
244
|
t.integer "creator_id"
|
234
245
|
t.integer "updater_id"
|
235
246
|
t.string "upload_hash"
|
236
247
|
t.text "cached_tag_list"
|
248
|
+
t.string "image_file_uid"
|
249
|
+
t.integer "image_file_size"
|
237
250
|
end
|
238
251
|
|
252
|
+
create_table "alchemy_sites", :force => true do |t|
|
253
|
+
t.string "host"
|
254
|
+
t.string "name"
|
255
|
+
t.datetime "created_at", :null => false
|
256
|
+
t.datetime "updated_at", :null => false
|
257
|
+
t.boolean "public", :default => false
|
258
|
+
t.text "aliases"
|
259
|
+
t.boolean "redirect_to_primary_host"
|
260
|
+
end
|
261
|
+
|
262
|
+
add_index "alchemy_sites", ["host", "public"], :name => "alchemy_sites_public_hosts_idx"
|
263
|
+
add_index "alchemy_sites", ["host"], :name => "index_alchemy_sites_on_host"
|
264
|
+
|
239
265
|
create_table "alchemy_users", :force => true do |t|
|
240
266
|
t.string "firstname"
|
241
267
|
t.string "lastname"
|
242
268
|
t.string "login"
|
243
269
|
t.string "email"
|
244
270
|
t.string "gender"
|
245
|
-
t.string "role",
|
271
|
+
t.string "role", :default => "registered"
|
246
272
|
t.string "language"
|
247
|
-
t.string "
|
248
|
-
t.string "password_salt",
|
249
|
-
t.integer "
|
250
|
-
t.integer "
|
273
|
+
t.string "encrypted_password", :limit => 128, :default => "", :null => false
|
274
|
+
t.string "password_salt", :limit => 128, :default => "", :null => false
|
275
|
+
t.integer "sign_in_count", :default => 0, :null => false
|
276
|
+
t.integer "failed_attempts", :default => 0, :null => false
|
251
277
|
t.datetime "last_request_at"
|
252
|
-
t.datetime "
|
253
|
-
t.datetime "
|
254
|
-
t.string "
|
255
|
-
t.string "
|
256
|
-
t.
|
257
|
-
t.
|
258
|
-
t.string "perishable_token", :null => false
|
259
|
-
t.datetime "created_at", :null => false
|
260
|
-
t.datetime "updated_at", :null => false
|
278
|
+
t.datetime "current_sign_in_at"
|
279
|
+
t.datetime "last_sign_in_at"
|
280
|
+
t.string "current_sign_in_ip"
|
281
|
+
t.string "last_sign_in_ip"
|
282
|
+
t.datetime "created_at", :null => false
|
283
|
+
t.datetime "updated_at", :null => false
|
261
284
|
t.integer "creator_id"
|
262
285
|
t.integer "updater_id"
|
263
286
|
t.text "cached_tag_list"
|
287
|
+
t.string "reset_password_token"
|
288
|
+
t.datetime "reset_password_sent_at"
|
264
289
|
end
|
265
290
|
|
266
|
-
add_index "alchemy_users", ["
|
267
|
-
|
268
|
-
|
269
|
-
t.string "name"
|
270
|
-
t.string "hidden_name"
|
271
|
-
t.datetime "starts_at"
|
272
|
-
t.datetime "ends_at"
|
273
|
-
t.text "description"
|
274
|
-
t.decimal "entrance_fee", :precision => 6, :scale => 2
|
275
|
-
t.boolean "published"
|
276
|
-
t.integer "location_id"
|
277
|
-
t.integer "organizer_id"
|
278
|
-
t.datetime "created_at", :null => false
|
279
|
-
t.datetime "updated_at", :null => false
|
280
|
-
end
|
291
|
+
add_index "alchemy_users", ["email"], :name => "index_alchemy_users_on_email", :unique => true
|
292
|
+
add_index "alchemy_users", ["login"], :name => "index_alchemy_users_on_login", :unique => true
|
293
|
+
add_index "alchemy_users", ["reset_password_token"], :name => "index_alchemy_users_on_reset_password_token", :unique => true
|
281
294
|
|
282
295
|
create_table "taggings", :force => true do |t|
|
283
296
|
t.integer "tag_id"
|
@@ -295,5 +308,6 @@ class AlchemyTwoPointFour < ActiveRecord::Migration
|
|
295
308
|
create_table "tags", :force => true do |t|
|
296
309
|
t.string "name"
|
297
310
|
end
|
311
|
+
|
298
312
|
end
|
299
313
|
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
class MigrateAttachmentsToDragonfly < ActiveRecord::Migration
|
2
|
+
def up
|
3
|
+
change_table :alchemy_attachments do |t|
|
4
|
+
t.string :file_uid
|
5
|
+
t.index :file_uid
|
6
|
+
t.rename :filename, :file_name
|
7
|
+
t.rename :content_type, :file_mime_type
|
8
|
+
t.rename :size, :file_size
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
def down
|
13
|
+
change_table :alchemy_attachments do |t|
|
14
|
+
t.remove :file_uid
|
15
|
+
t.rename :file_name, :filename
|
16
|
+
t.rename :file_mime_type, :content_type
|
17
|
+
t.rename :file_size, :size
|
18
|
+
t.remove_index :file_uid
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
class ChangeAlchemyUsersRoleToRoles < ActiveRecord::Migration
|
2
|
+
def up
|
3
|
+
rename_column :alchemy_users, :role, :roles
|
4
|
+
add_index :alchemy_users, :roles
|
5
|
+
end
|
6
|
+
|
7
|
+
def down
|
8
|
+
remove_index :alchemy_users, :roles
|
9
|
+
rename_column :alchemy_users, :roles, :role
|
10
|
+
end
|
11
|
+
end
|
data/spec/dummy/db/schema.rb
CHANGED
@@ -11,20 +11,23 @@
|
|
11
11
|
#
|
12
12
|
# It's strongly recommended to check this file into your version control system.
|
13
13
|
|
14
|
-
ActiveRecord::Schema.define(:version =>
|
14
|
+
ActiveRecord::Schema.define(:version => 20130328101418) do
|
15
15
|
|
16
16
|
create_table "alchemy_attachments", :force => true do |t|
|
17
17
|
t.string "name"
|
18
|
-
t.string "
|
19
|
-
t.string "
|
20
|
-
t.integer "
|
18
|
+
t.string "file_name"
|
19
|
+
t.string "file_mime_type"
|
20
|
+
t.integer "file_size"
|
21
21
|
t.integer "creator_id"
|
22
22
|
t.integer "updater_id"
|
23
23
|
t.datetime "created_at", :null => false
|
24
24
|
t.datetime "updated_at", :null => false
|
25
25
|
t.text "cached_tag_list"
|
26
|
+
t.string "file_uid"
|
26
27
|
end
|
27
28
|
|
29
|
+
add_index "alchemy_attachments", ["file_uid"], :name => "index_alchemy_attachments_on_file_uid"
|
30
|
+
|
28
31
|
create_table "alchemy_cells", :force => true do |t|
|
29
32
|
t.integer "page_id"
|
30
33
|
t.string "name"
|
@@ -271,7 +274,7 @@ ActiveRecord::Schema.define(:version => 20130121092645) do
|
|
271
274
|
t.string "login"
|
272
275
|
t.string "email"
|
273
276
|
t.string "gender"
|
274
|
-
t.string "
|
277
|
+
t.string "roles", :default => "registered"
|
275
278
|
t.string "language"
|
276
279
|
t.string "encrypted_password", :limit => 128, :default => "", :null => false
|
277
280
|
t.string "password_salt", :limit => 128, :default => "", :null => false
|
@@ -294,6 +297,7 @@ ActiveRecord::Schema.define(:version => 20130121092645) do
|
|
294
297
|
add_index "alchemy_users", ["email"], :name => "index_alchemy_users_on_email", :unique => true
|
295
298
|
add_index "alchemy_users", ["login"], :name => "index_alchemy_users_on_login", :unique => true
|
296
299
|
add_index "alchemy_users", ["reset_password_token"], :name => "index_alchemy_users_on_reset_password_token", :unique => true
|
300
|
+
add_index "alchemy_users", ["roles"], :name => "index_alchemy_users_on_roles"
|
297
301
|
|
298
302
|
create_table "events", :force => true do |t|
|
299
303
|
t.string "name"
|
@@ -304,11 +308,16 @@ ActiveRecord::Schema.define(:version => 20130121092645) do
|
|
304
308
|
t.decimal "entrance_fee", :precision => 6, :scale => 2
|
305
309
|
t.boolean "published"
|
306
310
|
t.integer "location_id"
|
307
|
-
t.integer "organizer_id"
|
308
311
|
t.datetime "created_at", :null => false
|
309
312
|
t.datetime "updated_at", :null => false
|
310
313
|
end
|
311
314
|
|
315
|
+
create_table "locations", :force => true do |t|
|
316
|
+
t.string "name"
|
317
|
+
t.datetime "created_at", :null => false
|
318
|
+
t.datetime "updated_at", :null => false
|
319
|
+
end
|
320
|
+
|
312
321
|
create_table "taggings", :force => true do |t|
|
313
322
|
t.integer "tag_id"
|
314
323
|
t.integer "taggable_id"
|
data/spec/factories.rb
CHANGED
@@ -10,19 +10,19 @@ FactoryGirl.define do
|
|
10
10
|
language 'en'
|
11
11
|
|
12
12
|
factory :admin_user do
|
13
|
-
|
13
|
+
roles 'admin'
|
14
14
|
end
|
15
15
|
|
16
16
|
factory :registered_user do
|
17
|
-
|
17
|
+
roles 'registered'
|
18
18
|
end
|
19
19
|
|
20
20
|
factory :author_user do
|
21
|
-
|
21
|
+
roles 'author'
|
22
22
|
end
|
23
23
|
|
24
24
|
factory :editor_user do
|
25
|
-
|
25
|
+
roles 'editor'
|
26
26
|
end
|
27
27
|
|
28
28
|
end
|
File without changes
|
@@ -16,14 +16,19 @@ module Alchemy
|
|
16
16
|
|
17
17
|
context "in a multilangual environment" do
|
18
18
|
|
19
|
-
before
|
19
|
+
before do
|
20
|
+
klingonian_root
|
21
|
+
Capybara.default_wait_time = 3 # Raising this helps this test to pass, even on travis-ci
|
22
|
+
end
|
20
23
|
|
21
24
|
it "one should be able to switch the language tree" do
|
22
|
-
visit('/
|
25
|
+
visit('/admin/pages')
|
23
26
|
page.select 'Klingonian', :from => 'language'
|
24
27
|
page.should have_selector('#sitemap .sitemap_pagename_link', :text => 'Klingonian')
|
25
28
|
end
|
26
29
|
|
30
|
+
after { Capybara.default_wait_time = 2 } # Reset to default
|
31
|
+
|
27
32
|
end
|
28
33
|
|
29
34
|
context "with no language root page" do
|
@@ -31,7 +36,7 @@ module Alchemy
|
|
31
36
|
before { klingonian }
|
32
37
|
|
33
38
|
it "it should display the form for creating language root" do
|
34
|
-
visit('/
|
39
|
+
visit('/admin/pages')
|
35
40
|
page.select 'Klingonian', :from => 'language'
|
36
41
|
page.should have_content('This language tree does not exist')
|
37
42
|
end
|
@@ -43,7 +48,7 @@ module Alchemy
|
|
43
48
|
describe "flush complete page cache" do
|
44
49
|
|
45
50
|
it "should remove the cache of all pages" do
|
46
|
-
visit '/
|
51
|
+
visit '/admin/pages'
|
47
52
|
click_link 'Flush page cache'
|
48
53
|
page.should have_content('Page cache flushed')
|
49
54
|
end
|