You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_changesets.html.erb 906B

1234567891011121314151617181920
  1. <% changesets.each do |changeset| %>
  2. <div class="changeset">
  3. <p><%= link_to_revision(changeset, changeset.repository,
  4. :text => "#{l(:label_revision)} #{changeset.format_identifier}") %>
  5. <% if changeset.filechanges.any? && User.current.allowed_to?(:browse_repository, changeset.project) %>
  6. (<%= link_to(l(:label_diff),
  7. :controller => 'repositories',
  8. :action => 'diff',
  9. :id => changeset.project,
  10. :repository_id => changeset.repository.identifier_param,
  11. :path => "",
  12. :rev => changeset.identifier) %>)
  13. <% end %>
  14. <br />
  15. <span class="author"><%= authoring(changeset.committed_on, changeset.author) %></span></p>
  16. <div class="wiki changeset-comments">
  17. <%= format_changeset_comments changeset %>
  18. </div>
  19. </div>
  20. <% end %>