Mercurial > hg
annotate templates/filediff.tmpl @ 1242:4a6efec8b698
Fix hg cat when the file cannot be found in the specified revision
author | Mikael Berthe <mikael@lilotux.net> |
---|---|
date | Wed, 14 Sep 2005 12:35:10 -0500 |
parents | dbe0ce2ae196 |
children | 17703aa4491e |
rev | line source |
---|---|
142 | 1 #header# |
201
f918a6fa2572
hgweb: add template filters, template style maps, and raw pages
mpm@selenic.com
parents:
172
diff
changeset
|
2 <title>#repo|escape#: #file# diff</title> |
142 | 3 </head> |
4 <body> | |
138 | 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=file;file=#file#;filenode=#filenode#">file</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:
172
diff
changeset
|
13 <a href="?cmd=filediff;file=#file#;node=#node#;style=raw">raw</a> |
142 | 14 </div> |
138 | 15 |
16 <h2>#file#</h2> | |
17 | |
602 | 18 <table id="filediffEntry"> |
138 | 19 <tr> |
602 | 20 <th class="revision">revision #rev#:</th> |
21 <td class="revision"><a href="?cmd=changeset;node=#node#">#node|short#</a></td> | |
22 </tr> | |
571
c7364b985ca2
[PATCH 3/5]: cleaning the template parent management in hgweb
mpm@selenic.com
parents:
377
diff
changeset
|
23 #parent# |
138 | 24 </table> |
25 | |
672
dbe0ce2ae196
More IE friendly diff output related templates.
Edouard Gomez <ed.gomez@free.fr>
parents:
602
diff
changeset
|
26 <div id="fileDiff"> |
138 | 27 #diff# |
602 | 28 </div> |
138 | 29 |
142 | 30 #footer# |
138 | 31 |
32 |