Mercurial > hg
annotate mercurial/templates/map-cmdline.changelog @ 13955:86b5cc1e8be8 stable
help config: explain that config files do not exist by default
Inspired by critique given on StackOverflow where a user writes:
I can have a good guess at what "%USERPROFILE%" might signify but
none of the files listed in the "hg help config" output exist after
running the installer. Previous experience would suggest that
missing files mean something somewhere has gone seriously wrong.
http://stackoverflow.com/questions/2329023/2351139#2351139
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Mon, 18 Apr 2011 13:57:22 +0200 |
parents | f91e5630ce7e |
children | f4aeb952ab77 |
rev | line source |
---|---|
2033
e3280d350792
Group changes done by the same developer on the same with --style=changelog
Thomas Arendsen Hein <thomas@intevation.de>
parents:
2032
diff
changeset
|
1 header = '{date|shortdate} {author|person} <{author|email}>\n\n' |
e3280d350792
Group changes done by the same developer on the same with --style=changelog
Thomas Arendsen Hein <thomas@intevation.de>
parents:
2032
diff
changeset
|
2 header_verbose = '' |
9936
3aa420c56ac4
list branches in changelog template
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
2033
diff
changeset
|
3 changeset = '\t* {files|stringify|fill68|tabindent}{desc|fill68|tabindent|strip}\n\t[{node|short}]{tags}{branches}\n\n' |
2033
e3280d350792
Group changes done by the same developer on the same with --style=changelog
Thomas Arendsen Hein <thomas@intevation.de>
parents:
2032
diff
changeset
|
4 changeset_quiet = '\t* {desc|firstline|fill68|tabindent|strip}\n\n' |
9936
3aa420c56ac4
list branches in changelog template
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
2033
diff
changeset
|
5 changeset_verbose = '{date|isodate} {author|person} <{author|email}> ({node|short}{tags}{branches})\n\n\t* {file_adds|stringify|fill68|tabindent}{file_dels|stringify|fill68|tabindent}{files|stringify|fill68|tabindent}{desc|fill68|tabindent|strip}\n\n' |
1987
04c17fc39c84
add changelog style to command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff
changeset
|
6 start_tags = ' [' |
04c17fc39c84
add changelog style to command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff
changeset
|
7 tag = '{tag}, ' |
04c17fc39c84
add changelog style to command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff
changeset
|
8 last_tag = '{tag}]' |
9936
3aa420c56ac4
list branches in changelog template
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
2033
diff
changeset
|
9 start_branches = ' <' |
3aa420c56ac4
list branches in changelog template
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
2033
diff
changeset
|
10 branch = '{branch}, ' |
3aa420c56ac4
list branches in changelog template
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
2033
diff
changeset
|
11 last_branch = '{branch}>' |
1987
04c17fc39c84
add changelog style to command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff
changeset
|
12 file = '{file}, ' |
2032
cd6bdbc508dd
Don't print filenames in braces for changelog style.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1987
diff
changeset
|
13 last_file = '{file}:\n\t' |
1987
04c17fc39c84
add changelog style to command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff
changeset
|
14 file_add = '{file_add}, ' |
2032
cd6bdbc508dd
Don't print filenames in braces for changelog style.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1987
diff
changeset
|
15 last_file_add = '{file_add}: new file.\n* ' |
1987
04c17fc39c84
add changelog style to command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff
changeset
|
16 file_del = '{file_del}, ' |
2032
cd6bdbc508dd
Don't print filenames in braces for changelog style.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1987
diff
changeset
|
17 last_file_del = '{file_del}: deleted file.\n* ' |