Reverted changesets 9d1380e5c8c5 and 1d46169ec197: show @ as glog parent again.
Repainted the bikeshed with its original color.
--- a/hgext/graphlog.py Thu Jun 14 11:33:32 2007 +0200
+++ b/hgext/graphlog.py Thu Jun 14 12:54:06 2007 +0200
@@ -147,7 +147,7 @@
Print a revision history alongside a revision graph drawn with
ASCII characters.
- Nodes printed as a . character are parents of the working
+ Nodes printed as an @ character are parents of the working
directory.
"""
@@ -199,10 +199,10 @@
# o | | o | |
fix_nodeline_tail = len(log_strings) <= 2 and not add_padding_line
- # nodeline is the line containing the node character (. or o).
+ # nodeline is the line containing the node character (@ or o).
nodeline = ["|", " "] * node_index
if node in repo_parents:
- node_ch = "."
+ node_ch = "@"
else:
node_ch = "o"
nodeline.extend([node_ch, " "])
--- a/tests/test-glog.out Thu Jun 14 11:33:32 2007 +0200
+++ b/tests/test-glog.out Thu Jun 14 12:54:06 2007 +0200
@@ -2,7 +2,7 @@
% empty repo
% building tree
% glog -q
-. 34:0eed7cd895e0
+@ 34:0eed7cd895e0
|
| o 33:2e9d1b521374
| |
@@ -73,7 +73,7 @@
o 0:7aa22e58e8c1
% glog
-. changeset: 34:0eed7cd895e0
+@ changeset: 34:0eed7cd895e0
| tag: tip
| parent: 32:77f7d8438a3c
| user: test