##// END OF EJS Templates
hgweb: report detected character set...
hgweb: report detected character set Add comments on overriding charset to CGI scripts

File last commit:

r3462:fab28100 default
r3781:713e35dc default
Show More
map-cmdline.default
22 lines | 1.2 KiB | text/plain | TextLexer
Thomas Arendsen Hein
Add new branch info to templater and use it in map-cmdline.default....
r3461 changeset = 'changeset: {rev}:{node|short}\n{branches}{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'
Thomas Arendsen Hein
Add new branch info to templater and use it in map-cmdline.default....
r3461 changeset_verbose = 'changeset: {rev}:{node|short}\n{branches}{tags}{parents}{manifest}user: {author}\ndate: {date|date}\n{files}{file_adds}{file_dels}{file_copies}description:\n{desc|strip}\n\n\n'
Thomas Arendsen Hein
Added extra changeset info to templater and map-cmdline.default.
r3462 changeset_debug = 'changeset: {rev}:{node}\n{branches}{tags}{parents}{manifest}user: {author}\ndate: {date|date}\n{files}{file_adds}{file_dels}{file_copies}{extras}description:\n{desc|strip}\n\n\n'
Thomas Arendsen Hein
Adjust default cmdline style to really match verbose/debug log.
r3459 start_files = 'files: '
file = ' {file}'
end_files = '\n'
Vadim Gelfer
make --style=compact look for map-cmdline.compact....
r1914 start_file_adds = 'files+: '
file_add = ' {file_add}'
end_file_adds = '\n'
start_file_dels = 'files-: '
file_del = ' {file_del}'
end_file_dels = '\n'
Brendan Cully
Show copies in hg log....
r3197 start_file_copies = 'copies: '
file_copy = ' {name} ({source})'
end_file_copies = '\n'
Vadim Gelfer
make --style=compact look for map-cmdline.compact....
r1914 short_parent = 'parent: {rev}:{node|short}\n'
parent = 'parent: {rev}:{node}\n'
manifest = 'manifest: {rev}:{node}\n'
Thomas Arendsen Hein
Add new branch info to templater and use it in map-cmdline.default....
r3461 branch = 'branch: {branch}\n'
Vadim Gelfer
make --style=compact look for map-cmdline.compact....
r1914 tag = 'tag: {tag}\n'
Thomas Arendsen Hein
Added extra changeset info to templater and map-cmdline.default.
r3462 extra = 'extra: {key}={value|stringescape}\n'