Show More
@@ -1,73 +1,73 | |||
|
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}{lphase}{parents}{user}{ldate}{summary}\n' |
|
4 | 4 | changeset_quiet = '{node}' |
|
5 | changeset_verbose = '{cset}{branches}{bookmarks}{tags}{parents}{user}{ldate}{lfiles}{lfile_copies_switch}{description}\n' | |
|
5 | changeset_verbose = '{cset}{branches}{bookmarks}{tags}{lphase}{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 | |
|
8 | 8 | # File templates |
|
9 | 9 | lfiles = '{if(files, |
|
10 | 10 | label("ui.note log.files", |
|
11 | 11 | "files: {files}\n"))}' |
|
12 | 12 | |
|
13 | 13 | lfile_mods = '{if(file_mods, |
|
14 | 14 | label("ui.debug log.files", |
|
15 | 15 | "files: {file_mods}\n"))}' |
|
16 | 16 | |
|
17 | 17 | lfile_adds = '{if(file_adds, |
|
18 | 18 | label("ui.debug log.files", |
|
19 | 19 | "files+: {file_adds}\n"))}' |
|
20 | 20 | |
|
21 | 21 | lfile_dels = '{if(file_dels, |
|
22 | 22 | label("ui.debug log.files", |
|
23 | 23 | "files-: {file_dels}\n"))}' |
|
24 | 24 | |
|
25 | 25 | lfile_copies_switch = '{if(file_copies_switch, |
|
26 | 26 | label("ui.note log.copies", |
|
27 | 27 | "copies: {file_copies_switch |
|
28 | 28 | % ' {name} ({source})'}\n"))}' |
|
29 | 29 | |
|
30 | 30 | # General templates |
|
31 | 31 | cset = '{label("log.changeset changeset.{phase}", |
|
32 | 32 | "changeset: {rev}:{node|short}")}\n' |
|
33 | 33 | |
|
34 | 34 | lphase = '{label("log.phase", |
|
35 | 35 | "phase: {phase}")}\n' |
|
36 | 36 | |
|
37 | 37 | fullcset = '{label("log.changeset changeset.{phase}", |
|
38 | 38 | "changeset: {rev}:{node}")}\n' |
|
39 | 39 | |
|
40 | 40 | parent = '{label("log.parent changeset.{phase}", |
|
41 | 41 | "parent: {rev}:{node|formatnode}")}\n' |
|
42 | 42 | |
|
43 | 43 | node = '{label("log.node", |
|
44 | 44 | "{rev}:{node|short}")}\n' |
|
45 | 45 | |
|
46 | 46 | manifest = '{label("ui.debug log.manifest", |
|
47 | 47 | "manifest: {rev}:{node}")}\n' |
|
48 | 48 | |
|
49 | 49 | branch = '{label("log.branch", |
|
50 | 50 | "branch: {branch}")}\n' |
|
51 | 51 | |
|
52 | 52 | tag = '{label("log.tag", |
|
53 | 53 | "tag: {tag}")}\n' |
|
54 | 54 | |
|
55 | 55 | bookmark = '{label("log.bookmark", |
|
56 | 56 | "bookmark: {bookmark}")}\n' |
|
57 | 57 | |
|
58 | 58 | user = '{label("log.user", |
|
59 | 59 | "user: {author}")}\n' |
|
60 | 60 | |
|
61 | 61 | summary = '{label("log.summary", |
|
62 | 62 | "summary: {desc|firstline}")}\n' |
|
63 | 63 | |
|
64 | 64 | ldate = '{label("log.date", |
|
65 | 65 | "date: {date|date}")}\n' |
|
66 | 66 | |
|
67 | 67 | extra = '{label("ui.debug log.extra", |
|
68 | 68 | "extra: {key}={value|stringescape}")}\n' |
|
69 | 69 | |
|
70 | 70 | description = '{label("ui.note log.description", |
|
71 | 71 | "description:")} |
|
72 | 72 | {label("ui.note log.description", |
|
73 | 73 | "{desc|strip}")}\n\n' |
General Comments 0
You need to be logged in to leave comments.
Login now