/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: Curtis Hovey
  • Date: 2012-02-05 05:14:11 UTC
  • mto: This revision was merged to the branch mainline in revision 775.
  • Revision ID: sinzui.is@verizon.net-20120205051411-y9ra08wae1wsfv52
Remove unneeded gtksourceview1 support.

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
 
55
56
from bzrlib import (
56
57
    branch,
57
58
    config,
58
 
    errors,
59
59
    )
60
60
from bzrlib.commands import plugin_cmds
61
61
 
62
 
 
63
 
version_info = (0, 99, 0, 'dev', 1)
 
62
from bzrlib.plugins.gtk.info import (
 
63
    bzr_plugin_version as version_info,
 
64
    bzr_compatible_versions,
 
65
    )
64
66
 
65
67
if version_info[3] == 'final':
66
68
    version_string = '%d.%d.%d' % version_info[:3]
68
70
    version_string = '%d.%d.%d%s%d' % version_info
69
71
__version__ = version_string
70
72
 
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)
 
73
bzrlib.api.require_any_api(bzrlib, bzr_compatible_versions)
80
74
 
81
75
if __name__ != 'bzrlib.plugins.gtk':
82
76
    from bzrlib.trace import warning
83
77
    warning("Not running as bzrlib.plugins.gtk, things may break.")
84
78
 
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
79
 
94
80
def set_ui_factory():
95
 
    import_pygtk()
96
 
    from ui import GtkUIFactory
 
81
    from bzrlib.plugins.gtk.ui import GtkUIFactory
97
82
    import bzrlib.ui
98
83
    bzrlib.ui.ui_factory = GtkUIFactory()
99
84
 
116
101
    return data_path(os.path.join('icons', *args))
117
102
 
118
103
 
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
104
commands = {
131
105
    "gannotate": ["gblame", "gpraise"],
132
106
    "gbranch": [],
135
109
    "gconflicts": [],
136
110
    "gdiff": [],
137
111
    "ginit": [],
138
 
    "ginfo": [],
139
112
    "gmerge": [],
140
113
    "gmissing": [],
141
114
    "gpreferences": [],
142
115
    "gpush": [],
143
 
    "gselftest": [],
144
116
    "gsend": [],
145
117
    "gstatus": ["gst"],
146
118
    "gtags": [],
159
131
                              "bzrlib.plugins.gtk.commands")
160
132
 
161
133
def save_commit_messages(*args):
162
 
    from bzrlib.plugins.gtk import commit
163
 
    commit.save_commit_messages(*args)
 
134
    from bzrlib.plugins.gtk import commitmsgs
 
135
    commitmsgs.save_commit_messages(*args)
164
136
 
165
137
branch.Branch.hooks.install_named_hook('post_uncommit',
166
138
                                       save_commit_messages,
167
139
                                       "Saving commit messages for gcommit")
168
140
 
169
 
import gettext
170
 
gettext.install('olive-gtk')
171
 
 
172
 
# Let's create a specialized alias to protect '_' from being erased by other
173
 
# uses of '_' as an anonymous variable (think pdb for one).
174
 
_i18n = gettext.gettext
175
 
 
176
 
class NoDisplayError(errors.BzrCommandError):
177
 
    """gtk could not find a proper display"""
178
 
 
179
 
    def __str__(self):
180
 
        return "No DISPLAY. Unable to run GTK+ application."
181
 
 
182
 
 
183
 
credential_store_registry = getattr(config, "credential_store_registry", None)
184
 
if credential_store_registry is not None:
185
 
    try:
186
 
        credential_store_registry.register_lazy(
187
 
            "gnome-keyring", "bzrlib.plugins.gtk.keyring", "GnomeKeyringCredentialStore",
188
 
            help="The GNOME Keyring.", fallback=True)
189
 
    except TypeError:
190
 
    # Fallback credentials stores were introduced in Bazaar 1.15
191
 
        credential_store_registry.register_lazy(
192
 
            "gnome-keyring", "bzrlib.plugins.gtk.keyring", "GnomeKeyringCredentialStore",
193
 
            help="The GNOME Keyring.")
194
 
 
 
141
option_registry = getattr(config, "option_registry", None)
 
142
if option_registry is not None:
 
143
    config.option_registry.register_lazy('nautilus_integration',
 
144
            'bzrlib.plugins.gtk.config', 'opt_nautilus_integration')
195
145
 
196
146
def load_tests(basic_tests, module, loader):
197
147
    testmod_names = [
202
152
    try:
203
153
        result = basic_tests
204
154
        try:
205
 
            import_pygtk()
206
 
        except errors.BzrCommandError:
 
155
            import gi.repository.Gtk
 
156
        except ImportError:
207
157
            return basic_tests
208
158
        basic_tests.addTest(loader.loadTestsFromModuleNames(
209
159
                ["%s.%s" % (__name__, tmn) for tmn in testmod_names]))
212
162
            reload(sys)
213
163
            sys.setdefaultencoding(default_encoding)
214
164
    return basic_tests
 
165