2011-03-10 13:39:49 +00:00
|
|
|
%h3 Commit: #{@commit.id}
|
|
|
|
|
|
|
|
= render :partial => "commit_pane", :locals => { :commit => @commit}
|
|
|
|
|
2011-03-11 17:19:47 +00:00
|
|
|
#{link_to "raw diff", commit_path(@platform, @repository, @project, @commit.id, :diff)} | #{link_to "patch", commit_path(@platform, @repository, @project, @commit.id, :patch)}
|
2011-03-10 13:39:49 +00:00
|
|
|
|
|
|
|
.row.commit_message
|
|
|
|
%code!= format_commit_message(@commit.message)
|
|
|
|
|
|
|
|
.row.commit_stats
|
|
|
|
!= render_commit_stats(@commit.stats)
|
|
|
|
|
|
|
|
- @commit.diffs.each do |diff|
|
|
|
|
!= render_inline_diff(@commit, diff)
|