Kiln » TortoiseHg » TortoiseHg
Clone URL:  
thgconfig.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
#_ # Configuration dialog for TortoiseHg and Mercurial # # Copyright (C) 2008-9 Steve Borho <steve@borho.org> # Copyright (C) 2007 TK Soh <teekaysoh@gmail.com> # import gtk import gobject import os from mercurial.i18n import _ from mercurial import hg, ui, util from dialog import error_dialog, question_dialog from hglib import RepoError, toutf, fromutf import shlib import iniparse _unspecstr = _('<unspecified>') _tortoise_info = ( (_('3-way Merge Tool'), 'ui.merge', [], _('Graphical merge program for resolving merge conflicts. If left' ' unspecified, Mercurial will use the first applicable tool it finds' ' on your system or use its internal merge tool that leaves conflict' ' markers in place.')), (_('Visual Diff Command'), 'tortoisehg.vdiff', [], _('Specify visual diff tool; must be an extdiff command')), (_('Visual Editor'), 'tortoisehg.editor', [], _('Specify the visual editor used to view files, etc')), (_('CLI Editor'), 'ui.editor', [], _('The editor to use during a commit and other' ' instances where Mercurial needs multiline input from' ' the user. Only used by command line interface commands.')), (_('Tab Width'), 'tortoisehg.tabwidth', [], _('Specify the number of spaces that tabs expand to in various' ' TortoiseHG windows.' ' Default: Not expanded')), (_('Bottom Diffs'), 'gtools.diffbottom', ['False', 'True'], _('Show the diff panel below the file list in status, shelve, and' ' commit dialogs.' ' Default: False (show diffs to right of file list)'))) shellcmds = '''about add clone commit datamine init log merge recovery shelve synch status userconfig repoconfig guess remove rename revert serve update vdiff'''.split() _commit_info = ( (_('Username'), 'ui.username', [], _('Name associated with commits')), (_('External Commit Tool'), 'tortoisehg.extcommit', ['None', 'qct'], _('Select commit tool launched by TortoiseHg. (Qct is no longer' ' distributed as part of TortoiseHG.)' ' Default: None (use the builtin tool)'))) _log_info = ( (_('Author Coloring'), 'tortoisehg.authorcolor', ['False', 'True'], _('Color changesets by author name. If not enabled,' ' the changes are colored green for merge, red for' ' non-trivial parents, black for normal.' ' Default: False')), (_('Long Summary'), 'tortoisehg.longsummary', ['False', 'True'], _('If true, concatenate multiple lines of changeset summary' ' until they reach 80 characters.' ' Default: False')), (_('Log Batch Size'), 'tortoisehg.graphlimit', ['500'], _('The number of revisions to read and display in the' ' changelog viewer in a single batch.' ' Default: 500')), (_('Copy Hash'), 'tortoisehg.copyhash', ['False', 'True'], _('Allow the changelog viewer to copy the changeset hash' ' of the currently selected changeset into the clipboard.' ' Default: False'))) _paths_info = ( ('default', 'paths.default', [], _('Directory or URL to use when pulling, if no source is specified.' ' Default is set to the repository from which the repository' ' was cloned.')), ('default-push', 'paths.default-push', [], _('Optional. Directory or URL to use when pushing, if no' ' destination is specified.'))) _web_info = ( (_('Name'), 'web.name', ['unknown'], _('Repository name to use in the web interface.' ' Default is the working directory.')), (_('Description'), 'web.description', ['unknown'], _("Textual description of the repository's purpose or" " contents.")), (_('Contact'), 'web.contact', ['unknown'], _('Name or email address of the person in charge of the' ' repository.')), (_('Style'), 'web.style', ['paper', 'monoblue', 'coal', 'spartan', 'gitweb', 'old'], _('Which template map style to use')), (_('Archive Formats'), 'web.allow_archive', ['bz2', 'gz', 'zip'], _('Comma separated list of archive formats allowed for' ' downloading')), (_('Port'), 'web.port', ['8000'], _('Port to listen on')), (_('Push Requires SSL'), 'web.push_ssl', ['True', 'False'], _('Whether to require that inbound pushes be transported' ' over SSL to prevent password sniffing.')), (_('Stripes'), 'web.stripes', ['1', '0'], _('How many lines a "zebra stripe" should span in multiline output.' ' Default is 1; set to 0 to disable.')), (_('Max Files'), 'web.maxfiles', ['10'], _('Maximum number of files to list per changeset.')), (_('Max Changes'), 'web.maxfiles', ['10'], _('Maximum number of changes to list on the changelog.')), (_('Allow Push'), 'web.allow_push', ['*'], _('Whether to allow pushing to the repository. If empty or not' ' set, push is not allowed. If the special value "*", any remote' ' user can push, including unauthenticated users. Otherwise, the' ' remote user must have been authenticated, and the authenticated' ' user name must be present in this list (separated by whitespace' ' or ","). The contents of the allow_push list are examined after' ' the deny_push list.')), (_('Deny Push'), 'web.deny_push', ['*'], _('Whether to deny pushing to the repository. If empty or not set,' ' push is not denied. If the special value "*", all remote users' ' are denied push. Otherwise, unauthenticated users are all' ' denied, and any authenticated user name present in this list' ' (separated by whitespace or ",") is also denied. The contents' ' of the deny_push list are examined before the allow_push list.')), (_('Encoding'), 'web.encoding', ['UTF-8'], _('Character encoding name'))) _proxy_info = ( (_('Host'), 'http_proxy.host', [], _('Host name and (optional) port of proxy server, for' ' example "myproxy:8000"')), (_('Bypass List'), 'http_proxy.no', [], _('Optional. Comma-separated list of host names that' ' should bypass the proxy')), (_('Password'), 'http_proxy.passwd', [], _('Optional. Password to authenticate with at the' ' proxy server')), (_('User'), 'http_proxy.user', [], _('Optional. User name to authenticate with at the' ' proxy server'))) _email_info = ( (_('From'), 'email.from', [], _('Email address to use in the "From" header and for the SMTP envelope')), (_('To'), 'email.to', [], _('Comma-separated list of recipient email addresses')), (_('Cc'), 'email.cc', [], _('Comma-separated list of carbon copy recipient email' ' addresses')), (_('Bcc'), 'email.bcc', [], _('Comma-separated list of blind carbon copy recipient' ' email addresses')), (_('method'), 'email.method', ['smtp'], _('Optional. Method to use to send email messages. If value is "smtp" (default),' ' use SMTP (configured below). Otherwise, use as name of program to run that' ' acts like sendmail (takes "-f" option for sender, list of recipients on' ' command line, message on stdin). Normally, setting this to "sendmail" or' ' "/usr/sbin/sendmail" is enough to use sendmail to send messages.')), (_('SMTP Host'), 'smtp.host', [], _('Host name of mail server')), (_('SMTP Port'), 'smtp.port', ['25'], _('Port to connect to on mail server.' ' Default: 25')), (_('SMTP TLS'), 'smtp.tls', ['False', 'True'], _('Connect to mail server using TLS.' ' Default: False')), (_('SMTP Username'), 'smtp.username', [], _('Username to authenticate to mail server with')), (_('SMTP Password'), 'smtp.password', [], _('Password to authenticate to mail server with')), (_('Local Hostname'), 'smtp.local_hostname', [], _('Hostname the sender can use to identify itself to the mail server.'))) _diff_info = ( (_('Git Format'), 'diff.git', ['False', 'True'], _('Use git extended diff header format.' ' Default: False')), (_('No Dates'), 'diff.nodates', ['False', 'True'], _('Do not include modification dates in diff headers.' ' Default: False')), (_('Show Function'), 'diff.showfunc', ['False', 'True'], _('Show which function each change is in.' ' Default: False')), (_('Ignore White Space'), 'diff.ignorews', ['False', 'True'], _('Ignore white space when comparing lines.' ' Default: False')), (_('Ignore WS Amount'), 'diff.ignorewsamount', ['False', 'True'], _('Ignore changes in the amount of white space.' ' Default: False')), (_('Ignore Blank Lines'), 'diff.ignoreblanklines', ['False', 'True'], _('Ignore changes whose lines are all blank.' ' Default: False'))) class ConfigDialog(gtk.Dialog): def __init__(self, root='', configrepo=False, focusfield=None, newpath=None): """ Initialize the Dialog. """ gtk.Dialog.__init__(self, parent=None, flags=0, buttons=(gtk.STOCK_CLOSE, gtk.RESPONSE_CLOSE)) self.ui = ui.ui() try: repo = hg.repository(self.ui, path=root) except RepoError: repo = None if configrepo: error_dialog(self, _('No repository found'), _('no repo at ') + root) self.response(gtk.RESPONSE_CANCEL) # Catch close events #self.set_default_size(700, 300) self.connect('delete-event', self._delete) self.connect('response', self._response) if configrepo: self.ui = repo.ui name = repo.ui.config('web', 'name') or os.path.basename(repo.root) self.rcpath = [os.sep.join([repo.root, '.hg', 'hgrc'])] self.set_title(_('TortoiseHg Configure Repository - ') + name) shlib.set_tortoise_icon(self, 'settings_repo.ico') self.root = repo.root else: self.rcpath = util.user_rcpath() self.set_title(_('TortoiseHg Configure User-Global Settings')) shlib.set_tortoise_icon(self, 'settings_user.ico') self.root = None self.ini = self.load_config(self.rcpath) # Create a new notebook, place the position of the tabs self.notebook = notebook = gtk.Notebook() notebook.set_tab_pos(gtk.POS_TOP) self.vbox.pack_start(notebook, True, True) notebook.show() self.show_tabs = True self.show_border = True self._btn_apply = gtk.Button(_('Apply')) self._btn_apply.connect('clicked', self._apply_clicked) self.action_area.pack_end(self._btn_apply) self.dirty = False self.pages = [] self.tooltips = gtk.Tooltips() self.history = shlib.Settings('config_history') # create pages for each section of configuration file self.tortoise_frame = self.add_page(notebook, 'TortoiseHG') self.fill_frame(self.tortoise_frame, _tortoise_info) self.commit_frame = self.add_page(notebook, _('Commit')) self.fill_frame(self.commit_frame, _commit_info) self.log_frame = self.add_page(notebook, _('Changelog')) self.fill_frame(self.log_frame, _log_info) self.paths_frame = self.add_page(notebook, _('Paths')) vbox = self.fill_frame(self.paths_frame, _paths_info) self.fill_path_frame(vbox) self.web_frame = self.add_page(notebook, _('Web')) self.fill_frame(self.web_frame, _web_info) self.proxy_frame = self.add_page(notebook, _('Proxy')) self.fill_frame(self.proxy_frame, _proxy_info) self.email_frame = self.add_page(notebook, _('Email')) self.fill_frame(self.email_frame, _email_info) self.diff_frame = self.add_page(notebook, _('Diff')) self.fill_frame(self.diff_frame, _diff_info) if not configrepo and os.name == 'nt': self.shellframe = self.add_page(notebook, _('Shell Ext')) self.fill_shell_frame(self.shellframe) # Force dialog into clean state in the beginning self._refresh_vlist() self._btn_apply.set_sensitive(False) self.dirty = False def _delete(self, widget, event): return True def _response(self, widget, response_id): if self.dirty: if question_dialog(self, _('Quit without saving?'), _('Yes to abandon changes, No to continue')) != gtk.RESPONSE_YES: widget.emit_stop_by_name('response') def focus_field(self, focusfield): '''Set page and focus to requested datum''' for page_num, (vbox, info, widgets) in enumerate(self.pages): for w, (label, cpath, values, tip) in enumerate(info): if cpath == focusfield: self.notebook.set_current_page(page_num) widgets[w].grab_focus() return def on_alias_edit(self, cell, path, new_text): dirty = self.pathdata[path][0] != new_text self.pathdata[path][0] = new_text if dirty: self.dirty_event() def on_path_edit(self, cell, path, new_text): dirty = self.pathdata[path][1] != new_text self.pathdata[path][1] = new_text if dirty: self.dirty_event() def new_path(self, newpath): '''Add a new path to [paths], give default name, focus''' i = self.pathdata.insert_before(None, None) self.pathdata.set_value(i, 0, 'new') self.pathdata.set_value(i, 1, '%s' % toutf(newpath)) self.pathtree.get_selection().select_iter(i) self.pathtree.set_cursor( self.pathdata.get_path(i), self.pathtree.get_column(0), start_editing=True) self.refresh_path_list() # This method may be called from hggtk.sync, so ensure page is visible self.notebook.set_current_page(3) self.dirty_event() def dirty_event(self, *args): if not self.dirty: self._btn_apply.set_sensitive(True) self.dirty = True def _add_path(self, *args): self.new_path('http://') def _remove_path(self, *args): selection = self.pathtree.get_selection() if not selection.count_selected_rows(): return model, path = selection.get_selected() next_iter = self.pathdata.iter_next(path) del self.pathdata[path] if next_iter: selection.select_iter(next_iter) elif len(self.pathdata): selection.select_path(len(self.pathdata) - 1) self.refresh_path_list() self.dirty_event() def _test_path(self, *args): selection = self.pathtree.get_selection() if not selection.count_selected_rows(): return if not self.root: error_dialog(self, _('No Repository Found'), _('Path testing cannot work without a repository')) return model, path = selection.get_selected() testpath = fromutf(model[path][1]) if not testpath: return if testpath[0] == '~': testpath = os.path.expanduser(testpath) cmdline = ['hg', 'incoming', '--repository', self.root, '--verbose', testpath] from hgcmd import CmdDialog dlg = CmdDialog(cmdline) dlg.run() dlg.hide() def _pathtree_changed(self, sel): self.refresh_path_list() def refresh_path_list(self): """Update sensitivity of buttons""" path_selected = ( len(self.pathdata) > 0 and self.pathtree.get_selection().count_selected_rows() > 0) repo_available = self.root is not None self._delpathbutton.set_sensitive(path_selected) self._testpathbutton.set_sensitive(repo_available and path_selected) def fill_path_frame(self, vbox): # Initialize data model for 'Paths' tab self.pathdata = gtk.ListStore( gobject.TYPE_STRING, gobject.TYPE_STRING) if 'paths' in list(self.ini): for name in self.ini['paths']: if name in ('default', 'default-push'): continue path = self.ini['paths'][name] i = self.pathdata.insert_before(None, None) self.pathdata.set_value(i, 0, "%s" % toutf(name)) self.pathdata.set_value(i, 1, "%s" % toutf(path)) # Define view model for 'Paths' tab self.pathtree = gtk.TreeView() self.pathtree.set_model(self.pathdata) self.pathtree.set_enable_search(False) self.pathtree.connect("cursor-changed", self._pathtree_changed) renderer = gtk.CellRendererText() renderer.set_property('editable', True) renderer.connect('edited', self.on_alias_edit) column = gtk.TreeViewColumn(_('Alias'), renderer, text=0) self.pathtree.append_column(column) renderer = gtk.CellRendererText() renderer.set_property('editable', True) renderer.connect('edited', self.on_path_edit) column = gtk.TreeViewColumn(_('Repository Path'), renderer, text=1) self.pathtree.append_column(column) scrolledwindow = gtk.ScrolledWindow() scrolledwindow.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC) scrolledwindow.add(self.pathtree) vbox.add(scrolledwindow) buttonbox = gtk.HBox() self.addButton = gtk.Button(_('_Add')) self.addButton.set_use_underline(True) self.addButton.connect('clicked', self._add_path) buttonbox.pack_start(self.addButton) self._delpathbutton = gtk.Button(_('_Remove')) self._delpathbutton.set_use_underline(True) self._delpathbutton.connect('clicked', self._remove_path) buttonbox.pack_start(self._delpathbutton) self._testpathbutton = gtk.Button(_('_Test')) self._testpathbutton.set_use_underline(True) self._testpathbutton.connect('clicked', self._test_path) buttonbox.pack_start(self._testpathbutton) vbox.pack_start(buttonbox, False, False, 4) self.refresh_path_list() def set_help(self, widget, event, buffer, tooltip): text = ' '.join(tooltip.splitlines()) buffer.set_text(text) def fill_shell_frame(self, frame): 'Fill special tab for shell extension configurations' vbox = gtk.VBox() frame.add(vbox) # Text entry for supported applications hbox = gtk.HBox() vbox.pack_start(hbox, False, False, 2) lbl = gtk.Label(_('Supported applications:')) hbox.pack_start(lbl, False, False, 10) self.shellapps = gtk.Entry() hbox.pack_start(self.shellapps, True, True, 10) ovframe = gtk.Frame(_('Overlay configuration')) ovframe.set_border_width(10) vbox.pack_start(ovframe, False, False, 2) ovcvbox = gtk.VBox() ovframe.add(ovcvbox) self.ovenable = gtk.CheckButton(_('Enable overlays')) ovcvbox.pack_start(self.ovenable, False, False, 2) self.lclonly = gtk.CheckButton(_('Local disks only')) ovcvbox.pack_start(self.lclonly, False, False, 2) self.ovdebug = gtk.CheckButton(_('Enable debug logging')) ovcvbox.pack_start(self.ovdebug, False, False, 2) table = gtk.Table(2, 2, False) ovcvbox.pack_start(table, False, False, 2) # Text entry for overlay include path lbl = gtk.Label(_('Include path:')) lbl.set_alignment(1.0, 0.0) self.ovinclude = gtk.Entry() table.attach(lbl, 0, 1, 0, 1, gtk.FILL, 0, 4, 3) table.attach(self.ovinclude, 1, 2, 0, 1, gtk.FILL|gtk.EXPAND, 0, 4, 3) # Text entry for overlay include path lbl = gtk.Label(_('Exclude path:')) lbl.set_alignment(1.0, 0.0) self.ovexclude = gtk.Entry() table.attach(lbl, 0, 1, 1, 2, gtk.FILL, 0, 4, 3) table.attach(self.ovexclude, 1, 2, 1, 2, gtk.FILL|gtk.EXPAND, 0, 4, 3) cmframe = gtk.Frame(_('Context menu configuration')) cmframe.set_border_width(10) vbox.pack_start(cmframe, False, False, 2) cmcvbox = gtk.VBox() cmframe.add(cmcvbox) descframe = gtk.Frame(_('Description')) descframe.set_border_width(10) desctext = gtk.TextView() desctext.set_wrap_mode(gtk.WRAP_WORD) desctext.set_editable(False) scrolledwindow = gtk.ScrolledWindow() scrolledwindow.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC) scrolledwindow.add(desctext) descframe.add(scrolledwindow) vbox.pack_start(gtk.Label(), True, True, 2) vbox.pack_start(descframe, False, False, 2) self.cmdebug = gtk.CheckButton(_('Enable debug logging')) cmcvbox.pack_start(self.cmdebug, False, False, 2) lbl = gtk.Label(_('Promote menu items to the top menu')) cmcvbox.pack_start(lbl, False, False, 2) rows = (len(shellcmds) + 2) / 3 table = gtk.Table(rows, 3, False) cmcvbox.pack_start(table, False, False, 2) for i, cmd in enumerate(shellcmds): row, col = divmod(i, 3) check = gtk.CheckButton(cmd) table.attach(check, col, col+1, row, row+1, gtk.FILL|gtk.EXPAND, 0, 4, 3) tooltip = _('Promote menu item "%s" to top menu') % cmd check.connect('focus-in-event', self.set_help, desctext.get_buffer(), tooltip) tooltip = _('A comma (,) separated list of applications that' ' the shell extensions will support. If unspecified,' ' the default is explorer.exe') self.shellapps.connect('focus-in-event', self.set_help, desctext.get_buffer(), tooltip) tooltip = _('Enable/Disable the overlay icons globally') self.ovenable.connect('focus-in-event', self.set_help, desctext.get_buffer(), tooltip) tooltip = _('Only use overlays on local disks') self.lclonly.connect('focus-in-event', self.set_help, desctext.get_buffer(), tooltip) tooltip = _('Enable the overlay code to emit debug messages' ' that the TortoiseHg tracelog application can receive.') self.ovdebug.connect('focus-in-event', self.set_help, desctext.get_buffer(), tooltip) tooltip = _('A list of semicolon (;) separated paths that the' ' overlays will respect. This include filter is applied' ' after the local disk check. If unspecified, the default' ' is to display in all repositories.') self.ovinclude.connect('focus-in-event', self.set_help, desctext.get_buffer(), tooltip) tooltip = _('A list of semicolon (;) separated paths that are' ' excluded by the overlay system. This exclude filter is' ' applied after the local disk check and include filters.' ' So there is no need to exclude paths outside of your' ' include filter. Default is no exclusion.') self.ovexclude.connect('focus-in-event', self.set_help, desctext.get_buffer(), tooltip) tooltip = _('Enable the context menu code to emit debug messages' ' that the TortoiseHg tracelog application can receive.') self.cmdebug.connect('focus-in-event', self.set_help, desctext.get_buffer(), tooltip) def fill_frame(self, frame, info): widgets = [] descframe = gtk.Frame(_('Description')) descframe.set_border_width(10) desctext = gtk.TextView() desctext.set_wrap_mode(gtk.WRAP_WORD) desctext.set_editable(False) scrolledwindow = gtk.ScrolledWindow() scrolledwindow.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC) scrolledwindow.add(desctext) descframe.add(scrolledwindow) vbox = gtk.VBox() table = gtk.Table(len(info), 2, False) vbox.pack_start(table, False, False, 2) if info != _paths_info: vbox.pack_start(gtk.Label(), True, True, 2) vbox.pack_start(descframe, False, False, 2) frame.add(vbox) for row, (label, cpath, values, tooltip) in enumerate(info): vlist = gtk.ListStore(str, bool) combo = gtk.ComboBoxEntry(vlist, 0) combo.connect('changed', self.dirty_event) combo.child.connect('focus-in-event', self.set_help, desctext.get_buffer(), tooltip) combo.set_row_separator_func(lambda model, path: model[path][1]) combo.child.set_width_chars(40) widgets.append(combo) lbl = gtk.Label(label + ':') lbl.set_alignment(1.0, 0.0) eventbox = gtk.EventBox() eventbox.set_visible_window(False) eventbox.add(lbl) table.attach(eventbox, 0, 1, row, row+1, gtk.FILL, 0, 4, 3) table.attach(combo, 1, 2, row, row+1, gtk.FILL|gtk.EXPAND, 0, 4, 3) self.tooltips.set_tip(eventbox, tooltip) self.pages.append((vbox, info, widgets)) return vbox def _refresh_vlist(self): for vbox, info, widgets in self.pages: for row, (label, cpath, values, tooltip) in enumerate(info): combo = widgets[row] vlist = combo.get_model() vlist.clear() # Get currently configured value from this config file curvalue = self.get_ini_config(cpath) if cpath == 'tortoisehg.vdiff': # Special case, add extdiff.cmd.* to possible values for name, value in self.ui.configitems('extdiff'): if name.startswith('cmd.') and name[4:] not in values: values.append(name[4:]) elif cpath == 'ui.merge': # Special case, add [merge-tools] to possible values try: from mercurial import filemerge tools = [] for key, value in self.ui.configitems('merge-tools'): t = key.split('.')[0] if t not in tools: tools.append(t) for t in tools: # Ensure the tool is installed if filemerge._findtool(self.ui, t): values.append(t) except ImportError: pass currow = None vlist.append([_unspecstr, False]) if values: vlist.append([_('Suggested'), True]) for v in values: vlist.append([toutf(v), False]) if v == curvalue: currow = len(vlist) - 1 if cpath in self.history.get_keys(): separator = False for v in self.history.mrul(cpath): if v in values: continue if not separator: vlist.append([_('History'), True]) separator = True vlist.append([toutf(v), False]) if v == curvalue: currow = len(vlist) - 1 if curvalue is None: combo.set_active(0) elif currow is None: combo.child.set_text(toutf(curvalue)) else: combo.set_active(currow) def add_page(self, notebook, tab): frame = gtk.Frame() frame.set_border_width(10) frame.show() label = gtk.Label(tab) notebook.append_page(frame, label) return frame def get_ini_config(self, cpath): '''Retrieve a value from the parsed config file''' try: # Presumes single section/key level depth section, key = cpath.split('.', 1) return self.ini[section][key] except KeyError: return None def load_config(self, rcpath): for fn in rcpath: if os.path.exists(fn): break else: fn = rcpath[0] f = open(fn, 'w') f.write(_('# Generated by tortoisehg-config\n')) f.close() self.fn = fn return iniparse.INIConfig(file(fn), optionxformvalue=None) def record_new_value(self, cpath, newvalue, keephistory=True): section, key = cpath.split('.', 1) if newvalue == _unspecstr: try: del self.ini[section][key] except KeyError: pass return if section not in list(self.ini): self.ini.new_namespace(section) self.ini[section][key] = newvalue if not keephistory: return if cpath not in self.history.get_keys(): self.history.set_value(cpath, []) elif newvalue in self.history.get_keys(): self.history.get_value(cpath).remove(newvalue) self.history.mrul(cpath).add(newvalue) def _apply_clicked(self, *args): # Reload history, since it may have been modified externally self.history.read() # flush changes on paths page if len(self.pathdata): refreshlist = [] for row in self.pathdata: name = fromutf(row[0]) path = fromutf(row[1]) cpath = '.'.join(['paths', name]) self.record_new_value(cpath, path, False) refreshlist.append(name) if 'paths' not in list(self.ini): self.ini.new_namespace('paths') for name in list(self.ini.paths): if name not in refreshlist: del self.ini['paths'][name] elif 'paths' in list(self.ini): for name in list(self.ini.paths): if name not in ('default', 'default-push'): del self.ini['paths'][name] # Flush changes on all pages for vbox, info, widgets in self.pages: for w, (label, cpath, values, tip) in enumerate(info): newvalue = fromutf(widgets[w].child.get_text()) self.record_new_value(cpath, newvalue) self.history.write() self._refresh_vlist() try: f = open(self.fn, "w") f.write(str(self.ini)) f.close() except IOError, e: error_dialog(self, _('Unable to write configuration file'), str(e)) self._btn_apply.set_sensitive(False) self.dirty = False return 0 def run(root='', cmdline=[], files=[], **opts): dialog = ConfigDialog(root, bool(files)) dialog.show_all() dialog.connect('response', gtk.main_quit) if '--focusfield' in cmdline: field = cmdline[cmdline.index('--focusfield')+1] dialog.focus_field(field) gtk.gdk.threads_init() gtk.gdk.threads_enter() gtk.main() gtk.gdk.threads_leave() if __name__ == "__main__": # example command lines # python hggtk/thgconfig.py --focusfield ui.editor # python hggtk/thgconfig.py --focusfield paths.default --configrepo import sys opts = {} opts['root'] = os.getcwd() opts['cmdline'] = sys.argv opts['files'] = '--configrepo' in sys.argv and ['.'] or [] run(**opts)