/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: Szilveszter Farkas (Phanatic)
  • Date: 2007-01-30 16:05:15 UTC
  • mto: (157.1.2 trunk) (170.1.3 trunk)
  • mto: This revision was merged to the branch mainline in revision 138.
  • Revision ID: szilveszter.farkas@gmail.com-20070130160515-1mh5hm2ppdmuq6l1
Added revert functionality to the context menu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
# along with this program; if not, write to the Free Software
13
13
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
14
14
 
15
 
"""Graphical support for Bazaar using GTK.
16
 
 
17
 
This plugin includes:
18
 
gannotate         GTK+ annotate. 
19
 
gbranch           GTK+ branching. 
20
 
gcheckout         GTK+ checkout. 
21
 
gcommit           GTK+ commit dialog.
22
 
gconflicts        GTK+ conflicts. 
23
 
gdiff             Show differences in working tree in a GTK+ Window. 
24
 
ginit             Initialise a new branch.
25
 
gmerge            GTK+ merge dialog
26
 
gmissing          GTK+ missing revisions dialog. 
27
 
gpreferences      GTK+ preferences dialog. 
28
 
gpush             GTK+ push.
29
 
gsend             GTK+ send merge directive.
30
 
gstatus           GTK+ status dialog.
31
 
gtags             Manage branch tags.
32
 
visualise         Graphically visualise this branch. 
33
 
"""
34
 
 
35
 
import sys
36
 
 
37
 
import bzrlib
38
 
 
39
 
version_info = (0, 95, 0, 'dev', 1)
40
 
 
41
 
if version_info[3] == 'final':
42
 
    version_string = '%d.%d.%d' % version_info[:3]
43
 
else:
44
 
    version_string = '%d.%d.%d%s%d' % version_info
45
 
__version__ = version_string
46
 
 
47
 
required_bzrlib = (1, 3)
48
 
 
49
 
def check_bzrlib_version(desired):
50
 
    """Check that bzrlib is compatible.
51
 
 
52
 
    If version is < bzr-gtk version, assume incompatible.
53
 
    """
54
 
    bzrlib_version = bzrlib.version_info[:2]
55
 
    try:
56
 
        from bzrlib.trace import warning
57
 
    except ImportError:
58
 
        # get the message out any way we can
59
 
        from warnings import warn as warning
60
 
    if bzrlib_version < desired:
61
 
        from bzrlib.errors import BzrError
62
 
        warning('Installed Bazaar version %s is too old to be used with bzr-gtk'
63
 
                ' %s.' % (bzrlib.__version__, __version__))
64
 
        raise BzrError('Version mismatch: %r, %r' % (version_info, bzrlib.version_info) )
65
 
 
66
 
 
67
 
if version_info[2] == "final":
68
 
    check_bzrlib_version(required_bzrlib)
69
 
 
70
 
from bzrlib.trace import warning
71
 
if __name__ != 'bzrlib.plugins.gtk':
72
 
    warning("Not running as bzrlib.plugins.gtk, things may break.")
73
 
 
74
 
from bzrlib.lazy_import import lazy_import
75
 
lazy_import(globals(), """
76
 
from bzrlib import (
77
 
    branch,
78
 
    builtins,
79
 
    errors,
80
 
    merge_directive,
81
 
    workingtree,
82
 
    )
83
 
""")
84
 
 
 
15
"""GTK+ frontends to Bazaar commands """
 
16
 
 
17
from bzrlib import errors
85
18
from bzrlib.commands import Command, register_command, display_command
86
19
from bzrlib.errors import NotVersionedError, BzrCommandError, NoSuchFile
 
20
from bzrlib.commands import Command, register_command
87
21
from bzrlib.option import Option
 
22
from bzrlib.branch import Branch
 
23
from bzrlib.workingtree import WorkingTree
 
24
from bzrlib.bzrdir import BzrDir
88
25
 
89
26
import os.path
90
27
 
 
28
__version__ = '0.13.0'
 
29
 
 
30
 
