/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

  • Committer: Jelmer Vernooij
  • Date: 2008-08-27 19:36:31 UTC
  • mto: (0.219.2 trunk)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20080827193631-0q15lou3t0eb06sx
Rename to __init__.py.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2008 Jelmer Vernooij <jelmer@samba.org>
 
2
#
 
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.
 
7
#
 
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.
 
12
#
 
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
"""Foreign branch utilities."""
 
18
 
 
19
class VcsMapping(object):
 
20
    """Describes the mapping between the semantics of Bazaar and a foreign vcs.
 
21
 
 
22
    """
 
23
    experimental = False
 
24
    roundtripping = False
 
25
    revid_prefix = None
 
26
 
 
27
 
 
28
class VcsMappingRegistry(registry.Registry):
 
29
    """Registry for Bazaar<->foreign VCS mappings.
 
30
    
 
31
    There should be one instance of this registry for every foreign VCS.
 
32
    """
 
33
 
 
34
    def register(self, key, factory, help):
 
35
        """Register a mapping between Bazaar and foreign VCS semantics.
 
36
 
 
37
        The factory must be a callable that takes one parameter: the key.
 
38
        It must produce an instance of VcsMapping when called.
 
39
        """
 
40
        registry.Registry.register(self, key, factory, help)
 
41
 
 
42
    def set_default(self, key):
 
43
        """Set the 'default' key to be a clone of the supplied key.
 
44
 
 
45
        This method must be called once and only once.
 
46
        """
 
47
        self._set_default_key(key)
 
48
 
 
49
    def get_default(self):
 
50
        """Convenience function for obtaining the default mapping to use."""
 
51
        return self.get(self._get_default_key())
 
52