Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

stable changeset, csinfo: support showing MQ patch

Changeset 3a81fb6ac3cb

Parent 53253128b3e7

by Yuki KODAMA

Changes to 2 files · Browse files at 3a81fb6ac3cb Showing diff from parent 53253128b3e7 Diff from another changeset...

 
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
 
456
457
458
459
460
461
462
 
 
 
463
464
465
466
 
 
 
 
467
468
469
 
488
489
490
 
 
 
 
 
491
492
493
 
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
 
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
 
422
423
424
 
 
 
425
426
427
428
429
 
 
 
430
431
432
433
434
435
436
 
455
456
457
458
459
460
461
462
463
464
465
 
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
@@ -213,61 +213,27 @@
    def generate_change_header(self):   self.csetinfo.update(self.currev) + self.csetinfo.show_all() + self.patchinfo.hide()   + desc = self.csetinfo.get_data('desc') + self.set_commitlog(desc) + + def generate_patch_header(self): + self.patchinfo.update(self.curpatch) + self.patchinfo.show_all() + self.csetinfo.hide() + + desc = self.patchinfo.get_data('desc') + self.set_commitlog(desc) + + def set_commitlog(self, desc): + 'Append commit log after clearing buffer'   buf = self._buffer   buf.set_text('')   eob = buf.get_end_iter() - ctx = self.repo[self.currev] - desc = toutf(ctx.description())   buf.insert(eob, '\n' + desc + '\n\n')   - def generate_patch_header(self): - buf = self._buffer - buf.set_text('') - eob = buf.get_end_iter() - - # copy from generate_change_header - def title_line(title, text, tag): - pad = ' ' * (12 - len(title)) - utext = toutf(title + pad + text) - buf.insert_with_tags_by_name(eob, utext, tag) - buf.insert(eob, '\n') - - pf = open(self.curpatch) - try: - data = patch.extract(self.ui, pf) - tmp, msg, user, date, branch, node, p1, p2 = data - try: - # title - patchtitle = os.path.basename(self.curpatch) - if node: - patchtitle += ' (%s)' % node[:12] - title_line(_('patch:'), patchtitle, 'changeset') - # branch - if branch: - title_line(_('branch:'), toutf(branch), 'greybg') - # user - if user: - title_line(_('user:'), toutf(user), 'changeset') - # date - if date: - title_line(_('date:'), displaytime(util.parsedate(date)), - 'changeset') - # parents - for pnode in (p1, p2): - if pnode is None: - continue - title_line(_('parent:'), pnode[:12], 'parent') - # commit message - if msg: - cmsg = '\n' + toutf(msg.rstrip('\r\n')) + '\n\n' - buf.insert(eob, cmsg) - finally: - if tmp: - os.unlink(tmp) - finally: - pf.close() -   def append_diff(self, wfile):   if not wfile:   return @@ -456,14 +422,15 @@
  scroller.child.set_shadow_type(gtk.SHADOW_NONE)     ## changeset panel - style = csinfo.panelstyle(contents=('cset', 'branch', 'user', - 'dateage', 'parents', 'children', 'tags', - 'transplant'), selectable=True)   def data_func(widget, item, ctx): + def summary_line(desc): + desc = desc.replace('\0', '') + return hglib.toutf(desc.split('\n')[0][:80])   def revline_data(ctx): - desc = ctx.description().replace('\0', '') - summary = hglib.toutf(desc.split('\n')[0][:80]) - return (str(ctx.rev()), str(ctx), summary) + if isinstance(ctx, basestring): + return ctx + desc = ctx.description() + return (str(ctx.rev()), str(ctx), summary_line(desc))   if item == 'cset':   return revline_data(ctx)   elif item == 'branch': @@ -488,6 +455,11 @@
  return binascii.hexlify(ts)   except KeyError:   return None + elif item == 'patch': + if hasattr(ctx, '_patchname'): + desc = ctx.description() + return (ctx._patchname, str(ctx), summary_line(desc)) + return None   raise csinfo.UnknownItem(item)   def label_func(widget, item):   if item == 'cset': @@ -500,26 +472,47 @@
  return _('child:')   elif item == 'transplant':   return _('transplant:') + elif item == 'patch': + return _('patch:')   raise csinfo.UnknownItem(item)   def markup_func(widget, item, value): + def revid_markup(revid): + return gtklib.markup(revid, face='monospace', size='9000')   def revline_markup(revnum, revid, summary):   revnum = gtklib.markup(revnum) - revid = gtklib.markup(revid, face='monospace', size='9000') + revid = revid_markup(revid)   summary = gtklib.markup(summary)   return '%s (%s) %s' % (revnum, revid, summary) - if item in ('cset', 'transplant'): + if item in ('cset', 'transplant', 'patch'):   if isinstance(value, basestring): - return gtklib.markup(value, face='monospace', size='9000') + return revid_markup(value)   return revline_markup(*value)   elif item in ('parents', 'children'): - return [revline_markup(*data) for data in value] + csets = [] + for cset in value: + if isinstance(cset, basestring): + csets.append(revid_markup(cset)) + else: + csets.append(revline_markup(*cset)) + return csets   elif item == 'dateage':   return gtklib.markup('%s (%s)' % value)   raise csinfo.UnknownItem(item) +   custom = csinfo.custom(data=data_func, label=label_func,   markup=markup_func) - self.csetinfo = csinfo.create(self.repo, None, style, custom) + args = dict(repo=self.repo, custom=custom) + + csetstyle = csinfo.panelstyle(contents=('cset', 'branch', 'user', + 'dateage', 'parents', 'children', 'tags', + 'transplant'), selectable=True) + self.csetinfo = csinfo.create(style=csetstyle, **args)   details_box.pack_start(self.csetinfo, False, False) + + patchstyle = csinfo.panelstyle(contents=('patch', 'branch', 'user', + 'dateage', 'parents'), selectable=True) + self.patchinfo = csinfo.create(style=patchstyle, **args) + details_box.pack_start(self.patchinfo, False, False)   details_box.pack_start(gtk.HSeparator(), False, False)     ## changeset diff
 
