##// END OF EJS Templates
coal/paper: display tags and branch in filelog page
coal/paper: display tags and branch in filelog page

File last commit:

r7394:03b60f2f default
r7409:0fa3b667 default
Show More
changeset.tmpl
70 lines | 1.7 KiB | application/x-cheetah | CheetahLexer
Matt Mackall
templates: add coal web theme
r6436 {header}
<title>{repo|escape}: {node|short}</title>
</head>
<body>
Matt Mackall
coal: more tweaking...
r6453 <div class="container">
Matt Mackall
templates: add coal web theme
r6436 <div class="menu">
<div class="logo">
<a href="http://www.selenic.com/mercurial/">
<img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a>
</div>
<ul>
Brendan Cully
coal: include current node in log, graph menu links
r6775 <li><a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">log</a></li>
<li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li>
Matt Mackall
templates: add coal web theme
r6436 <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li>
</ul>
<ul>
<li class="active">changeset</li>
Rocco Rutte
coal/paper: Add link to raw changeset as other styles have it, too
r6946 <li><a href="{url}raw-rev/{node|short}{sessionvars%urlparameter}">raw</a></li>
Matt Mackall
templates: add coal web theme
r6436 <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">browse</a></li>
</ul>
<ul>
Rocco Rutte
coal/paper: make output well-formed and fix css syntax error breaking rendering
r6905 {archives%archiveentry}
Matt Mackall
templates: add coal web theme
r6436 </ul>
</div>
<div class="main">
Thomas Arendsen Hein
Keep sessionvars with repository links added in a0843c82d1a2...
r7331 <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a></h2>
Matt Mackall
coal: more tweaks...
r6452 <h3>changeset {rev}:{node|short} {changesettag}</h3>
Matt Mackall
templates: add coal web theme
r6436
<form class="search" action="{url}log">
{sessionvars%hiddenformentry}
<p><input name="rev" id="search1" type="text" size="30"></p>
Thomas Arendsen Hein
Kill trailing whitespace in templates
r7327 <span>find changesets by author, revision,
Benoit Allard
coal/paper: show a search tip when hovering over search box...
r7299 files, or words in the commit message</span>
Matt Mackall
templates: add coal web theme
r6436 </form>
<div class="description">{desc|strip|escape|addbreaks}</div>
<table id="changesetEntry">
<tr>
<th class="author">author</th>
<td class="author">{author|obfuscate}</td>
</tr>
<tr>
<th class="date">date</th>
<td class="date">{date|date} ({date|age} ago)</td></tr>
<tr>
<th class="author">parents</th>
<td class="author">{parent%changesetparent}</td>
</tr>
<tr>
<th class="author">children</th>
<td class="author">{child%changesetchild}</td>
</tr>
<tr>
<th class="files">files</th>
Rocco Rutte
coal/paper: make output well-formed and fix css syntax error breaking rendering
r6905 <td class="files">{files}</td>
Matt Mackall
templates: add coal web theme
r6436 </tr>
</table>
<div class="overflow">
Brendan Cully
hgweb (coal/paper): make file, diff and annotate easier to render...
r7394 <div class="sourcefirst"> line diff</div>
Matt Mackall
templates: add coal web theme
r6436 {diff}
</div>
Rocco Rutte
coal/paper: make output well-formed and fix css syntax error breaking rendering
r6905
</div>
Matt Mackall
coal: more tweaking...
r6453 </div>
Matt Mackall
templates: add coal web theme
r6436 {footer}