91
31
def import_pygtk():
92
32
    try:
93
33
        import pygtk
98
38
 
99
39
 
100
40
def set_ui_factory():
101
 
    import_pygtk()
102
 
    from ui import GtkUIFactory
 
41
    pygtk = import_pygtk()
 
42
    from olive.ui import GtkUIFactory
103
43
    import bzrlib.ui
104
44
    bzrlib.ui.ui_factory = GtkUIFactory()
105
45
 
106
46
 
107
 
def data_basedirs():
108
 
    return [os.path.dirname(__file__),
109
 
             "/usr/share/bzr-gtk", 
110
 
             "/usr/local/share/bzr-gtk"]
111
 
 
112
 
 
113
 
def data_path(*args):
114
 
    for basedir in data_basedirs():
115
 
        path = os.path.join(basedir, *args)
116
 
        if os.path.exists(path):
117
 
            return path
118
 
    return None
119
 
 
120
 
 
121
 
def icon_path(*args):
122
 
    return data_path(os.path.join('icons', *args))
123
 
 
124
 
 
125
 
def open_display():
126
 
    pygtk = import_pygtk()
127
 
    try:
128
 
        import gtk
129
 
    except RuntimeError, e:
130
 
        if str(e) == "could not open display":
131
 
            raise NoDisplayError
132
 
    set_ui_factory()
133
 
    return gtk
134
 
 
135
 
 
136
 
class GTKCommand(Command):
137
 
    """Abstract class providing GTK specific run commands."""
138
 
 
139
 
    def run(self):
140
 
        open_display()
141
 
        dialog = self.get_gtk_dialog(os.path.abspath('.'))
142
 
        dialog.run()
143
 
 
144
 
 
145
 
class cmd_gbranch(GTKCommand):
 
47
class cmd_gbranch(Command):
146
48
    """GTK+ branching.
147
49
    
148
50
    """
149
51
 
150
 
    def get_gtk_dialog(self, path):
151
 
        from bzrlib.plugins.gtk.branch import BranchDialog
152
 
        return BranchDialog(path)
153
 
 
154
 
 
155
 
class cmd_gcheckout(GTKCommand):
156
 
    """ GTK+ checkout.
157
 
    
158
 
    """
159
 
    
160
 
    def get_gtk_dialog(self, path):
161
 
        from bzrlib.plugins.gtk.checkout import CheckoutDialog
162
 
        return CheckoutDialog(path)
163
 
 
164
 
 
165
 
 
166
 
class cmd_gpush(GTKCommand):
167
 
    """ GTK+ push.
168
 
    
169
 
    """
170
 
    takes_args = [ "location?" ]
171
 
 
172
 
    def run(self, location="."):
173
 
        (br, path) = branch.Branch.open_containing(location)
174
 
        open_display()
175
 
        from push import PushDialog
176
 
        dialog = PushDialog(br.repository, br.last_revision(), br)
177
 
        dialog.run()
178
 
 
179
 
 
180
 
 
181
 
class cmd_gdiff(GTKCommand):
 
52
    def run(self):
 
53
        pygtk = import_pygtk()
 
54
        try:
 
55
            import gtk
 
56
        except RuntimeError, e:
 
57
            if str(e) == "could not open display":
 
58
                raise NoDisplayError
 
59
 
 
60
        from bzrlib.plugins.gtk.olive.branch import BranchDialog
 
61
 
 
62
        set_ui_factory()
 
63
        dialog = BranchDialog(os.path.abspath('.'))
 
64
        dialog.window.connect("destroy", lambda w: gtk.main_quit())
 
65
        dialog.display()
 
66
        
 
67
        gtk.main()
 
68
 
 
69
register_command(cmd_gbranch)
 
