~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzr

  • Committer: Robert Collins
  • Date: 2005-10-30 01:40:16 UTC
  • Revision ID: robertc@robertcollins.net-20051030014016-98a4fba7d6a4176c
Support decoration of commands.

Commands.register_command now takes an optional flag to signal that the
registrant is planning to decorate an existing command. When given
multiple plugins registering a command is not an error, and the original
command class (whether built in or a plugin based one) is returned to the
caller. There is a new error 'MustUseDecorated' for signalling when a
wrapping command should switch to the original version. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
except AttributeError:
24
24
    version_info = 1, 5 # 1.5 or older
25
25
 
26
 
 
27
 
REINVOKE = "__BZR_REINVOKE"    
 
26
REINVOKE = "__BZR_REINVOKE"
28
27
NEED_VERS = (2, 4)
29
28
KNOWN_PYTHONS = ('python2.4',)
30
29
 
40
39
    print >>sys.stderr, "bzr: error: cannot find a suitable python interpreter"
41
40
    print >>sys.stderr, "  (need %d.%d or later)" % NEED_VERS
42
41
    sys.exit(1)
43
 
os.unsetenv(REINVOKE)
44
 
 
45
 
import bzrlib, bzrlib.commands
 
42
if hasattr(os, "unsetenv"):
 
43
    os.unsetenv(REINVOKE)
 
44
 
 
45
try:
 
46
    import bzrlib
 
47
    import bzrlib.commands
 
48
    import bzrlib.trace
 
49
except ImportError, e:
 
50
    sys.stderr.write("bzr: ERROR: "
 
51
                     "Couldn't import bzrlib and dependencies.\n"
 
52
                     "Please check bzrlib is on your PYTHONPATH.\n"
 
53
                     "\n")
 
54
    raise
 
55
 
 
56
if bzrlib.version_info[:3] != (0, 6, 0):
 
57
    sys.stderr.write("bzr: WARNING: bzrlib version doesn't match the bzr program.\n"
 
58
            "This may indicate an installation problem.\n"
 
59
            "bzrlib from %s is version %r\n"
 
60
            % (bzrlib.__path__, bzrlib.version_info))
46
61
 
47
62
if __name__ == '__main__':
 
63
    bzrlib.trace.enable_default_logging()
48
64
    sys.exit(bzrlib.commands.main(sys.argv))
 
65
else:
 
66
    pass    # should this give an error? - it can't be used as a lib