##// END OF EJS Templates
[PATCH] Tags template cleanup...
[PATCH] Tags template cleanup -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 [PATCH] Tags template cleanup From: Edouard Gomez <edouard.gomez@gmail.com> Tags template cleanup This page lists all tags, thus using divs doesn't structure well the information. Better use a list (ul). Each tag becomes a li element. The li element also carries the parity information. As font style tags are highly deprecated in newer HTML variants get rid of the tt element, relaced by a simple span that gets a CSS class that mimics tt default style (monospaced text) Added CSS classes required to match old style. manifest hash: f8943b8270e20966a04111e7205deefedd8b7075 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCx1ijywK+sNU5EO8RAjaAAJoCVaD37YUC6DueL6Kd5D9aoCF8bQCfSWw0 xFVkpEtnr6ST4eyJjR8K17U= =nphb -----END PGP SIGNATURE-----

File last commit:

r586:11578820 default
r586:11578820 default
Show More
map
35 lines | 2.4 KiB | text/plain | TextLexer
mpm@selenic.com
Prettify the web interface...
r142 header = header.tmpl
footer = footer.tmpl
mpm@selenic.com
Add multiple keyword search to hgweb...
r538 search = search.tmpl
mpm@selenic.com
Revamped templated hgweb
r138 changelog = changelog.tmpl
mpm@selenic.com
hgweb: make navigation of changesets a bit nicer
r173 naventry = "<a href="?cmd=changelog;rev=#rev#">#label#</a> "
mpm@selenic.com
Revamped templated hgweb
r138 filedifflink = "<a href="?cmd=filediff;node=#node#;file=#file#">#file#</a> "
filenodelink = "<a href="?cmd=file;filenode=#filenode#;file=#file#">#file#</a> "
fileellipses = "..."
changelogentry = changelogentry.tmpl
mpm@selenic.com
Add multiple keyword search to hgweb...
r538 searchentry = searchentry.tmpl
mpm@selenic.com
Revamped templated hgweb
r138 changeset = changeset.tmpl
manifest = manifest.tmpl
mpm@selenic.com
hgweb: add file permissions...
r359 manifestdirentry = "<tr class="parity#parity#"><td><tt>drwxr-xr-x</tt>&nbsp;<td><a href="?cmd=manifest;manifest=#manifest#;path=#path#">#basename#/</a>"
manifestfileentry = "<tr class="parity#parity#"><td><tt>#permissions|permissions#</tt>&nbsp;<td><a href="?cmd=file;filenode=#filenode#;file=#file#">#basename#</a>"
mpm@selenic.com
Revamped templated hgweb
r138 filerevision = filerevision.tmpl
fileannotate = fileannotate.tmpl
filediff = filediff.tmpl
filelog = filelog.tmpl
mpm@selenic.com
hgweb: add template filters, template style maps, and raw pages...
r201 fileline = "<div class="parity#parity#"><span class="lineno">#linenumber# </span>#line|escape#</div>"
mpm@selenic.com
Revamped templated hgweb
r138 filelogentry = filelogentry.tmpl
Thomas Arendsen Hein
Obfuscate author in all HTML templates.
r235 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>"
mpm@selenic.com
hgweb: add template filters, template style maps, and raw pages...
r201 difflineplus = "<span class="plusline">#line|escape#</span>"
difflineminus = "<span class="minusline">#line|escape#</span>"
difflineat = "<span class="atline">#line|escape#</span>"
diffline = "#line|escape#"
mpm@selenic.com
[PATCH] Changelogentry template cleanup...
r585 changelogparent = "<tr><th class="parent">parent #rev#:</th><td><a href="?cmd=changeset;node=#node#">#node|short#</a></td></tr>"
mpm@selenic.com
Add parent revision numbers back to hgweb...
r567 changesetparent = "<tr><td class="metatag">parent #rev#:</td><td><a href="?cmd=changeset;node=#node#">#node|short#</a></td></tr>"
mpm@selenic.com
Show nice short hashes in hgweb...
r375 filerevparent = "<tr><td class="metatag">parent:</td><td><a href="?cmd=file;file=#file#;filenode=#node#">#node|short#</a></td></tr>"
fileannotateparent = "<tr><td class="metatag">parent:</td><td><a href="?cmd=annotate;file=#file#;filenode=#node#">#node|short#</a></td></tr>"
mpm@selenic.com
hgweb: add tags links and manifest links...
r168 tags = tags.tmpl
mpm@selenic.com
[PATCH] Tags template cleanup...
r586 tagentry = "<li class="tagEntry parity#parity#"><span class="node">#node#</span> <a href="?cmd=changeset;node=#node#">#tag#</a></li>"
Thomas Arendsen Hein
Obfuscate author in all HTML templates.
r235 diffblock = "<div class="parity#parity#">#lines#</div>"
mpm@selenic.com
[PATCH] Add tags to hgweb...
r568 changelogtag = "<tr><td align="right">tag:&nbsp;</td><td>#tag#</td></tr>"
changesettag = "<tr><td class="metatag">tag:&nbsp;</td><td>#tag#</td></tr>"
mpm@selenic.com
[PATCH 3/5]: cleaning the template parent management in hgweb...
r571 filediffparent = "<tr><td class="metatag">parent #rev#:</td><td><a href="?cmd=changeset;node=#node#">#node|short#</a></td></tr>"