Fixed commit diff: content of removed files displayed

This commit is contained in:
Dmitriy Zaporozhets 2012-02-14 20:00:25 +02:00
parent ae416a76ff
commit c062e56b4c
2 changed files with 7 additions and 4 deletions

View file

@ -53,11 +53,13 @@ module CommitsHelper
lines_arr = diff_arr
lines_arr.each do |line|
next if line.match(/^\-\-\- \/dev\/null/)
next if line.match(/^\+\+\+ \/dev\/null/)
next if line.match(/^\-\-\- a/)
next if line.match(/^\+\+\+ b/)
full_line = html_escape(line.gsub(/\n/, ''))
next if line.match(/^--- \/dev\/null/)
next if line.match(/^--- a/)
next if line.match(/^\+\+\+ b/)
if line.match(/^@@ -/)
next if line_old == 1 && line_new == 1
type = "match"