~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/version.py

  • Committer: Patch Queue Manager
  • Date: 2011-10-14 16:54:26 UTC
  • mfrom: (6216.1.1 remove-this-file)
  • Revision ID: pqm@pqm.ubuntu.com-20111014165426-tjix4e6idryf1r2z
(jelmer) Remove an accidentally committed .THIS file. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2004, 2005, 2006, 2007 Canonical Ltd
 
1
# Copyright (C) 2006-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
21
21
 
22
22
import bzrlib
23
23
from bzrlib import (
24
 
    bzrdir,
25
24
    config,
 
25
    controldir,
26
26
    errors,
27
27
    osutils,
28
28
    trace,
29
29
    )
30
 
from bzrlib.branch import Branch
31
30
 
32
31
 
33
32
def show_version(show_config=True, show_copyright=True, to_file=None):
 
33
    import platform
 
34
 
34
35
    if to_file is None:
35
36
        to_file = sys.stdout
36
37
    to_file.write("Bazaar (bzr) %s\n" % bzrlib.__version__)
48
49
    # show path to python interpreter
49
50
    # (bzr.exe use python interpreter from pythonXY.dll
50
51
    # but sys.executable point to bzr.exe itself)
51
 
    if not hasattr(sys, 'frozen'):  # check for bzr.exe
52
 
        # python executable
 
52
    # however, sys.frozen exists if running from bzr.exe
 
53
    # see http://www.py2exe.org/index.cgi/Py2exeEnvironment
 
54
    if getattr(sys, 'frozen', None) is None: # if not bzr.exe
53
55
        to_file.write(sys.executable + ' ')
54
56
    else:
55
57
        # pythonXY.dll
62
64
 
63
65
    to_file.write("  Python standard library:" + ' ')
64
66
    to_file.write(os.path.dirname(os.__file__) + '\n')
 
67
    to_file.write("  Platform: %s\n" % platform.platform(aliased=1))
65
68
    to_file.write("  bzrlib: ")
66
69
    if len(bzrlib.__path__) > 1:
67
70
        # print repr, which is a good enough way of making it clear it's
70
73
    else:
71
74
        to_file.write(bzrlib.__path__[0] + '\n')
72
75
    if show_config:
73
 
        config_dir = os.path.normpath(config.config_dir())  # use native slashes
 
76
        config_dir = osutils.normpath(config.config_dir())  # use native slashes
74
77
        if not isinstance(config_dir, unicode):
75
78
            config_dir = config_dir.decode(osutils.get_user_encoding())
76
79
        to_file.write("  Bazaar configuration: %s\n" % (config_dir,))
79
82
    if show_copyright:
80
83
        to_file.write('\n')
81
84
        to_file.write(bzrlib.__copyright__ + '\n')
82
 
        to_file.write("http://bazaar-vcs.org/\n")
 
85
        to_file.write("http://bazaar.canonical.com/\n")
83
86
        to_file.write('\n')
84
87
        to_file.write("bzr comes with ABSOLUTELY NO WARRANTY.  bzr is free software, and\n")
85
88
        to_file.write("you may use, modify and redistribute it under the terms of the GNU\n")
86
89
        to_file.write("General Public License version 2 or later.\n")
 
90
        to_file.write("\nBazaar is part of the GNU Project to produce a free operating "
 
91
                "system.\n")
87
92
    to_file.write('\n')
88
93
 
89
94
 
93
98
    If bzr is not being run from its working tree, returns None.
94
99
    """
95
100
    try:
96
 
        control = bzrdir.BzrDir.open_containing(__file__)[0]
 
101
        control = controldir.ControlDir.open_containing(__file__)[0]
97
102
        return control.open_workingtree(recommend_upgrade=False)
98
103
    except (errors.NotBranchError, errors.UnknownFormatError,
99
104
            errors.NoWorkingTree):