/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: Andrew Starr-Bochicchio
  • Date: 2010-01-26 16:54:44 UTC
  • mto: This revision was merged to the branch mainline in revision 674.
  • Revision ID: a.starr.b@gmail.com-20100126165444-7rwpzdqqiodrzlba
Provide help for ginit and gtags.

Show diffs side-by-side

added added

removed removed

Lines of Context:
444
444
 
445
445
 
446
446
class cmd_ginit(GTKCommand):
 
447
    """ GTK+ init dialog
 
448
 
 
449
    Graphical user interface for initializing new branches.
 
450
 
 
451
    """
447
452
    def run(self):
448
453
        open_display()
449
454
        from initialize import InitDialog
452
457
 
453
458
 
454
459
class cmd_gtags(GTKCommand):
 
460
    """ GTK+ tags dialog 
 
461
 
 
462
    Graphical user interface to view, create, or remove tags.
 
463
 
 
464
    """
455
465
    def run(self):
456
466
        br = branch.Branch.open_containing('.')[0]
457
467