70
 
 
71
class cmd_gdiff(Command):
182
72
    """Show differences in working tree in a GTK+ Window.
183
73
    
184
74
    Otherwise, all changes for the tree are listed.
189
79
    @display_command
190
80
    def run(self, revision=None, filename=None):
191
81
        set_ui_factory()
192
 
        wt = workingtree.WorkingTree.open_containing(".")[0]
193
 
        wt.lock_read()
194
 
        try:
195
 
            branch = wt.branch
196
 
            if revision is not None:
197
 
                if len(revision) == 1:
198
 
                    tree1 = wt
199
 
                    revision_id = revision[0].as_revision_id(tree1.branch)
200
 
                    tree2 = branch.repository.revision_tree(revision_id)
201
 
                elif len(revision) == 2:
202
 
                    revision_id_0 = revision[0].as_revision_id(branch)
203
 
                    tree2 = branch.repository.revision_tree(revision_id_0)
204
 
                    revision_id_1 = revision[1].as_revision_id(branch)
205
 
                    tree1 = branch.repository.revision_tree(revision_id_1)
206
 
            else:
 
82
        wt = WorkingTree.open_containing(".")[0]
 
83
        branch = wt.branch
 
84
        if revision is not None:
 
85
            if len(revision) == 1:
207
86
                tree1 = wt
208
 
                tree2 = tree1.basis_tree()
209
 
 
210
 
            from diff import DiffWindow
211
 
            import gtk
212
 
            window = DiffWindow()
213
 
            window.connect("destroy", gtk.main_quit)
214
 
            window.set_diff("Working Tree", tree1, tree2)
215
 
            if filename is not None:
216
 
                tree_filename = wt.relpath(filename)
217
 
                try:
218
 
                    window.set_file(tree_filename)
219
 
                except NoSuchFile:
220
 
                    if (tree1.path2id(tree_filename) is None and 
221
 
                        tree2.path2id(tree_filename) is None):
222
 
                        raise NotVersionedError(filename)
223
 
                    raise BzrCommandError('No changes found for file "%s"' % 
224
 
                                          filename)
225
 
            window.show()
226
 
 
227
 
            gtk.main()
228
 
        finally:
229
 
            wt.unlock()
230
 
 
231
 
 
232
 
def start_viz_window(branch, revisions, limit=None):
233
 
    """Start viz on branch with revision revision.
234
 
    
235
 
    :return: The viz window object.
236
 
    """
237
 
    from viz import BranchWindow
238
 
    return BranchWindow(branch, revisions, limit)
239
 
 
 
87
                revision_id = revision[0].in_history(branch).rev_id
 
88
                tree2 = branch.repository.revision_tree(revision_id)
 
89
            elif len(revision) == 2:
 
90
                revision_id_0 = revision[0].in_history(branch).rev_id
 
91
                tree2 = branch.repository.revision_tree(revision_id_0)
 
92
                revision_id_1 = revision[1].in_history(branch).rev_id
 
93
                tree1 = branch.repository.revision_tree(revision_id_1)
 
94
        else:
 
95
            tree1 = wt
 
96
            tree2 = tree1.basis_tree()
 
97
 
 
98
        from viz.diffwin import DiffWindow
 
99
        import gtk
 
100
        window = DiffWindow()
 
101
        window.connect("destroy", lambda w: gtk.main_quit())
 
102
        window.set_diff("Working Tree", tree1, tree2)
 
103
        if filename is not None:
 
104
            tree_filename = wt.relpath(filename)
 
105
            try:
 
106
                window.set_file(tree_filename)
 
107
            except NoSuchFile:
 
108
                if (tree1.inventory.path2id(tree_filename) is None and 
 
109
                    tree2.inventory.path2id(tree_filename) is None):
 
110
                    raise NotVersionedError(filename)
 
111
                raise BzrCommandError('No changes found for file "%s"' % 
 
112
                                      filename)
 
113
        window.show()
 
114
 
 
115
        gtk.main()
 
116
 
 
117
register_command(cmd_gdiff)
240
118
 
241
119
class cmd_visualise(Command):
242
120
    """Graphically visualise this branch.
