~bzr/ubuntu/lucid/bzr/beta-ppa

« back to all changes in this revision

Viewing changes to bzrlib/transport/readonly.py

  • Committer: Martin Pool
  • Date: 2010-08-18 04:26:39 UTC
  • mfrom: (129.1.8 packaging-karmic)
  • Revision ID: mbp@sourcefrog.net-20100818042639-mjoxtngyjwiu05fo
* PPA rebuild for lucid.
* PPA rebuild for karmic.
* PPA rebuild onto jaunty.
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
"""Implementation of Transport that adapts another transport to be readonly."""
18
18
 
19
19
from bzrlib.errors import TransportNotPossible, NoSmartMedium
20
 
from bzrlib.transport.decorator import TransportDecorator, DecoratorServer
21
 
 
22
 
 
23
 
class ReadonlyTransportDecorator(TransportDecorator):
 
20
from bzrlib.transport import decorator
 
21
 
 
22
 
 
23
class ReadonlyTransportDecorator(decorator.TransportDecorator):
24
24
    """A decorator that can convert any transport to be readonly.
25
25
 
26
26
    This is requested via the 'readonly+' prefix to get_transport().
78
78
        raise NoSmartMedium(self)
79
79
 
80
80
 
81
 
 
82
 
class ReadonlyServer(DecoratorServer):
83
 
    """Server for the ReadonlyTransportDecorator for testing with."""
84
 
 
85
 
    def get_decorator_class(self):
86
 
        return ReadonlyTransportDecorator
87
 
 
88
 
 
89
81
def get_test_permutations():
90
82
    """Return the permutations to be used in testing."""
91
 
    return [(ReadonlyTransportDecorator, ReadonlyServer),
92
 
            ]
 
83
    from bzrlib.tests import test_server
 
84
    return [(ReadonlyTransportDecorator, test_server.ReadonlyServer),]