~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help.py

  • Committer: Martin Pool
  • Date: 2005-05-10 06:48:34 UTC
  • Revision ID: mbp@sourcefrog.net-20050510064834-83b4dc606b48aa87
- new command 'bzr modified' to exercise the statcache

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
"""Bazaar-NG -- a free distributed version-control tool
19
19
http://bazaar-ng.org/
20
20
 
21
 
WARNING: This is an unstable development version.
22
 
         Please keep backups.
23
 
 
24
 
Basic commands:
25
 
 
26
 
  bzr init      makes this branch versioned
27
 
  bzr branch    make a copy of another branch
28
 
 
29
 
  bzr add       make files or directories versioned
30
 
  bzr ignore    ignore a file or pattern
31
 
  bzr mv        move or rename a versioned file
32
 
 
33
 
  bzr status    summarize changes in working copy
34
 
  bzr diff      show detailed diffs
35
 
 
36
 
  bzr merge     pull in changes from another branch
37
 
  bzr commit    
38
 
 
39
 
  bzr log       show history of changes
40
 
  bzr check     validate storage
41
 
 
42
 
Use e.g. 'bzr help init' for more details, or 'bzr help commands' for
43
 
all commands.
 
21
**WARNING: THIS IS AN UNSTABLE DEVELOPMENT VERSION**
 
22
 
 
23
* Metadata format is not stable yet -- you may need to
 
24
  discard history in the future.
 
25
 
 
26
* Many commands unimplemented or partially implemented.
 
27
 
 
28
* Space-inefficient storage.
 
29
 
 
30
* No merge operators yet.
 
31
 
 
32
 
 
33
To make a branch, use 'bzr init' in an existing directory, then 'bzr
 
34
add' to make files versioned.  'bzr add .' will recursively add all
 
35
non-ignored files.
 
36
 
 
37
'bzr status' describes files that are unknown, ignored, or modified.
 
38
'bzr diff' shows the text changes to the tree or named files.
 
39
'bzr commit -m <MESSAGE>' commits all changes in that branch.
 
40
 
 
41
'bzr move' and 'bzr rename' allow you to rename files or directories.
 
42
'bzr remove' makes a file unversioned but keeps the working copy;
 
43
to delete that too simply delete the file.
 
44
 
 
45
'bzr log' shows a history of changes, and
 
46
'bzr info' gives summary statistical information.
 
47
'bzr check' validates all files are stored safely.
 
48
 
 
49
Files can be ignored by giving a path or a glob in .bzrignore at the
 
50
top of the tree.  Use 'bzr ignored' to see what files are ignored and
 
51
why, and 'bzr unknowns' to see files that are neither versioned or
 
52
ignored.
 
53
 
 
54
For more help on any command, type 'bzr help COMMAND', or 'bzr help
 
55
commands' for a list.
44
56
"""
45
57
 
46
58
 
47
 
import sys
48
 
 
49
 
 
50
 
def help(topic=None, outfile = None):
51
 
    if outfile == None:
52
 
        outfile = sys.stdout
 
59
 
 
60
def help(topic=None):
53
61
    if topic == None:
54
 
        outfile.write(global_help)
 
62
        print global_help
55
63
    elif topic == 'commands':
56
 
        help_commands(outfile = outfile)
57
 
    else:
58
 
        help_on_command(topic, outfile = outfile)
59
 
 
60
 
 
61
 
def command_usage(cmdname, cmdclass):
62
 
    """Return single-line grammar for command.
63
 
 
64
 
    Only describes arguments, not options.
65
 
    """
66
 
    s = cmdname + ' '
 
64
        help_commands()
 
65
    else:
 
66
        help_on_command(topic)
 
67
 
 
68
 
 
69
def help_on_command(cmdname):
 
70
    cmdname = str(cmdname)
 
71
 
 
72
    from inspect import getdoc
 
73
    import commands
 
74
    topic, cmdclass = commands.get_cmd_class(cmdname)
 
