/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Jelmer Vernooij
  • Date: 2010-06-17 20:25:04 UTC
  • mfrom: (690 realtrunk)
  • mto: This revision was merged to the branch mainline in revision 691.
  • Revision ID: jelmer@samba.org-20100617202504-7yln6khkqftlun6i
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
"""Graphical support for Bazaar using GTK.
16
16
 
17
17
This plugin includes:
18
 
gannotate         GTK+ annotate.
19
 
gbranch           GTK+ branching.
20
 
gcheckout         GTK+ checkout.
 
18
gannotate         GTK+ annotate. 
 
19
gbranch           GTK+ branching. 
 
20
gcheckout         GTK+ checkout. 
21
21
gcommit           GTK+ commit dialog.
22
 
gconflicts        GTK+ conflicts.
23
 
gdiff             Show differences in working tree in a GTK+ Window.
 
22
gconflicts        GTK+ conflicts. 
 
23
gdiff             Show differences in working tree in a GTK+ Window. 
24
24
ginit             Initialise a new branch.
25
25
gloom             GTK+ loom browse dialog
26
26
gmerge            GTK+ merge dialog
27
 
gmissing          GTK+ missing revisions dialog.
28
 
gpreferences      GTK+ preferences dialog.
 
27
gmissing          GTK+ missing revisions dialog. 
 
28
gpreferences      GTK+ preferences dialog. 
29
29
gpush             GTK+ push.
30
30
gsend             GTK+ send merge directive.
31
31
gstatus           GTK+ status dialog.
32
32
gtags             Manage branch tags.
33
 
visualise         Graphically visualise this branch.
 
33
visualise         Graphically visualise this branch. 
34
34
"""
35
35
 
36
 
from __future__ import absolute_import
37
 
 
38
36
import os
39
37
import sys
40
38
 
53
51
 
54
52
import bzrlib
55
53
import bzrlib.api
 
54
from bzrlib import (
 
55
    branch,
 
56
    config,
 
57
    errors,
 
58
    )
56
59
from bzrlib.commands import plugin_cmds
57
60
 
58
 
from bzrlib.plugins.gtk.info import (
59
 
    bzr_plugin_version as version_info,
60
 
    bzr_compatible_versions,
61
 
    )
 
61
 
 
62
version_info = (0, 99, 0, 'dev', 1)
62
63
 
63
64
if version_info[3] == 'final':
64
65
    version_string = '%d.%d.%d' % version_info[:3]
66
67
    version_string = '%d.%d.%d%s%d' % version_info
67
68
__version__ = version_string
68
69
 
69
 
bzrlib.api.require_any_api(bzrlib, bzr_compatible_versions)
 
70
COMPATIBLE_BZR_VERSIONS = [(1, 6, 0), (1, 7, 0), (1, 8, 0), (1, 9, 0),
 
71
                           (1, 10, 0), (1, 11, 0), (1, 12, 0), (1, 13, 0),
 
72
                           (1, 15, 0),
 
73
                           (1, 17, 0),
 
74
                           (2, 1, 0),
 
75
                           (2, 2, 0),
 
76
                           ]
 
77
 
 
78
bzrlib.api.require_any_api(bzrlib, COMPATIBLE_BZR_VERSIONS)
70
79
 
71
80
if __name__ != 'bzrlib.plugins.gtk':
72
81
    from bzrlib.trace import warning
73
82
    warning("Not running as bzrlib.plugins.gtk, things may break.")
74
83
 
 
84
def import_pygtk():
 
85
    try:
 
86
        import pygtk
 
87
    except ImportError:
 
88
        raise errors.BzrCommandError("PyGTK not installed.")
 
89
    pygtk.require('2.0')
 
90
    return pygtk
 
91
 
75
92
 
76
93
def set_ui_factory():
77
 
    from bzrlib.plugins.gtk.ui import GtkUIFactory
 
94
    import_pygtk()
 
95
    from ui import GtkUIFactory
78
96
    import bzrlib.ui
79
97
    bzrlib.ui.ui_factory = GtkUIFactory()
80
98
 
97
115
    return data_path(os.path.join('icons', *args))
98
116
 
