##// 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:

r8353:6058d291 default
r8371:1bd0fdf4 default
Show More
tags.tmpl
45 lines | 1.2 KiB | application/x-cheetah | CheetahLexer
Dirkjan Ochtman
coal/paper: move actual templates from coal to paper
r7411 {header}
<title>{repo|escape}: tags</title>
<link rel="alternate" type="application/atom+xml"
Benoit Allard
coal/paper: switch to XHTML 1.1
r7725 href="{url}atom-tags" title="Atom feed for {repo|escape}: tags" />
Dirkjan Ochtman
coal/paper: move actual templates from coal to paper
r7411 <link rel="alternate" type="application/rss+xml"
Benoit Allard
coal/paper: switch to XHTML 1.1
r7725 href="{url}rss-tags" title="RSS feed for {repo|escape}: tags" />
Dirkjan Ochtman
coal/paper: move actual templates from coal to paper
r7411 </head>
<body>
<div class="container">
<div class="menu">
<div class="logo">
<a href="http://www.selenic.com/mercurial/">
Benoit Allard
coal/paper: switch to XHTML 1.1
r7725 <img src="{staticurl}hglogo.png" alt="mercurial" /></a>
Dirkjan Ochtman
coal/paper: move actual templates from coal to paper
r7411 </div>
<ul>
<li><a href="{url}shortlog{sessionvars%urlparameter}">log</a></li>
<li><a href="{url}graph{sessionvars%urlparameter}">graph</a></li>
<li class="active">tags</li>
Sune Foldager
paper/coal: add branches page
r8353 <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li>
Dirkjan Ochtman
coal/paper: move actual templates from coal to paper
r7411 </ul>
</div>
<div class="main">
<h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a></h2>
<h3>tags</h3>
<form class="search" action="{url}log">
{sessionvars%hiddenformentry}
Benoit Allard
coal/paper: switch to XHTML 1.1
r7725 <p><input name="rev" id="search1" type="text" size="30" /></p>
<div id="hint">find changesets by author, revision,
files, or words in the commit message</div>
Dirkjan Ochtman
coal/paper: move actual templates from coal to paper
r7411 </form>
<table class="bigtable">
<tr>
<th>tag</th>
<th>node</th>
</tr>
{entries%tagentry}
</table>
</div>
</div>
{footer}