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

fogcreek Merge with stable

Changeset ca666161b014

Parents e548b87269a0

Parents b5fbaedfb641

by David Golub

Changes to 23 files · Browse files at ca666161b014 Showing diff from parent e548b87269a0 b5fbaedfb641 Diff from another changeset...

Change 1 of 1 Show Entire File .hgeol Stacked
 
 
 
 
 
 
 
 
1
2
3
4
5
6
@@ -0,0 +1,6 @@
+[patterns] +**.py = native +**.py.out = native + +[repository] +native = LF
Added image
Added image
 
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
 
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:
Change 1 of 1 Show Entire File tortoisehg/​hgqt/​messageentry.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
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@@ -1,157 +1,157 @@
-# messageentry.py - TortoiseHg's commit message editng widget -# -# Copyright 2011 Steve Borho <steve@borho.org> -# -# This software may be used and distributed according to the terms of the -# GNU General Public License version 2, incorporated herein by reference. - -import os - -from PyQt4.QtCore import * -from PyQt4.QtGui import * -from PyQt4.Qsci import QsciScintilla, QsciLexerMakefile - -from tortoisehg.hgqt.i18n import _ -from tortoisehg.hgqt import qtlib, qscilib - -class MessageEntry(qscilib.Scintilla): - - def __init__(self, parent, getCheckedFunc=None): - super(MessageEntry, self).__init__(parent) - self.setEdgeColor(QColor('LightSalmon')) - self.setEdgeMode(QsciScintilla.EdgeLine) - self.setReadOnly(False) - self.setMarginWidth(1, 0) - self.setFont(qtlib.getfont('fontcomment').font()) - self.setCaretWidth(10) - self.setCaretLineBackgroundColor(QColor("#e6fff0")) - self.setCaretLineVisible(True) - self.setAutoIndent(True) - self.setAutoCompletionThreshold(2) - self.setAutoCompletionSource(QsciScintilla.AcsAPIs) - self.setAutoCompletionFillupsEnabled(True) - self.setLexer(QsciLexerMakefile(self)) - font = qtlib.getfont('fontcomment').font() - self.fontHeight = QFontMetrics(font).height() - self.lexer().setFont(font) - self.lexer().setColor(QColor(Qt.red), QsciLexerMakefile.Error) - self.setMatchedBraceBackgroundColor(Qt.yellow) - self.setIndentationsUseTabs(False) - self.setBraceMatching(QsciScintilla.SloppyBraceMatch) - #self.setIndentationGuidesBackgroundColor(QColor("#e6e6de")) - #self.setFolding(QsciScintilla.BoxedFoldStyle) - # http://www.riverbankcomputing.com/pipermail/qscintilla/2009-February/000461.html - self.setHorizontalScrollBarPolicy(Qt.ScrollBarAsNeeded) - self.setVerticalScrollBarPolicy(Qt.ScrollBarAsNeeded) - # default message entry widgets to word wrap, user may override - self.setWrapMode(QsciScintilla.WrapWord) - - self.getChecked = getCheckedFunc - self.setContextMenuPolicy(Qt.CustomContextMenu) - self.customContextMenuRequested.connect(self.menuRequested) - - - def menuRequested(self, point): - line = self.lineAt(point) - point = self.viewport().mapToGlobal(point) - - def apply(): - line = 0 - while True: - line = self.reflowBlock(line) - if line is None: - break; - def paste(): - files = self.getChecked() - self.insert(', '.join(files)) - def settings(): - from tortoisehg.hgqt.settings import SettingsDialog - dlg = SettingsDialog(True, focus='tortoisehg.summarylen') - dlg.exec_() - - menu = self.createStandardContextMenu() - menu.addSeparator() - if self.getChecked: - action = menu.addAction(_('Paste &Filenames')) - action.triggered.connect(paste) - for name, func in [(_('App&ly Format'), apply), - (_('C&onfigure Format'), settings)]: - def add(name, func): - action = menu.addAction(name) - action.triggered.connect(func) - add(name, func) - return menu.exec_(point) - - def refresh(self, repo): - self.setEdgeColumn(repo.summarylen) - self.setIndentationWidth(repo.tabwidth) - self.setTabWidth(repo.tabwidth) - self.summarylen = repo.summarylen - - def reflowBlock(self, line): - lines = self.text().split('\n', QString.KeepEmptyParts) - if line >= len(lines): - return None - if not len(lines[line]) > 1: - return line+1 - - # find boundaries (empty lines or bounds) - b = line - while b and len(lines[b-1]) > 1: - b = b - 1 - e = line - while e+1 < len(lines) and len(lines[e+1]) > 1: - e = e + 1 - group = QStringList([lines[l].simplified() for l in xrange(b, e+1)]) - sentence = group.join(' ') - parts = sentence.split(' ', QString.SkipEmptyParts) - - outlines = QStringList() - line = QStringList() - partslen = 0 - for part in parts: - if partslen + len(line) + len(part) + 1 > self.summarylen: - if line: - outlines.append(line.join(' ')) - line, partslen = QStringList(), 0 - line.append(part) - partslen += len(part) - if line: - outlines.append(line.join(' ')) - - self.beginUndoAction() - self.setSelection(b, 0, e+1, 0) - self.removeSelectedText() - self.insertAt(outlines.join('\n')+'\n', b, 0) - self.endUndoAction() - self.setCursorPosition(b, 0) - return b + len(outlines) + 1 - - def moveCursorToEnd(self): - lines = self.lines() - if lines: - lines -= 1 - pos = self.lineLength(lines) - self.setCursorPosition(lines, pos) - self.ensureLineVisible(lines) - self.horizontalScrollBar().setSliderPosition(0) - - def keyPressEvent(self, event): - if event.modifiers() == Qt.ControlModifier and event.key() == Qt.Key_E: - line, col = self.getCursorPosition() - self.reflowBlock(line) - elif event.key() == Qt.Key_Backtab: - event.accept() - newev = QKeyEvent(event.type(), Qt.Key_Tab, Qt.ShiftModifier) - super(MessageEntry, self).keyPressEvent(newev) - else: - super(MessageEntry, self).keyPressEvent(event) - - def resizeEvent(self, event): - super(MessageEntry, self).resizeEvent(event) - self.showHScrollBar(self.frameGeometry().height() > self.fontHeight * 3) - - def minimumSizeHint(self): - size = super(MessageEntry, self).minimumSizeHint() - size.setHeight(self.fontHeight * 3 / 2) - return size +# messageentry.py - TortoiseHg's commit message editng widget +# +# Copyright 2011 Steve Borho <steve@borho.org> +# +# This software may be used and distributed according to the terms of the +# GNU General Public License version 2, incorporated herein by reference. + +import os + +from PyQt4.QtCore import * +from PyQt4.QtGui import * +from PyQt4.Qsci import QsciScintilla, QsciLexerMakefile + +from tortoisehg.hgqt.i18n import _ +from tortoisehg.hgqt import qtlib, qscilib + +class MessageEntry(qscilib.Scintilla): + + def __init__(self, parent, getCheckedFunc=None): + super(MessageEntry, self).__init__(parent) + self.setEdgeColor(QColor('LightSalmon')) + self.setEdgeMode(QsciScintilla.EdgeLine) + self.setReadOnly(False) + self.setMarginWidth(1, 0) + self.setFont(qtlib.getfont('fontcomment').font()) + self.setCaretWidth(10) + self.setCaretLineBackgroundColor(QColor("#e6fff0")) + self.setCaretLineVisible(True) + self.setAutoIndent(True) + self.setAutoCompletionThreshold(2) + self.setAutoCompletionSource(QsciScintilla.AcsAPIs) + self.setAutoCompletionFillupsEnabled(True) + self.setLexer(QsciLexerMakefile(self)) + font = qtlib.getfont('fontcomment').font() + self.fontHeight = QFontMetrics(font).height() + self.lexer().setFont(font) + self.lexer().setColor(QColor(Qt.red), QsciLexerMakefile.Error) + self.setMatchedBraceBackgroundColor(Qt.yellow) + self.setIndentationsUseTabs(False) + self.setBraceMatching(QsciScintilla.SloppyBraceMatch) + #self.setIndentationGuidesBackgroundColor(QColor("#e6e6de")) + #self.setFolding(QsciScintilla.BoxedFoldStyle) + # http://www.riverbankcomputing.com/pipermail/qscintilla/2009-February/000461.html + self.setHorizontalScrollBarPolicy(Qt.ScrollBarAsNeeded) + self.setVerticalScrollBarPolicy(Qt.ScrollBarAsNeeded) + # default message entry widgets to word wrap, user may override + self.setWrapMode(QsciScintilla.WrapWord) + + self.getChecked = getCheckedFunc + self.setContextMenuPolicy(Qt.CustomContextMenu) + self.customContextMenuRequested.connect(self.menuRequested) + + + def menuRequested(self, point): + line = self.lineAt(point) + point = self.viewport().mapToGlobal(point) + + def apply(): + line = 0 + while True: + line = self.reflowBlock(line) + if line is None: + break; + def paste(): + files = self.getChecked() + self.insert(', '.join(files)) + def settings(): + from tortoisehg.hgqt.settings import SettingsDialog + dlg = SettingsDialog(True, focus='tortoisehg.summarylen') + dlg.exec_() + + menu = self.createStandardContextMenu() + menu.addSeparator() + if self.getChecked: + action = menu.addAction(_('Paste &Filenames')) + action.triggered.connect(paste) + for name, func in [(_('App&ly Format'), apply), + (_('C&onfigure Format'), settings)]: + def add(name, func): + action = menu.addAction(name) + action.triggered.connect(func) + add(name, func) + return menu.exec_(point) + + def refresh(self, repo): + self.setEdgeColumn(repo.summarylen) + self.setIndentationWidth(repo.tabwidth) + self.setTabWidth(repo.tabwidth) + self.summarylen = repo.summarylen + + def reflowBlock(self, line): + lines = self.text().split('\n', QString.KeepEmptyParts) + if line >= len(lines): + return None + if not len(lines[line]) > 1: + return line+1 + + # find boundaries (empty lines or bounds) + b = line + while b and len(lines[b-1]) > 1: + b = b - 1 + e = line + while e+1 < len(lines) and len(lines[e+1]) > 1: + e = e + 1 + group = QStringList([lines[l].simplified() for l in xrange(b, e+1)]) + sentence = group.join(' ') + parts = sentence.split(' ', QString.SkipEmptyParts) + + outlines = QStringList() + line = QStringList() + partslen = 0 + for part in parts: + if partslen + len(line) + len(part) + 1 > self.summarylen: + if line: + outlines.append(line.join(' ')) + line, partslen = QStringList(), 0 + line.append(part) + partslen += len(part) + if line: + outlines.append(line.join(' ')) + + self.beginUndoAction() + self.setSelection(b, 0, e+1, 0) + self.removeSelectedText() + self.insertAt(outlines.join('\n')+'\n', b, 0) + self.endUndoAction() + self.setCursorPosition(b, 0) + return b + len(outlines) + 1 + + def moveCursorToEnd(self): + lines = self.lines() + if lines: + lines -= 1 + pos = self.lineLength(lines) + self.setCursorPosition(lines, pos) + self.ensureLineVisible(lines) + self.horizontalScrollBar().setSliderPosition(0) + + def keyPressEvent(self, event): + if event.modifiers() == Qt.ControlModifier and event.key() == Qt.Key_E: + line, col = self.getCursorPosition() + self.reflowBlock(line) + elif event.key() == Qt.Key_Backtab: + event.accept() + newev = QKeyEvent(event.type(), Qt.Key_Tab, Qt.ShiftModifier) + super(MessageEntry, self).keyPressEvent(newev) + else: + super(MessageEntry, self).keyPressEvent(event) + + def resizeEvent(self, event): + super(MessageEntry, self).resizeEvent(event) + self.showHScrollBar(self.frameGeometry().height() > self.fontHeight * 3) + + def minimumSizeHint(self): + size = super(MessageEntry, self).minimumSizeHint() + size.setHeight(self.fontHeight * 3 / 2) + return size
 
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):
Show Entire File tortoisehg/​hgqt/​qtlib.py Stacked
(No changes)
 
