Index: app/views/repositories/revision.html.erb =================================================================== --- app/views/repositories/revision.html.erb (revision 14426) +++ app/views/repositories/revision.html.erb (working copy) @@ -28,41 +28,43 @@

<%= avatar(@changeset.user, :size => "24") %><%= l(:label_revision) %> <%= format_revision(@changeset) %>

-<% if @changeset.scmid.present? || @changeset.parents.present? || @changeset.children.present? %> - - <% if @changeset.scmid.present? %> - - - +
+ <% if @changeset.scmid.present? || @changeset.parents.present? || @changeset.children.present? %> +
ID<%= @changeset.scmid %>
+ <% if @changeset.scmid.present? %> + + + + <% end %> + <% if @changeset.parents.present? %> + + + + + <% end %> + <% if @changeset.children.present? %> + + + + + <% end %> +
ID<%= @changeset.scmid %>
<%= l(:label_parent_revision) %> + <%= @changeset.parents.collect{ + |p| link_to_revision(p, @repository, :text => format_revision(p)) + }.join(", ").html_safe %> +
<%= l(:label_child_revision) %> + <%= @changeset.children.collect{ + |p| link_to_revision(p, @repository, :text => format_revision(p)) + }.join(", ").html_safe %> +
<% end %> - <% if @changeset.parents.present? %> - - <%= l(:label_parent_revision) %> - - <%= @changeset.parents.collect{ - |p| link_to_revision(p, @repository, :text => format_revision(p)) - }.join(", ").html_safe %> - - - <% end %> - <% if @changeset.children.present? %> - - <%= l(:label_child_revision) %> - - <%= @changeset.children.collect{ - |p| link_to_revision(p, @repository, :text => format_revision(p)) - }.join(", ").html_safe %> - - - <% end %> - -<% end %> -

- -<%= authoring(@changeset.committed_on, @changeset.author) %> - -

+

+ + <%= authoring(@changeset.committed_on, @changeset.author) %> + +

+ <%= textilizable @changeset.comments %>