75
 
 
76
    doc = getdoc(cmdclass)
 
77
    if doc == None:
 
78
        raise NotImplementedError("sorry, no detailed help yet for %r" % cmdname)
 
79
 
 
80
    if '\n' in doc:
 
81
        short, rest = doc.split('\n', 1)
 
82
    else:
 
83
        short = doc
 
84
        rest = ''
 
85
 
 
86
    print 'usage: bzr ' + topic,
67
87
    for aname in cmdclass.takes_args:
68
88
        aname = aname.upper()
69
89
        if aname[-1] in ['$', '+']:
72
92
            aname = '[' + aname[:-1] + ']'
73
93
        elif aname[-1] == '*':
74
94
            aname = '[' + aname[:-1] + '...]'
75
 
        s += aname + ' '
76
 
            
77
 
    assert s[-1] == ' '
78
 
    s = s[:-1]
79
 
    
80
 
    return s
81
 
 
82
 
 
83
 
def help_on_command(cmdname, outfile = None):
84
 
    cmdname = str(cmdname)
85
 
 
86
 
    if outfile == None:
87
 
        outfile = sys.stdout
88
 
 
89
 
    from inspect import getdoc
90
 
    import commands
91
 
    topic, cmdclass = commands.get_cmd_class(cmdname)
92
 
 
93
 
    doc = getdoc(cmdclass)
94
 
    if doc == None:
95
 
        raise NotImplementedError("sorry, no detailed help yet for %r" % cmdname)
96
 
 
97
 
    outfile.write('usage: ' + command_usage(topic, cmdclass) + '\n')
 
95
        print aname,
 
96
    print 
 
97
    print short
98
98
 
99
99
    if cmdclass.aliases:
100
 
        outfile.write('aliases: ' + ', '.join(cmdclass.aliases) + '\n')
101
 
    
102
 
    outfile.write(doc)
103
 
    if doc[-1] != '\n':
104
 
        outfile.write('\n')
105
 
    
106
 
    help_on_option(cmdclass.takes_options, outfile = None)
107
 
 
108
 
 
109
 
def help_on_option(options, outfile = None):
 
100
        print 'aliases: ' + ', '.join(cmdclass.aliases)
 
101
    
 
102
    if rest:
 
103
        print rest
 
104
 
 
105
    help_on_option(cmdclass.takes_options)
 
106
 
 
107
 
 
108
def help_on_option(options):
110
109
    import commands
111
110
    
112
111
    if not options:
113
112
        return
114
113
    
115
 
    if outfile == None:
116
 
        outfile = sys.stdout
117
 
 
118
 
    outfile.write('\noptions:\n')
 
114
    print
 
115
    print 'options:'
119
116
    for on in options:
120
117
        l = '    --' + on
121
118
        for shortname, longname in commands.SHORT_OPTIONS.items():
122
119
            if longname == on:
123
120
                l += ', -' + shortname
124
121
                break
125
 
        outfile.write(l + '\n')
126
 
 
127
 
 
128
 
def help_commands(outfile = None):
 
122
        print l
 
123
 
 
124
 
 
125
def help_commands():
129
126
    """List all commands"""
130
127
    import inspect
131
128
    import commands
132
 
 
133
 
    if outfile == None:
134
 
        outfile = sys.stdout
135
129
    
136
130
    accu = []
137
131
    for cmdname, cmdclass in commands.get_all_cmds():
140
134
    for cmdname, cmdclass in accu:
141
135
        if cmdclass.hidden:
142
136
            continue
143
 
        outfile.write(command_usage(cmdname, cmdclass) + '\n')
 
137
        print cmdname
144
138
        help = inspect.getdoc(cmdclass)
145
139
        if help:
146
 
            outfile.write("    " + help.split('\n', 1)[0] + '\n')
147
 
 
 
140
            print "    " + help.split('\n', 1)[0]
148
141
            
149
142