alchemy_cms 5.1.4 → 6.0.0.b1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +7 -14
- data/.gitignore +0 -1
- data/.hound.yml +1 -1
- data/.rubocop.yml +46 -4
- data/CHANGELOG.md +112 -5
- data/Gemfile +5 -2
- data/README.md +5 -2
- data/alchemy_cms.gemspec +78 -65
- data/app/assets/javascripts/alchemy/admin.js +0 -2
- data/app/assets/javascripts/alchemy/alchemy.base.js.coffee +0 -27
- data/app/assets/javascripts/alchemy/alchemy.confirm_dialog.js.coffee +2 -1
- data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.dragndrop.js.coffee +0 -25
- data/app/assets/javascripts/alchemy/alchemy.element_editors.js.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +2 -0
- data/app/assets/javascripts/alchemy/alchemy.fixed_elements.js +1 -1
- data/app/assets/javascripts/alchemy/alchemy.gui.js.coffee +3 -1
- data/app/assets/javascripts/alchemy/alchemy.image_overlay.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.link_dialog.js.coffee +40 -27
- data/app/assets/javascripts/alchemy/templates/node_folder.hbs +1 -1
- data/app/assets/stylesheets/alchemy/_variables.scss +2 -0
- data/app/assets/stylesheets/alchemy/admin.scss +1 -1
- data/app/assets/stylesheets/alchemy/archive.scss +4 -4
- data/app/assets/stylesheets/alchemy/buttons.scss +0 -4
- data/app/assets/stylesheets/alchemy/elements.scss +111 -66
- data/app/assets/stylesheets/alchemy/images.scss +8 -0
- data/app/assets/stylesheets/alchemy/node-select.scss +4 -3
- data/app/assets/stylesheets/alchemy/page-select.scss +1 -0
- data/app/controllers/alchemy/admin/attachments_controller.rb +6 -2
- data/app/controllers/alchemy/admin/base_controller.rb +5 -6
- data/app/controllers/alchemy/admin/elements_controller.rb +58 -34
- data/app/controllers/alchemy/admin/essence_audios_controller.rb +30 -0
- data/app/controllers/alchemy/admin/essence_files_controller.rb +0 -14
- data/app/controllers/alchemy/admin/essence_pictures_controller.rb +8 -79
- data/app/controllers/alchemy/admin/essence_videos_controller.rb +33 -0
- data/app/controllers/alchemy/admin/ingredients_controller.rb +30 -0
- data/app/controllers/alchemy/admin/layoutpages_controller.rb +0 -1
- data/app/controllers/alchemy/admin/pages_controller.rb +6 -13
- data/app/controllers/alchemy/admin/pictures_controller.rb +35 -9
- data/app/controllers/alchemy/api/elements_controller.rb +10 -5
- data/app/controllers/alchemy/api/pages_controller.rb +3 -4
- data/app/controllers/concerns/alchemy/admin/archive_overlay.rb +13 -3
- data/app/controllers/concerns/alchemy/admin/crop_action.rb +26 -0
- data/app/decorators/alchemy/content_editor.rb +64 -0
- data/app/decorators/alchemy/element_editor.rb +24 -1
- data/app/decorators/alchemy/ingredient_editor.rb +154 -0
- data/app/helpers/alchemy/admin/contents_helper.rb +3 -8
- data/app/helpers/alchemy/admin/elements_helper.rb +1 -0
- data/app/helpers/alchemy/admin/essences_helper.rb +1 -1
- data/app/helpers/alchemy/admin/ingredients_helper.rb +42 -0
- data/app/helpers/alchemy/elements_block_helper.rb +22 -7
- data/app/helpers/alchemy/elements_helper.rb +12 -23
- data/app/helpers/alchemy/pages_helper.rb +3 -9
- data/app/jobs/alchemy/base_job.rb +11 -0
- data/app/jobs/alchemy/publish_page_job.rb +11 -0
- data/app/models/alchemy/attachment.rb +4 -0
- data/app/models/alchemy/content.rb +5 -3
- data/app/models/alchemy/content/factory.rb +23 -27
- data/app/models/alchemy/element.rb +72 -67
- data/app/models/alchemy/element/definitions.rb +26 -41
- data/app/models/alchemy/element/element_contents.rb +131 -122
- data/app/models/alchemy/element/element_essences.rb +100 -98
- data/app/models/alchemy/element/element_ingredients.rb +176 -0
- data/app/models/alchemy/element/presenters.rb +89 -87
- data/app/models/alchemy/elements_repository.rb +126 -0
- data/app/models/alchemy/essence_audio.rb +12 -0
- data/app/models/alchemy/essence_headline.rb +40 -0
- data/app/models/alchemy/essence_picture.rb +4 -116
- data/app/models/alchemy/essence_richtext.rb +12 -0
- data/app/models/alchemy/essence_video.rb +12 -0
- data/app/models/alchemy/image_cropper_settings.rb +87 -0
- data/app/models/alchemy/ingredient.rb +219 -0
- data/app/models/alchemy/ingredient_validator.rb +97 -0
- data/app/models/alchemy/ingredients/audio.rb +29 -0
- data/app/models/alchemy/ingredients/boolean.rb +21 -0
- data/app/models/alchemy/ingredients/datetime.rb +20 -0
- data/app/models/alchemy/ingredients/file.rb +30 -0
- data/app/models/alchemy/ingredients/headline.rb +42 -0
- data/app/models/alchemy/ingredients/html.rb +19 -0
- data/app/models/alchemy/ingredients/link.rb +16 -0
- data/app/models/alchemy/ingredients/node.rb +23 -0
- data/app/models/alchemy/ingredients/page.rb +23 -0
- data/app/models/alchemy/ingredients/picture.rb +41 -0
- data/app/models/alchemy/ingredients/richtext.rb +57 -0
- data/app/models/alchemy/ingredients/select.rb +10 -0
- data/app/models/alchemy/ingredients/text.rb +17 -0
- data/app/models/alchemy/ingredients/video.rb +33 -0
- data/app/models/alchemy/language.rb +0 -11
- data/app/models/alchemy/page.rb +66 -32
- data/app/models/alchemy/page/fixed_attributes.rb +53 -51
- data/app/models/alchemy/page/page_elements.rb +187 -199
- data/app/models/alchemy/page/page_naming.rb +66 -64
- data/app/models/alchemy/page/page_natures.rb +139 -142
- data/app/models/alchemy/page/page_scopes.rb +113 -102
- data/app/models/alchemy/page/publisher.rb +50 -0
- data/app/models/alchemy/page/url_path.rb +1 -1
- data/app/models/alchemy/page_version.rb +58 -0
- data/app/models/alchemy/picture.rb +3 -1
- data/app/models/alchemy/picture/calculations.rb +2 -8
- data/app/models/alchemy/picture/preprocessor.rb +2 -0
- data/app/models/alchemy/picture/transformations.rb +24 -96
- data/app/models/alchemy/picture_variant.rb +1 -1
- data/app/models/concerns/alchemy/picture_thumbnails.rb +181 -0
- data/app/models/concerns/alchemy/touch_elements.rb +2 -2
- data/app/presenters/alchemy/picture_view.rb +88 -0
- data/app/serializers/alchemy/element_serializer.rb +5 -0
- data/app/serializers/alchemy/page_tree_serializer.rb +3 -2
- data/app/services/alchemy/delete_elements.rb +44 -0
- data/app/services/alchemy/duplicate_element.rb +56 -0
- data/app/views/alchemy/admin/attachments/_archive_overlay.html.erb +1 -2
- data/app/views/alchemy/admin/attachments/_file_to_assign.html.erb +3 -3
- data/app/views/alchemy/admin/attachments/assign.js.erb +11 -0
- data/app/views/alchemy/admin/crop.html.erb +36 -0
- data/app/views/alchemy/admin/elements/_element.html.erb +14 -10
- data/app/views/alchemy/admin/elements/{_element_footer.html.erb → _footer.html.erb} +0 -0
- data/app/views/alchemy/admin/elements/{_new_element_form.html.erb → _form.html.erb} +1 -1
- data/app/views/alchemy/admin/elements/{_element_header.html.erb → _header.html.erb} +3 -1
- data/app/views/alchemy/admin/elements/{_element_toolbar.html.erb → _toolbar.html.erb} +5 -6
- data/app/views/alchemy/admin/elements/{trash.js.erb → destroy.js.erb} +1 -3
- data/app/views/alchemy/admin/elements/new.html.erb +3 -3
- data/app/views/alchemy/admin/elements/order.js.erb +0 -17
- data/app/views/alchemy/admin/elements/update.js.erb +3 -2
- data/app/views/alchemy/admin/essence_audios/edit.html.erb +7 -0
- data/app/views/alchemy/admin/essence_pictures/update.js.erb +0 -1
- data/app/views/alchemy/admin/essence_videos/edit.html.erb +11 -0
- data/app/views/alchemy/admin/ingredients/_audio_fields.html.erb +4 -0
- data/app/views/alchemy/admin/ingredients/_file_fields.html.erb +18 -0
- data/app/views/alchemy/admin/ingredients/_picture_fields.html.erb +25 -0
- data/app/views/alchemy/admin/ingredients/_video_fields.html.erb +8 -0
- data/app/views/alchemy/admin/ingredients/edit.html.erb +4 -0
- data/app/views/alchemy/admin/layoutpages/edit.html.erb +0 -5
- data/app/views/alchemy/admin/nodes/_node.html.erb +2 -2
- data/app/views/alchemy/admin/pages/_anchor_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_external_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_file_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_form.html.erb +0 -6
- data/app/views/alchemy/admin/pages/_internal_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_tinymce_custom_config.html.erb +5 -2
- data/app/views/alchemy/admin/pages/edit.html.erb +36 -24
- data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +2 -4
- data/app/views/alchemy/admin/partials/_routes.html.erb +7 -11
- data/app/views/alchemy/admin/pictures/_filter_and_size_bar.html.erb +4 -8
- data/app/views/alchemy/admin/pictures/_infos.html.erb +0 -1
- data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +4 -4
- data/app/views/alchemy/admin/pictures/assign.js.erb +10 -0
- data/app/views/alchemy/admin/resources/_form.html.erb +1 -0
- data/app/views/alchemy/essences/_essence_audio_editor.html.erb +4 -0
- data/app/views/alchemy/essences/_essence_audio_view.html.erb +15 -0
- data/app/views/alchemy/essences/_essence_file_editor.html.erb +15 -6
- data/app/views/alchemy/essences/_essence_headline_editor.html.erb +36 -0
- data/app/views/alchemy/essences/_essence_headline_view.html.erb +10 -0
- data/app/views/alchemy/essences/_essence_link_editor.html.erb +8 -4
- data/app/views/alchemy/essences/_essence_picture_editor.html.erb +27 -12
- data/app/views/alchemy/essences/_essence_picture_view.html.erb +3 -3
- data/app/views/alchemy/essences/_essence_text_editor.html.erb +12 -4
- data/app/views/alchemy/essences/_essence_video_editor.html.erb +4 -0
- data/app/views/alchemy/essences/_essence_video_view.html.erb +18 -0
- data/app/views/alchemy/essences/shared/_essence_picture_tools.html.erb +21 -16
- data/app/views/alchemy/essences/shared/_linkable_essence_tools.html.erb +2 -2
- data/app/views/alchemy/ingredients/_audio_editor.html.erb +5 -0
- data/app/views/alchemy/ingredients/_audio_view.html.erb +14 -0
- data/app/views/alchemy/ingredients/_boolean_editor.html.erb +11 -0
- data/app/views/alchemy/ingredients/_boolean_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_datetime_editor.html.erb +17 -0
- data/app/views/alchemy/ingredients/_datetime_view.html.erb +9 -0
- data/app/views/alchemy/ingredients/_file_editor.html.erb +50 -0
- data/app/views/alchemy/ingredients/_file_view.html.erb +17 -0
- data/app/views/alchemy/ingredients/_headline_editor.html.erb +30 -0
- data/app/views/alchemy/ingredients/_headline_view.html.erb +9 -0
- data/app/views/alchemy/ingredients/_html_editor.html.erb +8 -0
- data/app/views/alchemy/ingredients/_html_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_link_editor.html.erb +24 -0
- data/app/views/alchemy/ingredients/_link_view.html.erb +9 -0
- data/app/views/alchemy/ingredients/_node_editor.html.erb +25 -0
- data/app/views/alchemy/ingredients/_node_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_page_editor.html.erb +24 -0
- data/app/views/alchemy/ingredients/_page_view.html.erb +4 -0
- data/app/views/alchemy/ingredients/_picture_editor.html.erb +59 -0
- data/app/views/alchemy/ingredients/_picture_view.html.erb +5 -0
- data/app/views/alchemy/ingredients/_richtext_editor.html.erb +12 -0
- data/app/views/alchemy/ingredients/_richtext_view.html.erb +3 -0
- data/app/views/alchemy/ingredients/_select_editor.html.erb +29 -0
- data/app/views/alchemy/ingredients/_select_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_text_editor.html.erb +19 -0
- data/app/views/alchemy/ingredients/_text_view.html.erb +16 -0
- data/app/views/alchemy/ingredients/_video_editor.html.erb +5 -0
- data/app/views/alchemy/ingredients/_video_view.html.erb +17 -0
- data/app/views/alchemy/ingredients/shared/_link_tools.html.erb +20 -0
- data/app/views/alchemy/ingredients/shared/_picture_tools.html.erb +57 -0
- data/config/brakeman.ignore +212 -17
- data/config/initializers/dragonfly.rb +10 -0
- data/config/locales/alchemy.en.yml +63 -39
- data/config/routes.rb +17 -22
- data/db/migrate/20201207131309_create_page_versions.rb +19 -0
- data/db/migrate/20201207135820_add_page_version_id_to_alchemy_elements.rb +76 -0
- data/db/migrate/20210205143548_rename_public_on_and_public_until_on_alchemy_pages.rb +10 -0
- data/db/migrate/20210326105046_add_sanitized_body_to_alchemy_essence_richtexts.rb +7 -0
- data/db/migrate/20210406093436_add_alchemy_essence_headlines.rb +12 -0
- data/db/migrate/20210506135919_create_essence_audios.rb +19 -0
- data/db/migrate/20210506140258_create_essence_videos.rb +23 -0
- data/db/migrate/20210508091432_create_alchemy_ingredients.rb +22 -0
- data/lib/alchemy/admin/preview_url.rb +2 -0
- data/lib/alchemy/deprecation.rb +1 -1
- data/lib/alchemy/dragonfly/processors/auto_orient.rb +18 -0
- data/lib/alchemy/dragonfly/processors/crop_resize.rb +35 -0
- data/lib/alchemy/element_definition.rb +70 -0
- data/lib/alchemy/elements_finder.rb +14 -56
- data/lib/alchemy/essence.rb +5 -6
- data/lib/alchemy/filetypes.rb +13 -0
- data/lib/alchemy/forms/builder.rb +1 -1
- data/lib/alchemy/hints.rb +8 -4
- data/lib/alchemy/i18n.rb +4 -5
- data/lib/alchemy/page_layout.rb +0 -12
- data/lib/alchemy/permissions.rb +30 -29
- data/lib/alchemy/resource.rb +13 -3
- data/lib/alchemy/tasks/tidy.rb +29 -0
- data/lib/alchemy/test_support.rb +9 -0
- data/lib/alchemy/test_support/essence_shared_examples.rb +0 -4
- data/lib/alchemy/test_support/factories/attachment_factory.rb +0 -2
- data/lib/alchemy/test_support/factories/content_factory.rb +0 -6
- data/lib/alchemy/test_support/factories/dummy_user_factory.rb +0 -2
- data/lib/alchemy/test_support/factories/element_factory.rb +8 -11
- data/lib/alchemy/test_support/factories/essence_audio_factory.rb +7 -0
- data/lib/alchemy/test_support/factories/essence_file_factory.rb +0 -3
- data/lib/alchemy/test_support/factories/essence_page_factory.rb +0 -3
- data/lib/alchemy/test_support/factories/essence_picture_factory.rb +0 -4
- data/lib/alchemy/test_support/factories/essence_text_factory.rb +0 -2
- data/lib/alchemy/test_support/factories/essence_video_factory.rb +7 -0
- data/lib/alchemy/test_support/factories/ingredient_factory.rb +25 -0
- data/lib/alchemy/test_support/factories/language_factory.rb +0 -3
- data/lib/alchemy/test_support/factories/node_factory.rb +0 -4
- data/lib/alchemy/test_support/factories/page_factory.rb +20 -4
- data/lib/alchemy/test_support/factories/page_version_factory.rb +23 -0
- data/lib/alchemy/test_support/factories/picture_factory.rb +0 -2
- data/lib/alchemy/test_support/factories/picture_thumb_factory.rb +0 -3
- data/lib/alchemy/test_support/factories/site_factory.rb +0 -2
- data/lib/alchemy/test_support/having_crop_action_examples.rb +170 -0
- data/lib/alchemy/test_support/having_picture_thumbnails_examples.rb +646 -0
- data/lib/alchemy/test_support/integration_helpers.rb +5 -5
- data/lib/alchemy/test_support/shared_ingredient_editor_examples.rb +21 -0
- data/lib/alchemy/test_support/shared_ingredient_examples.rb +57 -0
- data/lib/alchemy/tinymce.rb +17 -0
- data/lib/alchemy/upgrader/six_point_zero.rb +21 -0
- data/lib/alchemy/upgrader/tasks/add_page_versions.rb +33 -0
- data/lib/alchemy/upgrader/tasks/ingredients_migrator.rb +51 -0
- data/lib/alchemy/version.rb +1 -1
- data/lib/alchemy_cms.rb +1 -0
- data/lib/generators/alchemy/elements/elements_generator.rb +1 -0
- data/lib/generators/alchemy/elements/templates/view.html.erb +9 -0
- data/lib/generators/alchemy/elements/templates/view.html.haml +9 -0
- data/lib/generators/alchemy/elements/templates/view.html.slim +9 -0
- data/lib/generators/alchemy/ingredient/ingredient_generator.rb +38 -0
- data/lib/generators/alchemy/ingredient/templates/editor.html.erb +14 -0
- data/lib/generators/alchemy/ingredient/templates/model.rb.tt +13 -0
- data/lib/generators/alchemy/ingredient/templates/view.html.erb +1 -0
- data/lib/generators/alchemy/install/templates/dragonfly.rb.tt +1 -1
- data/lib/tasks/alchemy/thumbnails.rake +2 -0
- data/lib/tasks/alchemy/tidy.rake +12 -0
- data/lib/tasks/alchemy/upgrade.rake +26 -0
- data/package.json +2 -1
- data/package/admin.js +11 -1
- data/package/src/__tests__/i18n.spec.js +23 -0
- data/package/src/file_editors.js +28 -0
- data/package/src/i18n.js +1 -3
- data/package/src/image_cropper.js +103 -0
- data/package/src/image_loader.js +58 -0
- data/package/src/node_tree.js +5 -5
- data/package/src/picture_editors.js +169 -0
- data/package/src/utils/__tests__/ajax.spec.js +20 -12
- data/package/src/utils/ajax.js +8 -3
- data/vendor/assets/javascripts/jquery_plugins/jquery.Jcrop.min.js +3 -18
- data/vendor/assets/stylesheets/jquery.Jcrop.min.scss +2 -28
- metadata +290 -52
- data/app/assets/javascripts/alchemy/alchemy.image_cropper.js.coffee +0 -44
- data/app/assets/javascripts/alchemy/alchemy.trash_window.js.coffee +0 -30
- data/app/assets/stylesheets/alchemy/trash.scss +0 -8
- data/app/controllers/alchemy/admin/trash_controller.rb +0 -42
- data/app/views/alchemy/admin/essence_files/assign.js.erb +0 -3
- data/app/views/alchemy/admin/essence_pictures/assign.js.erb +0 -4
- data/app/views/alchemy/admin/essence_pictures/crop.html.erb +0 -48
- data/app/views/alchemy/admin/trash/clear.js.erb +0 -4
- data/app/views/alchemy/admin/trash/index.html.erb +0 -31
- data/lib/alchemy/test_support/factories.rb +0 -5
@@ -0,0 +1,16 @@
|
|
1
|
+
<%- options = local_assigns.fetch(:options, {}) -%>
|
2
|
+
<%- html_options = local_assigns.fetch(:html_options, {}) -%>
|
3
|
+
<%- if text_view.link.blank? ||
|
4
|
+
text_view.settings_value(:disable_link, options) -%>
|
5
|
+
<%= text_view.value -%>
|
6
|
+
<%- else -%>
|
7
|
+
<%= link_to(
|
8
|
+
text_view.value,
|
9
|
+
url_for(text_view.link),
|
10
|
+
{
|
11
|
+
title: text_view.link_title,
|
12
|
+
target: (text_view.link_target == "blank" ? "_blank" : nil),
|
13
|
+
'data-link-target' => text_view.link_target
|
14
|
+
}.merge(html_options)
|
15
|
+
) -%>
|
16
|
+
<%- end -%>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<%- if video_view.attachment -%>
|
2
|
+
<%= content_tag :video,
|
3
|
+
controls: video_view.controls,
|
4
|
+
autoplay: video_view.autoplay,
|
5
|
+
loop: video_view.loop,
|
6
|
+
muted: video_view.muted,
|
7
|
+
preload: video_view.preload.presence,
|
8
|
+
width: video_view.width.presence,
|
9
|
+
height: video_view.height.presence do %>
|
10
|
+
<%= tag :source,
|
11
|
+
src: alchemy.show_attachment_path(
|
12
|
+
video_view.attachment,
|
13
|
+
format: video_view.attachment.suffix
|
14
|
+
),
|
15
|
+
type: video_view.attachment.file_mime_type %>
|
16
|
+
<% end %>
|
17
|
+
<%- end -%>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<span class="linkable_essence_tools">
|
2
|
+
<%= link_to(
|
3
|
+
render_icon(:link),
|
4
|
+
'#',
|
5
|
+
onclick: 'new Alchemy.LinkDialog(this).open(); return false;',
|
6
|
+
class: "icon_button#{ingredient_editor.linked? ? ' linked' : ''} link-essence",
|
7
|
+
"data-parent-selector": "[data-ingredient-id='#{ingredient_editor.id}']",
|
8
|
+
title: Alchemy.t(:place_link),
|
9
|
+
id: "edit_link_#{ingredient_editor.id}"
|
10
|
+
) %>
|
11
|
+
<%= link_to(
|
12
|
+
render_icon(:unlink),
|
13
|
+
'#',
|
14
|
+
onclick: "return Alchemy.LinkDialog.removeLink(this, '[data-ingredient-id=\"#{ingredient_editor.id}\"]')",
|
15
|
+
class: "icon_button unlink-essence #{ingredient_editor.linked? ? 'linked' : 'disabled'}",
|
16
|
+
tabindex: ingredient_editor.linked? ? nil : '-1',
|
17
|
+
'data-ingredient-id' => ingredient_editor.id,
|
18
|
+
title: Alchemy.t(:unlink)
|
19
|
+
) %>
|
20
|
+
</span>
|
@@ -0,0 +1,57 @@
|
|
1
|
+
<% linkable = picture_editor.settings[:linkable] != false %>
|
2
|
+
<% croppable = picture_editor.allow_image_cropping? %>
|
3
|
+
|
4
|
+
<%= link_to_dialog render_icon(:crop),
|
5
|
+
alchemy.crop_admin_ingredient_path(picture_editor.ingredient, {
|
6
|
+
crop_from_form_field_id: picture_editor.form_field_id(:crop_from),
|
7
|
+
crop_size_form_field_id: picture_editor.form_field_id(:crop_size),
|
8
|
+
picture_id: picture_editor.picture&.id
|
9
|
+
}), {
|
10
|
+
size: "1080x615",
|
11
|
+
title: Alchemy.t("Edit Picturemask"),
|
12
|
+
image_loader: false,
|
13
|
+
padding: false
|
14
|
+
}, {
|
15
|
+
title: Alchemy.t("Edit Picturemask"),
|
16
|
+
class: croppable ? "crop_link" : "disabled crop_link",
|
17
|
+
tabindex: croppable ? nil : "-1",
|
18
|
+
onclick: "return false"
|
19
|
+
} %>
|
20
|
+
|
21
|
+
<%= link_to_dialog render_icon("file-image", style: "regular"),
|
22
|
+
alchemy.admin_pictures_path(
|
23
|
+
form_field_id: picture_editor.form_field_id(:picture_id)
|
24
|
+
),
|
25
|
+
{
|
26
|
+
title: (picture_editor.picture ? Alchemy.t(:swap_image) : Alchemy.t(:insert_image)),
|
27
|
+
size: "790x590",
|
28
|
+
padding: false
|
29
|
+
},
|
30
|
+
title: (picture_editor.picture ? Alchemy.t(:swap_image) : Alchemy.t(:insert_image)) %>
|
31
|
+
|
32
|
+
<%= link_to_if linkable, render_icon(:link), "", {
|
33
|
+
onclick: "new Alchemy.LinkDialog(this).open(); return false;",
|
34
|
+
class: picture_editor.linked? ? "linked" : nil,
|
35
|
+
title: Alchemy.t(:link_image),
|
36
|
+
"data-parent-selector": "[data-ingredient-id='#{picture_editor.id}']",
|
37
|
+
id: "edit_link_#{picture_editor.id}"
|
38
|
+
} do %>
|
39
|
+
<span class="disabled" tabindex="-1"><%= render_icon(:link) %></span>
|
40
|
+
<% end %>
|
41
|
+
|
42
|
+
<%= link_to_if linkable, render_icon(:unlink), "", {
|
43
|
+
onclick: "return Alchemy.LinkDialog.removeLink(this, '[data-ingredient-id=\"#{picture_editor.id}\"]')",
|
44
|
+
class: picture_editor.linked? ? "linked" : "disabled",
|
45
|
+
tabindex: picture_editor.linked? ? nil : "-1",
|
46
|
+
title: Alchemy.t(:unlink)
|
47
|
+
} do %>
|
48
|
+
<span class="disabled" tabindex="-1"><%= render_icon(:unlink) %></span>
|
49
|
+
<% end %>
|
50
|
+
|
51
|
+
<%= link_to_dialog render_icon(:edit),
|
52
|
+
alchemy.edit_admin_ingredient_path(id: picture_editor.id),
|
53
|
+
{
|
54
|
+
title: Alchemy.t(:edit_image_properties),
|
55
|
+
size: "380x255"
|
56
|
+
},
|
57
|
+
title: Alchemy.t(:edit_image_properties) %>
|
data/config/brakeman.ignore
CHANGED
@@ -1,14 +1,65 @@
|
|
1
1
|
{
|
2
2
|
"ignored_warnings": [
|
3
|
+
{
|
4
|
+
"warning_type": "Cross-Site Scripting",
|
5
|
+
"warning_code": 2,
|
6
|
+
"fingerprint": "068b12d24047e2ece633115ba065ce46fc8c8a26827be7de2565ab721e1c2e82",
|
7
|
+
"check_name": "CrossSiteScripting",
|
8
|
+
"message": "Unescaped parameter value",
|
9
|
+
"file": "app/views/alchemy/admin/elements/update.js.erb",
|
10
|
+
"line": 21,
|
11
|
+
"link": "https://brakemanscanner.org/docs/warning_types/cross_site_scripting",
|
12
|
+
"code": "Element.find(params[:id]).ingredients_with_errors.map do\n \"[data-ingredient-id=\\\"#{ingredient.id}\\\"]\"\n end.join(\", \")",
|
13
|
+
"render_path": [
|
14
|
+
{
|
15
|
+
"type": "controller",
|
16
|
+
"class": "Alchemy::Admin::ElementsController",
|
17
|
+
"method": "update",
|
18
|
+
"line": 61,
|
19
|
+
"file": "app/controllers/alchemy/admin/elements_controller.rb",
|
20
|
+
"rendered": {
|
21
|
+
"name": "alchemy/admin/elements/update",
|
22
|
+
"file": "app/views/alchemy/admin/elements/update.js.erb"
|
23
|
+
}
|
24
|
+
}
|
25
|
+
],
|
26
|
+
"location": {
|
27
|
+
"type": "template",
|
28
|
+
"template": "alchemy/admin/elements/update"
|
29
|
+
},
|
30
|
+
"user_input": "params[:id]",
|
31
|
+
"confidence": "Weak",
|
32
|
+
"note": ""
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"warning_type": "File Access",
|
36
|
+
"warning_code": 16,
|
37
|
+
"fingerprint": "154e5d85347ab40256b60182d3143830247b33b81de2ae9ac0622155a1de8e51",
|
38
|
+
"check_name": "SendFile",
|
39
|
+
"message": "Parameter value used in file name",
|
40
|
+
"file": "app/controllers/alchemy/admin/attachments_controller.rb",
|
41
|
+
"line": 69,
|
42
|
+
"link": "https://brakemanscanner.org/docs/warning_types/file_access/",
|
43
|
+
"code": "send_file(Attachment.find(params[:id]).file.path, :filename => Attachment.find(params[:id]).file_name, :type => Attachment.find(params[:id]).file_mime_type)",
|
44
|
+
"render_path": null,
|
45
|
+
"location": {
|
46
|
+
"type": "method",
|
47
|
+
"class": "Alchemy::Admin::AttachmentsController",
|
48
|
+
"method": "download"
|
49
|
+
},
|
50
|
+
"user_input": "params[:id]",
|
51
|
+
"confidence": "Weak",
|
52
|
+
"note": ""
|
53
|
+
},
|
3
54
|
{
|
4
55
|
"warning_type": "Mass Assignment",
|
5
56
|
"warning_code": 70,
|
6
57
|
"fingerprint": "1dd8f69d9b1bdd4017212f38098f03d2ecb2db06269fb940090f209eee7570c6",
|
7
58
|
"check_name": "MassAssignment",
|
8
|
-
"message": "
|
59
|
+
"message": "Specify exact keys allowed for mass assignment instead of using `permit!` which allows any keys",
|
9
60
|
"file": "app/controllers/alchemy/admin/resources_controller.rb",
|
10
|
-
"line":
|
11
|
-
"link": "
|
61
|
+
"line": 136,
|
62
|
+
"link": "https://brakemanscanner.org/docs/warning_types/mass_assignment/",
|
12
63
|
"code": "params.require(resource_handler.namespaced_resource_name).permit!",
|
13
64
|
"render_path": null,
|
14
65
|
"location": {
|
@@ -23,31 +74,43 @@
|
|
23
74
|
{
|
24
75
|
"warning_type": "Dynamic Render Path",
|
25
76
|
"warning_code": 15,
|
26
|
-
"fingerprint": "
|
77
|
+
"fingerprint": "384ec61125c6390d59fb7ebcf52792ba284bfd463d70d4ef552ab6c328e776f6",
|
27
78
|
"check_name": "Render",
|
28
79
|
"message": "Render path contains parameter value",
|
29
|
-
"file": "app/views/alchemy/admin/
|
30
|
-
"line":
|
31
|
-
"link": "
|
32
|
-
"code": "render(action =>
|
33
|
-
"render_path": [
|
80
|
+
"file": "app/views/alchemy/admin/elements/fold.js.erb",
|
81
|
+
"line": 11,
|
82
|
+
"link": "https://brakemanscanner.org/docs/warning_types/dynamic_render_path/",
|
83
|
+
"code": "render(action => Alchemy::ElementEditor.new(Element.find(params[:id])), {})",
|
84
|
+
"render_path": [
|
85
|
+
{
|
86
|
+
"type": "controller",
|
87
|
+
"class": "Alchemy::Admin::ElementsController",
|
88
|
+
"method": "fold",
|
89
|
+
"line": 97,
|
90
|
+
"file": "app/controllers/alchemy/admin/elements_controller.rb",
|
91
|
+
"rendered": {
|
92
|
+
"name": "alchemy/admin/elements/fold",
|
93
|
+
"file": "app/views/alchemy/admin/elements/fold.js.erb"
|
94
|
+
}
|
95
|
+
}
|
96
|
+
],
|
34
97
|
"location": {
|
35
98
|
"type": "template",
|
36
|
-
"template": "alchemy/admin/
|
99
|
+
"template": "alchemy/admin/elements/fold"
|
37
100
|
},
|
38
|
-
"user_input": "params[:
|
101
|
+
"user_input": "params[:id]",
|
39
102
|
"confidence": "Weak",
|
40
|
-
"note": "
|
103
|
+
"note": ""
|
41
104
|
},
|
42
105
|
{
|
43
106
|
"warning_type": "Mass Assignment",
|
44
107
|
"warning_code": 70,
|
45
108
|
"fingerprint": "4b4dc24a6f5251bc1a6851597dfcee39608a2932eb7f81a4a241c00fca8a3043",
|
46
109
|
"check_name": "MassAssignment",
|
47
|
-
"message": "
|
110
|
+
"message": "Specify exact keys allowed for mass assignment instead of using `permit!` which allows any keys",
|
48
111
|
"file": "app/controllers/alchemy/admin/elements_controller.rb",
|
49
|
-
"line":
|
50
|
-
"link": "
|
112
|
+
"line": 150,
|
113
|
+
"link": "https://brakemanscanner.org/docs/warning_types/mass_assignment/",
|
51
114
|
"code": "params.fetch(:contents, {}).permit!",
|
52
115
|
"render_path": null,
|
53
116
|
"location": {
|
@@ -58,8 +121,140 @@
|
|
58
121
|
"user_input": null,
|
59
122
|
"confidence": "Medium",
|
60
123
|
"note": "`Alchemy::Content` is a polymorphic association of any kind of model extending `Alchemy::Essence`. Since we can't know the attributes of all potential essences we need to permit all attributes. As this all happens inside the password protected /admin namespace this can be considered a false positive."
|
124
|
+
},
|
125
|
+
{
|
126
|
+
"warning_type": "Cross-Site Scripting",
|
127
|
+
"warning_code": 4,
|
128
|
+
"fingerprint": "6e6ed4f8b20c07868bc04a4dc419103ecce33bb514eff77790abd57246a4513f",
|
129
|
+
"check_name": "LinkToHref",
|
130
|
+
"message": "Potentially unsafe model attribute in `link_to` href",
|
131
|
+
"file": "app/views/alchemy/admin/nodes/_node.html.erb",
|
132
|
+
"line": 62,
|
133
|
+
"link": "https://brakemanscanner.org/docs/warning_types/link_to_href",
|
134
|
+
"code": "link_to((Unresolved Model).new.url, (Unresolved Model).new.url, :target => \"_blank\", :title => (Unresolved Model).new.url)",
|
135
|
+
"render_path": [
|
136
|
+
{
|
137
|
+
"type": "template",
|
138
|
+
"name": "alchemy/admin/nodes/_node",
|
139
|
+
"line": 71,
|
140
|
+
"file": "app/views/alchemy/admin/nodes/_node.html.erb",
|
141
|
+
"rendered": {
|
142
|
+
"name": "alchemy/admin/nodes/_node",
|
143
|
+
"file": "app/views/alchemy/admin/nodes/_node.html.erb"
|
144
|
+
}
|
145
|
+
}
|
146
|
+
],
|
147
|
+
"location": {
|
148
|
+
"type": "template",
|
149
|
+
"template": "alchemy/admin/nodes/_node"
|
150
|
+
},
|
151
|
+
"user_input": "(Unresolved Model).new.url",
|
152
|
+
"confidence": "Weak",
|
153
|
+
"note": ""
|
154
|
+
},
|
155
|
+
{
|
156
|
+
"warning_type": "File Access",
|
157
|
+
"warning_code": 16,
|
158
|
+
"fingerprint": "6f642c32a45d9f6bbdff89c51873485c930479f4d72885ad0a1883c4372140bf",
|
159
|
+
"check_name": "SendFile",
|
160
|
+
"message": "Parameter value used in file name",
|
161
|
+
"file": "app/controllers/alchemy/attachments_controller.rb",
|
162
|
+
"line": 25,
|
163
|
+
"link": "https://brakemanscanner.org/docs/warning_types/file_access/",
|
164
|
+
"code": "send_file(Attachment.find(params[:id]).file.path, :filename => Attachment.find(params[:id]).file_name, :type => Attachment.find(params[:id]).file_mime_type)",
|
165
|
+
"render_path": null,
|
166
|
+
"location": {
|
167
|
+
"type": "method",
|
168
|
+
"class": "Alchemy::AttachmentsController",
|
169
|
+
"method": "download"
|
170
|
+
},
|
171
|
+
"user_input": "params[:id]",
|
172
|
+
"confidence": "Weak",
|
173
|
+
"note": ""
|
174
|
+
},
|
175
|
+
{
|
176
|
+
"warning_type": "Dynamic Render Path",
|
177
|
+
"warning_code": 15,
|
178
|
+
"fingerprint": "80b9b11d658cd393c549d568b3655c62566862f55b2fa16ed688de7c2e9343ac",
|
179
|
+
"check_name": "Render",
|
180
|
+
"message": "Render path contains parameter value",
|
181
|
+
"file": "app/views/alchemy/admin/elements/index.html.erb",
|
182
|
+
"line": 18,
|
183
|
+
"link": "https://brakemanscanner.org/docs/warning_types/dynamic_render_path/",
|
184
|
+
"code": "render(action => PageVersion.find(params[:page_version_id]).elements.order(:position).includes(*element_includes).not_nested.unfixed.map do\n Alchemy::ElementEditor.new(element)\n end, {})",
|
185
|
+
"render_path": [
|
186
|
+
{
|
187
|
+
"type": "controller",
|
188
|
+
"class": "Alchemy::Admin::ElementsController",
|
189
|
+
"method": "index",
|
190
|
+
"line": 15,
|
191
|
+
"file": "app/controllers/alchemy/admin/elements_controller.rb",
|
192
|
+
"rendered": {
|
193
|
+
"name": "alchemy/admin/elements/index",
|
194
|
+
"file": "app/views/alchemy/admin/elements/index.html.erb"
|
195
|
+
}
|
196
|
+
}
|
197
|
+
],
|
198
|
+
"location": {
|
199
|
+
"type": "template",
|
200
|
+
"template": "alchemy/admin/elements/index"
|
201
|
+
},
|
202
|
+
"user_input": "params[:page_version_id]",
|
203
|
+
"confidence": "Weak",
|
204
|
+
"note": ""
|
205
|
+
},
|
206
|
+
{
|
207
|
+
"warning_type": "Dynamic Render Path",
|
208
|
+
"warning_code": 15,
|
209
|
+
"fingerprint": "80b9b11d658cd393c549d568b3655c62566862f55b2fa16ed688de7c2e9343ac",
|
210
|
+
"check_name": "Render",
|
211
|
+
"message": "Render path contains parameter value",
|
212
|
+
"file": "app/views/alchemy/admin/elements/index.html.erb",
|
213
|
+
"line": 31,
|
214
|
+
"link": "https://brakemanscanner.org/docs/warning_types/dynamic_render_path/",
|
215
|
+
"code": "render(action => PageVersion.find(params[:page_version_id]).elements.order(:position).includes(*element_includes).not_nested.unfixed.map do\n Alchemy::ElementEditor.new(element)\n end, {})",
|
216
|
+
"render_path": [
|
217
|
+
{
|
218
|
+
"type": "controller",
|
219
|
+
"class": "Alchemy::Admin::ElementsController",
|
220
|
+
"method": "index",
|
221
|
+
"line": 15,
|
222
|
+
"file": "app/controllers/alchemy/admin/elements_controller.rb",
|
223
|
+
"rendered": {
|
224
|
+
"name": "alchemy/admin/elements/index",
|
225
|
+
"file": "app/views/alchemy/admin/elements/index.html.erb"
|
226
|
+
}
|
227
|
+
}
|
228
|
+
],
|
229
|
+
"location": {
|
230
|
+
"type": "template",
|
231
|
+
"template": "alchemy/admin/elements/index"
|
232
|
+
},
|
233
|
+
"user_input": "params[:page_version_id]",
|
234
|
+
"confidence": "Weak",
|
235
|
+
"note": ""
|
236
|
+
},
|
237
|
+
{
|
238
|
+
"warning_type": "File Access",
|
239
|
+
"warning_code": 16,
|
240
|
+
"fingerprint": "a1197cfa89e3a66e6d10ee060cd87af97d5e978d6d93b5936eb987288f1c02e6",
|
241
|
+
"check_name": "SendFile",
|
242
|
+
"message": "Parameter value used in file name",
|
243
|
+
"file": "app/controllers/alchemy/attachments_controller.rb",
|
244
|
+
"line": 12,
|
245
|
+
"link": "https://brakemanscanner.org/docs/warning_types/file_access/",
|
246
|
+
"code": "send_file(Attachment.find(params[:id]).file.path, :filename => Attachment.find(params[:id]).file_name, :type => Attachment.find(params[:id]).file_mime_type, :disposition => \"inline\")",
|
247
|
+
"render_path": null,
|
248
|
+
"location": {
|
249
|
+
"type": "method",
|
250
|
+
"class": "Alchemy::AttachmentsController",
|
251
|
+
"method": "show"
|
252
|
+
},
|
253
|
+
"user_input": "params[:id]",
|
254
|
+
"confidence": "Weak",
|
255
|
+
"note": ""
|
61
256
|
}
|
62
257
|
],
|
63
|
-
"updated": "
|
64
|
-
"brakeman_version": "
|
258
|
+
"updated": "2021-06-29 20:56:10 +0200",
|
259
|
+
"brakeman_version": "5.0.1"
|
65
260
|
}
|
@@ -1,5 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
require "dragonfly_svg"
|
3
|
+
require "alchemy/dragonfly/processors/crop_resize"
|
4
|
+
require "alchemy/dragonfly/processors/auto_orient"
|
3
5
|
|
4
6
|
# Logger
|
5
7
|
Dragonfly.logger = Rails.logger
|
@@ -9,3 +11,11 @@ if defined?(ActiveRecord::Base)
|
|
9
11
|
ActiveRecord::Base.extend Dragonfly::Model
|
10
12
|
ActiveRecord::Base.extend Dragonfly::Model::Validations
|
11
13
|
end
|
14
|
+
|
15
|
+
# Dragonfly 1.4.0 only allows `quality` as argument to `encode`
|
16
|
+
Dragonfly::ImageMagick::Processors::Encode::WHITELISTED_ARGS << "flatten"
|
17
|
+
|
18
|
+
Rails.application.config.after_initialize do
|
19
|
+
Dragonfly.app(:alchemy_pictures).add_processor(:crop_resize, Alchemy::Dragonfly::Processors::CropResize.new)
|
20
|
+
Dragonfly.app(:alchemy_pictures).add_processor(:auto_orient, Alchemy::Dragonfly::Processors::AutoOrient.new)
|
21
|
+
end
|
@@ -89,6 +89,11 @@ en:
|
|
89
89
|
right: 'Right from text'
|
90
90
|
no_float: 'Above the text'
|
91
91
|
|
92
|
+
ingredient_values:
|
93
|
+
boolean:
|
94
|
+
true: "True"
|
95
|
+
false: "False"
|
96
|
+
|
92
97
|
# == Contactform translations
|
93
98
|
contactform:
|
94
99
|
labels:
|
@@ -130,31 +135,45 @@ en:
|
|
130
135
|
# == Mime Types translations
|
131
136
|
# These are human readable mime types used for the document-type row in archive files.
|
132
137
|
mime_types:
|
133
|
-
|
134
|
-
application/
|
135
|
-
application/
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
video/mpeg: 'MPEG-Video'
|
140
|
-
application/pdf: 'PDF-Document'
|
141
|
-
application/x-flash-video: 'Flash-Video'
|
142
|
-
video/x-flv: 'Flash-Video'
|
143
|
-
application/x-shockwave-flash: 'Flash-Movie'
|
144
|
-
application/zip: 'ZIP-Archive'
|
145
|
-
application/x-rar: 'RAR-Archive'
|
138
|
+
application/msexcel: Excel Spreadsheet
|
139
|
+
application/mspowerpoint: PowerPoint Presentation
|
140
|
+
application/msword: Word Document
|
141
|
+
application/pdf: PDF Document
|
142
|
+
application/rtf: RTF Document
|
143
|
+
application/vcard: vCard
|
146
144
|
application/vnd:
|
147
|
-
ms-excel:
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
application/
|
145
|
+
ms-excel: Excel Spreadsheet
|
146
|
+
ms-powerpoint: PowerPoint Presentation
|
147
|
+
ms-word: Word Document
|
148
|
+
openxmlformats-officedocument:
|
149
|
+
presentationml:
|
150
|
+
presentation: PowerPoint 2007 Presentation
|
151
|
+
spreadsheetml:
|
152
|
+
sheet: Excel 2007 Spreadsheet
|
153
|
+
wordprocessingml:
|
154
|
+
document: Word 2007 Document
|
155
|
+
application/x-flash-video: Flash Video
|
156
|
+
application/x-rar: RAR Archive
|
157
|
+
application/x-shockwave-flash: Flash Movie
|
158
|
+
application/zip: ZIP Archive
|
159
|
+
audio/mp4: MPEG-4 Audio
|
160
|
+
audio/mpeg: MP3 Audio
|
161
|
+
audio/wav: WAV Audio
|
162
|
+
audio/x-wav: WAV Audio
|
163
|
+
image/gif: GIF Image
|
164
|
+
image/jpeg: JPG Image
|
165
|
+
image/png: PNG Image
|
166
|
+
image/tiff: TIFF Image
|
167
|
+
image/x-psd: Photoshop File
|
168
|
+
image/svg+xml: SVG Image
|
169
|
+
text/plain: Plain Text Document
|
170
|
+
text/x-vcard: vCard
|
171
|
+
video/mp4: MPEG-4 Video
|
172
|
+
video/mpeg: MPEG Video
|
173
|
+
video/quicktime: Quicktime Video
|
174
|
+
video/x-flv: Flash Video
|
175
|
+
video/x-ms-wmv: Windows Media Video
|
176
|
+
video/x-msvideo: AVI Video
|
158
177
|
|
159
178
|
link_target_options:
|
160
179
|
default: Same Window
|
@@ -180,7 +199,6 @@ en:
|
|
180
199
|
'An error happened': 'An error happened'
|
181
200
|
"Change password": "Change password"
|
182
201
|
"Choose page": "Choose page"
|
183
|
-
"Cleared trash": "Cleared trash"
|
184
202
|
"Clear selection": "Clear selection"
|
185
203
|
"Forgot your password?": "Forgot your password?"
|
186
204
|
"Clipboard": "Clipboard"
|
@@ -190,15 +208,14 @@ en:
|
|
190
208
|
"Currently locked pages": "Currently locked pages"
|
191
209
|
"Default language has to be public": "Default language has to be public"
|
192
210
|
"Delete image": "Delete image"
|
211
|
+
"Delete element": "Delete element"
|
193
212
|
"Do you really want to clear the clipboard?": "Do you really want to clear the clipboard?"
|
194
|
-
"Do you really want to clear the trash?": "Do you really want to clear the trash?"
|
195
213
|
"Do you really want to delete this content?": "Do you really want to delete this content?"
|
196
214
|
"Drag an element over to the element window to restore it": "Drag an element over to the element window to restore it"
|
197
215
|
"Edit Picturemask": "Edit picturemask"
|
198
216
|
"Edit image": "Edit image"
|
199
217
|
"Edit multiple pictures": "Edit multiple pictures"
|
200
218
|
"Elements": "Elements"
|
201
|
-
"Element trashed": "Element trashed"
|
202
219
|
"Error with the Flash® Uploader!": "Error with the Flash® Uploader!"
|
203
220
|
"Excerpt": "Excerpt"
|
204
221
|
"File successfully updated": "File successfully updated"
|
@@ -254,7 +271,6 @@ en:
|
|
254
271
|
"Please log in": "Please log in."
|
255
272
|
"Please seperate the tags with commata": "* Please seperate the tags with commas."
|
256
273
|
"Properties": "Properties"
|
257
|
-
"Publish page": "Publish page"
|
258
274
|
"Read the License": "Read the License"
|
259
275
|
"Redirects to": "Redirects to"
|
260
276
|
"Reload Preview": "Reload Preview"
|
@@ -273,7 +289,6 @@ en:
|
|
273
289
|
"Show clipboard": "Show clipboard"
|
274
290
|
"Copied to clipboard": "Copied to clipboard"
|
275
291
|
"Show picture infos": "Show picture infos"
|
276
|
-
"Show trash": "Show trash"
|
277
292
|
"Site successfully created": "Website successfully created."
|
278
293
|
"Site successfully removed": "Website successfully removed."
|
279
294
|
"Site successfully updated": "Website successfully updated."
|
@@ -281,6 +296,7 @@ en:
|
|
281
296
|
"Sort pages": "Reorder pages"
|
282
297
|
"Successfully added content": "Successfully added %{content}"
|
283
298
|
"Successfully deleted content": "Successfully deleted %{content}"
|
299
|
+
"Successfully deleted element": "Successfully deleted %{element}"
|
284
300
|
"Tags": "Tags"
|
285
301
|
"These pictures could not be deleted, because they were in use": "These pictures could not be deleted, because they were in use: %{names}"
|
286
302
|
"This page is locked": "This page is currently locked by %{name}"
|
@@ -295,7 +311,10 @@ en:
|
|
295
311
|
"Visit page": "Visit page"
|
296
312
|
"Warning!": "Warning!"
|
297
313
|
content_definition_missing: "Warning: Content is missing its definition. Please check the elements.yml"
|
314
|
+
content_deprecated: "WARNING! This content is deprecated and will be removed soon. Please do not use it anymore."
|
315
|
+
ingredient_deprecated: "WARNING! This content is deprecated and will be removed soon. Please do not use it anymore."
|
298
316
|
element_definition_missing: "WARNING! Missing element definition. Please check your elements.yml file."
|
317
|
+
element_deprecated: "WARNING! This element is deprecated and will be removed soon. Please do not use it anymore."
|
299
318
|
page_definition_missing: "WARNING! Missing page layout definition. Please check your page_layouts.yml file."
|
300
319
|
"Welcome to Alchemy": "Welcome to Alchemy"
|
301
320
|
"Who else is online": "Who else is online"
|
@@ -305,7 +324,6 @@ en:
|
|
305
324
|
element_dirty_close_window_notice: "You have unsaved elements. Do you really want to close the elements window?"
|
306
325
|
"Your last login was on": "Your last login was on %{time}."
|
307
326
|
"Your last updated pages": "Your last updated pages"
|
308
|
-
"Your trash is empty": "Your trash is empty"
|
309
327
|
above: "above"
|
310
328
|
add: "Add"
|
311
329
|
align_in_text: "Alignment in text"
|
@@ -313,7 +331,6 @@ en:
|
|
313
331
|
all_pictures: "All pictures"
|
314
332
|
apply: "apply"
|
315
333
|
assign_file: "Assign a file"
|
316
|
-
assign_file_from_archive: "assign a file from your archive"
|
317
334
|
assign_image: "Assign an image"
|
318
335
|
attached_to: "attached to"
|
319
336
|
attachment_filename_notice: "* Please do not use any special characters for the filename."
|
@@ -321,17 +338,18 @@ en:
|
|
321
338
|
big_thumbnails: "Big thumbnails"
|
322
339
|
cancel: "cancel"
|
323
340
|
cannot_delete_picture_notice: "Cannot delete Picture %{name}, because it's still in use."
|
341
|
+
cannot_visit_unpublic_page: "Publish page before visiting it."
|
324
342
|
choose_file_to_link: "Please choose a file to link"
|
325
343
|
"clear clipboard": "clear clipboard"
|
326
|
-
"clear trash": "clear trash"
|
327
344
|
click_to_show_all: "Click to show all again."
|
345
|
+
confirm_to_delete_element: "Do you really want to delete this element? It cannot be restored!"
|
328
346
|
confirm_to_delete_file: "Do you really want to delete this file from the server?"
|
329
347
|
confirm_to_delete_image: "Do you really want to delete this image from server?"
|
330
348
|
confirm_to_delete_image_from_server: "Do you really want to delete this image from the server?"
|
331
349
|
confirm_to_delete_images_from_server: "Do you really want to delete these images from the server?"
|
332
350
|
confirm_to_delete_menu: "Do you really want to delete this menu?"
|
333
351
|
confirm_to_delete_node: "Do you really want to delete this menu node?"
|
334
|
-
confirm_to_delete_page: "Do you really want to delete this page?
|
352
|
+
confirm_to_delete_page: "Do you really want to delete this page?"
|
335
353
|
content_essence_not_found: "Content essence not found"
|
336
354
|
content_not_found: "Field for content not present."
|
337
355
|
content_validations_headline: "Please check marked fields below"
|
@@ -377,7 +395,7 @@ en:
|
|
377
395
|
element_saved: "Saved element."
|
378
396
|
enter_external_link: "Please enter the URL you want to link with"
|
379
397
|
explain_cropping: "<p>Move the frame and change its size with the mouse or arrow keys to adjust the image mask. Click on \"apply\" when you are satisfied with your selection.</p><p>If you want to return to the original centered image mask like it was defined in the layout, click \"reset\" and \"apply\" afterwards.</p>"
|
380
|
-
explain_publishing: "Publish
|
398
|
+
explain_publishing: "Publish current page content"
|
381
399
|
explain_sitemap_dragndrop_sorting: "Tip: Drag the pages at the icon in order to sort them."
|
382
400
|
explain_unlocking: "Leave page and unlock it for other users."
|
383
401
|
external_link_notice_1: "Please enter the complete url with http:// or a similar protocol."
|
@@ -406,7 +424,7 @@ en:
|
|
406
424
|
dashboard: "Dashboard"
|
407
425
|
image_alt_tag: "Alt-tag"
|
408
426
|
image_caption: "Caption"
|
409
|
-
image_name: "Name"
|
427
|
+
image_name: "Name: %{name}"
|
410
428
|
image_title: "Title-tag"
|
411
429
|
internal_link_headline: "Search for a page to link to by entering its name into the Page select."
|
412
430
|
internal_link_page_elements_explanation: "Additionally you can choose an anchor to an element from selected page."
|
@@ -475,7 +493,7 @@ en:
|
|
475
493
|
or_replace_it_with_an_existing_tag: 'Or replace it with an existing tag'
|
476
494
|
"Page created": "Page: '%{name}' created."
|
477
495
|
page_infos: 'Page info'
|
478
|
-
page_layout_changed_notice: "Page type was changed. Elements not usable anymore have been
|
496
|
+
page_layout_changed_notice: "Page type was changed. Elements not usable anymore have been hided."
|
479
497
|
page_properties: "Page properties"
|
480
498
|
page_public: "published"
|
481
499
|
page_published: "Published page"
|
@@ -522,6 +540,8 @@ en:
|
|
522
540
|
'1024': '1024px (iPad - Landscape)'
|
523
541
|
'1280': '1280px (Desktop)'
|
524
542
|
preview_url: Preview
|
543
|
+
publish_page_language_not_public: Cannot publish page if language is not public
|
544
|
+
publish_page_not_allowed: You have not the permission to publish this page
|
525
545
|
recently_uploaded_only: 'Recently uploaded only'
|
526
546
|
"regular method": "Regular method"
|
527
547
|
remove: "Remove"
|
@@ -552,7 +572,6 @@ en:
|
|
552
572
|
subject: "Subject"
|
553
573
|
successfully_added_element: "Successfully added new element."
|
554
574
|
successfully_deleted_tag: "Successfully deleted tag"
|
555
|
-
successfully_restored_element: "Element restored successfully."
|
556
575
|
successfully_saved_element_position: "Element position updated successfully."
|
557
576
|
successfully_updated_tag: "Successfully updated tag"
|
558
577
|
swap_image: "Change image"
|
@@ -562,7 +581,6 @@ en:
|
|
562
581
|
this_picture_is_used_on_these_pages: "This picture is used on following pages"
|
563
582
|
title: "Title"
|
564
583
|
to_alchemy: "To Alchemy"
|
565
|
-
"trash element": "Put element into trash"
|
566
584
|
unknown: "unknown"
|
567
585
|
unlink: "Remove link from this image."
|
568
586
|
unlock_page: "Leave page"
|
@@ -688,11 +706,18 @@ en:
|
|
688
706
|
# Translations for Alchemy models
|
689
707
|
activemodel:
|
690
708
|
models:
|
709
|
+
alchemy/essence_headline:
|
710
|
+
one: Headline
|
711
|
+
other: Headline
|
691
712
|
alchemy/message:
|
692
713
|
one: Message
|
693
714
|
other: Messages
|
694
715
|
alchemy/admin/preview_url: Internal
|
695
716
|
attributes:
|
717
|
+
alchemy/essence_headline:
|
718
|
+
body: Headline
|
719
|
+
level: Level
|
720
|
+
size: Size
|
696
721
|
alchemy/message:
|
697
722
|
salutation: 'Salutation'
|
698
723
|
firstname: 'Firstname'
|
@@ -769,7 +794,6 @@ en:
|
|
769
794
|
name: "Name"
|
770
795
|
public: "visible"
|
771
796
|
tag_list: Tags
|
772
|
-
trashed: Trashed
|
773
797
|
alchemy/essence_file:
|
774
798
|
css_class: Style
|
775
799
|
alchemy/essence_picture:
|