comparison app/views/repositories/revision.html.erb @ 909:cbb26bc654de redmine-1.3

Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author Chris Cannam
date Fri, 24 Feb 2012 19:09:32 +0000
parents c6c2cbd0afee
children 5e80956cc792 433d4f72a19b
comparison
equal deleted inserted replaced
908:c6c2cbd0afee 909:cbb26bc654de
23 <% end %> 23 <% end %>
24 </div> 24 </div>
25 25
26 <h2><%= l(:label_revision) %> <%= format_revision(@changeset) %></h2> 26 <h2><%= l(:label_revision) %> <%= format_revision(@changeset) %></h2>
27 27
28 <p><% if @changeset.scmid %>ID: <%= @changeset.scmid %><br /><% end %> 28 <table class="revision-info">
29 <span class="author"><%= authoring(@changeset.committed_on, @changeset.author) %></span></p> 29 <% if @changeset.scmid %>
30 <tr>
31 <td>ID</td><td><%= h(@changeset.scmid) %></td>
32 </tr>
33 <% end %>
34 <% unless @changeset.parents.blank? %>
35 <tr>
36 <td><%= l(:label_parent_revision) %></td>
37 <td>
38 <%= @changeset.parents.collect{
39 |p| link_to_revision(p, @project, :text => format_revision(p))
40 }.join(", ") %>
41 </td>
42 </tr>
43 <% end %>
44 <% unless @changeset.children.blank? %>
45 <tr>
46 <td><%= l(:label_child_revision) %></td>
47 <td>
48 <%= @changeset.children.collect{
49 |p| link_to_revision(p, @project, :text => format_revision(p))
50 }.join(", ") %>
51 </td>
52 </tr>
53 <% end %>
54 </table>
55 <p>
56 <span class="author">
57 <%= authoring(@changeset.committed_on, @changeset.author) %>
58 </span>
59 </p>
30 60
31 <%= textilizable @changeset.comments %> 61 <%= textilizable @changeset.comments %>
32 62
33 <% if @changeset.issues.visible.any? %> 63 <% if @changeset.issues.visible.any? %>
34 <h3><%= l(:label_related_issues) %></h3> 64 <h3><%= l(:label_related_issues) %></h3>