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

More performance hacking, introduce sqlite cache, escape characters in commits that break serializers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
"""A GIT branch and repository format implementation for bzr."""
20
20
 
21
 
try:
22
 
    import dulwich as git
23
 
except ImportError:
24
 
    import os, sys
25
 
    sys.path.insert(0, os.path.join(os.path.dirname(__file__), "dulwich"))
26
 
    import dulwich as git
27
21
from bzrlib import bzrdir
28
 
from bzrlib.foreign import ForeignVcs, VcsMappingRegistry, foreign_vcs_registry
29
 
from bzrlib.plugins.git.dir import GitBzrDirFormat
 
22
from bzrlib.plugins.git.git_dir import GitBzrDirFormat
30
23
 
31
24
bzrdir.format_registry.register(
32
25
    'git', GitBzrDirFormat,
33
 
    help='GIT repository.', 
34
 
    native=False, experimental=True,
 
26
    help='GIT - the stupid content tracker.',
 
27
    native=False, hidden=True, experimental=True,
35
28
    )
36
29
 
37
30
bzrdir.BzrDirFormat.register_control_format(GitBzrDirFormat)
38
31
 
39
 
 
40
 
class ForeignGit(ForeignVcs):
41
 
    """Foreign Git."""
42
 
 
43
 
 
44
 
git_mapping_registry = VcsMappingRegistry()
45
 
git_mapping_registry.register_lazy('git-experimental', "bzrlib.plugins.git.mapping",
46
 
                                   "BzrGitMappingExperimental")
47
 
foreign_vcs_registry.register("git", ForeignGit(git_mapping_registry), 
48
 
                                      "Stupid content tracker")
49
 
 
50
 
 
51
32
def test_suite():
52
33
    from bzrlib.plugins.git import tests
53
34
    return tests.test_suite()