249
127
    """
250
128
    takes_options = [
251
129
        "revision",
252
 
        Option('limit', "Maximum number of revisions to display.",
 
130
        Option('limit', "maximum number of revisions to display",
253
131
               int, 'count')]
254
 
    takes_args = [ "locations*" ]
 
132
    takes_args = [ "location?" ]
255
133
    aliases = [ "visualize", "vis", "viz" ]
256
134
 
257
 
    def run(self, locations_list, revision=None, limit=None):
 
135
    def run(self, location=".", revision=None, limit=None):
258
136
        set_ui_factory()
259
 
        if locations_list is None:
260
 
            locations_list = ["."]
261
 
        revids = []
262
 
        for location in locations_list:
263
 
            (br, path) = branch.Branch.open_containing(location)
 
137
        (branch, path) = Branch.open_containing(location)
 
138
        branch.lock_read()
 
139
        branch.repository.lock_read()
 
140
        try:
264
141
            if revision is None:
265
 
                revids.append(br.last_revision())
 
142
                revid = branch.last_revision()
 
143
                if revid is None:
 
144
                    return
266
145
            else:
267
 
                revids.append(revision[0].as_revision_id(br))
268
 
        import gtk
269
 
        pp = start_viz_window(br, revids, limit)
270
 
        pp.connect("destroy", lambda w: gtk.main_quit())
271
 
        pp.show()
272
 
        gtk.main()
273
 
 
274
 
 
275
 
class cmd_gannotate(GTKCommand):
 
146
                (revno, revid) = revision[0].in_history(branch)
 
147
 
 
148
            from viz.bzrkapp import BzrkApp
 
149
                
 
150
            app = BzrkApp()
 
151
            app.show(branch, revid, limit)
 
152
        finally:
 
153
            branch.repository.unlock()
 
154
            branch.unlock()
 
155
        app.main()
 
156
 
 
157
 
 
158
register_command(cmd_visualise)
 
159
 
 
160
class cmd_gannotate(Command):
276
161
    """GTK+ annotate.
277
162
    
278
163
    Browse changes to FILENAME line by line in a GTK+ window.
280
165
 
281
166
    takes_args = ["filename", "line?"]
282
167
    takes_options = [
283
 
        Option("all", help="Show annotations on all lines."),
284
 
        Option("plain", help="Don't highlight annotation lines."),
 
168
        Option("all", help="show annotations on all lines"),
 
169
        Option("plain", help="don't highlight annotation lines"),
285
170
        Option("line", type=int, argname="lineno",
286
 
               help="Jump to specified line number."),
 
171
               help="jump to specified line number"),
287
172
        "revision",
288
173
    ]
289
174
    aliases = ["gblame", "gpraise"]
290
175
    
291
176
    def run(self, filename, all=False, plain=False, line='1', revision=None):
292
 
        gtk = open_display()
 
177
        pygtk = import_pygtk()
 
178
 
 
179
        try:
 
180
            import gtk
 
181
        except RuntimeError, e:
 
182
            if str(e) == "could not open display":
 
183
                raise NoDisplayError
 
184
        set_ui_factory()
293
185
 
294
186
        try:
295
187
            line = int(line)
299
191
 
300
192
        from annotate.gannotate import GAnnotateWindow
301
193
        from annotate.config import GAnnotateConfig
302
 
        from bzrlib.bzrdir import BzrDir
303
194
 
304
 
        wt, br, path = BzrDir.open_containing_tree_or_branch(filename)
305
 
        if wt is not None:
306
 
            tree = wt
307
 
        else:
308
 
            tree = br.basis_tree()
 
195
        try:
 
196
            (tree, path) = WorkingTree.open_containing(filename)
 
197
            branch = tree.branch
 
198
        except errors.NoWorkingTree:
 
199
            (branch, path) = Branch.open_containing(filename)
 
200
            tree = branch.basis_tree()
309
201
 
310
202
        file_id = tree.path2id(path)
311
203
 
314
206
        if revision is not None:
315
207
            if len(revision) != 1:
316
208
                raise BzrCommandError("Only 1 revion may be specified.")
317
 
            revision_id = revision[0].as_revision_id(br)