12
13
14
15
 
16
17
18
 
101
102
103
 
 
 
 
 
 
 
 
 
 
 
104
105
106
 
136
137
138
139
 
 
 
 
 
 
140
141
 
142
143
144
145
146
 
 
 
 
147
148
149
 
164
165
166
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
168
169
 
12
13
14
 
15
16
17
18
 
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
 
147
148
149
 
150
151
152
153
154
155
156
 
157
158
159
160
161
162
163
164
165
166
167
168
169
 
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
@@ -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 * @@ -101,6 +101,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)   @@ -136,14 +147,23 @@
  parent=self)   return   if self.command == 'remove': - wctx = self.repo[None] + self.repo.bfstatus = True + self.repo.lfstatus = True + repostate = self.repo.status() + self.repo.bfstatus = False + self.repo.lfstatus = False + unknown, ignored = repostate[4:6]   for wfile in files: - if wfile not in wctx: + if wfile in unknown or wfile in ignored:   try:   util.unlink(wfile)   except EnvironmentError:   pass   files.remove(wfile) + elif self.command == 'add': + if 'largefiles' in self.repo.extensions() or 'kbfiles' in self.repo.extensions(): + self.addWithPrompt(files) + return   if files:   cmdline.extend(files)   self.files = files @@ -164,6 +184,40 @@
  s.setValue('quickop/nobackup', 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):
 
