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

fogcreek Merge with stable

Changeset eacaa46c6eae

Parents 0524579d8c04

Parents 49d1b27ed01a

by David Golub

Changes to 11 files · Browse files at eacaa46c6eae Showing diff from parent 0524579d8c04 49d1b27ed01a Diff from another changeset...

 
282
283
284
285
286
287
288
 
320
321
322
 
323
324
325
 
459
460
461
 
 
462
463
464
 
659
660
661
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
282
283
284
 
285
286
287
 
319
320
321
322
323
324
325
 
459
460
461
462
463
464
465
466
 
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
@@ -282,7 +282,6 @@
  for filename in filenames]   qtlib.editfiles(self.repo, files, parent=self)   -   @pyqtSlot(QString)   def onLinkActivated(self, link):   link = unicode(link) @@ -320,6 +319,7 @@
  def __init__(self, repo, filename, repoviewer=None):   super(FileDiffDialog, self).__init__(repo, filename, repoviewer)   self._readSettings() + self.menu = None     def closeEvent(self, event):   self._writeSettings() @@ -459,6 +459,8 @@
  self.filerevmodel.filled.connect(self.modelFilled)   self.tableView_revisions_left.setModel(self.filerevmodel)   self.tableView_revisions_right.setModel(self.filerevmodel) + self.tableView_revisions_left.menuRequested.connect(self.viewMenuRequest) + self.tableView_revisions_right.menuRequested.connect(self.viewMenuRequest)     def createActions(self):   self.actionClose.triggered.connect(self.close) @@ -659,3 +661,99 @@
  self.tableView_revisions_left.saveSettings()   self.tableView_revisions_right.saveSettings()   super(FileDiffDialog, self).reload() + + @pyqtSlot(QPoint, object) + def viewMenuRequest(self, point, selection): + 'User requested a context menu in repo view widget' + if not selection: + return + if self.menu is None: + self.menu = menu = QMenu(self) + a = menu.addAction(_('Visual diff...')) + a.setIcon(qtlib.getmenuicon('visualdiff')) + a.triggered.connect(self.onVisualDiff) + a = menu.addAction(_('Diff to local...')) + a.setIcon(qtlib.getmenuicon('ldiff')) + a.triggered.connect(self.onVisualDiffToLocal) + menu.addSeparator() + a = menu.addAction(_('Visual diff file...')) + a.setIcon(qtlib.getmenuicon('visualdiff')) + a.triggered.connect(self.onVisualDiffFile) + a = menu.addAction(_('Diff file to local...')) + a.setIcon(qtlib.getmenuicon('ldiff')) + a.triggered.connect(self.onVisualDiffFileToLocal) + menu.addSeparator() + a = menu.addAction(_('View at revision...')) + a.setIcon(qtlib.getmenuicon('view-at-revision')) + a.triggered.connect(self.onViewFileAtRevision) + a = menu.addAction(_('Edit local')) + a.setIcon(qtlib.getmenuicon('edit-file')) + a.triggered.connect(self.onEditLocal) + a = menu.addAction(_('Revert to revision...')) + a.setIcon(qtlib.getmenuicon('hg-revert')) + a.triggered.connect(self.onRevertFileToRevision) + self.selection = selection + self.menu.exec_(point) + + def onVisualDiff(self): + opts = dict(change=self.selection[0]) + dlg = visdiff.visualdiff(self.repo.ui, self.repo, [], opts) + if dlg: + dlg.exec_() + dlg.deleteLater() + + def onVisualDiffToLocal(self): + opts = dict(rev=['rev(%d)' % self.selection[0]]) + dlg = visdiff.visualdiff(self.repo.ui, self.repo, [], opts) + if dlg: + dlg.exec_() + dlg.deleteLater() + + def onVisualDiffFile(self): + rev = self.selection[0] + paths = [self.filerevmodel.graph.filename(rev)] + opts = dict(change=self.selection[0]) + dlg = visdiff.visualdiff(self.repo.ui, self.repo, paths, opts) + if dlg: + dlg.exec_() + dlg.deleteLater() + + def onVisualDiffFileToLocal(self): + rev = self.selection[0] + paths = [self.filerevmodel.graph.filename(rev)] + opts = dict(rev=['rev(%d)' % rev]) + dlg = visdiff.visualdiff(self.repo.ui, self.repo, paths, opts) + if dlg: + dlg.exec_() + dlg.deleteLater() + + def onEditLocal(self): + filenames = [self.filename] + if not filenames: + return + qtlib.editfiles(self.repo, filenames, parent=self) + + def onRevertFileToRevision(self): + rev = self.selection[0] + if rev is None: + rev = self.repo['.'].rev() + fileSelection = [self.filerevmodel.graph.filename(rev)] + if len(fileSelection) == 0: + return + dlg = revert.RevertDialog(self.repo, fileSelection, rev, self) + if dlg: + dlg.exec_() + dlg.deleteLater() + + def onViewFileAtRevision(self): + rev = self.selection[0] + filenames = [self.filerevmodel.graph.filename(rev)] + if not filenames: + return + if rev is None: + qtlib.editfiles(self.repo, filenames, parent=self) + else: + base, _ = visdiff.snapshot(self.repo, filenames, self.repo[rev]) + files = [os.path.join(base, filename) + for filename in filenames] + qtlib.editfiles(self.repo, files, parent=self)
 
