##// END OF EJS Templates
hgweb help: fix double help links
Augie Fackler -
r12713:bd37e749 default
parent child Browse files
Show More
@@ -1,44 +1,43 b''
1 1 {header}
2 2 <title>Help: {topic}</title>
3 3 <link rel="alternate" type="application/atom+xml"
4 4 href="{url}atom-tags" title="Atom feed for {repo|escape}" />
5 5 <link rel="alternate" type="application/rss+xml"
6 6 href="{url}rss-tags" title="RSS feed for {repo|escape}" />
7 7 </head>
8 8 <body>
9 9
10 10 <div class="container">
11 11 <div class="menu">
12 12 <div class="logo">
13 13 <a href="http://mercurial.selenic.com/">
14 14 <img src="{staticurl}hglogo.png" alt="mercurial" /></a>
15 15 </div>
16 16 <ul>
17 17 <li><a href="{url}shortlog{sessionvars%urlparameter}">log</a></li>
18 18 <li><a href="{url}graph{sessionvars%urlparameter}">graph</a></li>
19 19 <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li>
20 20 <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li>
21 <li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
22 21 </ul>
23 22 <ul>
24 23 <li class="active">help</li>
25 24 </ul>
26 25 </div>
27 26
28 27 <div class="main">
29 28 <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a></h2>
30 29 <h3>Help: {topic}</h3>
31 30
32 31 <form class="search" action="{url}log">
33 32 {sessionvars%hiddenformentry}
34 33 <p><input name="rev" id="search1" type="text" size="30" /></p>
35 34 <div id="hint">find changesets by author, revision,
36 35 files, or words in the commit message</div>
37 36 </form>
38 37 <pre>
39 38 {doc|escape}
40 39 </pre>
41 40 </div>
42 41 </div>
43 42
44 43 {footer}
@@ -1,49 +1,48 b''
1 1 {header}
2 2 <title>Help: {title}</title>
3 3 <link rel="alternate" type="application/atom+xml"
4 4 href="{url}atom-tags" title="Atom feed for {repo|escape}" />
5 5 <link rel="alternate" type="application/rss+xml"
6 6 href="{url}rss-tags" title="RSS feed for {repo|escape}" />
7 7 </head>
8 8 <body>
9 9
10 10 <div class="container">
11 11 <div class="menu">
12 12 <div class="logo">
13 13 <a href="http://mercurial.selenic.com/">
14 14 <img src="{staticurl}hglogo.png" alt="mercurial" /></a>
15 15 </div>
16 16 <ul>
17 17 <li><a href="{url}shortlog{sessionvars%urlparameter}">log</a></li>
18 18 <li><a href="{url}graph{sessionvars%urlparameter}">graph</a></li>
19 19 <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li>
20 20 <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li>
21 <li><a href="{url}help{sessionvars%urlparameter}">help</a></li>
22 21 </ul>
23 22 <ul>
24 23 <li class="active">help</li>
25 24 </ul>
26 25 </div>
27 26
28 27 <div class="main">
29 28 <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a></h2>
30 29 <form class="search" action="{url}log">
31 30 {sessionvars%hiddenformentry}
32 31 <p><input name="rev" id="search1" type="text" size="30" /></p>
33 32 <div id="hint">find changesets by author, revision,
34 33 files, or words in the commit message</div>
35 34 </form>
36 35 <table class="bigtable">
37 36 <tr><td colspan="2"><h2><a name="main" href="#topics">Topics</a></h2></td></tr>
38 37 {topics % helpentry}
39 38
40 39 <tr><td colspan="2"><h2><a name="main" href="#main">Main Commands</a></h2></td></tr>
41 40 {earlycommands % helpentry}
42 41
43 42 <tr><td colspan="2"><h2><a name="other" href="#other">Other Commands</a></h2></td></tr>
44 43 {othercommands % helpentry}
45 44 </table>
46 45 </div>
47 46 </div>
48 47
49 48 {footer}
General Comments 0
You need to be logged in to leave comments. Login now