7
8
9
10
 
11
12
13
 
24
25
26
 
 
 
 
 
 
27
28
29
 
315
316
317
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
318
319
320
 
352
353
354
 
 
 
355
356
357
 
737
738
739
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
740
741
742
 
915
916
917
 
 
918
919
920
 
7
8
9
 
10
11
12
13
 
24
25
26
27
28
29
30
31
32
33
34
35
 
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
 
398
399
400
401
402
403
404
405
406
 
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
 
984
985
986
987
988
989
990
991
@@ -7,7 +7,7 @@
   import os   -from mercurial import ui, util, error +from mercurial import ui, util, error, extensions    from tortoisehg.util import hglib, settings, paths, wconfig, i18n, bugtraq  from tortoisehg.hgqt.i18n import _ @@ -24,6 +24,12 @@
 _unspecstr = _('<unspecified>')  ENTRY_WIDTH = 300   +def hasExtension(extname): + for name, module in extensions.extensions(): + if name == extname: + return True + return False +  class SettingsCombo(QComboBox):   def __init__(self, parent=None, **opts):   QComboBox.__init__(self, parent, toolTip=opts['tooltip']) @@ -315,6 +321,46 @@
  return self.value() != self.curvalue     +class PathBrowser(QWidget): + def __init__(self, parent=None, **opts): + QWidget.__init__(self, parent, toolTip=opts['tooltip']) + self.opts = opts + + self.lineEdit = QLineEdit() + completer = QCompleter(self) + completer.setModel(QDirModel(completer)) + self.lineEdit.setCompleter(completer) + + self.browseButton = QPushButton(_('&Browse...')) + self.browseButton.clicked.connect(self.browse) + + layout = QHBoxLayout() + layout.setContentsMargins(0, 0, 0, 0) + layout.addWidget(self.lineEdit) + layout.addWidget(self.browseButton) + self.setLayout(layout) + + def browse(self): + dir = QFileDialog.getExistingDirectory(self, directory=self.lineEdit.text(), + options=QFileDialog.ShowDirsOnly) + if dir: + self.lineEdit.setText(dir) + + ## common APIs for all edit widgets + def setValue(self, curvalue): + self.curvalue = curvalue + if curvalue: + self.lineEdit.setText(hglib.tounicode(curvalue)) + else: + self.lineEdit.setText('') + + def value(self): + utext = self.lineEdit.text() + return utext and hglib.fromunicode(utext) or None + + def isDirty(self): + return self.value() != self.curvalue +  def genEditCombo(opts, defaults=[]):   opts['canedit'] = True   opts['defaults'] = defaults @@ -352,6 +398,9 @@
 def genBugTraqEdit(opts):   return BugTraqConfigureEntry(**opts)   +def genPathBrowser(opts): + return PathBrowser(**opts) +  def findIssueTrackerPlugins():   plugins = bugtraq.get_issue_plugins_with_names()   names = [("%s %s" % (key[0], key[1])) for key in plugins] @@ -737,6 +786,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 +984,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 = []
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
 
 
 
 
 
 
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
 # thgrepo.py - TortoiseHg additions to key Mercurial classes  #  # Copyright 2010 George Marrows <george.marrows@gmail.com>  #  # This software may be used and distributed according to the terms of the  # GNU General Public License version 2 or any later version.  #  # See mercurial/extensions.py, comments to wrapfunction, for this approach  # to extending repositories and change contexts.    import os  import sys  import shutil  import tempfile +import re    from PyQt4.QtCore import *    from mercurial import hg, util, error, bundlerepo, extensions, filemerge, node  from mercurial import merge, subrepo  from mercurial import ui as uimod  from mercurial.util import propertycache    from tortoisehg.util import hglib, paths  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):   sys.stdout.write(' '.join([str(a) for a in args])+'\n')  else:   def dbgoutput(*args):   pass    def repository(_ui=None, path='', create=False, bundle=None):   '''Returns a subclassed Mercurial repository to which new   THG-specific methods have been added. The repository object   is obtained using mercurial.hg.repository()'''   if bundle:   if _ui is None:   _ui = uimod.ui()   repo = bundlerepo.bundlerepository(_ui, path, bundle)   repo.__class__ = _extendrepo(repo)   repo._pyqtobj = ThgRepoWrapper(repo)   return repo   if create or path not in _repocache:   if _ui is None:   _ui = uimod.ui()   try:   repo = hg.repository(_ui, path, create)   repo.__class__ = _extendrepo(repo)   repo._pyqtobj = ThgRepoWrapper(repo)   _repocache[path] = repo   return repo   except EnvironmentError:   raise error.RepoError('Cannot open repository at %s' % path)   if not os.path.exists(os.path.join(path, '.hg/')):   del _repocache[path]   # this error must be in local encoding   raise error.RepoError('%s is not a valid repository' % path)   return _repocache[path]    class ThgRepoWrapper(QObject):     configChanged = pyqtSignal()   repositoryChanged = pyqtSignal()   repositoryDestroyed = pyqtSignal()   workingDirectoryChanged = pyqtSignal()   workingBranchChanged = pyqtSignal()     def __init__(self, repo):   QObject.__init__(self)   self.repo = repo   self.busycount = 0   repo.configChanged = self.configChanged   repo.repositoryChanged = self.repositoryChanged   repo.repositoryDestroyed = self.repositoryDestroyed   repo.workingDirectoryChanged = self.workingDirectoryChanged   repo.workingBranchChanged = self.workingBranchChanged   self.recordState()     monitorrepo = repo.ui.config('tortoisehg', 'monitorrepo', 'always')   if isinstance(repo, bundlerepo.bundlerepository):   dbgoutput('not watching F/S events for bundle repository')   elif monitorrepo == 'localonly' and paths.netdrive_status(repo.path):   dbgoutput('not watching F/S events for network drive')   else:   self.watcher = QFileSystemWatcher(self)   self.watcher.addPath(hglib.tounicode(repo.path))   self.watcher.directoryChanged.connect(self.onDirChange)   self.watcher.fileChanged.connect(self.onFileChange)   self.addMissingPaths()     @pyqtSlot(QString)   def onDirChange(self, directory):   'Catch any writes to .hg/ folder, most importantly lock files'   self.pollStatus()   self.addMissingPaths()     @pyqtSlot(QString)   def onFileChange(self, file):   'Catch writes or deletions of files we are interested in'   self.pollStatus()   self.addMissingPaths()     def addMissingPaths(self):   'Add files to watcher that may have been added or replaced'   existing = [f for f in self._getwatchedfiles() if os.path.isfile(f)]   files = [unicode(f) for f in self.watcher.files()]   for f in existing:   if hglib.tounicode(f) not in files:   dbgoutput('add file to watcher:', f)   self.watcher.addPath(hglib.tounicode(f))   for f in self.repo.uifiles()[1]:   if f and os.path.exists(f) and hglib.tounicode(f) not in files:   dbgoutput('add ui file to watcher:', f)   self.watcher.addPath(hglib.tounicode(f))     def pollStatus(self):   if not os.path.exists(self.repo.path):   dbgoutput('Repository destroyed', self.repo.root)   self.repositoryDestroyed.emit()   # disable watcher by removing all watched paths   dirs = self.watcher.directories()   if dirs:   self.watcher.removePaths(dirs)   files = self.watcher.files()   if files:   self.watcher.removePaths(files)   if self.repo.root in _repocache:   del _repocache[self.repo.root]   return   if self.locked():   dbgoutput('locked, aborting')   return   if self._checkdirstate():   dbgoutput('dirstate changed, exiting')   return   self._checkrepotime()   self._checkuimtime()     def locked(self):   if os.path.lexists(self.repo.join('wlock')):   return True   if os.path.lexists(self.repo.sjoin('lock')):   return True   return False     def recordState(self):   try:   self._parentnodes = self._getrawparents()   self._repomtime = self._getrepomtime()   self._dirstatemtime = os.path.getmtime(self.repo.join('dirstate'))   self._branchmtime = os.path.getmtime(self.repo.join('branch'))   self._rawbranch = self.repo.opener('branch').read()   except EnvironmentError, ValueError:   self._dirstatemtime = None   self._branchmtime = None   self._rawbranch = None     def _getrawparents(self):   try:   return self.repo.opener('dirstate').read(40)   except EnvironmentError:   return None     def _getwatchedfiles(self):   watchedfiles = [self.repo.sjoin('00changelog.i')]   watchedfiles.append(self.repo.join('localtags'))   watchedfiles.append(self.repo.join('bookmarks'))   watchedfiles.append(self.repo.join('bookmarks.current'))   if hasattr(self.repo, 'mq'):   watchedfiles.append(self.repo.mq.join('series'))   watchedfiles.append(self.repo.mq.join('guards'))   watchedfiles.append(self.repo.join('patches.queue'))   return watchedfiles     def _getrepomtime(self):   'Return the last modification time for the repo'   try:   existing = [f for f in self._getwatchedfiles() if os.path.isfile(f)]   mtime = [os.path.getmtime(wf) for wf in existing]   if mtime:   return max(mtime)   except EnvironmentError:   return None     def _checkrepotime(self):   'Check for new changelog entries, or MQ status changes'   if self._repomtime < self._getrepomtime():   dbgoutput('detected repository change')   if self.locked():   dbgoutput('lock still held - ignoring for now')   return   self.recordState()   self.repo.thginvalidate()   self.repositoryChanged.emit()     def _checkdirstate(self):   'Check for new dirstate mtime, then working parent changes'   try:   mtime = os.path.getmtime(self.repo.join('dirstate'))   except EnvironmentError:   return False   if mtime <= self._dirstatemtime:   return False   self._dirstatemtime = mtime   nodes = self._getrawparents()   if nodes != self._parentnodes:   dbgoutput('dirstate change found')   if self.locked():   dbgoutput('lock still held - ignoring for now')   return True   self.recordState()   self.repo.thginvalidate()   self.repositoryChanged.emit()   return True   try:   mtime = os.path.getmtime(self.repo.join('branch'))   except EnvironmentError:   return False   if mtime <= self._branchmtime:   return False   self._branchmtime = mtime   try:   newbranch = self.repo.opener('branch').read()   except EnvironmentError:   return False   if newbranch != self._rawbranch:   dbgoutput('branch time change')   if self.locked():   dbgoutput('lock still held - ignoring for now')   return True   self._rawbranch = newbranch   self.repo.thginvalidate()   self.workingBranchChanged.emit()   return True   return False     def _checkuimtime(self):   'Check for modified config files, or a new .hg/hgrc file'   try:   oldmtime, files = self.repo.uifiles()   mtime = [os.path.getmtime(f) for f in files if os.path.isfile(f)]   if max(mtime) > oldmtime:   dbgoutput('config change detected')   self.repo.invalidateui()   self.configChanged.emit()   except (EnvironmentError, ValueError):   pass    _uiprops = '''_uifiles _uimtime postpull tabwidth maxdiff   deadbranches _exts _thghiddentags displayname summarylen   shortname mergetools namedbranches'''.split()    # _bookmarkcurrent is a Mercurial property, we include it here to work  # around a bug in hg-1.8. It should be removed when we drop support for  # Mercurial 1.8  _thgrepoprops = '''_thgmqpatchnames thgmqunappliedpatches   _branchheads _bookmarkcurrent'''.split()    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   c) return a patchctx if changeid is an absolute patch path   '''     # Mercurial's standard changectx() (rather, lookup())   # implies that tags and branch names live in the same namespace.   # This code throws patch names in the same namespace, but as   # applied patches have a tag that matches their patch name this   # seems safe.   if changeid in self.thgmqunappliedpatches:   q = self.mq # must have mq to pass the previous if   return genPatchContext(self, q.join(changeid), rev=changeid)   elif type(changeid) is str and '\0' not in changeid and \   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     @propertycache   def _thghiddentags(self):   ht = self.ui.config('tortoisehg', 'hidetags', '')   return [t.strip() for t in ht.split()]     @propertycache   def thgmqunappliedpatches(self):   '''Returns a list of (patch name, patch path) of all self's   unapplied MQ patches, in patch series order, first unapplied   patch first.'''   if not hasattr(self, 'mq'): return []     q = self.mq   applied = set([p.name for p in q.applied])     return [pname for pname in q.series if not pname in applied]     @propertycache   def _thgmqpatchnames(self):   '''Returns all tag names used by MQ patches. Returns []   if MQ not in use.'''   if not hasattr(self, 'mq'): return []     self.mq.parseseries()   return self.mq.series[:]     @property   def thgactivemqname(self):   '''Currenty-active qqueue name (see hgext/mq.py:qqueue)'''   if not hasattr(self, 'mq'):   return   n = os.path.basename(self.mq.path)   if n.startswith('patches-'):   return n[8:]   else:   return n     @propertycache   def _uifiles(self):   cfg = self.ui._ucfg   files = set()   for line in cfg._source.values():   f = line.rsplit(':', 1)[0]   files.add(f)   files.add(self.join('hgrc'))   return files     @propertycache   def _uimtime(self):   mtimes = [0] # zero will be taken if no config files   for f in self._uifiles:   try:   if os.path.exists(f):   mtimes.append(os.path.getmtime(f))   except EnvironmentError:   pass   return max(mtimes)     @propertycache   def _exts(self):   lclexts = []   allexts = [n for n,m in extensions.extensions()]   for name, path in self.ui.configitems('extensions'):   if name.startswith('hgext.'):   name = name[6:]   if name in allexts:   lclexts.append(name)   return lclexts     @propertycache   def postpull(self):   pp = self.ui.config('tortoisehg', 'postpull')   if pp in ('rebase', 'update', 'fetch'):   return pp   return 'none'     @propertycache   def tabwidth(self):   tw = self.ui.config('tortoisehg', 'tabwidth')   try:   tw = int(tw)   tw = min(tw, 16)   return max(tw, 2)   except (ValueError, TypeError):   return 8     @propertycache   def maxdiff(self):   maxdiff = self.ui.config('tortoisehg', 'maxdiff')   try:   maxdiff = int(maxdiff)   if maxdiff < 1:   return sys.maxint   except (ValueError, TypeError):   maxdiff = 1024 # 1MB by default   return maxdiff * 1024     @propertycache   def summarylen(self):   slen = self.ui.config('tortoisehg', 'summarylen')   try:   slen = int(slen)   if slen < 10:   return 80   except (ValueError, TypeError):   slen = 80   return slen     @propertycache   def deadbranches(self):   db = self.ui.config('tortoisehg', 'deadbranch', '')   return [b.strip() for b in db.split(',')]     @propertycache   def displayname(self):   'Display name is for window titles and similar'   if self.ui.configbool('tortoisehg', 'fullpath'):   name = self.root   elif self.ui.config('web', 'name', False):   name = self.ui.config('web', 'name')   else:   name = os.path.basename(self.root)   return hglib.tounicode(name)     @propertycache   def shortname(self):   'Short name is for tables, tabs, and sentences'   if self.ui.config('web', 'name', False):   name = self.ui.config('web', 'name')   else:   name = os.path.basename(self.root)   return hglib.tounicode(name)     @propertycache   def mergetools(self):   seen, installed = [], []   for key, value in self.ui.configitems('merge-tools'):   t = key.split('.')[0]   if t not in seen:   seen.append(t)   if filemerge._findtool(self.ui, t):   installed.append(t)   return installed     @propertycache   def namedbranches(self):   allbranches = self.branchtags()   openbrnodes = []   for br in allbranches.iterkeys():   openbrnodes.extend(self.branchheads(br, closed=False))   dead = self.deadbranches   return sorted(br for br, n in allbranches.iteritems()   if n in openbrnodes and br not in dead)     @propertycache   def _branchheads(self):   heads = []   for branchname, nodes in self.branchmap().iteritems():   heads.extend(nodes)   return heads     def uifiles(self):   'Returns latest mtime and complete list of config files'   return self._uimtime, self._uifiles     def extensions(self):   'Returns list of extensions enabled in this repository'   return self._exts     def thgmqtag(self, tag):   'Returns true if `tag` marks an applied MQ patch'   return tag in self._thgmqpatchnames     def getcurrentqqueue(self):   'Returns the name of the current MQ queue'   if 'mq' not in self._exts:   return None   cur = os.path.basename(self.mq.path)   if cur.startswith('patches-'):   cur = cur[8:]   return cur     def thgshelves(self):   self.shelfdir = sdir = self.join('shelves')   if os.path.isdir(sdir):   def getModificationTime(x):   return os.path.getmtime(os.path.join(sdir, x))   shelves = sorted(os.listdir(sdir),   key=getModificationTime, reverse=True)   return [s for s in shelves if \   os.path.isfile(os.path.join(self.shelfdir, s))]   return []     def makeshelf(self, patch):   if not os.path.exists(self.shelfdir):   os.mkdir(self.shelfdir)   f = open(os.path.join(self.shelfdir, patch), "wb")   f.close()     def thginvalidate(self):   'Should be called when mtime of repo store/dirstate are changed'   self.dirstate.invalidate()   if not isinstance(repo, bundlerepo.bundlerepository):   self.invalidate()   # mq.queue.invalidate does not handle queue changes, so force   # the queue object to be rebuilt   if 'mq' in self.__dict__:   delattr(self, 'mq')   for a in _thgrepoprops + _uiprops:   if a in self.__dict__:   delattr(self, a)     def invalidateui(self):   'Should be called when mtime of ui files are changed'   self.ui = uimod.ui()   self.ui.readconfig(self.join('hgrc'))   for a in _uiprops:   if a in self.__dict__:   delattr(self, a)     def incrementBusyCount(self):   'A GUI widget is starting a transaction'   self._pyqtobj.busycount += 1     def decrementBusyCount(self):   'A GUI widget has finished a transaction'   self._pyqtobj.busycount -= 1   if self._pyqtobj.busycount == 0:   self._pyqtobj.pollStatus()   else:   # A lot of logic will depend on invalidation happening   # within the context of this call. Signals will not be   # emitted till later, but we at least invalidate cached   # data in the repository   self.thginvalidate()     def thgbackup(self, path):   'Make a backup of the given file in the repository "trashcan"'   # The backup name will be the same as the orginal file plus '.bak'   trashcan = self.join('Trashcan')   if not os.path.isdir(trashcan):   os.mkdir(trashcan)   if not os.path.exists(path):   return   name = os.path.basename(path)   root, ext = os.path.splitext(name)   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      def _extendchangectx(changectx):   class thgchangectx(changectx.__class__):   def thgtags(self):   '''Returns all unhidden tags for self'''   htlist = self._repo._thghiddentags   return [tag for tag in self.tags() if tag not in htlist]     def thgwdparent(self):   '''True if self is a parent of the working directory'''   return self.rev() in [ctx.rev() for ctx in self._repo.parents()]     def _thgmqpatchtags(self):   '''Returns the set of self's tags which are MQ patch names'''   mytags = set(self.tags())   patchtags = self._repo._thgmqpatchnames   result = mytags.intersection(patchtags)   assert len(result) <= 1, "thgmqpatchname: rev has more than one tag in series"   return result     def thgmqappliedpatch(self):   '''True if self is an MQ applied patch'''   return self.rev() is not None and bool(self._thgmqpatchtags())     def thgmqunappliedpatch(self):   return False     def thgid(self):   return self._node     def thgmqpatchname(self):   '''Return self's MQ patch name. AssertionError if self not an MQ patch'''   patchtags = self._thgmqpatchtags()   assert len(patchtags) == 1, "thgmqpatchname: called on non-mq patch"   return list(patchtags)[0]     def thgbranchhead(self):   '''True if self is a branch head'''   return self.node() in self._repo._branchheads     def changesToParent(self, whichparent):   parent = self.parents()[whichparent]   return self._repo.status(parent.node(), self.node())[:3]     def longsummary(self):   summary = hglib.tounicode(self.description())   if self._repo.ui.configbool('tortoisehg', 'longsummary'):   limit = 80   lines = summary.splitlines()   if lines:   summary = lines.pop(0)   while len(summary) < limit and lines:   summary += u' ' + lines.pop(0)   summary = summary[0:limit]   else:   summary = ''   else:   lines = summary.splitlines()   summary = lines and lines[0] or ''     if summary and len(lines) > 1:   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   try:   if os.path.exists(patchpath) and patchpath in _pctxcache:   cachedctx = _pctxcache[patchpath]   if cachedctx._mtime == os.path.getmtime(patchpath) and \   cachedctx._fsize == os.path.getsize(patchpath):   return cachedctx   except EnvironmentError:   pass   # create a new context object   ctx = patchctx(patchpath, repo, rev=rev)   _pctxcache[patchpath] = ctx   return ctx    def recursiveMergeStatus(repo):   ms = merge.mergestate(repo)   for wfile in ms:   yield repo.root, wfile, ms[wfile]   try:   wctx = repo[None]   for s in wctx.substate:   sub = wctx.sub(s)   if isinstance(sub, subrepo.hgsubrepo):   for root, file, status in recursiveMergeStatus(sub._repo):   yield root, file, status   except (EnvironmentError, error.Abort, error.RepoError):   pass    def relatedRepositories(repoid):   'Yields root paths for local related repositories'   from tortoisehg.hgqt import reporegistry, repotreemodel   f = QFile(reporegistry.settingsfilename())   f.open(QIODevice.ReadOnly)   try:   for e in repotreemodel.iterRepoItemFromXml(f):   if e.basenode() == repoid:   yield e.rootpath(), e.shortname()   except:   f.close()   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
