Commit c62715ac authored by Saito's avatar Saito

now render the correct authorname and message

parent 34cc38b6
...@@ -13,27 +13,6 @@ Grit::Blob.class_eval do ...@@ -13,27 +13,6 @@ Grit::Blob.class_eval do
end end
end end
Grit::Commit.class_eval do
def to_hash
{
'id' => id,
'parents' => parents.map { |p| { 'id' => p.id } },
'tree' => tree.id,
'message' => Gitlab::Encode.utf8(message),
'author' => {
'name' => Gitlab::Encode.utf8(author.name),
'email' => author.email
},
'committer' => {
'name' => Gitlab::Encode.utf8(committer.name),
'email' => committer.email
},
'authored_date' => authored_date.xmlschema,
'committed_date' => committed_date.xmlschema,
}
end
end
Grit::Diff.class_eval do Grit::Diff.class_eval do
def old_path def old_path
Gitlab::Encode.utf8 @a_path Gitlab::Encode.utf8 @a_path
......
...@@ -96,13 +96,13 @@ class GraphCommit ...@@ -96,13 +96,13 @@ class GraphCommit
h[:parents] = self.parents.collect do |p| h[:parents] = self.parents.collect do |p|
[p.id,0,0] [p.id,0,0]
end end
h[:author] = author.name h[:author] = Gitlab::Encode.utf8(author.name)
h[:time] = time h[:time] = time
h[:space] = space h[:space] = space
h[:refs] = refs.collect{|r|r.name}.join(" ") unless refs.nil? h[:refs] = refs.collect{|r|r.name}.join(" ") unless refs.nil?
h[:id] = sha h[:id] = sha
h[:date] = date h[:date] = date
h[:message] = message h[:message] = Gitlab::Encode.utf8(message)
h[:login] = author.email h[:login] = author.email
h h
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment