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

Merge with stable

Changeset 093431cbccdf

Parents af1e7e35ef12

Parents f9d400caa71b

by Adrian Buehlmann

Changes to 16 files · Browse files at 093431cbccdf Showing diff from parent af1e7e35ef12 f9d400caa71b Diff from another changeset...

Added image
Change 1 of 1 Show Entire File tortoisehg/​hgqt/​bfprompt.py Stacked
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@@ -0,0 +1,52 @@
+# bfprompt.py - prompt to add large files as bfiles +# +# Copyright 2011 Fog Creek Software +# +# This software may be used and distributed according to the terms of the +# GNU General Public License version 2 or any later version. + +import os + +from mercurial import match +from tortoisehg.hgqt import qtlib +from tortoisehg.hgqt.i18n import _ + +class BfilesPrompt(qtlib.CustomPrompt): + def __init__(self, parent, files=None): + qtlib.CustomPrompt.__init__(self, _('Confirm Add'), + _('Some of the files that you have selected are of a size ' + 'over 10 MB. You may make more efficient use of disk space ' + 'by adding these files as bfiles, which will store only the ' + 'most recent revision of each file in your local repository, ' + 'with older revisions available on the server. Do you wish ' + 'to add these files as bfiles?'), parent, + (_('Add as &Bfiles'), _('Add as &Normal Files'), _('Cancel')), + 0, 2, files) + +def promptForBfiles(parent, ui, repo, files): + bfiles = [] + usekbf = os.path.exists(repo.standin('.kbf')) + minsize = int(ui.config('kilnbfiles', 'size', default='10')) + patterns = ui.config('kilnbfiles', 'patterns', default=()) + if patterns: + patterns = patterns.split(' ') + matcher = match.match(repo.root, '', list(patterns)) + else: + matcher = None + for wfile in files: + if not matcher or not matcher(wfile) or not usekbf: + filesize = os.path.getsize(repo.wjoin(wfile)) + if filesize >= 10*1024*1024 and (filesize < minsize*1024*1024 or not usekbf): + bfiles.append(wfile) + if bfiles: + ret = BfilesPrompt(parent, files).run() + if ret == 0: + # add as bfiles + for bfile in bfiles: + files.remove(bfile) + elif ret == 1: + # add as normal files + bfiles = [] + elif ret == 2: + return None + return files, bfiles
 
47
48
49
50
 
51
52
53
 
72
73
74
 
75
76
77
 
302
303
304
 
 
 
305
306
307
 
315
316
317
 
 
318
319
320
 
324
325
326
 
 
 
327
328
329
 
367
368
369
 
 
 
370
371
 
47
48
49
 
50
51
52
53
 
72
73
74
75
76
77
78
 
303
304
305
306
307
308
309
310
311
 
319
320
321
322
323
324
325
326
 
330
331
332
333
334
335
336
337
338
 
376
377
378
379
380
381
382
383
@@ -47,7 +47,7 @@
  return None   try:   data = fctx.data() - if '\0' in data: + if '\0' in data or ctx.isKbf(wfile):   self.error = p + _('File is binary.\n')   return None   except (EnvironmentError, util.Abort), e: @@ -72,6 +72,7 @@
  return 'C'   return None   + isbfile = False   repo = ctx._repo   self.flabel += u'<b>%s</b>' % hglib.tounicode(wfile)   @@ -302,6 +303,9 @@
  else:   self.contents = olddata   self.flabel += _(' <i>(was deleted)</i>') + elif hasattr(ctx.p1(), 'hasBfile') and ctx.p1().hasBfile(wfile): + self.error = 'binary file' + self.flabel += _(' <i>(was deleted)</i>')   else:   self.flabel += _(' <i>(was added, now missing)</i>')   return @@ -315,6 +319,8 @@
  return   else:   data = util.posixfile(absfile, 'r').read() + elif ctx.hasBfile(wfile): + data = '\0'   else:   data = ctx.filectx(wfile).data()   if '\0' in data: @@ -324,6 +330,9 @@
  return     if status in ('M', 'A'): + if ctx.hasBfile(wfile): + wfile = ctx.standin(wfile) + isbfile = True   res = self.checkMaxDiff(ctx, wfile, maxdiff)   if res is None:   if status == 'A': @@ -367,5 +376,8 @@
  revs = [str(ctx), str(ctx2)]   diffopts = patch.diffopts(repo.ui, {})   diffopts.git = False + if isbfile: + olddata += '\0' + newdata += '\0'   self.diff = mdiff.unidiff(olddata, olddate, newdata, newdate,   oldname, wfile, revs, diffopts)
 
144
145
146
 
 
147
148
149
 
144
145
146
147
148
149
150
151
@@ -144,6 +144,8 @@
  for lst, flag in ((added, 'A'), (modified, 'M'), (removed, 'R')):   for f in filter(func, lst):   wasmerged = ismerge and f in ctxfiles + if hasattr(self._ctx, 'removeKbf'): + f = self._ctx.removeKbf(f)   files.append({'path': f, 'status': flag, 'parent': parent,   'wasmerged': wasmerged})   return files
 
309
310
311
 
 
 
312
313
314
 
434
435
436
 
 
 
 
 
 
 
 
 
 
 
 
 
 
437
438
439
 
674
675
676
 
 
 
 
 
 
 
 
 
677
678
679
 
