~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Ian Clatworthy
  • Date: 2007-07-13 08:45:53 UTC
  • mto: (2628.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 2629.
  • Revision ID: ian.clatworthy@internode.on.net-20070713084553-7is76iha0tj6o4lo
Make the plugins command public with better help

Show diffs side-by-side

added added

removed removed

Lines of Context:
3086
3086
 
3087
3087
 
3088
3088
class cmd_plugins(Command):
3089
 
    """List plugins"""
3090
 
    hidden = True
 
3089
    """List the installed plugins.
 
3090
    
 
3091
    This command displays the list of installed plugins including the
 
3092
    path where each one is located and a short description of each.
 
3093
 
 
3094
    A plugin is an external component for Bazaar that extends the
 
3095
    revision control system, by adding or replacing code in Bazaar.
 
3096
    Plugins can do a variety of things, including overriding commands,
 
3097
    adding new commands, providing additional network transports and
 
3098
    customizing log output.
 
3099
 
 
3100
    See the Bazaar web site, http://bazaar-vcs.org, for further
 
3101
    information on plugins including where to find them and how to
 
3102
    install them. Instructions are also provided there on how to
 
3103
    write new plugins using the Python programming language.
 
3104
    """
 
3105
    hidden = False
3091
3106
    @display_command
3092
3107
    def run(self):
3093
3108
        import bzrlib.plugin