682
683
684
685
 
 
 
 
686
687
688
 
682
683
684
 
685
686
687
688
689
690
691
@@ -682,7 +682,10 @@
  if ctx.rev() is None:   return   wsub, filename, ctx = hglib.getDeepestSubrepoContainingFile(filename, ctx) - assert filename in ctx + if wsub is None: + # The file was not found in the repo context or its subrepos + # This may happen for files that have been removed + return   self.ctx = ctx   self.annfile = filename   self._thread.abort()
 
244
245
246
247
248
 
 
249
250
251
 
244
245
246
 
 
247
248
249
250
251
@@ -244,8 +244,8 @@
  for branch in branches:   self._branchCombo.addItem(branch)   self._branchCombo.setItemData(self._branchCombo.count() - 1, branch, Qt.ToolTipRole) - self._branchLabel.setEnabled(self.filterEnabled and len(branches) > 1) - self._branchCombo.setEnabled(self.filterEnabled and len(branches) > 1) + self._branchLabel.setEnabled(self.filterEnabled and (len(branches) > 1 or self._abranchAction.isChecked())) + self._branchCombo.setEnabled(self.filterEnabled and (len(branches) > 1 or self._abranchAction.isChecked()))   self._branchReloading = False     if not curbranch:
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
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
 # 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 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()     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)     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)      class RepoRegistryView(QDockWidget):     showMessage = pyqtSignal(QString)   openRepo = pyqtSignal(QString, bool)     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.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 - self.updateSettingsFile() + 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):   self.tview.expandToDepth(0)     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())     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 = self.selitem.internalPointer().rootpath()   caption = _('Select an existing repository to add as a subrepo')   FD = QFileDialog   path = hglib.fromunicode(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(), root)   except:   qtlib.WarningMsgBox(_('Cannot open repository'),   _('The selected repository:<br><br>%s<br><br>'   'cannot be open!') % root, parent=self)   return     if 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 = []   if os.path.exists(repo.wjoin('.hgsub')):   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:   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('%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()     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.edit(self.selitem)     def newGroup(self):   self.tview.model().addGroup(_('New Group'))     def removeSelected(self):   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.tview.model()   row = s.row()   parent = s.parent()   m.removeRows(row, 1, parent)   self.tview.selectionChanged(None, None)   self.updateSettingsFile()     @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)
 
79
80
81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
83
84
85
 
86
87
88
 
97
98
99
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
101
102
 
1522
1523
1524
1525
 
1526
1527
1528
 
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
 
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
 
1567
1568
1569
 
