Mercurial > hg
annotate templates/map @ 598:f8d44a2e6928
[PATCH 4/5]: cleaning the template parent management in hgweb
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
[PATCH 4/5]: cleaning the template parent management in hgweb
From: Goffredo Baroncelli <kreijack@libero.it>
Now the patch remove every use of the tag p1/p2/p1rev/p2rev from the
code ( even+the ones not used ), replacing everywhere with the tag
parent ( even where the previous +tag are not use ), so the
information to the templates is still given.
manifest hash: ede1f299e9201fdad2ecf48e63314350acbb047e
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCyEqxywK+sNU5EO8RAjc5AJ9o8AU6/YRuERblO/0kgWwDN4rqQQCgkVj/
UBtzW5x0yD65mK6rb4f+bQk=
=07yG
-----END PGP SIGNATURE-----
author | mpm@selenic.com |
---|---|
date | Sun, 03 Jul 2005 12:29:37 -0800 |
parents | 11578820b5d7 |
children | 56d81b303656 |
rev | line source |
---|---|
142 | 1 header = header.tmpl |
2 footer = footer.tmpl | |
538 | 3 search = search.tmpl |
138 | 4 changelog = changelog.tmpl |
173
8da1df932c16
hgweb: make navigation of changesets a bit nicer
mpm@selenic.com
parents:
172
diff
changeset
|
5 naventry = "<a href="?cmd=changelog;rev=#rev#">#label#</a> " |
138 | 6 filedifflink = "<a href="?cmd=filediff;node=#node#;file=#file#">#file#</a> " |
7 filenodelink = "<a href="?cmd=file;filenode=#filenode#;file=#file#">#file#</a> " | |
8 fileellipses = "..." | |
9 changelogentry = changelogentry.tmpl | |
538 | 10 searchentry = searchentry.tmpl |
138 | 11 changeset = changeset.tmpl |
12 manifest = manifest.tmpl | |
359 | 13 manifestdirentry = "<tr class="parity#parity#"><td><tt>drwxr-xr-x</tt> <td><a href="?cmd=manifest;manifest=#manifest#;path=#path#">#basename#/</a>" |
14 manifestfileentry = "<tr class="parity#parity#"><td><tt>#permissions|permissions#</tt> <td><a href="?cmd=file;filenode=#filenode#;file=#file#">#basename#</a>" | |
138 | 15 filerevision = filerevision.tmpl |
16 fileannotate = fileannotate.tmpl | |
17 filediff = filediff.tmpl | |
18 filelog = filelog.tmpl | |
201
f918a6fa2572
hgweb: add template filters, template style maps, and raw pages
mpm@selenic.com
parents:
173
diff
changeset
|
19 fileline = "<div class="parity#parity#"><span class="lineno">#linenumber# </span>#line|escape#</div>" |
138 | 20 filelogentry = filelogentry.tmpl |
235
eb341488aa4c
Obfuscate author in all HTML templates.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
201
diff
changeset
|
21 annotateline = "<tr class="parity#parity#"><td class="annotate"><a href="?cmd=changeset;node=#node#">#author|obfuscate#@#rev#</a></td><td><pre>#line|escape#</pre></td></tr>" |
201
f918a6fa2572
hgweb: add template filters, template style maps, and raw pages
mpm@selenic.com
parents:
173
diff
changeset
|
22 difflineplus = "<span class="plusline">#line|escape#</span>" |
f918a6fa2572
hgweb: add template filters, template style maps, and raw pages
mpm@selenic.com
parents:
173
diff
changeset
|
23 difflineminus = "<span class="minusline">#line|escape#</span>" |
f918a6fa2572
hgweb: add template filters, template style maps, and raw pages
mpm@selenic.com
parents:
173
diff
changeset
|
24 difflineat = "<span class="atline">#line|escape#</span>" |
f918a6fa2572
hgweb: add template filters, template style maps, and raw pages
mpm@selenic.com
parents:
173
diff
changeset
|
25 diffline = "#line|escape#" |
585 | 26 changelogparent = "<tr><th class="parent">parent #rev#:</th><td><a href="?cmd=changeset;node=#node#">#node|short#</a></td></tr>" |
567 | 27 changesetparent = "<tr><td class="metatag">parent #rev#:</td><td><a href="?cmd=changeset;node=#node#">#node|short#</a></td></tr>" |
375 | 28 filerevparent = "<tr><td class="metatag">parent:</td><td><a href="?cmd=file;file=#file#;filenode=#node#">#node|short#</a></td></tr>" |
29 fileannotateparent = "<tr><td class="metatag">parent:</td><td><a href="?cmd=annotate;file=#file#;filenode=#node#">#node|short#</a></td></tr>" | |
168 | 30 tags = tags.tmpl |
586 | 31 tagentry = "<li class="tagEntry parity#parity#"><span class="node">#node#</span> <a href="?cmd=changeset;node=#node#">#tag#</a></li>" |
235
eb341488aa4c
Obfuscate author in all HTML templates.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
201
diff
changeset
|
32 diffblock = "<div class="parity#parity#">#lines#</div>" |
568 | 33 changelogtag = "<tr><td align="right">tag: </td><td>#tag#</td></tr>" |
34 changesettag = "<tr><td class="metatag">tag: </td><td>#tag#</td></tr>" | |
571
c7364b985ca2
[PATCH 3/5]: cleaning the template parent management in hgweb
mpm@selenic.com
parents:
568
diff
changeset
|
35 filediffparent = "<tr><td class="metatag">parent #rev#:</td><td><a href="?cmd=changeset;node=#node#">#node|short#</a></td></tr>" |
598
f8d44a2e6928
[PATCH 4/5]: cleaning the template parent management in hgweb
mpm@selenic.com
parents:
586
diff
changeset
|
36 filelogparent = "<tr><td align="right">parent #rev#: </td><td><a href="?cmd=file;file=#file#;filenode=#node#">#node|short#</a></td></tr>" |