309
310
311
312
313
314
315
316
317
 
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
 
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
@@ -309,6 +309,9 @@
  self.actionNextDiff.setEnabled(False)   self.actionPrevDiff.setEnabled(False)   + self.maxWidth = 0 + self.sci.showHScrollBar(False) +   def displayFile(self, filename=None, status=None):   if isinstance(filename, (unicode, QString)):   filename = hglib.fromunicode(filename) @@ -434,6 +437,20 @@
  self.actionNextDiff.setEnabled(bool(self._diffs))   self.actionPrevDiff.setEnabled(bool(self._diffs))   + lexer = self.sci.lexer() + + if lexer: + font = self.sci.lexer().font(0) + else: + font = self.sci.font() + + fm = QFontMetrics(font) + maxWidth = fm.maxWidth() + lines = self.sci.text().split('\n') + widths = [fm.width(line) + maxWidth for line in lines] + self.maxWidth = max(widths) + self.updateScrollBar() +   #   # These four functions are used by Shift+Cursor actions in revdetails   # @@ -674,6 +691,15 @@
  add(name, func)   menu.exec_(point)   + def resizeEvent(self, event): + super(HgFileView, self).resizeEvent(event) + self.updateScrollBar() + + def updateScrollBar(self): + sbWidth = self.sci.verticalScrollBar().width() + scrollWidth = self.maxWidth + sbWidth - self.sci.width() + self.sci.showHScrollBar(scrollWidth > 0) + self.sci.horizontalScrollBar().setRange(0, scrollWidth)    class AnnotateView(qscilib.Scintilla):   'QScintilla widget capable of displaying annotations'
 
10
11
12
13
 
14
15
16
 
470
471
472
 
473
474
475
 
 
476
477
478
 
10
11
12
 
13
14
15
16
 
470
471
472
473
474
475
476
477
478
479
480
481
@@ -10,7 +10,7 @@
   from mercurial import ui, hg, error, commands, match, util, subrepo   -from tortoisehg.hgqt import htmlui, visdiff, qtlib, htmldelegate, thgrepo, cmdui +from tortoisehg.hgqt import htmlui, visdiff, qtlib, htmldelegate, thgrepo, cmdui, settings  from tortoisehg.util import paths, hglib, thread2  from tortoisehg.hgqt.i18n import _   @@ -470,9 +470,12 @@
  unit = _('files')   total = len(ctx.manifest())   count = 0 + hasKbf = settings.hasExtension('kbfiles')   for wfile in ctx: # walk manifest   if self.canceled:   break + if hasKbf and thgrepo.isKbf(wfile): + continue   self.progress.emit(topic, count, wfile, unit, total)   count += 1   if not matchfn(wfile):
 
251
252
253
 
 
 
254
255
256
 
258
259
260
261
 
262
263
264
 
251
252
253
254
255
256
257
258
259
 
261
262
263
 
264
265
266
267
@@ -251,6 +251,9 @@
  if not pathinstatus(path, status, uncleanpaths):   continue   + origpath = path + path = self._repo.removeKbf(path) +   e = treeroot   for p in hglib.tounicode(path).split('/'):   if not p in e: @@ -258,7 +261,7 @@
  e = e[p]     for st, filesofst in status.iteritems(): - if path in filesofst: + if origpath in filesofst:   e.setstatus(st)   break   else:
 
97
98
99
100
101
 
 
 
102
103
104
105
106
107
 
108
109
110
 
213
214
215
 
216
217
 
218
219
220
 
97
98
99
 
 
100
101
102
103
104
105
106
107
 
108
109
110
111
 
214
215
216
217
218
219
220
221
222
223
@@ -97,14 +97,15 @@
    def run(self):   try: - wctx = repo[None] - wctx.status(ignored=True, unknown=True) + repo.bfstatus = True + stat = repo.status(ignored=True, unknown=True) + repo.bfstatus = False   trashcan = repo.join('Trashcan')   if os.path.isdir(trashcan):   trash = os.listdir(trashcan)   else:   trash = [] - self.files = wctx.unknown(), wctx.ignored(), trash + self.files = stat[4], stat[5], trash   except Exception, e:   self.error = str(e)   @@ -213,8 +214,10 @@
  self.showMessage.emit('')   match = hglib.matchall(repo)   match.dir = directories.append + repo.bfstatus = True   status = repo.status(match=match, ignored=opts['ignored'],   unknown=opts['unknown'], clean=False) + repo.bfstatus = False   files = status[4] + status[5]     def remove(remove_func, name):
 
12
13
14
15
 
16
17
18
 
101
102
103
 
 
 
 
 
104
105
106
 
136
137
138
139
 
 
 
 
140
141
 
142
143
144
145
146
 
 
 
147
148
149
 
164
165
166
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
168
169
 
12
13
14
 
15
16
17
18
 
101
102
103
104
105
106
107
108
109
110
111
 
141
142
143
 
144
145
146
147
148
 
