##// END OF EJS Templates
templates: make earlycommands and othercommands optional...
Gregory Szorc -
r27578:d35ff0b0 default
parent child Browse files
Show More
@@ -30,11 +30,16 b' help'
30 30 <tr><td colspan="2"><h2><a name="main" href="#topics">Topics</a></h2></td></tr>
31 31 {topics % helpentry}
32 32
33 {if(earlycommands, '
33 34 <tr><td colspan="2"><h2><a name="main" href="#main">Main Commands</a></h2></td></tr>
34 35 {earlycommands % helpentry}
36 ')}
35 37
38 {if(othercommands, '
36 39 <tr><td colspan="2"><h2><a name="other" href="#other">Other Commands</a></h2></td></tr>
37 40 {othercommands % helpentry}
41 ')}
42
38 43 </table>
39 44
40 45 {footer}
@@ -35,11 +35,15 b''
35 35 <tr><td colspan="2"><h2><a name="main" href="#topics">Topics</a></h2></td></tr>
36 36 {topics % helpentry}
37 37
38 {if(earlycommands, '
38 39 <tr><td colspan="2"><h2><a name="main" href="#main">Main Commands</a></h2></td></tr>
39 40 {earlycommands % helpentry}
41 ')}
40 42
43 {if(othercommands, '
41 44 <tr><td colspan="2"><h2><a name="other" href="#other">Other Commands</a></h2></td></tr>
42 45 {othercommands % helpentry}
46 ')}
43 47 </table>
44 48
45 49 {footer}
@@ -32,11 +32,16 b''
32 32 <tr><td colspan="2"><h2><a name="main" href="#topics">Topics</a></h2></td></tr>
33 33 {topics % helpentry}
34 34
35 {if(earlycommands, '
35 36 <tr><td colspan="2"><h2><a name="main" href="#main">Main Commands</a></h2></td></tr>
36 37 {earlycommands % helpentry}
38 ')}
37 39
40 {if(othercommands, '
38 41 <tr><td colspan="2"><h2><a name="other" href="#other">Other Commands</a></h2></td></tr>
39 42 {othercommands % helpentry}
43 ')}
44
40 45 </table>
41 46 </div>
42 47 </div>
@@ -1787,6 +1787,7 b' Dish up an empty repo; serve it cold.'
1787 1787 This is the topic to test omit indicating.
1788 1788 </td></tr>
1789 1789
1790
1790 1791 <tr><td colspan="2"><h2><a name="main" href="#main">Main Commands</a></h2></td></tr>
1791 1792
1792 1793 <tr><td>
@@ -1909,6 +1910,8 b' Dish up an empty repo; serve it cold.'
1909 1910 update working directory (or switch revisions)
1910 1911 </td></tr>
1911 1912
1913
1914
1912 1915 <tr><td colspan="2"><h2><a name="other" href="#other">Other Commands</a></h2></td></tr>
1913 1916
1914 1917 <tr><td>
@@ -2149,6 +2152,8 b' Dish up an empty repo; serve it cold.'
2149 2152 </td><td>
2150 2153 output version and copyright information
2151 2154 </td></tr>
2155
2156
2152 2157 </table>
2153 2158 </div>
2154 2159 </div>
General Comments 0
You need to be logged in to leave comments. Login now