alchemy_cms 2.5.3.1 → 2.6.0.rc5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
<% if page.redirects_to_external?
|
|
1
|
+
<% if page.redirects_to_external? %>
|
|
2
2
|
<%= link_to(
|
|
3
3
|
h(page.name),
|
|
4
4
|
page.urlname,
|
|
5
5
|
:title => options[:show_title] == true ? page.title : nil,
|
|
6
6
|
:target => configuration(:open_external_links_in_new_tab) ? '_blank' : nil,
|
|
7
7
|
:class => external_page_css_class(page)
|
|
8
|
-
)
|
|
9
|
-
<% else
|
|
8
|
+
) %>
|
|
9
|
+
<% else %>
|
|
10
10
|
<%= link_to(
|
|
11
11
|
h(page.name),
|
|
12
|
-
@preview_mode ? 'javascript:void(0)' : show_alchemy_page_path(page),
|
|
12
|
+
@preview_mode ? 'javascript: void(0)' : show_alchemy_page_path(page),
|
|
13
13
|
{
|
|
14
14
|
:class => (page_active?(page) ? 'active' : nil),
|
|
15
15
|
:title => (options[:show_title] ? page.title : nil),
|
|
16
16
|
:lang => page.language_code,
|
|
17
|
-
'
|
|
17
|
+
:data => {'page-id' => page.id}
|
|
18
18
|
}
|
|
19
|
-
)
|
|
20
|
-
<% end
|
|
19
|
+
) %>
|
|
20
|
+
<% end %>
|
|
@@ -1,37 +1,30 @@
|
|
|
1
|
-
<%
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
<% else -%>
|
|
29
|
-
<%= render_navigation(options) if (options[:submenu] && page_active?(page)) || options[:all_sub_menues] -%>
|
|
30
|
-
<% end -%>
|
|
31
|
-
<% end -%>
|
|
32
|
-
<% unless options[:spacer].empty? -%>
|
|
33
|
-
<%= raw "<li class=\"navigation_spacer\">#{options[:spacer]}</li>" unless page == pages.to_a.last -%>
|
|
34
|
-
<% end -%>
|
|
35
|
-
<% end -%>
|
|
1
|
+
<% if pages.present? %>
|
|
2
|
+
<%= content_tag(
|
|
3
|
+
'ul',
|
|
4
|
+
:class => html_options[:class] || "navigation level_#{pages.first.level - 1}",
|
|
5
|
+
:id => html_options[:id]
|
|
6
|
+
) do %>
|
|
7
|
+
<% pages.each do |page| %>
|
|
8
|
+
<% position = 'first' if page == pages.first %>
|
|
9
|
+
<% position = 'last' if page == pages.last %>
|
|
10
|
+
<%= content_tag(
|
|
11
|
+
'li',
|
|
12
|
+
:class => [page.slug, position, page_active?(page) ? 'active' : nil].compact.join(' ')
|
|
13
|
+
) do %>
|
|
14
|
+
<%= render options[:navigation_link_partial], :page => page, :options => options %>
|
|
15
|
+
<% options[:from_page] = page %>
|
|
16
|
+
<% if options[:reverse_children] %>
|
|
17
|
+
<% options[:reverse] = true %>
|
|
18
|
+
<% end %>
|
|
19
|
+
<% if options[:show_nonactive] %>
|
|
20
|
+
<%= render_navigation(options) if options[:submenu] %>
|
|
21
|
+
<% else %>
|
|
22
|
+
<%= render_navigation(options) if (options[:submenu] && page_active?(page)) || options[:all_sub_menues] %>
|
|
23
|
+
<% end %>
|
|
24
|
+
<% end %>
|
|
25
|
+
<% if options[:spacer].present? && position != 'last' %>
|
|
26
|
+
<%= content_tag :li, options[:spacer].html_safe, class: 'navigation_spacer' %>
|
|
27
|
+
<% end %>
|
|
36
28
|
<% end %>
|
|
37
|
-
<% end
|
|
29
|
+
<% end %>
|
|
30
|
+
<% end %>
|
|
@@ -6,6 +6,10 @@ Um die Inhalte Ihrer Webseite zu bearbeiten klicken Sie bitte auf folgenden Link
|
|
|
6
6
|
|
|
7
7
|
Ihr Benutzername lautet: <%= @user.login %>
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Aus Sicherheitsgründen stellen wir Ihr Passwort hier nicht dar.
|
|
10
|
+
|
|
11
|
+
Wenn Sie Ihr Passwort vergessen haben oder dies Ihr erster Login ist, gehen Sie bitte auf:
|
|
12
|
+
|
|
13
|
+
<%= alchemy.new_password_url %>
|
|
10
14
|
|
|
11
15
|
Viel Spaß mit Alchemy!
|
|
@@ -6,6 +6,10 @@ To manage your website open a browser and go to:
|
|
|
6
6
|
|
|
7
7
|
Your username is: <%= @user.login %>
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
For security reasons we do not show your password here.
|
|
10
|
+
|
|
11
|
+
If you forgot your password or this is your first login, please goto:
|
|
12
|
+
|
|
13
|
+
<%= alchemy.new_password_url %>
|
|
10
14
|
|
|
11
15
|
Have much fun with Alchemy!
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Hallo <%= @user.name %>!
|
|
2
|
+
|
|
3
|
+
Ihnen wurde ein Benutzerkonto eingerichtet.
|
|
4
|
+
|
|
5
|
+
Ihr Benutzername lautet: <%= @user.login %>
|
|
6
|
+
|
|
7
|
+
Es wurde ein Zufallspasswort generiert. Aus Sicherheitsgründen wird dieses hier aber nicht angezeigt.
|
|
8
|
+
|
|
9
|
+
Klicken Sie bitte daher auf den folgenden Link (*), um sich ein neues Passwort zu vergeben:
|
|
10
|
+
|
|
11
|
+
<%= alchemy.new_password_url(@user, email: @user.email) %>
|
|
12
|
+
|
|
13
|
+
*) Sollte dies nicht funktionieren, so kopieren Sie Sich bitte diesen Link und tragen Sie ihn in die Adresszeile Ihres Webbrowsers ein.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Greetings <%= @user.name %>!
|
|
2
|
+
|
|
3
|
+
A login was created for you.
|
|
4
|
+
|
|
5
|
+
Your username is: <%= @user.login %>
|
|
6
|
+
|
|
7
|
+
The password was randomly created. For security reasons it is not displayed here.
|
|
8
|
+
|
|
9
|
+
Please follow this link (*) to reset your password:
|
|
10
|
+
|
|
11
|
+
<%= alchemy.new_password_url(@user, email: @user.email) %>
|
|
12
|
+
|
|
13
|
+
*) If this does not work, please copy the url and paste it into the address bar of your web browser.
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
<li class="search_result">
|
|
2
|
-
<h3>
|
|
3
|
-
|
|
4
|
-
<%= link_to page.name, show_alchemy_page_path(page) %>
|
|
5
|
-
</h3>
|
|
6
|
-
<%- result.each do |highlight| -%>
|
|
2
|
+
<h3><%= page.name %></h3>
|
|
3
|
+
<% result.each do |highlight| %>
|
|
7
4
|
<p><%= sanitize highlight.force_encoding('UTF-8') %></p>
|
|
8
|
-
|
|
5
|
+
<% end %>
|
|
6
|
+
<p><%= link_to page.urlname, show_alchemy_page_path(page) %></p>
|
|
9
7
|
</li>
|
|
@@ -16,12 +16,11 @@
|
|
|
16
16
|
<% end %>
|
|
17
17
|
<ul class="search_result_list">
|
|
18
18
|
<% @search_results.each do |search_result| %>
|
|
19
|
-
|
|
20
|
-
"*#{params[:query]}*",
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
<%= render('alchemy/search/result',
|
|
20
|
+
result: search_result.highlight("*#{params[:query]}*"),
|
|
21
|
+
options: options,
|
|
22
|
+
page: search_result.page
|
|
23
23
|
) %>
|
|
24
|
-
<%= render 'alchemy/search/result', :result => result, :options => options, :page => search_result.page %>
|
|
25
24
|
<% end %>
|
|
26
25
|
</ul>
|
|
27
26
|
<% end %>
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
<td class="input">
|
|
22
22
|
<%= f.password_field :password, :class => 'thin_border' %>
|
|
23
23
|
<p class="foot_note">
|
|
24
|
-
<%= link_to _t('Forgot your password?'), new_password_path
|
|
24
|
+
<%= link_to _t('Forgot your password?'), new_password_path %>
|
|
25
25
|
</p>
|
|
26
26
|
</td>
|
|
27
27
|
</tr>
|
|
28
28
|
<tr>
|
|
29
29
|
<td colspan="2" class="submit">
|
|
30
30
|
<%= hidden_field_tag 'user_screensize' %>
|
|
31
|
-
<%= f.button _t(
|
|
31
|
+
<%= f.button _t(:login), :class => 'button', :name => nil %>
|
|
32
32
|
</td>
|
|
33
33
|
</tr>
|
|
34
34
|
</table>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<%# Link to the "First" page
|
|
2
|
+
- available local variables
|
|
3
|
+
url: url to the first page
|
|
4
|
+
current_page: a page object for the currently displayed page
|
|
5
|
+
num_pages: total number of pages
|
|
6
|
+
per_page: number of items to fetch per page
|
|
7
|
+
remote: data-remote
|
|
8
|
+
-%>
|
|
9
|
+
<span class="first">
|
|
10
|
+
<%= link_to_unless current_page.first?, '«'.html_safe, url, :remote => remote, :title => t('views.pagination.first'), :class => 'button' %>
|
|
11
|
+
</span>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<%# Link to the "Last" page
|
|
2
|
+
- available local variables
|
|
3
|
+
url: url to the last page
|
|
4
|
+
current_page: a page object for the currently displayed page
|
|
5
|
+
num_pages: total number of pages
|
|
6
|
+
per_page: number of items to fetch per page
|
|
7
|
+
remote: data-remote
|
|
8
|
+
-%>
|
|
9
|
+
<span class="last">
|
|
10
|
+
<%= link_to_unless current_page.last?, '»'.html_safe, url, {:remote => remote, :title => t('views.pagination.last'), :class => 'button'} %>
|
|
11
|
+
</span>
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
remote: data-remote
|
|
8
8
|
-%>
|
|
9
9
|
<% if current_page.last? -%>
|
|
10
|
-
<span class="next_page disabled"
|
|
10
|
+
<span class="next_page disabled">›</span>
|
|
11
11
|
<% else -%>
|
|
12
|
-
<%= link_to
|
|
12
|
+
<%= link_to '›'.html_safe, url, :rel => 'next', :remote => remote, :title => t('views.pagination.next_page'), :class => "next_page button" -%>
|
|
13
13
|
<% end -%>
|
|
@@ -10,5 +10,5 @@
|
|
|
10
10
|
<% if page.current? -%>
|
|
11
11
|
<span class="page current"><%= page -%></span>
|
|
12
12
|
<% else -%>
|
|
13
|
-
<%= link_to page, url, opts = {:remote => remote, :rel => page.next? ? 'next' : page.prev? ? 'prev' : nil} -%>
|
|
13
|
+
<%= link_to page, url, opts = {:remote => remote, :rel => page.next? ? 'next' : page.prev? ? 'prev' : nil, :class => 'button'} -%>
|
|
14
14
|
<% end -%>
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
-%>
|
|
9
9
|
<%= paginator.render do -%>
|
|
10
10
|
<div class="pagination">
|
|
11
|
+
<%= first_page_tag %>
|
|
11
12
|
<%= prev_page_tag -%>
|
|
12
13
|
<% each_page do |page| -%>
|
|
13
14
|
<% if page.left_outer? || page.right_outer? || page.inside_window? -%>
|
|
@@ -17,5 +18,6 @@
|
|
|
17
18
|
<% end -%>
|
|
18
19
|
<% end -%>
|
|
19
20
|
<%= next_page_tag -%>
|
|
21
|
+
<%= last_page_tag %>
|
|
20
22
|
</div>
|
|
21
23
|
<% end -%>
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
remote: data-remote
|
|
8
8
|
-%>
|
|
9
9
|
<% if current_page.first? -%>
|
|
10
|
-
<span class="previous_page disabled"
|
|
10
|
+
<span class="previous_page disabled">‹</span>
|
|
11
11
|
<% else -%>
|
|
12
|
-
<%= link_to
|
|
12
|
+
<%= link_to '‹'.html_safe, url, :rel => 'prev', :remote => remote, :class => 'previous_page button', :title => t('views.pagination.previous_page') -%>
|
|
13
13
|
<% end -%>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html class="no-js">
|
|
3
3
|
<head>
|
|
4
|
-
<meta charset="
|
|
4
|
+
<meta charset="utf-8">
|
|
5
5
|
<title><%= render_alchemy_title %></title>
|
|
6
6
|
<%= csrf_meta_tag %>
|
|
7
7
|
<meta name="robots" content="noindex">
|
|
@@ -32,8 +32,7 @@
|
|
|
32
32
|
</noscript>
|
|
33
33
|
<div id="overlay">
|
|
34
34
|
<div id="overlay_text_box">
|
|
35
|
-
|
|
36
|
-
<span id="overlay_text"><%= _t("please_wait") %></span>
|
|
35
|
+
<span id="overlay_text"><%= _t(:please_wait) %></span>
|
|
37
36
|
</div>
|
|
38
37
|
</div>
|
|
39
38
|
<div id="left_menu">
|
|
@@ -44,7 +43,7 @@
|
|
|
44
43
|
<div id="logout">
|
|
45
44
|
<% if current_user %>
|
|
46
45
|
<%= link_to_overlay_window(
|
|
47
|
-
"<span class='module icon exit'></span><label>#{_t(
|
|
46
|
+
"<span class='module icon exit'></span><label>#{_t(:leave)}</label>".html_safe,
|
|
48
47
|
alchemy.leave_admin_path, {
|
|
49
48
|
:size => "300x105",
|
|
50
49
|
:title => _t("Leave Alchemy")
|
|
@@ -52,7 +51,7 @@
|
|
|
52
51
|
<% else %>
|
|
53
52
|
<%= link_to(alchemy.root_path) do %>
|
|
54
53
|
<span class="module icon exit"></span>
|
|
55
|
-
<label><%= _t(
|
|
54
|
+
<label><%= _t(:leave) %></label>
|
|
56
55
|
<% end %>
|
|
57
56
|
<% end %>
|
|
58
57
|
</div>
|
data/config/alchemy/config.yml
CHANGED
|
@@ -60,31 +60,27 @@ sitemap:
|
|
|
60
60
|
|
|
61
61
|
# === URL nesting
|
|
62
62
|
#
|
|
63
|
-
#
|
|
63
|
+
# Since Alchemy 2.6.0 page urls are nested, respectivley to their tree position.
|
|
64
64
|
#
|
|
65
|
-
#
|
|
65
|
+
# Disable +url_nesting+ to get slug only urls.
|
|
66
66
|
#
|
|
67
|
-
#
|
|
67
|
+
# NOTE: After changing the url_nesting, you should run one of these convert rake task:
|
|
68
68
|
#
|
|
69
|
-
#
|
|
69
|
+
# rake alchemy:convert:urlnames:to_nested
|
|
70
|
+
# rake alchemy:convert:urlnames:to_slug
|
|
70
71
|
#
|
|
71
|
-
|
|
72
|
-
# because URLs like this are possible:
|
|
73
|
-
#
|
|
74
|
-
# +http://homepage.com/en/2011/12/08/my-post
|
|
75
|
-
#
|
|
76
|
-
url_nesting: false
|
|
72
|
+
url_nesting: true
|
|
77
73
|
|
|
78
74
|
# === Picture rendering settings
|
|
79
75
|
#
|
|
80
|
-
# Alchemy uses Dragonfly
|
|
76
|
+
# Alchemy uses Dragonfly to render images. Use {:image_size => "XXXxYYY", :crop => BOOLEAN [true]} to resize images.
|
|
81
77
|
#
|
|
82
78
|
# See http://markevans.github.com/dragonfly for further infos.
|
|
83
79
|
#
|
|
84
80
|
# ==== Options:
|
|
85
81
|
#
|
|
86
82
|
# output_image_jpg_quality [Integer] # If image gets rendered as JPG this is the quality setting for it. (Default 85)
|
|
87
|
-
# preprocess_image_resize [String] #
|
|
83
|
+
# preprocess_image_resize [String] # Use this option to resize images to that value. Downsizing example: '1000x1000>' (Default nil)
|
|
88
84
|
# image_output_format [String] # The global image output format setting.
|
|
89
85
|
#
|
|
90
86
|
# TIP: You can always override the output format in the options of your Essence. I.E. {:format => :gif}
|
|
@@ -18,7 +18,8 @@ authorization do
|
|
|
18
18
|
role :registered do
|
|
19
19
|
includes :guest
|
|
20
20
|
has_permission_on :alchemy_pages, :to => [:show] do
|
|
21
|
-
if_attribute :public => true
|
|
21
|
+
if_attribute :public => true, :restricted => true
|
|
22
|
+
if_attribute :public => true, :restricted => false
|
|
22
23
|
end
|
|
23
24
|
has_permission_on :alchemy_elements, :to => [:show] do
|
|
24
25
|
if_attribute :public => true
|
|
@@ -36,7 +37,7 @@ authorization do
|
|
|
36
37
|
has_permission_on :alchemy_pictures, :to => [:thumbnail]
|
|
37
38
|
has_permission_on :alchemy_admin_pages, :to => [:index, :fold, :edit_page_content, :link]
|
|
38
39
|
has_permission_on :alchemy_admin_elements, :to => [:manage_elements]
|
|
39
|
-
has_permission_on :alchemy_admin_pictures, :to => [:
|
|
40
|
+
has_permission_on :alchemy_admin_pictures, :to => [:read, :archive_overlay, :info]
|
|
40
41
|
has_permission_on :alchemy_admin_attachments, :to => [:index, :archive_overlay, :show, :download]
|
|
41
42
|
has_permission_on :alchemy_admin_contents, :to => [:manage_contents]
|
|
42
43
|
has_permission_on :alchemy_admin_essence_pictures, :to => [:manage_picture_essences]
|
|
@@ -60,7 +61,7 @@ authorization do
|
|
|
60
61
|
|
|
61
62
|
role :admin do
|
|
62
63
|
includes :editor
|
|
63
|
-
has_permission_on :alchemy_admin_users, :to => [:manage, :
|
|
64
|
+
has_permission_on :alchemy_admin_users, :to => [:manage, :update_roles]
|
|
64
65
|
has_permission_on :alchemy_admin_languages, :to => [:manage]
|
|
65
66
|
has_permission_on :authorization_rules, :to => :read
|
|
66
67
|
has_permission_on :alchemy_admin_sites, :to => [:manage]
|
|
@@ -1,20 +1,28 @@
|
|
|
1
1
|
# Alchemy CMS Dragonfly configuration.
|
|
2
|
-
app = Dragonfly[:alchemy_pictures]
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
3
|
+
# Pictures
|
|
4
|
+
pictures = Dragonfly[:alchemy_pictures]
|
|
5
|
+
pictures.configure_with :imagemagick
|
|
6
|
+
pictures.configure_with :rails
|
|
7
|
+
pictures.define_macro ActiveRecord::Base, :image_accessor
|
|
8
|
+
pictures.configure do |config|
|
|
9
|
+
config.datastore.configure do |store|
|
|
10
|
+
store.root_path = Rails.root.join('uploads/pictures').to_s
|
|
11
|
+
store.store_meta = false
|
|
13
12
|
end
|
|
14
|
-
|
|
15
13
|
# You only need this if you use Dragonfly url helpers, what you not need to ;)
|
|
16
14
|
# If you use the Dragonfly url helpers and you have a different mountpoint for Alchemy,
|
|
17
15
|
# you have to alter this to include the mountpoint.
|
|
18
|
-
|
|
16
|
+
config.url_format = '/pictures/:job/:basename.:format'
|
|
17
|
+
end
|
|
19
18
|
|
|
19
|
+
# Attachments
|
|
20
|
+
attachments = Dragonfly[:alchemy_attachments]
|
|
21
|
+
attachments.configure_with :rails
|
|
22
|
+
attachments.define_macro ActiveRecord::Base, :file_accessor
|
|
23
|
+
attachments.configure do |config|
|
|
24
|
+
config.datastore.configure do |store|
|
|
25
|
+
store.root_path = Rails.root.join('uploads/attachments').to_s
|
|
26
|
+
store.store_meta = false
|
|
27
|
+
end
|
|
20
28
|
end
|
|
@@ -134,12 +134,7 @@ de:
|
|
|
134
134
|
mailer:
|
|
135
135
|
# The mail the user gets after registering for alchemy
|
|
136
136
|
new_user_mail:
|
|
137
|
-
subject: 'Ihre Zugangsdaten
|
|
138
|
-
welcome: 'Willkommen auf meiner Seite'
|
|
139
|
-
login_url_explanation: 'Zum Anmelden klicken Sie bitte auf folgenden Link'
|
|
140
|
-
username: 'Ihr Benutzername lautet:'
|
|
141
|
-
password_notice: "(Aus Sicherheitsgründen stellen wir Ihr Passwort hier nicht da. Wenn Sie Ihr Passwort vergessen haben oder dies Ihr erster Login ist, gehen Sie bitte auf: %{url})"
|
|
142
|
-
greeting: 'Einen schönen Tag noch'
|
|
137
|
+
subject: 'Ihre Zugangsdaten'
|
|
143
138
|
|
|
144
139
|
# == Translated language names for translation select
|
|
145
140
|
translations:
|
|
@@ -222,7 +217,7 @@ de:
|
|
|
222
217
|
"Error with the Flash® Uploader!": "Fehler mit dem Flash® Uploader!"
|
|
223
218
|
"Excerpt": "Auszug"
|
|
224
219
|
"File %{name} uploaded succesfully": "Datei %{name} wurde hochgeladen"
|
|
225
|
-
"File
|
|
220
|
+
"File successfully updated": "Datei wurde erfolgreich gespeichert."
|
|
226
221
|
"File upload error: %{error}": "Datei konnte nicht hochgeladen werden: %{error}"
|
|
227
222
|
"File: '%{name}' deleted successfully": "%{name} wurde gelöscht"
|
|
228
223
|
"Filter by tag": "Nach Tags filtern"
|
|
@@ -395,6 +390,7 @@ de:
|
|
|
395
390
|
delete_user: "Benutzer löschen"
|
|
396
391
|
document: "Dokument"
|
|
397
392
|
documents: "Dateien"
|
|
393
|
+
download_csv: "CSV runterladen"
|
|
398
394
|
download_file: "%{filename} runterladen"
|
|
399
395
|
do_you_really_want_to_delete_this_tag?: "Wollen Sie dieses Tag wirklich löschen?"
|
|
400
396
|
drag_to_sort: "Mit der Maus halten und verschieben"
|
|
@@ -519,10 +515,6 @@ de:
|
|
|
519
515
|
pages:
|
|
520
516
|
update:
|
|
521
517
|
comma_seperated: "Durch Kommata getrennt eingeben"
|
|
522
|
-
pagination:
|
|
523
|
-
next_page: "nächste Seite »"
|
|
524
|
-
previous_page: "« vorherige Seite"
|
|
525
|
-
truncate: '...'
|
|
526
518
|
password: "Passwort"
|
|
527
519
|
paste: "einfügen"
|
|
528
520
|
picture_gallery_editor: 'Bilder'
|
|
@@ -550,6 +542,9 @@ de:
|
|
|
550
542
|
rename: umbenennen
|
|
551
543
|
replace: ersetzen
|
|
552
544
|
'Replaced Tag %{old_tag} with %{new_tag}': "Das Tag '%{old_tag}' wurde durch das Tag '%{new_tag}' ersetzt"
|
|
545
|
+
resources:
|
|
546
|
+
relation_select:
|
|
547
|
+
blank: '- ohne -'
|
|
553
548
|
right: "rechts"
|
|
554
549
|
robot_follow: "den Robot Links folgen lassen"
|
|
555
550
|
robot_index: "durch Robot indizieren"
|
|
@@ -825,6 +820,9 @@ de:
|
|
|
825
820
|
activerecord:
|
|
826
821
|
|
|
827
822
|
models:
|
|
823
|
+
acts_as_taggable_on/tag:
|
|
824
|
+
one: Tag
|
|
825
|
+
other: Tags
|
|
828
826
|
|
|
829
827
|
alchemy/attachment:
|
|
830
828
|
one: "Datei"
|
|
@@ -861,11 +859,11 @@ de:
|
|
|
861
859
|
taggings_count: Anzahl Verwendung
|
|
862
860
|
|
|
863
861
|
alchemy/attachment:
|
|
864
|
-
|
|
862
|
+
file_mime_type: "Dateityp"
|
|
865
863
|
created_at: "Erstellt Am"
|
|
866
|
-
|
|
864
|
+
file_name: "Dateiname"
|
|
867
865
|
name: "Name"
|
|
868
|
-
|
|
866
|
+
file_size: "Dateigröße"
|
|
869
867
|
tag_list: Tags
|
|
870
868
|
|
|
871
869
|
alchemy/element:
|
|
@@ -940,7 +938,7 @@ de:
|
|
|
940
938
|
name: "Name"
|
|
941
939
|
password: "Passwort"
|
|
942
940
|
password_confirmation: "Passwort Bestätigung"
|
|
943
|
-
|
|
941
|
+
roles: "Benutzerrollen"
|
|
944
942
|
tag_list: Tags
|
|
945
943
|
|
|
946
944
|
alchemy/site:
|
|
@@ -952,3 +950,10 @@ de:
|
|
|
952
950
|
|
|
953
951
|
errors:
|
|
954
952
|
<<: *errors
|
|
953
|
+
|
|
954
|
+
views:
|
|
955
|
+
pagination:
|
|
956
|
+
first: "erste Seite"
|
|
957
|
+
previous_page: "vorherige Seite"
|
|
958
|
+
next_page: "nächste Seite"
|
|
959
|
+
last: "letzte Seite"
|