From: Toshi MARUYAMA Date: Thu, 1 Sep 2011 15:18:23 +0000 (+0000) Subject: rename .rhtml to .html.erb of app/views/issues/bulk_edit.rhtml. X-Git-Tag: 1.3.0~945 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4479750a45dedc8adbfcdf0902e786858e4851d6;p=redmine.git rename .rhtml to .html.erb of app/views/issues/bulk_edit.rhtml. :rhtml and :rxml were finally removed as template handlers at Rails 3.1 RC4. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7018 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/issues/bulk_edit.html.erb b/app/views/issues/bulk_edit.html.erb new file mode 100644 index 000000000..37b50ee86 --- /dev/null +++ b/app/views/issues/bulk_edit.html.erb @@ -0,0 +1,91 @@ +

<%= l(:label_bulk_edit_selected_issues) %>

+ + + +<% form_tag(:action => 'bulk_update') do %> +<%= @issues.collect {|i| hidden_field_tag('ids[]', i.id)}.join %> +
+
+<%= l(:label_change_properties) %> + +
+

+ + <%= select_tag('issue[tracker_id]', "" + options_from_collection_for_select(@trackers, :id, :name)) %> +

+<% if @available_statuses.any? %> +

+ + <%= select_tag('issue[status_id]', "" + options_from_collection_for_select(@available_statuses, :id, :name)) %> +

+<% end %> +

+ + <%= select_tag('issue[priority_id]', "" + options_from_collection_for_select(IssuePriority.active, :id, :name)) %> +

+

+ + <%= select_tag('issue[assigned_to_id]', content_tag('option', l(:label_no_change_option), :value => '') + + content_tag('option', l(:label_nobody), :value => 'none') + + principals_options_for_select(@assignables)) %> +

+<% if @project %> +

+ + <%= select_tag('issue[category_id]', content_tag('option', l(:label_no_change_option), :value => '') + + content_tag('option', l(:label_none), :value => 'none') + + options_from_collection_for_select(@project.issue_categories, :id, :name)) %> +

+<% end %> +<% #TODO: allow editing versions when multiple projects %> +<% if @project %> +

+ + <%= select_tag('issue[fixed_version_id]', content_tag('option', l(:label_no_change_option), :value => '') + + content_tag('option', l(:label_none), :value => 'none') + + version_options_for_select(@project.shared_versions.open.sort)) %> +

+<% end %> + +<% @custom_fields.each do |custom_field| %> +

<%= custom_field_tag_for_bulk_edit('issue', custom_field, @projects) %>

+<% end %> + +<%= call_hook(:view_issues_bulk_edit_details_bottom, { :issues => @issues }) %> +
+ +
+<% if @project && User.current.allowed_to?(:manage_subtasks, @project) %> +

+ + <%= text_field_tag 'issue[parent_issue_id]', '', :size => 10 %> +

+
+<%= javascript_tag "observeParentIssueField('#{auto_complete_issues_path(:project_id => @project) }')" %> +<% end %> +

+ + <%= text_field_tag 'issue[start_date]', '', :size => 10 %><%= calendar_for('issue_start_date') %> +

+

+ + <%= text_field_tag 'issue[due_date]', '', :size => 10 %><%= calendar_for('issue_due_date') %> +

+<% if Issue.use_field_for_done_ratio? %> +

+ + <%= select_tag 'issue[done_ratio]', options_for_select([[l(:label_no_change_option), '']] + (0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %> +

+<% end %> +
+ +
+ +
<%= l(:field_notes) %> +<%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %> +<%= wikitoolbar_for 'notes' %> +
+
+ +

<%= submit_tag l(:button_submit) %>

+<% end %> diff --git a/app/views/issues/bulk_edit.rhtml b/app/views/issues/bulk_edit.rhtml deleted file mode 100644 index 37b50ee86..000000000 --- a/app/views/issues/bulk_edit.rhtml +++ /dev/null @@ -1,91 +0,0 @@ -

<%= l(:label_bulk_edit_selected_issues) %>

- - - -<% form_tag(:action => 'bulk_update') do %> -<%= @issues.collect {|i| hidden_field_tag('ids[]', i.id)}.join %> -
-
-<%= l(:label_change_properties) %> - -
-

- - <%= select_tag('issue[tracker_id]', "" + options_from_collection_for_select(@trackers, :id, :name)) %> -

-<% if @available_statuses.any? %> -

- - <%= select_tag('issue[status_id]', "" + options_from_collection_for_select(@available_statuses, :id, :name)) %> -

-<% end %> -

- - <%= select_tag('issue[priority_id]', "" + options_from_collection_for_select(IssuePriority.active, :id, :name)) %> -

-

- - <%= select_tag('issue[assigned_to_id]', content_tag('option', l(:label_no_change_option), :value => '') + - content_tag('option', l(:label_nobody), :value => 'none') + - principals_options_for_select(@assignables)) %> -

-<% if @project %> -

- - <%= select_tag('issue[category_id]', content_tag('option', l(:label_no_change_option), :value => '') + - content_tag('option', l(:label_none), :value => 'none') + - options_from_collection_for_select(@project.issue_categories, :id, :name)) %> -

-<% end %> -<% #TODO: allow editing versions when multiple projects %> -<% if @project %> -

- - <%= select_tag('issue[fixed_version_id]', content_tag('option', l(:label_no_change_option), :value => '') + - content_tag('option', l(:label_none), :value => 'none') + - version_options_for_select(@project.shared_versions.open.sort)) %> -

-<% end %> - -<% @custom_fields.each do |custom_field| %> -

<%= custom_field_tag_for_bulk_edit('issue', custom_field, @projects) %>

-<% end %> - -<%= call_hook(:view_issues_bulk_edit_details_bottom, { :issues => @issues }) %> -
- -
-<% if @project && User.current.allowed_to?(:manage_subtasks, @project) %> -

- - <%= text_field_tag 'issue[parent_issue_id]', '', :size => 10 %> -

-
-<%= javascript_tag "observeParentIssueField('#{auto_complete_issues_path(:project_id => @project) }')" %> -<% end %> -

- - <%= text_field_tag 'issue[start_date]', '', :size => 10 %><%= calendar_for('issue_start_date') %> -

-

- - <%= text_field_tag 'issue[due_date]', '', :size => 10 %><%= calendar_for('issue_due_date') %> -

-<% if Issue.use_field_for_done_ratio? %> -

- - <%= select_tag 'issue[done_ratio]', options_for_select([[l(:label_no_change_option), '']] + (0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %> -

-<% end %> -
- -
- -
<%= l(:field_notes) %> -<%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %> -<%= wikitoolbar_for 'notes' %> -
-
- -

<%= submit_tag l(:button_submit) %>

-<% end %>