11
12
13
 
 
 
14
15
16
 
18
19
20
21
22
 
 
23
24
25
 
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
 
73
74
75
 
76
77
78
 
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
 
123
124
125
126
 
127
128
129
 
135
136
137
 
 
138
139
140
 
 
141
142
143
 
148
149
150
151
152
153
 
154
155
156
 
 
 
157
158
159
160
 
161
162
163
 
167
168
169
 
170
171
172
173
174
 
175
176
177
178
179
180
181
182
 
188
189
190
191
 
192
193
194
 
207
208
209
210
 
211
212
213
 
220
221
222
223
 
224
225
226
 
227
228
229
 
237
238
239
240
 
241
242
243
 
244
245
246
247
248
 
 
 
249
250
251
 
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
 
302
303
304
305
306
 
 
 
 
307
308
309
 
348
349
350
351
 
352
353
354
 
 
 
 
355
356
357
358
359
360
361
 
 
 
 
362
363
364
 
11
12
13
14
15
16
17
18
19
 
21
22
23
 
 
24
25
26
27
28
 
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
 
74
75
76
77
78
79
80
 
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
 
204
205
206
 
207
208
209
210
 
216
217
218
219
220
221
 
 
222
223
224
225
226
 
231
232
233
 
 
 
234
235
236
237
238
239
240
241
242
243
 
244
245
246
247
 
251
252
253
254
255
256
257
258
 
259
260
261
262
263
 
264
265
266
 
272
273
274
 
275
276
277
278
 
291
292
293
 
294
295
296
297
 
304
305
306
 
307
308
309
 
310
311
312
313
 
321
322
323
 
324
325
326
 
327
328
329
330
 
 
331
332
333
334
335
336
 
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
 
400
401
402
 
 
403
404
405
406
407
408
409
 
448
449
450
 
