##// END OF EJS Templates
[PATCH] Changelogentry template cleanup...
[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-----

File last commit:

r585:51626d88 default
r585:51626d88 default
Show More
map
35 lines | 2.3 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
tagentry = "<div class="parity#parity#"><tt>#node#</tt> <a href="?cmd=changeset;node=#node#">#tag#</a><br /></div>"
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>"