Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.7, 0.7.1, and 0.7.2

status: Enumerate diff model rows

Changeset f0338eba5158

Parent c102ef37af06

by Steve Borho

Changes to 2 files · Browse files at f0338eba5158 Showing diff from parent c102ef37af06 Diff from another changeset...

Change 1 of 2 Show Changes Only hggtk/​commit.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
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
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
 #  # commit.py - commit dialog for TortoiseHg  #  # Copyright 2007 Brad Schick, brad at gmail . com  # Copyright (C) 2007 TK Soh <teekaysoh@gmail.com>  #    import os  import pygtk  pygtk.require('2.0')  import errno  import gtk  import pango  import tempfile  import cStringIO    from mercurial.i18n import _  from mercurial import ui, hg  from shlib import shell_notify  from gdialog import * -from status import GStatus +from status import GStatus, DM_REJECTED, DM_HEADER_CHUNK, DM_CHUNK_ID  from hgcmd import CmdDialog  from hglib import fromutf    class GCommit(GStatus):   """GTK+ based dialog for displaying repository status and committing changes.     Also provides related operations like add, delete, remove, revert, refresh,   ignore, diff, and edit.   """     ### Overrides of base class methods ###     def init(self):   GStatus.init(self)   self._last_commit_id = None     def parse_opts(self):   GStatus.parse_opts(self)     # Need an entry, because extdiff code expects it   if not self.test_opt('rev'):   self.opts['rev'] = ''     if self.test_opt('message'):   buffer = gtk.TextBuffer()   buffer.set_text(self.opts['message'])   self.text.set_buffer(buffer)     if self.test_opt('logfile'):   buffer = gtk.TextBuffer()   buffer.set_text('Comment will be read from file ' + self.opts['logfile'])   self.text.set_buffer(buffer)   self.text.set_sensitive(False)       def get_title(self):   return os.path.basename(self.repo.root) + ' commit ' + ' '.join(self.pats) + ' ' + self.opts['user'] + ' ' + self.opts['date']     def get_icon(self):   return 'menucommit.ico'     def auto_check(self):   if self.test_opt('check'):   for entry in self.model :   if entry[1] in 'MAR':   entry[0] = True   self._update_check_count()       def save_settings(self):   settings = GStatus.save_settings(self)   settings['gcommit'] = self._vpaned.get_position()   return settings       def load_settings(self, settings):   GStatus.load_settings(self, settings)   if settings:   self._setting_vpos = settings['gcommit']   else:   self._setting_vpos = -1       def get_tbbuttons(self):   tbbuttons = GStatus.get_tbbuttons(self)   tbbuttons.insert(2, gtk.SeparatorToolItem())   self._undo_button = self.make_toolbutton(gtk.STOCK_UNDO, '_Undo',   self._undo_clicked, tip='undo recent commit')   tbbuttons.insert(2, self._undo_button)   tbbuttons.insert(2, self.make_toolbutton(gtk.STOCK_OK, '_Commit',   self._commit_clicked, tip='commit'))   return tbbuttons       def changed_cb(self, combobox):   model = combobox.get_model()   index = combobox.get_active()   if index >= 0:   buffer = self.text.get_buffer()   begin, end = buffer.get_bounds()   cur_msg = buffer.get_text(begin, end)   if len(cur_msg):   response = Confirm('Discard Message', [], self,   'Discard current commit message?').run()   if response != gtk.RESPONSE_YES:   return   buffer.set_text(model[index][1])     def _update_recent_messages(self, msg=None):   if msg is not None:   self._mru_messages.add(msg)   self.settings.write()     liststore = self.msg_cbbox.get_model()   liststore.clear()   for msg in self._mru_messages:   sumline = msg.split("\n")[0]   liststore.append([sumline, msg])   #self.msg_cbbox.set_active(-1)     def get_body(self):   status_body = GStatus.get_body(self)     vbox = gtk.VBox()     mbox = gtk.HBox()   label = gtk.Label('Recent Commit Messages: ')   mbox.pack_start(label, False, False, 2)   self.msg_cbbox = gtk.combo_box_new_text()   liststore = gtk.ListStore(str, str)   self.msg_cbbox = gtk.ComboBox(liststore)   cell = gtk.CellRendererText()   self.msg_cbbox.pack_start(cell, True)   self.msg_cbbox.add_attribute(cell, 'text', 0)   #cell = gtk.CellRendererText()   #self.msg_cbbox.pack_start(cell, True)   #self.msg_cbbox.add_attribute(cell, 'text', 1)   mbox.pack_start(self.msg_cbbox)   vbox.pack_start(mbox, False, False)   self._mru_messages = self.settings.mrul('recent_messages')   self._update_recent_messages()   self.msg_cbbox.connect('changed', self.changed_cb)     frame = gtk.Frame()   frame.set_shadow_type(gtk.SHADOW_ETCHED_IN)   scroller = gtk.ScrolledWindow()   scroller.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)   frame.add(scroller)   vbox.pack_start(frame)     self.text = gtk.TextView()   self.text.set_wrap_mode(gtk.WRAP_WORD)   self.text.modify_font(pango.FontDescription(self.fontcomment))   scroller.add(self.text)     self._vpaned = gtk.VPaned()   self._vpaned.add1(vbox)   self._vpaned.add2(status_body)   self._vpaned.set_position(self._setting_vpos)   return self._vpaned       def get_menu_info(self):   """Returns menu info in this order: merge, addrem, unknown, clean, ignored, deleted   """   merge, addrem, unknown, clean, ignored, deleted, unresolved, resolved \   = GStatus.get_menu_info(self)   return (merge + (('_commit', self._commit_file),),   addrem + (('_commit', self._commit_file),),   unknown + (('_commit', self._commit_file),),   clean,   ignored,   deleted + (('_commit', self._commit_file),),   unresolved,   resolved,   )       def should_live(self, widget=None, event=None):   # If there are more than a few character typed into the commit   # message, ask if the exit should continue.   live = False   if self.text.get_buffer().get_char_count() > 10:   dialog = Confirm('Exit', [], self, 'Discard commit message and exit?')   if dialog.run() == gtk.RESPONSE_NO:   live = True   return live       def reload_status(self):   success = GStatus.reload_status(self)   self._check_merge()   self._check_undo()   return success       ### End of overridable methods ###     def _check_undo(self):   can_undo = os.path.exists(self.repo.sjoin("undo")) and \   self._last_commit_id is not None   self._undo_button.set_sensitive(can_undo)       def _check_merge(self):   # disable the checkboxes on the filelist if repo in merging state   merged = len(self.repo.changectx(None).parents()) > 1   cbcell = self.tree.get_column(0).get_cell_renderers()[0]   cbcell.set_property("activatable", not merged)     self.get_toolbutton('Re_vert').set_sensitive(not merged)   self.get_toolbutton('_Add').set_sensitive(not merged)   self.get_toolbutton('_Remove').set_sensitive(not merged)     if merged:   # select all changes if repo is merged   for entry in self.model:   if entry[1] in 'MARD':   entry[0] = True   self._update_check_count()     # pre-fill commit message   self.text.get_buffer().set_text('merge')       def _commit_clicked(self, toolbutton, data=None):   if not self._ready_message():   return True     if len(self.repo.changectx(None).parents()) > 1:   # as of Mercurial 1.0, merges must be committed without   # specifying file list.   self._hg_commit([])   else:   commitable = 'MAR'   addremove_list = self._relevant_files('?!')   if len(addremove_list) and self._should_addremove(addremove_list):   commitable += '?!'     commit_list = self._relevant_files(commitable)   if len(commit_list) > 0:   #self._hg_commit(commit_list)   self._commit_selected(commit_list)   return True   else:   Prompt('Nothing Commited', 'No committable files selected', self).run()   return True     def _commit_selected(self, files):   import hgshelve   # 1a. get list of chunks not rejected - hlist = [x[4] for x in self.diff_model if not x[0]] + hlist = [x[DM_CHUNK_ID] for x in self.diff_model if not x[DM_REJECTED]]   # 1b. ignore header chunks - nlist = [n for n in hlist if not self.diff_model[n][3]] + nlist = [n for n in hlist if not self.diff_model[n][DM_HEADER_CHUNK]]   if not nlist:   Prompt('Commit', 'Please select diff chunks to commit',   self).run()   return     repo, chunks, ui = self.repo, self._shelve_chunks, self.ui     # 2. backup changed files, so we can restore them in the end   backups = {}   backupdir = repo.join('record-backups')   try:   os.mkdir(backupdir)   except OSError, err:   if err.errno != errno.EEXIST:   Prompt('Commit', 'Unable to create ' + backupdir,   self).run()   return   try:   # backup continues   for f in files:   if f not in self.modified:   continue   fd, tmpname = tempfile.mkstemp(prefix=f.replace('/', '_')+'.',   dir=backupdir)   os.close(fd)   ui.debug(_('backup %r as %r\n') % (f, tmpname))   util.copyfile(repo.wjoin(f), tmpname)   backups[f] = tmpname     fp = cStringIO.StringIO()   for n, c in enumerate(chunks):   if c.filename() in backups and n in hlist:   c.write(fp)   dopatch = fp.tell()   fp.seek(0)     # 3a. apply filtered patch to clean repo (clean)   if backups:   hg.revert(repo, repo.dirstate.parents()[0], backups.has_key)     # 3b. (apply)   if dopatch:   try:   ui.debug(_('applying patch\n'))   ui.debug(fp.getvalue())   patch.internalpatch(fp, ui, 1, repo.root)   except patch.PatchError, err:   s = str(err)   if s:   raise util.Abort(s)   else:   Prompt('Commit', 'Unable to apply patch', self).run()   raise util.Abort(_('patch failed to apply'))   del fp     # 4. We prepared working directory according to filtered patch.   # Now is the time to delegate the job to commit/qrefresh or the like!     # it is important to first chdir to repo root -- we'll call a   # highlevel command with list of pathnames relative to repo root   cwd = os.getcwd()   os.chdir(repo.root)   try:   self._hg_commit(files)   finally:   os.chdir(cwd)     return 0   finally:   # 5. finally restore backed-up files   try:   for realname, tmpname in backups.iteritems():   ui.debug(_('restoring %r to %r\n') % (tmpname, realname))   util.copyfile(tmpname, repo.wjoin(realname))   os.unlink(tmpname)   os.rmdir(backupdir)   except OSError:   pass       def _commit_file(self, stat, file):   if self._ready_message():   if stat not in '?!' or self._should_addremove([file]):   self._hg_commit([file])   return True       def _undo_clicked(self, toolbutton, data=None):   response = Confirm('Undo commit', [], self, 'Undo last commit').run()   if response != gtk.RESPONSE_YES:   return     tip = self._get_tip_rev(True)   if not tip == self._last_commit_id:   Prompt('Undo commit',   'Unable to undo!\n\n'   'Tip revision differs from last commit.',   self).run()   return     try:   self.repo.rollback()   self._last_commit_id = None   self.reload_status()   except:   Prompt('Undo commit', 'Errors during rollback!',   self).run()       def _should_addremove(self, files):   if self.test_opt('addremove'):   return True   else:   response = Confirm('Add/Remove', files, self).run()   if response == gtk.RESPONSE_YES:   # This will stay set for further commits (meaning no more prompts). Problem?   self.opts['addremove'] = True   return True   return False       def _ready_message(self):   begin, end = self.text.get_buffer().get_bounds()   message = self.text.get_buffer().get_text(begin, end)   if not self.test_opt('logfile') and not message:   Prompt('Nothing Commited', 'Please enter commit message', self).run()   self.text.grab_focus()   return False   else:   if not self.test_opt('logfile'):   self.opts['message'] = message   return True       def _hg_commit(self, files):   if not self.repo.ui.config('ui', 'username'):   Prompt('Commit: Invalid username',   'Your username has not been configured.\n\n'   'Please configure your username and try again',   self).run()     # bring up the config dialog for user to enter their username.   # But since we can't be sure they will do it right, we will   # have them to retry, to re-trigger the checking mechanism.   from thgconfig import ConfigDialog   dlg = ConfigDialog(self.repo.root, False)   dlg.show_all()   dlg.focus_field('ui.username')   dlg.run()   dlg.hide()   self.repo = hg.repository(ui.ui(), self.repo.root)   self.ui = self.repo.ui   return     # call the threaded CmdDialog to do the commit, so the the large commit   # won't get locked up by potential large commit. CmdDialog will also   # display the progress of the commit operation.   cmdline = ["hg", "commit", "--verbose", "--repository", self.repo.root]   if self.opts['addremove']:   cmdline += ['--addremove']   cmdline += ['--message', fromutf(self.opts['message'])]   cmdline += [self.repo.wjoin(x) for x in files]   dialog = CmdDialog(cmdline, True)   dialog.set_transient_for(self)   dialog.run()   dialog.hide()     # refresh overlay icons and commit dialog   if dialog.return_code() == 0:   self.text.set_buffer(gtk.TextBuffer())   self._update_recent_messages(self.opts['message'])   shell_notify([self.cwd] + files)   self._last_commit_id = self._get_tip_rev(True)   self.reload_status()     def _get_tip_rev(self, refresh=False):   if refresh:   self.repo.invalidate()   cl = self.repo.changelog   tip = cl.node(nullrev + len(cl))   return hex(tip)    def launch(root='', files=[], cwd='', main=True):   u = ui.ui()   u.updateopts(debug=False, traceback=False)   repo = hg.repository(u, path=root)     # move cwd to repo root if repo is merged, so we can show   # all the changed files   if len(repo.changectx(None).parents()) > 1 and repo.root != cwd:   cwd = repo.root   repo = hg.repository(u, path=cwd)   files = [cwd]     ct = repo.ui.config('tortoisehg', 'commit', 'internal')   if ct not in ['', 'internal']:   from hglib import thgdispatch   args = ['--repository', root, ct]   try:   ret = thgdispatch(repo.ui, args=args)   except SystemExit:   pass   return None     cmdoptions = {   'user':'', 'date':'',   'modified':True, 'added':True, 'removed':True, 'deleted':True,   'unknown':False, 'ignored':False,   'exclude':[], 'include':[],   'check': False, 'git':False, 'logfile':'', 'addremove':False,   }     dialog = GCommit(u, repo, cwd, files, cmdoptions, main)   dialog.display()   return dialog    def run(root='', files=[], cwd='', **opts):   # If no files or directories were selected, take current dir   # TODO: Not clear if this is best; user may expect repo wide   if not files and cwd:   files = [cwd]   if launch(root, files, cwd, True):   gtk.gdk.threads_init()   gtk.gdk.threads_enter()   gtk.main()   gtk.gdk.threads_leave()    if __name__ == "__main__":   import sys   from hglib import rootpath     opts = {}   opts['cwd'] = len(sys.argv) > 1 and sys.argv[1] or os.getcwd()   opts['root'] = rootpath(opts['cwd'])   run(**opts)
