/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

Fix formatting, remove catch-all for exceptions when opening local repositories.

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
 
from bzrlib import (
22
 
#    branch,
23
 
    bzrdir,
24
 
#    repository,
25
 
    )
26
 
 
27
 
bzrdir.format_registry.register_lazy('git',
28
 
    'bzrlib.plugins.git.gitlib.git_dir', 'GitDirFormat',
29
 
    help='GIT - the stupid content tracker.',
30
 
    native=False, hidden=True, experimental=True,
31
 
    )
32
 
 
33
 
# formats which have no format string are not discoverable
34
 
# and not independently creatable, so are not registered.
 
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
from bzrlib import bzrdir
 
28
from bzrlib.foreign import ForeignVcs, VcsMappingRegistry, foreign_vcs_registry
 
29
from bzrlib.plugins.git.dir import LocalGitBzrDirFormat, RemoteGitBzrDirFormat
 
30
from bzrlib.transport import register_lazy_transport
 
31
 
 
32
bzrdir.format_registry.register(
 
33
    'git', LocalGitBzrDirFormat,
 
34
    help='GIT repository.', 
 
35
    native=False, experimental=True,
 
36
    )
 
37
 
 
38
bzrdir.BzrDirFormat.register_control_format(LocalGitBzrDirFormat)
 
39
bzrdir.BzrDirFormat.register_control_format(RemoteGitBzrDirFormat)
 
40
 
 
41
register_lazy_transport("git://", 'bzrlib.plugins.git.remote',
 
42
                        'GitSmartTransport')
 
43
 
 
44
 
 
45
class ForeignGit(ForeignVcs):
 
46
    """Foreign Git."""
 
47
 
 
48
 
 
49
git_mapping_registry = VcsMappingRegistry()
 
50
git_mapping_registry.register_lazy('git-experimental', "bzrlib.plugins.git.mapping",
 
51
                                   "BzrGitMappingExperimental")
 
52
foreign_vcs_registry.register("git", ForeignGit(git_mapping_registry), 
 
53
                                      "Stupid content tracker")
35
54
 
36
55
 
37
56
def test_suite():