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