##// END OF EJS Templates
Fix generation of blank local link when no title is specified in wiki link....
Fix generation of blank local link when no title is specified in wiki link. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7560 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7116:86f74fad2574
r7440:ac2dbde135f7
Show More
index.html.erb
58 lines | 2.2 KiB | text/plain | TextLexer
Jean-Philippe Lang
Adds a 'New version' link on the roadmap....
r6049 <div class="contextual">
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/versions/index.html.erb...
r7116 <%= link_to l(:label_version_new), {:controller => 'versions', :action => 'new'}, :class => 'icon icon-add' if User.current.allowed_to?(:manage_versions, @project) %>
Jean-Philippe Lang
Adds a 'New version' link on the roadmap....
r6049 </div>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <h2><%=l(:label_roadmap)%></h2>
Jean-Philippe Lang
Application layout refactored....
r736 <% if @versions.empty? %>
<p class="nodata"><%= l(:label_no_data) %></p>
Jean-Philippe Lang
Roadmap enhancements (closes #697, #698):...
r1154 <% else %>
<div id="roadmap">
Toshi MARUYAMA
remove trailing white-spaces from app/views/versions/index.html.erb....
r6217 <% @versions.each do |version| %>
Toshi MARUYAMA
HTML escape at app/views/versions/index.html.erb....
r6276 <h3 class="version"><%= tag 'a', :name => h(version.name) %><%= link_to_version version %></h3>
Jean-Philippe Lang
Added version details view accessible from the roadmap....
r942 <%= render :partial => 'versions/overview', :locals => {:version => version} %>
<%= render(:partial => "wiki/content", :locals => {:content => version.wiki_page.content}) if version.wiki_page %>
Jean-Philippe Lang
Version sharing (#465) + optional inclusion of subprojects in the roadmap view (#2666)....
r3009 <% if (issues = @issues_by_version[version]) && issues.size > 0 %>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/versions/index.html.erb...
r7116 <% form_tag({}) do -%>
Jean-Philippe Lang
Adds context menu to the roadmap issue lists....
r3433 <table class="list related-issues">
<caption><%= l(:label_related_issues) %></caption>
Jean-Philippe Lang
Removed leading dash in ruby code....
r6061 <% issues.each do |issue| -%>
Jean-Philippe Lang
Adds context menu to the roadmap issue lists....
r3433 <tr class="hascontextmenu">
<td class="checkbox"><%= check_box_tag 'ids[]', issue.id %></td>
<td><%= link_to_issue(issue, :project => (@project != issue.project)) %></td>
</tr>
Jean-Philippe Lang
Removed leading dash in ruby code....
r6061 <% end -%>
Jean-Philippe Lang
Adds context menu to the roadmap issue lists....
r3433 </table>
<% end %>
Jean-Philippe Lang
Roadmap enhancements (closes #697, #698):...
r1154 <% end %>
Eric Davis
Added plugin hook :view_projects_roadmap_version_bottom. #2543...
r2366 <%= call_hook :view_projects_roadmap_version_bottom, :version => version %>
Jean-Philippe Lang
Roadmap enhancements (closes #697, #698):...
r1154 <% end %>
</div>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
Application layout refactored....
r736
<% content_for :sidebar do %>
Jean-Philippe Lang
Use GET instead of POST on roadmap (#718), gantt and calendar forms....
r1373 <% form_tag({}, :method => :get) do %>
Jean-Philippe Lang
Application layout refactored....
r736 <h3><%= l(:label_roadmap) %></h3>
<% @trackers.each do |tracker| %>
Jean-Philippe Lang
Roadmap enhancements (closes #697, #698):...
r1154 <label><%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s), :id => nil %>
Jean-Philippe Lang
Roadmap: sort issues by project and prepend project name if different (#4373)....
r3049 <%=h tracker.name %></label><br />
Jean-Philippe Lang
Application layout refactored....
r736 <% end %>
<br />
Jean-Philippe Lang
Roadmap enhancements (closes #697, #698):...
r1154 <label for="completed"><%= check_box_tag "completed", 1, params[:completed] %> <%= l(:label_show_completed_versions) %></label>
Jean-Philippe Lang
Version sharing (#465) + optional inclusion of subprojects in the roadmap view (#2666)....
r3009 <% if @project.descendants.active.any? %>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/versions/index.html.erb...
r7116 <%= hidden_field_tag 'with_subprojects', 0 %>
Jean-Philippe Lang
Version sharing (#465) + optional inclusion of subprojects in the roadmap view (#2666)....
r3009 <br /><label><%= check_box_tag 'with_subprojects', 1, @with_subprojects %> <%=l(:label_subproject_plural)%></label>
<% end %>
Jean-Philippe Lang
Use GET instead of POST on roadmap (#718), gantt and calendar forms....
r1373 <p><%= submit_tag l(:button_apply), :class => 'button-small', :name => nil %></p>
Jean-Philippe Lang
Application layout refactored....
r736 <% end %>
<h3><%= l(:label_version_plural) %></h3>
<% @versions.each do |version| %>
Jean-Philippe Lang
Version sharing (#465) + optional inclusion of subprojects in the roadmap view (#2666)....
r3009 <%= link_to format_version_name(version), "##{version.name}" %><br />
Jean-Philippe Lang
Application layout refactored....
r736 <% end %>
<% end %>
Jean-Philippe Lang
Added version details view accessible from the roadmap....
r942
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_roadmap)) %>
Jean-Philippe Lang
Adds context menu to the roadmap issue lists....
r3433
Jean-Baptiste Barth
Fixed broken context_menu on roadmap. #6351...
r3968 <%= context_menu issues_context_menu_path %>