/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/smart/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521181028-zn04pdfw0od9hfj3
Rename brzlib => breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
rather than being a single large module.  Refer to the individual module
21
21
docstrings for details.
22
22
 
23
 
Server-side request handlers are registered in the `brzlib.smart.request`
 
23
Server-side request handlers are registered in the `breezy.smart.request`
24
24
module.
25
25
 
26
 
The domain logic is in `brzlib.remote`: `RemoteBzrDir`, `RemoteBranch`,
 
26
The domain logic is in `breezy.remote`: `RemoteBzrDir`, `RemoteBranch`,
27
27
and so on.
28
28
 
29
29
There is also an plain file-level transport that calls remote methods to
30
 
manipulate files on the server in `brzlib.transport.remote`.
 
30
manipulate files on the server in `breezy.transport.remote`.
31
31
 
32
32
The protocol is described in doc/developers/network-protocol.txt.
33
33
 
50
50
#
51
51
 
52
52
# Promote some attributes from submodules into this namespace
53
 
from brzlib.smart.request import SmartServerRequestHandler
 
53
from breezy.smart.request import SmartServerRequestHandler
54
54
 
55
55