Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.1, 1.1.1, and 1.1.2

thgpbranch: Add edit message

Changeset 7081aeb0452f

Parent 2df4fd60320e

by Peer Sommerlund

Changes to one file · Browse files at 7081aeb0452f Showing diff from parent 2df4fd60320e Diff from another changeset...

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
 
 
 
 
 
 
 
 
 
 
 
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
 
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
 
 
 
702
703
704
705
706
707
708
709
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
 # thgpbranch.py - embeddable widget for the PatchBranch extension  #  # Copyright 2009 Peer Sommerlund <peer.sommerlund@gmail.com>  #  # This software may be used and distributed according to the terms of the  # GNU General Public License version 2, incorporated herein by reference.    import gtk  import gobject    from mercurial import cmdutil, extensions    from tortoisehg.util.i18n import _    from tortoisehg.hgtk import hgcmd  from tortoisehg.hgtk import update  from tortoisehg.hgtk import gtklib, dialog  from tortoisehg.hgtk.logview import graphcell    # Patch Branch model enumeration  M_NODE = 0  M_IN_LINES = 1  M_OUT_LINES = 2  M_NAME = 3  M_STATUS = 4  M_TITLE = 5  M_MSG = 6  M_MSGESC = 7    # Patch Branch column enumeration  C_GRAPH = 0  C_STATUS = 1  C_NAME = 2  C_TITLE = 3  C_MSG = 4    class PBranchWidget(gtk.VBox):     __gproperties__ = {   'graph-column-visible': (gobject.TYPE_BOOLEAN,   'Graph',   'Show graph column',   False,   gobject.PARAM_READWRITE),   'status-column-visible': (gobject.TYPE_BOOLEAN,   'Status',   'Show status column',   False,   gobject.PARAM_READWRITE),   'name-column-visible': (gobject.TYPE_BOOLEAN,   'Name',   'Show name column',   False,   gobject.PARAM_READWRITE),   'title-column-visible': (gobject.TYPE_BOOLEAN,   'Title',   'Show title column',   False,   gobject.PARAM_READWRITE),   'message-column-visible': (gobject.TYPE_BOOLEAN,   'Title',   'Show title column',   False,   gobject.PARAM_READWRITE),   'show-internal-branches': (gobject.TYPE_BOOLEAN,   'ShowInternalBranches',   "Show internal branches",   False,   gobject.PARAM_READWRITE)   }     __gsignals__ = {   'repo-invalidated': (gobject.SIGNAL_RUN_FIRST,   gobject.TYPE_NONE,   ()),   }     def __init__(self, parentwin, repo, statusbar, accelgroup=None, tooltips=None):   gtk.VBox.__init__(self)     self.parent_window = parentwin   self.repo = repo   self.pbranch = extensions.find('pbranch')   self.statusbar = statusbar     # top toolbar   tbar = gtklib.SlimToolbar(tooltips)     ## buttons   self.btn = {}   pmergebtn = tbar.append_stock(gtk.STOCK_CONVERT,   _('Merge all pending dependencies'))   pmergebtn.connect('clicked', self.pmerge_clicked)   self.btn['pmerge'] = pmergebtn     pbackoutbtn = tbar.append_stock(gtk.STOCK_GO_BACK,   _('Backout current patch branch'))   pbackoutbtn.connect('clicked', self.pbackout_clicked)   self.btn['pbackout'] = pbackoutbtn     reapplybtn = gtk.ToolButton(gtk.STOCK_GO_FORWARD)   reapplybtn = tbar.append_stock(gtk.STOCK_GO_FORWARD,   _('Backport part of a changeset to a dependency'))   reapplybtn.connect('clicked', self.reapply_clicked)   self.btn['reapply'] = reapplybtn     pnewbtn = tbar.append_stock(gtk.STOCK_NEW,   _('Start a new patch branch'))   pnewbtn.connect('clicked', self.pnew_clicked)   self.btn['pnew'] = pnewbtn     ## separator   tbar.append_space()     ## drop-down menu   menubtn = gtk.MenuToolButton('')   menubtn.set_menu(self.create_view_menu())   tbar.append_widget(menubtn, padding=0)   self.btn['menu'] = menubtn   def after_init():   menubtn.child.get_children()[0].hide()   gtklib.idle_add_single_call(after_init)   self.pack_start(tbar, False, False)     # center pane   mainbox = gtk.VBox()   self.pack_start(mainbox, True, True)     ## scrolled pane   pane = gtk.ScrolledWindow()   pane.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)   pane.set_shadow_type(gtk.SHADOW_IN)   mainbox.pack_start(pane)     ### patch list   #### patch list model   self.model = gtk.ListStore(   gobject.TYPE_PYOBJECT, # node info   gobject.TYPE_PYOBJECT, # in-lines   gobject.TYPE_PYOBJECT, # out-lines   str, # patch name   str, # patch status   str, # patch title   str, # patch message   str) # patch message escaped   #### patch list view   self.list = gtk.TreeView(self.model)   # To support old PyGTK (<2.12)   if hasattr(self.list, 'set_tooltip_column'):   self.list.set_tooltip_column(M_MSGESC)   self.list.connect('button-press-event', self.list_pressed)   self.list.connect('row-activated', self.list_row_activated)   self.list.connect('size-allocate', self.list_size_allocated)     #### patch list columns   self.cols = {}   self.cells = {}     def addcol(header, col_idx, model_idx=None, right=False, resizable=False,   editable=False, editfunc=None, cell_renderer=None,   properties=[]):   header = (right and '%s ' or ' %s') % header   cell = cell_renderer or gtk.CellRendererText()   if editfunc:   cell.set_property('editable', editable)   cell.connect('edited', editfunc)   col = gtk.TreeViewColumn(header, cell)   if cell_renderer is None:   col.add_attribute(cell, 'text', model_idx)   col.set_resizable(resizable)   col.set_visible(self.get_property(self.col_to_prop(col_idx)))   if right:   col.set_alignment(1)   cell.set_property('xalign', 1)   for (property_name, model_index) in properties:   col.add_attribute(cell, property_name, model_index)   self.list.append_column(col)   self.cols[col_idx] = col   self.cells[col_idx] = cell     def cell_edited(cell, path, newname):   row = self.model[path]   patchname = row[M_NAME]   if newname != patchname:   self.qrename(newname, patch=patchname)     #### patch list columns and cell renderers     addcol(_('Graph'), C_GRAPH, resizable=True,   cell_renderer=graphcell.CellRendererGraph(),   properties=[("node", M_NODE),   ("in-lines",M_IN_LINES),   ("out-lines", M_OUT_LINES)]   )   addcol(_('St'), C_STATUS, M_STATUS)   addcol(_('Name'), C_NAME, M_NAME, editfunc=cell_edited)   addcol(_('Title'), C_TITLE, M_TITLE)   addcol(_('Message'), C_MSG, M_MSG)     pane.add(self.list)     ## command widget   self.cmd = hgcmd.CmdWidget(style=hgcmd.STYLE_COMPACT,   tooltips=tooltips)   mainbox.pack_start(self.cmd, False, False)     # accelerator   if accelgroup:   # TODO   pass     ### public functions ###     def refresh(self):   """   Refresh the list of patches.   This operation will try to keep selection state.   """   if not self.pbranch:   return     # store selected patch name   selname = None   model, paths = self.list.get_selection().get_selected_rows()   if len(paths) > 0:   selname = model[paths[0]][M_NAME]     # compute model data   self.model.clear()   opts = {}   mgr = self.pbranch.patchmanager(self.repo.ui, self.repo, opts)   graph = mgr.graphforopts(opts)   if not self.get_property('show-internal-branches'):   graph = mgr.patchonlygraph(graph)   names = None   patch_list = graph.topolist(names)   in_lines = []   if patch_list:   dep_list = [patch_list[0]]   cur_branch = self.repo['.'].branch()   patch_status = {}   for name in patch_list:   patch_status[name] = self.pstatus(name)   for name in patch_list:   parents = graph.deps(name)     # Node properties   if name in dep_list:   node_column = dep_list.index(name)   else:   node_column = len(dep_list)   node_colour = patch_status[name] and '#ff0000' or 0   node_status = (name == cur_branch) and 4 or 0   node = (node_column, node_colour, node_status)     # Find next dependency list   my_deps = []   for p in parents:   if p not in dep_list:   my_deps.append(p)   next_dep_list = dep_list[:]   next_dep_list[node_column:node_column+1] = my_deps     # Dependency lines   shift = len(parents) - 1   out_lines = []   for p in parents:   dep_column = next_dep_list.index(p)   colour = 0 # black   if patch_status[p]:   colour = '#ff0000' # red   style = 0 # solid lines   out_lines.append((node_column, dep_column, colour, style))   for lines in in_lines:   (start_column, end_column, colour, style) = lines   if end_column == node_column:   # Deps to current patch end here   pass   else:   # Find line continuations   dep = dep_list[end_column]   dep_column = next_dep_list.index(dep)   out_lines.append((end_column, dep_column, colour, style))     stat = patch_status[name] and 'M' or 'C' # patch status   patchname = name   msg = self.pmessage(name) # summary   if msg:   msg_esc = gtklib.markup_escape_text(msg) # escaped summary (utf-8)   title = msg.split('\n')[0]   else:   msg_esc = None   title = None   self.model.append((node, in_lines, out_lines, patchname, stat,   title, msg, msg_esc))   # Loop   in_lines = out_lines   dep_list = next_dep_list       # restore patch selection   if selname:   iter = self.get_iter_by_patchname(selname)   if iter:   self.list.get_selection().select_iter(iter)     # update UI sensitives   self.update_sensitives()     # report status   status_text = ''   idle_text = None   if self.has_patch():   status_text = self.pending_merges() \   and _('pending pmerges') \   or _('no pending pmerges')   self.statusbar.set_right3_text(status_text)   self.statusbar.set_idle_text(idle_text)     def pgraph(self):   """   [pbranch] Execute 'pgraph' command.     :returns: A list of patches and dependencies   """   if self.pbranch is None:   return None   opts = {}   mgr = self.pbranch.patchmanager(self.repo.ui, self.repo, opts)   return mgr.graphforopts(opts)     def patch_list(self, opts={}):   """List all patches in pbranch dependency DAG"""   mgr = self.pbranch.patchmanager(self.repo.ui, self.repo, opts)   graph = mgr.graphforopts(opts)   names = None   return graph.topolist(names)     def pending_merges(self):   """Return True if there are pending pmerge operations"""   for patch in self.patch_list():   if self.pstatus(patch):   return True   return False     def pstatus(self, patch_name):   """   [pbranch] Execute 'pstatus' command.     :param patch_name: Name of patch-branch   :retv: list of status messages. If empty there is no pending merges   """   if self.pbranch is None:   return None   status = []   opts = {}   mgr = self.pbranch.patchmanager(self.repo.ui, self.repo, opts)   graph = mgr.graphforopts(opts)   heads = self.repo.branchheads(patch_name)   if len(heads) > 1:   status.append(_('needs merge of %i heads\n') % len(heads))   for dep, through in graph.pendingmerges(patch_name):   if through:   status.append(_('needs merge with %s (through %s)\n') %   (dep, ", ".join(through)))   else:   status.append(_('needs merge with %s\n') % dep)   for dep in graph.pendingrebases(patch_name):   status.append(_('needs update of diff base to tip of %s\n') % dep)   return status     def pmessage(self, patch_name):   """   Get patch message     :param patch_name: Name of patch-branch   :retv: Full patch message. If you extract the first line   you will get the patch title.   """   opts = {}   mgr = self.pbranch.patchmanager(self.repo.ui, self.repo, opts)   return mgr.patchdesc(patch_name) + + def peditmessage(self, patch_name): + """ + Edit patch message + + :param patch_name: Name of patch-branch + """ + if not patch_name in self.patch_list(): + return + cmdline = ['hg', 'peditmessage', patch_name] + self.cmd.execute(cmdline, self.cmd_done)     def pnew_ui(self):   """   Create new patch.   Propmt user for new patch name. Patch is created   on current branch.   """   parent = None   title = _('New Patch Name')   new_name = dialog.entry_dialog(parent, title)   if not new_name:   return False   self.pnew(new_name)   return True     def pnew(self, patch_name):   """   [pbranch] Execute 'pnew' command.     :param patch_name: Name of new patch-branch   """   if self.pbranch is None:   return False   self.pbranch.cmdnew(self.repo.ui, self.repo, patch_name)   self.emit('repo-invalidated')   return True     def pmerge(self, patch_name=None):   """   [pbranch] Execute 'pmerge' command.     :param patch_name: Merge to this patch-branch   """   if not self.has_patch():   return   cmdline = ['hg', 'pmerge']   if patch_name:   cmdline += [patch_name]   else:   cmdline += ['--all']   self.cmd.execute(cmdline, self.cmd_done)     def pbackout(self):   """   [pbranch] Execute 'pbackout' command.   """   assert False     def has_pbranch(self):   """ return True if pbranch extension can be used """   return self.pbranch is not None     def has_patch(self):   """ return True if pbranch extension is in use on repo """   return self.has_pbranch() and self.pgraph() != []     def cur_patch(self):   current_patch = self.repo.dirstate.branch()   if current_patch == 'default':   return None   if current_patch not in self.patch_list():   return None   return current_patch     ### internal functions ###     def get_iter_by_patchname(self, name):   """ return iter has specified patch name """   if name:   for row in self.model:   if row[M_NAME] == name:   return row.iter   return None     def get_path_by_patchname(self, name):   """ return path has specified patch name """   return self.model.get_path(self.get_iter_by_patchname(name))     def update_sensitives(self):   """ Update the sensitives of entire UI """   def disable_pbranchcmd():   for name in ('pbackout', 'pmerge', 'pnew', 'reapply'):   self.btn[name].set_sensitive(False)   if self.pbranch:   self.list.set_sensitive(True)   self.btn['menu'].set_sensitive(True)   in_pbranch = True #TODO   self.btn['pmerge'].set_sensitive(in_pbranch)   self.btn['pbackout'].set_sensitive(in_pbranch)   self.btn['pnew'].set_sensitive(True)   self.btn['reapply'].set_sensitive(True)   else:   self.list.set_sensitive(False)   self.btn['menu'].set_sensitive(False)   disable_pbranchcmd()     def scroll_to_current(self):   """   Scroll to current patch in the patch list.   If the patch is selected, it will do nothing.   """   if self.list.get_selection().count_selected_rows() > 0:   return   curpatch = self.cur_patch()   if not curpatch:   return   path = self.get_path_by_patchname(curpatch)   if path:   self.list.scroll_to_cell(path)     def show_patch_cmenu(self, list, path):   """Context menu for selected patch"""   row = self.model[path]     menu = gtk.Menu()   def append(label, handler=None):   item = gtk.MenuItem(label, True)   item.set_border_width(1)   if handler:   item.connect('activate', handler, row)   menu.append(item)     has_pbranch = self.has_pbranch()   is_current = self.has_patch() and self.cur_patch() == row[M_NAME]   is_patch = row[M_NAME] != 'default'     if has_pbranch:   append(_('_new'), self.pnew_activated)   if not is_current:   append(_('_goto (update workdir)'), self.goto_activated)   if is_patch: + append(_('_edit message'), self.edit_message_activated)   append(_('_rename'), self.rename_activated)   append(_('_delete'), self.delete_activated)     if len(menu.get_children()) > 0:   menu.show_all()   menu.popup(None, None, None, 0, 0)     def create_view_menu(self):   """Top right menu for selection of columns and   view configuration."""   menu = gtk.Menu()   def append(item=None, handler=None, check=False,   active=False, sep=False):   if sep:   item = gtk.SeparatorMenuItem()   else:   if isinstance(item, str):   if check:   item = gtk.CheckMenuItem(item)   item.set_active(active)   else:   item = gtk.MenuItem(item)   item.set_border_width(1)   if handler:   item.connect('activate', handler)   menu.append(item)   return item   def colappend(label, col_idx, active=True):   def handler(menuitem):   col = self.cols[col_idx]   col.set_visible(menuitem.get_active())   propname = self.col_to_prop(col_idx)   item = append(label, handler, check=True, active=active)   self.vmenu[propname] = item     self.vmenu = {}     colappend(_('Show graph'), C_GRAPH)   colappend(_('Show status'), C_STATUS, active=False)   colappend(_('Show name'), C_NAME)   colappend(_('Show title'), C_TITLE, active=False)   colappend(_('Show message'), C_MSG, active=False)     append(sep=True)     def enable_editable(item):   self.cells[C_NAME].set_property('editable', item.get_active())   item = append(_('Enable editable cells'), enable_editable,   check=True, active=False)   self.vmenu['editable-cell'] = item   item = append(_("Show internal branches"), lambda item: self.refresh(),   check=True, active=False)   self.vmenu['show-internal-branches'] = item     menu.show_all()   return menu     def show_dialog(self, dlg):   """Show modal dialog and block application   See also show_dialog in history.py   """   dlg.set_transient_for(self.parent_window)   dlg.show_all()   dlg.run()   if gtk.pygtk_version < (2, 12, 0):   # Workaround for old PyGTK (< 2.12.0) issue.   # See background of this: f668034aeda3   dlg.set_transient_for(None)       def update_by_row(self, row):   branch = row[M_NAME]   rev = cmdutil.revrange(self.repo, [branch])   parents = [x.node() for x in self.repo.parents()]   dialog = update.UpdateDialog(rev[0])   self.show_dialog(dialog)   self.update_completed(parents)     def update_completed(self, oldparents):   self.repo.invalidate()   self.repo.dirstate.invalidate()   newparents = [x.node() for x in self.repo.parents()]   if not oldparents == newparents:   self.emit('repo-invalidated')     def cmd_done(self, returncode, useraborted, noemit=False):   if returncode == 0:   if self.cmd.get_pbar():   self.cmd.set_result(_('Succeed'), style='ok')   elif useraborted:   self.cmd.set_result(_('Canceled'), style='error')   else:   self.cmd.set_result(_('Failed'), style='error')   self.refresh()   if not noemit:   self.emit('repo-invalidated')     def do_get_property(self, property):   try:   return self.vmenu[property.name].get_active()   except:   raise AttributeError, 'unknown property %s' % property.name     def do_set_property(self, property, value):   try:   self.vmenu[property.name].set_active(value)   except:   raise AttributeError, 'unknown property %s' % property.name     def col_to_prop(self, col_idx):   if col_idx == C_GRAPH:   return 'graph-column-visible'   if col_idx == C_STATUS:   return 'status-column-visible'   if col_idx == C_NAME:   return 'name-column-visible'   if col_idx == C_TITLE:   return 'title-column-visible'   if col_idx == C_MSG:   return 'message-column-visible'   return ''     ### signal handlers ###     def list_pressed(self, list, event):   x, y = int(event.x), int(event.y)   pathinfo = list.get_path_at_pos(x, y)   if event.button == 1:   if not pathinfo:   # HACK: clear selection after this function calling,   # against selection by getting focus   def unselect():   selection = list.get_selection()   selection.unselect_all()   gtklib.idle_add_single_call(unselect)   elif event.button == 3:   if pathinfo:   self.show_patch_cmenu(self.list, pathinfo[0])     def list_sel_changed(self, list):   path, focus = list.get_cursor()   row = self.model[path]   patchname = row[M_NAME]   try:   ctx = self.repo[patchname]   revid = ctx.rev()   except hglib.RepoError:   revid = -1   self.emit('patch-selected', revid, patchname)     def list_row_activated(self, list, path, column):   self.update_by_row(self.model[path])     def list_size_allocated(self, list, req):   if self.has_patch():   self.scroll_to_current()     def pbackout_clicked(self, toolbutton):   pass     def pmerge_clicked(self, toolbutton):   self.pmerge()     def pnew_clicked(self, toolbutton):   self.pnew_ui()     def reapply_clicked(self, toolbutton):   pass     ### context menu signal handlers ###     def pnew_activated(self, menuitem, row):   """Insert new patch after this row"""   if self.cur_patch() == row[M_NAME]:   self.pnew_ui()   return   # pnew from patch different than current   assert False   if self.wdir_modified():   # Ask user if current changes should be discarded   # Abort if user does not agree   pass   # remember prev branch   # Update to row[M_NAME]   # pnew_ui   # if aborted, update back to prev branch   pass   + def edit_message_activated(self, menuitem, row): + self.peditmessage(row[M_NAME]) +   def goto_activated(self, menuitem, row):   self.update_by_row(row)     def delete_activated(self, menuitem, row):   assert False     def rename_activated(self, menuitem, row):   assert False