~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/diff.py

  • Committer: Lalo Martins
  • Date: 2005-09-15 15:28:33 UTC
  • mto: (1185.1.22)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: lalo@exoweb.net-20050915152832-1b23c36b1f0fffc4
made tests pass again, after merge from integration

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
    ud = difflib.unified_diff(oldlines, newlines,
46
46
                              fromfile=old_label, tofile=new_label)
47
47
 
 
48
    ud = list(ud)
48
49
    # work-around for difflib being too smart for its own good
49
50
    # if /dev/null is "1,0", patch won't recognize it as /dev/null
50
51
    if not oldlines:
51
 
        ud = list(ud)
52
52
        ud[2] = ud[2].replace('-1,0', '-0,0')
53
53
    elif not newlines:
54
 
        ud = list(ud)
55
54
        ud[2] = ud[2].replace('+1,0', '+0,0')
 
55
    # work around for difflib emitting random spaces after the label
 
56
    ud[0] = ud[0][:-2] + '\n'
 
57
    ud[1] = ud[1][:-2] + '\n'
56
58
 
57
59
    for line in ud:
58
60
        to_file.write(line)
144
146
 
145
147
 
146
148
def show_diff(b, revision, specific_files, external_diff_options=None,
147
 
              revision2=None):
 
149
              revision2=None, output=None):
148
150
    """Shortcut for showing the diff to the working tree.
149
151
 
150
152
    b
156
158
    The more general form is show_diff_trees(), where the caller
157
159
    supplies any two trees.
158
160
    """
159
 
    import sys
 
161
    if output is None:
 
162
        import sys
 
163
        output = sys.stdout
160
164
 
161
 
    if revision == None:
 
165
    if revision is None:
162
166
        old_tree = b.basis_tree()
163
167
    else:
164
 
        old_tree = b.revision_tree(b.lookup_revision(revision))
 
168
        old_tree = b.revision_tree(revision.in_history(b).rev_id)
165
169
 
166
 
    if revision2 == None:
 
170
    if revision2 is None:
167
171
        new_tree = b.working_tree()
168
172
    else:
169
 
        new_tree = b.revision_tree(b.lookup_revision(revision2))
 
173
        new_tree = b.revision_tree(revision2.in_branch(b).rev_id)
170
174
 
171
 
    show_diff_trees(old_tree, new_tree, sys.stdout, specific_files,
 
175
    show_diff_trees(old_tree, new_tree, output, specific_files,
172
176
                    external_diff_options)
173
177
 
174
178
 
209
213
                          specific_files=specific_files)
210
214
 
211
215
    for path, file_id, kind in delta.removed:
212
 
        print >>to_file, '*** removed %s %r' % (kind, path)
 
216
        print >>to_file, '=== removed %s %r' % (kind, path)
213
217
        if kind == 'file':
214
218
            diff_file(old_label + path,
215
219
                      old_tree.get_file(file_id).readlines(),
218
222
                      to_file)
219
223
 
220
224
    for path, file_id, kind in delta.added:
221
 
        print >>to_file, '*** added %s %r' % (kind, path)
 
225
        print >>to_file, '=== added %s %r' % (kind, path)
222
226
        if kind == 'file':
223
227
            diff_file(DEVNULL,
224
228
                      [],
227
231
                      to_file)
228
232
 
229
233
    for old_path, new_path, file_id, kind, text_modified in delta.renamed:
230
 
        print >>to_file, '*** renamed %s %r => %r' % (kind, old_path, new_path)
 
234
        print >>to_file, '=== renamed %s %r => %r' % (kind, old_path, new_path)
231
235
        if text_modified:
232
236
            diff_file(old_label + old_path,
233
237
                      old_tree.get_file(file_id).readlines(),
236
240
                      to_file)
237
241
 
238
242
    for path, file_id, kind in delta.modified:
239
 
        print >>to_file, '*** modified %s %r' % (kind, path)
 
243
        print >>to_file, '=== modified %s %r' % (kind, path)
240
244
        if kind == 'file':
241
245
            diff_file(old_label + path,
242
246
                      old_tree.get_file(file_id).readlines(),