318
 
            tree = br.repository.revision_tree(revision_id)
 
209
            revision_id = revision[0].in_history(branch).rev_id
 
210
            tree = branch.repository.revision_tree(revision_id)
319
211
        else:
320
212
            revision_id = getattr(tree, 'get_revision_id', lambda: None)()
321
213
 
322
 
        window = GAnnotateWindow(all, plain, branch=br)
 
214
        window = GAnnotateWindow(all, plain)
323
215
        window.connect("destroy", lambda w: gtk.main_quit())
 
216
        window.set_title(path + " - gannotate")
324
217
        config = GAnnotateConfig(window)
325
218
        window.show()
326
 
        br.lock_read()
327
 
        if wt is not None:
328
 
            wt.lock_read()
 
219
        branch.lock_read()
329
220
        try:
330
 
            window.annotate(tree, br, file_id)
331
 
            window.jump_to_line(line)
332
 
            gtk.main()
 
221
            window.annotate(tree, branch, file_id)
333
222
        finally:
334
 
            br.unlock()
335
 
            if wt is not None:
336
 
                wt.unlock()
337
 
 
338
 
 
339
 
 
340
 
class cmd_gcommit(GTKCommand):
 
223
            branch.unlock()
 
224
        window.jump_to_line(line)
 
225
        
 
226
        gtk.main()
 
227
 
 
228
register_command(cmd_gannotate)
 
229
 
 
230
class cmd_gcommit(Command):
341
231
    """GTK+ commit dialog
342
232
 
343
233
    Graphical user interface for committing revisions"""
344
 
 
345
 
    aliases = [ "gci" ]
 
234
    
346
235
    takes_args = []
347
236
    takes_options = []
348
237
 
349
238
    def run(self, filename=None):
350
239
        import os
351
 
        open_display()
352
 
        from commit import CommitDialog
 
240
        pygtk = import_pygtk()
 
241
 
 
242
        try:
 
243
            import gtk
 
244
        except RuntimeError, e:
 
245
            if str(e) == "could not open display":
 
246
                raise NoDisplayError
 
247
 
 
248
        set_ui_factory()
 
249
        from olive.commit import CommitDialog
 
250
        from bzrlib.commit import Commit
353
251
        from bzrlib.errors import (BzrCommandError,
354
252
                                   NotBranchError,
355
 
                                   NoWorkingTree)
 
253
                                   NoWorkingTree,
 
254
                                   PointlessCommit,
 
255
                                   ConflictsInTree,
 
256
                                   StrictCommitFailed)
356
257
 
357
258
        wt = None
358
 
        br = None
 
259
        branch = None
359
260
        try:
360
 
            (wt, path) = workingtree.WorkingTree.open_containing(filename)
361
 
            br = wt.branch
 
261
            (wt, path) = WorkingTree.open_containing(filename)
 
262
            branch = wt.branch
 
263
        except NotBranchError, e:
 
264
            path = e.path
362
265
        except NoWorkingTree, e:
363
 
            from dialog import error_dialog
364
 
            error_dialog(_i18n('Directory does not have a working tree'),
365
 
                         _i18n('Operation aborted.'))
366
 
            return 1 # should this be retval=3?
367
 
 
368
 
        # It is a good habit to keep things locked for the duration, but it
369
 
        # could cause difficulties if someone wants to do things in another
370
 
        # window... We could lock_read() until we actually go to commit
371
 
        # changes... Just a thought.
372
 
        wt.lock_write()
373
 
        try:
374
 
            dlg = CommitDialog(wt)
375
 
            return dlg.run()
376
 
        finally:
377
 
            wt.unlock()
378
 
 
379
 
 
380
 
class cmd_gstatus(GTKCommand):
381
 
    """GTK+ status dialog
382
 
 
383
 
    Graphical user interface for showing status 
384
 
    information."""
385
 
    
386
 
    aliases = [ "gst" ]
387
 
    takes_args = ['PATH?']
388
 
    takes_options = ['revision']
389
 
 
390
 
    def run(self, path='.', revision=None):
