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

default Merge with stable

Changeset 8cf34332ed01

Parents 57fa0272f191

Parents c5b82b5a2bc7

by Steve Borho

Changes to 21 files · Browse files at 8cf34332ed01 Showing diff from parent 57fa0272f191 c5b82b5a2bc7 Diff from another changeset...

 
262
263
264
 
 
 
265
266
267
268
 
 
 
269
270
271
 
277
278
279
280
281
 
282
283
284
 
262
263
264
265
266
267
268
269
 
 
270
271
272
273
274
275
 
281
282
283
 
 
284
285
286
287
@@ -262,10 +262,14 @@
  _stderr = sys.stderr   sys.stderr = errorstream   try: + # Ensure that all unset dirstate entries can be updated. + time.sleep(2) + updated_any = False   for r in sorted(roots):   try: - shlib.update_thgstatus(_ui, r, wait=False) - shlib.shell_notify([r]) + if shlib.update_thgstatus(_ui, r, wait=False): + updated_any = True + shlib.shell_notify([r], noassoc=True)   logger.msg('Updated ' + r)   except (IOError, OSError):   print "IOError or OSError on updating %s (check permissions)" % r @@ -277,8 +281,7 @@
  failedroots.add(r)   notifypaths -= failedroots   if notifypaths: - time.sleep(2) - shlib.shell_notify(list(notifypaths)) + shlib.shell_notify(list(notifypaths), noassoc=not updated_any)   logger.msg('Shell notified')   errmsg = errorstream.getvalue()   if errmsg:
Added image
 
6
7
8
 
9
10
11
 
14
15
16
17
 
18
19
20
 
676
677
678
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
679
680
681
 
712
713
714
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
715
716
717
 
6
7
8
9
10
11
12
 
15
16
17
 
