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