149
150
151
152
153
154
155
156
157
158
159
160
 
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
@@ -12,7 +12,7 @@
   from tortoisehg.util import hglib, shlib  from tortoisehg.hgqt.i18n import _ -from tortoisehg.hgqt import qtlib, status, cmdui +from tortoisehg.hgqt import qtlib, status, cmdui, bfprompt    from PyQt4.QtCore import *  from PyQt4.QtGui import * @@ -101,6 +101,11 @@
  hbox.addWidget(bb)   toplayout.addLayout(hbox)   self.bb = bb + + if self.command == 'add' and 'kbfiles' in self.repo.extensions(): + self.addBfilesButton = QPushButton(_("Add &Bfiles")) + self.addBfilesButton.clicked.connect(self.addBfiles) + bb.addButton(self.addBfilesButton, BB.ActionRole)     layout.addWidget(self.statusbar)   @@ -136,14 +141,20 @@
  parent=self)   return   if self.command == 'remove': - wctx = self.repo[None] + self.repo.bfstatus = True + repostate = self.repo.status() + self.repo.bfstatus = False + unknown, ignored = repostate[4:6]   for wfile in files: - if wfile not in wctx: + if wfile in unknown or wfile in ignored:   try:   util.unlink(wfile)   except EnvironmentError:   pass   files.remove(wfile) + elif self.command == 'add' and 'kbfiles' in self.repo.extensions(): + self.addWithPrompt(files) + return   if files:   cmdline.extend(files)   self.files = files @@ -164,6 +175,33 @@
  s.setValue('quickop/nobackup', self.chk.isChecked())   QDialog.reject(self)   + def addBfiles(self): + cmdline = ['add', '--bf'] + files = self.stwidget.getChecked() + if not files: + qtlib.WarningMsgBox(_('No files selected'), + _('No operation to perform'), + parent=self) + return + cmdline.extend(files) + self.files = files + self.cmd.run(cmdline) + + def addWithPrompt(self, files): + result = bfprompt.promptForBfiles(self, self.repo.ui, self.repo, files) + if not result: + return + files, bfiles = result + if files: + cmdline = ['add'] + cmdline.extend(files) + self.files = files + self.cmd.run(cmdline) + if bfiles: + cmdline = ['add', '--bf'] + cmdline.extend(bfiles) + self.files = bfiles + self.cmd.run(cmdline)    instance = None  class HeadlessQuickop(QWidget):
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
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
 # reporegistry.py - registry for a user's repositories  #  # Copyright 2010 Adrian Buehlmann <adrian@cadifra.com>  #  # This software may be used and distributed according to the terms of the  # GNU General Public License version 2 or any later version.    import os    from mercurial import commands, error, hg, ui, util    from tortoisehg.util import hglib, paths  from tortoisehg.hgqt.i18n import _  from tortoisehg.hgqt import qtlib, repotreemodel, clone, settings    from PyQt4.QtCore import *  from PyQt4.QtGui import *    import qtlib      def settingsfilename():   """Return path to thg-reporegistry.xml as unicode"""   s = QSettings()   dir = os.path.dirname(unicode(s.fileName()))   return dir + '/' + 'thg-reporegistry.xml'      class RepoTreeView(QTreeView):   showMessage = pyqtSignal(QString)   menuRequested = pyqtSignal(object, object)   openRepo = pyqtSignal(QString, bool)   dropAccepted = pyqtSignal()   updateSettingsFile = pyqtSignal()     def __init__(self, parent):   QTreeView.__init__(self, parent, allColumnsShowFocus=True)   self.selitem = None   self.msg = ''     self.setHeaderHidden(True)   self.setExpandsOnDoubleClick(False)   self.setMouseTracking(True)     # enable drag and drop   # (see http://doc.qt.nokia.com/4.6/model-view-dnd.html)   self.setDragEnabled(True)   self.setAcceptDrops(True)   self.setAutoScroll(True)   self.setDragDropMode(QAbstractItemView.DragDrop)   self.setDefaultDropAction(Qt.MoveAction)   self.setDropIndicatorShown(True)   self.setEditTriggers(QAbstractItemView.DoubleClicked)   self.setSelectionBehavior(QAbstractItemView.SelectRows)   QShortcut('Return', self, self.showFirstTabOrOpen).setContext(   Qt.WidgetShortcut)   QShortcut('Enter', self, self.showFirstTabOrOpen).setContext(   Qt.WidgetShortcut)   QShortcut('Delete', self, self.removeSelected).setContext(   Qt.WidgetShortcut)   QShortcut('F2', self, self.renameSelected).setContext(   Qt.WidgetShortcut)     def contextMenuEvent(self, event):   if not self.selitem:   return   self.menuRequested.emit(event.globalPos(), self.selitem)     def dragEnterEvent(self, event):   if event.source() is self:   # Use the default event handler for internal dragging   super(RepoTreeView, self).dragEnterEvent(event)   return     d = event.mimeData()   for u in d.urls():   root = paths.find_root(hglib.fromunicode(u.toLocalFile()))   if root:   event.setDropAction(Qt.LinkAction)   event.accept()   self.setState(QAbstractItemView.DraggingState)   break     def dropLocation(self, event):   index = self.indexAt(event.pos())     # Determine where the item was dropped.   # Depth in tree: 1 = group, 2 = repo, and (eventually) 3+ = subrepo   depth = self.model().depth(index)   if depth == 1:   group = index   row = -1   elif depth == 2:   indicator = self.dropIndicatorPosition()   group = index.parent()   row = index.row()   if indicator == QAbstractItemView.BelowItem:   row = index.row() + 1   else:   index = group = row = None     return index, group, row     def startDrag(self, supportedActions):   indexes = self.selectedIndexes()   # Make sure that all selected items are of the same type   if len(indexes) == 0:   # Nothing to drag!   return     # Make sure that all items that we are dragging are of the same type   firstItem = indexes[0].internalPointer()   selectionInstanceType = type(firstItem)   for idx in indexes[1:]:   if selectionInstanceType != type(idx.internalPointer()):   # Cannot drag mixed type items   return     # Each item type may support different drag & drop actions   # For instance, suprepo items support Copy actions only   supportedActions = firstItem.getSupportedDragDropActions()     super(RepoTreeView, self).startDrag(supportedActions)     def dropEvent(self, event):   data = event.mimeData()   index, group, row = self.dropLocation(event)     if index:   if event.source() is self:   # Event is an internal move, so pass it to the model   col = 0   drop = self.model().dropMimeData(data, event.dropAction(), row,   col, group)   if drop:   event.accept()   self.dropAccepted.emit()   else:   # Event is a drop of an external repo   accept = False   for u in data.urls():   root = paths.find_root(hglib.fromunicode(u.toLocalFile()))   if root and not self.model().getRepoItem(root):   self.model().addRepo(group, root, row)   accept = True   if accept:   event.setDropAction(Qt.LinkAction)   event.accept()   self.dropAccepted.emit()   self.setAutoScroll(False)   self.setState(QAbstractItemView.NoState)   self.viewport().update()   self.setAutoScroll(True)     def mouseMoveEvent(self, event):   self.msg = ''   pos = event.pos()   idx = self.indexAt(pos)   if idx.isValid():   item = idx.internalPointer()   self.msg = item.details()   self.showMessage.emit(self.msg)     if event.buttons() == Qt.NoButton:   # Bail out early to avoid tripping over this bug:   # http://bugreports.qt.nokia.com/browse/QTBUG-10180   return   super(RepoTreeView, self).mouseMoveEvent(event)     def leaveEvent(self, event):   if self.msg != '':   self.showMessage.emit('')     def mouseDoubleClickEvent(self, event):   if self.selitem and self.selitem.internalPointer().isRepo():   # We can only open mercurial repositories and subrepositories   repotype = self.selitem.internalPointer().repotype()   if repotype == 'hg':   self.showFirstTabOrOpen()   else:   qtlib.WarningMsgBox(   _('Unsupported repository type (%s)') % repotype,   _('Cannot open non mercurial repositories or subrepositories'),   parent=self)   else:   # a double-click on non-repo rows opens an editor   super(RepoTreeView, self).mouseDoubleClickEvent(event)     def selectionChanged(self, selected, deselected):   selection = self.selectedIndexes()   if len(selection) == 0:   self.selitem = None   else:   self.selitem = selection[0]     def sizeHint(self):   size = super(RepoTreeView, self).sizeHint()   size.setWidth(QFontMetrics(self.font()).width('M') * 15)   return size     def showFirstTabOrOpen(self):   'Enter or double click events, show existing or open a new repowidget'   if self.selitem and self.selitem.internalPointer().isRepo():   root = self.selitem.internalPointer().rootpath()   self.openRepo.emit(hglib.tounicode(root), True)     def removeSelected(self):   'remove selected repository'   s = self.selitem   item = s.internalPointer()   if not item.okToDelete():   labels = [(QMessageBox.Yes, _('&Delete')),   (QMessageBox.No, _('Cancel'))]   if not qtlib.QuestionMsgBox(_('Confirm Delete'),   _("Delete Group '%s' and all its entries?")%   item.name, labels=labels, parent=self):   return   m = self.model()   row = s.row()   parent = s.parent()   m.removeRows(row, 1, parent)   self.selectionChanged(None, None)   self.updateSettingsFile.emit()     def renameSelected(self):   'rename selected repository'   self.edit(self.selitem)    class RepoRegistryView(QDockWidget):     showMessage = pyqtSignal(QString)   openRepo = pyqtSignal(QString, bool) + removeRepo = pyqtSignal(QString)     def __init__(self, parent, showSubrepos=False, showNetworkSubrepos=False,   showShortPaths=False):   QDockWidget.__init__(self, parent)     self.watcher = None   self.showSubrepos = showSubrepos   self.showNetworkSubrepos = showNetworkSubrepos   self.showShortPaths = showShortPaths     self.setFeatures(QDockWidget.DockWidgetClosable |   QDockWidget.DockWidgetMovable |   QDockWidget.DockWidgetFloatable)   self.setWindowTitle(_('Repository Registry'))     mainframe = QFrame()   mainframe.setLayout(QVBoxLayout())   self.setWidget(mainframe)   mainframe.layout().setContentsMargins(0, 0, 0, 0)     self.contextmenu = QMenu(self)   self.tview = tv = RepoTreeView(self)     sfile = settingsfilename()   tv.setModel(repotreemodel.RepoTreeModel(sfile, self,   showSubrepos=self.showSubrepos,   showNetworkSubrepos=self.showNetworkSubrepos))     mainframe.layout().addWidget(tv)     tv.setIndentation(10)   tv.setFirstColumnSpanned(0, QModelIndex(), True)   tv.setColumnHidden(1, True)     tv.showMessage.connect(self.showMessage)   tv.menuRequested.connect(self.onMenuRequest)   tv.openRepo.connect(self.openRepo)   tv.updateSettingsFile.connect(self.updateSettingsFile)   tv.dropAccepted.connect(self.dropAccepted)     self.createActions()   QTimer.singleShot(0, self.expand)     # Setup a file system watcher to update the reporegistry   # anytime it is modified by another thg instance   # Note that we must make sure that the settings file exists before   # setting thefile watcher   if not os.path.exists(sfile):   tv.model().write(sfile)   self.watcher = QFileSystemWatcher(self)   self.watcher.addPath(sfile)   self.watcher.fileChanged.connect(self.modifiedSettings)   self._pendingReloadModel = False   self._activeTabRepo = None     def setShowSubrepos(self, show, reloadModel=True):   if self.showSubrepos != show:   self.showSubrepos = show   if reloadModel:   self.reloadModel()     def setShowNetworkSubrepos(self, show, reloadModel=True):   if self.showNetworkSubrepos != show:   self.showNetworkSubrepos = show   if reloadModel:   self.reloadModel()     def setShowShortPaths(self, show):   if self.showShortPaths != show:   self.showShortPaths = show   #self.tview.model().showShortPaths = show   self.tview.model().updateCommonPaths(show)   self.tview.dataChanged(QModelIndex(), QModelIndex())     def updateSettingsFile(self):   # If there is a settings watcher, we must briefly stop watching the   # settings file while we save it, otherwise we'll get the update signal   # that we do not want   sfile = settingsfilename()   if self.watcher:   self.watcher.removePath(sfile)   self.tview.model().write(sfile)   if self.watcher:   self.watcher.addPath(sfile)     # Whenver the settings file must be updated, it is also time to ensure   # that the commonPaths are up to date   QTimer.singleShot(0, self.tview.model().updateCommonPaths)     @pyqtSlot()   def dropAccepted(self):   # Whenever a drag and drop operation is completed, update the settings   # file   QTimer.singleShot(0, self.updateSettingsFile)     @pyqtSlot(QString)   def modifiedSettings(self):   UPDATE_DELAY = 2 # seconds     # Do not update the repo registry more often than   # once every UPDATE_DELAY seconds   if not self._pendingReloadModel:   # There are no pending updates:   # -> schedule and update in UPDATE_DELAY seconds.   # If other update notifications arrive from now   # until now + UPDATE_DELAY, they will be ignored and "rolled into"   # the pending update   self._pendingReloadModel = True   QTimer.singleShot(1000 * UPDATE_DELAY, self.reloadModel)     def reloadModel(self):   self.tview.setModel(   repotreemodel.RepoTreeModel(settingsfilename(), self,   self.showSubrepos, self.showNetworkSubrepos,   self.showShortPaths))   self.expand()   self._pendingReloadModel = False     def expand(self, it=None):   if not it:   self.tview.expandToDepth(0)   else:   # Create a list of ancestors (including the selected item)   from repotreeitem import RepoGroupItem   itchain = [it]   while(not isinstance(itchain[-1], RepoGroupItem)):   itchain.append(itchain[-1].parent())     # Starting from the topmost ancestor (a root item), expand the   # ancestors one by one   m = self.tview.model()   idx = self.tview.rootIndex()   for it in reversed(itchain):   idx = m.index(it.row(), 0, idx)   self.tview.expand(idx)     def addRepo(self, root):   'workbench has opened a new repowidget, ensure it is in the registry'   m = self.tview.model()   it = m.getRepoItem(root, lookForSubrepos=True)   if it == None:   m.addRepo(None, root, -1)   self.updateSettingsFile()     def setActiveTabRepo(self, root):   """"   The selected tab has changed on the workbench   Unmark the previously selected tab and mark the new one as selected on   the Repo Registry as well   """   root = hglib.fromunicode(root)   if self._activeTabRepo:   self._activeTabRepo.setActive(False)   m = self.tview.model()   it = m.getRepoItem(root, lookForSubrepos=True)   if it:   self._activeTabRepo = it   it.setActive(True)   self.tview.dataChanged(QModelIndex(), QModelIndex())     # Make sure that the active tab is visible by expanding its parent   self.expand(it.parent())     def showPaths(self, show):   self.tview.setColumnHidden(1, not show)   self.tview.setHeaderHidden(not show)   if show:   self.tview.resizeColumnToContents(0)   self.tview.resizeColumnToContents(1)     def close(self):   # We must stop monitoring the settings file and then we can save it   sfile = settingsfilename()   self.watcher.removePath(sfile)   self.tview.model().write(sfile)     def _action_defs(self):   a = [("reloadRegistry", _("Refresh repository list"), 'view-refresh',   _("Refresh the Repository Registry list"), self.reloadModel),   ("open", _("Open"), 'thg-repository-open',   _("Open the repository in a new tab"), self.open),   ("openAll", _("Open All"), 'thg-repository-open',   _("Open all repositories in new tabs"), self.openAll),   ("newGroup", _("New Group"), 'new-group',   _("Create a new group"), self.newGroup),   ("rename", _("Rename"), None,   _("Rename the entry"), self.startRename),   ("settings", _("Settings..."), 'settings_user',   _("View the repository's settings"), self.startSettings),   ("remove", _("Remove from registry"), 'menudelete',   _("Remove the node and all its subnodes."   " Repositories are not deleted from disk."),   self.removeSelected),   ("clone", _("Clone..."), 'hg-clone',   _("Clone Repository"), self.cloneRepo),   ("explore", _("Explore"), 'system-file-manager',   _("Open the repository in a file browser"), self.explore),   ("terminal", _("Terminal"), 'utilities-terminal',   _("Open a shell terminal in the repository root"), self.terminal),   ("add", _("Add repository..."), 'hg',   _("Add a repository to this group"), self.addNewRepo),   ("addsubrepo", _("Add a subrepository..."), 'thg-add-subrepo',   _("Convert an existing repository into a subrepository"),   self.addSubrepo),   ("copypath", _("Copy path"), '',   _("Copy the root path of the repository to the clipboard"),   self.copyPath),   ]   return a     def createActions(self):   self._actions = {}   for name, desc, icon, tip, cb in self._action_defs():   self._actions[name] = QAction(desc, self)   QTimer.singleShot(0, self.configureActions)     def configureActions(self):   for name, desc, icon, tip, cb in self._action_defs():   act = self._actions[name]   if icon:   act.setIcon(qtlib.getmenuicon(icon))   if tip:   act.setStatusTip(tip)   if cb:   act.triggered.connect(cb)   self.addAction(act)     def onMenuRequest(self, point, selitem):   menulist = selitem.internalPointer().menulist()   if not menulist:   return   self.contextmenu.clear()   for act in menulist:   if act:   self.contextmenu.addAction(self._actions[act])   else:   self.contextmenu.addSeparator()   self.selitem = selitem   self.contextmenu.exec_(point)     #   ## Menu action handlers   #     def cloneRepo(self):   root = self.selitem.internalPointer().rootpath()   d = clone.CloneDialog(args=[root, root + '-clone'], parent=self)   d.finished.connect(d.deleteLater)   d.clonedRepository.connect(self.open)   d.show()     def explore(self):   root = self.selitem.internalPointer().rootpath()   QDesktopServices.openUrl(QUrl.fromLocalFile(root))     def terminal(self):   repoitem = self.selitem.internalPointer()   qtlib.openshell(repoitem.rootpath(), repoitem.shortname())     def addNewRepo(self):   'menu action handler for adding a new repository'   caption = _('Select repository directory to add')   FD = QFileDialog   path = FD.getExistingDirectory(caption=caption,   options=FD.ShowDirsOnly | FD.ReadOnly)   if path:   root = paths.find_root(hglib.fromunicode(path))   if root and not self.tview.model().getRepoItem(root):   try:   self.tview.model().addRepo(self.selitem, root)   except error.RepoError:   qtlib.WarningMsgBox(   _('Failed to add repository'),   _('%s is not a valid repository') % path, parent=self)   return     def addSubrepo(self):   'menu action handler for adding a new subrepository'   root = hglib.tounicode(self.selitem.internalPointer().rootpath())   caption = _('Select an existing repository to add as a subrepo')   FD = QFileDialog   path = unicode(FD.getExistingDirectory(caption=caption,   directory=root, options=FD.ShowDirsOnly | FD.ReadOnly))   if path:   sroot = paths.find_root(path)   if sroot != root and root == paths.find_root(os.path.dirname(path)):   # The selected path is the root of a repository that is inside   # the selected repository     # Use forward slashes for relative subrepo root paths   srelroot = sroot[len(root)+1:]   srelroot = util.pconvert(srelroot)     # Is is already on the selected repository substate list?   try:   repo = hg.repository(ui.ui(), hglib.fromunicode(root))   except:   qtlib.WarningMsgBox(_('Cannot open repository'),   _('The selected repository:<br><br>%s<br><br>'   'cannot be open!') % root, parent=self)   return     if hglib.fromunicode(srelroot) in repo['.'].substate:   qtlib.WarningMsgBox(_('Subrepository already exists'),   _('The selected repository:<br><br>%s<br><br>'   'is already a subrepository of:<br><br>%s<br><br>'   'as: "%s"') % (sroot, root, srelroot), parent=self)   return   else:   # Already a subrepo!     # Read the current .hgsub file contents   lines = []   hasHgsub = os.path.exists(repo.wjoin('.hgsub'))   if hasHgsub:   try:   fsub = repo.wopener('.hgsub', 'r')   lines = fsub.readlines()   fsub.close()   except:   qtlib.WarningMsgBox(   _('Failed to add repository'),   _('Cannot open the .hgsub file in:<br><br>%s') \   % root, parent=self)     # Make sure that the selected subrepo (or one of its   # subrepos!) is not already on the .hgsub file   linesep = ''   for line in lines:   line = hglib.tounicode(line)   spath = line.split("=")[0].strip()   if not spath:   continue   if not linesep:   linesep = hglib.getLineSeparator(line)   spath = util.pconvert(spath)   if line.startswith(srelroot):   qtlib.WarningMsgBox(   _('Failed to add repository'),   _('The .hgsub file already contains the '   'line:<br><br>%s') % line, parent=self)   return     # Append the new subrepo to the end of the .hgsub file   lines.append(hglib.fromunicode('%s = %s'   % (srelroot, srelroot)))   lines = [line.strip(linesep) for line in lines]     # and update the .hgsub file   try:   fsub = repo.wopener('.hgsub', 'w')   fsub.write(linesep.join(lines))   fsub.close()     if not hasHgsub:   commands.add(ui.ui(), repo, '.hgsub')     qtlib.InfoMsgBox(   _('Subrepo added to .hgsub file'),   _('The selected subrepo:<br><br><i>%s</i><br><br>'   'has been added to the .hgsub file.<br><br>'   'Remember that in order to finish adding the '   'subrepo<br><i>you must still commit</i> the '   '.hgsub file changes.') \   % root, parent=self)   except:   qtlib.WarningMsgBox(   _('Failed to add repository'),   _('Cannot update the .hgsub file in:<br><br>%s') \   % root, parent=self)   return     qtlib.WarningMsgBox(   _('Failed to add repository'),   _('"%s" is not a valid repository inside "%s"') % \   (path, root), parent=self)   return     def startSettings(self):   root = self.selitem.internalPointer().rootpath()   sd = settings.SettingsDialog(configrepo=True, focus='web.name',   parent=self, root=root)   sd.finished.connect(sd.deleteLater)   sd.exec_()     def openAll(self):   for root in self.selitem.internalPointer().childRoots():   self.openRepo.emit(hglib.tounicode(root), False)   def open(self, root=None):   'open context menu action, open repowidget unconditionally'   if not root:   root = self.selitem.internalPointer().rootpath()   repotype = self.selitem.internalPointer().repotype()   else:   root = hglib.fromunicode(root)   if os.path.exists(os.path.join(root, '.hg')):   repotype = 'hg'   else:   repotype = 'unknown'   if repotype == 'hg':   self.openRepo.emit(hglib.tounicode(root), False)   else:   qtlib.WarningMsgBox(   _('Unsupported repository type (%s)') % repotype,   _('Cannot open non mercurial repositories or subrepositories'),   parent=self)     def copyPath(self):   clip = QApplication.clipboard()   clip.setText(self.selitem.internalPointer().rootpath())     def startRename(self):   self.tview.renameSelected()     def newGroup(self):   self.tview.model().addGroup(_('New Group'))     def removeSelected(self): + root = self.selitem.internalPointer().rootpath()   self.tview.removeSelected() + self.removeRepo.emit(hglib.tounicode(root))     @pyqtSlot(QString, QString)   def shortNameChanged(self, uroot, uname):   it = self.tview.model().getRepoItem(hglib.fromunicode(uroot))   if it:   it.setShortName(uname)   self.tview.model().layoutChanged.emit()     @pyqtSlot(QString, object)   def baseNodeChanged(self, uroot, basenode):   it = self.tview.model().getRepoItem(hglib.fromunicode(uroot))   if it:   it.setBaseNode(basenode)     @pyqtSlot(QString)   def repoChanged(self, uroot):   m = self.tview.model()   changedrootpath = hglib.fromunicode(QDir.fromNativeSeparators(uroot))     def isAboveOrBelowUroot(testedpath):   """Return True if rootpath is contained or contains uroot"""   r1 = hglib.fromunicode(QDir.fromNativeSeparators(testedpath)) + "/"   r2 = changedrootpath + "/"   return r1.startswith(r2) or r2.startswith(r1)     m.loadSubrepos(m.rootItem, isAboveOrBelowUroot)
 