451
452
 
 
453
454
455
456
457
458
459
460
461
 
 
462
463
464
465
466
467
468
@@ -11,6 +11,9 @@
 import os  import gtk   +from mercurial import patch, util +from mercurial.node import short, hex +  from tortoisehg.util.i18n import _  from tortoisehg.util import hglib, paths   @@ -18,8 +21,8 @@
   PANEL_DEFAULT = ('rev', 'summary', 'user', 'date', 'branch', 'tags')   -def create(repo, rev=None, style=None, custom=None, **kargs): - return CachedFactory(repo, custom, style, rev, **kargs)() +def create(repo, target=None, style=None, custom=None, **kargs): + return CachedFactory(repo, custom, style, target, **kargs)()    def factory(*args, **kargs):   return CachedFactory(*args, **kargs) @@ -39,33 +42,31 @@
   class CachedFactory(object):   - def __init__(self, repo=None, custom=None, style=None, rev=None, + def __init__(self, repo, custom=None, style=None, target=None,   withupdate=False, widgetcache=False):   if repo is None: - try: - root = paths.find_root() - repo = hg.repository(ui.ui(), path=root) - except hglib.RepoError: - raise _('failed to get repo: %s') % root + raise _('must be specified repository')   self.repo = repo + self.target = target   if custom is None:   custom = {}   self.custom = custom   if style is None:   style = panelstyle()   self.csstyle = style - if rev is None: - rev = 'tip' - self.rev = rev - self.info = CachedChangesetInfo() + self.info = CachedSummaryInfo()     self.withupdate = withupdate   if widgetcache:   self.cache = {}   - def __call__(self, rev=None, style=None, custom=None, repo=None): - if rev is None: - rev = self.rev + def __call__(self, target=None, style=None, custom=None, repo=None): + # try to create a context object + if target is None: + target = self.target + if repo is None: + repo = self.repo +   if style is None:   style = self.csstyle   else: @@ -73,6 +74,7 @@
  newstyle = self.csstyle.copy()   newstyle.update(style)   style = newstyle +   if custom is None:   custom = self.custom   else: @@ -80,39 +82,118 @@
  newcustom = self.custom.copy()   newcustom.update(custom)   custom = newcustom - if repo is None: - repo = self.repo   - # check cache - if hasattr(self, 'cache'): - key = style['type'] + str(rev) + str(style) + str(custom) + str(id(repo)) + if 'type' not in style: + raise _("must be specified 'type' in style") + type = style['type'] + assert type in ('panel', 'label') + + # check widgets cache + if target is None or repo is None: + key = None + else: + key = type + str(target) + str(style) + str(custom) + repo.root + if hasattr(self, 'cache') and key:   try: - widget = self.cache[key] - return widget + return self.cache[key]   except KeyError:   pass   - if 'type' in style: - args = (rev, style, custom, repo, self.info) - type = style['type'] - if type == 'panel': - widget = ChangesetPanel(*args) - elif type == 'label': - widget = ChangesetLabel(*args) - else: - raise _("unknown 'type': %s") % type - if hasattr(self, 'cache'): - self.cache[key] = widget - if self.withupdate: - widget.update() - return widget + # create widget + args = (target, style, custom, repo, self.info) + if type == 'panel': + widget = SummaryPanel(*args)   else: - raise _("must be specified 'type' in style") + widget = SummaryLabel(*args) + if hasattr(self, 'cache') and key: + self.cache[key] = widget + if self.withupdate: + widget.update() + return widget    class UnknownItem(Exception):   pass   -class ChangesetInfo(object): +def create_context(repo, target): + if repo is None or target is None: + return None + ctx = PatchContext(repo, target) + if ctx is None: + ctx = ChangesetContext(repo, target) + return ctx + +def ChangesetContext(repo, rev): + if repo is None or rev is None: + return None + try: + ctx = repo[rev] + except (hglib.LookupError, hglib.RepoLookupError, hglib.RepoError): + ctx = None + return ctx + +def PatchContext(repo, patchpath, cache={}): + if repo is None or patchpath is None: + return None + # check path + if not os.path.isabs(patchpath) or not os.path.isfile(patchpath): + return None + # check cache + mtime = os.path.getmtime(patchpath) + key = repo.root + patchpath + holder = cache.get(key, None) + if holder is not None and mtime == holder[0]: + return holder[1] + # create a new context object + ctx = patchctx(patchpath, repo) + cache[key] = (mtime, ctx) + return ctx + +class patchctx(object): + + def __init__(self, patchpath, repo): + self._path = patchpath + self._patchname = os.path.basename(patchpath) + self._repo = repo + pf = open(patchpath) + try: + data = patch.extract(self._repo.ui, pf) + tmpfile, msg, user, date, branch, node, p1, p2 = data + if tmpfile: + os.unlink(tmpfile) + finally: + pf.close() + self._node = node + self._user = user and hglib.toutf(user) or '' + self._date = date and util.parsedate(date) or None + self._desc = msg and hglib.toutf(msg.rstrip('\r\n')) or '' + self._branch = branch and hglib.toutf(branch) or '' + self._parents = [] + for p in (p1, p2): + if not p: + continue + try: + self._parents.append(repo[p]) + except (hglib.LookupError, hglib.RepoLookupError, hglib.RepoError): + self._parents.append(p) + + def __str__(self): + return short(self.node()) + + def __int__(self): + return self.rev() + + def node(self): return self._node + def rev(self): return None + def hex(self): return hex(self.node()) + def user(self): return self._user + def date(self): return self._date + def description(self): return self._desc + def branch(self): return self._branch + def tags(self): return () + def parents(self): return self._parents + def children(self): return () + +class SummaryInfo(object):     LABELS = {'rev': _('rev:'), 'revnum': _('rev:'), 'revid': _('rev:'),   'summary': _('summary:'), 'user': _('user:'), 'age': _('age:'), @@ -123,7 +204,7 @@
  pass     def get_data(self, item, *args): - widget, rev, custom, repo = args + widget, ctx, custom = args   def default_func(widget, item, ctx):   return None   def preset_func(widget, item, ctx): @@ -135,9 +216,11 @@
  return str(ctx.rev())   elif item == 'revid':   return str(ctx) + elif item == 'desc': + return hglib.toutf(ctx.description().replace('\0', ''))   elif item == 'summary': - desc = ctx.description().replace('\0', '') - value = hglib.toutf(desc.split('\n')[0][:80]) + desc = self.get_data('desc', *args) + value = desc.split('\n')[0][:80]   if len(value) == 0:   return None   return value @@ -148,16 +231,17 @@
  elif item == 'age':   return hglib.age(ctx.date())   elif item == 'rawbranch': - if ctx.node() in repo.branchtags().values(): - return hglib.toutf(ctx.branch()) - return None + return hglib.toutf(ctx.branch())   elif item == 'branch':   value = self.get_data('rawbranch', *args)   if value: + repo = ctx._repo + if ctx.node() not in repo.branchtags().values(): + return None   dblist = repo.ui.config('tortoisehg', 'deadbranch', '')   if dblist and value in [hglib.toutf(b.strip()) \   for b in dblist.split(',')]: - value = None + return None   return value   elif item == 'rawtags':   value = [hglib.toutf(tag) for tag in ctx.tags()] @@ -167,16 +251,16 @@
  elif item == 'tags':   value = self.get_data('rawtags', *args)   if value: + repo = ctx._repo   htags = repo.ui.config('tortoisehg', 'hidetags', '')   htags = [hglib.toutf(b.strip()) for b in htags.split()]   value = [tag for tag in value if tag not in htags]   if len(value) == 0: - value = None + return None   return value   elif item == 'ishead':   return len(ctx.children()) == 0   raise UnknownItem(item) - ctx = repo[rev]   if custom.has_key('data'):   try:   return custom['data'](widget, item, ctx) @@ -188,7 +272,7 @@
  pass   return default_func(widget, item, ctx)   - def get_label(self, item, widget, rev, custom, repo): + def get_label(self, item, widget, ctx, custom):   def default_func(widget, item):   return ''   def preset_func(widget, item): @@ -207,7 +291,7 @@
  pass   return default_func(widget, item)   - def get_markup(self, item, widget, rev, custom, repo): + def get_markup(self, item, widget, ctx, custom):   def default_func(widget, item, value):   return ''   def preset_func(widget, item, value): @@ -220,10 +304,10 @@
  opts = dict(color='black', background='#ffffaa')   tags = [gtklib.markup(' %s ' % tag, **opts) for tag in value]   return ' '.join(tags) - elif item in ('summary', 'user', 'date', 'age'): + elif item in ('desc', 'summary', 'user', 'date', 'age'):   return gtklib.markup(value)   raise UnknownItem(item) - value = self.get_data(item, widget, rev, custom, repo) + value = self.get_data(item, widget, ctx, custom)   if value is None:   return None   if custom.has_key('markup'): @@ -237,15 +321,16 @@
  pass   return default_func(widget, item, value)   -class CachedChangesetInfo(ChangesetInfo): +class CachedSummaryInfo(SummaryInfo):     def __init__(self): - ChangesetInfo.__init__(self) + SummaryInfo.__init__(self)   self.cache = {}     def try_cache(self, target, func, *args): - item, widget, rev, custom, repo = args - key = target + item + str(rev) + str(custom) + str(id(repo)) + item, widget, ctx, custom = args + ctxstr = ctx._repo.root + ctx.hex() + key = target + item + ctxstr + str(custom)   try:   return self.cache[key]   except KeyError: @@ -254,45 +339,58 @@
  return value     def get_data(self, *args): - return self.try_cache('data', ChangesetInfo.get_data, *args) + return self.try_cache('data', SummaryInfo.get_data, *args)     def get_label(self, *args): - return self.try_cache('label', ChangesetInfo.get_label, *args) + return self.try_cache('label', SummaryInfo.get_label, *args)     def get_markup(self, *args): - return self.try_cache('markup', ChangesetInfo.get_markup, *args) + return self.try_cache('markup', SummaryInfo.get_markup, *args)   -class ChangesetBase(object):   - def __init__(self, rev, custom, repo, info=None): - self.rev = str(rev) +class SummaryBase(object): + + def __init__(self, target, custom, repo, info=None): + if target is None: + self.target = None + else: + self.target = str(target)   self.custom = custom   self.repo = repo   if info is None: - info = ChangesetInfo() + info = SummaryInfo()   self.info = info + self.ctx = create_context(repo, self.target)     def get_data(self, item): - return self.info.get_data(item, self, self.rev, self.custom, self.repo) + return self.info.get_data(item, self, self.ctx, self.custom)     def get_label(self, item): - return self.info.get_label(item, self, self.rev, self.custom, self.repo) + return self.info.get_label(item, self, self.ctx, self.custom)     def get_markup(self, item): - return self.info.get_markup(item, self, self.rev, self.custom, self.repo) + return self.info.get_markup(item, self, self.ctx, self.custom)   - def update(self, rev=None, custom=None, repo=None): - if rev is not None: - self.rev = str(rev) + def update(self, target=None, custom=None, repo=None): + if target is None: + target = self.target + if target is not None: + target = str(target)   if custom is not None:   self.custom = custom - if repo is not None: - self.repo = repo + if repo is None: + repo = self.repo + self.ctx = create_context(repo, target) + if self.ctx is None: + return False # cannot update + self.target = target + self.repo = repo + return True   -class ChangesetPanel(ChangesetBase, gtk.Frame): +class SummaryPanel(SummaryBase, gtk.Frame):   - def __init__(self, rev, style, custom, repo, info=None): - ChangesetBase.__init__(self, rev, custom, repo, info) + def __init__(self, target, style, custom, repo, info=None): + SummaryBase.__init__(self, target, custom, repo, info)   gtk.Frame.__init__(self)     self.set_shadow_type(gtk.SHADOW_NONE) @@ -302,8 +400,10 @@
  self.table = gtklib.LayoutTable(ypad=1, headopts={'weight': 'bold'})   self.add(self.table)   - def update(self, rev=None, style=None, custom=None, repo=None): - ChangesetBase.update(self, rev, custom, repo) + def update(self, target=None, style=None, custom=None, repo=None): + if not SummaryBase.update(self, target, custom, repo): + return False # cannot update +   if style is not None:   self.csstyle = style   @@ -348,17 +448,21 @@
  self.table.add_row(self.get_label(item), body)   self.show_all()   -class ChangesetLabel(ChangesetBase, gtk.Label): + return True   - def __init__(self, rev, style, custom, repo, info=None): - ChangesetBase.__init__(self, rev, custom, repo, info) +class SummaryLabel(SummaryBase, gtk.Label): + + def __init__(self, target, style, custom, repo, info=None): + SummaryBase.__init__(self, target, custom, repo, info)   gtk.Label.__init__(self)     self.set_alignment(0, 0.5)   self.csstyle = style   - def update(self, rev=None, style=None, custom=None, repo=None): - ChangesetBase.update(self, rev, custom, repo) + def update(self, target=None, style=None, custom=None, repo=None): + if not SummaryBase.update(self, target, custom, repo): + return False # cannot update +   if style is not None:   self.csstyle = style