@@ -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, bfprompt  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,42 @@
  return True    def add(parent, ui, repo, files): + haslf = 'largefiles' in repo.extensions() + if haslf or 'kbfiles' in repo.extensions(): + result = bfprompt.promptForBfiles(parent, ui, repo, files) + if not result: + return False + files, lfiles = result + for name, module in extensions.extensions(): + if name == 'largefiles': + override_add = module.lfsetup.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.lfsetup.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)
 
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'):
 
90
91
92
 
 
93
 
 
94
95
96
 
90
91
92
93
94
95
96
97
98
99
100
@@ -90,7 +90,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 = {}
Change 1 of 1 Show Entire File win32/​wix/​ThgCLSIDs.wxi Stacked
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
@@ -0,0 +1,13 @@
+<Include> + <?define CLSID_TortoiseHgCmenu = {46605027-5B8C-4DCE-BFE0-051B7972D64C} ?> + <?define CLSID_TortoiseHgDropHandler = {CEBD95BE-B733-415F-82A8-673D9158466E} ?> + <?define CLSID_TortoiseHgNormal = {869C8877-2C3C-438D-844B-31B86BFE5E8A} ?> + <?define CLSID_TortoiseHgAdded = {AF42ADAB-8C2E-4285-B746-99B31094708E} ?> + <?define CLSID_TortoiseHgModified = {CDA1C89D-E9B5-4981-A857-82DD932EA2FD} ?> + <?define CLSID_TortoiseHgUnversioned = {9E3D4EC9-0624-4393-8B48-204C217ED1FF} ?> + <?define CLSID_TortoiseHgKeyboard = {36BFF16B-4EA0-4D91-9D2C-39941CF0BFE4} ?> + <?define CLSID_TortoiseHgCopyHook = {61047697-7E8B-46FE-9CF8-2CE603EB3017} ?> + <?define OverlayCLSIDList = + {869C8877-2C3C-438D-844B-31B86BFE5E8A};{AF42ADAB-8C2E-4285-B746-99B31094708E};{CDA1C89D-E9B5-4981-A857-82DD932EA2FD};{9E3D4EC9-0624-4393-8B48-204C217ED1FF} + ?> +</Include>
Show Entire File win32/​wix/​guids.wxi Stacked
(No changes)
Change 1 of 1 Show Entire File win32/​wix/​shell-register-copyhook.wxi 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
@@ -0,0 +1,24 @@
+<Include> + <!-- copy hook component --> + <RegistryValue + Root='HKCR' Key='CLSID\$(var.CLSID_TortoiseHgCopyHook)' + Type='string' Value='TortoiseHg' + /> + <RegistryValue + Root='HKCR' Key='CLSID\$(var.CLSID_TortoiseHgCopyHook)\InProcServer32' + Type='string' Name='ThreadingModel' Value='Apartment' + /> + + <!-- register copy hook handler --> + <RegistryValue + Root='HKCR' Key='Directory\shellex\CopyHookHandlers\TortoiseHgCopyHook' + Type='string' Value='$(var.CLSID_TortoiseHgCopyHook)' + /> + + <!-- Mark all as approved --> + <RegistryValue + Root='HKLM' Key='Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved' + Type='string' Name='$(var.CLSID_TortoiseHgCopyHook)' Value='TortoiseHg' + /> + +</Include>
Change 1 of 1 Show Entire File win32/​wix/​shell-register-keyboard.wxi Stacked
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@@ -0,0 +1,23 @@
+<Include> + <!-- keyboard hook component --> + <RegistryValue + Root='HKCR' Key='CLSID\$(var.CLSID_TortoiseHgKeyboard)' + Type='string' Value='TortoiseHg' + /> + <RegistryValue + Root='HKCR' Key='CLSID\$(var.CLSID_TortoiseHgKeyboard)\InProcServer32' + Type='string' Name='ThreadingModel' Value='Apartment' + /> + + <!-- register browser helper object --> + <RegistryValue + Root='HKLM' Key='Software\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\$(var.CLSID_TortoiseHgKeyboard)' + Type='string' Value='TortoiseHg' + /> + + <!-- Mark all as approved --> + <RegistryValue + Root='HKLM' Key='Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved' + Type='string' Name='$(var.CLSID_TortoiseHgKeyboard)' Value='TortoiseHg' + /> +</Include>
Show Entire File win32/​wix/​tortoisehg.wxs Stacked
(No changes)