1
# Copyright (C) 2010 Canonical Ltd
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
These were formats present in pre-1.0 version of Bazaar.
23
branch as _mod_branch,
25
repository as _mod_repository,
27
workingtree as _mod_workingtree,
29
from bzrlib.bzrdir import (
34
# Pre-0.8 formats that don't have a disk format string (because they are
35
# versioned by the matching control directory). We use the control directories
36
# disk format string as a key for the network_name because they meet the
37
# constraints (simple string, unique, immutable).
38
_mod_repository.network_format_registry.register_lazy(
39
"Bazaar-NG branch, format 5\n",
40
'bzrlib.plugins.weave_fmt.repository',
43
_mod_repository.network_format_registry.register_lazy(
44
"Bazaar-NG branch, format 6\n",
45
'bzrlib.plugins.weave_fmt.repository',
49
# weave formats which has no format string and are not discoverable or independently
50
# creatable on disk, so are not registered in format_registry. They're
51
# all in bzrlib.plugins.weave_fmt.repository now. When an instance of one of these is
52
# needed, it's constructed directly by the BzrDir. Non-native formats where
53
# the repository is not separately opened are similar.
55
_mod_repository.format_registry.register_lazy(
56
'Bazaar-NG Repository format 7',
57
'bzrlib.plugins.weave_fmt.repository',
61
_mod_repository.format_registry.register_extra_lazy(
62
'bzrlib.plugins.weave_fmt.repository',
64
_mod_repository.format_registry.register_extra_lazy(
65
'bzrlib.plugins.weave_fmt.repository',
67
_mod_repository.format_registry.register_extra_lazy(
68
'bzrlib.plugins.weave_fmt.repository',
72
# The pre-0.8 formats have their repository format network name registered in
73
# repository.py. MetaDir formats have their repository format network name
74
# inferred from their disk format string.
75
controldir.format_registry.register_lazy('weave',
76
"bzrlib.plugins.weave_fmt.bzrdir", "BzrDirFormat6",
77
'Pre-0.8 format. Slower than knit and does not'
78
' support checkouts or shared repositories.',
81
register_metadir(controldir.format_registry, 'metaweave',
82
'bzrlib.plugins.weave_fmt.repository.RepositoryFormat7',
83
'Transitional format in 0.8. Slower than knit.',
84
branch_format='bzrlib.branch.BzrBranchFormat5',
85
tree_format='bzrlib.workingtree.WorkingTreeFormat3',
90
BzrProber.formats.register_lazy(
91
"Bazaar-NG branch, format 0.0.4\n", "bzrlib.plugins.weave_fmt.bzrdir",
93
BzrProber.formats.register_lazy(
94
"Bazaar-NG branch, format 5\n", "bzrlib.plugins.weave_fmt.bzrdir",
96
BzrProber.formats.register_lazy(
97
"Bazaar-NG branch, format 6\n", "bzrlib.plugins.weave_fmt.bzrdir",
101
_mod_branch.format_registry.register_extra_lazy(
102
'bzrlib.plugins.weave_fmt.branch', 'BzrBranchFormat4')
103
_mod_branch.network_format_registry.register_lazy(
104
"Bazaar-NG branch, format 6\n",
105
'bzrlib.plugins.weave_fmt.branch', "BzrBranchFormat4")
108
_mod_workingtree.format_registry.register_extra_lazy(
109
'bzrlib.plugins.weave_fmt.workingtree',
110
'WorkingTreeFormat2')
112
serializer.format_registry.register_lazy('4', 'bzrlib.plugins.weave_fmt.xml4',
115
def load_tests(basic_tests, module, loader):
121
basic_tests.addTest(loader.loadTestsFromModuleNames(
122
["%s.%s" % (__name__, tmn) for tmn in testmod_names]))