7
8
9
10
 
11
12
13
 
24
25
26
 
 
 
 
 
 
27
28
29
 
315
316
317
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
318
319
320
 
352
353
354
 
 
 
355
356
357
 
737
738
739
 
 
 
 
 
 
 
 
 
 
740
741
742
 
915
916
917
 
 
918
919
920
 
7
8
9
 
10
11
12
13
 
24
25
26
27
28
29
30
31
32
33
34
35
 
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
 
398
399
400
401
402
403
404
405
406
 
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
 
974
975
976
977
978
979
980
981
@@ -7,7 +7,7 @@
   import os   -from mercurial import ui, util, error +from mercurial import ui, util, error, extensions    from tortoisehg.util import hglib, settings, paths, wconfig, i18n, bugtraq  from tortoisehg.hgqt.i18n import _ @@ -24,6 +24,12 @@
 _unspecstr = _('<unspecified>')  ENTRY_WIDTH = 300   +def hasExtension(extname): + for name, module in extensions.extensions(): + if name == extname: + return True + return False +  class SettingsCombo(QComboBox):   def __init__(self, parent=None, **opts):   QComboBox.__init__(self, parent, toolTip=opts['tooltip']) @@ -315,6 +321,46 @@
  return self.value() != self.curvalue     +class PathBrowser(QWidget): + def __init__(self, parent=None, **opts): + QWidget.__init__(self, parent, toolTip=opts['tooltip']) + self.opts = opts + + self.lineEdit = QLineEdit() + completer = QCompleter(self) + completer.setModel(QDirModel(completer)) + self.lineEdit.setCompleter(completer) + + self.browseButton = QPushButton(_('&Browse...')) + self.browseButton.clicked.connect(self.browse) + + layout = QHBoxLayout() + layout.setContentsMargins(0, 0, 0, 0) + layout.addWidget(self.lineEdit) + layout.addWidget(self.browseButton) + self.setLayout(layout) + + def browse(self): + dir = QFileDialog.getExistingDirectory(self, directory=self.lineEdit.text(), + options=QFileDialog.ShowDirsOnly) + if dir: + self.lineEdit.setText(dir) + + ## common APIs for all edit widgets + def setValue(self, curvalue): + self.curvalue = curvalue + if curvalue: + self.lineEdit.setText(hglib.tounicode(curvalue)) + else: + self.lineEdit.setText('') + + def value(self): + utext = self.lineEdit.text() + return utext and hglib.fromunicode(utext) or None + + def isDirty(self): + return self.value() != self.curvalue +  def genEditCombo(opts, defaults=[]):   opts['canedit'] = True   opts['defaults'] = defaults @@ -352,6 +398,9 @@
 def genBugTraqEdit(opts):   return BugTraqConfigureEntry(**opts)   +def genPathBrowser(opts): + return PathBrowser(**opts) +  def findIssueTrackerPlugins():   plugins = bugtraq.get_issue_plugins_with_names()   names = [("%s %s" % (key[0], key[1])) for key in plugins] @@ -737,6 +786,16 @@
  _fi(_('Target People'), 'reviewboard.target_people', genEditCombo,   _('A comma separated list of target people')),   )), + +({'name': 'kbfiles', 'label': _('Kiln Bfiles'), 'icon': 'kiln', 'extension': 'kbfiles'}, ( + _fi(_('Patterns'), 'kilnbfiles.patterns', genEditCombo, + _('Files with names meeting the specified patterns will be automatically ' + 'added as bfiles')), + _fi(_('Size'), 'kilnbfiles.size', genEditCombo, + _('Files of at least the specified size (in megabytes) will be added as bfiles')), + _fi(_('System Cache'), 'kilnbfiles.systemcache', genPathBrowser, + _('Path to the directory where a system-wide cache of bfiles will be stored')), + )),    )   @@ -915,6 +974,8 @@
    # add page items to treeview   for meta, info in INFO: + if 'extension' in meta and not hasExtension(meta['extension']): + continue   if isinstance(meta['icon'], str):   icon = qtlib.geticon(meta['icon'])   else:
 
