rosa-build/app/helpers/git_helper.rb

57 lines
1.4 KiB
Ruby
Raw Normal View History

2012-01-30 20:39:34 +00:00
# -*- encoding : utf-8 -*-
2011-04-01 01:36:34 +01:00
module GitHelper
def render_path
# TODO: Looks ugly, rewrite with clear mind.
if @path.present?
if @treeish == "master"
res = "#{link_to @project.name, tree_path(@project)} / "
2011-04-01 01:36:34 +01:00
else
res = "#{link_to @project.name, tree_path(@project, @treeish)} / "
2011-04-01 01:36:34 +01:00
end
parts = @path.split("/")
current_path = parts.first
res += parts.length == 1 ? parts.first : link_to(parts.first, tree_path(@project, @treeish, current_path)) + " / "
2011-04-01 01:36:34 +01:00
parts[1..-2].each do |part|
current_path = File.join([current_path, part].compact)
res += link_to(part, tree_path(@project, @treeish, current_path))
2011-04-01 01:36:34 +01:00
res += " / "
end
res += parts.last if parts.length > 1
else
res = "#{link_to @project.name, tree_path(@project)} /"
2011-04-01 01:36:34 +01:00
end
2012-02-04 20:12:37 +00:00
res.encode_to_default.html_safe
2011-04-01 01:36:34 +01:00
end
def render_line_numbers(n)
res = ""
1.upto(n) {|i| res += "<span>#{i}</span>\n" }
res
end
def render_blob(blob)
res = ""
2012-02-06 13:58:27 +00:00
blob.data.encode_to_default.split("\n").collect do |line|
2012-02-04 20:12:37 +00:00
"<div>#{line.present? ? h(line) : "<br>"}</div>"
end.join
2011-04-01 01:36:34 +01:00
end
def choose_render_way(blob)
return :image if blob.mime_type.match(/image/)
return :text if blob.mime_type.match(/text|xml|json/)
:binary
end
2012-02-04 20:12:37 +00:00
def force_encoding_to_site(string)
2012-02-06 13:58:27 +00:00
string.dup.encode_to_default
2012-02-04 20:12:37 +00:00
end
end