|
|
.commit-head{class: @commit.parents.count > 1 ? "merge-commit" : ""}
|
|
.commit-box{class: @commit.parents.count > 1 ? "merge-commit" : ""}
|
|
|
|
.commit-head
|
|
|
= link_to "Browse Code »", tree_project_ref_path(@project, @commit.id), :class => "browse-button"
|
|
= link_to "Browse Code »", tree_project_ref_path(@project, @commit.id), :class => "browse-button"
|
|
|
%h3.commit-title
|
|
%h3.commit-title
|
|
|
= commit_msg_with_link_to_issues(@project, @commit.title)
|
|
= commit_msg_with_link_to_issues(@project, @commit.title)
|
| ... | @@ -6,25 +7,29 @@ |
... | @@ -6,25 +7,29 @@ |
|
|
%pre.commit-description
|
|
%pre.commit-description
|
|
|
= commit_msg_with_link_to_issues(@project, @commit.description)
|
|
= commit_msg_with_link_to_issues(@project, @commit.description)
|
|
|
.commit-info
|
|
.commit-info
|
|
|
%span.sha-block
|
|
.row
|
|
|
commit
|
|
.span4
|
|
|
%code= @commit.id
|
|
= image_tag gravatar_icon(@commit.author_email, 40), :class => "avatar"
|
|
|
%span.sha-block
|
|
|
|
|
= pluralize(@commit.parents.count, "parent")
|
|
|
|
|
- @commit.parents.each do |parent|
|
|
|
|
|
%code= link_to parent.id, project_commit_path(@project, parent)
|
|
|
|
|
.author
|
|
.author
|
|
|
= image_tag gravatar_icon(@commit.author_email, 24), :class => "avatar", :height => 24, :width => 24
|
|
%strong= @commit.author_name
|
|
|
%span.name= @commit.author_name
|
|
|
|
|
authored
|
|
authored
|
|
|
%time{title: @commit.authored_date.stamp("Aug 21, 2011 9:23pm")}
|
|
%time{title: @commit.authored_date.stamp("Aug 21, 2011 9:23pm")}
|
|
|
#{time_ago_in_words(@commit.authored_date)} ago
|
|
#{time_ago_in_words(@commit.authored_date)} ago
|
|
|
- if @commit.different_committer?
|
|
- if @commit.different_committer?
|
|
|
.committer
|
|
.committer
|
|
|
%span.name= @commit.committer_name
|
|
→
|
|
|
|
%strong= @commit.committer_name
|
|
|
committed
|
|
committed
|
|
|
%time{title: @commit.committed_date.stamp("Aug 21, 2011 9:23pm")}
|
|
%time{title: @commit.committed_date.stamp("Aug 21, 2011 9:23pm")}
|
|
|
#{time_ago_in_words(@commit.committed_date)} ago
|
|
#{time_ago_in_words(@commit.committed_date)} ago
|
|
|
|
.span7.right
|
|
|
|
.sha-block
|
|
|
|
%span.cgray commit
|
|
|
|
%code= @commit.id
|
|
|
|
.sha-block
|
|
|
|
%span.cgray= pluralize(@commit.parents.count, "parent")
|
|
|
|
- @commit.parents.each do |parent|
|
|
|
|
= link_to parent.id[0...10], project_commit_path(@project, parent)
|
|
|
|
|
|
|
|
= render "commits/diffs", :diffs => @commit.diffs
|
|
= render "commits/diffs", :diffs => @commit.diffs
|
|
|
= render "notes/notes", :tid => @commit.id, :tt => "commit"
|
|
= render "notes/notes", :tid => @commit.id, :tt => "commit"
|
| ... | |
... | |
| ... | | ... | |