alchemy_cms 5.0.0.rc1 → 5.1.0.beta2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. checksums.yaml +4 -4
  2. data/.github/PULL_REQUEST_TEMPLATE.md +1 -1
  3. data/.github/workflows/stale.yml +1 -1
  4. data/.gitignore +1 -0
  5. data/.travis.yml +48 -0
  6. data/CHANGELOG.md +63 -2
  7. data/CONTRIBUTING.md +2 -2
  8. data/Gemfile +3 -3
  9. data/README.md +2 -2
  10. data/alchemy_cms.gemspec +2 -2
  11. data/app/assets/images/alchemy/missing-image.svg +1 -0
  12. data/app/assets/javascripts/alchemy/alchemy.element_editors.js.coffee +1 -4
  13. data/app/assets/javascripts/alchemy/alchemy.preview.js.coffee +0 -3
  14. data/app/assets/javascripts/alchemy/alchemy.preview_window.js.coffee +29 -4
  15. data/app/assets/stylesheets/alchemy/_variables.scss +3 -0
  16. data/app/assets/stylesheets/alchemy/archive.scss +23 -17
  17. data/app/assets/stylesheets/alchemy/errors.scss +1 -1
  18. data/app/assets/stylesheets/alchemy/navigation.scss +7 -9
  19. data/app/assets/stylesheets/alchemy/pagination.scss +1 -1
  20. data/app/assets/stylesheets/alchemy/search.scss +12 -2
  21. data/app/assets/stylesheets/alchemy/selects.scss +4 -2
  22. data/app/assets/stylesheets/alchemy/tags.scss +19 -31
  23. data/app/controllers/alchemy/admin/pages_controller.rb +11 -2
  24. data/app/controllers/alchemy/admin/pictures_controller.rb +13 -6
  25. data/app/controllers/alchemy/admin/resources_controller.rb +3 -3
  26. data/app/controllers/alchemy/pages_controller.rb +49 -14
  27. data/app/helpers/alchemy/admin/base_helper.rb +0 -42
  28. data/app/helpers/alchemy/admin/navigation_helper.rb +2 -1
  29. data/app/helpers/alchemy/url_helper.rb +2 -2
  30. data/app/models/alchemy/attachment.rb +21 -1
  31. data/app/models/alchemy/attachment/url.rb +40 -0
  32. data/app/models/alchemy/essence_file.rb +1 -1
  33. data/app/models/alchemy/essence_picture.rb +4 -4
  34. data/app/models/alchemy/essence_picture_view.rb +10 -4
  35. data/app/models/alchemy/page.rb +16 -1
  36. data/app/models/alchemy/page/page_natures.rb +2 -0
  37. data/app/models/alchemy/page/url_path.rb +8 -6
  38. data/app/models/alchemy/picture.rb +58 -2
  39. data/app/models/alchemy/picture/calculations.rb +55 -0
  40. data/app/models/alchemy/picture/transformations.rb +5 -49
  41. data/app/models/alchemy/picture/url.rb +28 -75
  42. data/app/models/alchemy/picture_thumb.rb +57 -0
  43. data/app/models/alchemy/picture_thumb/create.rb +39 -0
  44. data/app/models/alchemy/picture_thumb/signature.rb +23 -0
  45. data/app/models/alchemy/picture_thumb/uid.rb +22 -0
  46. data/app/models/alchemy/picture_variant.rb +114 -0
  47. data/app/views/alchemy/admin/attachments/show.html.erb +8 -8
  48. data/app/views/alchemy/admin/dashboard/index.html.erb +13 -16
  49. data/app/views/alchemy/admin/essence_pictures/crop.html.erb +1 -1
  50. data/app/views/alchemy/admin/essence_pictures/edit.html.erb +2 -2
  51. data/app/views/alchemy/admin/layoutpages/edit.html.erb +4 -6
  52. data/app/views/alchemy/admin/pages/_form.html.erb +4 -6
  53. data/app/views/alchemy/admin/pages/_new_page_form.html.erb +2 -1
  54. data/app/views/alchemy/admin/pages/edit.html.erb +9 -1
  55. data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +14 -13
  56. data/app/views/alchemy/admin/partials/_search_form.html.erb +8 -8
  57. data/app/views/alchemy/admin/pictures/_archive.html.erb +1 -1
  58. data/app/views/alchemy/admin/pictures/_form.html.erb +1 -1
  59. data/app/views/alchemy/admin/pictures/_picture.html.erb +3 -3
  60. data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +1 -1
  61. data/app/views/alchemy/admin/pictures/edit_multiple.html.erb +1 -1
  62. data/app/views/alchemy/admin/pictures/index.html.erb +1 -1
  63. data/app/views/alchemy/admin/pictures/show.html.erb +3 -3
  64. data/app/views/alchemy/admin/resources/_per_page_select.html.erb +3 -3
  65. data/app/views/alchemy/admin/resources/index.html.erb +24 -22
  66. data/app/views/alchemy/admin/sites/_form.html.erb +2 -2
  67. data/app/views/alchemy/admin/tags/index.html.erb +14 -15
  68. data/app/views/alchemy/base/500.html.erb +11 -13
  69. data/app/views/alchemy/essences/_essence_file_view.html.erb +4 -4
  70. data/config/alchemy/config.yml +15 -11
  71. data/config/alchemy/modules.yml +12 -12
  72. data/config/locales/alchemy.en.yml +2 -0
  73. data/config/routes.rb +1 -1
  74. data/db/migrate/20200617110713_create_alchemy_picture_thumbs.rb +22 -0
  75. data/db/migrate/20200907111332_remove_tri_state_booleans.rb +33 -0
  76. data/lib/alchemy.rb +66 -0
  77. data/lib/alchemy/admin/preview_url.rb +2 -0
  78. data/lib/alchemy/auth_accessors.rb +12 -5
  79. data/lib/alchemy/config.rb +1 -3
  80. data/lib/alchemy/engine.rb +7 -6
  81. data/lib/alchemy/modules.rb +11 -1
  82. data/lib/alchemy/resource.rb +2 -2
  83. data/lib/alchemy/test_support/factories/picture_factory.rb +0 -1
  84. data/lib/alchemy/test_support/factories/picture_thumb_factory.rb +12 -0
  85. data/lib/alchemy/version.rb +1 -1
  86. data/lib/alchemy_cms.rb +2 -3
  87. data/lib/generators/alchemy/install/files/alchemy.en.yml +2 -2
  88. data/lib/generators/alchemy/install/templates/dragonfly.rb.tt +5 -5
  89. data/lib/tasks/alchemy/thumbnails.rake +37 -0
  90. metadata +24 -15
  91. data/.github/workflows/ci.yml +0 -134
  92. data/.github/workflows/greetings.yml +0 -13
  93. data/app/controllers/concerns/alchemy/locale_redirects.rb +0 -40
  94. data/app/controllers/concerns/alchemy/page_redirects.rb +0 -68
  95. data/lib/alchemy/userstamp.rb +0 -12
