##// END OF EJS Templates
help: list deprecated and experimental extensions if --verbose...
Yuya Nishihara -
r36263:c792f7c6 default
parent child Browse files
Show More
@@ -62,7 +62,8 b' def extshelp(ui):'
62 rst = loaddoc('extensions')(ui).splitlines(True)
62 rst = loaddoc('extensions')(ui).splitlines(True)
63 rst.extend(listexts(
63 rst.extend(listexts(
64 _('enabled extensions:'), extensions.enabled(), showdeprecated=True))
64 _('enabled extensions:'), extensions.enabled(), showdeprecated=True))
65 rst.extend(listexts(_('disabled extensions:'), extensions.disabled()))
65 rst.extend(listexts(_('disabled extensions:'), extensions.disabled(),
66 showdeprecated=ui.verbose))
66 doc = ''.join(rst)
67 doc = ''.join(rst)
67 return doc
68 return doc
68
69
@@ -283,6 +283,11 b' Test extension help:'
283 win32mbcs allow the use of MBCS paths with problematic encodings
283 win32mbcs allow the use of MBCS paths with problematic encodings
284 zeroconf discover and advertise repositories on the local network
284 zeroconf discover and advertise repositories on the local network
285
285
286 Verify that deprecated extensions are included if --verbose:
287
288 $ hg -v help extensions | grep children
289 children command to display child changesets (DEPRECATED)
290
286 Verify that extension keywords appear in help templates
291 Verify that extension keywords appear in help templates
287
292
288 $ hg help --config extensions.transplant= templating|grep transplant > /dev/null
293 $ hg help --config extensions.transplant= templating|grep transplant > /dev/null
General Comments 0
You need to be logged in to leave comments. Login now