Skip to content
Snippets Groups Projects
Commit f96dc629 authored by Douwe Maan's avatar Douwe Maan
Browse files

Everything from gitlab_git is already UTF-8.

parent 606d24ff
No related branches found
No related tags found
1 merge request!8686add "Uplaod" and "Replace" functionality
Loading
Loading
@@ -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
Loading
Loading
Loading
Loading
@@ -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,
}
Loading
Loading
Loading
Loading
@@ -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 %>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment