/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: John Arbash Meinel
  • Date: 2006-06-16 21:05:03 UTC
  • mfrom: (1784 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1785.
  • Revision ID: john@arbash-meinel.com-20060616210503-3d6f8d1e9a6ca5b4
[merge] bzr.dev 1784, fix NEWS conflict.

Show diffs side-by-side

added added

removed removed

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