51 lines
1.3 KiB
Ruby
51 lines
1.3 KiB
Ruby
# -*- encoding : utf-8 -*-
|
|
module CommitHelper
|
|
|
|
def render_commit_stats(stats)
|
|
res = ["<table class='commit_stats'>"]
|
|
stats.files.each do |filename, adds, deletes, total|
|
|
res << "<tr>"
|
|
res << "<td><a href='##{h(filename)}'>#{h(filename)}</a></td>"
|
|
res << "<td class='diffstat'>"
|
|
res << I18n.t("layout.projects.inline_changes_count", :count => total).strip +
|
|
" (" +
|
|
I18n.t("layout.projects.inline_additions_count", :count => adds).strip +
|
|
", " +
|
|
I18n.t("layout.projects.inline_deletions_count", :count => deletes).strip +
|
|
")"
|
|
res << "</td>"
|
|
end
|
|
res << "</table>"
|
|
|
|
res.join("\n").html_safe.default_encoding!
|
|
end
|
|
|
|
# def format_commit_message(message)
|
|
# h(message).gsub("\n", "<br />").html_safe
|
|
# end
|
|
|
|
def commit_date(date)
|
|
I18n.localize(date, { :format => "%d %B %Y" })
|
|
end
|
|
|
|
def short_hash_id(id)
|
|
id[0..19]
|
|
end
|
|
|
|
def shortest_hash_id(id)
|
|
id[0..9]
|
|
end
|
|
|
|
def short_commit_message(message)
|
|
# Why 42? Because it is the Answer!
|
|
truncate(message, :length => 42, :omission => "...")
|
|
end
|
|
|
|
def commit_author_link(author)
|
|
name = author.name
|
|
email = author.email
|
|
u = User.where(:email => email).first
|
|
u.present? ? link_to(name, user_path(u)) : mail_to(email, name)
|
|
end
|
|
end
|