18
19
20
21
 
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
 
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
@@ -6,6 +6,7 @@
 # GNU General Public License version 2, incorporated herein by reference.    import os +import re    from mercurial import ui, util, error   @@ -14,7 +15,7 @@
 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 +from tortoisehg.hgqt import hgrcutil, mq, lfprompt    from PyQt4.QtCore import *  from PyQt4.QtGui import * @@ -676,6 +677,22 @@
  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 = [] @@ -712,6 +729,22 @@
  (_('&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)
 
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.isStandin(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(), 'hasStandin') and ctx.p1().hasStandin(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.hasStandin(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.hasStandin(wfile): + wfile = ctx.findStandin(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
@@ -144,6 +144,7 @@
  for lst, flag in ((added, 'A'), (modified, 'M'), (removed, 'R')):   for f in filter(func, lst):   wasmerged = ismerge and f in ctxfiles + f = self._ctx.removeStandin(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
 
385
386
387
 
 
388
389
390
 
400
401
402
 
 
 
 
403
404
405
 
469
470
471
 
 
472
473
474
 
 
 
 
475
476
477
 
10
11
12
 
13
14
15
16
 
385
386
387
388
389
390
391
392
 
402
403
404
405
406
407
408
409
410
411
 
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
@@ -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 _   @@ -385,6 +385,8 @@
  pass     def run(self): + haskbf = settings.hasExtension('kbfiles') + haslf = settings.hasExtension('largefiles')   self.thread_id = int(QThread.currentThreadId())     def emitrow(row): @@ -400,6 +402,10 @@
  try:   fname, line, rev, addremove, user, text, tail = \   self.fullmsg.split('\0', 6) + if haslf and thgrepo.isLfStandin(fname): + raise ValueError + if (haslf or haskbf) and thgrepo.isBfStandin(fname): + raise ValueError   text = hglib.tounicode(text)   text = Qt.escape(text)   text = '<b>%s</b> <span>%s</span>' % (addremove, text) @@ -469,9 +475,15 @@
  unit = _('files')   total = len(ctx.manifest())   count = 0 + haskbf = settings.hasExtension('kbfiles') + haslf = settings.hasExtension('largefiles')   for wfile in ctx: # walk manifest   if self.canceled:   break + if haslf and thgrepo.isLfStandin(wfile): + continue + if (haslf or haskbf) and thgrepo.isBfStandin(wfile): + continue   self.progress.emit(topic, count, wfile, unit, total)   count += 1   if not matchfn(wfile):
Change 1 of 1 Show Entire File tortoisehg/​hgqt/​lfprompt.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
@@ -0,0 +1,73 @@
+# 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 LfilesPrompt(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 largefiles, 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 largefiles?'), parent, + (_('Add as &Largefiles'), _('Add as &Normal Files'), _('Cancel')), + 0, 2, files) + +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 promptForLfiles(parent, ui, repo, files, haskbf=False): + lfiles = [] + usekbf = os.path.exists('.kbf') + uself = os.path.exists('.hglf') + useneither = not usekbf and not uself + if haskbf: + section = 'kilnbfiles' + else: + section = 'largefiles' + minsize = int(ui.config(section, 'size', default='10')) + patterns = ui.config(section, '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 useneither: + filesize = os.path.getsize(repo.wjoin(wfile)) + if filesize >= 10*1024*1024 and (filesize < minsize*1024*1024 or useneither): + lfiles.append(wfile) + if lfiles: + if haskbf: + ret = BfilesPrompt(parent, files).run() + else: + ret = LfilesPrompt(parent, files).run() + if ret == 0: + # add as largefiles/bfiles + for lfile in lfiles: + files.remove(lfile) + elif ret == 1: + # add as normal files + lfiles = [] + elif ret == 2: + return None + return files, lfiles
 
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.removeStandin(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
112
113
 
216
217
218
219
220
221
222
223
224
225
226
227
@@ -97,14 +97,17 @@
    def run(self):   try: - wctx = repo[None] - wctx.status(ignored=True, unknown=True) + repo.bfstatus = True + repo.lfstatus = True + stat = repo.status(ignored=True, unknown=True) + repo.bfstatus = False + repo.lfstatus = 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 +216,12 @@
  self.showMessage.emit('')   match = hglib.matchall(repo)   match.dir = directories.append + repo.bfstatus = True + repo.lfstatus = True   status = repo.status(match=match, ignored=opts['ignored'],   unknown=opts['unknown'], clean=False) + repo.bfstatus = False + repo.lfstatus = False   files = status[4] + status[5]     def remove(remove_func, name):
 
64
65
66
67
 
68
69
70
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
72
73
 
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
@@ -64,10 +64,35 @@
  chm = os.path.join(paths.bin_path, 'doc', 'TortoiseHg.chm')   if os.path.exists(chm):   fullurl = (r'mk:@MSITStore:%s::/' % chm) + url - QDesktopServices.openUrl(QUrl.fromLocalFile(fullurl)) + openlocalurl(fullurl)   return   QDesktopServices.openUrl(QUrl(fullurl))   +def startswith(strQstring, startstr): + '''calls startsWith of QString or startswith for others + + takes st, unicode or QString as strQstring''' + + if isinstance(strQstring, QString): + return strQstring.startsWith(startstr) + else: + return strQstring.startswith(startstr) + +def openlocalurl(path): + '''open the given path with the default application + + takes str, unicode or QString as argument''' + + if isinstance(path, str): + path = hglib.tounicode(path) + if os.name == 'nt' and startswith(path, '\\\\'): + # network share, special handling because of qt bug 13359 + # see http://bugreports.qt.nokia.com/browse/QTBUG-13359 + qurl = QUrl().setUrl(QDir.toNativeSeparators(path)) + else: + qurl = QUrl.fromLocalFile(path) + return QDesktopServices.openUrl(qurl) +  def editfiles(repo, files, lineno=None, search=None, parent=None):   if len(files) == 1:   path = repo.wjoin(files[0])
 
12
13
14
15
 
16
17
18
 
107
108
109
 
 
 
 
 
 
 
 
 
 
 
110
111
112
 
147
148
149
 
 
 
 
 
150
151
152
 
153
154
155
 
167
168
169
170
 
171
172
 
173
174
175
176
177
 
 
 
 
178
179
180
 
198
199
200
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
201
202
203
 
12
13
14
 
15
16
17
18
 
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
 
158
159
160
161
162
163
164
165
166
167
 
168
169
170
171
 
183
184
185
 
186
187
 
188
189
190
191
192
193
194
195
196
197
198
199
200
 
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
@@ -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, lfprompt    from PyQt4.QtCore import *  from PyQt4.QtGui import * @@ -107,6 +107,17 @@
  hbox.addWidget(bb)   toplayout.addLayout(hbox)   self.bb = bb + + if self.command == 'add': + if 'largefiles' in self.repo.extensions(): + self.addLfilesButton = QPushButton(_('Add &Largefiles')) + elif 'kbfiles' in self.repo.extensions(): + self.addLfilesButton = QPushButton(_("Add &Bfiles")) + else: + self.addLfilesButton = None + if self.addLfilesButton: + self.addLfilesButton.clicked.connect(self.addLfiles) + bb.addButton(self.addLfilesButton, BB.ActionRole)     layout.addWidget(self.statusbar)   @@ -147,9 +158,14 @@
  _('No operation to perform'),   parent=self)   return + self.repo.bfstatus = True + self.repo.lfstatus = True + repostate = self.repo.status() + self.repo.bfstatus = False + self.repo.lfstatus = False   if self.command == 'remove':   if not self.chk.isChecked(): - modified = self.repo.status()[0] + modified = repostate[0]   selmodified = []   for wfile in files:   if wfile in modified: @@ -167,14 +183,18 @@
  cmdline.append('--force')   elif ret == 2:   return - wctx = self.repo[None] + 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': + if 'largefiles' in self.repo.extensions() or 'kbfiles' in self.repo.extensions(): + self.addWithPrompt(files) + return   if files:   cmdline.extend(files)   self.files = files @@ -198,6 +218,40 @@
  s.setValue('quickop/forceremove', self.chk.isChecked())   QDialog.reject(self)   + def addLfiles(self): + if 'kbfiles' in self.repo.extensions(): + cmdline = ['add', '--bf'] + else: + cmdline = ['add', '--large'] + 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 = lfprompt.promptForLfiles(self, self.repo.ui, self.repo, files, + 'kbfiles' in self.repo.extensions()) + if not result: + return + files, bfiles = result + if files: + cmdline = ['add'] + cmdline.extend(files) + self.files = files + self.cmd.run(cmdline) + if bfiles: + if 'kbfiles' in self.repo.extensions(): + cmdline = ['add', '--bf'] + else: + cmdline = ['add', '--large'] + cmdline.extend(bfiles) + self.files = bfiles + self.cmd.run(cmdline)    instance = None  class HeadlessQuickop(QWidget):
 
224
225
226
 
227
228
229
 
644
645
646
 
647
 
648
649
650
 
224
225
226
227
228
229
230
 
645
646
647
648
649
650
651
652
653
@@ -224,6 +224,7 @@
    showMessage = pyqtSignal(QString)   openRepo = pyqtSignal(QString, bool) + removeRepo = pyqtSignal(QString)     def __init__(self, parent, showSubrepos=False, showNetworkSubrepos=False,   showShortPaths=False): @@ -644,7 +645,9 @@
  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):
 
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
 
713
714
715
 
 
 
 
716
717
718
 
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
 
762
763
764
765
766
767
768
769
770
771
 
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
 
988
989
990
991
992
993
994
995
@@ -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] @@ -713,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 ' @@ -737,6 +790,26 @@
  _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')), + )), + +({'name': 'largefiles', 'label': _('Largefiles'), 'icon': 'kiln', 'extension': 'largefiles'}, ( + _fi(_('Patterns'), 'largefiles.patterns', genEditCombo, + _('Files with names meeting the specified patterns will be automatically ' + 'added as largefiles')), + _fi(_('Size'), 'largefiles.size', genEditCombo, + _('Files of at least the specified size (in megabytes) will be added as largefiles')), + _fi(_('System Cache'), 'largefiles.systemcache', genPathBrowser, + _('Path to the directory where a system-wide cache of largefiles will be stored')), + )),    )   @@ -915,6 +988,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
443
444
 
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
@@ -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,11 @@
  # 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 + self.repo.lfstatus = True   status = self.repo.status(match=m, **stopts) + self.repo.bfstatus = False + self.repo.lfstatus = False   # Record all matched files as initially checked   for i, stat in enumerate(StatusType.preferredOrder):   if stat == 'S': @@ -446,11 +450,19 @@
  wctx = context.workingctx(self.repo, changes=status)   self.patchecked = patchecked   elif self.pctx: + self.repo.bfstatus = True + self.repo.lfstatus = True   status = self.repo.status(node1=self.pctx.p1().node(), **stopts) + self.repo.bfstatus = False + self.repo.lfstatus = False   wctx = context.workingctx(self.repo, changes=status)   else:   wctx = self.repo[None] + self.repo.bfstatus = True + self.repo.lfstatus = True   wctx.status(**stopts) + self.repo.bfstatus = False + self.repo.lfstatus = False   self.wctx = wctx     wctx.dirtySubrepos = []
 
92
93
94
 
 
 
 
 
 
 
 
 
 
95
96
97
 
388
389
390
 
 
 
 
391
392
393
 
1506
1507
1508
1509
 
1510
1511
1512
1513
1514
1515
 
1516
1517
1518
1519
1520
 
1521
1522
1523
1524
1525
 
1526
1527
1528
1529
1530
 
1531
1532
1533
1534
1535
1536
1537
 
 
 
 
1538
1539
1540
1541
1542
1543
 
 
 
 
 
 
 
1544
1545
1546
 
1551
1552
1553
1554
 
 
1555
1556
1557
 
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
 
398
399
400
401
402
403
404
405
406
407
 
1520
1521
1522
 
1523
1524
1525
1526
1527
1528
 
1529
1530
1531
1532
1533
 
1534
1535
1536
1537
1538
 
1539
1540
1541
1542
1543
 
1544
1545
1546
1547
1548
1549
1550
 
1551
1552
1553
1554
1555
1556
1557
1558
1559
 
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
 
1574
1575
1576
 
1577
1578
1579
1580
1581
@@ -92,6 +92,16 @@
  self.embedded = bool(parent)   self.targetargs = []   + s = QSettings() + for opt in ('subrepos', 'force', 'new-branch', 'noproxy', 'debug'): + val = s.value('sync/' + opt, None).toBool() + if val: + self.opts[opt] = val + for opt in ('remotecmd', 'branch'): + val = str(s.value('sync/' + opt, None).toString()) + if val: + self.opts[opt] = val +   self.repo.configChanged.connect(self.configChanged)     if self.embedded: @@ -388,6 +398,10 @@
  self.opts.update(dlg.outopts)   self.refreshUrl()   + s = QSettings() + for opt, val in self.opts.iteritems(): + s.setValue('sync/' + opt, val) +   def reload(self):   # Refresh configured paths   self.paths = {} @@ -1506,41 +1520,50 @@
  self.setWindowTitle(_('%s - sync options') % parent.repo.displayname)   self.repo = parent.repo   - layout = QFormLayout() + layout = QVBoxLayout()   self.setLayout(layout)     self.newbranchcb = QCheckBox(   _('Allow push of a new branch (--new-branch)'))   self.newbranchcb.setChecked(opts.get('new-branch', False)) - layout.addRow(self.newbranchcb, None) + layout.addWidget(self.newbranchcb)     self.forcecb = QCheckBox(   _('Force push or pull (override safety checks, --force)'))   self.forcecb.setChecked(opts.get('force', False)) - layout.addRow(self.forcecb, None) + layout.addWidget(self.forcecb)     self.subrepocb = QCheckBox(   _('Recurse into subrepositories') + u' (--subrepos)')   self.subrepocb.setChecked(opts.get('subrepos', False)) - layout.addRow(self.subrepocb, None) + layout.addWidget(self.subrepocb)     self.noproxycb = QCheckBox(   _('Temporarily disable configured HTTP proxy'))   self.noproxycb.setChecked(opts.get('noproxy', False)) - layout.addRow(self.noproxycb, None) + layout.addWidget(self.noproxycb)   proxy = self.repo.ui.config('http_proxy', 'host')   self.noproxycb.setEnabled(bool(proxy))     self.debugcb = QCheckBox(   _('Emit debugging output (--debug)'))   self.debugcb.setChecked(opts.get('debug', False)) - layout.addRow(self.debugcb, None) + layout.addWidget(self.debugcb) + + form = QFormLayout() + layout.addLayout(form)     lbl = QLabel(_('Remote command:'))   self.remotele = QLineEdit()   if opts.get('remotecmd'):   self.remotele.setText(hglib.tounicode(opts['remotecmd'])) - layout.addRow(lbl, self.remotele) + form.addRow(lbl, self.remotele) + + lbl = QLabel(_('Branch:')) + self.branchle = QLineEdit() + if opts.get('branch'): + self.branchle.setText(hglib.tounicode(opts['branch'])) + form.addRow(lbl, self.branchle)     BB = QDialogButtonBox   bb = QDialogButtonBox(BB.Ok|BB.Cancel) @@ -1551,7 +1574,8 @@
    def accept(self):   outopts = {} - for name, le in (('remotecmd', self.remotele),): + for name, le in (('remotecmd', self.remotele), + ('branch', self.branchle)):   outopts[name] = hglib.fromunicode(le.text()).strip()     outopts['subrepos'] = self.subrepocb.isChecked()
 
12
13
14
 
15
16
17
 
24
25
26
 
 
27
28
29
 
262
263
264
265
266
 
 
267
268
269
 
282
283
284
285
 
286
287
288
 
535
536
537
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
538
539
540
 
601
602
603
 
 
 
 
 
 
 
 
 
604
 
 
 
 
 
 
 
 
 
 
 
 
605
606
607
608
609
610
611
 
650
651
652
 
 
 
 
 
 
 
12
13
14
15
16
17
18
 
25
26
27
28
29
30
31
32
 
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
555
556
557
558
559
560
561
562
563
564
565
 
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
 
694
695
696
697
698
699
700
701
702
@@ -12,6 +12,7 @@
 import sys  import shutil  import tempfile +import re    from PyQt4.QtCore import *   @@ -24,6 +25,8 @@
 from tortoisehg.util.patchctx import patchctx    _repocache = {} +_kbfregex = re.compile(r'^\.kbf/') +_lfregex = re.compile(r'^\.hglf/')    if 'THGDEBUG' in os.environ:   def dbgoutput(*args): @@ -262,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 @@ -282,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   @@ -535,6 +538,28 @@
  dest = tempfile.mktemp(ext+'.bak', root+'_', trashcan)   shutil.copyfile(path, dest)   + def isStandin(self, path): + if 'largefiles' in self.extensions(): + if _lfregex.match(path): + return True + if 'largefiles' in self.extensions() or 'kbfiles' in self.extensions(): + if _kbfregex.match(path): + return True + return False + + def removeStandin(self, path): + if 'largefiles' in self.extensions(): + path = _lfregex.sub('', path) + if 'largefiles' in self.extensions() or 'kbfiles' in self.extensions(): + path = _kbfregex.sub('', path) + return path + + def bfStandin(self, path): + return '.kbf/' + path + + def lfStandin(self, path): + return '.hglf/' + path +   return thgrepository     @@ -601,11 +626,30 @@
  summary += u' \u2026' # ellipsis ...     return summary + + def hasStandin(self, file): + if 'largefiles' in self._repo.extensions(): + if self._repo.lfStandin(file) in self.manifest(): + return True + elif 'largefiles' in self._repo.extensions() or 'kbfiles' in self._repo.extensions(): + if self._repo.bfStandin(file) in self.manifest(): + return True + return False   + def isStandin(self, path): + return self._repo.isStandin(path) + + def removeStandin(self, path): + return self._repo.removeStandin(path) + + def findStandin(self, file): + if 'largefiles' in self._repo.extensions(): + if self._repo.lfStandin(file) in self.manifest(): + return self._repo.lfStandin(file) + return self._repo.bfStandin(file) +   return thgchangectx   - -  _pctxcache = {}  def genPatchContext(repo, patchpath, rev=None):   global _pctxcache @@ -650,3 +694,9 @@
  raise   else:   f.close() + +def isBfStandin(path): + return _kbfregex.match(path) + +def isLfStandin(path): + return _lfregex.match(path)
 
6
7
8
9
10
11
12
 
 
13
14
15
 
52
53
54
 
 
 
 
55
56
57
 
266
267
268
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
269
270
271
 
 
 
 
 
 
 
 
 
 
 
 
272
273
274
 
6
7
8
 
9
 
 
10
11
12
13
14
 
51
52
53
54
55
56
57
58
59
60
 
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
@@ -6,10 +6,9 @@
 # GNU General Public License version 2, incorporated herein by reference.    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, lfprompt  from tortoisehg.util import hglib, shlib  from tortoisehg.hgqt.i18n import _   @@ -52,6 +51,10 @@
  allactions.append(None)   make(_('&Forget'), forget, frozenset('MAC!'), 'filedelete')   make(_('&Add'), add, frozenset('I?'), 'fileadd') + if 'largefiles' in self.repo.extensions(): + make(_('Add &Largefiles...'), addlf, frozenset('I?')) + elif 'kbfiles' in self.repo.extensions(): + make(_('Add &Bfiles'), addlf, frozenset('I?'))   make(_('&Detect Renames...'), guessRename, frozenset('A?!'),   'detect_rename')   make(_('&Ignore...'), ignore, frozenset('?'), 'ignore') @@ -266,9 +269,43 @@
  return True    def add(parent, ui, repo, files): + haslf = 'largefiles' in repo.extensions() + haskbf = 'kbfiles' in repo.extensions() + if haslf or haskbf: + result = lfprompt.promptForLfiles(parent, ui, repo, files, haskbf) + if not result: + return False + files, lfiles = result + for name, module in extensions.extensions(): + if name == 'largefiles': + override_add = module.overrides.override_add + if files: + override_add(commands.add, ui, repo, *files) + if lfiles: + override_add(commands.add, ui, repo, large=True, *lfiles) + return True + if name == 'kbfiles': + override_add = module.bfsetup.override_add + if files: + override_add(commands.add, ui, repo, *files) + if lfiles: + override_add(commands.add, ui, repo, bf=True, *lfiles) + return True   commands.add(ui, repo, *files)   return True   +def addlf(parent, ui, repo, files): + for name, module in extensions.extensions(): + if name == 'largefiles': + override_add = module.overrides.override_add + override_add(commands.add, ui, repo, large=True, *files) + return True + 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)
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
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
 # workbench.py - main TortoiseHg Window  #  # Copyright (C) 2007-2010 Logilab. All rights reserved.  #  # This software may be used and distributed according to the terms  # of the GNU General Public License, incorporated herein by reference.  """  Main Qt4 application for TortoiseHg  """    import os  import sys  from mercurial import ui  from mercurial.error import RepoError  from tortoisehg.util import paths, hglib    from tortoisehg.hgqt import thgrepo, cmdui, qtlib, mq  from tortoisehg.hgqt.i18n import _  from tortoisehg.hgqt.repowidget import RepoWidget  from tortoisehg.hgqt.reporegistry import RepoRegistryView  from tortoisehg.hgqt.logcolumns import ColumnSelectDialog  from tortoisehg.hgqt.docklog import LogDockWidget  from tortoisehg.hgqt.settings import SettingsDialog    from PyQt4.QtCore import *  from PyQt4.QtGui import *    class ThgTabBar(QTabBar):   def mouseReleaseEvent(self, event):     if event.button() == Qt.MidButton:   self.tabCloseRequested.emit(self.tabAt(event.pos()))     super(QTabBar, self).mouseReleaseEvent(event)    class Workbench(QMainWindow):   """hg repository viewer/browser application"""   finished = pyqtSignal(int)   activeRepoChanged = pyqtSignal(QString)     def __init__(self):   QMainWindow.__init__(self)   self.ui = ui.ui()     self.setupUi()   self.setWindowTitle(_('TortoiseHg Workbench'))   self.reporegistry = rr = RepoRegistryView(self)   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)     self.mqpatches = p = mq.MQPatchesWidget(self)   p.setObjectName('MQPatchesWidget')   p.showMessage.connect(self.showMessage)   p.hide()   self.addDockWidget(Qt.LeftDockWidgetArea, p)     self.log = LogDockWidget(self)   self.log.setObjectName('Log')   self.log.progressReceived.connect(self.statusbar.progress)   self.log.hide()   self.addDockWidget(Qt.BottomDockWidgetArea, self.log)     self._setupActions()     self.restoreSettings()   self.repoTabChanged()   self.setAcceptDrops(True)   if os.name == 'nt':   # Allow CTRL+Q to close Workbench on Windows   QShortcut(QKeySequence('CTRL+Q'), self, self.close)   if sys.platform == 'darwin':   self.dockMenu = QMenu(self)   self.dockMenu.addAction(_('New Repository...'),   self.newRepository)   self.dockMenu.addAction(_('Clone Repository...'),   self.cloneRepository)   self.dockMenu.addAction(_('Open Repository...'),   self.openRepository)   qt_mac_set_dock_menu(self.dockMenu)     # Create the actions that will be displayed on the context menu   self.createActions()   self.lastClosedRepoRootList = []     def setupUi(self):   desktopgeom = qApp.desktop().availableGeometry()   self.resize(desktopgeom.size() * 0.8)     self.setWindowIcon(qtlib.geticon('hg-log'))     self.repoTabsWidget = tw = QTabWidget()   tw.setTabBar(ThgTabBar())   tw.setDocumentMode(True)   tw.setTabsClosable(True)   tw.setMovable(True)   tw.tabBar().hide()   tw.tabBar().setContextMenuPolicy(Qt.CustomContextMenu)   tw.tabBar().customContextMenuRequested.connect(self.tabBarContextMenuRequest)   tw.lastClickedTab = -1 # No tab clicked yet     sp = QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding)   sp.setHorizontalStretch(1)   sp.setVerticalStretch(1)   sp.setHeightForWidth(tw.sizePolicy().hasHeightForWidth())   tw.setSizePolicy(sp)   tw.tabCloseRequested.connect(self.repoTabCloseRequested)   tw.currentChanged.connect(self.repoTabChanged)     self.setCentralWidget(tw)   self.statusbar = cmdui.ThgStatusBar(self)   self.setStatusBar(self.statusbar)     def _setupActions(self):   """Setup actions, menus and toolbars"""   self.menubar = QMenuBar(self)   self.setMenuBar(self.menubar)     self.menuFile = self.menubar.addMenu(_("&File"))   self.menuView = self.menubar.addMenu(_("&View"))   self.menuViewregistryopts = QMenu(_('Workbench Toolbars'), self)   self.menuRepository = self.menubar.addMenu(_("&Repository"))   self.menuHelp = self.menubar.addMenu(_("&Help"))     self.edittbar = QToolBar(_("Edit Toolbar"), objectName='edittbar')   self.addToolBar(self.edittbar)   self.docktbar = QToolBar(_("Dock Toolbar"), objectName='docktbar')   self.addToolBar(self.docktbar)   self.synctbar = QToolBar(_('Sync Toolbar'), objectName='synctbar')   self.addToolBar(self.synctbar)   self.tasktbar = QToolBar(_('Task Toolbar'), objectName='taskbar')   self.addToolBar(self.tasktbar)     # availability map of actions; applied by updateMenu()   self._actionavails = {'repoopen': []}     def keysequence(o):   """Create QKeySequence from string or QKeySequence"""   if isinstance(o, (QKeySequence, QKeySequence.StandardKey)):   return o   try:   return getattr(QKeySequence, str(o)) # standard key   except AttributeError:   return QKeySequence(o)     def modifiedkeysequence(o, modifier):   """Create QKeySequence of modifier key prepended"""   origseq = QKeySequence(keysequence(o))   return QKeySequence('%s+%s' % (modifier, origseq.toString()))     def newaction(text, slot=None, icon=None, shortcut=None,   checkable=False, tooltip=None, data=None, enabled=None,   menu=None, toolbar=None, parent=self):   """Create new action and register it     :slot: function called if action triggered or toggled.   :checkable: checkable action. slot will be called on toggled.   :data: optional data stored on QAction.   :enabled: bool or group name to enable/disable action.   :shortcut: QKeySequence, key sequence or name of standard key.   :menu: name of menu to add this action.   :toolbar: name of toolbar to add this action.   """   action = QAction(text, parent, checkable=checkable)   if slot:   if checkable:   action.toggled.connect(slot)   else:   action.triggered.connect(slot)   if icon:   if toolbar:   action.setIcon(qtlib.geticon(icon))   else:   action.setIcon(qtlib.getmenuicon(icon))   if shortcut:   action.setShortcut(keysequence(shortcut))   if tooltip:   action.setToolTip(tooltip)   if data is not None:   action.setData(data)   if isinstance(enabled, bool):   action.setEnabled(enabled)   elif enabled:   self._actionavails[enabled].append(action)   if menu:   getattr(self, 'menu%s' % menu.title()).addAction(action)   if toolbar:   getattr(self, '%stbar' % toolbar).addAction(action)   return action     def newseparator(menu=None, toolbar=None):   """Insert a separator action; returns nothing"""   if menu:   getattr(self, 'menu%s' % menu.title()).addSeparator()   if toolbar:   getattr(self, '%stbar' % toolbar).addSeparator()     newaction(_("&New Repository..."), self.newRepository,   shortcut='New', menu='file', icon='hg-init')   newaction(_("Clone Repository..."), self.cloneRepository,   shortcut=modifiedkeysequence('New', modifier='Shift'),   menu='file', icon='hg-clone')   newseparator(menu='file')   newaction(_("&Open Repository..."), self.openRepository,   shortcut='Open', menu='file')   closerepo = newaction(_("&Close Repository"), self.closeRepository,   shortcut='Close', enabled='repoopen', menu='file')   if os.name == 'nt':   sc = closerepo.shortcuts()   sc.append(keysequence('Ctrl+W'))   closerepo.setShortcuts(sc)   newseparator(menu='file')   newaction(_('&Settings...'), self.editSettings, icon='settings_user',   shortcut='Preferences', menu='file')   newseparator(menu='file')   newaction(_("E&xit"), self.close, shortcut='Quit', menu='file')     a = self.reporegistry.toggleViewAction()   a.setText(_('Show Repository Registry'))   a.setShortcut('Ctrl+Shift+O')   a.setIcon(qtlib.geticon('thg-reporegistry'))   self.docktbar.addAction(a)   self.menuView.addAction(a)     a = self.mqpatches.toggleViewAction()   a.setText(_('Show Patch Queue'))   a.setIcon(qtlib.geticon('thg-mq'))   self.docktbar.addAction(a)   self.menuView.addAction(a)     a = self.log.toggleViewAction()   a.setText(_('Show Output &Log'))   a.setShortcut('Ctrl+L')   a.setIcon(qtlib.geticon('thg-console'))   self.docktbar.addAction(a)   self.menuView.addAction(a)     newseparator(menu='view')   self.menuViewregistryopts = self.menuView.addMenu(_('Repository Registry Options'))   self.actionShowPaths = \   newaction(_("Show Paths"), self.reporegistry.showPaths,   checkable=True, menu='viewregistryopts')     self.actionShowSubrepos = \   newaction(_("Show Subrepos on Registry"),   self.reporegistry.setShowSubrepos,   checkable=True, menu='viewregistryopts')     self.actionShowNetworkSubrepos = \   newaction(_("Show Subrepos for remote repositories"),   self.reporegistry.setShowNetworkSubrepos,   checkable=True, menu='viewregistryopts')     self.actionShowShortPaths = \   newaction(_("Show Short Paths"),   self.reporegistry.setShowShortPaths,   checkable=True, menu='viewregistryopts')     newseparator(menu='view')   newaction(_("Choose Log Columns..."), self.setHistoryColumns,   menu='view')   self.actionSaveRepos = \   newaction(_("Save Open Repositories On Exit"), checkable=True,   menu='view')   newseparator(menu='view')     self.actionGroupTaskView = QActionGroup(self)   self.actionGroupTaskView.triggered.connect(self.onSwitchRepoTaskTab)   def addtaskview(icon, label, name):   a = newaction(label, icon=None, checkable=True, data=name,   enabled='repoopen', menu='view')   a.setIcon(qtlib.geticon(icon))   self.actionGroupTaskView.addAction(a)   self.tasktbar.addAction(a)   return a   addtaskview('hg-log', _("Revision &Details"), 'log')   addtaskview('hg-commit', _('&Commit'), 'commit')   self.actionSelectTaskMQ = \   addtaskview('thg-qrefresh', _('MQ Patch'), 'mq')   addtaskview('thg-sync', _('S&ynchronize'), 'sync')   addtaskview('hg-annotate', _('&Manifest'), 'manifest')   addtaskview('hg-grep', _('&Search'), 'grep')   self.actionSelectTaskPbranch = \   addtaskview('branch', _('&Patch Branch'), 'pbranch')   newseparator(menu='view')     newaction(_("&Refresh"), self._repofwd('reload'), icon='view-refresh',   shortcut='Refresh', enabled='repoopen',   menu='view', toolbar='edit',   tooltip=_('Refresh current repository'))   newaction(_("Refresh &Task Tab"), self._repofwd('reloadTaskTab'),   enabled='repoopen',   shortcut=modifiedkeysequence('Refresh', modifier='Shift'),   tooltip=_('Refresh only the current task tab'),   menu='view')   newaction(_("Load all revisions"), self.loadall,   enabled='repoopen', menu='view', shortcut='Shift+Ctrl+A',   tooltip=_('Load all revisions into graph'))     newaction(_("Web Server..."), self.serve, enabled='repoopen',   menu='repository')   newseparator(menu='repository')   newaction(_("Shelve..."), self._repofwd('shelve'), icon='shelve',   enabled='repoopen', menu='repository')   newaction(_("Import..."), self._repofwd('thgimport'), icon='hg-import',   enabled='repoopen', menu='repository')   newseparator(menu='repository')   newaction(_("Verify"), self._repofwd('verify'), enabled='repoopen',   menu='repository')   newaction(_("Recover"), self._repofwd('recover'),   enabled='repoopen', menu='repository')   newseparator(menu='repository')   newaction(_("Resolve..."), self._repofwd('resolve'), icon='hg-merge',   enabled='repoopen', menu='repository')   newseparator(menu='repository')   newaction(_("Rollback/Undo..."), self._repofwd('rollback'),   enabled='repoopen', menu='repository')   newseparator(menu='repository')   newaction(_("Purge..."), self._repofwd('purge'), enabled='repoopen',   icon='hg-purge', menu='repository')   newseparator(menu='repository')   newaction(_("Bisect..."), self._repofwd('bisect'),   enabled='repoopen', menu='repository')   newseparator(menu='repository')   newaction(_("Explore"), self.explore, shortcut='Shift+Ctrl+S',   icon='system-file-manager', enabled='repoopen',   menu='repository')   newaction(_("Terminal"), self.terminal, shortcut='Shift+Ctrl+T',   icon='utilities-terminal', enabled='repoopen',   menu='repository')     newaction(_("Help"), self.onHelp, menu='help', icon='help-browser')   newaction(_("About Qt"), QApplication.aboutQt, menu='help')   newaction(_("About TortoiseHg"), self.onAbout, menu='help',   icon='thg-logo')     newseparator(toolbar='edit')   self.actionBack = \   newaction(_("Back"), self._repofwd('back'), icon='go-previous',   enabled=False, toolbar='edit')   self.actionForward = \   newaction(_("Forward"), self._repofwd('forward'), icon='go-next',   enabled=False, toolbar='edit')   newseparator(toolbar='edit', menu='View')     self.filtertbaction = \   newaction(_('Filter Toolbar'), self._repotogglefwd('toggleFilterBar'),   icon='view-filter', shortcut='Ctrl+S', enabled='repoopen',   toolbar='edit', menu='View', checkable=True,   tooltip=_('Filter graph with revision sets or branches'))     menu = QMenu(_('Workbench Toolbars'), self)   menu.addAction(self.edittbar.toggleViewAction())   menu.addAction(self.docktbar.toggleViewAction())   menu.addAction(self.synctbar.toggleViewAction())   menu.addAction(self.tasktbar.toggleViewAction())   self.menuView.addMenu(menu)     newaction(_('Incoming'), self._repofwd('incoming'), icon='hg-incoming',   tooltip=_('Check for incoming changes from selected URL'),   enabled='repoopen', toolbar='sync')   newaction(_('Pull'), self._repofwd('pull'), icon='hg-pull',   tooltip=_('Pull incoming changes from selected URL'),   enabled='repoopen', toolbar='sync')   newaction(_('Outgoing'), self._repofwd('outgoing'), icon='hg-outgoing',   tooltip=_('Detect outgoing changes to selected URL'),   enabled='repoopen', toolbar='sync')   newaction(_('Push'), self._repofwd('push'), icon='hg-push',   tooltip=_('Push outgoing changes to selected URL'),   enabled='repoopen', toolbar='sync')     self.updateMenu()     def _action_defs(self):   a = [("closetab", _("Close tab"), '',   _("Close tab"), self.closeLastClickedTab),   ("closeothertabs", _("Close other tabs"), '',   _("Close other tabs"), self.closeNotLastClickedTabs),   ("reopenlastclosed", _("Undo close tab"), '',   _("Reopen last closed tab"), self.reopenLastClosedTabs),   ("reopenlastclosedgroup", _("Undo close other tabs"), '',   _("Reopen last closed tab group"), self.reopenLastClosedTabs),   ]   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)     @pyqtSlot(QPoint)   def tabBarContextMenuRequest(self, point):   # Activate the clicked tab   clickedwidget = qApp.widgetAt(self.repoTabsWidget.mapToGlobal(point))   if not clickedwidget or \   not isinstance(clickedwidget, ThgTabBar):   return   self.repoTabsWidget.lastClickedTab = -1     clickedtabindex = clickedwidget.tabAt(point)   if clickedtabindex > -1:   self.repoTabsWidget.lastClickedTab = clickedtabindex   else:   self.repoTabsWidget.lastClickedTab = self.repoTabsWidget.currentIndex()     actionlist = ['closetab', 'closeothertabs']     existingClosedRepoList = []     for reporoot in self.lastClosedRepoRootList:   if os.path.isdir(reporoot):   existingClosedRepoList.append(reporoot)   self.lastClosedRepoRootList = existingClosedRepoList     if len(self.lastClosedRepoRootList) > 1:   actionlist += ['', 'reopenlastclosedgroup']   elif len(self.lastClosedRepoRootList) > 0:   actionlist += ['', 'reopenlastclosed']     contextmenu = QMenu(self)   for act in actionlist:   if act:   contextmenu.addAction(self._actions[act])   else:   contextmenu.addSeparator()     if actionlist:   contextmenu.exec_(self.repoTabsWidget.mapToGlobal(point))     def closeLastClickedTab(self):   if self.repoTabsWidget.lastClickedTab > -1:   self.repoTabCloseRequested(self.repoTabsWidget.lastClickedTab)     def _closeOtherTabs(self, tabIndex):   if tabIndex > -1:   tb = self.repoTabsWidget.tabBar()   tb.setCurrentIndex(tabIndex)   closedRepoRootList = []   for idx in range(tb.count()-1, -1, -1):   if idx != tabIndex:   self.repoTabCloseRequested(idx)   # repoTabCloseRequested updates self.lastClosedRepoRootList   closedRepoRootList += self.lastClosedRepoRootList   self.lastClosedRepoRootList = closedRepoRootList       def closeNotLastClickedTabs(self):   self._closeOtherTabs(self.repoTabsWidget.lastClickedTab)     def onSwitchRepoTaskTab(self, action):   rw = self.repoTabsWidget.currentWidget()   if rw:   rw.switchToNamedTaskTab(str(action.data().toString()))     @pyqtSlot(QString, bool)   def openRepo(self, root, reuse):   """ Open repo by openRepoSignal from reporegistry [unicode] """   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)   rw = self.repoTabsWidget.currentWidget()   if rw:   rw.taskTabsWidget.setCurrentIndex(rw.commitTabIndex)     @pyqtSlot(QString)   def showRepo(self, root):   """Activate the repo tab or open it if not available [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.repoTabsWidget.setCurrentIndex(i)   return   self._openRepo(root, False)     @pyqtSlot(unicode, QString)   def setRevsetFilter(self, path, filter):   for i in xrange(self.repoTabsWidget.count()):   w = self.repoTabsWidget.widget(i)   if hglib.tounicode(w.repo.root) == path:   w.filterbar.revsetle.setText(filter)   w.filterbar.returnPressed()   return     def find_root(self, url):   p = hglib.fromunicode(url.toLocalFile())   return paths.find_root(p)     def dragEnterEvent(self, event):   d = event.mimeData()   for u in d.urls():   root = self.find_root(u)   if root:   event.setDropAction(Qt.LinkAction)   event.accept()   break     def dropEvent(self, event):   accept = False   d = event.mimeData()   for u in d.urls():   root = self.find_root(u)   if root:   self.showRepo(hglib.tounicode(root))   accept = True   if accept:   event.setDropAction(Qt.LinkAction)   event.accept()     def updateMenu(self):   """Enable actions when repoTabs are opened or closed or changed"""     # Update actions affected by repo open/close   someRepoOpen = self.repoTabsWidget.count() > 0   for action in self._actionavails['repoopen']:   action.setEnabled(someRepoOpen)     # Update actions affected by repo open/close/change   self.updateTaskViewMenu()   self.updateToolBarActions()   tw = self.repoTabsWidget   w = tw.currentWidget()   if ((tw.count() == 0) or   ((tw.count() == 1) and   not self.ui.configbool('tortoisehg', 'forcerepotab', False))):   tw.tabBar().hide()   else:   tw.tabBar().show()   if tw.count() == 0:   self.setWindowTitle(_('TortoiseHg Workbench'))   elif w.repo.shortname != w.repo.displayname:   self.setWindowTitle(_('%s - TortoiseHg Workbench - %s') %   (w.repo.shortname, w.repo.displayname))   else:   self.setWindowTitle(_('%s - TortoiseHg Workbench') %   w.repo.shortname)     def updateToolBarActions(self):   w = self.repoTabsWidget.currentWidget()   if w:   self.filtertbaction.setChecked(w.filterBarVisible())     def updateTaskViewMenu(self):   'Update task tab menu for current repository'   if self.repoTabsWidget.count() == 0:   for a in self.actionGroupTaskView.actions():   a.setChecked(False)   self.actionSelectTaskMQ.setVisible(False)   self.actionSelectTaskPbranch.setVisible(False)   else:   repoWidget = self.repoTabsWidget.currentWidget()   exts = repoWidget.repo.extensions()   self.actionSelectTaskMQ.setVisible('mq' in exts)   self.actionSelectTaskPbranch.setVisible('pbranch' in exts)   taskIndex = repoWidget.taskTabsWidget.currentIndex()   for name, idx in repoWidget.namedTabs.iteritems():   if idx == taskIndex:   break   for action in self.actionGroupTaskView.actions():   if str(action.data().toString()) == name:   action.setChecked(True)     @pyqtSlot()   def updateHistoryActions(self):   'Update back / forward actions'   rw = self.repoTabsWidget.currentWidget()   if not rw:   return   self.actionBack.setEnabled(rw.canGoBack())   self.actionForward.setEnabled(rw.canGoForward())     def repoTabCloseSelf(self, widget):   self.repoTabsWidget.setCurrentWidget(widget)   index = self.repoTabsWidget.currentIndex()   if widget.closeRepoWidget():   w = self.repoTabsWidget.widget(index)   try:   reporoot = w.repo.root   except:   reporoot = ''   self.repoTabsWidget.removeTab(index)   widget.deleteLater()   self.updateMenu()   self.lastClosedRepoRootList = [reporoot]     def repoTabCloseRequested(self, index):   tw = self.repoTabsWidget   if 0 <= index < tw.count():   w = tw.widget(index)   try:   reporoot = w.repo.root   except:   reporoot = ''   if w and w.closeRepoWidget():   tw.removeTab(index)   w.deleteLater()   self.updateMenu()   self.lastClosedRepoRootList = [reporoot]     def reopenLastClosedTabs(self):   for reporoot in self.lastClosedRepoRootList:   if os.path.isdir(reporoot):   self.showRepo(reporoot)   self.lastClosedRepoRootList = []     def repoTabChanged(self, index=0):   w = self.repoTabsWidget.currentWidget()   if w:   self.updateHistoryActions()   self.updateMenu()   if w.repo:   root = w.repo.root   self.activeRepoChanged.emit(hglib.tounicode(root))   else:   self.activeRepoChanged.emit("")   repo = w and w.repo or None   self.log.setRepository(repo)   self.mqpatches.setrepo(repo)     def addRepoTab(self, repo):   '''opens the given repo in a new tab'''   rw = RepoWidget(repo, self)   rw.showMessageSignal.connect(self.showMessage)   rw.closeSelfSignal.connect(self.repoTabCloseSelf)   rw.progress.connect(lambda tp, p, i, u, tl:   self.statusbar.progress(tp, p, i, u, tl, repo.root))   rw.output.connect(self.log.output)   rw.makeLogVisible.connect(self.log.setShown)   rw.beginSuppressPrompt.connect(self.log.beginSuppressPrompt)   rw.endSuppressPrompt.connect(self.log.endSuppressPrompt)   rw.revisionSelected.connect(self.updateHistoryActions)   rw.repoLinkClicked.connect(self.openLinkedRepo)   rw.taskTabsWidget.currentChanged.connect(self.updateTaskViewMenu)   rw.toolbarVisibilityChanged.connect(self.updateToolBarActions)   rw.shortNameChanged.connect(self.reporegistry.shortNameChanged)   rw.baseNodeChanged.connect(self.reporegistry.baseNodeChanged)   rw.repoChanged.connect(self.reporegistry.repoChanged)     tw = self.repoTabsWidget   index = self.repoTabsWidget.addTab(rw, rw.title())   tw.setCurrentIndex(index)   rw.titleChanged.connect(   lambda title: tw.setTabText(tw.indexOf(rw), title))   rw.showIcon.connect(   lambda icon: tw.setTabIcon(tw.indexOf(rw), icon))   self.reporegistry.addRepo(repo.root)     self.updateMenu()       def showMessage(self, msg):   self.statusbar.showMessage(msg)     def setHistoryColumns(self, *args):   """Display the column selection dialog"""   w = self.repoTabsWidget.currentWidget()   dlg = ColumnSelectDialog('workbench', _('Workbench'),   w and w.repoview.model() or None)   if dlg.exec_() == QDialog.Accepted:   if w:   w.repoview.model().updateColumns()   w.repoview.resizeColumns()     def _repotogglefwd(self, name):   """Return function to forward action to the current repo tab"""   def forwarder(checked):   w = self.repoTabsWidget.currentWidget()   if w:   getattr(w, name)(checked)   return forwarder     def _repofwd(self, name):   """Return function to forward action to the current repo tab"""   def forwarder():   w = self.repoTabsWidget.currentWidget()   if w:   getattr(w, name)()   return forwarder     def serve(self):   w = self.repoTabsWidget.currentWidget()   if w:   from tortoisehg.hgqt import run   run.serve(w.repo.ui, root=w.repo.root)     def loadall(self):   w = self.repoTabsWidget.currentWidget()   if w:   w.repoview.model().loadall()     def newRepository(self):   """ Run init dialog """   from tortoisehg.hgqt.hginit import InitDialog   repoWidget = self.repoTabsWidget.currentWidget()   if repoWidget:   path = os.path.dirname(repoWidget.repo.root)   else:   path = os.getcwd()   dlg = InitDialog([path], parent=self)   dlg.finished.connect(dlg.deleteLater)   if dlg.exec_():   path = dlg.getPath()   self._openRepo(path, False)     def cloneRepository(self):   """ Run clone dialog """   from tortoisehg.hgqt.clone import CloneDialog   repoWidget = self.repoTabsWidget.currentWidget()   if repoWidget:   root = repoWidget.repo.root   args = [root, root + '-clone']   else:   args = []   dlg = CloneDialog(args, parent=self)   dlg.finished.connect(dlg.deleteLater)   dlg.clonedRepository.connect(self.showRepo)   dlg.exec_()     def openRepository(self):   """ Open repo from File menu """   caption = _('Select repository directory to open')   repoWidget = self.repoTabsWidget.currentWidget()   if repoWidget:   cwd = os.path.dirname(repoWidget.repo.root)   else:   cwd = os.getcwd()   cwd = hglib.tounicode(cwd)   FD = QFileDialog   path = FD.getExistingDirectory(self, caption, cwd,   FD.ShowDirsOnly | FD.ReadOnly)   self._openRepo(hglib.fromunicode(path), False)     def _openRepo(self, root, reuse):   if root and not root.startswith('ssh://'):   if reuse:   for rw in self._findrepowidget(root):   self.repoTabsWidget.setCurrentWidget(rw)   return   try:   repo = thgrepo.repository(path=root)   self.addRepoTab(repo)   except RepoError:   upath = hglib.tounicode(root)   qtlib.WarningMsgBox(_('Failed to open repository'),   _('%s is not a valid repository') % upath)     def _findrepowidget(self, root):   """Iterates RepoWidget for the specified root"""   tw = self.repoTabsWidget   for idx in range(tw.count()):   rw = tw.widget(idx)   if rw.repo.root == root:   yield rw     def onAbout(self, *args):   """ Display about dialog """   from tortoisehg.hgqt.about import AboutDialog   ad = AboutDialog(self)   ad.finished.connect(ad.deleteLater)   ad.exec_()     def onHelp(self, *args):   """ Display online help """   qtlib.openhelpcontents('workbench.html')     def storeSettings(self):   s = QSettings()   wb = "Workbench/"   s.setValue(wb + 'geometry', self.saveGeometry())   s.setValue(wb + 'windowState', self.saveState())   s.setValue(wb + 'showPaths', self.actionShowPaths.isChecked())   s.setValue(wb + 'showSubrepos', self.actionShowSubrepos.isChecked())   s.setValue(wb + 'showNetworkSubrepos',   self.actionShowNetworkSubrepos.isChecked())   s.setValue(wb + 'showShortPaths', self.actionShowShortPaths.isChecked())   s.setValue(wb + 'saveRepos', self.actionSaveRepos.isChecked())   repostosave = []   if self.actionSaveRepos.isChecked():   tw = self.repoTabsWidget   for idx in range(tw.count()):   rw = tw.widget(idx)   repostosave.append(hglib.tounicode(rw.repo.root))   s.setValue(wb + 'openrepos', (',').join(repostosave))     def restoreSettings(self):   s = QSettings()   wb = "Workbench/"   self.restoreGeometry(s.value(wb + 'geometry').toByteArray())   self.restoreState(s.value(wb + 'windowState').toByteArray())     # Load the repo registry settings. Note that we must allow the   # repo registry to assemble itself before toggling its settings   # Also the view path setttings should be enabled last, once we have   # loaded the repo subrepositories (if needed)     # Normally, checking the "show subrepos" and the "show network subrepos"   # settings will trigger a reload of the repo registry.   # To avoid reloading it twice (every time we set one of its view   # settings), we tell the setters to avoid reloading the repo tree   # model, and then we manually reload the model   ssr = s.value(wb + 'showSubrepos',   defaultValue=QVariant(True)).toBool()   snsr = s.value(wb + 'showNetworkSubrepos',   defaultValue=QVariant(True)).toBool()   ssp = s.value(wb + 'showShortPaths',   defaultValue=QVariant(True)).toBool()   self.reporegistry.setShowSubrepos(ssr, False)   self.reporegistry.setShowNetworkSubrepos(snsr, False)   self.reporegistry.setShowShortPaths(ssp)     # Note that calling setChecked will NOT reload the model if the new   # setting is the same as the one in the repo registry   QTimer.singleShot(0, lambda: self.actionShowSubrepos.setChecked(ssr))   QTimer.singleShot(0, lambda: self.actionShowNetworkSubrepos.setChecked(ssr))   QTimer.singleShot(0, lambda: self.actionShowShortPaths.setChecked(ssp))     # Manually reload the model now, to apply the settings   self.reporegistry.reloadModel()     save = s.value(wb + 'saveRepos').toBool()   self.actionSaveRepos.setChecked(save)   for path in hglib.fromunicode(s.value(wb + 'openrepos').toString()).split(','):   self._openRepo(path, False)     # Allow repo registry to assemble itself before toggling path state   sp = s.value(wb + 'showPaths').toBool()   QTimer.singleShot(0, lambda: self.actionShowPaths.setChecked(sp))     def goto(self, root, rev):   for rw in self._findrepowidget(root):   rw.goto(rev)     def closeEvent(self, event):   if not self.closeRepoTabs():   event.ignore()   else:   self.storeSettings()   self.reporegistry.close()   # mimic QDialog exit   self.finished.emit(0)     def closeRepoTabs(self):   '''returns False if close should be aborted'''   tw = self.repoTabsWidget   for idx in range(tw.count()):   rw = tw.widget(idx)   if not rw.closeRepoWidget():   tw.setCurrentWidget(rw)   return False   return True     def closeRepository(self):   """close the current repo tab"""   self.repoTabCloseRequested(self.repoTabsWidget.currentIndex())     def explore(self):   w = self.repoTabsWidget.currentWidget()   if w:   QDesktopServices.openUrl(QUrl.fromLocalFile(w.repo.root))     def terminal(self):   w = self.repoTabsWidget.currentWidget()   if w:   qtlib.openshell(w.repo.root, w.repo.displayname)     def editSettings(self):   tw = self.repoTabsWidget   w = tw.currentWidget()   twrepo = (w and w.repo.root or '')   sd = SettingsDialog(configrepo=False, focus='tortoisehg.authorcolor',   parent=self, root=twrepo)   sd.exec_()      def run(ui, *pats, **opts):   root = opts.get('root') or paths.find_root()   if root and pats:   repo = thgrepo.repository(ui, root)   pats = hglib.canonpaths(pats)   if len(pats) == 1 and os.path.isfile(repo.wjoin(pats[0])):   from tortoisehg.hgqt.filedialogs import FileLogDialog   fname = pats[0]   ufname = hglib.tounicode(fname)   dlg = FileLogDialog(repo, fname, None)   dlg.setWindowTitle(_('Hg file log viewer [%s] - %s') % (   repo.displayname, ufname))   return dlg   w = Workbench()   if root:   root = hglib.tounicode(root)   w.showRepo(root)   if pats:   q = []   for pat in pats:   f = repo.wjoin(pat)   if os.path.isdir(f):   q.append('file("%s/**")' % pat)   elif os.path.isfile(f):   q.append('file("%s")' % pat)   w.setRevsetFilter(root, ' or '.join(q))   if w.repoTabsWidget.count() <= 0:   w.reporegistry.setVisible(True)   return w
 
128
129
130
 
 
 
 
 
131
132
133
 
128
129
130
131
132
133
134
135
136
137
138
@@ -128,6 +128,11 @@
  def thgmqunappliedpatch(self): return True   def thgid(self): return self._identity   + # largefiles/kbfiles methods + def hasStandin(self, file): return False + def isStandin(self, path): return False + def removeStandin(self, path): return path +   def longsummary(self):   summary = hglib.tounicode(self.description())   if self._repo.ui.configbool('tortoisehg', 'longsummary'):
 
32
33
34
35
 
36
37
38
 
57
58
59
 
 
 
 
60
61
62
 
90
91
92
 
 
93
 
 
94
95
96
 
132
133
134
 
135
136
137
 
138
139
140
 
32
33
34
 
35
36
37
38
 
57
58
59
60
61
62
63
64
65
66
 
94
95
96
97
98
99
100
101
102
103
104
 
140
141
142
143
144
145
 
146
147
148
149
@@ -32,7 +32,7 @@
  pass   threading.Thread(target=start_browser).start()   - def shell_notify(paths): + def shell_notify(paths, noassoc=False):   try:   from win32com.shell import shell, shellcon   import pywintypes @@ -57,6 +57,10 @@
  shell.SHChangeNotify(shellcon.SHCNE_UPDATEITEM,   shellcon.SHCNF_IDLIST | shellcon.SHCNF_FLUSH,   pidl, None) + if not noassoc: + shell.SHChangeNotify(shellcon.SHCNE_ASSOCCHANGED, + shellcon.SHCNF_FLUSH, + None, None)     def update_thgstatus(ui, root, wait=False):   '''Rewrite the file .hg/thgstatus @@ -90,7 +94,11 @@
  time.sleep(tdelta)     repo = hg.repository(ui, root) # a fresh repo object is needed + repo.bfstatus = True + repo.lfstatus = True   repostate = repo.status() # will update .hg/dirstate as a side effect + repo.bfstatus = False + repo.lfstatus = False   modified, added, removed, deleted = repostate[:4]     dirstatus = {} @@ -132,9 +140,10 @@
  f.write(s + dn + '\n')   ui.note("%s %s\n" % (s, dn))   f.rename() + return update    else: - def shell_notify(paths): + def shell_notify(paths, noassoc=False):   if not paths:   return   notify = os.environ.get('THG_NOTIFY', '.tortoisehg/notify')