hgweb: add help link to templates missed in ead4e21f49f1
authorAugie Fackler <durin42@gmail.com>
Sat, 09 Oct 2010 17:58:48 -0500
changeset 12680 d664547ef540
parent 12679 5ce3a1eb7f88
child 12681 bc13e17067d9
hgweb: add help link to templates missed in ead4e21f49f1
mercurial/templates/gitweb/fileannotate.tmpl
mercurial/templates/gitweb/filelog.tmpl
mercurial/templates/gitweb/filerevision.tmpl
mercurial/templates/gitweb/search.tmpl
mercurial/templates/monoblue/changeset.tmpl
mercurial/templates/monoblue/error.tmpl
mercurial/templates/monoblue/fileannotate.tmpl
mercurial/templates/monoblue/filediff.tmpl
mercurial/templates/monoblue/filelog.tmpl
mercurial/templates/monoblue/filerevision.tmpl
mercurial/templates/monoblue/notfound.tmpl
mercurial/templates/monoblue/search.tmpl
mercurial/templates/paper/error.tmpl
mercurial/templates/paper/fileannotate.tmpl
mercurial/templates/paper/filediff.tmpl
mercurial/templates/paper/filelog.tmpl
mercurial/templates/paper/filerevision.tmpl
mercurial/templates/paper/help.tmpl
mercurial/templates/paper/helptopics.tmpl
mercurial/templates/paper/manifest.tmpl
mercurial/templates/paper/search.tmpl
mercurial/templates/spartan/changelog.tmpl
mercurial/templates/spartan/changeset.tmpl
mercurial/templates/spartan/fileannotate.tmpl
mercurial/templates/spartan/filediff.tmpl
mercurial/templates/spartan/filelog.tmpl
mercurial/templates/spartan/filerevision.tmpl
mercurial/templates/spartan/graph.tmpl
mercurial/templates/spartan/manifest.tmpl
mercurial/templates/spartan/search.tmpl
mercurial/templates/spartan/shortlog.tmpl
mercurial/templates/spartan/tags.tmpl
tests/test-hgweb-commands.t
tests/test-hgweb-descend-empties.t
tests/test-hgweb-diffs.t
tests/test-hgweb-empty.t
tests/test-hgweb-filelog.t
tests/test-hgweb-removed.t
tests/test-hgweb.t
tests/test-highlight.t
--- a/mercurial/templates/gitweb/fileannotate.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/gitweb/fileannotate.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -25,7 +25,9 @@
 <a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">revisions</a> |
 annotate |
 <a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">diff</a> |
-<a href="{url}raw-annotate/{node|short}/{file|urlescape}">raw</a><br/>
+<a href="{url}raw-annotate/{node|short}/{file|urlescape}">raw</a> |
+<a href="{url}help{sessionvars%urlparameter}">help</a>
+<br/>
 </div>
 
 <div class="title">{file|escape}</div>
--- a/mercurial/templates/gitweb/filelog.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/gitweb/filelog.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -22,7 +22,8 @@
 revisions |
 <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">annotate</a> |
 <a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">diff</a> |
-<a href="{url}rss-log/{node|short}/{file|urlescape}">rss</a>
+<a href="{url}rss-log/{node|short}/{file|urlescape}">rss</a> |
+<a href="{url}help{sessionvars%urlparameter}">help</a>
 <br/>
 {nav%filenav}
 </div>
--- a/mercurial/templates/gitweb/filerevision.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/gitweb/filerevision.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -25,7 +25,9 @@
 <a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">revisions</a> |
 <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">annotate</a> |
 <a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">diff</a> |
-<a href="{url}raw-file/{node|short}/{file|urlescape}">raw</a><br/>
+<a href="{url}raw-file/{node|short}/{file|urlescape}">raw</a> |
+<a href="{url}help{sessionvars%urlparameter}">help</a>
+<br/>
 </div>
 
 <div class="title">{file|escape}</div>
--- a/mercurial/templates/gitweb/search.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/gitweb/search.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -26,6 +26,8 @@
 <a href="{url}tags{sessionvars%urlparameter}">tags</a> |
 <a href="{url}branches{sessionvars%urlparameter}">branches</a> |
 <a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a>{archives%archiveentry}