1570
1571
1572
1573
@@ -79,10 +79,31 @@
  self.basenode = None   self.destroyed.connect(self.repo.thginvalidate)   + # Determine the "initial revision" that must be shown when + # opening the repo. + # The "initial revision" can be selected via the settings, and it can + # have 3 possible values: + # - "current": Select the current (i.e. working dir parent) revision + # - "tip": Select tip of the repository + # - "workingdir": Select the working directory pseudo-revision + initialRevision= \ + self.repo.ui.config('tortoisehg', 'initialrevision', 'current').lower() + + initialRevisionDict = { + 'current': '.', + 'tip': 'tip', + 'workingdir': None + } + if initialRevision in initialRevisionDict: + default_rev = initialRevisionDict[initialRevision] + else: + # By default we'll select the current (i.e. working dir parent) revision + default_rev = '.' +   if repo.parents()[0].rev() == -1:   self._reload_rev = 'tip'   else: - self._reload_rev = '.' + self._reload_rev = default_rev   self.currentMessage = ''   self.dirty = False   @@ -97,6 +118,30 @@
  self.runner.makeLogVisible.connect(self.makeLogVisible)   self.runner.commandFinished.connect(self.onCommandFinished)   + # Select the widget chosen by the user + defaultWidget = \ + self.repo.ui.config( + 'tortoisehg', 'defaultwidget', 'revdetails').lower() + widgetDict = { + 'revdetails': self.logTabIndex, + 'commit': self.commitTabIndex, + 'mq': self.mqTabIndex, + 'sync': self.syncTabIndex, + 'manifest': self.manifestTabIndex, + 'search': self.grepTabIndex + } + if initialRevision == 'workingdir': + # Do not allow selecting the revision details widget when the + # selected revision is the working directory pseudo-revision + widgetDict['revdetails'] = self.commitTabIndex + + if defaultWidget in widgetDict: + widgetIndex = widgetDict[defaultWidget] + # Note: if the mq extension is not enabled, self.mqTabIndex will + # be negative + if widgetIndex > 0: + self.taskTabsWidget.setCurrentIndex(widgetIndex) +   def setupUi(self):   SP = QSizePolicy   @@ -1522,7 +1567,7 @@
    def bundleRevisions(self, base=None, tip=None):   root = self.repo.root - if not base: + if base is None or base is False:   base = self.rev   data = dict(name=os.path.basename(root), base=base)   if tip is None:
 
58
59
60
 
 
61
62
63
 
58
59
60
61
62
63
64
65
@@ -58,6 +58,8 @@
  self.grid.addWidget(pcombo, 0, 1)     ### Options + self.discard_chk.setText(_('Discard remote changes, no backup ' + '(-C/--clean)'))   self.push_chk = QCheckBox(_('Perform a push before updating'   ' (-p/--push)'))   self.newbranch_chk = QCheckBox(_('Allow pushing new branches'
 
410
411
412
 
 
 
 
 
 
 
 
 
 
 
