Mercurial > hg
annotate templates/changeset.tmpl @ 1383:3d6d45faf8b2
hg verify: add an error reporting helper function
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 05 Oct 2005 10:51:02 -0700 |
parents | 710079d2a821 |
children | 17703aa4491e |
rev | line source |
---|---|
142 | 1 #header# |
375 | 2 <title>#repo|escape#: changeset #node|short#</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> |
138 | 9 <a href="?cmd=manifest;manifest=#manifest#;path=/">manifest</a> |
201
f918a6fa2572
hgweb: add template filters, template style maps, and raw pages
mpm@selenic.com
parents:
172
diff
changeset
|
10 <a href="?cmd=changeset;node=#node#;style=raw">raw</a> |
1078 | 11 #archives%archiveentry# |
142 | 12 </div> |
138 | 13 |
201
f918a6fa2572
hgweb: add template filters, template style maps, and raw pages
mpm@selenic.com
parents:
172
diff
changeset
|
14 <h2>changeset: #desc|escape|firstline#</h2> |
138 | 15 |
602 | 16 <table id="changesetEntry"> |
138 | 17 <tr> |
602 | 18 <th class="changeset">changeset #rev#:</th> |
19 <td class="changeset"><a href="?cmd=changeset;node=#node#">#node|short#</a></td> | |
20 </tr> | |
570
2ee819a950aa
[PATCH 2/5]: cleaning the template parent management in hgweb
mpm@selenic.com
parents:
568
diff
changeset
|
21 #parent# |
568 | 22 #changesettag# |
138 | 23 <tr> |
602 | 24 <th class="author">author:</th> |
25 <td class="author">#author|obfuscate#</td> | |
26 </tr> | |
138 | 27 <tr> |
602 | 28 <th class="date">date:</th> |
29 <td class="date">#date|date# (#date|age# ago)</td></tr> | |
138 | 30 <tr> |
602 | 31 <th class="files">files:</th> |
32 <td class="files">#files#</td></tr> | |
138 | 33 <tr> |
602 | 34 <th class="description">description:</th> |
35 <td class="description">#desc|escape|addbreaks#</td> | |
36 </tr> | |
138 | 37 </table> |
38 | |
672
dbe0ce2ae196
More IE friendly diff output related templates.
Edouard Gomez <ed.gomez@free.fr>
parents:
602
diff
changeset
|
39 <div id="changesetDiff"> |
138 | 40 #diff# |
602 | 41 </div> |
138 | 42 |
43 </body> | |
602 | 44 </html> |
138 | 45 |
46 |