+ |
+ <a href="{url}help{sessionvars%urlparameter}">help</a>
 <br/>
 </div>
 
--- a/mercurial/templates/monoblue/changeset.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/monoblue/changeset.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -25,6 +25,7 @@
             <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li>
             <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li>
             <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a></li>
+            <li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
         </ul>
     </div>
 
--- a/mercurial/templates/monoblue/error.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/monoblue/error.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -25,6 +25,7 @@
             <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li>
             <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li>
             <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a></li>
+            <li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
         </ul>
     </div>
 
--- a/mercurial/templates/monoblue/fileannotate.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/monoblue/fileannotate.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -25,6 +25,7 @@
             <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li>
             <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li>
             <li><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">files</a></li>
+            <li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
         </ul>
     </div>
 
--- a/mercurial/templates/monoblue/filediff.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/monoblue/filediff.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -25,6 +25,7 @@
             <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li>
             <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li>
             <li><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">files</a></li>
+            <li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
         </ul>
     </div>
 
--- a/mercurial/templates/monoblue/filelog.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/monoblue/filelog.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -25,6 +25,7 @@
             <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li>
             <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li>
             <li><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">files</a></li>
+            <li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
         </ul>
     </div>
 
--- a/mercurial/templates/monoblue/filerevision.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/monoblue/filerevision.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -25,6 +25,7 @@
             <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li>
             <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li>
             <li><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">files</a></li>
+            <li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
         </ul>
     </div>
 
--- a/mercurial/templates/monoblue/notfound.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/monoblue/notfound.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -25,6 +25,7 @@
             <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li>
             <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li>
             <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a>{archives%archiveentry}</li>
+            <li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
         </ul>
     </div>
 
--- a/mercurial/templates/monoblue/search.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/monoblue/search.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -25,6 +25,7 @@
             <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li>
             <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li>
             <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a>{archives%archiveentry}
+            <li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
         </ul>
     </div>
 
--- a/mercurial/templates/paper/error.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/paper/error.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -14,6 +14,7 @@
 <li><a href="{url}graph{sessionvars%urlparameter}">graph</a></li>
 <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li>
 <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li>
+<li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
 </ul>
 </div>
 
--- a/mercurial/templates/paper/fileannotate.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/paper/fileannotate.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -28,6 +28,9 @@
 <li><a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file log</a></li>
 <li><a href="{url}raw-annotate/{node|short}/{file|urlescape}">raw</a></li>
 </ul>
+<ul>
+<li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
+</ul>
 </div>
 
 <div class="main">
--- a/mercurial/templates/paper/filediff.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/paper/filediff.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -27,6 +27,9 @@
 <li><a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file log</a></li>
 <li><a href="{url}raw-file/{node|short}/{file|urlescape}">raw</a></li>
 </ul>
+<ul>
+<li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
+</ul>
 </div>
 
 <div class="main">
--- a/mercurial/templates/paper/filelog.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/paper/filelog.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -30,6 +30,9 @@
 <li class="active">file log</li>
 <li><a href="{url}raw-file/{node|short}/{file|urlescape}">raw</a></li>
 </ul>
+<ul>
+<li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
+</ul>
 </div>
 
 <div class="main">
--- a/mercurial/templates/paper/filerevision.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/paper/filerevision.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -27,6 +27,9 @@
 <li><a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file log</a></li>
 <li><a href="{url}raw-file/{node|short}/{file|urlescape}">raw</a></li>
 </ul>
+<ul>
+<li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
+</ul>
 </div>
 
 <div class="main">
--- a/mercurial/templates/paper/help.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/paper/help.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -18,6 +18,7 @@
 <li><a href="{url}graph{sessionvars%urlparameter}">graph</a></li>
 <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li>
 <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li>
+<li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
 </ul>
 <ul>
  <li class="active">help</li>
--- a/mercurial/templates/paper/helptopics.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/paper/helptopics.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -18,6 +18,7 @@
 <li><a href="{url}graph{sessionvars%urlparameter}">graph</a></li>
 <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li>
 <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li>