413
414
415
 
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
@@ -410,6 +410,17 @@
  )),    ({'name': 'log', 'label': _('Workbench'), 'icon': 'menulog'}, ( + _fi(_('Default widget'), 'tortoisehg.defaultwidget', (genDefaultCombo, + ['revdetails', 'commit', 'mq', 'sync', 'manifest', 'search']), + _('Select the initial widget that will be shown when opening a ' + 'repository. ' + 'Default: revdetails')), + _fi(_('Initial revision'), 'tortoisehg.initialrevision', (genDefaultCombo, + ['current', 'tip', 'workingdir']), + _('Select the initial revision that will be selected when opening a ' + 'repository. You can select the "current" (i.e. the working directory ' + 'parent), the current "tip" or the working directory ("workingdir"). ' + 'Default: current')),   _fi(_('Author Coloring'), 'tortoisehg.authorcolor', genBoolCombo,   _('Color changesets by author name. If not enabled, '   'the changes are colored green for merge, red for '
 
405
406
407
408
 
409
410
411
412
413
414
415
 
416
417
 
418
419
420
 
426
427
428
429
 
430
431
 
432
433
434
435
 
 
436
437
 
438
439
440
 
465
466
467
468
469
470
471
 
473
474
475
476
477
478
479
480
481
482
483
484
485
486
 
405
406
407
 
408
409
410
411
412
413
414
 
415
416
 
417
418
419
420
 
426
427
428
 
429
430
 
431
432
433
 
 
434
435
436
 
437
438
439
440
 
465
466
467
 
468
469
470
 
472
473
474
 
 
 
 
 
 
 
 
475
476
477
@@ -405,16 +405,16 @@
  stopts = extract(('unknown', 'ignored', 'clean'), self.opts)   patchecked = {}   try: - if self.pats: + if self.pats:   if self.opts.get('checkall'):   # quickop sets this flag to pre-check even !?IC files   precheckfn = lambda x: True   else:   # status and commit only pre-check MAR files   precheckfn = lambda x: x < 4 - m = hglib.match(self.repo[None], self.pats) + m = hglib.match(self.repo[None], self.pats)   self.repo.bfstatus = True - status = self.repo.status(match=m, **stopts) + 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): @@ -426,15 +426,15 @@
  patchecked.update(d)   wctx = context.workingctx(self.repo, changes=status)   self.patchecked = patchecked - elif self.pctx: + elif self.pctx:   self.repo.bfstatus = True - status = self.repo.status(node1=self.pctx.p1().node(), **stopts) + 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] + else: + wctx = self.repo[None]   self.repo.bfstatus = True - wctx.status(**stopts) + wctx.status(**stopts)   self.repo.bfstatus = False   self.wctx = wctx   @@ -465,7 +465,6 @@
  self.setContextMenuPolicy(Qt.CustomContextMenu)   self.customContextMenuRequested.connect(self.menuRequested)   self.setTextElideMode(Qt.ElideLeft) - self.doubleClicked.connect(self.onDoubleClick)     def scrollTo(self, index, hint=QAbstractItemView.EnsureVisible):   # don't update horizontal position by selection change @@ -473,14 +472,6 @@
  super(WctxFileTree, self).scrollTo(index, hint)   self.horizontalScrollBar().setValue(orighoriz)   - def onDoubleClick(self, index): - if not index.isValid(): - return - path = self.model().getRow(index)[COL_PATH] - dlg = visdiff.visualdiff(self.repo.ui, self.repo, [path], {}) - if dlg: - dlg.exec_() -   def keyPressEvent(self, event):   if event.key() == 32:   self.model().toggleRows(self.selectedRows())
 
15
16
17
18
 
19
20
21
22
23
24
25
 
26
27
28
 
 
29
30
31
 
32
33
34
 
15
16
17
 
18
19
20
21
22
23
24
 
25
26
 
 
27
28
29
30
 
31
32
33
34
@@ -15,20 +15,20 @@
  <?define doc.style.css = {F42E2E5F-6329-4269-B6D8-805C6CFD8D5E} ?>     <!-- help.wxs --> - <?define helpFolder.guid = {4B71277D-72E9-48F2-8A06-C706E9C3B4C0} ?> + <?define helpFolder.guid = {0CD881E3-815A-4227-9F7C-B9D70C1191EF} ?>     <!-- i18n.wxs -->   <?define i18nFolder.guid = {5191051C-742F-470E-AD76-D83C2F1EDE4E} ?>     <!-- templates.wxs -->   <?define templates.root.guid = {6A82D0BF-6878-42F3-92FD-AB39F7A97EEF} ?> - <?define templates.atom.guid = {602F0A54-F5AF-4D22-A2FE-80A188531D02} ?> + <?define templates.atom.guid = {68D030FA-56A1-4CAF-ADBF-07362B1DDF15} ?>   <?define templates.coal.guid = {89768AB3-A942-470B-8C1C-9C026B80FF8E} ?> - <?define templates.gitweb.guid = {66F4305F-8AC6-4B55-AC24-30FFC3161EF0} ?> - <?define templates.monoblue.guid = {F1CC0065-B3D2-4D4C-BD7F-EFDBB4B47CBB} ?> + <?define templates.gitweb.guid = {516A9A5F-33DF-41EC-B64C-F910251549D7} ?> + <?define templates.monoblue.guid = {BF01AC59-C62C-4946-B820-E528748EB3B2} ?>   <?define templates.paper.guid = {31BF16C5-3525-47F7-9733-F67A3B02171B} ?>   <?define templates.raw.guid = {936139F7-9A73-4685-80D2-F17A2BC42EAD} ?> - <?define templates.rss.guid = {891DA56F-B02B-456F-8471-FE47024051E7} ?> + <?define templates.rss.guid = {948BDACE-4E70-459A-BDD2-89158FD53F1F} ?>   <?define templates.spartan.guid = {C49A4A44-53EB-4C37-AA0B-159070F46E84} ?>   <?define templates.static.guid = {B6C414E5-CD1E-4820-86E7-EEC2386426BE} ?>  
 
13
14
15
 
16
 
17
18
19
 
13
14
15
16
17
18
19
20
21
@@ -13,7 +13,9 @@
  <File Name="diffs.txt" />   <File Name="environment.txt" />   <File Name="extensions.txt" /> + <File Name="filesets.txt" />   <File Name="glossary.txt" /> + <File Name="hgignore.txt" />   <File Name="hgweb.txt" />   <File Name="merge-tools.txt" />   <File Name="multirevs.txt" />
 
45
46
47
 
 
48
49
50
 
58
59
60
 
61
62
63
 
85
86
87
 
88
89
90
 
161
162
163
 
 
164
165
166
 
45
46
47
48
49
50
51
52
 
60
61
62
63
64
65
66
 
88
89
90
91
92
93
94
 
165
166
167
168
169
170
171
172
@@ -45,6 +45,8 @@
  <File Id="atom.map" Name="map" />   <File Id="atom.tagentry.tmpl" Name="tagentry.tmpl" />   <File Id="atom.tags.tmpl" Name="tags.tmpl" /> + <File Id="atom.bookmarks.tmpl" Name="bookmarks.tmpl" /> + <File Id="atom.bookmarkentry.tmpl" Name="bookmarkentry.tmpl" />   </Component>   </Directory>   @@ -58,6 +60,7 @@
  <Directory Id="templates.gitwebdir" Name="gitweb">   <Component Id="templates.gitweb" Guid="$(var.templates.gitweb.guid)" Win64='$(var.IsX64)'>   <File Id="gitweb.branches.tmpl" Name="branches.tmpl" KeyPath="yes" /> + <File Id="gitweb.bookmarks.tmpl" Name="bookmarks.tmpl" />   <File Id="gitweb.changelog.tmpl" Name="changelog.tmpl" />   <File Id="gitweb.changelogentry.tmpl" Name="changelogentry.tmpl" />   <File Id="gitweb.changeset.tmpl" Name="changeset.tmpl" /> @@ -85,6 +88,7 @@
  <Directory Id="templates.monobluedir" Name="monoblue">   <Component Id="templates.monoblue" Guid="$(var.templates.monoblue.guid)" Win64='$(var.IsX64)'>   <File Id="monoblue.branches.tmpl" Name="branches.tmpl" KeyPath="yes" /> + <File Id="monoblue.bookmarks.tmpl" Name="bookmarks.tmpl" />   <File Id="monoblue.changelog.tmpl" Name="changelog.tmpl" />   <File Id="monoblue.changelogentry.tmpl" Name="changelogentry.tmpl" />   <File Id="monoblue.changeset.tmpl" Name="changeset.tmpl" /> @@ -161,6 +165,8 @@
  <File Id="rss.map" Name="map" />   <File Id="rss.tagentry.tmpl" Name="tagentry.tmpl" />   <File Id="rss.tags.tmpl" Name="tags.tmpl" /> + <File Id="rss.bookmarks.tmpl" Name="bookmarks.tmpl" /> + <File Id="rss.bookmarkentry.tmpl" Name="bookmarkentry.tmpl" />   </Component>   </Directory>