# HG changeset patch # User Gregory Szorc # Date 2015-12-31 00:12:59 # Node ID d35ff0b0d0da566b736c3e7526bc4a2921a896d7 # Parent f9e755736b0eead8d8ab79d5c983feb82579fd92 templates: make earlycommands and othercommands optional We now have sub-topics in the help system. The "helptopics" template serves as a mechanism for displaying an index of help topics. Previously, it was only used to show the top-level list of help topics, which includes special groupings of topics. In the near future, we'll adapt "helptopics" for showing the index of sub-topics. In this patch, we optionally render {earlycommands} and {othercommands} since they aren't present on sub-topics. diff --git a/mercurial/templates/gitweb/helptopics.tmpl b/mercurial/templates/gitweb/helptopics.tmpl --- a/mercurial/templates/gitweb/helptopics.tmpl +++ b/mercurial/templates/gitweb/helptopics.tmpl @@ -30,11 +30,16 @@ help

Topics

{topics % helpentry} +{if(earlycommands, '

Main Commands

{earlycommands % helpentry} +')} +{if(othercommands, '

Other Commands

{othercommands % helpentry} +')} + {footer} diff --git a/mercurial/templates/monoblue/helptopics.tmpl b/mercurial/templates/monoblue/helptopics.tmpl --- a/mercurial/templates/monoblue/helptopics.tmpl +++ b/mercurial/templates/monoblue/helptopics.tmpl @@ -35,11 +35,15 @@

Topics

{topics % helpentry} + {if(earlycommands, '

Main Commands

{earlycommands % helpentry} + ')} + {if(othercommands, '

Other Commands

{othercommands % helpentry} + ')} {footer} diff --git a/mercurial/templates/paper/helptopics.tmpl b/mercurial/templates/paper/helptopics.tmpl --- a/mercurial/templates/paper/helptopics.tmpl +++ b/mercurial/templates/paper/helptopics.tmpl @@ -32,11 +32,16 @@

Topics

{topics % helpentry} +{if(earlycommands, '

Main Commands

{earlycommands % helpentry} +')} +{if(othercommands, '

Other Commands

{othercommands % helpentry} +')} + diff --git a/tests/test-help.t b/tests/test-help.t --- a/tests/test-help.t +++ b/tests/test-help.t @@ -1787,6 +1787,7 @@ Dish up an empty repo; serve it cold. This is the topic to test omit indicating. +

Main Commands

@@ -1909,6 +1910,8 @@ Dish up an empty repo; serve it cold. update working directory (or switch revisions) + +

Other Commands

@@ -2149,6 +2152,8 @@ Dish up an empty repo; serve it cold. output version and copyright information + +