+<li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
 </ul>
 <ul>
 <li class="active">help</li>
--- a/mercurial/templates/paper/manifest.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/paper/manifest.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -25,6 +25,9 @@
 <ul>
  <li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
 </ul>
+<ul>
+<li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
+</ul>
 </div>
 
 <div class="main">
--- a/mercurial/templates/paper/search.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/paper/search.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -14,6 +14,7 @@
 <li><a href="{url}graph{sessionvars%urlparameter}">graph</a></li>
 <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li>
 <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li>
+<li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
 </ul>
 </div>
 
--- a/mercurial/templates/spartan/changelog.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/spartan/changelog.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -14,6 +14,7 @@
 <a href="{url}branches{sessionvars%urlparameter}">branches</a>
 <a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a>
 {archives%archiveentry}
+<a href="{url}help{sessionvars%urlparameter}">help</a>
 <a type="application/rss+xml" href="{url}rss-log">rss</a>
 <a type="application/atom+xml" href="{url}atom-log" title="Atom feed for {repo|escape}">atom</a>
 </div>
--- a/mercurial/templates/spartan/changeset.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/spartan/changeset.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -12,6 +12,7 @@
 <a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a>
 <a href="{url}raw-rev/{node|short}">raw</a>
 {archives%archiveentry}
+<a href="{url}help{sessionvars%urlparameter}">help</a>
 </div>
 
 <h2>changeset: {desc|strip|escape|firstline|nonempty}</h2>
--- a/mercurial/templates/spartan/fileannotate.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/spartan/fileannotate.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -14,6 +14,7 @@
 <a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file</a>
 <a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">revisions</a>
 <a href="{url}raw-annotate/{node|short}/{file|urlescape}">raw</a>
+<a href="{url}help{sessionvars%urlparameter}">help</a>
 </div>
 
 <h2>Annotate {file|escape}</h2>
--- a/mercurial/templates/spartan/filediff.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/spartan/filediff.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -14,6 +14,7 @@
 <a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">revisions</a>
 <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">annotate</a>
 <a href="{url}raw-diff/{node|short}/{file|urlescape}">raw</a>
+<a href="{url}help{sessionvars%urlparameter}">help</a>
 </div>
 
 <h2>{file|escape}</h2>
--- a/mercurial/templates/spartan/filelog.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/spartan/filelog.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -15,6 +15,7 @@
 <a href="{url}branches{sessionvars%urlparameter}">branches</a>
 <a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file</a>
 <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">annotate</a>
+<a href="{url}help{sessionvars%urlparameter}">help</a>
 <a type="application/rss+xml" href="{url}rss-log/tip/{file|urlescape}">rss</a>
 <a type="application/atom+xml" href="{url}atom-log/tip/{file|urlescape}" title="Atom feed for {repo|escape}:{file}">atom</a>
 </div>
--- a/mercurial/templates/spartan/filerevision.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/spartan/filerevision.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -14,6 +14,7 @@
 <a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">revisions</a>
 <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">annotate</a>
 <a href="{url}raw-file/{node|short}/{file|urlescape}">raw</a>
+<a href="{url}help{sessionvars%urlparameter}">help</a>
 </div>
 
 <h2>{file|escape}</h2>
--- a/mercurial/templates/spartan/graph.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/spartan/graph.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -14,6 +14,7 @@
 <a href="{url}tags{sessionvars%urlparameter}">tags</a>
 <a href="{url}branches{sessionvars%urlparameter}">branches</a>
 <a href="{url}file/{node|short}/{sessionvars%urlparameter}">files</a>
+<a href="{url}help{sessionvars%urlparameter}">help</a>
 </div>
 
 <h2>graph</h2>
--- a/mercurial/templates/spartan/manifest.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/spartan/manifest.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -11,6 +11,7 @@
 <a href="{url}branches{sessionvars%urlparameter}">branches</a>
 <a href="{url}rev/{node|short}{sessionvars%urlparameter}">changeset</a>
 {archives%archiveentry}
+<a href="{url}help{sessionvars%urlparameter}">help</a>
 </div>
 
 <h2>files for changeset {node|short}: {path|escape}</h2>
