~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-04-11 08:41:33 UTC
  • mfrom: (1650.1.1 bzr.mbp.info)
  • Revision ID: pqm@pqm.ubuntu.com-20060411084133-90aab62d72535e57
(olaf) much improved bzr info output

Show diffs side-by-side

added added

removed removed

Lines of Context:
870
870
        """Return the ASCII format string that identifies this format."""
871
871
        raise NotImplementedError(self.get_format_string)
872
872
 
 
873
    def get_format_description(self):
 
874
        """Return the short description for this format."""
 
875
        raise NotImplementedError(self.get_format_description)
 
876
 
873
877
    def get_converter(self, format=None):
874
878
        """Return the converter to use to convert bzrdirs needing converts.
875
879
 
977
981
        """See BzrDirFormat.get_format_string()."""
978
982
        return "Bazaar-NG branch, format 0.0.4\n"
979
983
 
 
984
    def get_format_description(self):
 
985
        """See BzrDirFormat.get_format_description()."""
 
986
        return "All-in-one format 4"
 
987
 
980
988
    def get_converter(self, format=None):
981
989
        """See BzrDirFormat.get_converter()."""
982
990
        # there is one and only one upgrade path here.
1023
1031
        """See BzrDirFormat.get_format_string()."""
1024
1032
        return "Bazaar-NG branch, format 5\n"
1025
1033
 
 
1034
    def get_format_description(self):
 
1035
        """See BzrDirFormat.get_format_description()."""
 
1036
        return "All-in-one format 5"
 
1037
 
1026
1038
    def get_converter(self, format=None):
1027
1039
        """See BzrDirFormat.get_converter()."""
1028
1040
        # there is one and only one upgrade path here.
1070
1082
        """See BzrDirFormat.get_format_string()."""
1071
1083
        return "Bazaar-NG branch, format 6\n"
1072
1084
 
 
1085
    def get_format_description(self):
 
1086
        """See BzrDirFormat.get_format_description()."""
 
1087
        return "All-in-one format 6"
 
1088
 
1073
1089
    def get_converter(self, format=None):
1074
1090
        """See BzrDirFormat.get_converter()."""
1075
1091
        # there is one and only one upgrade path here.
1132
1148
        """See BzrDirFormat.get_format_string()."""
1133
1149
        return "Bazaar-NG meta directory, format 1\n"
1134
1150
 
 
1151
    def get_format_description(self):
 
1152
        """See BzrDirFormat.get_format_description()."""
 
1153
        return "Meta directory format 1"
 
1154
 
1135
1155
    def _open(self, transport):
1136
1156
        """See BzrDirFormat._open."""
1137
1157
        return BzrDirMeta1(transport, self)