Mercurial > hg
annotate mercurial/templates/rss/map @ 22764:1e2f54a149e8
templater: set the correct phase for parents
Akin to f6371cc62d2a which did this for `hg log`, the following sets
the correct phase for the {phase} keyword when the context is a parent
of the current cset. This allows templates such as the following to be
defined,
parent = '{label("log.parent changeset.{phase}",
"parent: {rev}:{node|formatnode}")}\n'
which when called on a parent (e.g. with the `parents` template
keyword), will produce the correct phase.
author | Jordi Gutiérrez Hermoso <jordigh@octave.org> |
---|---|
date | Fri, 03 Oct 2014 22:03:31 -0400 |
parents | 19ee4923a2b6 |
children |
rev | line source |
---|---|
1901
c64bef3d7043
use safer string parser for template engine.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
1766
diff
changeset
|
1 default = 'changelog' |
5928
3340aa5a64f7
hgweb: move HTTP content types out of header templates
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
3277
diff
changeset
|
2 mimetype = 'text/xml; charset={encoding}' |
3277
105253b30239
Moved hgweb map-* files into their style directories and adjusted them.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
3235
diff
changeset
|
3 header = header.tmpl |
105253b30239
Moved hgweb map-* files into their style directories and adjusted them.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
3235
diff
changeset
|
4 changelog = changelog.tmpl |
105253b30239
Moved hgweb map-* files into their style directories and adjusted them.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
3235
diff
changeset
|
5 changelogentry = changelogentry.tmpl |
105253b30239
Moved hgweb map-* files into their style directories and adjusted them.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
3235
diff
changeset
|
6 filelog = filelog.tmpl |
105253b30239
Moved hgweb map-* files into their style directories and adjusted them.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
3235
diff
changeset
|
7 filelogentry = filelogentry.tmpl |
105253b30239
Moved hgweb map-* files into their style directories and adjusted them.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
3235
diff
changeset
|
8 tags = tags.tmpl |
105253b30239
Moved hgweb map-* files into their style directories and adjusted them.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
3235
diff
changeset
|
9 tagentry = tagentry.tmpl |
13858
1046cb663776
hgweb: add missing bookmarks templates to atom/rss styles
Yuya Nishihara <yuya@tcha.org>
parents:
9999
diff
changeset
|
10 bookmarks = bookmarks.tmpl |
1046cb663776
hgweb: add missing bookmarks templates to atom/rss styles
Yuya Nishihara <yuya@tcha.org>
parents:
9999
diff
changeset
|
11 bookmarkentry = bookmarkentry.tmpl |
18045
add2f9ddcfb5
hgweb: add branches RSS and Atom feeds
Angel Ezquerra <angel.ezquerra@gmail.com>
parents:
13858
diff
changeset
|
12 branches = branches.tmpl |
add2f9ddcfb5
hgweb: add branches RSS and Atom feeds
Angel Ezquerra <angel.ezquerra@gmail.com>
parents:
13858
diff
changeset
|
13 branchentry = branchentry.tmpl |
7748
09bec6fd747c
hgweb: add rss error template
Sune Foldager <cryo@cyanite.org>
parents:
5928
diff
changeset
|
14 error = error.tmpl |
21057
19ee4923a2b6
hgweb: adding branch, tags, bookmarks, user, and file list to rss feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
18045
diff
changeset
|
15 filedifflink = '{file|escape}<br />' |
19ee4923a2b6
hgweb: adding branch, tags, bookmarks, user, and file list to rss feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
18045
diff
changeset
|
16 fileellipses = '{file|escape}<br />' |
19ee4923a2b6
hgweb: adding branch, tags, bookmarks, user, and file list to rss feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
18045
diff
changeset
|
17 filenodelink = '{file|escape}<br />' |
19ee4923a2b6
hgweb: adding branch, tags, bookmarks, user, and file list to rss feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
18045
diff
changeset
|
18 filenolink = '{file|escape}<br />' |