~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/status.py

(jameinel) (bug #780544) when updating the WT,
 allow it to be done with a fast delta,
 rather than setting the state from scratch. (John A Meinel)

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
def report_changes(to_file, old, new, specific_files, 
35
35
                   show_short_reporter, show_long_callback, 
36
36
                   short=False, want_unchanged=False, 
37
 
                   want_unversioned=False, show_ids=False, classify=True):
 
37
                   want_unversioned=False, show_ids=False):
38
38
    """Display summary of changes.
39
39
 
40
40
    This compares two trees with regards to a list of files, and delegates 
59
59
        files.
60
60
    :param show_ids: If set, includes each file's id.
61
61
    :param want_unversioned: If False, only shows versioned files.
62
 
    :param classify: Add special symbols to indicate file kind.
63
62
    """
64
63
 
65
64
    if short:
77
76
            delta.unversioned if not new.is_ignored(unversioned[0])]
78
77
        show_long_callback(to_file, delta, 
79
78
                           show_ids=show_ids,
80
 
                           show_unchanged=want_unchanged,
81
 
                           classify=classify)
 
79
                           show_unchanged=want_unchanged)
82
80
 
83
81
 
84
82
def show_tree_status(wt, show_unchanged=None,
90
88
                     short=False,
91
89
                     verbose=False,
92
90
                     versioned=False,
93
 
                     classify=True,
94
91
                     show_long_callback=_mod_delta.report_delta):
95
92
    """Display summary of changes.
96
93
 
120
117
    :param verbose: If True, show all merged revisions, not just
121
118
        the merge tips
122
119
    :param versioned: If True, only shows versioned files.
123
 
    :param classify: Add special symbols to indicate file kind.
124
120
    :param show_long_callback: A callback: message = show_long_callback(to_file, delta, 
125
121
        show_ids, show_unchanged, indent, filter), only used with the long output
126
122
    """
165
161
 
166
162
            # Reporter used for short outputs
167
163
            reporter = _mod_delta._ChangeReporter(output_file=to_file,
168
 
                unversioned_filter=new.is_ignored, classify=classify)
 
164
                unversioned_filter=new.is_ignored)
169
165
            report_changes(to_file, old, new, specific_files, 
170
166
                           reporter, show_long_callback, 
171
167
                           short=short, want_unchanged=show_unchanged, 
172
 
                           want_unversioned=want_unversioned, show_ids=show_ids,
173
 
                           classify=classify)
 
168
                           want_unversioned=want_unversioned, show_ids=show_ids)
174
169
 
175
170
            # show the ignored files among specific files (i.e. show the files
176
171
            # identified from input that we choose to ignore). 
199
194
                    prefix = 'C  '
200
195
                else:
201
196
                    prefix = ' '
202
 
                to_file.write("%s %s\n" % (prefix, unicode(conflict)))
 
197
                to_file.write("%s %s\n" % (prefix, conflict))
203
198
            # Show files that were requested but don't exist (and are
204
199
            # not versioned).  We don't involve delta in this; these
205
200
            # paths are really the province of just the status