debian-mirror-gitlab/app/views/notify/repository_push_email.html.haml

67 lines
1.9 KiB
Text
Raw Normal View History

2015-04-26 12:48:37 +05:30
%h3 #{@author.name} #{@action_name} #{@ref_type} #{@ref_name} at #{link_to @project.name_with_namespace, namespace_project_url(@project.namespace, @project)}
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
- if @compare
- if @reverse_compare
%p
%strong WARNING:
The push did not contain any new commits, but force pushed to delete the commits and changes below.
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
%h4
= @reverse_compare ? "Deleted commits:" : "Commits:"
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
%ul
- @commits.each do |commit|
%li
%strong #{link_to commit.short_id, namespace_project_commit_url(@project.namespace, @project, commit)}
%div
%span by #{commit.author_name}
%i at #{commit.committed_date.strftime("%Y-%m-%dT%H:%M:%SZ")}
%pre.commit-message
= commit.safe_message
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
%h4 #{pluralize @diffs.count, "changed file"}:
%ul
- @diffs.each_with_index do |diff, i|
%li.file-stats
%a{href: "#{@target_url if @disable_diffs}#diff-#{i}" }
- if diff.deleted_file
%span.deleted-file
−
= diff.old_path
- elsif diff.renamed_file
= diff.old_path
→
= diff.new_path
- elsif diff.new_file
%span.new-file
2015-09-11 14:41:01 +05:30
+
2015-04-26 12:48:37 +05:30
= diff.new_path
- else
= diff.new_path
- unless @disable_diffs
%h4 Changes:
- @diffs.each_with_index do |diff, i|
%li{id: "diff-#{i}"}
%a{href: @target_url + "#diff-#{i}"}
- if diff.deleted_file
%strong
= diff.old_path
deleted
- elsif diff.renamed_file
%strong
= diff.old_path
→
%strong
= diff.new_path
- else
%strong
= diff.new_path
%hr
= color_email_diff(diff.diff)
%br
- if @compare.timeout
%h5 Huge diff. To prevent performance issues changes are hidden