11
12
13
14
 
15
16
17
 
413
414
415
416
 
417
418
419
 
434
435
436
 
437
 
438
439
440
 
446
447
448
 
449
 
450
451
452
 
453
 
454
455
456
 
11
12
13
 
14
15
16
17
 
413
414
415
 
416
417
418
419
 
434
435
436
437
438
439
440
441
442
 
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
@@ -11,7 +11,7 @@
   from tortoisehg.util import paths, hglib  from tortoisehg.hgqt.i18n import _ -from tortoisehg.hgqt import qtlib, wctxactions, visdiff, cmdui, fileview +from tortoisehg.hgqt import qtlib, wctxactions, visdiff, cmdui, fileview, thgrepo    from PyQt4.QtCore import *  from PyQt4.QtGui import * @@ -413,7 +413,7 @@
    def __init__(self, repo, pctx, pats, opts, parent=None):   super(StatusThread, self).__init__() - self.repo = hg.repository(repo.ui, repo.root) + self.repo = thgrepo.repository(repo.ui, repo.root)   self.pctx = pctx   self.pats = pats   self.opts = opts @@ -434,7 +434,9 @@
  # status and commit only pre-check MAR files   precheckfn = lambda x: x < 4   m = hglib.match(self.repo[None], self.pats) + self.repo.bfstatus = True   status = self.repo.status(match=m, **stopts) + self.repo.bfstatus = False   # Record all matched files as initially checked   for i, stat in enumerate(StatusType.preferredOrder):   if stat == 'S': @@ -446,11 +448,15 @@
  wctx = context.workingctx(self.repo, changes=status)   self.patchecked = patchecked   elif self.pctx: + self.repo.bfstatus = True   status = self.repo.status(node1=self.pctx.p1().node(), **stopts) + self.repo.bfstatus = False   wctx = context.workingctx(self.repo, changes=status)   else:   wctx = self.repo[None] + self.repo.bfstatus = True   wctx.status(**stopts) + self.repo.bfstatus = False   self.wctx = wctx     wctx.dirtySubrepos = []
 