391
 
        import os
392
 
        gtk = open_display()
393
 
        from status import StatusDialog
394
 
        (wt, wt_path) = workingtree.WorkingTree.open_containing(path)
395
 
        
396
 
        if revision is not None:
397
 
            try:
398
 
                revision_id = revision[0].as_revision_id(wt.branch)
399
 
            except:
400
 
                from bzrlib.errors import BzrError
401
 
                raise BzrError('Revision %r doesn\'t exist' % revision[0].user_spec )
402
 
        else:
403
 
            revision_id = None
404
 
 
405
 
        status = StatusDialog(wt, wt_path, revision_id)
406
 
        status.connect("destroy", gtk.main_quit)
407
 
        status.run()
408
 
 
409
 
 
410
 
class cmd_gsend(GTKCommand):
411
 
    """GTK+ send merge directive.
412
 
 
413
 
    """
414
 
    def run(self):
415
 
        (br, path) = branch.Branch.open_containing(".")
416
 
        gtk = open_display()
417
 
        from bzrlib.plugins.gtk.mergedirective import SendMergeDirectiveDialog
418
 
        from StringIO import StringIO
419
 
        dialog = SendMergeDirectiveDialog(br)
420
 
        if dialog.run() == gtk.RESPONSE_OK:
421
 
            outf = StringIO()
422
 
            outf.writelines(dialog.get_merge_directive().to_lines())
423
 
            mail_client = br.get_config().get_mail_client()
424
 
            mail_client.compose_merge_request(dialog.get_mail_to(), "[MERGE]", 
425
 
                outf.getvalue())
426
 
 
427
 
            
428
 
 
429
 
 
430
 
class cmd_gconflicts(GTKCommand):
431
 
    """GTK+ conflicts.
432
 
    
433
 
    Select files from the list of conflicts and run an external utility to
434
 
    resolve them.
435
 
    """
436
 
    def run(self):
437
 
        (wt, path) = workingtree.WorkingTree.open_containing('.')
438
 
        open_display()
439
 
        from bzrlib.plugins.gtk.conflicts import ConflictsDialog
440
 
        dialog = ConflictsDialog(wt)
441
 
        dialog.run()
442
 
 
443
 
 
444
 
class cmd_gpreferences(GTKCommand):
445
 
    """ GTK+ preferences dialog.
446
 
 
447
 
    """
448
 
    def run(self):
449
 
        open_display()
450
 
        from bzrlib.plugins.gtk.preferences import PreferencesWindow
451
 
        dialog = PreferencesWindow()
452
 
        dialog.run()
453
 
 
454
 
 
455
 
class cmd_gmerge(Command):
456
 
    """ GTK+ merge dialog
457
 
    
458
 
    """
459
 
    takes_args = ["merge_from_path?"]
460
 
    def run(self, merge_from_path=None):
461
 
        from bzrlib import workingtree
462
 
        from bzrlib.plugins.gtk.dialog import error_dialog
463
 
        from bzrlib.plugins.gtk.merge import MergeDialog
464
 
        
465
 
        (wt, path) = workingtree.WorkingTree.open_containing('.')
466
 
        old_tree = wt.branch.repository.revision_tree(wt.branch.last_revision())
467
 
        delta = wt.changes_from(old_tree)
468
 
        if len(delta.added) or len(delta.removed) or len(delta.renamed) or len(delta.modified):
469
 
            error_dialog(_i18n('There are local changes in the branch'),
470
 
                         _i18n('Please commit or revert the changes before merging.'))
471
 
        else:
472
 
            parent_branch_path = wt.branch.get_parent()
473
 
            merge = MergeDialog(wt, path, parent_branch_path)
474
 
            response = merge.run()
475
 
            merge.destroy()
476
 
 
477
 
 
478
 
class cmd_gmissing(Command):
479
 
    """ GTK+ missing revisions dialog.
480
 
 
481
 
    """
482
 
    takes_args = ["other_branch?"]
483
 
    def run(self, other_branch=None):
