##// END OF EJS Templates
inotify: server raising an error when removing a file (issue1371)...
inotify: server raising an error when removing a file (issue1371) When a file is deleted via hg rm <file> the dirstate marks the file with a status of 'r'. The physical file has been deleted, but the inotify server tries to do a stat on the file after it's been removed. Patch catches the exception and correctly call updatestatus()

File last commit:

r6905:248e54a9 default
r7302:97273725 default
Show More
index.tmpl
26 lines | 672 B | application/x-cheetah | CheetahLexer
Matt Mackall
templates: add coal web theme
r6436 {header}
<title>Mercurial repositories index</title>
</head>
<body>
Brendan Cully
Improve hgwebdir index in coal and paper styles
r6730 <div class="container">
<div class="menu">
<a href="http://www.selenic.com/mercurial/">
<img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a>
</div>
<div class="main">
Matt Mackall
templates: add coal web theme
r6436 <h2>Mercurial Repositories</h2>
Brendan Cully
Improve hgwebdir index in coal and paper styles
r6730 <table class="bigtable">
Matt Mackall
templates: add coal web theme
r6436 <tr>
Brendan Cully
Improve hgwebdir index in coal and paper styles
r6730 <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>
Rocco Rutte
coal/paper: make output well-formed and fix css syntax error breaking rendering
r6905 </tr>
Matt Mackall
templates: add coal web theme
r6436 {entries%indexentry}
</table>
Brendan Cully
Improve hgwebdir index in coal and paper styles
r6730 </div>
</div>
Matt Mackall
templates: add coal web theme
r6436 {footer}