##// END OF EJS Templates
[hgweb] Added rename information to gitweb templates & misc cleanups...
Josef "Jeff" Sipek -
r1668:586b5029 default
parent child Browse files
Show More
@@ -19,6 +19,7 b''
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 #rename%filerename#
22 23 #parent%fileannotateparent#
23 24 #child%fileannotatechild#
24 25 <tr>
@@ -1,12 +1,12 b''
1 1 #header#
2 <title>#repo|escape#: Manifest</title>
2 <title>#repo|escape#: File revisions</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 <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> / manifest
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> / file revisions
10 10 </div>
11 11
12 12 <div class="page_nav">
@@ -19,6 +19,7 b''
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 #rename%filerename#
22 23 #parent%fileannotateparent#
23 24 #child%fileannotatechild#
24 25 <tr>
@@ -20,7 +20,6 b' filerevision = filerevision-gitweb.tmpl'
20 20 fileannotate = fileannotate-gitweb.tmpl
21 21 filelog = filelog-gitweb.tmpl
22 22 fileline = "<div style="font-family:monospace; white-space: pre;" class="parity#parity#"><span class="linenr"> #linenumber#</span> #line|escape#</div>"
23 filelogentry = filelogentry-gitweb.tmpl
24 23 annotateline = "<tr style="font-family:monospace; white-space: pre;" class="parity#parity#"><td class="linenr" style="text-align: right;"><a href="?cs=#node|short#;style=gitweb">#author|obfuscate#@#rev#</a></td><td>#line|escape#</td></tr>"
25 24 difflineplus = "<div class="pre" style="color:#008800;">#line|escape#</div>"
26 25 difflineminus = "<div class="pre" style="color:#cc0000;">#line|escape#</div>"
@@ -29,6 +28,8 b' diffline = "<div class="pre">#line|escap'
29 28 changelogparent = "<tr><th class="parent">parent #rev#:</th><td class="parent"><a href="?cmd=changeset;node=#node#;style=gitweb">#node|short#</a></td></tr>"
30 29 changesetparent = "<tr><td>parent</td><td style="font-family:monospace"><a class="list" href="?cmd=changeset;node=#node|short#;style=gitweb">#node|short#</a></td></tr>"
31 30 filerevparent = "<tr><td class="metatag">parent:</td><td><a href="?cmd=file;file=#file|urlescape#;filenode=#node#;style=gitweb">#node|short#</a></td></tr>"
31 filerename = "<tr><td class="metatag">parent:</td><td><a href="?f=#node|short#;file=#file|urlescape#;style=gitweb">#file|escape#@#node|short#</a></td></tr>"
32 filelogrename = "| <a href="?f=#node|short#;file=#file|urlescape#;style=gitweb">base</a>"
32 33 fileannotateparent = "<tr><td class="metatag">parent:</td><td><a href="?cmd=annotate;file=#file|urlescape#;filenode=#node#;style=gitweb">#node|short#</a></td></tr>"
33 34 changelogchild = "<tr><th class="child">child #rev#:</th><td class="child"><a href="?cmd=changeset;node=#node#;style=gitweb">#node|short#</a></td></tr>"
34 35 changesetchild = "<tr><td>child</td><td style="font-family:monospace"><a class="list" href="?cmd=changeset;node=#node|short#;style=gitweb">#node|short#</a></td></tr>"
@@ -45,5 +46,5 b' filediffchild = "<tr><th class="child">c'
45 46 filelogchild = "<tr><td align="right">child #rev#:&nbsp;</td><td><a href="?cmd=file;file=#file|urlescape#;filenode=#node#;style=gitweb">#node|short#</a></td></tr>"
46 47 shortlog = shortlog-gitweb.tmpl
47 48 shortlogentry = "<tr class="parity#parity#"><td><i>#date|age# ago</i></td><td><a class="list" href="?cmd=changeset;node=#node|short#;style=gitweb"><b>#desc|firstline|escape#</b></a></td><td class="link"><a href="?cmd=changeset;node=#node|short#;style=gitweb">changeset</a> | <a href="?cmd=manifest;manifest=#manifest|short#;path=/;style=gitweb">manifest</a></td></tr>"
48 filelogentry = "<tr class="parity#parity#"><td><i>#date|age# ago</i></td><td><a class="list" href="?cmd=changeset;node=#node|short#;style=gitweb"><b>#desc|firstline|escape#</b></a></td><td class="link"><!-- FIXME: <a href="?fd=#node|short#;file=#file|urlescape#;style=gitweb">diff</a> | --> <a href="?fa=#filenode|short#;file=#file|urlescape#;style=gitweb">annotate</a></td></tr>"
49 filelogentry = "<tr class="parity#parity#"><td><i>#date|age# ago</i></td><td><a class="list" href="?cmd=changeset;node=#node|short#;style=gitweb"><b>#desc|firstline|escape#</b></a></td><td class="link"><!-- FIXME: <a href="?fd=#node|short#;file=#file|urlescape#;style=gitweb">diff</a> | --> <a href="?fa=#filenode|short#;file=#file|urlescape#;style=gitweb">annotate</a> #rename%filelogrename#</td></tr>"
49 50 archiveentry = " | <a href="?ca=#node|short#;type=#type|urlescape#">#type|escape#</a> "
General Comments 0
You need to be logged in to leave comments. Login now