~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/diff.py

  • Committer: Martin Pool
  • Date: 2005-08-01 23:14:12 UTC
  • mfrom: (974.1.11)
  • Revision ID: mbp@sourcefrog.net-20050801231412-6a6278d24a7cbb0a
- merge aaron's revert and merge improvements

Show diffs side-by-side

added added

removed removed

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