~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

- add help strings to some options

Show diffs side-by-side

added added

removed removed

Lines of Context:
692
692
    To request a range of logs, you can use the command -r begin:end
693
693
    -r revision requests a specific revision, -r :end or -r begin: are
694
694
    also valid.
695
 
 
696
 
    --message allows you to give a regular expression, which will be evaluated
697
 
    so that only matching entries will be displayed.
698
695
    """
699
696
 
700
697
    # TODO: Make --revision support uuid: and hash: [future tag:] notation.
701
698
 
702
699
    takes_args = ['filename?']
703
 
    takes_options = ['forward', 'timezone', 'verbose', 'show-ids', 'revision',
704
 
                     'long', 'message', 'short',]
 
700
    takes_options = [Option('forward', 
 
701
                            help='show from oldest to newest'),
 
702
                     'timezone', 'verbose', 
 
703
                     'show-ids', 'revision',
 
704
                     'long', 
 
705
                     Option('message',
 
706
                            help='show revisions whose message matches this regexp'),
 
707
                     'short',]
705
708
    
706
709
    def run(self, filename=None, timezone='original',
707
710
            verbose=False,