12
13
14
 
15
16
17
 
24
25
26
 
27
28
29
 
263
264
265
266
267
 
 
268
269
270
 
283
284
285
286
 
287
288
289
 
536
537
538
 
 
 
 
 
 
 
 
 
 
 
539
540
541
 
602
603
604
 
 
 
605
 
 
 
 
 
 
 
 
 
606
607
608
609
610
611
612
 
651
652
653
 
 
 
 
12
13
14
15
16
17
18
 
25
26
27
28
29
30
31
 
265
266
267
 
 
268
269
270
271
272
 
285
286
287
 
288
289
290
291
 
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
 
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
 
 
633
634
635
 
674
675
676
677
678
679
@@ -12,6 +12,7 @@
 import sys  import shutil  import tempfile +import re    from PyQt4.QtCore import *   @@ -24,6 +25,7 @@
 from tortoisehg.util.patchctx import patchctx    _repocache = {} +_kbfregex = re.compile(r'^\.kbf/')    if 'THGDEBUG' in os.environ:   def dbgoutput(*args): @@ -263,8 +265,8 @@
 def _extendrepo(repo):   class thgrepository(repo.__class__):   - def changectx(self, changeid): - '''Extends Mercurial's standard changectx() method to + def __getitem__(self, changeid): + '''Extends Mercurial's standard __getitem__() method to   a) return a thgchangectx with additional methods   b) return a patchctx if changeid is the name of an MQ   unapplied patch @@ -283,7 +285,7 @@
  os.path.isabs(changeid) and os.path.isfile(changeid):   return genPatchContext(repo, changeid)   - changectx = super(thgrepository, self).changectx(changeid) + changectx = super(thgrepository, self).__getitem__(changeid)   changectx.__class__ = _extendchangectx(changectx)   return changectx   @@ -536,6 +538,17 @@
  dest = tempfile.mktemp(ext+'.bak', root+'_', trashcan)   shutil.copyfile(path, dest)   + def isKbf(self, path): + return 'kbfiles' in self.extensions() and _kbfregex.match(path) + + def removeKbf(self, path): + if 'kbfiles' in self.extensions(): + path = _kbfregex.sub('', path) + return path + + def standin(self, path): + return '.kbf/' + path +   return thgrepository     @@ -602,11 +615,21 @@
  summary += u' \u2026' # ellipsis ...     return summary + + def hasBfile(self, file): + return 'kbfiles' in self._repo.extensions() and self._repo.standin(file) in self.manifest()   + def isKbf(self, path): + return self._repo.isKbf(path) + + def removeKbf(self, path): + return self._repo.removeKbf(path) + + def standin(self, path): + return self._repo.standin(path) +   return thgchangectx   - -  _pctxcache = {}  def genPatchContext(repo, patchpath, rev=None):   global _pctxcache @@ -651,3 +674,6 @@
  raise   else:   f.close() + +def isKbf(path): + return _kbfregex.match(path)
 
