mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-23 03:26:07 +10:00
Merge branch 'fix-encoding' into 'master'
Minor cleanup around UTF-8 encoding. Minor cleanup to be merged after https://dev.gitlab.org/gitlab/gitlab_git/merge_requests/24 is merged in. See merge request !1642
This commit is contained in:
@@ -7,7 +7,7 @@ class Projects::BlameController < Projects::ApplicationController
|
||||
before_filter :authorize_download_code!
|
||||
|
||||
def show
|
||||
@blob = @repository.blob_at(@commit.id, @path)
|
||||
@blame = Gitlab::Git::Blame.new(project.repository, @commit.id, @path)
|
||||
@blame = Gitlab::Git::Blame.new(@repository, @commit.id, @path)
|
||||
@blob = @blame.blob
|
||||
end
|
||||
end
|
||||
|
||||
@@ -28,8 +28,8 @@ class Projects::GraphsController < Projects::ApplicationController
|
||||
|
||||
@commits.each do |commit|
|
||||
@log << {
|
||||
author_name: commit.author_name.force_encoding('UTF-8'),
|
||||
author_email: commit.author_email.force_encoding('UTF-8'),
|
||||
author_name: commit.author_name,
|
||||
author_email: commit.author_email,
|
||||
date: commit.committed_date.strftime("%Y-%m-%d")
|
||||
}
|
||||
end
|
||||
|
||||
@@ -136,8 +136,8 @@ class Repository
|
||||
commit = Gitlab::Git::Commit.new(rugged_commit)
|
||||
|
||||
{
|
||||
author_name: commit.author_name.force_encoding('UTF-8'),
|
||||
author_email: commit.author_email.force_encoding('UTF-8'),
|
||||
author_name: commit.author_name,
|
||||
author_email: commit.author_email,
|
||||
additions: commit.stats.additions,
|
||||
deletions: commit.stats.deletions,
|
||||
}
|
||||
|
||||
@@ -30,5 +30,5 @@
|
||||
%code
|
||||
:erb
|
||||
<% lines.each do |line| %>
|
||||
<%= highlight(@blob.name, line.force_encoding("utf-8"), true).html_safe %>
|
||||
<%= highlight(@blob.name, line, true).html_safe %>
|
||||
<% end %>
|
||||
|
||||
Reference in New Issue
Block a user