/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: 2012-07-09 15:23:26 UTC
  • mto: This revision was merged to the branch mainline in revision 794.
  • Revision ID: jelmer@samba.org-20120709152326-dzxb8zoz0btull7n
Remove bzr-notify.

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
 
36
38
import os
37
39
import sys
38
40
 
51
53
 
52
54
import bzrlib
53
55
import bzrlib.api
54
 
from bzrlib import (
55
 
    branch,
56
 
    config,
57
 
    errors,
58
 
    )
59
56
from bzrlib.commands import plugin_cmds
60
57
 
61
 
from info import (
 
58
from bzrlib.plugins.gtk.info import (
62
59
    bzr_plugin_version as version_info,
63
60
    bzr_compatible_versions,
64
61
    )
75
72
    from bzrlib.trace import warning
76
73
    warning("Not running as bzrlib.plugins.gtk, things may break.")
77
74
 
78
 
def import_pygtk():
79
 
    try:
80
 
        import pygtk
81
 
    except ImportError:
82
 
        raise errors.BzrCommandError("PyGTK not installed.")
83
 
    pygtk.require('2.0')
84
 
    return pygtk
85
 
 
86
75
 
87
76
def set_ui_factory():
88
 
    import_pygtk()
89
 
    from ui import GtkUIFactory
 
77
    from bzrlib.plugins.gtk.ui import GtkUIFactory
90
78
    import bzrlib.ui
91
79
    bzrlib.ui.ui_factory = GtkUIFactory()
92
80
 
109
97
    return data_path(os.path.join('icons', *args))
110
98
 
111
99
 
112
 
def open_display():
113
 
    pygtk = import_pygtk()
114
 
    try:
115
 
        import gtk
116
 
    except RuntimeError, e:
117
 
        if str(e) == "could not open display":
118
 
            raise NoDisplayError
119
 
    set_ui_factory()
120
 
    return gtk
121
 
 
122
 
 
123
100
commands = {
124
101
    "gannotate": ["gblame", "gpraise"],
125
102
    "gbranch": [],
132
109
    "gmissing": [],
133
110
    "gpreferences": [],
134
111
    "gpush": [],
135
 
    "gselftest": [],
136
112
    "gsend": [],
137
113
    "gstatus": ["gst"],
138
114
    "gtags": [],
151
127
                              "bzrlib.plugins.gtk.commands")
152
128
 
153
129
def save_commit_messages(*args):
154
 
    from bzrlib.plugins.gtk import commit
155
 
    commit.save_commit_messages(*args)
156
 
 
157
 
branch.Branch.hooks.install_named_hook('post_uncommit',
158
 
                                       save_commit_messages,
159
 
                                       "Saving commit messages for gcommit")
160
 
 
161
 
class NoDisplayError(errors.BzrCommandError):
162
 
    """gtk could not find a proper display"""
163
 
 
164
 
    def __str__(self):
165
 
        return "No DISPLAY. Unable to run GTK+ application."
166
 
 
167
 
 
168
 
credential_store_registry = getattr(config, "credential_store_registry", None)
169
 
if credential_store_registry is not None:
170
 
    try:
171
 
        credential_store_registry.register_lazy(
172
 
            "gnome-keyring", "bzrlib.plugins.gtk.keyring", "GnomeKeyringCredentialStore",
173
 
            help="The GNOME Keyring.", fallback=True)
174
 
    except TypeError:
175
 
    # Fallback credentials stores were introduced in Bazaar 1.15
176
 
        credential_store_registry.register_lazy(
177
 
            "gnome-keyring", "bzrlib.plugins.gtk.keyring", "GnomeKeyringCredentialStore",
178
 
            help="The GNOME Keyring.")
 
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')
179
156
 
180
157
 
181
158
def load_tests(basic_tests, module, loader):
187
164
    try:
188
165
        result = basic_tests
189
166
        try:
190
 
            import_pygtk()
191
 
        except errors.BzrCommandError:
 
167
            import gi.repository.Gtk
 
168
        except ImportError:
192
169
            return basic_tests
193
170
        basic_tests.addTest(loader.loadTestsFromModuleNames(
194
171
                ["%s.%s" % (__name__, tmn) for tmn in testmod_names]))
198
175
            sys.setdefaultencoding(default_encoding)
199
176
    return basic_tests
200
177
 
201
 
 
202
 
def _i18n(text):
203
 
    # Stub until we support proper i18n
204
 
    return text