484
 
        pygtk = import_pygtk()
485
 
        try:
486
 
            import gtk
487
 
        except RuntimeError, e:
488
 
            if str(e) == "could not open display":
489
 
                raise NoDisplayError
490
 
 
491
 
        from bzrlib.plugins.gtk.missing import MissingWindow
492
 
        from bzrlib.branch import Branch
493
 
 
494
 
        local_branch = Branch.open_containing(".")[0]
495
 
        if other_branch is None:
496
 
            other_branch = local_branch.get_parent()
497
 
            
498
 
            if other_branch is None:
499
 
                raise errors.BzrCommandError("No peer location known or specified.")
500
 
        remote_branch = Branch.open_containing(other_branch)[0]
501
 
        set_ui_factory()
502
 
        local_branch.lock_read()
503
 
        try:
504
 
            remote_branch.lock_read()
505
 
            try:
506
 
                dialog = MissingWindow(local_branch, remote_branch)
507
 
                dialog.run()
508
 
            finally:
509
 
                remote_branch.unlock()
510
 
        finally:
511
 
            local_branch.unlock()
512
 
 
513
 
 
514
 
class cmd_ginit(GTKCommand):
515
 
    def run(self):
516
 
        open_display()
517
 
        from initialize import InitDialog
518
 
        dialog = InitDialog(os.path.abspath(os.path.curdir))
519
 
        dialog.run()
520
 
 
521
 
 
522
 
class cmd_gtags(GTKCommand):
523
 
    def run(self):
524
 
        br = branch.Branch.open_containing('.')[0]
525
 
        
526
 
        gtk = open_display()
527
 
        from tags import TagsWindow
528
 
        window = TagsWindow(br)
529
 
        window.show()
530
 
        gtk.main()
531
 
 
532
 
 
533
 
commands = [
534
 
    cmd_gannotate, 
535
 
    cmd_gbranch,
536
 
    cmd_gcheckout, 
537
 
    cmd_gcommit, 
538
 
    cmd_gconflicts, 
539
 
    cmd_gdiff,
540
 
    cmd_ginit,
541
 
    cmd_gmerge,
542
 
    cmd_gmissing, 
543
 
    cmd_gpreferences, 
544
 
    cmd_gpush, 
545
 
    cmd_gsend,
546
 
    cmd_gstatus,
547
 
    cmd_gtags,
548
 
    cmd_visualise
549
 
    ]
550
 
 
551
 
for cmd in commands:
552
 
    register_command(cmd)
553
 
 
554
 
 
555
 
class cmd_gselftest(GTKCommand):
556
 
    """Version of selftest that displays a notification at the end"""
557
 
 
558
 
    takes_args = builtins.cmd_selftest.takes_args
559
 
    takes_options = builtins.cmd_selftest.takes_options
560
 
    _see_also = ['selftest']
561
 
 
562
 
    def run(self, *args, **kwargs):
563
 
        import cgi
564
 
        import sys
565
 
        default_encoding = sys.getdefaultencoding()
566
 
        # prevent gtk from blowing up later
567
 
        gtk = import_pygtk()
568
 
        # prevent gtk from messing with default encoding
569
 
        import pynotify
570
 
        if sys.getdefaultencoding() != default_encoding:
571
 
            reload(sys)
572
 
            sys.setdefaultencoding(default_encoding)
573
 
        result = builtins.cmd_selftest().run(*args, **kwargs)
574
 
        if result == 0:
575
 
            summary = 'Success'
576
 
            body = 'Selftest succeeded in "%s"' % os.getcwd()
577
 
        if result == 1:
578
 
            summary = 'Failure'
579
 
            body = 'Selftest failed in "%s"' % os.getcwd()
580
 
        pynotify.init("bzr gselftest")
581
 
        note = pynotify.Notification(cgi.escape(summary), cgi.escape(body))
582
 
        note.set_timeout(pynotify.EXPIRES_NEVER)
583
 
        note.show()
584
 
 
585
 
 
586
 
