~bzr/bzr-gtk/credits.pickle-hack

« back to all changes in this revision

Viewing changes to commands.py

  • Committer: Jelmer Vernooij
  • Date: 2010-07-21 18:02:15 UTC
  • mfrom: (621.18.41 trunk)
  • Revision ID: jelmer@debian.org-20100721180215-c651psxtlatgthnp
* New upstream snapshot.
 + Copes with newer versions of gnomekeyring raising IOError.
   Closes: #581820
* Bump standards version to 3.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
199
199
    """GTK+ annotate.
200
200
    
201
201
    Browse changes to FILENAME line by line in a GTK+ window.
 
202
 
 
203
    Within the annotate window, you can use Ctrl-F to search for text, and 
 
204
    Ctrl-G to jump to a line by number.
202
205
    """
203
206
 
204
207
    takes_args = ["filename", "line?"]
372
375
        dialog.run()
373
376
 
374
377
 
375
 
class cmd_ginfo(Command):
376
 
    """ GTK+ info dialog
377
 
    
378
 
    """
379
 
    def run(self):
380
 
        from bzrlib import workingtree
381
 
        from bzrlib.plugins.gtk.olive.info import InfoDialog
382
 
        wt = workingtree.WorkingTree.open_containing('.')[0]
383
 
        info = InfoDialog(wt.branch)
384
 
        info.display()
385
 
        info.window.run()
386
 
 
387
 
 
388
378
class cmd_gmerge(Command):
389
379
    """ GTK+ merge dialog
390
380