##// END OF EJS Templates
graphmod: code cleanup and doc fix
Peter Arrenbrecht -
r8835:ec5483ef default
parent child Browse files
Show More
@@ -16,13 +16,10 b' def graph(repo, start_rev, stop_rev):'
16 or equal to start_rev) and for each revision emits tuples with the
16 or equal to start_rev) and for each revision emits tuples with the
17 following elements:
17 following elements:
18
18
19 - Current node
19 - Context of the current node
20 - Column and color for the current node
20 - Tuple (col, color) with column and color index for the current node
21 - Edges; a list of (col, next_col, color) indicating the edges between
21 - Edges; a list of (col, next_col, color) indicating the edges between
22 the current node and its parents.
22 the current node and its parents.
23 - First line of the changeset description
24 - The changeset author
25 - The changeset date/time
26 """
23 """
27
24
28 if start_rev == nullrev and not stop_rev:
25 if start_rev == nullrev and not stop_rev:
General Comments 0
You need to be logged in to leave comments. Login now