~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-06-16 15:47:16 UTC
  • mfrom: (1777.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060616154716-fd2b9d1896d25324
(robertc)Remove --all option from status and deprecate the underlying api.

Show diffs side-by-side

added added

removed removed

Lines of Context:
132
132
    modified
133
133
        Text has changed since the previous revision.
134
134
 
135
 
    unchanged
136
 
        Nothing about this file has changed since the previous revision.
137
 
        Only shown with --all.
138
 
 
139
135
    unknown
140
136
        Not versioned and not matching an ignore pattern.
141
137
 
154
150
    # TODO: --no-recurse, --recurse options
155
151
    
156
152
    takes_args = ['file*']
157
 
    takes_options = ['all', 'show-ids', 'revision']
 
153
    takes_options = ['show-ids', 'revision']
158
154
    aliases = ['st', 'stat']
159
155
 
160
156
    encoding_type = 'replace'
161
157
    
162
158
    @display_command
163
 
    def run(self, all=False, show_ids=False, file_list=None, revision=None):
 
159
    def run(self, show_ids=False, file_list=None, revision=None):
164
160
        from bzrlib.status import show_tree_status
165
161
 
166
162
        tree, file_list = tree_files(file_list)
167
163
            
168
 
        show_tree_status(tree, show_unchanged=all, show_ids=show_ids,
 
164
        show_tree_status(tree, show_ids=show_ids,
169
165
                         specific_files=file_list, revision=revision,
170
166
                         to_file=self.outf)
171
167