##// END OF EJS Templates
scm: git: unit adapter latin-1 path encoding test passes on Japanese Windows (#5251)....
scm: git: unit adapter latin-1 path encoding test passes on Japanese Windows (#5251). Ruby uses ANSI api to fork a process on Windows. Japanese Shift_JIS and Traditional Chinese Big5 have 0x5c(backslash) problem and these are incompatible with ASCII. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5071 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4193:c91ca4fcd91f
r4951:74f44a5b6a0b
Show More
show.rhtml
49 lines | 1.9 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Added version details view accessible from the roadmap....
r942 <div class="contextual">
<%= link_to_if_authorized l(:button_edit), {:controller => 'versions', :action => 'edit', :id => @version}, :class => 'icon icon-edit' %>
Jean-Baptiste Barth
Fix wikilinks in project > settings > versions and version view. #6435 #4416...
r4193 <%= link_to_if_authorized(l(:button_edit_associated_wikipage, :page_title => @version.wiki_page_title), {:controller => 'wiki', :action => 'edit', :project_id => @version.project, :id => Wiki.titleize(@version.wiki_page_title)}, :class => 'icon icon-edit') unless @version.wiki_page_title.blank? || @version.project.wiki.nil? %>
Eric Davis
Added :view_versions_show_contextual hook. (#3036)...
r2671 <%= call_hook(:view_versions_show_contextual, { :version => @version, :project => @project }) %>
Jean-Philippe Lang
Added version details view accessible from the roadmap....
r942 </div>
<h2><%= h(@version.name) %></h2>
Jean-Philippe Lang
Version details view changes:...
r1193 <div id="version-summary">
<% if @version.estimated_hours > 0 || User.current.allowed_to?(:view_time_entries, @project) %>
<fieldset><legend><%= l(:label_time_tracking) %></legend>
<table>
<tr>
<td width="130px" align="right"><%= l(:field_estimated_hours) %></td>
Jean-Philippe Lang
Merged Rails 2.2 branch. Redmine now requires Rails 2.2.2....
r2430 <td width="240px" class="total-hours"width="130px" align="right"><%= html_hours(l_hours(@version.estimated_hours)) %></td>
Jean-Philippe Lang
Version details view changes:...
r1193 </tr>
<% if User.current.allowed_to?(:view_time_entries, @project) %>
<tr>
<td width="130px" align="right"><%= l(:label_spent_time) %></td>
Jean-Philippe Lang
Merged Rails 2.2 branch. Redmine now requires Rails 2.2.2....
r2430 <td width="240px" class="total-hours"><%= html_hours(l_hours(@version.spent_hours)) %></td>
Jean-Philippe Lang
Version details view changes:...
r1193 </tr>
<% end %>
</table>
</fieldset>
<% end %>
Jean-Philippe Lang
Fixed versions/show layout with IE....
r948 <div id="status_by">
Jean-Philippe Lang
Added version details view accessible from the roadmap....
r942 <%= render_issue_status_by(@version, params[:status_by]) if @version.fixed_issues.count > 0 %>
</div>
Jean-Philippe Lang
Version details view changes:...
r1193 </div>
Jean-Philippe Lang
Added version details view accessible from the roadmap....
r942
Jean-Philippe Lang
Version details view changes:...
r1193 <div id="roadmap">
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
Moves code to controller....
r3751 <% if @issues.present? %>
Jean-Philippe Lang
Version details view changes:...
r1193 <fieldset class="related-issues"><legend><%= l(:label_related_issues) %></legend>
<ul>
Jean-Philippe Lang
Moves code to controller....
r3751 <% @issues.each do |issue| -%>
Jean-Philippe Lang
Refactoring ApplicationHelper#link_to_issue....
r2926 <li><%= link_to_issue(issue) %></li>
Jean-Philippe Lang
Version details view changes:...
r1193 <% end -%>
</ul>
</fieldset>
<% end %>
</div>
Jean-Philippe Lang
Merged hooks branch @ r1785 into trunk....
r1785 <%= call_hook :view_versions_show_bottom, :version => @version %>
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title @version.name %>