hgext/show.py
changeset 40293 c303d65d2e34
parent 37709 7b2955624777
child 42057 566daffc607d
equal deleted inserted replaced
40292:9c6473d2038b 40293:c303d65d2e34
    91     # 'hg show' becomes stable before --template/-T is stable. For now,
    91     # 'hg show' becomes stable before --template/-T is stable. For now,
    92     # we are putting it here without the '(EXPERIMENTAL)' flag because it
    92     # we are putting it here without the '(EXPERIMENTAL)' flag because it
    93     # is an important part of the 'hg show' user experience and the entire
    93     # is an important part of the 'hg show' user experience and the entire
    94     # 'hg show' experience is experimental.
    94     # 'hg show' experience is experimental.
    95     ('T', 'template', '', ('display with template'), _('TEMPLATE')),
    95     ('T', 'template', '', ('display with template'), _('TEMPLATE')),
    96     ], _('VIEW'))
    96     ], _('VIEW'),
       
    97     helpcategory=command.CATEGORY_CHANGE_NAVIGATION)
    97 def show(ui, repo, view=None, template=None):
    98 def show(ui, repo, view=None, template=None):
    98     """show various repository information
    99     """show various repository information
    99 
   100 
   100     A requested view of repository data is displayed.
   101     A requested view of repository data is displayed.
   101 
   102