Change 1 of 5 Show Entire File hggtk/​status.py Stacked
 
24
25
26
 
 
 
 
 
 
 
27
28
29
 
299
300
301
302
303
304
305
 
313
314
315
316
317
 
 
 
 
 
318
319
320
 
652
653
654
655
656
 
 
657
658
659
 
869
870
871
872
 
873
874
875
 
24
25
26
27
28
29
30
31
32
33
34
35
36
 
306
307
308
 
309
310
311
 
319
320
321
 
 
322
323
324
325
326
327
328
329
 
661
662
663
 
 
664
665
666
667
668
 
878
879
880
 
881
882
883
884
@@ -24,6 +24,13 @@
 from dialog import entry_dialog  import hgshelve   +# diff_model row enumerations +DM_REJECTED = 0 +DM_CHUNK_TEXT = 1 +DM_NOT_HEADER_CHUNK = 2 +DM_HEADER_CHUNK = 3 +DM_CHUNK_ID = 4 +  class GStatus(GDialog):   """GTK+ based dialog for displaying repository status   @@ -299,7 +306,6 @@
  diff_frame.add(scroller)     # use treeview to diff hunks - # rejected, difftext, !isheader, isheader, chunkid   self.diff_model = gtk.ListStore(bool, str, bool, bool, int)   self.diff_tree = gtk.TreeView(self.diff_model)   self.diff_tree.get_selection().set_mode(gtk.SELECTION_MULTIPLE) @@ -313,8 +319,11 @@
    diff_hunk_cell = gtk.CellRendererText()   diff_hunk_cell.set_property('cell-background', '#EEEEEE') - diffcol = gtk.TreeViewColumn('diff', diff_hunk_cell, strikethrough=0, - markup=1, strikethrough_set=2, cell_background_set=3) + diffcol = gtk.TreeViewColumn('diff', diff_hunk_cell, + strikethrough=DM_REJECTED, + markup=DM_CHUNK_TEXT, + strikethrough_set=DM_NOT_HEADER_CHUNK, + cell_background_set=DM_HEADER_CHUNK)   diffcol.set_resizable(True)   self.diff_tree.append_column(diffcol)   @@ -652,8 +661,8 @@
  def _diff_tree_row_act(self, tree, path, column):   # strikethrough-set property seems to be broken, so manually   # filter header chunks here using !isheader property of diffmodel. - if self.diff_model[path][2]: - self.diff_model[path][0] = not self.diff_model[path][0] + if self.diff_model[path][DM_NOT_HEADER_CHUNK]: + self.diff_model[path][DM_REJECTED] = not self.diff_model[path][DM_REJECTED]     def _diff_tree_button_press(self, widget, event):   # Used to select all of file patch, will be no longer necessary @@ -869,7 +878,7 @@
    def _shelve_selected(self):   # get list of hunks that have not been rejected - hlist = [x[4] for x in self.diff_model if not x[0]] + hlist = [x[DM_CHUNK_ID] for x in self.diff_model if not x[DM_REJECTED]]   if not hlist:   Prompt('Shelve', 'Please select diff chunks to shelve',   self).run()