Mercurial > hg
annotate templates/filerevision.tmpl @ 339:a76fc9c4b67b
added hg identify|id (based on a patch from Andrew Thompson)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
added hg identify|id (based on a patch from Andrew Thompson)
manifest hash: b8f801efb6cf14a6d754fed2cf47149f4e77b3cc
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFCr8BLW7P1GVgWeRoRAj3+AJ4jIvfBnu6vbF+SOS2ybVTboXe7pACfZkkT
2G2bbxYowVnrytOXVg6BhlU=
=wNpZ
-----END PGP SIGNATURE-----
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Wed, 15 Jun 2005 06:44:43 +0100 |
parents | f918a6fa2572 |
children | 0c4688e9ee5c |
rev | line source |
---|---|
142 | 1 #header# |
201
f918a6fa2572
hgweb: add template filters, template style maps, and raw pages
mpm@selenic.com
parents:
168
diff
changeset
|
2 <title>#repo|escape#:#file#</title> |
142 | 3 </head> |
138 | 4 <body> |
5 | |
154
1d5f799ebe1e
fixed problem with head/body tags, added dtd, fixed table attributes
jake@edge2.net
parents:
153
diff
changeset
|
6 <div class="buttons"> |
153
e8a360cd5a9f
changed pos to rev for changelog cmd, changed & to ;
jake@edge2.net
parents:
142
diff
changeset
|
7 <a href="?cmd=changelog;rev=#rev#">changelog</a> |
168 | 8 <a href="?cmd=tags">tags</a> |
153
e8a360cd5a9f
changed pos to rev for changelog cmd, changed & to ;
jake@edge2.net
parents:
142
diff
changeset
|
9 <a href="?cmd=changeset;node=#node#">changeset</a> |
e8a360cd5a9f
changed pos to rev for changelog cmd, changed & to ;
jake@edge2.net
parents:
142
diff
changeset
|
10 <a href="?cmd=manifest;manifest=#manifest#;path=#path#">manifest</a> |
e8a360cd5a9f
changed pos to rev for changelog cmd, changed & to ;
jake@edge2.net
parents:
142
diff
changeset
|
11 <a href="?cmd=filelog;file=#file#;filenode=#filenode#">revisions</a> |
e8a360cd5a9f
changed pos to rev for changelog cmd, changed & to ;
jake@edge2.net
parents:
142
diff
changeset
|
12 <a href="?cmd=annotate;file=#file#;filenode=#filenode#">annotate</a> |
201
f918a6fa2572
hgweb: add template filters, template style maps, and raw pages
mpm@selenic.com
parents:
168
diff
changeset
|
13 <a href="?cmd=file;file=#file#;filenode=#filenode#;style=raw">raw</a> |
142 | 14 </div> |
138 | 15 |
16 <h2>#file# (revision #filenode#)</h2> | |
17 | |
18 <table> | |
19 <tr> | |
167 | 20 <td class="metatag">changeset #rev#:</td> |
21 <td><a href="?cmd=changeset;node=#node#">#node#</a></td></tr> | |
142 | 22 #parent1# |
23 #parent2# | |
138 | 24 <tr> |
154
1d5f799ebe1e
fixed problem with head/body tags, added dtd, fixed table attributes
jake@edge2.net
parents:
153
diff
changeset
|
25 <td class="metatag">manifest:</td> |
167 | 26 <td><a href="?cmd=manifest;manifest=#manifest#;path=/">#manifest#</a></td></tr> |
138 | 27 <tr> |
154
1d5f799ebe1e
fixed problem with head/body tags, added dtd, fixed table attributes
jake@edge2.net
parents:
153
diff
changeset
|
28 <td class="metatag">author:</td> |
201
f918a6fa2572
hgweb: add template filters, template style maps, and raw pages
mpm@selenic.com
parents:
168
diff
changeset
|
29 <td>#author|obfuscate#</td></tr> |
138 | 30 <tr> |
154
1d5f799ebe1e
fixed problem with head/body tags, added dtd, fixed table attributes
jake@edge2.net
parents:
153
diff
changeset
|
31 <td class="metatag">date:</td> |
201
f918a6fa2572
hgweb: add template filters, template style maps, and raw pages
mpm@selenic.com
parents:
168
diff
changeset
|
32 <td>#date|date# (#date|age# ago)</td></tr> |
138 | 33 </table> |
34 | |
35 <pre> | |
36 #text# | |
37 </pre> | |
38 | |
142 | 39 #footer# |