99
117
 
 
118
def open_display():
 
119
    pygtk = import_pygtk()
 
120
    try:
 
121
        import gtk
 
122
    except RuntimeError, e:
 
123
        if str(e) == "could not open display":
 
124
            raise NoDisplayError
 
125
    set_ui_factory()
 
126
    return gtk
 
127
 
 
128
 
100
129
commands = {
101
130
    "gannotate": ["gblame", "gpraise"],
102
131
    "gbranch": [],
109
138
    "gmissing": [],
110
139
    "gpreferences": [],
111
140
    "gpush": [],
 
141
    "gselftest": [],
112
142
    "gsend": [],
113
143
    "gstatus": ["gst"],
114
144
    "gtags": [],
127
157
                              "bzrlib.plugins.gtk.commands")
128
158
 
129
159
def save_commit_messages(*args):
130
 
    from bzrlib.plugins.gtk import commitmsgs
131
 
    commitmsgs.save_commit_messages(*args)
132
 
 
133
 
try:
134
 
    from bzrlib.hooks import install_lazy_named_hook
135
 
except ImportError:
136
 
    from bzrlib.branch import Branch
137
 
    Branch.hooks.install_named_hook('post_uncommit',
138
 
                                    save_commit_messages,
139
 
                                    "Saving commit messages for gcommit")
140
 
else:
141
 
    install_lazy_named_hook("bzrlib.branch", "Branch.hooks",
142
 
        'post_uncommit', save_commit_messages, "Saving commit messages for gcommit")
143
 
 
144
 
try:
145
 
    from bzrlib.registry import register_lazy
146
 
except ImportError:
147
 
    from bzrlib import config
148
 
    option_registry = getattr(config, "option_registry", None)
149
 
    if option_registry is not None:
150
 
        config.option_registry.register_lazy('nautilus_integration',
151
 
                'bzrlib.plugins.gtk.config', 'opt_nautilus_integration')
152
 
else:
153
 
    register_lazy("bzrlib.config", "option_registry",
154
 
        'nautilus_integration', 'bzrlib.plugins.gtk.config',
155
 
        'opt_nautilus_integration')
 
160
    from bzrlib.plugins.gtk import commit
 
161
    commit.save_commit_messages(*args)
 
162
 
 
163
branch.Branch.hooks.install_named_hook('post_uncommit',
 
164
                                       save_commit_messages,
 
165
                                       "Saving commit messages for gcommit")
 
166
 
 
167
class NoDisplayError(errors.BzrCommandError):
 
168
    """gtk could not find a proper display"""
 
169
 
 
170
    def __str__(self):
 
171
        return "No DISPLAY. Unable to run GTK+ application."
 
172
 
 
173
 
 
174
credential_store_registry = getattr(config, "credential_store_registry", None)
 
175
if credential_store_registry is not None:
 
176
    try:
 
177
        credential_store_registry.register_lazy(
 
178
            "gnome-keyring", "bzrlib.plugins.gtk.keyring", "GnomeKeyringCredentialStore",
 
179
            help="The GNOME Keyring.", fallback=True)
 
180
    except TypeError:
 
181
    # Fallback credentials stores were introduced in Bazaar 1.15
 
182
        credential_store_registry.register_lazy(
 
183
            "gnome-keyring", "bzrlib.plugins.gtk.keyring", "GnomeKeyringCredentialStore",
 
184
            help="The GNOME Keyring.")
156
185
 
157
186
 
158
187
def load_tests(basic_tests, module, loader):
164
193
    try:
165
194
        result = basic_tests
166
195
        try:
167
 
            import gi.repository.Gtk
168
 
        except ImportError:
 
196
            import_pygtk()
 
197
        except errors.BzrCommandError:
169
198
            return basic_tests
170
199
        basic_tests.addTest(loader.loadTestsFromModuleNames(
171
200
                ["%s.%s" % (__name__, tmn) for tmn in testmod_names]))
175
204
            sys.setdefaultencoding(default_encoding)
176
205
    return basic_tests
177
206
 
 
207
 
 
208
def _i18n(text):
 
209
    # Stub until we support proper i18n
 
210
    return text