Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

thgconfig: add debug logging switches

Changeset 25a749a2c8fb

Parent 89a969d06d9a

by Steve Borho

Changes to one file · Browse files at 25a749a2c8fb Showing diff from parent 89a969d06d9a Diff from another changeset...

 
461
462
463
 
 
464
465
466
 
496
497
498
 
 
 
499
500
501
 
522
523
524
 
 
 
 
525
526
527
 
535
536
537
 
 
 
 
538
539
540
 
461
462
463
464
465
466
467
468
 
498
499
500
501
502
503
504
505
506
 
527
528
529
530
531
532
533
534
535
536
 
544
545
546
547
548
549
550
551
552
553
@@ -461,6 +461,8 @@
  ovcvbox.pack_start(self.ovenable, False, False, 2)   self.lclonly = gtk.CheckButton(_('Local disks only'))   ovcvbox.pack_start(self.lclonly, False, False, 2) + self.ovdebug = gtk.CheckButton(_('Enable debug logging')) + ovcvbox.pack_start(self.ovdebug, False, False, 2)   table = gtk.Table(2, 2, False)   ovcvbox.pack_start(table, False, False, 2)   @@ -496,6 +498,9 @@
  vbox.pack_start(gtk.Label(), True, True, 2)   vbox.pack_start(descframe, False, False, 2)   + self.cmdebug = gtk.CheckButton(_('Enable debug logging')) + cmcvbox.pack_start(self.cmdebug, False, False, 2) +   lbl = gtk.Label(_('Promote menu items to the top menu'))   cmcvbox.pack_start(lbl, False, False, 2)   @@ -522,6 +527,10 @@
  tooltip = _('Only use overlays on local disks')   self.lclonly.connect('focus-in-event', self.set_help,   desctext.get_buffer(), tooltip) + tooltip = _('Enable the overlay code to emit debug messages' + ' that the TortoiseHg tracelog application can receive.') + self.ovdebug.connect('focus-in-event', self.set_help, + desctext.get_buffer(), tooltip)   tooltip = _('A list of semicolon (;) separated paths that the'   ' overlays will respect. This include filter is applied'   ' after the local disk check. If unspecified, the default' @@ -535,6 +544,10 @@
  ' include filter. Default is no exclusion.')   self.ovexclude.connect('focus-in-event', self.set_help,   desctext.get_buffer(), tooltip) + tooltip = _('Enable the context menu code to emit debug messages' + ' that the TortoiseHg tracelog application can receive.') + self.cmdebug.connect('focus-in-event', self.set_help, + desctext.get_buffer(), tooltip)     def fill_frame(self, frame, info):   widgets = []