/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 commands.py

  • Committer: Vincent Ladeuil
  • Date: 2009-12-10 16:13:32 UTC
  • Revision ID: v.ladeuil+lp@free.fr-20091210161332-d9vlfd6jy6zolxa1
Thanks to lamont, we know spell Prettifying with the right number of 't'.

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.
205
202
    """
206
203
 
207
204
    takes_args = ["filename", "line?"]
447
444
 
448
445
 
449
446
class cmd_ginit(GTKCommand):
450
 
    """ GTK+ init dialog
451
 
 
452
 
    Graphical user interface for initializing new branches.
453
 
 
454
 
    """
455
447
    def run(self):
456
448
        open_display()
457
449
        from initialize import InitDialog
460
452
 
461
453
 
462
454
class cmd_gtags(GTKCommand):
463
 
    """ GTK+ tags dialog 
464
 
 
465
 
    Graphical user interface to view, create, or remove tags.
466
 
 
467
 
    """
468
455
    def run(self):
469
456
        br = branch.Branch.open_containing('.')[0]
470
457