##// END OF EJS Templates
import: add --bypass option...
import: add --bypass option This feature is more a way to test patching without a working directory than something people asked about. Adding a --rev option to specify the parent patch revision would make it a little more useful. What this change introduces is patch.repobackend class which let patches be applied against repository revisions. The caller must supply a filestore object to receive patched content, which can be turned into a memctx with patch.makememctx() helper.

File last commit:

r13964:616ad3f6 default
r14611:adbf5e7d default
Show More
index.tmpl
26 lines | 652 B | application/x-cheetah | CheetahLexer
Dan Villiom Podlaski Christiansen
setup: install translation files as package data...
r9999 {header}
<title>Mercurial repositories index</title>
</head>
<body>
<div class="container">
<div class="menu">
Steven Stallion
hgweb: support alternate logo url...
r13964 <a href="{logourl}">
Dan Villiom Podlaski Christiansen
setup: install translation files as package data...
r9999 <img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial" /></a>
</div>
<div class="main">
<h2>Mercurial Repositories</h2>
<table class="bigtable">
<tr>
<th><a href="?sort={sort_name}">Name</a></th>
<th><a href="?sort={sort_description}">Description</a></th>
<th><a href="?sort={sort_contact}">Contact</a></th>
Dan Villiom Podlaski Christiansen
templates: rename `Last change' column in hgwebdir repository list....
r10301 <th><a href="?sort={sort_lastchange}">Last modified</a></th>
Dan Villiom Podlaski Christiansen
setup: install translation files as package data...
r9999 <th>&nbsp;</th>
</tr>
{entries%indexentry}
</table>
</div>
</div>
{footer}