author | Thomas Arendsen Hein <thomas@intevation.de> |
Sun, 26 Jun 2005 13:25:07 +0100 | |
changeset 477 | 520540fd6b64 |
parent 380 | c72ccad3e3b8 |
child 538 | 7140bc781655 |
child 547 | 4fc63e22b1fe |
permissions | -rw-r--r-- |
142 | 1 |
header = header.tmpl |
2 |
footer = footer.tmpl |
|
138 | 3 |
changelog = changelog.tmpl |
173
8da1df932c16
hgweb: make navigation of changesets a bit nicer
mpm@selenic.com
parents:
172
diff
changeset
|
4 |
naventry = "<a href="?cmd=changelog;rev=#rev#">#label#</a> " |
138 | 5 |
filedifflink = "<a href="?cmd=filediff;node=#node#;file=#file#">#file#</a> " |
6 |
filenodelink = "<a href="?cmd=file;filenode=#filenode#;file=#file#">#file#</a> " |
|
7 |
fileellipses = "..." |
|
8 |
changelogentry = changelogentry.tmpl |
|
9 |
changeset = changeset.tmpl |
|
10 |
manifest = manifest.tmpl |
|
359 | 11 |
manifestdirentry = "<tr class="parity#parity#"><td><tt>drwxr-xr-x</tt> <td><a href="?cmd=manifest;manifest=#manifest#;path=#path#">#basename#/</a>" |
12 |
manifestfileentry = "<tr class="parity#parity#"><td><tt>#permissions|permissions#</tt> <td><a href="?cmd=file;filenode=#filenode#;file=#file#">#basename#</a>" |
|
138 | 13 |
filerevision = filerevision.tmpl |
14 |
fileannotate = fileannotate.tmpl |
|
15 |
filediff = filediff.tmpl |
|
16 |
filelog = filelog.tmpl |
|
201
f918a6fa2572
hgweb: add template filters, template style maps, and raw pages
mpm@selenic.com
parents:
173
diff
changeset
|
17 |
fileline = "<div class="parity#parity#"><span class="lineno">#linenumber# </span>#line|escape#</div>" |
138 | 18 |
filelogentry = filelogentry.tmpl |
235
eb341488aa4c
Obfuscate author in all HTML templates.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
201
diff
changeset
|
19 |
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
|
20 |
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
|
21 |
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
|
22 |
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
|
23 |
diffline = "#line|escape#" |
375 | 24 |
changelogparent = "<tr><td align="right">parent: </td><td><a href="?cmd=changeset;node=#node#">#node|short#</a></td></tr>" |
378 | 25 |
changesetparent = "<tr><td class="metatag">parent:</td><td><a href="?cmd=changeset;node=#node#">#node|short#</a></td></tr>" |
375 | 26 |
filerevparent = "<tr><td class="metatag">parent:</td><td><a href="?cmd=file;file=#file#;filenode=#node#">#node|short#</a></td></tr>" |
27 |
fileannotateparent = "<tr><td class="metatag">parent:</td><td><a href="?cmd=annotate;file=#file#;filenode=#node#">#node|short#</a></td></tr>" |
|
168 | 28 |
tags = tags.tmpl |
29 |
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
|
30 |
diffblock = "<div class="parity#parity#">#lines#</div>" |