hgweb: add searchhint to templates/coal/map
authorAnton Shestakov <engored@ya.ru>
Fri, 09 Jan 2015 15:24:55 +0800
changeset 23783 ee1bf2b5a780
parent 23782 304e69cb1ee9
child 23784 8f7e839aaa70
hgweb: add searchhint to templates/coal/map coal style uses every template (except header.tmpl) directly from paper style, but doesn't use paper/map file. Elements defined in such map files are used in templates as you would expect. For example, paper/search.tmpl contains '{searchhint}' and template engine replaces that with the actual hint. But when coal style reuses paper/search.tmpl, it needs to define searchhint in its map file as well, or template engine will not find it. So let's copy it from paper/map to coal/map. Before this change, if the coal style was selected, the hint for the search field in page header was present, but it was completely empty. Although the absence of searchhint in coal/map produced no error.
mercurial/templates/coal/map
--- a/mercurial/templates/coal/map	Tue Dec 30 21:12:52 2014 -0500
+++ b/mercurial/templates/coal/map	Fri Jan 09 15:24:55 2015 +0800
@@ -237,3 +237,6 @@
 urlparameter = '{separator}{name}={value|urlescape}'
 hiddenformentry = '<input type="hidden" name="{name}" value="{value|escape}" />'
 breadcrumb = '&gt; <a href="{url|urlescape}">{name|escape}</a> '
+
+searchhint = 'Find changesets by keywords (author, files, the commit message), revision
+  number or hash, or <a href="{url|urlescape}help/revsets">revset expression</a>.'