register_command(cmd_gselftest)
587
 
 
588
 
 
589
 
class cmd_test_gtk(GTKCommand):
590
 
    """Version of selftest that just runs the gtk test suite."""
591
 
 
592
 
    takes_options = ['verbose',
593
 
                     Option('one', short_name='1',
594
 
                            help='Stop when one test fails.'),
595
 
                     Option('benchmark', help='Run the benchmarks.'),
596
 
                     Option('lsprof-timed',
597
 
                     help='Generate lsprof output for benchmarked'
598
 
                          ' sections of code.'),
599
 
                     Option('list-only',
600
 
                     help='List the tests instead of running them.'),
601
 
                     Option('randomize', type=str, argname="SEED",
602
 
                     help='Randomize the order of tests using the given'
603
 
                          ' seed or "now" for the current time.'),
604
 
                    ]
605
 
    takes_args = ['testspecs*']
606
 
 
607
 
    def run(self, verbose=None, one=False, benchmark=None,
608
 
            lsprof_timed=None, list_only=False, randomize=None,
609
 
            testspecs_list=None):
610
 
        from bzrlib import __path__ as bzrlib_path
611
 
        from bzrlib.tests import selftest
612
 
 
613
 
        print '%10s: %s' % ('bzrlib', bzrlib_path[0])
614
 
        if benchmark:
615
 
            print 'No benchmarks yet'
616
 
            return 3
617
 
 
618
 
            test_suite_factory = bench_suite
619
 
            if verbose is None:
620
 
                verbose = True
621
 
            # TODO: should possibly lock the history file...
622
 
            benchfile = open(".perf_history", "at", buffering=1)
623
 
        else:
624
 
            test_suite_factory = test_suite
625
 
            if verbose is None:
626
 
                verbose = False
627
 
            benchfile = None
628
 
 
629
 
        if testspecs_list is not None:
630
 
            pattern = '|'.join(testspecs_list)
631
 
        else:
632
 
            pattern = ".*"
633
 
 
634
 
        try:
635
 
            result = selftest(verbose=verbose,
636
 
                              pattern=pattern,
637
 
                              stop_on_failure=one,
638
 
                              test_suite_factory=test_suite_factory,
639
 
                              lsprof_timed=lsprof_timed,
640
 
                              bench_history=benchfile,
641
 
                              list_only=list_only,
642
 
                              random_seed=randomize,
643
 
                             )
644
 
        finally:
645
 
            if benchfile is not None:
646
 
                benchfile.close()
647
 
 
648
 
register_command(cmd_test_gtk)
649
 
 
650
 
 
651
 
 
652
 
import gettext
653
 
gettext.install('olive-gtk')
654
 
 
655
 
# Let's create a specialized alias to protect '_' from being erased by other
656
 
# uses of '_' as an anonymous variable (think pdb for one).
657
 
_i18n = gettext.gettext
 
266
            path = e.base
 
267
            try:
 
268
                (branch, path) = Branch.open_containing(path)
 
269
            except NotBranchError, e:
 
270
                path = e.path
 
271
 
 
272
 
 
273
        commit = CommitDialog(wt, path, not branch)
 
274
        commit.run()
 
275
 
 
276
register_command(cmd_gcommit)
658
277
 
659
278
class NoDisplayError(BzrCommandError):
660
279
    """gtk could not find a proper display"""
663
282
        return "No DISPLAY. Unable to run GTK+ application."
664
283
 
665
284
 
666
 
def test_suite():
667
 
    from unittest import TestSuite
668
 
    import tests
669
 
    import sys
670
 
    default_encoding = sys.getdefaultencoding()
671
 
    try:
672
 
        result = TestSuite()
673
 
        try:
674
 
            import_pygtk()
675
 
        except errors.BzrCommandError:
676
 
            return result
677
 
        result.addTest(tests.test_suite())
678
 
    finally:
679
 
        if sys.getdefaultencoding() != default_encoding:
680
 
            reload(sys)
681
 
            sys.setdefaultencoding(default_encoding)
682
 
    return result