Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph

commit, settings: added back support for the linkmandatory setting

This configuration setting was available in the old GTK version of TortoiseHg
but up to this point had never been ported to PyQt.

Changeset 57fa0272f191

Parent 5a53dee81d1a

by David Golub

Changes to 2 files · Browse files at 57fa0272f191 Showing diff from parent 5a53dee81d1a 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
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
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
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
 # commit.py - TortoiseHg's commit widget and standalone dialog  #  # Copyright 2010 Steve Borho <steve@borho.org>  #  # This software may be used and distributed according to the terms of the  # GNU General Public License version 2, incorporated herein by reference.    import os +import re    from mercurial import ui, util, error    from tortoisehg.util import hglib, shlib, wconfig, bugtraq    from tortoisehg.hgqt.i18n import _  from tortoisehg.hgqt.messageentry import MessageEntry  from tortoisehg.hgqt import qtlib, qscilib, status, cmdui, branchop, revpanel  from tortoisehg.hgqt import hgrcutil, mq, lfprompt    from PyQt4.QtCore import *  from PyQt4.QtGui import *  from PyQt4.Qsci import QsciAPIs      # Technical Debt for CommitWidget  # disable commit button while no message is entered or no files are selected  # qtlib decode failure dialog (ask for retry locale, suggest HGENCODING)  # spell check / tab completion  # in-memory patching / committing chunk selected files    class CommitWidget(QWidget, qtlib.TaskWidget):   'A widget that encompasses a StatusWidget and commit extras'   commitButtonEnable = pyqtSignal(bool)   mqButtonEnable = pyqtSignal(bool)   linkActivated = pyqtSignal(QString)   showMessage = pyqtSignal(unicode)   commitComplete = pyqtSignal()     progress = pyqtSignal(QString, object, QString, QString, object)   output = pyqtSignal(QString, QString)   makeLogVisible = pyqtSignal(bool)   beginSuppressPrompt = pyqtSignal()   endSuppressPrompt = pyqtSignal()     def __init__(self, repo, pats, opts, embedded=False, parent=None, rev=None):   QWidget.__init__(self, parent=parent)     repo.configChanged.connect(self.configChanged)   repo.repositoryChanged.connect(self.repositoryChanged)   repo.workingBranchChanged.connect(self.workingBranchChanged)   self.repo = repo   self._rev = rev   self.lastAction = None   self.lastCommitMsg = ''   self.currentAction = None   self.currentProgress = None     opts['ciexclude'] = repo.ui.config('tortoisehg', 'ciexclude', '')   opts['pushafter'] = repo.ui.config('tortoisehg', 'cipushafter', '')   opts['autoinc'] = repo.ui.config('tortoisehg', 'autoinc', '')   opts['bugtraqplugin'] = repo.ui.config('tortoisehg', 'issue.bugtraqplugin', None)   opts['bugtraqparameters'] = repo.ui.config('tortoisehg', 'issue.bugtraqparameters', None)   self.opts = opts # user, date     self.stwidget = status.StatusWidget(repo, pats, opts, self)   self.stwidget.showMessage.connect(self.showMessage)   self.stwidget.progress.connect(self.progress)   self.stwidget.linkActivated.connect(self.linkActivated)   self.stwidget.fileDisplayed.connect(self.fileDisplayed)   self.msghistory = []   self.runner = cmdui.Runner(not embedded, self)   self.runner.setTitle(_('Commit', 'window title'))   self.runner.output.connect(self.output)   self.runner.progress.connect(self.progress)   self.runner.makeLogVisible.connect(self.makeLogVisible)   self.runner.commandStarted.connect(self.beginSuppressPrompt)   self.runner.commandFinished.connect(self.endSuppressPrompt)   self.runner.commandFinished.connect(self.commandFinished)     layout = QVBoxLayout()   layout.setContentsMargins(2, 2, 2, 2)   layout.setSpacing(0)   layout.addWidget(self.stwidget)   self.setLayout(layout)     vbox = QVBoxLayout()   vbox.setMargin(0)   vbox.setSpacing(0)   vbox.setContentsMargins(*(0,)*4)     hbox = QHBoxLayout()   hbox.setMargin(0)   hbox.setContentsMargins(*(0,)*4)   tbar = QToolBar(_("Commit Dialog Toolbar"), self)   tbar.setStyleSheet(qtlib.tbstylesheet)   hbox.addWidget(tbar)     self.branchbutton = tbar.addAction(_('Branch: '))   font = self.branchbutton.font()   font.setBold(True)   self.branchbutton.setFont(font)   self.branchbutton.triggered.connect(self.branchOp)   self.branchop = None     self.recentMessagesButton = QToolButton(   text=_('Copy message'),   popupMode=QToolButton.MenuButtonPopup,   toolTip=_('Copy one of the recent commit messages'))   self.recentMessagesButton.clicked.connect(self.recentMessagesButton.showMenu)   tbar.addWidget(self.recentMessagesButton)   self.updateRecentMessages()     tbar.addAction(_('Options')).triggered.connect(self.details)   tbar.setIconSize(QSize(16,16))     if self.opts['bugtraqplugin'] != None:   self.bugtraq = self.createBugTracker()   try:   parameters = self.opts['bugtraqparameters']   linktext = self.bugtraq.get_link_text(parameters)   except Exception, e:   tracker = self.opts['bugtraqplugin'].split(' ', 1)[1]   qtlib.ErrorMsgBox(_('Issue Tracker'),   _('Failed to load issue tracker \'%s\': %s'   % (tracker, e)),   parent=self)   self.bugtraq = None   else:   # connect UI because we have a valid bug tracker   self.commitComplete.connect(self.bugTrackerPostCommit)   tbar.addAction(linktext).triggered.connect(   self.getBugTrackerCommitMessage)     self.stopAction = tbar.addAction(_('Stop'))   self.stopAction.triggered.connect(self.stop)   self.stopAction.setIcon(qtlib.geticon('process-stop'))   self.stopAction.setEnabled(False)     hbox.addStretch(1)     vbox.addLayout(hbox, 0)   self.buttonHBox = hbox     if embedded and 'mq' in self.repo.extensions():   self.hasmqbutton = True   pnhbox = QHBoxLayout()   self.pnlabel = QLabel()   pnhbox.addWidget(self.pnlabel)   self.pnedit = mq.getPatchNameLineEdit()   self.pnedit.setMaximumWidth(250)   pnhbox.addWidget(self.pnedit)   pnhbox.addStretch()   vbox.addLayout(pnhbox)   else:   self.hasmqbutton = False     self.pcsinfo = revpanel.ParentWidget(repo)   vbox.addWidget(self.pcsinfo, 0)     msgte = MessageEntry(self, self.stwidget.getChecked)   msgte.installEventFilter(qscilib.KeyPressInterceptor(self))   vbox.addWidget(msgte, 1)   upperframe = QFrame()     SP = QSizePolicy   sp = SP(SP.Expanding, SP.Expanding)   sp.setHorizontalStretch(1)   upperframe.setSizePolicy(sp)   upperframe.setLayout(vbox)     self.split = QSplitter(Qt.Vertical)   sp = SP(SP.Expanding, SP.Expanding)   sp.setHorizontalStretch(1)   sp.setVerticalStretch(0)   self.split.setSizePolicy(sp)   # Add our widgets to the top of our splitter   self.split.addWidget(upperframe)   self.split.setCollapsible(0, False)   # Add status widget document frame below our splitter   # this reparents the docf from the status splitter   self.split.addWidget(self.stwidget.docf)     # add our splitter where the docf used to be   self.stwidget.split.addWidget(self.split)   self.msgte = msgte   if not self.hasmqbutton:   QShortcut(QKeySequence('Ctrl+Return'), self,   self.commit).setContext(Qt.WidgetWithChildrenShortcut)   QShortcut(QKeySequence('Ctrl+Enter'), self,   self.commit).setContext(Qt.WidgetWithChildrenShortcut)     @property   def rev(self):   """Return current revision"""   return self._rev     def selectRev(self, rev):   """   Select the revision that must be set when the dialog is shown again   """   self._rev = rev     @pyqtSlot(int)   @pyqtSlot(object)   def setRev(self, rev):   """Change revision to show"""   self.selectRev(rev)   if self.hasmqbutton:   preferredActionName = self._getPreferredActionName()   curractionName = self.mqgroup.checkedAction()._name   if curractionName != preferredActionName:   self.mqSetAction(refresh=True,   actionName=preferredActionName)     def _getPreferredActionName(self):   """Select the preferred action, depending on the selected revision"""   if not self.hasmqbutton:   return 'commit'   else:   pctx = self.repo.changectx('.')   ispatch = 'qtip' in pctx.tags()   if not ispatch:   # Set the button to Commit   return 'commit'   elif self.rev is None:   # Set the button to QNew   return 'qnew'   else:   # Set the button to QRefresh   return 'qref'     def mqSetupButton(self):   ispatch = lambda r: 'qtip' in r.changectx('.').tags()   notpatch = lambda r: 'qtip' not in r.changectx('.').tags()   acts = (   ('commit', _('Commit changes'), _('Commit'), notpatch),   ('qnew', _('Create a new patch'), _('QNew'), None),   ('qref', _('Refresh current patch'), _('QRefresh'), ispatch),   )     class MQToolButton(QToolButton):   def styleOption(self):   opt = QStyleOptionToolButton()   opt.initFrom(self)   return opt   def menuButtonWidth(self):   style = self.style()   opt = self.styleOption()   opt.features = QStyleOptionToolButton.MenuButtonPopup   rect = style.subControlRect(QStyle.CC_ToolButton, opt,   QStyle.SC_ToolButtonMenu, self)   return rect.width()   def setBold(self):   f = self.font()   f.setWeight(QFont.Bold)   self.setFont(f)   def sizeHint(self):   # Set the desired width to keep the button from resizing   return QSize(self._width, QToolButton.sizeHint(self).height())     self.mqtb = mqtb = MQToolButton(self)   mqtb.setBold()   mqtb.setPopupMode(QToolButton.MenuButtonPopup)   fmk = lambda s: mqtb.fontMetrics().width(hglib.tounicode(s[2]))   mqtb._width = max(map(fmk, acts)) + 4*mqtb.menuButtonWidth()     class MQMenu(QMenu):   def __init__(self, parent, repo):   self.repo = repo   return QMenu.__init__(self, parent)   def getActionByName(self, act):   return [a for a in self.actions() if a._name == act][0]   def showEvent(self, event):   for a in self.actions():   if a._enablefunc:   a.setEnabled(a._enablefunc(self.repo))   return QMenu.showEvent(self, event)   self.mqgroup = QActionGroup(self)   mqmenu = MQMenu(mqtb, self.repo)   menurefresh = lambda: self.mqSetAction(refresh=True)   for a in acts:   action = QAction(a[1], self.mqgroup)   action._name = a[0]   action._text = a[2]   action._enablefunc = a[3]   action.triggered.connect(menurefresh)   action.setCheckable(True)   mqmenu.addAction(action)   mqtb.setMenu(mqmenu)   mqtb.clicked.connect(self.mqPerformAction)   self.mqButtonEnable.connect(mqtb.setEnabled)   self.mqSetAction(actionName=self._getPreferredActionName())   sc = QShortcut(QKeySequence('Ctrl+Return'), self, self.mqPerformAction)   sc.setContext(Qt.WidgetWithChildrenShortcut)   sc = QShortcut(QKeySequence('Ctrl+Enter'), self, self.mqPerformAction)   sc.setContext(Qt.WidgetWithChildrenShortcut)   return mqtb     @pyqtSlot(bool)   def mqSetAction(self, refresh=False, actionName=None):   if actionName:   selectedAction = \   [act for act in self.mqgroup.actions() \   if act._name == actionName][0]   selectedAction.setChecked(True)   curraction = self.mqgroup.checkedAction()   oldpctx = self.stwidget.pctx   pctx = self.repo.changectx('.')   if curraction._name == 'qnew':   self.pnlabel.setVisible(True)   self.pnedit.setVisible(True)   self.pnedit.setFocus()   self.pnedit.setText(mq.defaultNewPatchName(self.repo))   self.pnedit.selectAll()   self.stwidget.setPatchContext(None)   refreshwctx = refresh and oldpctx is not None   else:   self.pnlabel.setVisible(False)   self.pnedit.setVisible(False)   ispatch = 'qtip' in pctx.tags()   def switchAction(action, name):   action.setChecked(False)   action = self.mqtb.menu().getActionByName(name)   action.setChecked(True)   return action   if curraction._name == 'qref' and not ispatch:   curraction = switchAction(curraction, 'commit')   elif curraction._name == 'commit' and ispatch:   curraction = switchAction(curraction, 'qref')   if curraction._name == 'qref':   refreshwctx = refresh   self.stwidget.setPatchContext(pctx)   elif curraction._name == 'commit':   refreshwctx = refresh and oldpctx is not None   self.stwidget.setPatchContext(None)   if curraction._name == 'qref':   if self.lastAction != 'qref':   self.lastCommitMsg = self.msgte.text()   self.setMessage(hglib.tounicode(pctx.description()))   else:   if self.lastAction == 'qref':   self.setMessage(self.lastCommitMsg)   if refreshwctx:   self.stwidget.refreshWctx()   self.mqtb.setText(curraction._text)   self.lastAction = curraction._name     def getBranchCommandLine(self, branchName, repo):   '''   Create the command line to change or create the selected branch unless   it is the selected branch     Verify whether a branch exists on a repo. If it doesn't ask the user   to confirm that it wants to create the branch. If it does and it is not   the current branch as the user whether it wants to change to that branch.   Depending on the user input, create the command line which will perform   the selected action   '''   # This function is used both by commit() and mqPerformAction()   commandlines = []   newbranch = False   branch = hglib.fromunicode(self.branchop)   if branch in repo.branchtags():   # response: 0=Yes, 1=No, 2=Cancel   if branch in [p.branch() for p in repo.parents()]:   resp = 0   else:   rev = repo[branch].rev()   resp = qtlib.CustomPrompt(_('Confirm Branch Change'),   _('Named branch "%s" already exists, '   'last used in revision %d\n'   ) % (self.branchop, rev),   self,   (_('Restart &Branch'),   _('&Commit to current branch'),   _('Cancel')), 2, 2).run()   else:   resp = qtlib.CustomPrompt(_('Confirm New Branch'),   _('Create new named branch "%s" with this commit?\n'   ) % self.branchop,   self,   (_('Create &Branch'),   _('&Commit to current branch'),   _('Cancel')), 2, 2).run()   if resp == 0:   newbranch = True   commandlines.append(['branch', '--repository', repo.root,   '--force', branch])   elif resp == 2:   return None, False   return commandlines, newbranch     @pyqtSlot()   def mqPerformAction(self):   curraction = self.mqgroup.checkedAction()   if curraction._name == 'commit':   return self.commit()     # Check if we need to change branch first   commandlines = []   if self.branchop:   commandlines, newbranch = self.getBranchCommandLine(self.branchop,   self.repo)   if commandlines is None:   return   olist = ('user', 'date')   cmdlines = commandlines + mq.mqNewRefreshCommand(self.repo,   curraction._name == 'qnew',   self.stwidget, self.pnedit,   self.msgte.text(), self.opts, olist)   self.repo.incrementBusyCount()   self.currentAction = curraction._name   self.currentProgress = _('MQ Action', 'start progress')   self.progress.emit(*cmdui.startProgress(self.currentProgress, ''))   self.commitButtonEnable.emit(False)   self.mqButtonEnable.emit(False)   self.runner.run(*cmdlines)     @pyqtSlot(QString, QString)   def fileDisplayed(self, wfile, contents):   'Status widget is displaying a new file'   if not (wfile and contents):   return   wfile = unicode(wfile)   self._apis = QsciAPIs(self.msgte.lexer())   tokens = set()   for e in self.stwidget.getChecked():   e = hglib.tounicode(e)   tokens.add(e)   tokens.add(os.path.basename(e))   tokens.add(wfile)   tokens.add(os.path.basename(wfile))   try:   from pygments.lexers import guess_lexer_for_filename   from pygments.token import Token   from pygments.util import ClassNotFound   try:   contents = unicode(contents)   lexer = guess_lexer_for_filename(wfile, contents)   for tokentype, value in lexer.get_tokens(contents):   if tokentype in Token.Name and len(value) > 4:   tokens.add(value)   except ClassNotFound, TypeError:   pass   except ImportError:   pass   for n in sorted(list(tokens)):   self._apis.add(n)   self._apis.apiPreparationFinished.connect(self.apiPrepFinished)   self._apis.prepare()     def apiPrepFinished(self):   'QsciAPIs has finished parsing displayed file'   self.msgte.lexer().setAPIs(self._apis)     def bugTrackerPostCommit(self):   # commit already happened, get last message in history   message = self.lastmessage   error = self.bugtraq.on_commit_finished(message)   if error != None and len(error) > 0:   qtlib.ErrorMsgBox(_('Issue Tracker'), error, parent=self)   # recreate bug tracker to get new COM object for next commit   self.bugtraq = self.createBugTracker()     def createBugTracker(self):   bugtraqid = self.opts['bugtraqplugin'].split(' ', 1)[0]   result = bugtraq.BugTraq(bugtraqid)   return result     def getBugTrackerCommitMessage(self):   parameters = self.opts['bugtraqparameters']   message = self.getMessage()   newMessage = self.bugtraq.get_commit_message(parameters, message)   self.setMessage(newMessage)     def details(self):   dlg = DetailsDialog(self.opts, self.userhist, self)   dlg.finished.connect(dlg.deleteLater)   dlg.setWindowFlags(Qt.Sheet)   dlg.setWindowModality(Qt.WindowModal)   if dlg.exec_() == QDialog.Accepted:   self.opts.update(dlg.outopts)   self.refresh()     def workingBranchChanged(self):   'Repository has detected a change in .hg/branch'   self.refresh()     def repositoryChanged(self):   'Repository has detected a changelog / dirstate change'   self.refresh()   self.stwidget.refreshWctx() # Trigger reload of working context     def configChanged(self):   'Repository is reporting its config files have changed'   self.refresh()     @pyqtSlot()   def reload(self):   'User has requested a reload'   self.repo.thginvalidate()   self.refresh()   self.stwidget.refreshWctx() # Trigger reload of working context     def refresh(self):   ispatch = self.repo.changectx('.').thgmqappliedpatch()   self.commitButtonEnable.emit(not ispatch)   self.msgte.refresh(self.repo)     # Update branch operation button   branchu = hglib.tounicode(self.repo[None].branch())   if self.branchop is None:   title = _('Branch: ') + branchu   elif self.branchop == False:   title = _('Close Branch: ') + branchu   else:   title = _('New Branch: ') + self.branchop   self.branchbutton.setText(title)     # Update parent csinfo widget   self.pcsinfo.set_revision(None)   self.pcsinfo.update()     # This is ugly, but want pnlabel to have the same alignment/style/etc   # as pcsinfo, so extract the needed parts of pcsinfo's markup. Would   # be nicer if csinfo exposed this information, or if csinfo could hold   # widgets like pnlabel.   if self.hasmqbutton:   parent = hglib.fromunicode(_('Parent:'))   patchname = hglib.fromunicode(_('Patch name:'))   text = hglib.fromunicode(self.pcsinfo.revlabel.text())   cellend = '</td>'   firstidx = text.find(cellend) + len(cellend)   secondidx = text[firstidx:].rfind('</tr>')   if firstidx >= 0 and secondidx >= 0:   start = text[0:firstidx].replace(parent, patchname)   self.pnlabel.setText(start + text[firstidx+secondidx:])   else:   self.pnlabel.setText(patchname)   self.mqSetAction()     def branchOp(self):   d = branchop.BranchOpDialog(self.repo, self.branchop, self)   d.setWindowFlags(Qt.Sheet)   d.setWindowModality(Qt.WindowModal)   if d.exec_() == QDialog.Accepted:   self.branchop = d.branchop   self.refresh()     def canUndo(self):   'Returns undo description or None if not valid'   if os.path.exists(self.repo.sjoin('undo')):   try:   args = self.repo.opener('undo.desc', 'r').read().splitlines()   if args[1] != 'commit':   return None   return _('Rollback commit to revision %d') % (int(args[0]) - 1)   except (IOError, IndexError, ValueError):   pass   return None     def rollback(self):   msg = self.canUndo()   if not msg:   return   d = QMessageBox.question(self, _('Confirm Undo'), msg,   QMessageBox.Ok | QMessageBox.Cancel)   if d != QMessageBox.Ok:   return   self.repo.incrementBusyCount()   self.repo.rollback()   self.repo.decrementBusyCount()   self.reload()   QTimer.singleShot(500, lambda: shlib.shell_notify([self.repo.root]))     def updateRecentMessages(self):   # Define a menu that lists recent messages   m = QMenu()   for s in self.msghistory:   title = s.split('\n', 1)[0][:70]   def overwriteMsg(newMsg): return lambda: self.msgSelected(newMsg)   m.addAction(title).triggered.connect(overwriteMsg(s))   self.recentMessagesButton.setMenu(m)     def getMessage(self):   text = self.msgte.text()   try:   text = hglib.fromunicode(text, 'strict')   except UnicodeEncodeError:   pass # TODO   return text     def msgSelected(self, message):   if self.msgte.text() and self.msgte.isModified():   d = QMessageBox.question(self, _('Confirm Discard Message'),   _('Discard current commit message?'),   QMessageBox.Ok | QMessageBox.Cancel)   if d != QMessageBox.Ok:   return   self.setMessage(message)   self.msgte.setFocus()     def setMessage(self, msg):   self.msgte.setText(msg)   self.msgte.moveCursorToEnd()   self.msgte.setModified(False)     def canExit(self):   if not self.stwidget.canExit():   return False   return not self.runner.core.running()     def loadSettings(self, s, prefix):   'Load history, etc, from QSettings instance'   repoid = str(self.repo[0])   lpref = prefix + '/commit/' # local settings (splitter, etc)   gpref = 'commit/' # global settings (history, etc)   # message history is stored in unicode   self.split.restoreState(s.value(lpref+'split').toByteArray())   self.msgte.loadSettings(s, lpref+'msgte')   self.stwidget.loadSettings(s, lpref+'status')   self.msghistory = list(s.value(gpref+'history-'+repoid).toStringList())   self.msghistory = [unicode(m) for m in self.msghistory if m]   self.updateRecentMessages()   self.userhist = s.value(gpref+'userhist').toStringList()   self.userhist = [u for u in self.userhist if u]   try:   curmsg = self.repo.opener('cur-message.txt').read()   self.setMessage(hglib.tounicode(curmsg))   except EnvironmentError:   pass   try:   curmsg = self.repo.opener('last-message.txt').read()   if curmsg:   self.addMessageToHistory(hglib.tounicode(curmsg))   except EnvironmentError:   pass     def saveSettings(self, s, prefix):   'Save history, etc, in QSettings instance'   repoid = str(self.repo[0])   lpref = prefix + '/commit/'   gpref = 'commit/'   s.setValue(lpref+'split', self.split.saveState())   self.msgte.saveSettings(s, lpref+'msgte')   self.stwidget.saveSettings(s, lpref+'status')   s.setValue(gpref+'history-'+repoid, self.msghistory)   s.setValue(gpref+'userhist', self.userhist)   try:   msg = self.getMessage()   self.repo.opener('cur-message.txt', 'w').write(msg)   except EnvironmentError:   pass     def addMessageToHistory(self, umsg):   umsg = unicode(umsg)   if umsg in self.msghistory:   self.msghistory.remove(umsg)   self.msghistory.insert(0, umsg)   self.msghistory = self.msghistory[:10]   self.updateRecentMessages()     def addUsernameToHistory(self, user):   user = hglib.tounicode(user)   if user in self.userhist:   self.userhist.remove(user)   self.userhist.insert(0, user)   self.userhist = self.userhist[:10]     def commit(self):   repo = self.repo   msg = self.getMessage()   if not msg:   qtlib.WarningMsgBox(_('Nothing Commited'),   _('Please enter commit message'),   parent=self)   self.msgte.setFocus()   return   + linkmandatory = self.repo.ui.config('tortoisehg', + 'issue.linkmandatory', False) + if linkmandatory: + issueregex = self.repo.ui.config('tortoisehg', 'issue.regex') + if issueregex: + m = re.search(issueregex, msg) + if not m: + qtlib.WarningMsgBox(_('Nothing Commited'), + _('No issue link was found in the commit message. ' + 'The commit message should contain an issue ' + 'link. Configure this in the \'Issue Tracking\' ' + 'section of the settings.'), + parent=self) + self.msgte.setFocus() + return False +   commandlines = []     brcmd = []   newbranch = False   if self.branchop is None:   newbranch = repo[None].branch() != repo['.'].branch()   elif self.branchop == False:   brcmd = ['--close-branch']   else:   commandlines, newbranch = self.getBranchCommandLine(self.branchop,   self.repo)   if commandlines is None:   return   self.files = self.stwidget.getChecked('MAR?!S')   if not (self.files or brcmd or newbranch):   qtlib.WarningMsgBox(_('No files checked'),   _('No modified files checkmarked for commit'),   parent=self)   self.stwidget.tv.setFocus()   return   if len(repo.parents()) > 1:   self.files = []     user = qtlib.getCurrentUsername(self, self.repo, self.opts)   if not user:   return   self.addUsernameToHistory(user)     checkedUnknowns = self.stwidget.getChecked('?I')   if checkedUnknowns:   res = qtlib.CustomPrompt(   _('Confirm Add'),   _('Add selected untracked files?'), self,   (_('&Add'), _('Cancel')), 0, 1,   checkedUnknowns).run()   if res == 0:   haslf = 'largefiles' in repo.extensions()   haskbf = 'kbfiles' in repo.extensions()   if haslf or haskbf:   result = lfprompt.promptForLfiles(self, repo.ui, repo,   checkedUnknowns, haskbf)   if not result:   return   checkedUnknowns, lfiles = result   if lfiles:   if haslf:   cmd = ['add', '--repository', repo.root, '--large'] + \   [repo.wjoin(f) for f in lfiles]   else:   cmd = ['add', '--repository', repo.root, '--bf'] + \   [repo.wjoin(f) for f in lfiles]   commandlines.append(cmd)   cmd = ['add', '--repository', repo.root] + \   [repo.wjoin(f) for f in checkedUnknowns]   commandlines.append(cmd)   else:   return   checkedMissing = self.stwidget.getChecked('!')   if checkedMissing:   res = qtlib.CustomPrompt(   _('Confirm Remove'),   _('Remove selected deleted files?'), self,   (_('&Remove'), _('Cancel')), 0, 1,   checkedMissing).run()   if res == 0:   cmd = ['remove', '--repository', repo.root] + \   [repo.wjoin(f) for f in checkedMissing]   commandlines.append(cmd)   else:   return   try:   date = self.opts.get('date')   if date:   util.parsedate(date)   dcmd = ['--date', date]   else:   dcmd = []   except error.Abort, e:   if e.hint:   err = _('%s (hint: %s)') % (hglib.tounicode(str(e)),   hglib.tounicode(e.hint))   else:   err = hglib.tounicode(str(e))   self.showMessage.emit(err)   dcmd = []   cmdline = ['commit', '--repository', repo.root, '--verbose',   '--user', user, '--message='+msg]   cmdline += dcmd + brcmd + [repo.wjoin(f) for f in self.files]   if len(repo.parents()) == 1:   for fname in self.opts.get('autoinc', '').split(','):   fname = fname.strip()   if fname:   cmdline.extend(['--include', fname])     commandlines.append(cmdline)     if self.opts.get('pushafter'):   cmd = ['push', '--repository', repo.root, self.opts['pushafter']]   commandlines.append(cmd)     repo.incrementBusyCount()   self.currentAction = 'commit'   self.currentProgress = _('Commit', 'start progress')   self.progress.emit(*cmdui.startProgress(self.currentProgress, ''))   self.commitButtonEnable.emit(False)   self.mqButtonEnable.emit(False)   self.runner.run(*commandlines)   self.stopAction.setEnabled(True)     def stop(self):   self.runner.cancel()     def commandFinished(self, ret):   self.progress.emit(*cmdui.stopProgress(self.currentProgress))   self.stopAction.setEnabled(False)   self.commitButtonEnable.emit(True)   self.mqButtonEnable.emit(True)   self.repo.decrementBusyCount()   if ret == 0:   self.branchop = None   umsg = self.msgte.text()   if self.currentAction != 'qref':   self.lastCommitMsg = ''   if self.currentAction == 'commit':   # capture last message for BugTraq plugin   self.lastmessage = self.getMessage()   if umsg:   self.addMessageToHistory(umsg)   self.setMessage('')   if self.currentAction == 'commit':   shlib.shell_notify(self.files)   self.commitComplete.emit()    class DetailsDialog(QDialog):   'Utility dialog for configuring uncommon settings'   def __init__(self, opts, userhistory, parent):   QDialog.__init__(self, parent)   self.setWindowTitle(_('%s - commit options') % parent.repo.displayname)   self.repo = parent.repo     layout = QVBoxLayout()   self.setLayout(layout)     hbox = QHBoxLayout()   self.usercb = QCheckBox(_('Set username:'))     usercombo = QComboBox()   usercombo.setEditable(True)   usercombo.setEnabled(False)   SP = QSizePolicy   usercombo.setSizePolicy(SP(SP.Expanding, SP.Minimum))   self.usercb.toggled.connect(usercombo.setEnabled)   self.usercb.toggled.connect(lambda s: s and usercombo.setFocus())     l = []   if opts.get('user'):   val = hglib.tounicode(opts['user'])   self.usercb.setChecked(True)   l.append(val)   try:   val = hglib.tounicode(self.repo.ui.username())   l.append(val)   except util.Abort:   pass   for name in userhistory:   if name not in l:   l.append(name)   for name in l:   usercombo.addItem(name)   self.usercombo = usercombo     usersaverepo = QPushButton(_('Save in Repo'))   usersaverepo.clicked.connect(self.saveInRepo)   usersaverepo.setEnabled(False)   self.usercb.toggled.connect(usersaverepo.setEnabled)     usersaveglobal = QPushButton(_('Save Global'))   usersaveglobal.clicked.connect(self.saveGlobal)   usersaveglobal.setEnabled(False)   self.usercb.toggled.connect(usersaveglobal.setEnabled)     hbox.addWidget(self.usercb)   hbox.addWidget(self.usercombo)   hbox.addWidget(usersaverepo)   hbox.addWidget(usersaveglobal)   layout.addLayout(hbox)     hbox = QHBoxLayout()   self.datecb = QCheckBox(_('Set Date:'))   self.datele = QLineEdit()   self.datele.setEnabled(False)   self.datecb.toggled.connect(self.datele.setEnabled)   curdate = QPushButton(_('Update'))   curdate.setEnabled(False)   self.datecb.toggled.connect(curdate.setEnabled)   self.datecb.toggled.connect(lambda s: s and curdate.setFocus())   curdate.clicked.connect( lambda: self.datele.setText(   hglib.tounicode(hglib.displaytime(util.makedate()))))   if opts.get('date'):   self.datele.setText(opts['date'])   self.datecb.setChecked(True)   else:   self.datecb.setChecked(False)   curdate.clicked.emit(True)     hbox.addWidget(self.datecb)   hbox.addWidget(self.datele)   hbox.addWidget(curdate)   layout.addLayout(hbox)     hbox = QHBoxLayout()   self.pushaftercb = QCheckBox(_('Push After Commit:'))   self.pushafterle = QLineEdit()   self.pushafterle.setEnabled(False)   self.pushaftercb.toggled.connect(self.pushafterle.setEnabled)   self.pushaftercb.toggled.connect(lambda s:   s and self.pushafterle.setFocus())     pushaftersave = QPushButton(_('Save in Repo'))   pushaftersave.clicked.connect(self.savePushAfter)   pushaftersave.setEnabled(False)   self.pushaftercb.toggled.connect(pushaftersave.setEnabled)     if opts.get('pushafter'):   val = hglib.tounicode(opts['pushafter'])   self.pushafterle.setText(val)   self.pushaftercb.setChecked(True)     hbox.addWidget(self.pushaftercb)   hbox.addWidget(self.pushafterle)   hbox.addWidget(pushaftersave)   layout.addLayout(hbox)     hbox = QHBoxLayout()   self.autoinccb = QCheckBox(_('Auto Includes:'))   self.autoincle = QLineEdit()   self.autoincle.setEnabled(False)   self.autoinccb.toggled.connect(self.autoincle.setEnabled)   self.autoinccb.toggled.connect(lambda s:   s and self.autoincle.setFocus())     autoincsave = QPushButton(_('Save in Repo'))   autoincsave.clicked.connect(self.saveAutoInc)   autoincsave.setEnabled(False)   self.autoinccb.toggled.connect(autoincsave.setEnabled)     if opts.get('autoinc'):   val = hglib.tounicode(opts['autoinc'])   self.autoincle.setText(val)   self.autoinccb.setChecked(True)     hbox.addWidget(self.autoinccb)   hbox.addWidget(self.autoincle)   hbox.addWidget(autoincsave)   layout.addLayout(hbox)     BB = QDialogButtonBox   bb = QDialogButtonBox(BB.Ok|BB.Cancel)   bb.accepted.connect(self.accept)   bb.rejected.connect(self.reject)   self.bb = bb   layout.addWidget(bb)     def saveInRepo(self):   fn = os.path.join(self.repo.root, '.hg', 'hgrc')   self.saveToPath([fn])     def saveGlobal(self):   self.saveToPath(hglib.user_rcpath())     def saveToPath(self, path):   fn, cfg = hgrcutil.loadIniFile(path, self)   if not hasattr(cfg, 'write'):   qtlib.WarningMsgBox(_('Unable to save username'),   _('Iniparse must be installed.'), parent=self)   return   if fn is None:   return   try:   user = hglib.fromunicode(self.usercombo.currentText())   if user:   cfg.set('ui', 'username', user)   else:   try:   del cfg['ui']['username']   except KeyError:   pass   wconfig.writefile(cfg, fn)   except IOError, e:   qtlib.WarningMsgBox(_('Unable to write configuration file'),   hglib.tounicode(e), parent=self)     def savePushAfter(self):   path = os.path.join(self.repo.root, '.hg', 'hgrc')   fn, cfg = hgrcutil.loadIniFile([path], self)   if not hasattr(cfg, 'write'):   qtlib.WarningMsgBox(_('Unable to save after commit push'),   _('Iniparse must be installed.'), parent=self)   return   if fn is None:   return   try:   remote = hglib.fromunicode(self.pushafterle.text())   if remote:   cfg.set('tortoisehg', 'cipushafter', remote)   else:   try:   del cfg['tortoisehg']['cipushafter']   except KeyError:   pass   wconfig.writefile(cfg, fn)   except IOError, e:   qtlib.WarningMsgBox(_('Unable to write configuration file'),   hglib.tounicode(e), parent=self)     def saveAutoInc(self):   path = os.path.join(self.repo.root, '.hg', 'hgrc')   fn, cfg = hgrcutil.loadIniFile([path], self)   if not hasattr(cfg, 'write'):   qtlib.WarningMsgBox(_('Unable to save auto include list'),   _('Iniparse must be installed.'), parent=self)   return   if fn is None:   return   try:   list = hglib.fromunicode(self.autoincle.text())   if list:   cfg.set('tortoisehg', 'autoinc', list)   else:   try:   del cfg['tortoisehg']['autoinc']   except KeyError:   pass   wconfig.writefile(cfg, fn)   except IOError, e:   qtlib.WarningMsgBox(_('Unable to write configuration file'),   hglib.tounicode(e), parent=self)     def accept(self):   outopts = {}   if self.datecb.isChecked():   date = hglib.fromunicode(self.datele.text())   try:   util.parsedate(date)   except error.Abort, e:   if e.hint:   err = _('%s (hint: %s)') % (hglib.tounicode(str(e)),   hglib.tounicode(e.hint))   else:   err = hglib.tounicode(str(e))   qtlib.WarningMsgBox(_('Invalid date format'), err, parent=self)   return   outopts['date'] = date   else:   outopts['date'] = ''     if self.usercb.isChecked():   user = hglib.fromunicode(self.usercombo.currentText())   else:   user = ''   outopts['user'] = user   if not user:   try:   self.repo.ui.username()   except util.Abort, e:   if e.hint:   err = _('%s (hint: %s)') % (hglib.tounicode(str(e)),   hglib.tounicode(e.hint))   else:   err = hglib.tounicode(str(e))   qtlib.WarningMsgBox(_('No username configured'),   err, parent=self)   return     if self.pushaftercb.isChecked():   remote = hglib.fromunicode(self.pushafterle.text())   outopts['pushafter'] = remote   else:   outopts['pushafter'] = ''     self.outopts = outopts   QDialog.accept(self)      class CommitDialog(QDialog):   'Standalone commit tool, a wrapper for CommitWidget'     def __init__(self, repo, pats, opts, parent=None):   QDialog.__init__(self, parent)   self.setWindowFlags(Qt.Window)   self.setWindowIcon(qtlib.geticon('hg-commit'))   self.pats = pats   self.opts = opts     layout = QVBoxLayout()   layout.setMargin(0)   self.setLayout(layout)     toplayout = QVBoxLayout()   toplayout.setContentsMargins(5, 5, 5, 0)   layout.addLayout(toplayout)     commit = CommitWidget(repo, pats, opts, False, self)   toplayout.addWidget(commit, 1)     self.statusbar = cmdui.ThgStatusBar(self)   commit.showMessage.connect(self.statusbar.showMessage)   commit.progress.connect(self.statusbar.progress)   commit.linkActivated.connect(self.linkActivated)     BB = QDialogButtonBox   bb = QDialogButtonBox(BB.Ok|BB.Close|BB.Discard)   bb.accepted.connect(self.accept)   bb.rejected.connect(self.reject)   bb.button(BB.Discard).setText('Undo')   bb.button(BB.Discard).clicked.connect(commit.rollback)   bb.button(BB.Close).setDefault(False)   bb.button(BB.Discard).setDefault(False)   bb.button(BB.Ok).setDefault(True)   self.commitButton = bb.button(BB.Ok)   self.commitButton.setText(_('Commit', 'action button'))   self.bb = bb     toplayout.addWidget(self.bb)   layout.addWidget(self.statusbar)     s = QSettings()   self.restoreGeometry(s.value('commit/geom').toByteArray())   commit.loadSettings(s, 'committool')   repo.repositoryChanged.connect(self.updateUndo)   commit.commitComplete.connect(self.postcommit)   commit.commitButtonEnable.connect(self.commitButton.setEnabled)     self.setWindowTitle(_('%s - commit') % repo.displayname)   self.commit = commit   self.commit.reload()   self.updateUndo()   self.commit.msgte.setFocus()   QShortcut(QKeySequence.Refresh, self, self.refresh)     def done(self, ret):   self.commit.repo.configChanged.disconnect(self.commit.configChanged)   self.commit.repo.repositoryChanged.disconnect(self.commit.repositoryChanged)   self.commit.repo.workingBranchChanged.disconnect(self.commit.workingBranchChanged)   self.commit.repo.repositoryChanged.disconnect(self.updateUndo)   super(CommitDialog, self).done(ret)     def linkActivated(self, link):   link = hglib.fromunicode(link)   if link.startswith('subrepo:'):   from tortoisehg.hgqt.run import qtrun   qtrun(run, ui.ui(), root=link[8:])   if link.startswith('shelve:'):   repo = self.commit.repo   from tortoisehg.hgqt import shelve   dlg = shelve.ShelveDialog(repo, self)   dlg.finished.connect(dlg.deleteLater)   dlg.exec_()   self.refresh()     def updateUndo(self):   BB = QDialogButtonBox   undomsg = self.commit.canUndo()   if undomsg:   self.bb.button(BB.Discard).setEnabled(True)   self.bb.button(BB.Discard).setToolTip(undomsg)   else:   self.bb.button(BB.Discard).setEnabled(False)   self.bb.button(BB.Discard).setToolTip('')     def refresh(self):   self.updateUndo()   self.commit.reload()     def postcommit(self):   repo = self.commit.stwidget.repo   if repo.ui.configbool('tortoisehg', 'closeci'):   if self.commit.canExit():   self.reject()   else:   self.commit.stwidget.refthread.wait()   QTimer.singleShot(0, self.reject)     def accept(self):   self.commit.commit()     def reject(self):   if self.commit.canExit():   s = QSettings()   s.setValue('commit/geom', self.saveGeometry())   self.commit.saveSettings(s, 'committool')   QDialog.reject(self)    def run(ui, *pats, **opts):   from tortoisehg.util import paths   from tortoisehg.hgqt import thgrepo   root = opts.get('root', paths.find_root())   repo = thgrepo.repository(ui, path=root)   pats = hglib.canonpaths(pats)   os.chdir(repo.root)   return CommitDialog(repo, pats, opts)
 
762
763
764
 
 
 
 
765
766
767
 
762
763
764
765
766
767
768
769
770
771
@@ -762,6 +762,10 @@
  'while {1} refers to the first group and so on. If no {n} tokens'   'are found in issue.link, the entire matched string is appended '   'instead.')), + _fi(_('Mandatory Issue Reference'), 'tortoisehg.issue.linkmandatory', genBoolRBGroup, + _('When committing, require that a reference to an issue be specified. ' + 'If enabled, the regex configured in \'Issue Regex\' must find a match ' + 'in the commit message.')),   _fi(_('Issue Tracker Plugin'), 'tortoisehg.issue.bugtraqplugin',   (genDeferredCombo, findIssueTrackerPlugins),   _('Configures a COM IBugTraqProvider or IBugTrackProvider2 issue '