Mercurial > hg
annotate templates/map @ 585:51626d888526
[PATCH] Changelogentry template cleanup
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
[PATCH] Changelogentry template cleanup
From: Edouard Gomez <edouard.gomez@gmail.com>
Changelogentry template cleanup
Removed unuseful outside div (was probably used to carry the
parity class, it's no use, multiple css classes can be assigned
to the inner table instead)
Removed all hardwired styles in html tags. The style has been
externalized to equivalent CSS classes.
The inner table is now assigned the parity CSS class.
Changed all relevant table cells from td to th.
Added classes to all cells in order to give some semantic rationale
to these table cells.
manifest hash: 2835217df09be445961b865be166c2470173ba58
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCx1g5ywK+sNU5EO8RAhKGAKCWAHrx+lLMAXjd4/vgvG7vmfSkAACfTZ+m
/EyUsDVaYeVcGzFsp8liReI=
=vt2N
-----END PGP SIGNATURE-----
author | mpm@selenic.com |
---|---|
date | Sat, 02 Jul 2005 19:15:05 -0800 |
parents | c7364b985ca2 |
children | 11578820b5d7 |
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 |
31 tagentry = "<div class="parity#parity#"><tt>#node#</tt> <a href="?cmd=changeset;node=#node#">#tag#</a><br /></div>" | |
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>" |