8
9
10
11
12
 
 
13
14
15
 
52
53
54
 
 
55
56
57
 
266
267
268
 
 
 
 
 
 
 
 
 
 
 
 
 
269
270
271
 
 
 
 
 
 
 
 
272
273
274
 
8
9
10
 
 
11
12
13
14
15
 
52
53
54
55
56
57
58
59
 
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
@@ -8,8 +8,8 @@
 import os  import re   -from mercurial import util, error, merge, commands -from tortoisehg.hgqt import qtlib, htmlui, visdiff +from mercurial import util, error, merge, commands, extensions +from tortoisehg.hgqt import qtlib, htmlui, visdiff, bfprompt  from tortoisehg.util import hglib, shlib  from tortoisehg.hgqt.i18n import _   @@ -52,6 +52,8 @@
  allactions.append(None)   make(_('&Forget'), forget, frozenset('MAC!'), 'filedelete')   make(_('&Add'), add, frozenset('I?'), 'fileadd') + if 'kbfiles' in self.repo.extensions(): + make(_('Add &Bfiles'), addbf, frozenset('I?'))   make(_('&Detect Renames...'), guessRename, frozenset('A?!'),   'detect_rename')   make(_('&Ignore...'), ignore, frozenset('?'), 'ignore') @@ -266,9 +268,30 @@
  return True    def add(parent, ui, repo, files): + if 'kbfiles' in repo.extensions(): + result = bfprompt.promptForBfiles(parent, ui, repo, files) + if not result: + return False + files, bfiles = result + for name, module in extensions.extensions(): + if name == 'kbfiles': + override_add = module.bfsetup.override_add + if files: + override_add(commands.add, ui, repo, *files) + if bfiles: + override_add(commands.add, ui, repo, bf=1, *bfiles) + return True   commands.add(ui, repo, *files)   return True   +def addbf(parent, ui, repo, files): + for name, module in extensions.extensions(): + if name == 'kbfiles': + override_add = module.bfsetup.override_add + override_add(commands.add, ui, repo, bf=True, *files) + return True + return False +  def guessRename(parent, ui, repo, files):   from tortoisehg.hgqt.guess import DetectRenameDialog   dlg = DetectRenameDialog(repo, parent, *files)
 