@@ -34,7 +34,7 @@
34
34
  $('#imageToCrop').load(function() {
35
35
  Alchemy.ImageCropper.init(
36
36
  <%= @initial_box.values.to_json %>,
37
- <% if @essence_picture.can_be_cropped_to("#{@min_size[:width]}x#{@min_size[:height]}") %>
37
+ <% if @picture.can_be_cropped_to?("#{@min_size[:width]}x#{@min_size[:height]}") %>
38
38
  <%= @min_size.values.to_json %>,
39
39
  <% else %>
40
40
  <%= false %>,
@@ -4,10 +4,10 @@
4
4
  <%= f.input :caption, as: @content.settings[:caption_as_textarea] ? 'text' : 'string' %>
5
5
  <%= f.input :title %>
6
6
  <%= f.input :alt_tag %>
7
- <%- if @content.settings[:sizes].present? -%>
7
+ <%- if @content.settings[:sizes].present? && @content.settings[:srcset].blank? -%>
8
8
  <%= f.input :render_size,
9
9
  collection: [
10
- [Alchemy.t('Layout default'), @content.settings[:size]]
10
+ [Alchemy.t('Layout default'), ""]
11
11
  ] + @content.settings[:sizes].to_a,
12
12
  include_blank: false,
13
13
  input_html: {class: 'alchemy_selectbox'} %>
@@ -5,11 +5,9 @@
5
5
  include_blank: Alchemy.t('Please choose'),
6
6
  input_html: {class: 'alchemy_selectbox'} %>
7
7
  <%= f.input :name, autofocus: true %>
8
- <% if @page.taggable? %>
9
- <div class="input string">
10
- <%= f.label :tag_list %>
11
- <%= render 'alchemy/admin/partials/autocomplete_tag_list', f: f %>
12
- </div>
13
- <% end %>
8
+ <div class="input string">
9
+ <%= f.label :tag_list %>
10
+ <%= render 'alchemy/admin/partials/autocomplete_tag_list', f: f %>
11
+ </div>
14
12
  <%= f.submit Alchemy.t(:save) %>
15
13
  <% end %>
@@ -36,12 +36,10 @@
36
36
  as: 'text',
37
37
  hint: Alchemy.t('pages.update.comma_seperated') %>
38
38
 
39
- <% if @page.taggable? %>
40
- <div class="input string autocomplete_tag_list">
41
- <%= f.label :tag_list %>
42
- <%= render 'alchemy/admin/partials/autocomplete_tag_list', f: f %>
43
- </div>
44
- <% end %>
39
+ <div class="input string autocomplete_tag_list">
40
+ <%= f.label :tag_list %>
41
+ <%= render 'alchemy/admin/partials/autocomplete_tag_list', f: f %>
42
+ </div>
45
43
 
46
44
  <%= f.submit Alchemy.t(:save) %>
47
45
  <% end %>
@@ -5,8 +5,9 @@
5
5
  <%= f.input :page_layout,
6
6
  collection: @page_layouts,
7
7
  label: Alchemy.t(:page_type),
8
- include_blank: Alchemy.t('Please choose'),
8
+ include_blank: @page_layouts.length == 1 ? nil : Alchemy.t('Please choose'),
9
9
  required: true,
10
+ selected: @page_layouts.length == 1 ? @page_layouts.first : nil,
10
11
  input_html: {class: 'alchemy_selectbox'} %>
11
12
  <%= f.input :name %>
12
13
  <%= f.submit Alchemy.t(:create) %>
@@ -88,6 +88,14 @@
88
88
  class: 'alchemy_selectbox medium' %>
89
89
  </div>
90
90
  <div class="toolbar_spacer"></div>
91
+ <% if @preview_urls.many? %>
92
+ <div class="select_with_label">
93
+ <label><%= Alchemy.t(:preview_url) %></label>
94
+ <%= select_tag 'preview_url',
95
+ options_for_select(@preview_urls),
96
+ class: 'alchemy_selectbox large' %>
97
+ </div>
98
+ <% end %>
91
99
  <div class="button_with_label">
92
100
  <%= link_to render_icon(:redo), nil, {
93
101
  title: Alchemy.t('Reload Preview'),
@@ -190,7 +198,7 @@
190
198
  }
191
199
  });
192
200
 
193
- Alchemy.PreviewWindow.init('<%= @preview_url %>');
201
+ Alchemy.PreviewWindow.init(<%== @preview_urls.first %>);
194
202
 
195
203
  $('#preview_size').bind('open.selectBoxIt', function (e) {
196
204
  $('#top_menu').css('z-index', 5000);
@@ -1,24 +1,25 @@
1
- <%= search_form_for @query, url: url_for(
2
- action: 'index',
3
- size: @size
1
+ <%= search_form_for @query, url: url_for({
2
+ action: 'index',
3
+ size: @size,
4
+ }.merge(search_filter_params.except(:q))
4
5
  ), remote: true, html: {class: 'search_form', id: nil} do |f| %>
5
- <%= hidden_field_tag("element_id", @element.blank? ? "" : @element.id) %>
6
- <%= hidden_field_tag("content_id", @content.blank? ? "" : @content.id) %>
6
+ <%= hidden_field_tag("element_id", @element.blank? ? "" : @element.id, id: nil) %>
7
+ <%= hidden_field_tag("content_id", @content.blank? ? "" : @content.id, id: nil) %>
7
8
  <div class="search_field">
8
- <label>
9
+ <button type="submit">
9
10
  <%= render_icon('search') %>
10
- <%= f.search_field resource_handler.search_field_name,
11
- placeholder: Alchemy.t(:search),
12
- class: 'search_input_field',
13
- id: nil %>
14
- </label>
15
- <%= link_to render_icon(:times, size: 'xs'), url_for(
11
+ </button>
12
+ <%= f.search_field resource_handler.search_field_name,
13
+ placeholder: Alchemy.t(:search),
14
+ class: 'search_input_field',
15
+ id: nil %>
16
+ <%= link_to render_icon(:times, size: 'xs'), url_for({
16
17
  action: 'index',
17
18
  element_id: @element.blank? ? '' : @element.id,
18
19
  content_id: @content.blank? ? '' : @content.id,
19
20
  size: @size,
20
21
  overlay: true
21
- ),
22
+ }.merge(search_filter_params.except(:q))),
22
23
  remote: true,
23
24
  class: 'search_field_clear',
24
25
  title: Alchemy.t(:click_to_show_all),
@@ -1,15 +1,15 @@
1
- <%- url ||= resource_url_proxy.url_for(action: 'index') -%>
1
+ <%- url ||= resource_url_proxy.url_for({ action: 'index' }.merge(search_filter_params.except(:q, :page))) -%>
2
2
 
3
3
  <%= search_form_for @query, url: url, class: 'search_form' do |f| %>
4
4
  <div class="search_field">
5
- <label>
5
+ <button type="submit">
6
6
  <%= render_icon('search') %>
7
- <%= f.search_field resource_handler.search_field_name,
8
- class: 'search_input_field',
9
- placeholder: Alchemy.t(:search) %>
10
- </label>
7
+ </button>
8
+ <%= f.search_field resource_handler.search_field_name,
9
+ class: 'search_input_field',
10
+ placeholder: Alchemy.t(:search) %>
11
11
  <% local_assigns.fetch(:additional_query_fields, []).each do |field| %>
12
- <%= f.hidden_field field %>
12
+ <%= f.hidden_field field, id: nil %>
13
13
  <% end %>
14
14
  <%= link_to render_icon(:times, size: 'xs'), url,
15
15
  class: 'search_field_clear',
@@ -17,7 +17,7 @@
17
17
  title: Alchemy.t(:click_to_show_all),
18
18
  style: search_filter_params.fetch(:q, {}).fetch(resource_handler.search_field_name, '').present? ? 'display: block' : 'display: none' %>
19
19
  <% local_assigns.fetch(:additional_params, []).each do |additional_param| %>
20
- <%= hidden_field_tag additional_param, search_filter_params[additional_param] %>
20
+ <%= hidden_field_tag additional_param, search_filter_params[additional_param], id: nil %>
21
21
  <% end %>
22
22
  </div>
23
23
  <% end %>
@@ -31,7 +31,7 @@
31
31
  admin_pictures_path(
32
32
  q: search_filter_params[:q],
33
33
  tagged_with: search_filter_params[:tagged_with],
34
- size: params[:size],
34
+ size: @size,
35
35
  filter: search_filter_params[:filter]
36
36
  ),
37
37
  class: 'secondary button with_icon',
@@ -6,7 +6,7 @@
6
6
  <small class="hint"><%= Alchemy.t('Please seperate the tags with commata') %></small>
7
7
  </div>
8
8
  <%= hidden_field_tag :q, search_filter_params[:q] %>
9
- <%= hidden_field_tag :size, params[:size] %>
9
+ <%= hidden_field_tag :size, @size %>
10
10
  <%= hidden_field_tag :tagged_with, search_filter_params[:tagged_with] %>
11
11
  <%= hidden_field_tag :filter, search_filter_params[:filter] %>
12
12
  <%= f.submit Alchemy.t(:save) %>
@@ -12,7 +12,7 @@
12
12
  q: search_filter_params[:q],
13
13
  page: params[:page],
14
14
  tagged_with: search_filter_params[:tagged_with],
15
- size: params[:size],
15
+ size: @size,
16
16
  filter: search_filter_params[:filter]
17
17
  ),
18
18
  {
@@ -22,7 +22,7 @@
22
22
  </span>
23
23
  <% end %>
24
24
  <% image = image_tag(
25
- picture.url(size: preview_size(@size), flatten: true),
25
+ picture.url(size: preview_size(@size), flatten: true) || "alchemy/missing-image.svg",
26
26
  alt: picture.name,
27
27
  title: Alchemy.t(:zoom_image)
28
28
  ) %>
@@ -34,7 +34,7 @@
34
34
  q: search_filter_params[:q],
35
35
  page: params[:page],
36
36
  tagged_with: search_filter_params[:tagged_with],
37
- size: params[:size],
37
+ size: @size,
38
38
  filter: search_filter_params[:filter]
39
39
  ),
40
40
  class: 'thumbnail_background'
@@ -1,7 +1,7 @@
1
1
  <div class="picture_thumbnail assign_image_list_detail <%= size.blank? ? 'medium' : size %>" name="<%= picture_to_assign.name %>" id="picture_to_assign_<%= picture_to_assign.id %>">
2
2
  <%= link_to(
3
3
  image_tag(
4
- picture_to_assign.url(size: preview_size(size), flatten: true),
4
+ picture_to_assign.url(size: preview_size(size), flatten: true) || "alchemy/missing-image.svg",
5
5
  alt: picture_to_assign.name
6
6
  ),
7
7
  alchemy.assign_admin_essence_pictures_path(
@@ -1,6 +1,6 @@
1
1
  <%= form_tag update_multiple_admin_pictures_path do %>
2
2
  <%= hidden_field_tag :q, search_filter_params[:q] %>
3
- <%= hidden_field_tag :size, params[:size] %>
3
+ <%= hidden_field_tag :size, @size %>
4
4
  <%= hidden_field_tag :tagged_with, search_filter_params[:tagged_with] %>
5
5
  <%= hidden_field_tag :filter, search_filter_params[:filter] %>
6
6
 
@@ -5,7 +5,7 @@
5
5
  object: Alchemy::Picture.new,
6
6
  file_attribute: 'image_file',
7
7
  redirect_url: alchemy.admin_pictures_path(
8
- size: params[:size],
8
+ size: @size,
9
9
  filter: 'last_upload'
10
10
  ) %>
11
11
  <div class="toolbar_spacer"></div>
@@ -1,5 +1,5 @@
1
1
  <div class="zoomed-picture-background">
2
- <%= image_tag @picture.url(format: @picture.image_file_format) %>
2
+ <%= image_tag @picture.url || "alchemy/missing-image.svg" %>
3
3
  </div>
4
4
 
5
5
  <div class="picture-overlay-navigation">
@@ -9,7 +9,7 @@
9
9
  q: search_filter_params[:q],
10
10
  page: params[:page],
11
11
  tagged_with: search_filter_params[:tagged_with],
12
- size: params[:size],
12
+ size: @size,
13
13
  filter: search_filter_params[:filter]
14
14
  ),
15
15
  class: "previous-picture",
@@ -23,7 +23,7 @@
23
23
  q: search_filter_params[:q],
24
24
  page: params[:page],
25
25
  tagged_with: search_filter_params[:tagged_with],
26
- size: params[:size],
26
+ size: @size,
27
27
  filter: search_filter_params[:filter]
28
28
  ),
29
29
  class: "next-picture",
@@ -2,10 +2,10 @@
2
2
  <% search_filter_params.reject { |k, _| k == 'page' || k == 'per_page' }.each do |key, value| %>
3
3
  <% if value.is_a? Hash %>
4
4
  <% value.each do |k, v| %>
5
- <%= hidden_field_tag "#{key}[#{k}]", v %>
5
+ <%= hidden_field_tag "#{key}[#{k}]", v, id: nil %>
6
6
  <% end %>
7
7
  <% else %>
8
- <%= hidden_field_tag key, value %>
8
+ <%= hidden_field_tag key, value, id: nil %>
9
9
  <% end %>
10
10
  <% end %>
11
11
  <label>
@@ -17,4 +17,4 @@
17
17
  ),
18
18
  onchange: 'this.form.submit()' %>
19
19
  </label>
20
- <% end %>
20
+ <% end %>
@@ -1,29 +1,31 @@
1
1
  <% label_title = Alchemy.t("Create #{resource_name}", default: Alchemy.t('Create')) %>
2
2
 
3
- <% toolbar(
4
- buttons: [
5
- {
6
- icon: :plus,
7
- label: label_title,
8
- url: new_resource_path,
3
+ <% content_for(:toolbar) do %>
4
+ <%= toolbar_button(
5
+ icon: :plus,
6
+ label: label_title,
7
+ url: new_resource_path,
8
+ title: label_title,
9
+ hotkey: 'alt+n',
10
+ dialog_options: {
9
11
  title: label_title,
10
- hotkey: 'alt+n',
11
- dialog_options: {
12
- title: label_title,
13
- size: resource_window_size
14
- },
15
- if_permitted_to: [:create, resource_model]
12
+ size: resource_window_size
16
13
  },
17
- {
18
- icon: 'download',
19
- url: resource_url_proxy.url_for(action: 'index', format: 'csv', q: search_filter_params[:q], sort: params[:sort]),
20
- label: Alchemy.t(:download_csv),
21
- title: Alchemy.t(:download_csv),
22
- dialog: false,
23
- if_permitted_to: [:index, resource_model]
24
- }
25
- ]
26
- ) %>
14
+ if_permitted_to: [:create, resource_model]
15
+ ) %>
16
+ <%= toolbar_button(
17
+ icon: :download,
18
+ url: resource_url_proxy.url_for(action: 'index', format: 'csv', q: search_filter_params[:q], sort: params[:sort]),
19
+ label: Alchemy.t(:download_csv),
20
+ title: Alchemy.t(:download_csv),
21
+ dialog: false,
22
+ if_permitted_to: [:index, resource_model]
23
+ ) %>
24
+ <%= render 'alchemy/admin/partials/search_form', additional_params: [
25
+ resource_has_filters ? :filter : nil,
26
+ resource_has_tags ? :tagged_with : nil
27
+ ].compact %>
28
+ <% end %>
27
29
 
28
30
  <div id="archive_all" class="resources-table-wrapper<%= ' with_tag_filter' if resource_has_tags || resource_has_filters %>">
29
31
  <%= render 'alchemy/admin/resources/table_header' %>
@@ -1,5 +1,5 @@
1
- <%= alchemy_form_for site, url: alchemy.admin_sites_path(site, search_filter_params) do |f| %>
2
- <%= f.input :host, hint: resource_handler.help_text_for(name: :host).html_safe %>
1
+ <%= alchemy_form_for site, url: resource_path(site, search_filter_params) do |f| %>
2
+ <%= f.input :host, hint: resource_handler.help_text_for(name: :host)&.html_safe %>
3
3
  <%= f.input :name %>
4
4
  <%= f.input :public %>
5
5
  <%= f.input :aliases, hint: resource_handler.help_text_for(name: :aliases), input_html: {rows: 4} %>
@@ -1,19 +1,18 @@
1
- <%= toolbar(
2
- buttons: [
3
- {
4
- icon: :plus,
5
- label: Alchemy.t('New Tag'),
6
- url: alchemy.new_admin_tag_path,
1
+ <% content_for :toolbar do %>
2
+ <%= toolbar_button(
3
+ icon: :plus,
4
+ label: Alchemy.t('New Tag'),
5
+ url: alchemy.new_admin_tag_path,
6
+ title: Alchemy.t('New Tag'),
7
+ hotkey: 'alt+n',
8
+ dialog_options: {
7
9
  title: Alchemy.t('New Tag'),
8
- hotkey: 'alt+n',
9
- dialog_options: {
10
- title: Alchemy.t('New Tag'),
11
- size: '310x180'
12
- },
13
- if_permitted_to: [:create, Alchemy::Tag]
14
- }
15
- ]
16
- ) %>
10
+ size: '310x180'
11
+ },
12
+ if_permitted_to: [:create, Alchemy::Tag]
13
+ ) %>
14
+ <%= render 'alchemy/admin/partials/search_form' %>
15
+ <% end %>
17
16
 
18
17
  <div id="archive_all" class="resources-table-wrapper">
19
18
  <%= render 'alchemy/admin/resources/table_header' %>
@@ -1,16 +1,14 @@
1
- <%= toolbar(
2
- buttons: [
3
- {
4
- icon: 'angle-double-left',
5
- url: request.referer || alchemy.admin_dashboard_path,
6
- label: Alchemy.t(:back),
7
- title: Alchemy.t(:back),
8
- hotkey: 'alt+z',
9
- dialog: false,
10
- skip_permission_check: true
11
- }
12
- ], search: false
13
- ) %>
1
+ <%= content_for :toolbar do %>
2
+ <%= toolbar_button(
3
+ icon: 'angle-double-left',
4
+ url: request.referer || alchemy.admin_dashboard_path,
5
+ label: Alchemy.t(:back),
6
+ title: Alchemy.t(:back),
7
+ hotkey: 'alt+z',
8
+ dialog: false,
9
+ skip_permission_check: true
10
+ ) %>
11
+ <% end %>
14
12
 
15
13
  <% content_for(:alchemy_body_class) { 'error' } %>
16
14
 
@@ -5,9 +5,9 @@
5
5
  content.essence.link_text.presence ||
6
6
  content.settings_value(:link_text, local_assigns.fetch(:options, {})) ||
7
7
  attachment.name,
8
- alchemy.download_attachment_path(
9
- attachment,
10
- name: attachment.urlname,
8
+ attachment.url(
9
+ download: true,
10
+ name: attachment.slug,
11
11
  format: attachment.suffix
12
12
  ),
13
13
  {
@@ -15,4 +15,4 @@
15
15
  title: content.essence.title.presence
16
16
  }.merge(html_options)
17
17
  ) -%>
18
- <%- end -%>
18
+ <%- end -%>
@@ -9,12 +9,6 @@
9
9
  #
10
10
  auto_logout_time: 30
11
11
 
12
- # === Redirect Options
13
- #
14
- # redirect_to_public_child [Boolean] # Alchemy redirects to the first public child page found, if a page is not public.
15
- #
16
- redirect_to_public_child: true
17
-
18
12
  # === Page caching
19
13
  #
20
14
  # Enable/Disable page caching globally.
@@ -68,17 +62,27 @@ items_per_page: 15
68
62
 
69
63
  # === Picture rendering settings
70
64
  #
71
- # Alchemy uses Dragonfly to render images. Use {size: "XXXxYYY", crop: BOOLEAN [true]} to resize images.
65
+ # Alchemy uses Dragonfly to render images. Settings for image rendering are specific to elements and are defined in elements.yml
72
66
  #
73
- # See http://markevans.github.com/dragonfly for further infos.
67
+ # Example:
68
+ # - name: some_element
69
+ # contents:
70
+ # - name: some_picture
71
+ # type: EssencePicture
72
+ # settings:
73
+ # hint: true
74
+ # crop: true # turns on image cropping
75
+ # size: '500x500' # image will be cropped to this size
74
76
  #
75
- # ==== Options:
77
+ # See http://markevans.github.com/dragonfly for further info.
78
+ #
79
+ # ==== Global Options:
76
80
  #
77
81
  # output_image_jpg_quality [Integer] # If image gets rendered as JPG this is the quality setting for it. (Default 85)
78
- # preprocess_image_resize [String] # Use this option to resize images to that value. Downsizing example: '1000x1000>' (Default nil)
82
+ # preprocess_image_resize [String] # Use this option to resize images to the given size when they are uploaded to the image library. Downsizing example: '1000x1000>' (Default nil)
79
83
  # image_output_format [String] # The global image output format setting. (Default +original+)
80
84
  #
81
- # NOTE: You can always override the output format in the options of your Essence. I.E. {format: 'gif'}
85
+ # NOTE: You can always override the output format in the settings of your Essence in elements.yml, I.E. {format: 'gif'}
82
86
  #
83
87
  output_image_jpg_quality: 85
84
88
  preprocess_image_resize: