/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 bzrlib/smart/__init__.py

  • Committer: Richard Wilbur
  • Date: 2016-02-04 19:07:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6618.
  • Revision ID: richard.wilbur@gmail.com-20160204190728-p0zvfii6zase0fw7
Update COPYING.txt from the original http://www.gnu.org/licenses/gpl-2.0.txt  (Only differences were in whitespace.)  Thanks to Petr Stodulka for pointing out the discrepancy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2011 Canonical Ltd
 
1
# Copyright (C) 2006,2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
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 `breezy.bzr.smart.request`
 
23
Server-side request handlers are registered in the `bzrlib.smart.request`
24
24
module.
25
25
 
26
 
The domain logic is in `breezy.bzr.remote`: `RemoteBzrDir`, `RemoteBranch`,
 
26
The domain logic is in `bzrlib.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 `breezy.transport.remote`.
 
30
manipulate files on the server in `bzrlib.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 .request import SmartServerRequestHandler
 
53
from bzrlib.smart.request import SmartServerRequestHandler
54
54
 
55
55