# HG changeset patch # User Pierre-Yves David # Date 2015-07-01 06:55:22 # Node ID bd2e171d023b2d673c310e6ca902282c49eff15d # Parent c51a18609a7f56c0fe2fc60844a02b77f7540eae hgweb: also monitor change to bookmarks This makes changes to bookmarks visible to hgweb through the official way. There is no change to tests because there is currently another hack in place to ensure the same behavior. diff --git a/mercurial/hgweb/hgweb_mod.py b/mercurial/hgweb/hgweb_mod.py --- a/mercurial/hgweb/hgweb_mod.py +++ b/mercurial/hgweb/hgweb_mod.py @@ -32,6 +32,7 @@ perms = { foi = [('spath', '00changelog.i'), ('spath', 'phaseroots'), # ! phase can change content at the same size ('spath', 'obsstore'), + ('path', 'bookmarks'), # ! bookmark can change content at the same size ] def makebreadcrumb(url, prefix=''):