~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/diff.py

  • Committer: Aaron Bentley
  • Date: 2005-09-19 02:33:09 UTC
  • mfrom: (1185.3.27)
  • mto: (1185.1.29)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: aaron.bentley@utoronto.ca-20050919023309-24e8871f7f8b31cf
Merged latest from mpool

Show diffs side-by-side

added added

removed removed

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