--- a/mercurial/templates/spartan/search.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/spartan/search.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -11,6 +11,7 @@
 <a href="{url}branches{sessionvars%urlparameter}">branches</a>
 <a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a>
 {archives%archiveentry}
+<a href="{url}help{sessionvars%urlparameter}">help</a>
 </div>
 
 <h2>searching for {query|escape}</h2>
--- a/mercurial/templates/spartan/shortlog.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/spartan/shortlog.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -14,6 +14,7 @@
 <a href="{url}branches{sessionvars%urlparameter}">branches</a>
 <a href="{url}file/{node|short}/{sessionvars%urlparameter}">files</a>
 {archives%archiveentry}
+<a href="{url}help{sessionvars%urlparameter}">help</a>
 <a type="application/rss+xml" href="{url}rss-log">rss</a>
 <a type="application/rss+xml" href="{url}atom-log" title="Atom feed for {repo|escape}">atom</a>
 </div>
--- a/mercurial/templates/spartan/tags.tmpl	Sat Oct 09 17:58:54 2010 -0500
+++ b/mercurial/templates/spartan/tags.tmpl	Sat Oct 09 17:58:48 2010 -0500
@@ -13,6 +13,7 @@
 <a href="{url}graph{sessionvars%urlparameter}">graph</a>
 <a href="{url}branches{sessionvars%urlparameter}">branches</a>
 <a href="{url}file/{node|short}/{sessionvars%urlparameter}">files</a>
+<a href="{url}help{sessionvars%urlparameter}">help</a>
 <a type="application/rss+xml" href="{url}rss-tags">rss</a>
 <a type="application/atom+xml" href="{url}atom-tags">atom</a>
 </div>
--- a/tests/test-hgweb-commands.t	Sat Oct 09 17:58:54 2010 -0500
+++ b/tests/test-hgweb-commands.t	Sat Oct 09 17:58:48 2010 -0500
@@ -205,7 +205,6 @@
   <li><a href="/graph/1d22e65f027e">graph</a></li>
   <li><a href="/tags">tags</a></li>
   <li><a href="/branches">branches</a></li>
-  <li><a href="/help">help</a></li>
   </ul>
   <ul>
   <li><a href="/rev/1d22e65f027e">changeset</a></li>
@@ -298,7 +297,6 @@
    <li><a href="/graph/2ef0ac749a14">graph</a></li>
    <li><a href="/tags">tags</a></li>
    <li><a href="/branches">branches</a></li>
-   <li><a href="/help">help</a></li>
   </ul>
   <ul>
    <li class="active">changeset</li>
@@ -412,6 +410,7 @@
   <li><a href="/graph">graph</a></li>
   <li><a href="/tags">tags</a></li>
   <li><a href="/branches">branches</a></li>
+  <li><a href="/help">help</a></li>
   </ul>
   </div>
   
@@ -521,6 +520,9 @@
   <li><a href="/log/a4f92ed23982/foo">file log</a></li>
   <li><a href="/raw-file/a4f92ed23982/foo">raw</a></li>
   </ul>
+  <ul>
+  <li><a href="/help">help</a></li>
+  </ul>
   </div>
   
   <div class="main">
--- a/tests/test-hgweb-descend-empties.t	Sat Oct 09 17:58:54 2010 -0500
+++ b/tests/test-hgweb-descend-empties.t	Sat Oct 09 17:58:48 2010 -0500
@@ -52,7 +52,6 @@
   <li><a href="/graph/9087c84a0f5d">graph</a></li>
   <li><a href="/tags">tags</a></li>
   <li><a href="/branches">branches</a></li>
-  <li><a href="/help">help</a></li>
   </ul>
   <ul>
   <li><a href="/rev/9087c84a0f5d">changeset</a></li>
@@ -64,6 +63,9 @@
   <ul>
    <li><a href="/help">help</a></li>
   </ul>
+  <ul>
+  <li><a href="/help">help</a></li>
+  </ul>
   </div>
   
   <div class="main">
