2012-03-05 23:29:40 +01:00
|
|
|
- if event.new_branch? || event.new_tag?
|
2012-03-07 09:13:43 +01:00
|
|
|
= image_tag gravatar_icon(event.author_email), :class => "avatar"
|
|
|
|
%strong #{event.author_name}
|
2012-03-16 00:45:46 +01:00
|
|
|
%span.label.pushed pushed
|
|
|
|
new
|
2012-03-05 23:29:40 +01:00
|
|
|
- if event.new_tag?
|
|
|
|
tag
|
|
|
|
= link_to project_commits_path(event.project, :ref => event.tag_name) do
|
|
|
|
%strong= event.tag_name
|
|
|
|
- else
|
|
|
|
branch
|
|
|
|
= link_to project_commits_path(event.project, :ref => event.branch_name) do
|
|
|
|
%strong= event.branch_name
|
2012-03-01 21:43:04 +01:00
|
|
|
at
|
|
|
|
%strong= link_to event.project.name, event.project
|
|
|
|
%span.cgray
|
|
|
|
= time_ago_in_words(event.created_at)
|
|
|
|
ago.
|
|
|
|
- else
|
2012-03-07 09:13:43 +01:00
|
|
|
= image_tag gravatar_icon(event.author_email), :class => "avatar"
|
|
|
|
%strong #{event.author_name}
|
2012-03-16 00:45:46 +01:00
|
|
|
%span.label.pushed pushed
|
|
|
|
to
|
2012-03-01 21:43:04 +01:00
|
|
|
= link_to project_commits_path(event.project, :ref => event.branch_name) do
|
|
|
|
%strong= event.branch_name
|
|
|
|
at
|
|
|
|
%strong= link_to event.project.name, event.project
|
|
|
|
%span.cgray
|
|
|
|
= time_ago_in_words(event.created_at)
|
|
|
|
ago.
|
|
|
|
- if event.commits.count > 1
|
|
|
|
= link_to compare_project_commits_path(event.project, :from => event.commits.first.prev_commit_id, :to => event.commits.last.id) do
|
2012-03-20 22:59:35 +01:00
|
|
|
%strong #{event.commits.first.commit.id[0..7]}...#{event.commits.last.id[0..7]}
|
|
|
|
- project = event.project
|
2012-03-16 00:45:46 +01:00
|
|
|
%ul.unstyled.event_commits
|
|
|
|
- if event.commits.size > 3
|
2012-03-20 22:59:35 +01:00
|
|
|
- event.commits[0...2].each do |commit|
|
|
|
|
= render "events/commit", :commit => commit, :project => project
|
|
|
|
%li
|
|
|
|
%br
|
|
|
|
\... and #{event.commits.size - 2} more commits
|
2012-03-07 09:13:43 +01:00
|
|
|
- else
|
2012-03-20 22:59:35 +01:00
|
|
|
- event.commits.each do |commit|
|
|
|
|
= render "events/commit", :commit => commit, :project => project
|
2012-03-01 21:43:04 +01:00
|
|
|
|