~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/gpg.py

  • Committer: Robert Collins
  • Date: 2005-10-17 23:35:18 UTC
  • mfrom: (1442.1.65)
  • Revision ID: robertc@robertcollins.net-20051017233518-6746654be564edde
Merge in more GPG work, and more Branch-api-shrinkage.

* Branch.remove has been moved to WorkingTree, which has also gained
  lock_read, lock_write and unlock methods for convenience. (Robert
  Collins)

* Two decorators, needs_read_lock and needs_write_lock have been added
  to the branch module. Use these to cause a function to run in a
  read or write lock respectively. (Robert Collins)

* Branch.open_containing now returns a tuple (Branch, relative-path),
  which allows direct access to the common case of 'get me this file
  from its branch'. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
import bzrlib.errors as errors
24
24
 
 
25
class DisabledGPGStrategy(object):
 
26
    """A GPG Strategy that makes everything fail."""
 
27
 
 
28
    def __init__(self, ignored):
 
29
        """Real strategies take a configuration."""
 
30
 
 
31
    def sign(self, content):
 
32
        raise errors.SigningFailed('Signing is disabled.')
 
33
 
 
34
 
25
35
class LoopbackGPGStrategy(object):
 
36
    """A GPG Strategy that acts like 'cat' - data is just passed through."""
26
37
 
27
38
    def __init__(self, ignored):
28
39
        """Real strategies take a configuration."""