summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9e4f522)
raw | patch | inline | side by side (parent: 9e4f522)
author | Aneesh Kumar K.V <aneesh.kumar@gmail.com> | |
Fri, 24 Feb 2006 16:27:51 +0000 (21:57 +0530) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sat, 25 Feb 2006 01:27:46 +0000 (17:27 -0800) |
This fix all the known issue with the graph display
The bug need to be explained graphically
|
a
This line need not be there ---->| \
b |
| /
c
c is parent of a and all a,b and c are placed on the same line and b is child of c
With my last checkin I added a seperate line to indicate that a is
connected to c. But then we had the line connecting a and b which should
not be ther. This changes fixes the same bug
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
The bug need to be explained graphically
|
a
This line need not be there ---->| \
b |
| /
c
c is parent of a and all a,b and c are placed on the same line and b is child of c
With my last checkin I added a seperate line to indicate that a is
connected to c. But then we had the line connecting a and b which should
not be ther. This changes fixes the same bug
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
contrib/gitview/gitview | patch | blob | history |
index 2cde71e30d080d7e827697d7464e00024e6144bd..4e3847d8bf38db1497f6d48ce1fcaeaad8b9592a 100755 (executable)
--- a/contrib/gitview/gitview
+++ b/contrib/gitview/gitview
def draw_incomplete_line(self, sha1, node_pos, out_line, in_line, index):
for idx, pos in enumerate(self.incomplete_line[sha1]):
if(pos == node_pos):
- out_line.append((pos,
- pos+0.5, self.colours[sha1]))
+ #remove the straight line and add a slash
+ if ((pos, pos, self.colours[sha1]) in out_line):
+ out_line.remove((pos, pos, self.colours[sha1]))
+ out_line.append((pos, pos+0.5, self.colours[sha1]))
self.incomplete_line[sha1][idx] = pos = pos+0.5
try:
next_commit = self.commits[index+1]