##// END OF EJS Templates
Use tiny_tds 0.7 for ruby < 2.0 (#23932)....
Use tiny_tds 0.7 for ruby < 2.0 (#23932). git-svn-id: http://svn.redmine.org/redmine/trunk@16061 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15379:942b85e44176
r15679:f3068cd37a2d
Show More
_changeset.html.erb
40 lines | 1.3 KiB | text/plain | TextLexer
<h2><%= l(:label_revision) %> <%= format_revision(@changeset) %></h2>
<div class="details">
<h4>
<%= avatar(@changeset.user, :size => "24") %>
<%= authoring(@changeset.committed_on, @changeset.author) %>
</h4>
<% if @changeset.scmid.present? || @changeset.parents.present? || @changeset.children.present? %>
<ul class="revision-info">
<% if @changeset.scmid.present? %>
<li>
<strong>ID </strong><%= @changeset.scmid %>
</li>
<% end %>
<% if @changeset.parents.present? %>
<li>
<strong><%= l(:label_parent_revision) %></strong>
<%= @changeset.parents.collect{
|p| link_to_revision(p, @repository, :text => format_revision(p))
}.join(", ").html_safe %>
</li>
<% end %>
<% if @changeset.children.present? %>
<li>
<strong><%= l(:label_child_revision) %></strong>
<%= @changeset.children.collect{
|p| link_to_revision(p, @repository, :text => format_revision(p))
}.join(", ").html_safe %>
</li>
<% end %>
</ul>
<% end %>
</div>
<%= textilizable @changeset.comments %>
<% if @changeset.issues.visible.any? || User.current.allowed_to?(:manage_related_issues, @repository.project) %>
<%= render :partial => 'related_issues' %>
<% end %>