mercurial/templates/monoblue/helptopics.tmpl
author Jun Wu <quark@fb.com>
Thu, 24 Aug 2017 20:25:16 -0700
changeset 33998 8abbae93045a
parent 32779 265196cd7d7f
permissions -rw-r--r--
pull: do not prompt "hg update" if update.requiredest is set Previously, after pull, we show: (run 'hg update' to get a working copy) unconditionally. People might run `hg update` and get an exception if `update.requiredest` is set, and get a bit frustrated. This patch changes the code to not prompt `hg update` in that case. Differential Revision: https://phab.mercurial-scm.org/D516

{header}
    <title>Help: {title}</title>
    <link rel="alternate" type="application/atom+xml" href="{url|urlescape}atom-log" title="Atom feed for {repo|escape}"/>
    <link rel="alternate" type="application/rss+xml" href="{url|urlescape}rss-log" title="RSS feed for {repo|escape}"/>
</head>

<body>
<div id="container">
    <div class="page-header">
        <h1 class="breadcrumb"><a href="/">Mercurial</a> {pathdef%breadcrumb} / help</h1>

        {searchform}

        <ul class="page-nav">
            <li><a href="{url|urlescape}summary{sessionvars%urlparameter}">summary</a></li>
            <li><a href="{url|urlescape}shortlog{sessionvars%urlparameter}">shortlog</a></li>
            <li><a href="{url|urlescape}changelog{sessionvars%urlparameter}">changelog</a></li>
            <li><a href="{url|urlescape}graph{sessionvars%urlparameter}">graph</a></li>
            <li><a href="{url|urlescape}tags{sessionvars%urlparameter}">tags</a></li>
            <li><a href="{url|urlescape}bookmarks{sessionvars%urlparameter}">bookmarks</a></li>
            <li><a href="{url|urlescape}branches{sessionvars%urlparameter}">branches</a></li>
            <li><a href="{url|urlescape}file{sessionvars%urlparameter}">files</a></li>
            {if(subindex,
              '<li><a href="{url|urlescape}help{sessionvars%urlparameter}">help</a></li>',
              '<li class="current">help</li>'
            )}
        </ul>
    </div>

    <h2 class="no-link no-border">help</h2>
    <table cellspacing="0">
    <tr><td colspan="2"><h2><a name="topics" href="#topics">Topics</a></h2></td></tr>
    {topics % helpentry}

    {if(earlycommands, '
    <tr><td colspan="2"><h2><a name="main" href="#main">Main Commands</a></h2></td></tr>
    {earlycommands % helpentry}
    ')}

    {if(othercommands, '
    <tr><td colspan="2"><h2><a name="other" href="#other">Other Commands</a></h2></td></tr>
    {othercommands % helpentry}
    ')}
    </table>

{footer}