summaryrefslogtreecommitdiffstats
path: root/app/views/projects
diff options
context:
space:
mode:
authorEric Davis <edavis@littlestreamsoftware.com>2010-08-30 15:30:28 +0000
committerEric Davis <edavis@littlestreamsoftware.com>2010-08-30 15:30:28 +0000
commita188abbe2813372d426afd2ab05841f0503f00c1 (patch)
tree6b5dc8168550f5b02a0a65d565c56bd1bae2f283 /app/views/projects
parent1ebb0d9caec7cdc8d07c53d4d2fff416e41408aa (diff)
downloadredmine-a188abbe2813372d426afd2ab05841f0503f00c1.tar.gz
redmine-a188abbe2813372d426afd2ab05841f0503f00c1.zip
Refactor: move method, ProjectsController#roadmap to VersionsController#index.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4050 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/projects')
-rw-r--r--app/views/projects/roadmap.rhtml54
1 files changed, 0 insertions, 54 deletions
diff --git a/app/views/projects/roadmap.rhtml b/app/views/projects/roadmap.rhtml
deleted file mode 100644
index 100282a7a..000000000
--- a/app/views/projects/roadmap.rhtml
+++ /dev/null
@@ -1,54 +0,0 @@
-<h2><%=l(:label_roadmap)%></h2>
-
-<% if @versions.empty? %>
-<p class="nodata"><%= l(:label_no_data) %></p>
-<% else %>
-<div id="roadmap">
-<% @versions.each do |version| %>
- <h3 class="version"><%= tag 'a', :name => version.name %><%= link_to_version version %></h3>
- <%= render :partial => 'versions/overview', :locals => {:version => version} %>
- <%= render(:partial => "wiki/content", :locals => {:content => version.wiki_page.content}) if version.wiki_page %>
-
- <% if (issues = @issues_by_version[version]) && issues.size > 0 %>
- <% form_tag({}) do -%>
- <table class="list related-issues">
- <caption><%= l(:label_related_issues) %></caption>
- <%- issues.each do |issue| -%>
- <tr class="hascontextmenu">
- <td class="checkbox"><%= check_box_tag 'ids[]', issue.id %></td>
- <td><%= link_to_issue(issue, :project => (@project != issue.project)) %></td>
- </tr>
- <%- end -%>
- </table>
- <% end %>
- <% end %>
- <%= call_hook :view_projects_roadmap_version_bottom, :version => version %>
-<% end %>
-</div>
-<% end %>
-
-<% content_for :sidebar do %>
-<% form_tag({}, :method => :get) do %>
-<h3><%= l(:label_roadmap) %></h3>
-<% @trackers.each do |tracker| %>
- <label><%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s), :id => nil %>
- <%=h tracker.name %></label><br />
-<% end %>
-<br />
-<label for="completed"><%= check_box_tag "completed", 1, params[:completed] %> <%= l(:label_show_completed_versions) %></label>
-<% if @project.descendants.active.any? %>
- <%= hidden_field_tag 'with_subprojects', 0 %>
- <br /><label><%= check_box_tag 'with_subprojects', 1, @with_subprojects %> <%=l(:label_subproject_plural)%></label>
-<% end %>
-<p><%= submit_tag l(:button_apply), :class => 'button-small', :name => nil %></p>
-<% end %>
-
-<h3><%= l(:label_version_plural) %></h3>
-<% @versions.each do |version| %>
-<%= link_to format_version_name(version), "##{version.name}" %><br />
-<% end %>
-<% end %>
-
-<% html_title(l(:label_roadmap)) %>
-
-<%= context_menu :controller => 'issues', :action => 'context_menu' %>