Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

thgutil, hggtk: split shlib.py into settings, version, and shlib

Cleaned up more imports and fixed a bug in hgemail in the process (it was
writing one settings file and reading another).

Changeset b5fada4be594

Parent fe8a7a1fc323

by Steve Borho

Changes to 18 files · Browse files at b5fada4be594 Showing diff from parent fe8a7a1fc323 Diff from another changeset...

Change 1 of 3 Show Entire File hggtk/​about.py Stacked
 
10
11
12
13
14
15
 
16
17
18
 
45
46
47
48
 
49
50
51
 
55
56
57
58
 
59
60
61
 
10
11
12
 
 
 
13
14
15
16
 
43
44
45
 
46
47
48
49
 
53
54
55
 
56
57
58
59
@@ -10,9 +10,7 @@
 import threading    from thgutil.i18n import _ -from thgutil.hglib import hgversion -from thgutil import shlib -from thgutil import paths +from thgutil import version, paths, hglib    from hggtk import gtklib, hgtk   @@ -45,7 +43,7 @@
  gtklib.set_tortoise_keys(self)     lib_versions = ', '.join([ - "Mercurial-%s" % hgversion, + "Mercurial-%s" % hglib.hgversion,   "Python-%s" % make_version(sys.version_info[0:3]),   "PyGTK-%s" % make_version(gtk.pygtk_version),   "GTK-%s" % make_version(gtk.gtk_version), @@ -55,7 +53,7 @@
    self.set_website("http://bitbucket.org/tortoisehg/stable/")   self.set_name("TortoiseHg") - self.set_version("(version %s)" % shlib.version()) + self.set_version("(version %s)" % version.version())   if hasattr(self, 'set_wrap_license'):   self.set_wrap_license(True)   self.set_copyright("Copyright 2009 TK Soh and others")
 
10
11
12
13
 
14
15
16
17
18
 
49
50
51
52
 
53
54
55
 
10
11
12
 
13
14
 
15
16
17
 
48
49
50
 
51
52
53
54
@@ -10,9 +10,8 @@
   from mercurial import extensions  from thgutil.i18n import _ -from thgutil import shlib +from thgutil import hglib, version  from hggtk.gdialog import GDialog -from hggtk.about import hgversion    class BugReport(GDialog):   """GTK+ based dialog for displaying traceback info to the user in a @@ -49,7 +48,7 @@
  ' tortoisehg-discuss@lists.sourceforge.net or'   ' http://bitbucket.org/tortoisehg/stable/issues\n')   text += _('** Mercurial version (%s). TortoiseHg version (%s)\n') % ( - hgversion, shlib.version()) + hglib.hgversion, version.version())   text += _('** Command: %s\n') % (self.opts['cmd'])   text += _('** CWD: %s\n') % os.getcwd()   extlist = [x[0] for x in extensions.extensions()]
Change 1 of 3 Show Entire File hggtk/​clone.py Stacked
 
11
12
13
14
 
15
16
17
 
25
26
27
28
 
29
30
31
 
70
71
72
73
 
74
75
76
 
11
12
13
 
14
15
16
17
 
25
26
27
 
28
29
30
31
 
70
71
72
 
73
74
75
76
@@ -11,7 +11,7 @@
   from mercurial import ui, util  from thgutil.i18n import _ -from thgutil import shlib +from thgutil import shlib, settings  from hggtk import gdialog, gtklib, hgcmd    class CloneDialog(gtk.Window): @@ -25,7 +25,7 @@
  self.set_title(_('TortoiseHg Clone'))     self.ui = ui.ui() - self._settings = shlib.Settings('clone') + self._settings = settings.Settings('clone')   self._recent_src = self._settings.mrul('src_paths')   self._recent_dest = self._settings.mrul('dest_paths')   @@ -70,7 +70,7 @@
  vbox.pack_start(srcbox, False, False, 2)     # add pre-defined src paths to pull-down list - sync_src = shlib.Settings('synch').mrul('src_paths') + sync_src = settings.Settings('synch').mrul('src_paths')   sympaths = [x[1] for x in self.ui.configitems('paths')]   recent = [x for x in self._recent_src]   syncsrc = [x for x in sync_src]
Change 1 of 1 Show Entire File hggtk/​commit.py Stacked
 
18
19
20
21
22
 
23
24
25
 
18
19
20
 
 
21
22
23
24
@@ -18,8 +18,7 @@
 from mercurial import ui, hg, util, patch    from thgutil.i18n import _ -from thgutil import hglib -from thgutil import shlib +from thgutil import shlib, hglib    from hggtk.status import GStatus, FM_STATUS, FM_CHECKED, FM_PATH_UTF8  from hggtk.status import DM_REJECTED, DM_CHUNK_ID
Change 1 of 2 Show Entire File hggtk/​gdialog.py Stacked
 
20
21
22
23
 
24
25
26
 
124
125
126
127
 
128
129
130
 
20
21
22
 
23
24
25
26
 
124
125
126
 
127
128
129
130
@@ -20,7 +20,7 @@
 from hgext import extdiff    from thgutil.i18n import _ -from thgutil import shlib, hglib, paths +from thgutil import settings, hglib, paths    from hggtk import gtklib   @@ -124,7 +124,7 @@
  self.opts = opts   self.tmproot = None   self.toolbuttons = {} - self.settings = shlib.Settings(self.__class__.__name__) + self.settings = settings.Settings(self.__class__.__name__)   self.init()     ### Following methods are meant to be overridden by subclasses ###
Change 1 of 2 Show Entire File hggtk/​guess.py Stacked
 
16
17
18
19
 
20
21
22
 
46
47
48
49
 
50
51
52
 
16
17
18
 
19
20
21
22
 
46
47
48
 
49
50
51
52
@@ -16,7 +16,7 @@
   from thgutil.i18n import _  from thgutil.hglib import toutf, fromutf, diffexpand, RepoError -from thgutil import shlib, paths, thread2 +from thgutil import shlib, paths, thread2, settings    from hggtk import gtklib   @@ -46,7 +46,7 @@
  self.notify_func = None   path = toutf(os.path.basename(self.root))   self.set_title(_('Detect Copies/Renames in ') + path) - settings = shlib.Settings('guess') + settings = settings.Settings('guess')   dims = settings.get_value('dims', (800, 600))   self.set_default_size(dims[0], dims[1])  
Change 1 of 1 Show Entire File hggtk/​hgcmd.py Stacked
 
11
12
13
14
15
 
16
17
18
 
19
20
21
 
11
12
13
 
 
14
15
 
 
16
17
18
19
@@ -11,11 +11,9 @@
 import Queue    from thgutil.i18n import _ -from thgutil import shlib -from thgutil import hglib +from thgutil import shlib, hglib   -from hggtk import gtklib -from hggtk import hgthread +from hggtk import gtklib, hgthread    class CmdDialog(gtk.Dialog):   def __init__(self, cmdline, progressbar=True, width=520, height=400):
Change 1 of 3 Show Entire File hggtk/​hgemail.py Stacked
 
15
16
17
18
 
19
20
21
 
207
208
209
210
 
211
212
213
 
329
330
331
332
 
333
334
335
 
15
16
17
 
18
19
20
21
 
207
208
209
 
210
211
212
213
 
329
330
331
 
332
333
334
335
@@ -15,7 +15,7 @@
 from mercurial import hg, ui, extensions    from thgutil.i18n import _ -from thgutil import hglib, shlib +from thgutil import hglib, settings    from hggtk import gtklib, dialog, thgconfig, hgcmd   @@ -207,7 +207,7 @@
  for v in history.get_value(cpath):   vlist.append([v])   - history = shlib.Settings('email') + history = settings.Settings('email')   try:   repo = hg.repository(ui.ui(), path=self.root)   self.repo = repo @@ -329,7 +329,7 @@
  return     if not test: - history = shlib.Settings('config_history') + history = settings.Settings('email')   record_new_value('email.to', history, totext)   record_new_value('email.cc', history, cctext)   record_new_value('email.from', history, fromtext)
Change 1 of 1 Show Entire File hggtk/​hginit.py Stacked
 
10
11
12
13
14
 
15
16
17
 
18
19
20
 
10
11
12
 
 
13
14
 
 
15
16
17
18
@@ -10,11 +10,9 @@
 from mercurial import hg, ui, util    from thgutil.i18n import _ -from thgutil import hglib -from thgutil import shlib +from thgutil import hglib, shlib   -from hggtk import dialog -from hggtk import gtklib +from hggtk import dialog, gtklib    class InitDialog(gtk.Window):   """ Dialog to initialize a Mercurial repo """
Change 1 of 1 Show Entire File hggtk/​hgthread.py Stacked
 
11
12
13
14
15
 
16
17
18
 
19
20
21
 
11
12
13
 
 
14
15
 
 
16
17
18
19
@@ -11,11 +11,9 @@
 from mercurial import ui, util    from thgutil.i18n import _ -from thgutil import hglib -from thgutil import thread2 +from thgutil import hglib, thread2   -from hggtk import dialog -from hggtk import gdialog +from hggtk import dialog, gdialog    class GtkUi(ui.ui):   '''
Change 1 of 2 Show Entire File hggtk/​hgtk.py Stacked
 
23
24
25
 
26
27
28
 
555
556
557
558
 
559
560
561
 
23
24
25
26
27
28
29
 
556
557
558
 
559
560
561
562
@@ -23,6 +23,7 @@
   from thgutil.i18n import _  from thgutil import hglib, paths, shlib +from thgutil import version as thgversion    nonrepo_commands = 'userconfig clone debugcomplete init about help version'   @@ -555,7 +556,7 @@
  """output version and copyright information"""   ui.write(_('TortoiseHg Dialogs (version %s), '   'Mercurial (version %s)\n') % - (shlib.version(), util.version())) + (thgversion.version(), hglib.hgversion))   if not ui.quiet:   ui.write(shortlicense)  
Change 1 of 2 Show Entire File hggtk/​recovery.py Stacked
 
10
11
12
 
13
14
15
 
128
129
130
131
132
133
134
 
10
11
12
13
14
15
16
 
129
130
131
 
132
133
134
@@ -10,6 +10,7 @@
 import pango  import Queue  import os +import time    from mercurial import hg, ui   @@ -128,7 +129,6 @@
  self._exec_cmd(cmd, postfunc=self._notify)     def _notify(self, ret, *args): - import time   time.sleep(0.5) # give fs some time to pick up changes   shlib.shell_notify([self.root])  
Change 1 of 2 Show Changes Only hggtk/​synch.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
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
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
 #  # Repository synchronization dialog for TortoiseHg  #  # Copyright (C) 2007 Steve Borho <steve@borho.org>  # Copyright (C) 2007 TK Soh <teekaysoh@gmail.com>  #    import gtk  import gobject  import pango  import Queue  import os  import urllib    from mercurial import hg, ui, extensions, url    from thgutil.i18n import _ -from thgutil import hglib, shlib, paths +from thgutil import hglib, settings, paths    from hggtk import dialog, gtklib, hgthread, history, thgconfig, hgemail    class SynchDialog(gtk.Window):   def __init__(self, repos=[], pushmode=False):   """ Initialize the Dialog. """   gtk.Window.__init__(self, gtk.WINDOW_TOPLEVEL)   gtklib.set_tortoise_icon(self, 'menusynch.ico')   gtklib.set_tortoise_keys(self)     self.root = paths.find_root()   self.selected_path = None   self.hgthread = None     # persistent app data - self._settings = shlib.Settings('synch') + self._settings = settings.Settings('synch')     self.set_default_size(655, 552)     self._paths = self._get_paths()   self.origchangecount = len(self.repo.changelog)     name = self.repo.ui.config('web', 'name') or os.path.basename(self.root)   self.set_title(_('TortoiseHg Synchronize - ') + name)     self.connect('delete-event', self._delete)     # toolbar   self.tbar = gtk.Toolbar()   self.tips = gtk.Tooltips()   self._stop_button = self._toolbutton(gtk.STOCK_STOP,   _('Stop'), self._stop_clicked, tip=_('Stop the hg operation'))   self._stop_button.set_sensitive(False)   tbuttons = [   self._toolbutton(gtk.STOCK_GO_DOWN,   _('Incoming'),   self._incoming_clicked,   tip=_('Display changes that can be pulled'   ' from selected repository')),   self._toolbutton(gtk.STOCK_GOTO_BOTTOM,   _(' Pull '),   self._pull_clicked,   tip=_('Pull changes from selected'   ' repository')),   gtk.SeparatorToolItem(),   self._toolbutton(gtk.STOCK_GO_UP,   _('Outgoing'),   self._outgoing_clicked,   tip=_('Display local changes that will be pushed'   ' to selected repository')),   self._toolbutton(gtk.STOCK_GOTO_TOP,   _('Push'),   self._push_clicked,   tip=_('Push local changes to selected'   ' repository')),   self._toolbutton(gtk.STOCK_GOTO_LAST,   _('Email'),   self._email_clicked,   tip=_('Email local outgoing changes to'   ' one or more recipients')),   gtk.SeparatorToolItem(),   self._stop_button,   gtk.SeparatorToolItem(),   self._toolbutton(gtk.STOCK_PREFERENCES,   _('Configure'),   self._conf_clicked,   tip=_('Configure peer repository paths')),   gtk.SeparatorToolItem(),   ]   for btn in tbuttons:   self.tbar.insert(btn, -1)   vbox = gtk.VBox()   self.add(vbox)   vbox.pack_start(self.tbar, False, False, 2)     # sync target info   targethbox = gtk.HBox()   lbl = gtk.Button(_('Repo:'))   lbl.unset_flags(gtk.CAN_FOCUS)   lbl.connect('clicked', self._btn_remotepath_clicked)   targethbox.pack_start(lbl, False, False)     lbl = gtk.Button(_('Bundle:'))   lbl.unset_flags(gtk.CAN_FOCUS)   lbl.connect('clicked', self._btn_bundlepath_clicked)   targethbox.pack_start(lbl, False, False)     # revisions combo box   self.pathlist = gtk.ListStore(str, str)   self._pathbox = gtk.ComboBoxEntry(self.pathlist, 0)   self._pathtext = self._pathbox.get_child()   cell = gtk.CellRendererText()   self._pathbox.pack_end(cell, False)   self._pathbox.add_attribute(cell, 'text', 1)   targethbox.pack_start(self._pathbox, True, True)     self.fill_path_combo()   defrow = None   defpushrow = None   for i, (path, alias) in enumerate(self.pathlist):   if alias == 'default':   defrow = i   if defpushrow is None:   defpushrow = i   elif alias == 'default-push':   defpushrow = i     if repos:   self._pathtext.set_text(hglib.toutf(repos[0]))   elif defpushrow is not None and pushmode:   self._pathbox.set_active(defpushrow)   elif defrow is not None:   self._pathbox.set_active(defrow)     # support dropping of repos or bundle files   self.drag_dest_set(gtk.DEST_DEFAULT_ALL,   [("text/uri-list", 0, 1)], gtk.gdk.ACTION_COPY)   self.connect('drag_data_received', self._drag_receive)     # create checkbox to disable proxy   self._use_proxy = gtk.CheckButton(_('use proxy server'))   if ui.ui().config('http_proxy', 'host', ''):   self._use_proxy.set_active(True)   else:   self._use_proxy.set_sensitive(False)     frame = gtk.Frame(_('Post pull operation'))   ppvbox = gtk.VBox()   self.nothingradio = gtk.RadioButton(None, _('Nothing'))   self.updateradio = gtk.RadioButton(self.nothingradio, _('Update'))   self.fetchradio = gtk.RadioButton(self.nothingradio, _('Fetch'))   self.rebaseradio = gtk.RadioButton(self.nothingradio, _('Rebase'))   ppvbox.pack_start(self.nothingradio, True, True, 2)   ppvbox.pack_start(self.updateradio, True, True, 2)   ppvbox.pack_start(self.fetchradio, True, True, 2)   ppvbox.pack_start(self.rebaseradio, True, True, 2)   frame.add(ppvbox)   frame.set_border_width(2)     self.expander = expander = gtk.Expander(_('Advanced Options'))   expander.set_expanded(False)   expander.connect_after('activate', self._expanded)   hbox = gtk.HBox()   expander.add(hbox)     leftvbox = gtk.VBox()   leftvbox.pack_start(frame, False, False, 2)   leftvbox.pack_start(self._use_proxy, False, False, 3)     rightvbox = gtk.VBox()   rightvbox.pack_start(targethbox, False, False, 2)   rightvbox.pack_start(expander, True, True, 2)     tophbox = gtk.HBox()   tophbox.pack_start(rightvbox, True, True, 2)   tophbox.pack_start(leftvbox, False, False, 2)   vbox.pack_start(tophbox, False, False, 2)     revvbox = gtk.VBox()   self._reventry = gtk.Entry()   self._cmdentry = gtk.Entry()   self._force = gtk.CheckButton(_('Force pull or push'))   self.tips.set_tip(self._force, _('Run even when remote repository'   ' is unrelated.'))     revhbox = gtk.HBox()   revhbox.pack_start(gtk.Label(_('Target Revision:')), False, False, 2)   revhbox.pack_start(self._reventry, True, True, 2)   reveventbox = gtk.EventBox()   reveventbox.add(revhbox)   self.tips.set_tip(reveventbox, _('A specific revision up to which you'   ' would like to push or pull.'))     cmdhbox = gtk.HBox()   cmdhbox.pack_start(gtk.Label(_('Remote Command:')), False, False, 2)   cmdhbox.pack_start(self._cmdentry, True, True, 2)   cmdeventbox = gtk.EventBox()   cmdeventbox.add(cmdhbox)   self.tips.set_tip(cmdeventbox, _('Name of hg executable on remote'   ' machine.'))     revvbox.pack_start(self._force, False, False, 8)   revvbox.pack_start(reveventbox, True, True, 2)   revvbox.pack_start(cmdeventbox, True, True, 2)   hbox.pack_start(revvbox, True, True, 4)     frame = gtk.Frame(_('Incoming/Outgoing'))   hbox.pack_start(frame, False, False, 2)     self._showpatch = gtk.CheckButton(_('Show Patches'))   self._newestfirst = gtk.CheckButton(_('Show Newest First'))   self._nomerge = gtk.CheckButton(_('Show No Merges'))     iovbox = gtk.VBox()   iovbox.pack_start(self._showpatch, False, False, 2)   iovbox.pack_start(self._newestfirst, False, False, 2)   iovbox.pack_start(self._nomerge, False, False, 2)   frame.add(iovbox)     # hg output window   scrolledwindow = gtk.ScrolledWindow()   scrolledwindow.set_shadow_type(gtk.SHADOW_ETCHED_IN)   scrolledwindow.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)   self.textview = gtk.TextView(buffer=None)   self.textview.set_editable(False)   self.textview.modify_font(pango.FontDescription('Monospace'))   scrolledwindow.add(self.textview)   self.textview.set_editable(False)   self.textview.connect('populate-popup', self._add_to_popup)   self.textbuffer = self.textview.get_buffer()   vbox.pack_start(scrolledwindow, True, True)     self.buttonhbox = gtk.HBox()   self.viewpulled = gtk.Button(_('View pulled revisions'))   self.viewpulled.connect('clicked', self._view_pulled_changes)   self.updatetip = gtk.Button(_('Update to branch tip'))   self.updatetip.connect('clicked', self._update_to_tip)   self.buttonhbox.pack_start(self.viewpulled, False, False, 2)   self.buttonhbox.pack_start(self.updatetip, False, False, 2)   vbox.pack_start(self.buttonhbox, False, False, 2)     self.stbar = gtklib.StatusBar()   vbox.pack_start(self.stbar, False, False, 2)   self.connect('map', self.update_buttons)   self._last_drop_time = None     self.load_settings()   self.update_pull_setting()     def update_pull_setting(self):   ppull = self.repo.ui.config('tortoisehg', 'postpull', 'None')   self.nothingradio.set_active(True)   if ppull == 'update':   self.updateradio.set_active(True)   elif ppull == 'fetch':   self.fetchradio.set_active(True)   elif ppull == 'rebase':   self.rebaseradio.set_active(True)     def fill_path_combo(self):   self.pathlist.clear()   for alias, path in self._paths:   path = url.hidepassword(path)   self.pathlist.append([hglib.toutf(path), hglib.toutf(alias)])     def _drag_receive(self, widget, context, x, y, selection, targetType, time):   if time != self._last_drop_time:   files = selection.get_uris()   gobject.idle_add(self._set_path, files[0])   self._last_drop_time = time     def _set_path(self, uri):   if not uri.startswith('file://'):   return   path = urllib.unquote(uri[7:])   if paths.find_root(path) == path:   self._pathtext.set_text(hglib.toutf(path))   elif not os.path.isdir(path) and path.endswith('.hg'):   self._pathtext.set_text(hglib.toutf(path))     def update_buttons(self, *args):   self.buttonhbox.hide()   try:   # open a new repo, rebase can confuse cached repo   repo = hg.repository(ui.ui(), path=self.root)   except hglib.RepoError:   return   tip = len(repo.changelog)   if self.origchangecount == tip:   self.viewpulled.hide()   else:   self.buttonhbox.show()   self.viewpulled.show()     wc = repo[None]   branchhead = repo.branchtags()[wc.branch()]   parents = repo.parents()   if len(parents) > 1 or parents[0].node() == branchhead:   self.updatetip.hide()   else:   self.buttonhbox.show()   self.updatetip.show()   self.repo = repo     def _view_pulled_changes(self, button):   countpulled = len(self.repo.changelog) - self.origchangecount   opts = {'limit' : countpulled, 'from-synch' : True}   dlg = history.GLog(self.ui, None, None, [], opts)   dlg.display()     def _update_to_tip(self, button):   # execute command and show output on text widget   gobject.timeout_add(10, self.process_queue)   self.write("", False)   cmdline = ['update', '-v']   self.hgthread = hgthread.HgThread(cmdline)   self.hgthread.start()   self.stbar.begin()   self.stbar.set_status_text('hg ' + ' '.join(cmdline))     def _get_paths(self, sort="value"):   """ retrieve symbolic paths """   try:   self.ui = ui.ui()   self.repo = hg.repository(self.ui, path=self.root)   uipaths = self.repo.ui.configitems('paths')   if sort:   if sort == "value":   sortfunc = lambda a,b: cmp(a[1], b[1])   elif sort == "name":   sortfunc = lambda a,b: cmp(a[0], b[0])   else:   raise _("unknown sort key '%s'") % sort   uipaths.sort(sortfunc)   return uipaths   except hglib.RepoError:   return None     def _btn_remotepath_clicked(self, button):   """ select source folder to clone """   dlg = gtk.FileChooserDialog(title=_('Select Repository'),   action=gtk.FILE_CHOOSER_ACTION_SELECT_FOLDER,   buttons=(gtk.STOCK_CANCEL,gtk.RESPONSE_CANCEL,   gtk.STOCK_OPEN,gtk.RESPONSE_OK))   dlg.set_default_response(gtk.RESPONSE_OK)   dlg.set_current_folder(self.root)   response = dlg.run()   if response == gtk.RESPONSE_OK:   self._pathtext.set_text(dlg.get_filename())   dlg.destroy()     def _btn_bundlepath_clicked(self, button):   """ select bundle to read from """   dlg = gtk.FileChooserDialog(title=_('Select Bundle'),   action=gtk.FILE_CHOOSER_ACTION_OPEN,   buttons=(gtk.STOCK_CANCEL,gtk.RESPONSE_CANCEL,   gtk.STOCK_OPEN,gtk.RESPONSE_OK))   dlg.set_default_response(gtk.RESPONSE_OK)   dlg.set_current_folder(self.root)   filefilter = gtk.FileFilter()   filefilter.set_name(_('Bundle (*.hg)'))   filefilter.add_pattern("*.hg")   dlg.add_filter(filefilter)   filefilter = gtk.FileFilter()   filefilter.set_name(_('Bundle (*)'))   filefilter.add_pattern("*")   dlg.add_filter(filefilter)   response = dlg.run()   if response == gtk.RESPONSE_OK:   self._pathtext.set_text(dlg.get_filename())   dlg.destroy()     def should_live(self):   if self._cmd_running():   dialog.error_dialog(self, _('Cannot close now'),   _('command is running'))   return True   else:   self.update_settings()   self._settings.write()   return False     def _delete(self, widget, event):   if not self.should_live():   self.destroy()     def _toolbutton(self, stock, label, handler,   menu=None, userdata=None, tip=None):   if menu:   tbutton = gtk.MenuToolButton(stock)   tbutton.set_menu(menu)   else:   tbutton = gtk.ToolButton(stock)     tbutton.set_label(label)   if tip:   tbutton.set_tooltip(self.tips, tip)   tbutton.connect('clicked', handler, userdata)   return tbutton     def _get_advanced_options(self):   opts = {}   if self._showpatch.get_active():   opts['patch'] = ['--patch']   if self._nomerge.get_active():   opts['no-merges'] = ['--no-merges']   if self._force.get_active():   opts['force'] = ['--force']   if self._newestfirst.get_active():   opts['newest-first'] = ['--newest-first']   remotecmd = self._cmdentry.get_text().strip()   if remotecmd != "":   opts['remotecmd'] = ['--remotecmd', remotecmd]   target_rev = self._reventry.get_text().strip()   if target_rev != "":   opts['rev'] = ['--rev', target_rev]     return opts     def _pull_clicked(self, toolbutton, data=None):   aopts = self._get_advanced_options()   if self.fetchradio.get_active():   cmd = ['fetch', '--message', 'merge']   # load the fetch extensions explicitly   extensions.load(self.ui, 'fetch', None)   else:   cmd = ['pull']   cmd += aopts.get('force', [])   cmd += aopts.get('remotecmd', [])   if self.updateradio.get_active():   cmd.append('--update')   elif self.rebaseradio.get_active():   cmd.append('--rebase')   # load the rebase extensions explicitly   extensions.load(self.ui, 'rebase', None)   cmd += aopts.get('rev', [])   self._exec_cmd(cmd)     def _push_clicked(self, toolbutton, data=None):   aopts = self._get_advanced_options()   cmd = ['push']   cmd += aopts.get('rev', [])   cmd += aopts.get('force', [])   cmd += aopts.get('remotecmd', [])   self._exec_cmd(cmd)     def _conf_clicked(self, toolbutton, data=None):   newpath = hglib.fromutf(self._pathtext.get_text()).strip()   for alias, path in self._paths:   if path == newpath:   newpath = None   break   dlg = thgconfig.ConfigDialog(True)   dlg.show_all()   if newpath:   dlg.new_path(newpath)   else:   dlg.focus_field('tortoisehg.postpull')   dlg.run()   dlg.hide()   self._paths = self._get_paths()   self.fill_path_combo()   self.update_pull_setting()     def _email_clicked(self, toolbutton, data=None):   opts = []   path = hglib.fromutf(self._pathtext.get_text()).strip()   rev = self._get_advanced_options().get('rev')   if path:   opts.extend(['--outgoing', path])   elif not rev:   dialog.info_dialog(self, _('No repository selected'),   _('Select a peer repository to compare with'))   self._pathbox.grab_focus()   return   if rev:   opts.extend(rev)   dlg = hgemail.EmailDialog(self.root, opts)   dlg.set_transient_for(self)   dlg.show_all()   dlg.present()   dlg.set_transient_for(None)     def _incoming_clicked(self, toolbutton, data=None):   aopts = self._get_advanced_options()   cmd = ['incoming']   cmd += aopts.get('rev', [])   cmd += aopts.get('patch', [])   cmd += aopts.get('no-merges', [])   cmd += aopts.get('force', [])   cmd += aopts.get('newest-first', [])   cmd += aopts.get('remotecmd', [])   self._exec_cmd(cmd)     def _outgoing_clicked(self, toolbutton, data=None):   aopts = self._get_advanced_options()   cmd = ['outgoing']   cmd += aopts.get('rev', [])   cmd += aopts.get('patch', [])   cmd += aopts.get('no-merges', [])   cmd += aopts.get('force', [])   cmd += aopts.get('newest-first', [])   cmd += aopts.get('remotecmd', [])   self._exec_cmd(cmd)     def _stop_clicked(self, toolbutton, data=None):   if self._cmd_running():   self.hgthread.terminate()   self._stop_button.set_sensitive(False)     def _exec_cmd(self, cmd):   if self._cmd_running():   dialog.error_dialog(self, _('Cannot run now'),   _('Please try again after the previous command is completed'))   return     self._stop_button.set_sensitive(True)     proxy_host = ui.ui().config('http_proxy', 'host', '')   use_proxy = self._use_proxy.get_active()   text_entry = self._pathbox.get_child()   remote_path = hglib.fromutf(text_entry.get_text()).strip()   for alias, path in self._paths:   if remote_path == alias:   remote_path = path   elif remote_path == url.hidepassword(path):   remote_path = path     cmdline = cmd[:]   cmdline += ['--verbose', '--repository', self.root]   if proxy_host and not use_proxy:   cmdline += ["--config", "http_proxy.host="]   cmdline += [remote_path]     # show command to be executed   self.write("", False)     # execute command and show output on text widget   gobject.timeout_add(10, self.process_queue)   self.hgthread = hgthread.HgThread(cmdline, parent=self)   self.hgthread.start()   self.stbar.begin()   self.stbar.set_status_text('hg ' + ' '.join(cmd + [remote_path]))     self._add_src_to_recent(remote_path)     def _cmd_running(self):   if self.hgthread and self.hgthread.isAlive():   return True   else:   return False     def _add_src_to_recent(self, src):   if os.path.exists(src):   src = os.path.abspath(src)     # save src path to recent list in history (read by clone tool)   self._settings.mrul('src_paths').add(src)   self._settings.write()     # update drop-down list   self.fill_path_combo()     def write(self, msg, append=True):   msg = hglib.toutf(msg)   if append:   enditer = self.textbuffer.get_end_iter()   self.textbuffer.insert(enditer, msg)   self.textview.scroll_to_mark(self.textbuffer.get_insert(), 0)   else:   self.textbuffer.set_text(msg)     def process_queue(self):   """   Handle all the messages currently in the queue (if any).   """   self.hgthread.process_dialogs()   while self.hgthread.getqueue().qsize():   try:   msg = self.hgthread.getqueue().get(0)   self.write(msg)   except Queue.Empty:   pass     if self._cmd_running():   return True   else:   # Update button states   self.update_buttons()   self.stbar.end()   self._stop_button.set_sensitive(False)   if self.hgthread.return_code() is None:   self.write(_('[command interrupted]'))   return False # Stop polling this function     AdvancedDefaults = {   'expander.expanded': False,   '_reventry.text': '',   '_cmdentry.text': '',   '_force.active': False,   '_showpatch.active': False,   '_newestfirst.active': False,   '_nomerge.active': False,}     def _expanded(self, expander):   if not expander.get_expanded():   self.load_settings(SynchDialog.AdvancedDefaults.get)     def load_settings(self, get_value = None):   get_value = get_value or self._settings.get_value   for key, default in SynchDialog.AdvancedDefaults.iteritems():   member, attr = key.split('.')   value = get_value(key, default)   getattr(getattr(self, member), 'set_%s'%attr)(value)     def update_settings(self, set_value = None):   set_value = set_value or self._settings.set_value   for key, default in SynchDialog.AdvancedDefaults.iteritems():   member, attr = key.split('.')   value = getattr(getattr(self, member), 'get_%s'%attr)()   set_value(key, value)     def _add_to_popup(self, textview, menu):   menu_items = (('----', None),   (_('Toggle _Wordwrap'), self._toggle_wordwrap),   )   for label, handler in menu_items:   if label == '----':   menuitem = gtk.SeparatorMenuItem()   else:   menuitem = gtk.MenuItem(label)   if handler:   menuitem.connect('activate', handler)   menu.append(menuitem)   menu.show_all()     def _toggle_wordwrap(self, sender):   if self.textview.get_wrap_mode() != gtk.WRAP_NONE:   self.textview.set_wrap_mode(gtk.WRAP_NONE)   else:   self.textview.set_wrap_mode(gtk.WRAP_WORD)      def run(ui, *pats, **opts):   return SynchDialog(pats, opts.get('pushmode'))
 
14
15
16
17
 
18
19
20
 
412
413
414
415
 
416
417
418
 
14
15
16
 
17
18
19
20
 
412
413
414
 
415
416
417
418
@@ -14,7 +14,7 @@
 from mercurial import hg, ui, util, url, filemerge    from thgutil.i18n import _ -from thgutil import hglib, shlib, paths, iniparse +from thgutil import hglib, settings, paths, iniparse    from hggtk import dialog, gdialog, gtklib, hgcmd   @@ -412,7 +412,7 @@
  self.dirty = False   self.pages = []   self.tooltips = gtk.Tooltips() - self.history = shlib.Settings('thgconfig') + self.history = settings.Settings('thgconfig')     # create pages for each section of configuration file   self.tortoise_frame = self.add_page(notebook, 'TortoiseHG')
Change 1 of 3 Show Entire File hggtk/​visdiff.py Stacked
 
19
20
21
22
 
23
24
25
 
78
79
80
81
 
82
83
84
 
203
204
205
206
 
207
208
209
 
19
20
21
 
22
23
24
25
 
78
79
80
 
81
82
83
84
 
203
204
205
 
206
207
208
209
@@ -19,7 +19,7 @@
 from mercurial import hg, ui, cmdutil, util    from thgutil.i18n import _ -from thgutil import hglib, shlib, paths +from thgutil import hglib, settings, paths    from hggtk import gdialog, gtklib   @@ -78,7 +78,7 @@
    hbox = gtk.HBox()   self.vbox.pack_start(hbox, False, False, 2) - settings = shlib.Settings('visdiff') + settings = settings.Settings('visdiff')   single = settings.get_value('launchsingle', False)   check = gtk.CheckButton(_('Always launch single files'))   check.set_active(single) @@ -203,7 +203,7 @@
  self.launch(*model[0])     def delete_tmproot(self, _, tmproot): - settings = shlib.Settings('visdiff') + settings = settings.Settings('visdiff')   settings.set_value('launchsingle', self.singlecheck.get_active())   settings.write()   shutil.rmtree(tmproot)
Change 1 of 2 Show Entire File thgutil/​settings.py Stacked
copied from thgutil/shlib.py
 
1
2
 
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 
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
 
1
 
2
3
4
5
6
 
7
8
9
 
10
 
 
11
 
12
13
14
 
108
109
110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
@@ -1,19 +1,14 @@
 """ -shlib.py - TortoiseHg shell utilities +settings.py - TortoiseHg dialog settings library   Copyright (C) 2007 TK Soh <teekaysoh@gmail.com>    This software may be used and distributed according to the terms  of the GNU General Public License, incorporated herein by reference. -  """    import os -import sys  import cPickle -import time -from mercurial.i18n import _  from mercurial import util -from mercurial import hg    class SimpleMRUList(object):   def __init__(self, size=10, reflist=[], compact=True): @@ -113,132 +108,3 @@
  if os.path.exists(os.path.dirname(self._path)):   return   os.makedirs(os.path.dirname(self._path)) - -def get_system_times(): - t = os.times() - if t[4] == 0.0: # Windows leaves this as zero, so use time.clock() - t = (t[0], t[1], t[2], t[3], time.clock()) - return t - -def get_tortoise_icon(thgicon): - '''Find a tortoise icon, apply to PyGtk window''' - # The context menu should set this variable - var = os.environ.get('THG_ICON_PATH', None) - paths = var and [ var ] or [] - try: - # Else try relative paths from hggtk, the repository layout - fdir = os.path.dirname(__file__) - paths.append(os.path.join(fdir, '..', 'icons')) - # ... or the unix installer layout - paths.append(os.path.join(fdir, '..', '..', '..', - 'share', 'pixmaps', 'tortoisehg', 'icons')) - paths.append(os.path.join(fdir, '..', '..', '..', '..', - 'share', 'pixmaps', 'tortoisehg', 'icons')) - except NameError: # __file__ is not always available - pass - for p in paths: - path = os.path.join(p, 'tortoise', thgicon) - if os.path.isfile(path): - return path - else: - print _('icon not found'), thgicon - return None - -def version(): - try: - import __version__ - return __version__.version - except ImportError: - return _('unknown') - -if os.name == 'nt': - def shell_notify(paths): - try: - from win32com.shell import shell, shellcon - import pywintypes - except ImportError: - return - dirs = set() - for path in paths: - abspath = os.path.abspath(path) - if not os.path.isdir(abspath): - abspath = os.path.dirname(abspath) - dirs.add(abspath) - # send notifications to deepest directories first - for dir in sorted(dirs, key=len, reverse=True): - try: - pidl, ignore = shell.SHILCreateFromPath(dir, 0) - except pywintypes.com_error: - return - if pidl is None: - continue - shell.SHChangeNotify(shellcon.SHCNE_UPDATEITEM, - shellcon.SHCNF_IDLIST | shellcon.SHCNF_FLUSH, - pidl, None) - - def update_thgstatus(ui, root, wait=False): - '''Rewrite the file .hg/thgstatus - - Caches the information provided by repo.status() in the file - .hg/thgstatus, which can then be read by the overlay shell extension - to display overlay icons for directories. - - The file .hg/thgstatus contains one line for each directory that has - removed, modified or added files (in that order of preference). Each - line consists of one char for the status of the directory (r, m or a), - followed by the relative path of the directory in the repo. If the - file .hg/thgstatus is empty, then the repo's working directory is - clean. - - Specify wait=True to wait until the system clock ticks to the next - second before accessing Mercurial's dirstate. This is useful when - Mercurial's .hg/dirstate contains unset entries (in output of - "hg debugstate"). unset entries happen if .hg/dirstate was updated - within the same second as Mercurial updated the respective file in - the working tree. This happens with a high probability for example - when cloning a repo. The overlay shell extension will display unset - dirstate entries as (potentially false) modified. Specifying wait=True - ensures that there are no unset entries left in .hg/dirstate when this - function exits. - ''' - if wait: - tref = time.time() - tdelta = float(int(tref)) + 1.0 - tref - if (tdelta > 0.0): - time.sleep(tdelta) - repo = hg.repository(ui, root) # a fresh repo object is needed - repostate = repo.status() # will update .hg/dirstate as a side effect - modified, added, removed, deleted = repostate[:4] - dirstatus = {} - def dirname(f): - return '/'.join(f.split('/')[:-1]) - for fn in added: - dirstatus[dirname(fn)] = 'a' - for fn in modified: - dirstatus[dirname(fn)] = 'm' - for fn in removed + deleted: - dirstatus[dirname(fn)] = 'r' - f = open(repo.join("thgstatus"), 'wb') - for dn in sorted(dirstatus): - f.write(dirstatus[dn] + dn + '\n') - f.close() - -else: - def shell_notify(paths): - if not paths: - return - notify = os.environ.get('THG_NOTIFY', '.tortoisehg/notify') - if not os.path.isabs(notify): - notify = os.path.join(os.path.expanduser('~'), notify) - os.environ['THG_NOTIFY'] = notify - if not os.path.isfile(notify): - return - f_notify = open(notify, 'w') - try: - f_notify.write('\n'.join([os.path.abspath(path) for path in paths])) - finally: - f_notify.close() - - def update_thgstatus(*args, **kws): - pass -
Change 1 of 2 Show Entire File thgutil/​shlib.py Stacked
 
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
 
241
242
243
244
 
4
5
6
 
7
8
9
10
 
11
12
 
13
14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
16
17
18
19
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
22
23
 
115
116
117
 
@@ -4,146 +4,20 @@
   This software may be used and distributed according to the terms  of the GNU General Public License, incorporated herein by reference. -  """    import os  import sys -import cPickle  import time  from mercurial.i18n import _ -from mercurial import util  from mercurial import hg   -class SimpleMRUList(object): - def __init__(self, size=10, reflist=[], compact=True): - self._size = size - self._list = reflist - if compact: - self.compact() - - def __iter__(self): - for elem in self._list: - yield elem - - def add(self, val): - if val in self._list: - self._list.remove(val) - self._list.insert(0, val) - self.flush() - - def get_size(self): - return self._size - - def set_size(self, size): - self._size = size - self.flush() - - def flush(self): - while len(self._list) > self._size: - del self._list[-1] - - def compact(self): - ''' remove duplicate in list ''' - newlist = [] - for v in self._list: - if v not in newlist: - newlist.append(v) - self._list[:] = newlist - - -class Settings(object): - def __init__(self, appname, path=None): - self._appname = appname - self._data = {} - self._path = path and path or self._get_path(appname) - self._audit() - self.read() - - def get_value(self, key, default=None, create=False): - if key in self._data: - return self._data[key] - elif create: - self._data[key] = default - return default - - def set_value(self, key, value): - self._data[key] = value - - def mrul(self, key, size=10): - ''' wrapper method to create a most-recently-used (MRU) list ''' - ls = self.get_value(key, [], True) - ml = SimpleMRUList(size=size, reflist=ls) - return ml - - def get_keys(self): - return self._data.keys() - - def get_appname(self): - return self._appname - - def read(self): - self._data.clear() - if os.path.exists(self._path): - try: - f = file(self._path, 'rb') - self._data = cPickle.loads(f.read()) - f.close() - except Exception: - pass - - def write(self): - self._write(self._path, self._data) - - def _write(self, appname, data): - s = cPickle.dumps(data) - f = util.atomictempfile(appname, 'wb', None) - f.write(s) - f.rename() - - def _get_path(self, appname): - if os.name == 'nt': - return os.path.join(os.environ.get('APPDATA'), 'TortoiseHg', - appname) - else: - return os.path.join(os.path.expanduser('~'), '.tortoisehg', - appname) - - def _audit(self): - if os.path.exists(os.path.dirname(self._path)): - return - os.makedirs(os.path.dirname(self._path)) -  def get_system_times():   t = os.times()   if t[4] == 0.0: # Windows leaves this as zero, so use time.clock()   t = (t[0], t[1], t[2], t[3], time.clock())   return t   -def get_tortoise_icon(thgicon): - '''Find a tortoise icon, apply to PyGtk window''' - # The context menu should set this variable - var = os.environ.get('THG_ICON_PATH', None) - paths = var and [ var ] or [] - try: - # Else try relative paths from hggtk, the repository layout - fdir = os.path.dirname(__file__) - paths.append(os.path.join(fdir, '..', 'icons')) - # ... or the unix installer layout - paths.append(os.path.join(fdir, '..', '..', '..', - 'share', 'pixmaps', 'tortoisehg', 'icons')) - paths.append(os.path.join(fdir, '..', '..', '..', '..', - 'share', 'pixmaps', 'tortoisehg', 'icons')) - except NameError: # __file__ is not always available - pass - for p in paths: - path = os.path.join(p, 'tortoise', thgicon) - if os.path.isfile(path): - return path - else: - print _('icon not found'), thgicon - return None -  def version():   try:   import __version__ @@ -241,4 +115,3 @@
    def update_thgstatus(*args, **kws):   pass -
Change 1 of 1 Show Entire File thgutil/​version.py Stacked
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@@ -0,0 +1,18 @@
+""" +version.py - TortoiseHg version + Copyright (C) 2009 Steve Borho <steve@borho.org> + +This software may be used and distributed according to the terms +of the GNU General Public License, incorporated herein by reference. +""" + +from thgutil.i18n import _ + +def version(): + try: + import __version__ + return __version__.version + except ImportError: + return _('unknown') + +