~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

[merge] much integrated work from robert and john

Show diffs side-by-side

added added

removed removed

Lines of Context:
178
178
        warn("not a LogFormatter instance: %r" % lf)
179
179
 
180
180
    if specific_fileid:
181
 
        mutter('get log for file_id %r' % specific_fileid)
 
181
        mutter('get log for file_id %r', specific_fileid)
182
182
 
183
183
    if search is not None:
184
184
        import re
468
468
    # deprecated; for compatability
469
469
    lf = LongLogFormatter(to_file=to_file, show_timezone=show_timezone)
470
470
    lf.show(revno, rev, delta)
 
471
 
 
472
def show_changed_revisions(branch, old_rh, new_rh, to_file=None, log_format='long'):
 
473
    """Show the change in revision history comparing the old revision history to the new one.
 
474
 
 
475
    :param branch: The branch where the revisions exist
 
476
    :param old_rh: The old revision history
 
477
    :param new_rh: The new revision history
 
478
    :param to_file: A file to write the results to. If None, stdout will be used
 
479
    """
 
480
    if to_file is None:
 
481
        import sys
 
482
        import codecs
 
483
        import bzrlib
 
484
        to_file = codecs.getwriter(bzrlib.user_encoding)(sys.stdout, errors='replace')
 
485
    lf = log_formatter(log_format,
 
486
                       show_ids=False,
 
487
                       to_file=to_file,
 
488
                       show_timezone='original')
 
489
 
 
490
    # This is the first index which is different between
 
491
    # old and new
 
492
    base_idx = None
 
493
    for i in xrange(max(len(new_rh),
 
494
                        len(old_rh))):
 
495
        if (len(new_rh) <= i
 
496
            or len(old_rh) <= i
 
497
            or new_rh[i] != old_rh[i]):
 
498
            base_idx = i
 
499
            break
 
500
 
 
501
    if base_idx is None:
 
502
        to_file.write('Nothing seems to have changed\n')
 
503
        return
 
504
    ## TODO: It might be nice to do something like show_log
 
505
    ##       and show the merged entries. But since this is the
 
506
    ##       removed revisions, it shouldn't be as important
 
507
    if base_idx < len(old_rh):
 
508
        to_file.write('*'*60)
 
509
        to_file.write('\nRemoved Revisions:\n')
 
510
        for i in range(base_idx, len(old_rh)):
 
511
            rev = branch.get_revision(old_rh[i])
 
512
            lf.show(i+1, rev, None)
 
513
        to_file.write('*'*60)
 
514
        to_file.write('\n\n')
 
515
    if base_idx < len(new_rh):
 
516
        to_file.write('Added Revisions:\n')
 
517
        show_log(branch,
 
518
                 lf,
 
519
                 None,
 
520
                 verbose=True,
 
521
                 direction='forward',
 
522
                 start_revision=base_idx+1,
 
523
                 end_revision=len(new_rh),
 
524
                 search=None)
 
525