--- a/tests/test-hgweb-diffs.t	Sat Oct 09 17:58:54 2010 -0500
+++ b/tests/test-hgweb-diffs.t	Sat Oct 09 17:58:48 2010 -0500
@@ -44,7 +44,6 @@
    <li><a href="/graph/0cd96de13884">graph</a></li>
    <li><a href="/tags">tags</a></li>
    <li><a href="/branches">branches</a></li>
-   <li><a href="/help">help</a></li>
   </ul>
   <ul>
    <li class="active">changeset</li>
@@ -182,6 +181,9 @@
   <li><a href="/log/78e4ebad7cdf/a">file log</a></li>
   <li><a href="/raw-file/78e4ebad7cdf/a">raw</a></li>
   </ul>
+  <ul>
+  <li><a href="/help">help</a></li>
+  </ul>
   </div>
   
   <div class="main">
@@ -267,7 +269,6 @@
    <li><a href="/graph/0cd96de13884">graph</a></li>
    <li><a href="/tags">tags</a></li>
    <li><a href="/branches">branches</a></li>
-   <li><a href="/help">help</a></li>
   </ul>
   <ul>
    <li class="active">changeset</li>
@@ -409,6 +410,9 @@
   <li><a href="/log/78e4ebad7cdf/a">file log</a></li>
   <li><a href="/raw-file/78e4ebad7cdf/a">raw</a></li>
   </ul>
+  <ul>
+  <li><a href="/help">help</a></li>
+  </ul>
   </div>
   
   <div class="main">
--- a/tests/test-hgweb-empty.t	Sat Oct 09 17:58:54 2010 -0500
+++ b/tests/test-hgweb-empty.t	Sat Oct 09 17:58:48 2010 -0500
@@ -33,7 +33,6 @@
   <li><a href="/graph/000000000000">graph</a></li>
   <li><a href="/tags">tags</a></li>
   <li><a href="/branches">branches</a></li>
-  <li><a href="/help">help</a></li>
   </ul>
   <ul>
   <li><a href="/rev/000000000000">changeset</a></li>
@@ -116,7 +115,6 @@
   <li><a href="/graph/000000000000">graph</a></li>
   <li><a href="/tags">tags</a></li>
   <li><a href="/branches">branches</a></li>
-  <li><a href="/help">help</a></li>
   </ul>
   <ul>
   <li><a href="/rev/000000000000">changeset</a></li>
@@ -200,7 +198,6 @@
   <li class="active">graph</li>
   <li><a href="/tags">tags</a></li>
   <li><a href="/branches">branches</a></li>
-  <li><a href="/help">help</a></li>
   </ul>
   <ul>
   <li><a href="/rev/000000000000">changeset</a></li>
@@ -344,7 +341,6 @@
   <li><a href="/graph/000000000000">graph</a></li>
   <li><a href="/tags">tags</a></li>
   <li><a href="/branches">branches</a></li>
-  <li><a href="/help">help</a></li>
   </ul>
   <ul>
   <li><a href="/rev/000000000000">changeset</a></li>
@@ -356,6 +352,9 @@
   <ul>
    <li><a href="/help">help</a></li>
   </ul>
+  <ul>
+  <li><a href="/help">help</a></li>
+  </ul>
   </div>
   
   <div class="main">
--- a/tests/test-hgweb-filelog.t	Sat Oct 09 17:58:54 2010 -0500
+++ b/tests/test-hgweb-filelog.t	Sat Oct 09 17:58:48 2010 -0500
@@ -149,6 +149,9 @@
   <li class="active">file log</li>
   <li><a href="/raw-file/01de2d66a28d/a">raw</a></li>
   </ul>
+  <ul>
+  <li><a href="/help">help</a></li>
+  </ul>
   </div>
   
   <div class="main">
@@ -244,6 +247,9 @@
   <li class="active">file log</li>
   <li><a href="/raw-file/01de2d66a28d/a">raw</a></li>
   </ul>
+  <ul>
+  <li><a href="/help">help</a></li>
+  </ul>
   </div>
   
   <div class="main">
@@ -339,6 +345,9 @@
   <li class="active">file log</li>
   <li><a href="/raw-file/5ed941583260/a">raw</a></li>
   </ul>
+  <ul>
+  <li><a href="/help">help</a></li>
+  </ul>
   </div>
   
   <div class="main">
