##// END OF EJS Templates
hgwebdir: refresh configuration periodically...
hgwebdir: refresh configuration periodically The old default behaviour of hgwebdir was to maintain a list of repositories permanently. This interacted badly with persistent application hosting software such as WSGI containers. If a new repository was published, it would potentially never appear in the top-level list of repositories. This change causes the hgwebdir configuration and list of repositories served to be refreshed periodically (at most every 20 seconds).

File last commit:

r7909:179fac5c default
r8371:1bd0fdf4 default
Show More
index.tmpl
26 lines | 674 B | application/x-cheetah | CheetahLexer
Dirkjan Ochtman
coal/paper: move actual templates from coal to paper
r7411 {header}
<title>Mercurial repositories index</title>
</head>
<body>
<div class="container">
<div class="menu">
<a href="http://www.selenic.com/mercurial/">
Rocco Rutte
coal/paper: Turn <img> into <img/> where missing
r7909 <img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial" /></a>
Dirkjan Ochtman
coal/paper: move actual templates from coal to paper
r7411 </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>
<th><a href="?sort={sort_lastchange}">Last change</a></th>
<th>&nbsp;</th>
</tr>
{entries%indexentry}
</table>
</div>
</div>
{footer}