~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/missing.py

  • Committer: Martin Pool
  • Date: 2005-08-24 08:59:32 UTC
  • Revision ID: mbp@sourcefrog.net-20050824085932-c61f1f1f1c930e13
- Add a simple UIFactory 

  The idea of this is to let a client of bzrlib set some 
  policy about how output is displayed.

  In this revision all that's done is that progress bars
  are constructed by a policy established by the application
  rather than being randomly constructed in the library 
  or passed down the calls.  This avoids progress bars
  popping up while running the test suite and cleans up
  some code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
    from sets import Set as set
12
12
 
13
13
 
 
14
def get_parent(branch):
 
15
    """Get the last pull/push location.
 
16
 
 
17
    TODO: This should probably be part of a Branch object.
 
18
    """
 
19
    import errno
 
20
    _locs = ['parent', 'pull', 'x-pull']
 
21
    loc = None
 
22
    for l in _locs:
 
23
        try:
 
24
            stored_loc = branch.controlfile(l, 'rb').read().strip('\n')
 
25
        except IOError, e:
 
26
            if e.errno != errno.ENOENT:
 
27
                raise
 
28
        else:
 
29
            return stored_loc
 
30
 
 
31
 
14
32
def show_missing(br_local, br_remote, verbose=False, quiet=False):
15
33
    """Show the revisions which exist in br_remote, that 
16
34
    do not exist in br_local.