@@ -429,6 +438,9 @@
   <li class="active">file log</li>
   <li><a href="/raw-file/5ed941583260/a">raw</a></li>
   </ul>
+  <ul>
+  <li><a href="/help">help</a></li>
+  </ul>
   </div>
   
   <div class="main">
@@ -503,6 +515,7 @@
   <li><a href="/graph">graph</a></li>
   <li><a href="/tags">tags</a></li>
   <li><a href="/branches">branches</a></li>
+  <li><a href="/help">help</a></li>
   </ul>
   </div>
   
@@ -564,6 +577,7 @@
   <a href="/branches?style=spartan">branches</a>
   <a href="/file/b7682196df1c/c?style=spartan">file</a>
   <a href="/annotate/b7682196df1c/c?style=spartan">annotate</a>
+  <a href="/help?style=spartan">help</a>
   <a type="application/rss+xml" href="/rss-log/tip/c">rss</a>
   <a type="application/atom+xml" href="/atom-log/tip/c" title="Atom feed for test:c">atom</a>
   </div>
--- a/tests/test-hgweb-removed.t	Sat Oct 09 17:58:54 2010 -0500
+++ b/tests/test-hgweb-removed.t	Sat Oct 09 17:58:48 2010 -0500
@@ -39,7 +39,6 @@
    <li><a href="/graph/c78f6c5cbea9">graph</a></li>
    <li><a href="/tags">tags</a></li>
    <li><a href="/branches">branches</a></li>
-   <li><a href="/help">help</a></li>
   </ul>
   <ul>
    <li class="active">changeset</li>
@@ -148,6 +147,9 @@
   <li><a href="/log/c78f6c5cbea9/a">file log</a></li>
   <li><a href="/raw-file/c78f6c5cbea9/a">raw</a></li>
   </ul>
+  <ul>
+  <li><a href="/help">help</a></li>
+  </ul>
   </div>
   
   <div class="main">
--- a/tests/test-hgweb.t	Sat Oct 09 17:58:54 2010 -0500
+++ b/tests/test-hgweb.t	Sat Oct 09 17:58:48 2010 -0500
@@ -63,6 +63,7 @@
   <li><a href="/graph">graph</a></li>
   <li><a href="/tags">tags</a></li>
   <li><a href="/branches">branches</a></li>
+  <li><a href="/help">help</a></li>
   </ul>
   </div>
   
@@ -147,6 +148,7 @@
   <li><a href="/graph">graph</a></li>
   <li><a href="/tags">tags</a></li>
   <li><a href="/branches">branches</a></li>
+  <li><a href="/help">help</a></li>
   </ul>
   </div>
   
@@ -213,7 +215,6 @@
   <li><a href="/graph/2ef0ac749a14">graph</a></li>
   <li><a href="/tags">tags</a></li>
   <li><a href="/branches">branches</a></li>
-  <li><a href="/help">help</a></li>
   </ul>
   <ul>
   <li><a href="/rev/2ef0ac749a14">changeset</a></li>
@@ -225,6 +226,9 @@
   <ul>
    <li><a href="/help">help</a></li>
   </ul>
+  <ul>
+  <li><a href="/help">help</a></li>
+  </ul>
   </div>
   
   <div class="main">
--- a/tests/test-highlight.t	Sat Oct 09 17:58:54 2010 -0500
+++ b/tests/test-highlight.t	Sat Oct 09 17:58:48 2010 -0500
@@ -95,6 +95,9 @@
   <li><a href="/log/853dcd4de2a6/primes.py">file log</a></li>
   <li><a href="/raw-file/853dcd4de2a6/primes.py">raw</a></li>
   </ul>
+  <ul>
+  <li><a href="/help">help</a></li>
+  </ul>
   </div>
   
   <div class="main">
@@ -219,6 +222,9 @@
   <li><a href="/log/853dcd4de2a6/primes.py">file log</a></li>
   <li><a href="/raw-annotate/853dcd4de2a6/primes.py">raw</a></li>
   </ul>
+  <ul>
+  <li><a href="/help">help</a></li>
+  </ul>
   </div>
   
   <div class="main">