diff options
Diffstat (limited to 'app/views/revisions')
| -rw-r--r-- | app/views/revisions/diff.html.erb | 84 | ||||
| -rw-r--r-- | app/views/revisions/index.html.erb | 10 | ||||
| -rw-r--r-- | app/views/revisions/show.html.erb | 6 |
3 files changed, 47 insertions, 53 deletions
diff --git a/app/views/revisions/diff.html.erb b/app/views/revisions/diff.html.erb index 1318bd37..ba320365 100644 --- a/app/views/revisions/diff.html.erb +++ b/app/views/revisions/diff.html.erb | |||
| @@ -4,57 +4,51 @@ | |||
| 4 | <%= link_to t(".revisions_link"), node_revisions_path(@node) %> | 4 | <%= link_to t(".revisions_link"), node_revisions_path(@node) %> |
| 5 | </p> | 5 | </p> |
| 6 | 6 | ||
| 7 | <p class="diff_comparison_label"> | 7 | <% numeric_comparison = params[:start_revision].to_s =~ /\A\d+\z/ && params[:end_revision].to_s =~ /\A\d+\z/ %> |
| 8 | <%= t(".comparing") %> <strong><%= describe_page_reference(params[:start_revision]) %></strong> | 8 | <% start_control = numeric_comparison ? |
| 9 | <%= t(".against") %> <strong><%= describe_page_reference(params[:end_revision]) %></strong> | 9 | select_tag(:start_revision, options_for_select(@node.pages.map(&:revision), params[:start_revision].to_i)) : |
| 10 | <%= t(".showing_prefix") %> <strong><%= @locale.to_s.upcase %></strong> <%= t(".translation_suffix") %> | 10 | content_tag(:strong, describe_page_reference(params[:start_revision])) + hidden_field_tag(:start_revision, params[:start_revision]) %> |
| 11 | </p> | 11 | <% end_control = numeric_comparison ? |
| 12 | select_tag(:end_revision, options_for_select(@node.pages.map(&:revision), params[:end_revision].to_i)) : | ||
| 13 | content_tag(:strong, describe_page_reference(params[:end_revision])) + hidden_field_tag(:end_revision, params[:end_revision]) %> | ||
| 14 | <% locale_control = select_tag(:translation_locale, options_for_select( | ||
| 15 | @locale_summary.map { |s| [s[:changed] ? t("revisions.locale_changed", :lang => s[:locale].to_s.upcase) : s[:locale].to_s.upcase, s[:locale]] }, | ||
| 16 | @translation_locale)) %> | ||
| 17 | <% view_control = select_tag(:view, options_for_select( | ||
| 18 | [[t("revisions.inline"), "inline"], [t("revisions.side_by_side"), "side_by_side"]], @diff_view.to_s)) %> | ||
| 19 | <% earlier, later = neighbour_revision_pairs(@node, params[:start_revision], params[:end_revision]) %> | ||
| 12 | 20 | ||
| 13 | <% if @locale_summary.size > 1 %> | 21 | <%= form_tag diff_node_revisions_path(@node), :method => :get, :class => "diff_controls" do %> |
| 14 | <p class="diff_locale_toggle"> | 22 | <p class="diff_comparison_label"> |
| 15 | <%= t("revisions.locale_label") %> | 23 | <%= t(".comparing_html", :start => start_control, :end => end_control, |
| 16 | <% @locale_summary.each_with_index do |s, i| %> | 24 | :lang => locale_control, :view => view_control) %> |
| 17 | <%= " · ".html_safe if i > 0 %> | 25 | </p> |
| 18 | <% label = "#{s[:locale].to_s.upcase}#{' *' if s[:changed]}" %> | 26 | <p class="node_action_bar standalone_action_bar diff_step_bar"> |
| 19 | <% if s[:locale] == @locale %> | 27 | <% if earlier %> |
| 20 | <strong><%= label %></strong> | 28 | <%= link_to t(".pair_link", :from => earlier.first, :to => earlier.last), diff_node_revisions_path(@node, |
| 21 | <% else %> | 29 | start_revision: earlier.first, end_revision: earlier.last, |
| 22 | <%= link_to label, diff_node_revisions_path(@node, start_revision: params[:start_revision], end_revision: params[:end_revision], view: @diff_view, locale: s[:locale]) %> | 30 | view: @diff_view, translation_locale: @translation_locale) %> |
| 23 | <% end %> | 31 | <% else %> |
| 32 | <span class="disabled_action">—</span> | ||
| 33 | <% end %> | ||
| 34 | <%= submit_tag t(".diff_button") %> | ||
| 35 | <% if later %> | ||
| 36 | <%= link_to t(".pair_link", :from => later.first, :to => later.last), diff_node_revisions_path(@node, | ||
| 37 | start_revision: later.first, end_revision: later.last, | ||
| 38 | view: @diff_view, translation_locale: @translation_locale) %> | ||
| 39 | <% else %> | ||
| 40 | <span class="disabled_action">—</span> | ||
| 24 | <% end %> | 41 | <% end %> |
| 25 | </p> | 42 | </p> |
| 26 | <p class="field_hint"><%= t(".changed_hint") %></p> | ||
| 27 | <% end %> | 43 | <% end %> |
| 28 | 44 | ||
| 29 | <p class="diff_view_toggle"> | 45 | <% unless numeric_comparison %> |
| 30 | <%= t(".view_label") %> | 46 | <p class="node_action_bar standalone_action_bar"> |
| 31 | <% if @diff_view == :inline %> | 47 | <%= link_to t(".compare_numbered"), node_revisions_path(@node) %> |
| 32 | <strong><%= t("revisions.inline") %></strong> | 48 | </p> |
| 33 | <% else %> | ||
| 34 | <%= link_to t("revisions.inline"), diff_node_revisions_path(@node, start_revision: params[:start_revision], end_revision: params[:end_revision], view: 'inline', locale: @locale) %> | ||
| 35 | <% end %> | ||
| 36 | · | ||
| 37 | <% if @diff_view == :side_by_side %> | ||
| 38 | <strong><%= t("revisions.side_by_side") %></strong> | ||
| 39 | <% else %> | ||
| 40 | <%= link_to t("revisions.side_by_side"), diff_node_revisions_path(@node, start_revision: params[:start_revision], end_revision: params[:end_revision], view: 'side_by_side', locale: @locale) %> | ||
| 41 | <% end %> | ||
| 42 | </p> | ||
| 43 | |||
| 44 | <% numeric_comparison = params[:start_revision].to_s =~ /\A\d+\z/ && params[:end_revision].to_s =~ /\A\d+\z/ %> | ||
| 45 | |||
| 46 | <% if numeric_comparison %> | ||
| 47 | <%= form_tag diff_node_revisions_path do %> | ||
| 48 | <%= select_tag :start_revision, options_for_select(@node.pages.map{|x| x.revision}, params[:start_revision].to_i) %> | ||
| 49 | <%= select_tag :end_revision, options_for_select(@node.pages.map{|x| x.revision}, params[:end_revision].to_i) %> | ||
| 50 | <%= hidden_field_tag :view, @diff_view %> | ||
| 51 | <%= hidden_field_tag :locale, @locale %> | ||
| 52 | <%= submit_tag t(".diff_button") %> | ||
| 53 | <% end %> | ||
| 54 | <% else %> | ||
| 55 | <p class="node_action_bar standalone_action_bar"><%= link_to t(".compare_numbered"), node_revisions_path(@node) %></p> | ||
| 56 | <% end %> | 49 | <% end %> |
| 57 | 50 | ||
| 51 | |||
| 58 | <% if @available_layer_pairs.present? %> | 52 | <% if @available_layer_pairs.present? %> |
| 59 | <div class="node_action_bar standalone_action_bar"> | 53 | <div class="node_action_bar standalone_action_bar"> |
| 60 | <% @available_layer_pairs.each do |pair| %> | 54 | <% @available_layer_pairs.each do |pair| %> |
| @@ -62,7 +56,7 @@ | |||
| 62 | <%= button_to t("nodes.show.diff_layers", :from => t("nodes.show.layer_#{pair.first}"), :to => t("nodes.show.layer_#{pair.last}")), | 56 | <%= button_to t("nodes.show.diff_layers", :from => t("nodes.show.layer_#{pair.first}"), :to => t("nodes.show.layer_#{pair.last}")), |
| 63 | diff_node_revisions_path(@node), | 57 | diff_node_revisions_path(@node), |
| 64 | method: :get, | 58 | method: :get, |
| 65 | params: { start_revision: pair.first, end_revision: pair.last, view: @diff_view, locale: @locale }, | 59 | params: { start_revision: pair.first, end_revision: pair.last, view: @diff_view, translation_locale: @translation_locale }, |
| 66 | form: { class: 'button_to computation' } %> | 60 | form: { class: 'button_to computation' } %> |
| 67 | <% end %> | 61 | <% end %> |
| 68 | <% if !@locked_by_other && (@node.autosave || @node.draft) %> | 62 | <% if !@locked_by_other && (@node.autosave || @node.draft) %> |
diff --git a/app/views/revisions/index.html.erb b/app/views/revisions/index.html.erb index 6bcf1820..d118f96a 100644 --- a/app/views/revisions/index.html.erb +++ b/app/views/revisions/index.html.erb | |||
| @@ -9,10 +9,10 @@ | |||
| 9 | <%= t("revisions.locale_label") %> | 9 | <%= t("revisions.locale_label") %> |
| 10 | <% ([I18n.default_locale] + Page.non_default_locales).each_with_index do |locale, i| %> | 10 | <% ([I18n.default_locale] + Page.non_default_locales).each_with_index do |locale, i| %> |
| 11 | <%= " · ".html_safe if i > 0 %> | 11 | <%= " · ".html_safe if i > 0 %> |
| 12 | <% if locale == @locale %> | 12 | <% if locale == @translation_locale %> |
| 13 | <strong><%= locale.to_s.upcase %></strong> | 13 | <strong><%= locale.to_s.upcase %></strong> |
| 14 | <% else %> | 14 | <% else %> |
| 15 | <%= link_to locale.to_s.upcase, node_revisions_path(@node, :locale => locale) %> | 15 | <%= link_to locale.to_s.upcase, node_revisions_path(@node, :translation_locale => locale) %> |
| 16 | <% end %> | 16 | <% end %> |
| 17 | <% end %> | 17 | <% end %> |
| 18 | </p> | 18 | </p> |
| @@ -34,7 +34,7 @@ | |||
| 34 | <td colspan="8"> | 34 | <td colspan="8"> |
| 35 | <%= button_to t(".diff_revisions"), diff_node_revisions_path(@node), | 35 | <%= button_to t(".diff_revisions"), diff_node_revisions_path(@node), |
| 36 | method: :post, | 36 | method: :post, |
| 37 | params: { locale: @locale }, | 37 | params: { translation_locale: @translation_locale }, |
| 38 | form: { id: 'diff_form', class: 'button_to computation' }, | 38 | form: { id: 'diff_form', class: 'button_to computation' }, |
| 39 | disabled: true %> | 39 | disabled: true %> |
| 40 | <span id="diff_selection_label" data-against="<%= t(".against_word") %>" data-selected="<%= t(".selected_word") %>"></span> | 40 | <span id="diff_selection_label" data-against="<%= t(".against_word") %>" data-selected="<%= t(".selected_word") %>"></span> |
| @@ -50,10 +50,10 @@ | |||
| 50 | <td><%= radio_button_tag :start_revision, page.revision, index == 1 %></td> | 50 | <td><%= radio_button_tag :start_revision, page.revision, index == 1 %></td> |
| 51 | <td><%= radio_button_tag :end_revision, page.revision, index == 0 %></td> | 51 | <td><%= radio_button_tag :end_revision, page.revision, index == 0 %></td> |
| 52 | <td class="revision"><%= page.revision %></td> | 52 | <td class="revision"><%= page.revision %></td> |
| 53 | <td class="title"><%= page.translations.find_by(:locale => @locale)&.title || "—" %></td> | 53 | <td class="title"><%= page.translations.find_by(:locale => @translation_locale)&.title || "—" %></td> |
| 54 | <td class="user"><%= page.editor.try(:login) %></td> | 54 | <td class="user"><%= page.editor.try(:login) %></td> |
| 55 | <td class="date"><%= page.updated_at %></td> | 55 | <td class="date"><%= page.updated_at %></td> |
| 56 | <td><%= link_to t(".show_link"), node_revision_path(@node, page, :locale => @locale) %></td> | 56 | <td><%= link_to t(".show_link"), node_revision_path(@node, page, :translation_locale => @translation_locale) %></td> |
| 57 | <td> | 57 | <td> |
| 58 | <%= button_to t(".restore_link"), restore_node_revision_path(@node, page), | 58 | <%= button_to t(".restore_link"), restore_node_revision_path(@node, page), |
| 59 | method: :put, | 59 | method: :put, |
diff --git a/app/views/revisions/show.html.erb b/app/views/revisions/show.html.erb index a39071c6..addcfa1a 100644 --- a/app/views/revisions/show.html.erb +++ b/app/views/revisions/show.html.erb | |||
| @@ -1,13 +1,13 @@ | |||
| 1 | <% translation = @page.translations.find_by(:locale => @locale) %> | 1 | <% translation = @page.translations.find_by(:locale => @translation_locale) %> |
| 2 | <div id="admin_layout" class="show_node"> | 2 | <div id="admin_layout" class="show_node"> |
| 3 | <h1><%= t(".title", :rev => @page.revision) %>: <%= translation&.title %> <small>(<%= @locale.to_s.upcase %>)</small></h1> | 3 | <h1><%= t(".title", :rev => @page.revision) %>: <%= translation&.title %> <small>(<%= @translation_locale.to_s.upcase %>)</small></h1> |
| 4 | 4 | ||
| 5 | <div id="content"> | 5 | <div id="content"> |
| 6 | <div class="layout_row_label"><%= t("admin.columns.actions") %></div> | 6 | <div class="layout_row_label"><%= t("admin.columns.actions") %></div> |
| 7 | <div class="layout_row_content info_group"> | 7 | <div class="layout_row_content info_group"> |
| 8 | <div class="info_group_items"> | 8 | <div class="info_group_items"> |
| 9 | <div class="info_item"> | 9 | <div class="info_item"> |
| 10 | <%= link_to t(".show_all"), node_revisions_path(@node, :locale => @locale) %> | 10 | <%= link_to t(".show_all"), node_revisions_path(@node, :translation_locale => @translation_locale) %> |
| 11 | </div> | 11 | </div> |
| 12 | </div> | 12 | </div> |
| 13 | </div> | 13 | </div> |
