##// END OF EJS Templates
Add mq patch names to tagscache instead of overriding lookup....
Add mq patch names to tagscache instead of overriding lookup. This makes mq patch names visible in hg log and hg tags. It also resolves the names only once, rather than on every lookup.

File last commit:

r1919:8f565af1 default
r2682:4e2dc5c1 default
Show More
map-cmdline.default
13 lines | 710 B | text/plain | TextLexer
Vadim Gelfer
add tests for command line template....
r1915 changeset = 'changeset: {rev}:{node|short}\n{tags}{short_parents}user: {author}\ndate: {date|date}\nsummary: {desc|firstline}\n\n'
Vadim Gelfer
add changeset_quiet to templates.
r1919 changeset_quiet = '{rev}:{node|short}\n'
Vadim Gelfer
make --style=compact look for map-cmdline.compact....
r1914 changeset_verbose = 'changeset: {rev}:{node}\n{tags}{parents}{manifest}user: {author}\ndate: {date|date}\nfiles: {files}\n{file_adds}{file_dels}description:\n{desc|strip}\n\n\n'
start_file_adds = 'files+: '
file_add = ' {file_add}'
end_file_adds = '\n'
start_file_dels = 'files-: '
file_del = ' {file_del}'
end_file_dels = '\n'
short_parent = 'parent: {rev}:{node|short}\n'
parent = 'parent: {rev}:{node}\n'
manifest = 'manifest: {rev}:{node}\n'
tag = 'tag: {tag}\n'