##// END OF EJS Templates
Added raw view for file annotate in hgweb.
Thomas Arendsen Hein -
r1694:03cb6bf4 default
parent child Browse files
Show More
@@ -0,0 +1,5 b''
1 #header#
2 #annotate%annotateline#
3 #footer#
4
5
@@ -1,44 +1,44 b''
1 1 #header#
2 2 <title>#repo|escape#: Annotate</title>
3 3 <link rel="alternate" type="application/rss+xml"
4 4 href="?cmd=changelog;style=rss" title="RSS feed for #repo|escape#">
5 5 </head>
6 6 <body>
7 7
8 8 <div class="page_header">
9 9 <a href="http://www.selenic.com/mercurial/" title="Mercurial"><div style="float:right;">Mercurial</div></a><a href="?cmd=summary;style=gitweb">#repo|escape#</a> / annotate
10 10 </div>
11 11
12 12 <div class="page_nav">
13 <a href="?cmd=summary;style=gitweb">summary</a> | <a href="?cmd=changelog;style=gitweb">changelog</a> | <a href="?cmd=tags;style=gitweb">tags</a> | <a href="?cmd=manifest;manifest=#manifest#;path=#path|urlescape#;style=gitweb">manifest</a> | <a href="?cmd=changeset;node=#node#;style=gitweb">changeset</a> | <a href="?cmd=file;file=#file|urlescape#;filenode=#filenode#;style=gitweb">file</a> | <a href="?cmd=filelog;file=#file|urlescape#;filenode=#filenode#;style=gitweb">revisions</a> | annotate<br/>
13 <a href="?cmd=summary;style=gitweb">summary</a> | <a href="?cmd=changelog;style=gitweb">changelog</a> | <a href="?cmd=tags;style=gitweb">tags</a> | <a href="?cmd=manifest;manifest=#manifest#;path=#path|urlescape#;style=gitweb">manifest</a> | <a href="?cmd=changeset;node=#node#;style=gitweb">changeset</a> | <a href="?cmd=file;file=#file|urlescape#;filenode=#filenode#;style=gitweb">file</a> | <a href="?cmd=filelog;file=#file|urlescape#;filenode=#filenode#;style=gitweb">revisions</a> | annotate | <a href="?cmd=annotate;file=#file|urlescape#;filenode=#filenode#;style=raw">raw</a><br/>
14 14 </div>
15 15
16 16 <div class="title">#file|escape#</div>
17 17
18 18 <table>
19 19 <tr>
20 20 <td class="metatag">changeset #rev#:</td>
21 21 <td><a href="?cs=#node|short#;style=gitweb">#node|short#</a></td></tr>
22 22 #parent%fileannotateparent#
23 23 #child%fileannotatechild#
24 24 <tr>
25 25 <td class="metatag">manifest:</td>
26 26 <td><a href="?mf=#manifest|short#;path=/;style=gitweb">#manifest|short#</a></td></tr>
27 27 <tr>
28 28 <td class="metatag">author:</td>
29 29 <td>#author|obfuscate#</td></tr>
30 30 <tr>
31 31 <td class="metatag">date:</td>
32 32 <td>#date|date# (#date|age# ago)</td></tr>
33 33 <tr>
34 34 <td class="metatag">permissions:</td>
35 35 <td>#permissions|permissions#</td></tr>
36 36 </table>
37 37
38 38 <div class="page_body">
39 39 <table>
40 40 #annotate%annotateline#
41 41 </table>
42 42 </div>
43 43
44 44 #footer#
@@ -1,41 +1,42 b''
1 1 #header#
2 2 <title>#repo|escape#: #file|escape# annotate</title>
3 3 </head>
4 4 <body>
5 5
6 6 <div class="buttons">
7 7 <a href="?cl=#rev#">changelog</a>
8 8 <a href="?tags=">tags</a>
9 9 <a href="?cs=#node|short#">changeset</a>
10 10 <a href="?mf=#manifest|short#;path=#path|urlescape#">manifest</a>
11 11 <a href="?f=#filenode|short#;file=#file|urlescape#">file</a>
12 12 <a href="?fl=#filenode|short#;file=#file|urlescape#">revisions</a>
13 <a href="?fa=#filenode|short#;file=#file|urlescape#;style=raw">raw</a>
13 14 </div>
14 15
15 16 <h2>Annotate #file|escape#</h2>
16 17
17 18 <table>
18 19 <tr>
19 20 <td class="metatag">changeset #rev#:</td>
20 21 <td><a href="?cs=#node|short#">#node|short#</a></td></tr>
21 22 #rename%filerename#
22 23 #parent%fileannotateparent#
23 24 #child%fileannotatechild#
24 25 <tr>
25 26 <td class="metatag">author:</td>
26 27 <td>#author|obfuscate#</td></tr>
27 28 <tr>
28 29 <td class="metatag">date:</td>
29 30 <td>#date|date# (#date|age# ago)</td></tr>
30 31 <tr>
31 32 <td class="metatag">permissions:</td>
32 33 <td>#permissions|permissions#</td></tr>
33 34 </table>
34 35
35 36 <br/>
36 37
37 38 <table cellspacing="0" cellpadding="0">
38 39 #annotate%annotateline#
39 40 </table>
40 41
41 42 #footer#
@@ -1,14 +1,16 b''
1 1 header = header-raw.tmpl
2 2 footer = ""
3 3 changeset = changeset-raw.tmpl
4 4 difflineplus = "#line#"
5 5 difflineminus = "#line#"
6 6 difflineat = "#line#"
7 7 diffline = "#line#"
8 8 changesetparent = "# parent: #node#"
9 9 changesetchild = "# child: #node#"
10 10 filenodelink = ""
11 11 filerevision = filerevision-raw.tmpl
12 12 fileline = "#line#"
13 13 diffblock = "#lines#"
14 14 filediff = filediff-raw.tmpl
15 fileannotate = fileannotate-raw.tmpl
16 annotateline = "#author#@#rev#: #line#"
General Comments 0
You need to be logged in to leave comments. Login now