48
49
50
 
51
52
53
 
473
474
475
 
 
 
 
 
 
 
 
 
476
477
478
 
48
49
50
51
52
53
54
 
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
@@ -48,6 +48,7 @@
  rr.setObjectName('RepoRegistryView')   rr.showMessage.connect(self.showMessage)   rr.openRepo.connect(self.openRepo) + rr.removeRepo.connect(self.removeRepo)   rr.hide()   self.addDockWidget(Qt.LeftDockWidgetArea, rr)   self.activeRepoChanged.connect(rr.setActiveTabRepo) @@ -473,6 +474,15 @@
  root = hglib.fromunicode(root)   self._openRepo(root, reuse)   + def removeRepo(self, root): + """ Close tab if the repo is removed from reporegistry [unicode] """ + root = hglib.fromunicode(root) + for i in xrange(self.repoTabsWidget.count()): + w = self.repoTabsWidget.widget(i) + if hglib.tounicode(w.repo.root) == os.path.normpath(root): + self.repoTabCloseRequested(i) + return +   @pyqtSlot(QString)   def openLinkedRepo(self, path):   self.showRepo(path)
 
90
91
92
 
93
 
94
95
96
 
90
91
92
93
94
95
96
97
98
@@ -90,7 +90,9 @@
  time.sleep(tdelta)     repo = hg.repository(ui, root) # a fresh repo object is needed + repo.bfstatus = True   repostate = repo.status() # will update .hg/dirstate as a side effect + repo.bfstatus = False   modified, added, removed, deleted = repostate[:4]     dirstatus = {}