From f6a67fbad5119e3d95e33cfd4f4e4992707d5ba0 Mon Sep 17 00:00:00 2001
From: gitlabhq <m@gitlabhq.com>
Date: Tue, 25 Oct 2011 21:04:31 +0300
Subject: [PATCH] Issue #87

---
 app/views/commits/_text_file.html.haml | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/app/views/commits/_text_file.html.haml b/app/views/commits/_text_file.html.haml
index b20aa8afe4..67033adea7 100644
--- a/app/views/commits/_text_file.html.haml
+++ b/app/views/commits/_text_file.html.haml
@@ -1,8 +1,14 @@
+- line_old = 0
+- line_new = 0
 - lines_arr = diff.diff.lines.to_a
-- line_old = lines_arr[2].match(/-(\d)/)[0].to_i.abs rescue 0
-- line_new = lines_arr[2].match(/\+(\d)/)[0].to_i.abs rescue 0
-- lines = lines_arr[3..-1].join
-- lines.each_line do |line|
+- lines_arr.each do |line|
+  - next if line.match(/^--- a/)
+  - next if line.match(/^\+\+\+ b/)
+  - if line.match(/^@@ -/)
+    - line_old = line.match(/\-[0-9]*/)[0].to_i.abs rescue 0
+    - line_new = line.match(/\+[0-9]*/)[0].to_i.abs rescue 0
+    - next
+
   = diff_line(line, line_new, line_old)
   - if line[0] == "+"
     - line_new += 1
-- 
2.30.9