Redmine 4.1.1
This commit is contained in:
parent
33e7b881a5
commit
3d976f1b3b
1593 changed files with 36180 additions and 19489 deletions
|
@ -2,7 +2,7 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
<%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]')",
|
||||
<%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]:not(:disabled)')",
|
||||
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
|
||||
:class => 'icon-only icon-checked') %>
|
||||
<%=l(:label_current_status)%>
|
||||
|
@ -13,7 +13,7 @@
|
|||
<td></td>
|
||||
<% for new_status in @statuses %>
|
||||
<td style="width:<%= 75 / @statuses.size %>%;">
|
||||
<%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox].new-status-#{new_status.id}')",
|
||||
<%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]:not(:disabled).new-status-#{new_status.id}')",
|
||||
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
|
||||
:class => 'icon-only icon-checked') %>
|
||||
<%= new_status.name %>
|
||||
|
@ -21,12 +21,13 @@
|
|||
<% end %>
|
||||
</tr>
|
||||
</thead>
|
||||
<% transition_counts = workflows.each_with_object(Hash.new(0)) {|w,memo| memo[[w.old_status, w.new_status]] += 1} %>
|
||||
<tbody>
|
||||
<% for old_status in [nil] + @statuses %>
|
||||
<% next if old_status.nil? && name != 'always' %>
|
||||
<tr>
|
||||
<td class="name">
|
||||
<%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox].old-status-#{old_status.try(:id) || 0}')",
|
||||
<%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]:not(:disabled).old-status-#{old_status.try(:id) || 0}')",
|
||||
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
|
||||
:class => 'icon-only icon-checked') %>
|
||||
<% if old_status %>
|
||||
|
@ -38,9 +39,9 @@
|
|||
<% end %>
|
||||
</td>
|
||||
<% for new_status in @statuses -%>
|
||||
<% checked = workflows.detect {|w| w.old_status == old_status && w.new_status == new_status} %>
|
||||
<% checked = (old_status == new_status) || (transition_counts[[old_status, new_status]] > 0) %>
|
||||
<td class="<%= checked ? 'enabled' : '' %>" title="<%= old_status_name %> » <%= new_status.name %>">
|
||||
<%= transition_tag workflows, old_status, new_status, name %>
|
||||
<%= transition_tag transition_counts[[old_status, new_status]], old_status, new_status, name %>
|
||||
</td>
|
||||
<% end -%>
|
||||
</tr>
|
||||
|
|
|
@ -16,12 +16,12 @@
|
|||
<label><%=l(:label_role)%>:
|
||||
<%= options_for_workflow_select 'role_id[]', Role.sorted.select(&:consider_workflow?), @roles, :id => 'role_id', :class => 'expandable' %>
|
||||
</label>
|
||||
<a href="#" data-expands="#role_id"><span class="toggle-multiselect"></span></a>
|
||||
<a href="#" data-expands="#role_id"><span class="toggle-multiselect icon-only icon-toggle-plus"></span></a>
|
||||
|
||||
<label><%=l(:label_tracker)%>:
|
||||
<%= options_for_workflow_select 'tracker_id[]', Tracker.sorted, @trackers, :id => 'tracker_id', :class => 'expandable' %>
|
||||
</label>
|
||||
<a href="#" data-expands="#tracker_id"><span class="toggle-multiselect"></span></a>
|
||||
<a href="#" data-expands="#tracker_id"><span class="toggle-multiselect icon-only icon-toggle-plus"></span></a>
|
||||
|
||||
<%= submit_tag l(:button_edit), :name => nil %>
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
<%= render :partial => 'form', :locals => {:name => 'always', :workflows => @workflows['always']} %>
|
||||
|
||||
<fieldset class="collapsible" style="padding: 0; margin-top: 0.5em;">
|
||||
<legend onclick="toggleFieldset(this);"><%= l(:label_additional_workflow_transitions_for_author) %></legend>
|
||||
<legend onclick="toggleFieldset(this);" class="icon icon-collapsed"><%= l(:label_additional_workflow_transitions_for_author) %></legend>
|
||||
<div id="author_workflows" style="margin: 0.5em 0 0.5em 0;">
|
||||
<%= render :partial => 'form', :locals => {:name => 'author', :workflows => @workflows['author']} %>
|
||||
</div>
|
||||
|
@ -48,7 +48,7 @@
|
|||
<%= javascript_tag "hideFieldset($('#author_workflows'))" unless @workflows['author'].present? %>
|
||||
|
||||
<fieldset class="collapsible" style="padding: 0;">
|
||||
<legend onclick="toggleFieldset(this);"><%= l(:label_additional_workflow_transitions_for_assignee) %></legend>
|
||||
<legend onclick="toggleFieldset(this);" class="icon icon-collapsed"><%= l(:label_additional_workflow_transitions_for_assignee) %></legend>
|
||||
<div id="assignee_workflows" style="margin: 0.5em 0 0.5em 0;">
|
||||
<%= render :partial => 'form', :locals => {:name => 'assignee', :workflows => @workflows['assignee']} %>
|
||||
</div>
|
||||
|
@ -64,9 +64,11 @@ $("a[data-expands]").click(function(e){
|
|||
e.preventDefault();
|
||||
var target = $($(this).attr("data-expands"));
|
||||
if (target.attr("multiple")) {
|
||||
$(this).find('span').switchClass('icon-toggle-minus', 'icon-toggle-plus');
|
||||
target.attr("multiple", false);
|
||||
target.find("option[value=all]").show();
|
||||
} else {
|
||||
$(this).find('span').switchClass('icon-toggle-plus', 'icon-toggle-minus');
|
||||
target.attr("multiple", true);
|
||||
target.find("option[value=all]").attr("selected", false).hide();
|
||||
}
|
||||
|
|
|
@ -16,12 +16,12 @@
|
|||
<label><%=l(:label_role)%>:
|
||||
<%= options_for_workflow_select 'role_id[]', Role.sorted.select(&:consider_workflow?), @roles, :id => 'role_id', :class => 'expandable' %>
|
||||
</label>
|
||||
<a href="#" data-expands="#role_id"><span class="toggle-multiselect"></a>
|
||||
<a href="#" data-expands="#role_id"><span class="toggle-multiselect icon-only icon-toggle-plus"></span></a>
|
||||
|
||||
<label><%=l(:label_tracker)%>:
|
||||
<%= options_for_workflow_select 'tracker_id[]', Tracker.sorted, @trackers, :id => 'tracker_id', :class => 'expandable' %>
|
||||
</label>
|
||||
<a href="#" data-expands="#tracker_id"><span class="toggle-multiselect"></a>
|
||||
<a href="#" data-expands="#tracker_id"><span class="toggle-multiselect icon-only icon-toggle-plus"></span></a>
|
||||
|
||||
<%= submit_tag l(:button_edit), :name => nil %>
|
||||
|
||||
|
@ -55,7 +55,7 @@
|
|||
<tbody>
|
||||
<tr class="group open">
|
||||
<td colspan="<%= @statuses.size + 1 %>">
|
||||
<span class="expander" onclick="toggleRowGroup(this);"> </span>
|
||||
<span class="expander icon icon-expended" onclick="toggleRowGroup(this);"> </span>
|
||||
<%= l(:field_core_fields) %>
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -75,7 +75,7 @@
|
|||
<% if @custom_fields.any? %>
|
||||
<tr class="group open">
|
||||
<td colspan="<%= @statuses.size + 1 %>">
|
||||
<span class="expander" onclick="toggleRowGroup(this);"> </span>
|
||||
<span class="expander icon icon-expended" onclick="toggleRowGroup(this);"> </span>
|
||||
<%= l(:label_custom_field_plural) %>
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -112,9 +112,11 @@ $("a[data-expands]").click(function(e){
|
|||
e.preventDefault();
|
||||
var target = $($(this).attr("data-expands"));
|
||||
if (target.attr("multiple")) {
|
||||
$(this).find('span').switchClass('icon-toggle-minus', 'icon-toggle-plus');
|
||||
target.attr("multiple", false);
|
||||
target.find("option[value=all]").show();
|
||||
} else {
|
||||
$(this).find('span').switchClass('icon-toggle-plus', 'icon-toggle-minus');
|
||||
target.attr("multiple", true);
|
||||
target.find("option[value=all]").attr("selected", false).hide();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue