Show More
@@ -1,7 +1,7 b'' | |||
|
1 | 1 | # Base templates. Due to name clashes with existing keywords, we have |
|
2 | 2 | # to replace some keywords with 'lkeyword', for 'labelled keyword' |
|
3 | 3 | changeset = '{cset}{branches}{bookmarks}{tags}{parents}{user}{ldate}{summary}\n' |
|
4 | changeset_quiet = '{node}' | |
|
4 | changeset_quiet = '{lnode}' | |
|
5 | 5 | changeset_verbose = '{cset}{branches}{bookmarks}{tags}{parents}{user}{ldate}{lfiles}{lfile_copies_switch}{description}\n' |
|
6 | 6 | changeset_debug = '{fullcset}{branches}{bookmarks}{tags}{lphase}{parents}{manifest}{user}{ldate}{lfile_mods}{lfile_adds}{lfile_dels}{lfile_copies_switch}{extras}{description}\n' |
|
7 | 7 | |
@@ -40,7 +40,7 b' fullcset = \'{label("log.changeset change' | |||
|
40 | 40 | parent = '{label("log.parent changeset.{phase}", |
|
41 | 41 | "parent: {rev}:{node|formatnode}")}\n' |
|
42 | 42 | |
|
43 | node = '{label("log.node", | |
|
43 | lnode = '{label("log.node", | |
|
44 | 44 | "{rev}:{node|short}")}\n' |
|
45 | 45 | |
|
46 | 46 | manifest = '{label("ui.debug log.manifest", |
@@ -104,6 +104,10 b' Default style is like normal output:' | |||
|
104 | 104 | $ hg log -v --style default > style.out |
|
105 | 105 | $ cmp log.out style.out || diff -u log.out style.out |
|
106 | 106 | |
|
107 | $ hg log -q > log.out | |
|
108 | $ hg log -q --style default > style.out | |
|
109 | $ cmp log.out style.out || diff -u log.out style.out | |
|
110 | ||
|
107 | 111 | $ hg log --debug > log.out |
|
108 | 112 | $ hg log --debug --style default > style.out |
|
109 | 113 | $ cmp log.out style.out || diff -u log.out style.out |
@@ -122,6 +126,9 b' Default style should also preserve color' | |||
|
122 | 126 | $ hg --color=debug -v log > log.out |
|
123 | 127 | $ hg --color=debug -v log --style default > style.out |
|
124 | 128 | $ cmp log.out style.out || diff -u log.out style.out |
|
129 | $ hg --color=debug -q log > log.out | |
|
130 | $ hg --color=debug -q log --style default > style.out | |
|
131 | $ cmp log.out style.out || diff -u log.out style.out | |
|
125 | 132 | $ hg --color=debug --debug log > log.out |
|
126 | 133 | $ hg --color=debug --debug log --style default > style.out |
|
127 | 134 | $ cmp log.out style.out || diff -u log.out style.out |
General Comments 0
You need to be logged in to leave comments.
Login now