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

merge with stable

Changeset ae3e57241d37

Parents 4baaab6cd08d

Parents ed5d831928be

by Steve Borho

Changes to 8 files · Browse files at ae3e57241d37 Showing diff from parent 4baaab6cd08d ed5d831928be Diff from another changeset...

 
187
188
189
190
 
191
192
193
 
187
188
189
 
190
191
192
193
@@ -187,7 +187,7 @@
   packages = ['mercurial', 'mercurial.hgweb', 'hgext', 'hgext.convert',   'hgext.highlight', 'hgext.zeroconf', 'hggtk', - 'hggtk.logview', 'thgutil', 'thgutil.iniparse'] + 'hggtk.logview', 'thgutil', 'iniparse']    try:   import msvcrt
Show Entire File hggtk/​hgtk.py Stacked
(No changes)
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
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
 
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
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
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
 # thgconfig.py - Configuration dialog for TortoiseHg and Mercurial  #  # Copyright 2007 Steve Borho <steve@borho.org>  #  # This software may be used and distributed according to the terms of the  # GNU General Public License version 2, incorporated herein by reference.    import gtk  import os +import sys  import re  import urlparse  import threading    from mercurial import hg, ui, util, url, filemerge    from thgutil.i18n import _ -from thgutil import hglib, settings, paths, iniparse +from thgutil import hglib, settings, paths    from hggtk import dialog, gdialog, gtklib, hgcmd    _unspecstr = _('<unspecified>')  _unspeclocalstr = hglib.fromutf(_unspecstr)    _pwfields = ('http_proxy.passwd', 'smtp.password')    _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. Chose internal:merge to force conflict markers,'   ' internal:prompt to always select local or other, or internal:dump'   ' to leave files in the working directory for manual merging')),   (_('Visual Diff Command'), 'tortoisehg.vdiff', [],   _('Specify visual diff tool; must be an extdiff command')),   (_('Skip Diff Window'), 'tortoisehg.vdiffnowin', ['False', 'True'],   _("Bypass the builtin visual diff dialog and directly use your"   " visual diff tool's directory diff feature. Only enable this"   " feature if you know your diff tool has a valid extdiff"   " configuration. Default: False")),   (_('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')),   (_('Max Diff Size'), 'tortoisehg.maxdiff', ['1024', '0'],   _('The maximum size file (in KB) that TortoiseHg will '   'show changes for in the changelog, status, and commit windows.'   ' A value of zero implies no limit. Default: 1024 (1MB)')),   (_('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)')),   (_('Capture Stderr'), 'tortoisehg.stderrcapt', ['True', 'False'],   _('Redirect stderr to a buffer which is parsed at the end of'   ' the process for runtime errors. Default: True')),   (_('Fork hgtk'), 'tortoisehg.hgtkfork', ['True', 'False'],   _('When running hgtk from the command line, fork a background'   ' process to run graphical dialogs. Default: True')))    _commit_info = (   (_('Username'), 'ui.username', [],   _('Name associated with commits')),   (_('Summary Line Length'), 'tortoisehg.summarylen', ['0', '70'],   _('Maximum length of the commit message summary line.'   ' If set, TortoiseHG will issue a warning if the'   ' summary line is too long or not separated by a'   ' blank line. Default: 0 (unenforced)')),   (_('Message Line Length'), 'tortoisehg.messagewrap', ['0', '80'],   _('Word wrap length of the commit message. If'   ' set, the popup menu can be used to format'   ' the message and a warning will be issued'   ' if any lines are too long at commit.'   ' Default: 0 (unenforced)')))    _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 = (   (_('After pull operation'), 'tortoisehg.postpull',   ['none', 'update', 'fetch', 'rebase'],   _('Operation which is performed directly after a successful pull.'   ' update equates to pull --update, fetch equates to the fetch'   ' extension, rebase equates to pull --rebase. Default: none')),)    _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')),   (_('User'), 'http_proxy.user', [],   _('Optional. User name to authenticate with at the'   ' proxy server')),   (_('Password'), 'http_proxy.passwd', [],   _('Optional. Password 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 PathEditDialog(gtk.Dialog):   _protocols = ['ssh', 'http', 'https', 'local']     def __init__(self, path, alias, list):   gtk.Dialog.__init__(self, parent=None, flags=gtk.DIALOG_MODAL,   buttons=(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,   gtk.STOCK_OK, gtk.RESPONSE_OK))   gtklib.set_tortoise_keys(self)   self.connect('response', self.response)   self.connect('key-press-event', self.key_press)   self.set_title(_('Edit remote repository path'))   self.newpath, self.newalias = None, None   self.list = list     self.entries = {}   # Tuple: (internal name, translated name)   for name in (('URL', _('URL')), ('Port', _('Port')),   ('Folder', _('Folder')), ('Host', _('Host')),   ('User', _('User')), ('Password', _('Password')),   ('Alias', _('Alias'))):   entry = gtk.Entry()   label = gtk.Label(name[1])   self.entries[name[0]] = [entry, label, None]     self.entries['URL'][0].set_width_chars(50)   self.entries['Password'][0].set_visibility(False)     hbox = gtk.HBox()   hbox.pack_start(self.entries['Alias'][1], False, False, 2)   hbox.pack_start(self.entries['Alias'][0], False, False, 2)   hbox.pack_start(self.entries['URL'][1], False, False, 2)   hbox.pack_start(self.entries['URL'][0], True, True, 2)   self.vbox.pack_start(hbox, False, False, 2)     frame = gtk.Frame()   self.vbox.pack_start(frame, False, False, 2)   vbox = gtk.VBox()   vbox.set_border_width(10)   frame.add(vbox)   frame.set_border_width(10)     self.protcombo = gtk.combo_box_new_text()   for p in self._protocols:   self.protcombo.append_text(p)   vbox.pack_start(self.protcombo, False, False, 10)     hbox = gtk.HBox()   hbox.pack_start(self.entries['Host'][1], False, False, 2)   hbox.pack_start(self.entries['Host'][0], True, True, 2)   hbox.pack_start(self.entries['Port'][1], False, False, 2)   hbox.pack_start(self.entries['Port'][0], False, False, 2)   vbox.pack_start(hbox, False, False, 2)     for n in ('Folder', 'User', 'Password'):   hbox = gtk.HBox()   hbox.pack_start(self.entries[n][1], False, False, 2)   hbox.pack_start(self.entries[n][0], True, True, 2)   vbox.pack_start(hbox, False, False, 2)     self.setentries(path, alias)     self.sethandlers()     self.lastproto = None   self.update_sensitive()   self.show_all()     def sethandlers(self, enable=True):   # protocol combobox   if enable:   self.pcombo_hid = self.protcombo.connect('changed', self.changed)   else:   h = self.pcombo_hid   if h and self.protcombo.handler_is_connected(h):   self.protcombo.disconnect(h)     # other entries   for n, (e, l, h) in self.entries.iteritems():   if enable:   handler = self.changedurl if n == 'URL' else self.changed   self.entries[n][2] = e.connect('changed', handler)   else:   if e.handler_is_connected(h):   e.disconnect(h)     def urlparse(self, path):   if path.startswith('ssh://'):   m = re.match(r'^ssh://(([^@]+)@)?([^:/]+)(:(\d+))?(/(.*))?$', path)   user = m.group(2)   host = m.group(3)   port = m.group(5)   folder = m.group(7) or "."   passwd = ''   scheme = 'ssh'   elif path.startswith('http://') or path.startswith('https://'):   snpaqf = urlparse.urlparse(path)   scheme, netloc, folder, params, query, fragment = snpaqf   host, port, user, passwd = url.netlocsplit(netloc)   if folder.startswith('/'): folder = folder[1:]   else:   user, host, port, passwd = [''] * 4   folder = path   scheme = 'local'   return user, host, port, folder, passwd, scheme     def setentries(self, path, alias=None):   if alias == None:   alias = self.entries['Alias'][0].get_text()     user, host, port, folder, pw, scheme = self.urlparse(path)     self.entries['Alias'][0].set_text(alias)   if scheme == 'local':   self.entries['URL'][0].set_text(path)   else:   self.entries['URL'][0].set_text(url.hidepassword(path))   self.entries['User'][0].set_text(user or '')   self.entries['Host'][0].set_text(host or '')   self.entries['Port'][0].set_text(port or '')   self.entries['Folder'][0].set_text(folder or '')   self.entries['Password'][0].set_text(pw or '')     i = self._protocols.index(scheme)   self.protcombo.set_active(i)     def update_sensitive(self):   proto = self.protcombo.get_active_text()   if proto == self.lastproto:   return   self.lastproto = proto   if proto == 'local':   for n in ('User', 'Password', 'Port', 'Host'):   self.entries[n][0].set_sensitive(False)   self.entries[n][1].set_sensitive(False)   elif proto == 'ssh':   for n in ('User', 'Port', 'Host'):   self.entries[n][0].set_sensitive(True)   self.entries[n][1].set_sensitive(True)   self.entries['Password'][0].set_sensitive(False)   self.entries['Password'][1].set_sensitive(False)   else:   for n in ('User', 'Password', 'Port', 'Host'):   self.entries[n][0].set_sensitive(True)   self.entries[n][1].set_sensitive(True)     def changed(self, combo):   newurl = self.buildurl()   self.sethandlers(False)   self.entries['URL'][0].set_text(url.hidepassword(newurl))   self.sethandlers(True)   self.update_sensitive()     def changedurl(self, combo):   self.sethandlers(False)   self.setentries(self.entries['URL'][0].get_text())   self.sethandlers(True)   self.update_sensitive()     def response(self, widget, response_id):   if response_id != gtk.RESPONSE_OK:   self.destroy()   return   newalias = self.entries['Alias'][0].get_text()   if newalias in self.list:   ret = gdialog.Confirm(_('Confirm Overwrite'), [], self,   _("Overwrite existing '%s' path?") % newalias).run()   if ret != gtk.RESPONSE_YES:   return   self.newpath = self.buildurl()   self.newalias = newalias   self.destroy()     def key_press(self, widget, event):   if event.keyval in (gtk.keysyms.Return, gtk.keysyms.KP_Enter):   self.response(widget, gtk.RESPONSE_OK)     def buildurl(self):   proto = self.protcombo.get_active_text()   host = self.entries['Host'][0].get_text()   port = self.entries['Port'][0].get_text()   folder = self.entries['Folder'][0].get_text()   user = self.entries['User'][0].get_text()   pwd = self.entries['Password'][0].get_text()   if proto == 'ssh':   ret = 'ssh://'   if user:   ret += user + '@'   ret += host   if port:   ret += ':' + port   ret += '/' + folder   elif proto == 'local':   ret = folder   else:   ret = proto + '://'   netloc = url.netlocunsplit(host, port, user, pwd)   ret += netloc + '/' + folder   return ret    class ConfigDialog(gtk.Dialog):   def __init__(self, configrepo=False, focusfield=None, newpath=None):   """ Initialize the Dialog. """   gtk.Dialog.__init__(self, parent=None, flags=0,   buttons=(gtk.STOCK_CLOSE, gtk.RESPONSE_CLOSE))   gtklib.set_tortoise_keys(self)     self.ui = ui.ui()   try:   root = paths.find_root()   if root:   repo = hg.repository(self.ui, root)   name = repo.ui.config('web', 'name') or os.path.basename(root)   self.ui = repo.ui   else:   repo = None   self.root = root   except hglib.RepoError:   repo = None   if configrepo:   dialog.error_dialog(self, _('No repository found'),   _('no repo at ') + root) - self.response(None, gtk.RESPONSE_CANCEL) + self.destroy() + return + + try: + from mercurial import demandimport + demandimport.disable() + import iniparse + demandimport.enable() + except ImportError: + dialog.error_dialog(self, _('Iniparse package not found'), + _('Please install iniparse package')) + self.destroy() + print 'Please install http://code.google.com/p/iniparse/' + return     # Catch close events   self.connect('response', self.should_live)   self.connect('delete-event', self.delete_event)     combo = gtk.combo_box_new_text()   combo.append_text(_('User global settings'))   if repo:   combo.append_text(_('%s repository settings') % hglib.toutf(name))   combo.connect('changed', self.fileselect)     hbox = gtk.HBox()   hbox.pack_start(combo, False, False, 2)   edit = gtk.Button(_('Edit File'))   hbox.pack_start(edit, False, False, 2)   edit.connect('clicked', self.edit_clicked)   self.vbox.pack_start(hbox, False, False, 4)     # 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 = settings.Settings('thgconfig')     # 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, _('Sync'))   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)     self.configrepo = configrepo     # Force dialog into clean state in the beginning   self._btn_apply.set_sensitive(False)   self.dirty = False   combo.set_active(configrepo and 1 or 0)     def fileselect(self, combo):   'select another hgrc file'   if self.dirty:   ret = gdialog.Confirm(_('Unapplied changes'), [], self,   _('Lose changes and switch files?.')).run()   if ret != gtk.RESPONSE_YES:   return   self.configrepo = combo.get_active() and True or False   self.refresh()     def refresh(self):   if self.configrepo:   repo = hg.repository(ui.ui(), self.root)   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 - ') + hglib.toutf(name))   gtklib.set_tortoise_icon(self, 'settings_repo.ico')   else:   self.rcpath = util.user_rcpath()   self.set_title(_('TortoiseHg Configure User-Global Settings'))   gtklib.set_tortoise_icon(self, 'settings_user.ico')   self.ini = self.load_config(self.rcpath)   self.refresh_vlist()   self.pathdata.clear()   if 'paths' in list(self.ini):   for name in self.ini['paths']:   path = self.ini['paths'][name]   safepath = hglib.toutf(url.hidepassword(path))   self.pathdata.append([hglib.toutf(name), safepath,   hglib.toutf(path)])   self.refresh_path_list()   self._btn_apply.set_sensitive(False)   self.dirty = False     def edit_clicked(self, button):   def doedit():   util.system("%s \"%s\"" % (editor, self.fn))   # reload configs, in case they have been written since opened   if self.configrepo:   repo = hg.repository(ui.ui(), self.root)   u = repo.ui   else:   u = ui.ui()   editor = (u.config('tortoisehg', 'editor') or   u.config('gtools', 'editor') or   os.environ.get('HGEDITOR') or   u.config('ui', 'editor') or   os.environ.get('EDITOR', 'vi'))   if os.path.basename(editor) in ('vi', 'vim', 'hgeditor'):   gdialog.Prompt(_('No visual editor configured'),   _('Please configure a visual editor.'), self).run()   self.focus_field('tortoisehg.editor')   return True   thread = threading.Thread(target=doedit, name='edit config')   thread.setDaemon(True)   thread.start()   return True     def delete_event(self, dlg, event):   return True     def should_live(self, *args):   if self.dirty:   ret = gdialog.Confirm(_('Confirm quit without saving?'), [], self,   _('Yes to abandon changes, No to continue')).run()   if ret != gtk.RESPONSE_YES:   if len(args) != 0:   self.emit_stop_by_name('response')   return True   return False     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 new_path(self, newpath, alias='new'):   '''Add a new path to [paths], give default name, focus'''   i = self.pathdata.insert_before(None, None)   safepath = url.hidepassword(newpath)   if alias in [row[0] for row in self.pathdata]:   num = 0   while len([row for row in self.pathdata if row[0] == alias]) > 0:   num += 1   alias = 'new_%d' % num   self.pathdata.set_value(i, 0, alias)   self.pathdata.set_value(i, 1, '%s' % hglib.toutf(safepath))   self.pathdata.set_value(i, 2, '%s' % hglib.toutf(newpath))   self.pathtree.get_selection().select_iter(i)   self.pathtree.set_cursor(   self.pathdata.get_path(i),   self.pathtree.get_column(0))   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://')   self._edit_path(new=True)     def _edit_path(self, *args, **opts):   selection = self.pathtree.get_selection()   if not selection.count_selected_rows():   return   model, path = selection.get_selected()   dialog = PathEditDialog(model[path][2], model[path][0],   [p[0] for p in self.pathdata if p[0] != model[path][0]])   dialog.run()   if dialog.newpath:   if model[path][0] != dialog.newalias:   # remove existing path   rows = [row for row in model if row[0] == dialog.newalias]   if len(rows) > 0:   del model[rows[0].iter]   # update path info   model[path][0] = dialog.newalias   model[path][1] = url.hidepassword(dialog.newpath)   model[path][2] = dialog.newpath   self.dirty_event()   elif opts.has_key('new') and opts['new'] == True:   del self.pathdata[path]   self.refresh_path_list()   self.dirty_event()     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:   dialog.error_dialog(self, _('No Repository Found'),   _('Path testing cannot work without a repository'))   return   model, path = selection.get_selected()   testpath = hglib.fromutf(model[path][2])   if not testpath:   return   if testpath[0] == '~':   testpath = os.path.expanduser(testpath)   cmdline = ['hg', 'incoming', '--verbose', testpath]   # Do not use progressbar, as it may show plaintext passwords   dlg = hgcmd.CmdDialog(cmdline, progressbar=False)   dlg.run()   dlg.hide()     def _default_path(self, *args):   selection = self.pathtree.get_selection()   if not selection.count_selected_rows():   return   model, path = selection.get_selected()   if model[path][0] == 'default':   return   # collect rows has 'default' alias   rows = [row for row in model if row[0] == 'default']   if len(rows) > 0:   ret = gdialog.Confirm(_('Confirm Overwrite'), [], self,   _("Overwrite existing '%s' path?") % 'default').run()   if ret != gtk.RESPONSE_YES:   return   # remove old default path   default_iter = rows[0].iter   del model[default_iter]   # set 'default' alias to selected path   model[path][0] = 'default'   self.refresh_path_list()   self.dirty_event()     def _pathtree_changed(self, sel):   self.refresh_path_list()     def _pathtree_pressed(self, widget, event):   if event.button == 1 and event.type == gtk.gdk._2BUTTON_PRESS:   x, y = int(event.x), int(event.y)   pathinfo = self.pathtree.get_path_at_pos(x, y)   if pathinfo is not None:   self._edit_path()   elif event.button == 1:   selection = self.pathtree.get_selection()   selection.unselect_all()   self.refresh_path_list()     def refresh_path_list(self):   """Update sensitivity of buttons"""   selection = self.pathtree.get_selection()   path_selected = (len(self.pathdata) > 0   and selection.count_selected_rows() > 0)   repo_available = self.root is not None   if path_selected:   model, path = selection.get_selected()   default_path = model[path][0] == 'default'   else:   default_path = False   self._editpathbutton.set_sensitive(path_selected)   self._delpathbutton.set_sensitive(path_selected)   self._testpathbutton.set_sensitive(repo_available and path_selected)   self._defaultpathbutton.set_sensitive(not default_path and path_selected)     def fill_path_frame(self, frvbox):   frame = gtk.Frame(_('Remote repository paths'))   frame.set_border_width(10)   frvbox.pack_start(frame, True, True, 2)   vbox = gtk.VBox()   vbox.set_border_width(5)   frame.add(vbox)     # Initialize data model for 'Paths' tab   self.pathdata = gtk.ListStore(str, str, str)     # Define view model for 'Paths' tab   self.pathtree = gtk.TreeView(self.pathdata)   self.pathtree.set_enable_search(False)   self.pathtree.add_events(gtk.gdk.BUTTON_PRESS_MASK)   self.pathtree.connect("cursor-changed", self._pathtree_changed)   self.pathtree.connect("button-press-event", self._pathtree_pressed)     renderer = gtk.CellRendererText()   column = gtk.TreeViewColumn(_('Alias'), renderer, text=0)   self.pathtree.append_column(column)     renderer = gtk.CellRendererText()   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._editpathbutton = gtk.Button(_('_Edit'))   self._editpathbutton.set_use_underline(True)   self._editpathbutton.connect('clicked', self._edit_path)   buttonbox.pack_start(self._editpathbutton)     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)     self._defaultpathbutton = gtk.Button(_('Set as _default'))   self._defaultpathbutton.set_use_underline(True)   self._defaultpathbutton.connect('clicked', self._default_path)   buttonbox.pack_start(self._defaultpathbutton)     vbox.pack_start(buttonbox, False, False, 4)     def set_help(self, widget, event, buffer, tooltip):   text = ' '.join(tooltip.splitlines())   buffer.set_text(text)     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)   desctext.set_sensitive(False)   scrolledwindow = gtk.ScrolledWindow()   scrolledwindow.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)   scrolledwindow.add(desctext)   scrolledwindow.set_border_width(4)   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)   if cpath in _pwfields:   combo.child.set_visibility(False)   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):   ispw = cpath in _pwfields   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.'):   if name[4:] not in values:   values.append(name[4:])   elif not name.startswith('opts.'):   if name not in values:   values.append(name)   elif cpath == 'ui.merge':   # Special case, add [merge-tools] to possible values   try:   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)   values.append('internal:merge')   values.append('internal:prompt')   values.append('internal:dump')   except ImportError:   pass     currow = None   if not ispw:   vlist.append([_unspecstr, False])   if values:   vlist.append([_('Suggested'), True])   for v in values:   vlist.append([hglib.toutf(v), False])   if v == curvalue:   currow = len(vlist) - 1   if cpath in self.history.get_keys() and not ispw:   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([hglib.toutf(v), False])   if v == curvalue:   currow = len(vlist) - 1     if curvalue is None and len(vlist):   combo.set_active(0)   elif currow is None and curvalue:   combo.child.set_text(hglib.toutf(curvalue))   elif currow:   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 + import iniparse   return iniparse.INIConfig(file(fn), optionxformvalue=None)     def record_new_value(self, cpath, newvalue, keephistory=True):   # 'newvalue' is converted to local encoding   section, key = cpath.split('.', 1)   if newvalue == _unspeclocalstr or newvalue == '':   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 = hglib.fromutf(row[0])   path = hglib.fromutf(row[2])   if not name:   gdialog.Prompt(_('Invalid path'),   _('Skipped saving path with no alias'), self).run()   continue   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):   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 = hglib.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()   self._btn_apply.set_sensitive(False)   self.dirty = False   except IOError, e:   dialog.error_dialog(self, _('Unable to write configuration file'),   str(e))     return 0    def run(ui, *pats, **opts):   return ConfigDialog(opts.get('repomode'))
Change 1 of 2 Show Entire File setup.py Stacked
 
58
59
60
61
 
62
63
64
 
113
114
115
116
 
117
118
119
 
58
59
60
 
61
62
63
64
 
113
114
115
 
116
117
118
119
@@ -58,7 +58,7 @@
  # Specific definitios for Windows NT-alike installations   _scripts = []   _data_files = [] - _packages = ['hggtk', 'hggtk.logview', 'thgutil', 'thgutil.iniparse'] + _packages = ['hggtk', 'hggtk.logview', 'thgutil']   extra = {}   hgextmods = []   @@ -113,7 +113,7 @@
  # Specific definitios for Posix installations   _extra = {}   _scripts = ['hgtk'] - _packages = ['hggtk', 'hggtk.logview', 'thgutil', 'thgutil.iniparse'] + _packages = ['hggtk', 'hggtk.logview', 'thgutil']   _data_files = [(os.path.join('share/pixmaps/tortoisehg', root),   [os.path.join(root, file_) for file_ in files])   for root, dirs, files in os.walk('icons')]
Change 1 of 1 Show Entire File thgutil/​iniparse/​__init__.py Stacked
 
1
2
3
4
5
6
7
8
 
 
 
 
 
 
 
 
 
@@ -1,8 +0,0 @@
-from ini import INIConfig -from config import BasicConfig, ConfigNamespace -from compat import RawConfigParser, ConfigParser, SafeConfigParser - -__all__ = [ - 'INIConfig', 'BasicConfig', 'ConfigNamespace', - 'RawConfigParser', 'ConfigParser', 'SafeConfigParser', -]
Change 1 of 1 Show Entire File thgutil/​iniparse/​compat.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
@@ -1,329 +0,0 @@
-# Copyright (c) 2001, 2002, 2003 Python Software Foundation -# Copyright (c) 2004 Paramjit Oberoi <param.cs.wisc.edu> -# All Rights Reserved. See LICENSE-PSF & LICENSE for details. - -"""Compatibility interfaces for ConfigParser - -Interfaces of ConfigParser, RawConfigParser and SafeConfigParser -should be completely identical to the Python standard library -versions. Tested with the unit tests included with Python-2.3.4 - -The underlying INIConfig object can be accessed as cfg.data -""" - -import re -from ConfigParser import DuplicateSectionError, \ - NoSectionError, NoOptionError, \ - InterpolationMissingOptionError, \ - InterpolationDepthError, \ - InterpolationSyntaxError, \ - DEFAULTSECT, MAX_INTERPOLATION_DEPTH - -# These are imported only for compatiability. -# The code below does not reference them directly. -from ConfigParser import Error, InterpolationError, \ - MissingSectionHeaderError, ParsingError - -import ini - -class RawConfigParser(object): - def __init__(self, defaults=None): - self.data = ini.INIConfig(defaults=defaults, optionxformsource=self) - - def optionxform(self, optionstr): - return optionstr.lower() - - def defaults(self): - d = {} - for name, lineobj in self.data._defaults._options: - d[name] = lineobj.value - return d - - def sections(self): - """Return a list of section names, excluding [DEFAULT]""" - return list(self.data) - - def add_section(self, section): - """Create a new section in the configuration. - - Raise DuplicateSectionError if a section by the specified name - already exists. - """ - if self.has_section(section): - raise DuplicateSectionError(section) - else: - self.data.new_namespace(section) - - def has_section(self, section): - """Indicate whether the named section is present in the configuration. - - The DEFAULT section is not acknowledged. - """ - try: - self.data[section] - return True - except KeyError: - return False - - def options(self, section): - """Return a list of option names for the given section name.""" - try: - return list(self.data[section]) - except KeyError: - raise NoSectionError(section) - - def read(self, filenames): - """Read and parse a filename or a list of filenames. - - Files that cannot be opened are silently ignored; this is - designed so that you can specify a list of potential - configuration file locations (e.g. current directory, user's - home directory, systemwide directory), and all existing - configuration files in the list will be read. A single - filename may also be given. - """ - files_read = [] - if isinstance(filenames, basestring): - filenames = [filenames] - for filename in filenames: - try: - fp = open(filename) - except IOError: - continue - files_read.append(filename) - self.data.readfp(fp) - fp.close() - return files_read - - def readfp(self, fp, filename=None): - """Like read() but the argument must be a file-like object. - - The `fp' argument must have a `readline' method. Optional - second argument is the `filename', which if not given, is - taken from fp.name. If fp has no `name' attribute, `<???>' is - used. - """ - self.data.readfp(fp) - - def get(self, section, option, vars=None): - if not self.has_section(section): - raise NoSectionError(section) - if vars is not None and option in vars: - value = vars[option] - try: - return self.data[section][option] - except KeyError: - raise NoOptionError(option, section) - - def items(self, section): - try: - ans = [] - for opt in self.data[section]: - ans.append((opt, self.data[section][opt])) - return ans - except KeyError: - raise NoSectionError(section) - - def getint(self, section, option): - return int(self.get(section, option)) - - def getfloat(self, section, option): - return float(self.get(section, option)) - - _boolean_states = {'1': True, 'yes': True, 'true': True, 'on': True, - '0': False, 'no': False, 'false': False, 'off': False} - - def getboolean(self, section, option): - v = self.get(section, option) - if v.lower() not in self._boolean_states: - raise ValueError, 'Not a boolean: %s' % v - return self._boolean_states[v.lower()] - - def has_option(self, section, option): - """Check for the existence of a given option in a given section.""" - try: - sec = self.data[section] - except KeyError: - raise NoSectionError(section) - try: - sec[option] - return True - except KeyError: - return False - - def set(self, section, option, value): - """Set an option.""" - try: - self.data[section][option] = value - except KeyError: - raise NoSectionError(section) - - def write(self, fp): - """Write an .ini-format representation of the configuration state.""" - fp.write(str(self.data)) - - def remove_option(self, section, option): - """Remove an option.""" - try: - sec = self.data[section] - except KeyError: - raise NoSectionError(section) - try: - sec[option] - del sec[option] - return 1 - except KeyError: - return 0 - - def remove_section(self, section): - """Remove a file section.""" - if not self.has_section(section): - return False - del self.data[section] - return True - - -class ConfigDict(object): - """Present a dict interface to a ini section.""" - - def __init__(self, cfg, section, vars): - self.cfg = cfg - self.section = section - self.vars = vars - - def __getitem__(self, key): - try: - return RawConfigParser.get(self.cfg, self.section, key, self.vars) - except (NoOptionError, NoSectionError): - raise KeyError(key) - - -class ConfigParser(RawConfigParser): - - def get(self, section, option, raw=False, vars=None): - """Get an option value for a given section. - - All % interpolations are expanded in the return values, based on the - defaults passed into the constructor, unless the optional argument - `raw' is true. Additional substitutions may be provided using the - `vars' argument, which must be a dictionary whose contents overrides - any pre-existing defaults. - - The section DEFAULT is special. - """ - if section != DEFAULTSECT and not self.has_section(section): - raise NoSectionError(section) - - option = self.optionxform(option) - value = RawConfigParser.get(self, section, option, vars) - - if raw: - return value - else: - d = ConfigDict(self, section, vars) - return self._interpolate(section, option, value, d) - - def _interpolate(self, section, option, rawval, vars): - # do the string interpolation - value = rawval - depth = MAX_INTERPOLATION_DEPTH - while depth: # Loop through this until it's done - depth -= 1 - if "%(" in value: - try: - value = value % vars - except KeyError, e: - raise InterpolationMissingOptionError( - option, section, rawval, e[0]) - else: - break - if value.find("%(") != -1: - raise InterpolationDepthError(option, section, rawval) - return value - - def items(self, section, raw=False, vars=None): - """Return a list of tuples with (name, value) for each option - in the section. - - All % interpolations are expanded in the return values, based on the - defaults passed into the constructor, unless the optional argument - `raw' is true. Additional substitutions may be provided using the - `vars' argument, which must be a dictionary whose contents overrides - any pre-existing defaults. - - The section DEFAULT is special. - """ - if section != DEFAULTSECT and not self.has_section(section): - raise NoSectionError(section) - if vars is None: - options = list(self.data[section]) - else: - options = [] - for x in self.data[section]: - if x not in vars: - options.append(x) - options.extend(vars.keys()) - - if "__name__" in options: - options.remove("__name__") - - d = ConfigDict(self, section, vars) - if raw: - return [(option, d[option]) - for option in options] - else: - return [(option, self._interpolate(section, option, d[option], d)) - for option in options] - - -class SafeConfigParser(ConfigParser): - def set(self, section, option, value): - if not isinstance(value, basestring): - raise TypeError("option values must be strings") - ConfigParser.set(self, section, option, value) - - def _interpolate(self, section, option, rawval, vars): - # do the string interpolation - L = [] - self._interpolate_some(option, L, rawval, section, vars, 1) - return ''.join(L) - - _interpvar_match = re.compile(r"%\(([^)]+)\)s").match - - def _interpolate_some(self, option, accum, rest, section, map, depth): - if depth > MAX_INTERPOLATION_DEPTH: - raise InterpolationDepthError(option, section, rest) - while rest: - p = rest.find("%") - if p < 0: - accum.append(rest) - return - if p > 0: - accum.append(rest[:p]) - rest = rest[p:] - # p is no longer used - c = rest[1:2] - if c == "%": - accum.append("%") - rest = rest[2:] - elif c == "(": - m = self._interpvar_match(rest) - if m is None: - raise InterpolationSyntaxError(option, section, - "bad interpolation variable reference %r" % rest) - var = m.group(1) - rest = rest[m.end():] - try: - v = map[var] - except KeyError: - raise InterpolationMissingOptionError( - option, section, rest, var) - if "%" in v: - self._interpolate_some(option, accum, v, - section, map, depth + 1) - else: - accum.append(v) - else: - raise InterpolationSyntaxError( - option, section, - "'%' must be followed by '%' or '(', found: " + `rest`)
Change 1 of 1 Show Entire File thgutil/​iniparse/​config.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
@@ -1,264 +0,0 @@
-# Copyright (c) 2001, 2002, 2003 Python Software Foundation -# Copyright (c) 2004 Paramjit Oberoi <param.cs.wisc.edu> -# All Rights Reserved. See LICENSE-PSF & LICENSE for details. - -"""Implements basic mechanisms for managing configuration information - -* A NAMESPACE is a collection of values and other namepsaces -* A VALUE is a basic value, like 3.1415, or 'Hello World!' -* A NAME identifies a value or namespace within a namespace - -The ConfigNamespace class is an abstract class that defines the -basic interface implemented by all config namespace objects. Two -concrete implementations are included: BasicConfig and INIConfig. - -Each is described in detail elsewhere. However, here's an -example of the capabilities available: - -Create config namespace and populate it: - - >>> n = BasicConfig() - >>> n.playlist.expand_playlist = True - >>> n.ui.display_clock = True - >>> n.ui.display_qlength = True - >>> n.ui.width = 150 - -Examine data: - - >>> print n.playlist.expand_playlist - True - >>> print n['ui']['width'] - 150 - - >>> print n - playlist.expand_playlist = True - ui.display_clock = True - ui.display_qlength = True - ui.width = 150 - -Delete items: - - >>> del n.playlist - >>> print n - ui.display_clock = True - ui.display_qlength = True - ui.width = 150 - -Convert it to ini format: - - >>> from iniparse import ini - >>> i = ini.INIConfig() - >>> i.import_config(n) - - >>> print i - [ui] - display_clock = True - display_qlength = True - width = 150 -""" - -# ---- Abstract classes - - -class ConfigNamespace(object): - def __getitem__(self, key): - return NotImplementedError(key) - - def __setitem__(self, key, value): - raise NotImplementedError(key, value) - - def __delitem__(self, key): - raise NotImplementedError(key) - - def __iter__(self): - return NotImplementedError() - - def new_namespace(self, name): - raise NotImplementedError(name) - - def __getattr__(self, name): - try: - return self.__getitem__(name) - except KeyError: - return Undefined(name, self) - - def __setattr__(self, name, value): - try: - object.__getattribute__(self, name) - object.__setattr__(self, name, value) - return - except AttributeError: - self.__setitem__(name, value) - - def __delattr__(self, name): - try: - object.__getattribute__(self, name) - object.__delattr__(self, name) - except AttributeError: - self.__delitem__(name) - - def import_config(self, ns): - for name in ns: - value = ns[name] - if isinstance(value, ConfigNamespace): - try: - myns = self[name] - if not isinstance(myns, ConfigNamespace): - raise TypeError('value-namespace conflict') - except KeyError: - myns = self.new_namespace(name) - myns.import_config(value) - else: - self[name] = value - -class Undefined(object): - """Helper class used to hold undefined names until assignment. - - This class helps create any undefined subsections when an - assignment is made to a nested value. For example, if the - statement is "cfg.a.b.c = 42", but "cfg.a.b" does not exist yet. - """ - - def __init__(self, name, namespace): - object.__setattr__(self, 'name', name) - object.__setattr__(self, 'namespace', namespace) - - def __setattr__(self, name, value): - obj = self.namespace.new_namespace(self.name) - obj[name] = value - - -# ---- Basic implementation of namespace - - -class BasicConfig(ConfigNamespace): - """Represents a collection of named values - - Values are added using dotted notation: - - >>> n = BasicConfig() - >>> n.x = 7 - >>> n.name.first = 'paramjit' - >>> n.name.last = 'oberoi' - - ...and accessed the same way, or with [...]: - - >>> n.x - 7 - >>> n.name.first - 'paramjit' - >>> n.name.last - 'oberoi' - >>> n['x'] - 7 - - The namespace object is a 'container object'. The default - iterator returns the names of values (i.e. keys). - - >>> l = list(n) - >>> l.sort() - >>> l - ['name', 'x'] - - Values can be deleted using 'del' and printed using 'print'. - - >>> n.aaa = 42 - >>> del n.x - >>> print n - aaa = 42 - name.first = paramjit - name.last = oberoi - - Nested namepsaces are also namespaces: - - >>> isinstance(n.name, ConfigNamespace) - True - >>> print n.name - first = paramjit - last = oberoi - - Finally, values can be read from a file as follows: - - >>> from StringIO import StringIO - >>> sio = StringIO(''' - ... # comment - ... ui.height = 100 - ... ui.width = 150 - ... complexity = medium - ... have_python - ... data.secret.password = goodness=gracious me - ... ''') - >>> n = BasicConfig() - >>> n.readfp(sio) - >>> print n - complexity = medium - data.secret.password = goodness=gracious me - have_python - ui.height = 100 - ui.width = 150 - """ - - # this makes sure that __setattr__ knows this is not a value key - _data = None - - def __init__(self): - self._data = {} - - def __getitem__(self, key): - return self._data[key] - - def __setitem__(self, key, value): - self._data[key] = value - - def __delitem__(self, key): - del self._data[key] - - def __iter__(self): - return iter(self._data) - - def __str__(self, prefix=''): - lines = [] - keys = self._data.keys() - keys.sort() - for name in keys: - value = self._data[name] - if isinstance(value, ConfigNamespace): - lines.append(value.__str__(prefix='%s%s.' % (prefix,name))) - else: - if value is None: - lines.append('%s%s' % (prefix, name)) - else: - lines.append('%s%s = %s' % (prefix, name, value)) - return '\n'.join(lines) - - def new_namespace(self, name): - obj = BasicConfig() - self._data[name] = obj - return obj - - def readfp(self, fp): - while True: - line = fp.readline() - if not line: - break - - line = line.strip() - if not line: continue - if line[0] == '#': continue - data = line.split('=', 1) - if len(data) == 1: - name = line - value = None - else: - name = data[0].strip() - value = data[1].strip() - name_components = name.split('.') - ns = self - for n in name_components[:-1]: - try: - ns = ns[n] - if not isinstance(ns, ConfigNamespace): - raise TypeError('value-namespace conflict', n) - except KeyError: - ns = ns.new_namespace(n) - ns[name_components[-1]] = value
Change 1 of 1 Show Entire File thgutil/​iniparse/​ini.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
@@ -1,568 +0,0 @@
-# Copyright (c) 2001, 2002, 2003 Python Software Foundation -# Copyright (c) 2004 Paramjit Oberoi <param.cs.wisc.edu> -# All Rights Reserved. See LICENSE-PSF & LICENSE for details. - -"""Access and/or modify INI files - -* Compatiable with ConfigParser -* Preserves order of sections & options -* Preserves comments/blank lines/etc -* More conveninet access to data - -Example: - - >>> from StringIO import StringIO - >>> sio = StringIO('''# configure foo-application - ... [foo] - ... bar1 = qualia - ... bar2 = 1977 - ... [foo-ext] - ... special = 1''') - - >>> cfg = INIConfig(sio) - >>> print cfg.foo.bar1 - qualia - >>> print cfg['foo-ext'].special - 1 - >>> cfg.foo.newopt = 'hi!' - - >>> print cfg - # configure foo-application - [foo] - bar1 = qualia - bar2 = 1977 - newopt = hi! - [foo-ext] - special = 1 - -""" - -# An ini parser that supports ordered sections/options -# Also supports updates, while preserving structure -# Backward-compatiable with ConfigParser - -import re -import config -from ConfigParser import DEFAULTSECT, ParsingError, MissingSectionHeaderError - -class LineType(object): - line = None - - def __init__(self, line=None): - if line is not None: - self.line = line.strip('\n') - - # Return the original line for unmodified objects - # Otherwise construct using the current attribute values - def __str__(self): - if self.line is not None: - return self.line - else: - return self.to_string() - - # If an attribute is modified after initialization - # set line to None since it is no longer accurate. - def __setattr__(self, name, value): - if hasattr(self,name): - self.__dict__['line'] = None - self.__dict__[name] = value - - def to_string(self): - raise Exception('This method must be overridden in derived classes') - - -class SectionLine(LineType): - regex = re.compile(r'^\[' - r'(?P<name>[^]]+)' - r'\]\s*' - r'((?P<csep>;|#)(?P<comment>.*))?$') - - def __init__(self, name, comment=None, comment_separator=None, - comment_offset=-1, line=None): - super(SectionLine, self).__init__(line) - self.name = name - self.comment = comment - self.comment_separator = comment_separator - self.comment_offset = comment_offset - - def to_string(self): - out = '[' + self.name + ']' - if self.comment is not None: - # try to preserve indentation of comments - out = (out+' ').ljust(self.comment_offset) - out = out + self.comment_separator + self.comment - return out - - def parse(cls, line): - m = cls.regex.match(line.rstrip()) - if m is None: - return None - return cls(m.group('name'), m.group('comment'), - m.group('csep'), m.start('csep'), - line) - parse = classmethod(parse) - - -class OptionLine(LineType): - def __init__(self, name, value, separator=' = ', comment=None, - comment_separator=None, comment_offset=-1, line=None): - super(OptionLine, self).__init__(line) - self.name = name - self.value = value - self.separator = separator - self.comment = comment - self.comment_separator = comment_separator - self.comment_offset = comment_offset - - def to_string(self): - out = '%s%s%s' % (self.name, self.separator, self.value) - if self.comment is not None: - # try to preserve indentation of comments - out = (out+' ').ljust(self.comment_offset) - out = out + self.comment_separator + self.comment - return out - - regex = re.compile(r'^(?P<name>[^:=\s[][^:=]*)' - r'(?P<sep>[:=]\s*)' - r'(?P<value>.*)$') - - def parse(cls, line): - m = cls.regex.match(line.rstrip()) - if m is None: - return None - - name = m.group('name').rstrip() - value = m.group('value') - sep = m.group('name')[len(name):] + m.group('sep') - - # comments are not detected in the regex because - # ensuring total compatibility with ConfigParser - # requires that: - # option = value ;comment // value=='value' - # option = value;1 ;comment // value=='value;1 ;comment' - # - # Doing this in a regex would be complicated. I - # think this is a bug. The whole issue of how to - # include ';' in the value needs to be addressed. - # Also, '#' doesn't mark comments in options... - - coff = value.find(';') - if coff != -1 and value[coff-1].isspace(): - comment = value[coff+1:] - csep = value[coff] - value = value[:coff].rstrip() - coff = m.start('value') + coff - else: - comment = None - csep = None - coff = -1 - - return cls(name, value, sep, comment, csep, coff, line) - parse = classmethod(parse) - - -class CommentLine(LineType): - regex = re.compile(r'^(?P<csep>[;#]|[rR][eE][mM])' - r'(?P<comment>.*)$') - - def __init__(self, comment='', separator='#', line=None): - super(CommentLine, self).__init__(line) - self.comment = comment - self.separator = separator - - def to_string(self): - return self.separator + self.comment - - def parse(cls, line): - m = cls.regex.match(line.rstrip()) - if m is None: - return None - return cls(m.group('comment'), m.group('csep'), line) - parse = classmethod(parse) - - -class EmptyLine(LineType): - # could make this a singleton - def to_string(self): - return '' - - def parse(cls, line): - if line.strip(): return None - return cls(line) - parse = classmethod(parse) - - -class ContinuationLine(LineType): - regex = re.compile(r'^\s+(?P<value>.*)$') - - def __init__(self, value, value_offset=8, line=None): - super(ContinuationLine, self).__init__(line) - self.value = value - self.value_offset = value_offset - - def to_string(self): - return ' '*self.value_offset + self.value - - def parse(cls, line): - m = cls.regex.match(line.rstrip()) - if m is None: - return None - return cls(m.group('value'), m.start('value'), line) - parse = classmethod(parse) - - -class LineContainer(object): - def __init__(self, d=None): - self.contents = [] - self.orgvalue = None - if d: - if isinstance(d, list): self.extend(d) - else: self.add(d) - - def add(self, x): - self.contents.append(x) - - def extend(self, x): - for i in x: self.add(i) - - def get_name(self): - return self.contents[0].name - - def set_name(self, data): - self.contents[0].name = data - - def get_value(self): - if self.orgvalue is not None: - return self.orgvalue - elif len(self.contents) == 1: - return self.contents[0].value - else: - return '\n'.join([str(x.value) for x in self.contents - if not isinstance(x, (CommentLine, EmptyLine))]) - - def set_value(self, data): - self.orgvalue = data - lines = str(data).split('\n') - linediff = len(lines) - len(self.contents) - if linediff > 0: - for _ in range(linediff): - self.add(ContinuationLine('')) - elif linediff < 0: - self.contents = self.contents[:linediff] - for i,v in enumerate(lines): - self.contents[i].value = v - - name = property(get_name, set_name) - value = property(get_value, set_value) - - def __str__(self): - s = [str(x) for x in self.contents] - return '\n'.join(s) - - def finditer(self, key): - for x in self.contents[::-1]: - if hasattr(x, 'name') and x.name==key: - yield x - - def find(self, key): - for x in self.finditer(key): - return x - raise KeyError(key) - - -def _make_xform_property(myattrname, srcattrname=None): - private_attrname = myattrname + 'value' - private_srcname = myattrname + 'source' - if srcattrname is None: - srcattrname = myattrname - - def getfn(self): - srcobj = getattr(self, private_srcname) - if srcobj is not None: - return getattr(srcobj, srcattrname) - else: - return getattr(self, private_attrname) - - def setfn(self, value): - srcobj = getattr(self, private_srcname) - if srcobj is not None: - setattr(srcobj, srcattrname, value) - else: - setattr(self, private_attrname, value) - - return property(getfn, setfn) - - -class INISection(config.ConfigNamespace): - _lines = None - _options = None - _defaults = None - _optionxformvalue = None - _optionxformsource = None - def __init__(self, lineobj, defaults = None, - optionxformvalue=None, optionxformsource=None): - self._lines = [lineobj] - self._defaults = defaults - self._optionxformvalue = optionxformvalue - self._optionxformsource = optionxformsource - self._options = {} - - _optionxform = _make_xform_property('_optionxform') - - def __getitem__(self, key): - if key == '__name__': - return self._lines[-1].name - if self._optionxform: key = self._optionxform(key) - try: - return self._options[key].value - except KeyError: - if self._defaults and key in self._defaults._options: - return self._defaults._options[key].value - else: - raise - - def __setitem__(self, key, value): - if self._optionxform: xkey = self._optionxform(key) - else: xkey = key - if xkey not in self._options: - # create a dummy object - value may have multiple lines - obj = LineContainer(OptionLine(key, '')) - self._lines[-1].add(obj) - self._options[xkey] = obj - # the set_value() function in LineContainer - # automatically handles multi-line values - self._options[xkey].value = value - - def __delitem__(self, key): - if self._optionxform: key = self._optionxform(key) - for l in self._lines: - remaining = [] - for o in l.contents: - if isinstance(o, LineContainer): - n = o.name - if self._optionxform: n = self._optionxform(n) - if key != n: remaining.append(o) - else: - remaining.append(o) - l.contents = remaining - del self._options[key] - - def __iter__(self): - d = set() - for l in self._lines: - for x in l.contents: - if isinstance(x, LineContainer): - if self._optionxform: - ans = self._optionxform(x.name) - else: - ans = x.name - if ans not in d: - yield ans - d.add(ans) - if self._defaults: - for x in self._defaults: - if x not in d: - yield x - d.add(x) - - def new_namespace(self, name): - raise Exception('No sub-sections allowed', name) - - -def make_comment(line): - return CommentLine(line.rstrip()) - - -def readline_iterator(f): - """iterate over a file by only using the file object's readline method""" - - have_newline = False - while True: - line = f.readline() - - if not line: - if have_newline: - yield "" - return - - if line.endswith('\n'): - have_newline = True - else: - have_newline = False - - yield line - - -class INIConfig(config.ConfigNamespace): - _data = None - _sections = None - _defaults = None - _optionxformvalue = None - _optionxformsource = None - _sectionxformvalue = None - _sectionxformsource = None - _parse_exc = None - def __init__(self, fp=None, defaults = None, parse_exc=True, - optionxformvalue=str.lower, optionxformsource=None, - sectionxformvalue=None, sectionxformsource=None): - self._data = LineContainer() - self._parse_exc = parse_exc - self._optionxformvalue = optionxformvalue - self._optionxformsource = optionxformsource - self._sectionxformvalue = sectionxformvalue - self._sectionxformsource = sectionxformsource - self._sections = {} - if defaults is None: defaults = {} - self._defaults = INISection(LineContainer(), optionxformsource=self) - for name, value in defaults.iteritems(): - self._defaults[name] = value - if fp is not None: - self.readfp(fp) - - _optionxform = _make_xform_property('_optionxform', 'optionxform') - _sectionxform = _make_xform_property('_sectionxform', 'optionxform') - - def __getitem__(self, key): - if key == DEFAULTSECT: - return self._defaults - if self._sectionxform: key = self._sectionxform(key) - return self._sections[key] - - def __setitem__(self, key, value): - raise Exception('Values must be inside sections', key, value) - - def __delitem__(self, key): - if self._sectionxform: key = self._sectionxform(key) - for line in self._sections[key]._lines: - self._data.contents.remove(line) - del self._sections[key] - - def __iter__(self): - d = set() - for x in self._data.contents: - if isinstance(x, LineContainer): - if x.name not in d: - yield x.name - d.add(x.name) - - def new_namespace(self, name): - if self._data.contents: - self._data.add(EmptyLine()) - obj = LineContainer(SectionLine(name)) - self._data.add(obj) - if self._sectionxform: name = self._sectionxform(name) - if name in self._sections: - ns = self._sections[name] - ns._lines.append(obj) - else: - ns = INISection(obj, defaults=self._defaults, - optionxformsource=self) - self._sections[name] = ns - return ns - - def __str__(self): - return str(self._data) - - _line_types = [EmptyLine, CommentLine, - SectionLine, OptionLine, - ContinuationLine] - - def _parse(self, line): - for linetype in self._line_types: - lineobj = linetype.parse(line) - if lineobj: - return lineobj - else: - # can't parse line - return None - - def readfp(self, fp): - cur_section = None - cur_option = None - cur_section_name = None - cur_option_name = None - pending_lines = [] - try: - fname = fp.name - except AttributeError: - fname = '<???>' - linecount = 0 - exc = None - line = None - - for line in readline_iterator(fp): - lineobj = self._parse(line) - linecount += 1 - - if not cur_section and not isinstance(lineobj, - (CommentLine, EmptyLine, SectionLine)): - if self._parse_exc: - raise MissingSectionHeaderError(fname, linecount, line) - else: - lineobj = make_comment(line) - - if lineobj is None: - if self._parse_exc: - if exc is None: exc = ParsingError(fname) - exc.append(linecount, line) - lineobj = make_comment(line) - - if isinstance(lineobj, ContinuationLine): - if cur_option: - cur_option.extend(pending_lines) - pending_lines = [] - cur_option.add(lineobj) - else: - # illegal continuation line - convert to comment - if self._parse_exc: - if exc is None: exc = ParsingError(fname) - exc.append(linecount, line) - lineobj = make_comment(line) - - if isinstance(lineobj, OptionLine): - cur_section.extend(pending_lines) - pending_lines = [] - cur_option = LineContainer(lineobj) - cur_section.add(cur_option) - if self._optionxform: - cur_option_name = self._optionxform(cur_option.name) - else: - cur_option_name = cur_option.name - if cur_section_name == DEFAULTSECT: - optobj = self._defaults - else: - optobj = self._sections[cur_section_name] - optobj._options[cur_option_name] = cur_option - - if isinstance(lineobj, SectionLine): - self._data.extend(pending_lines) - pending_lines = [] - cur_section = LineContainer(lineobj) - self._data.add(cur_section) - cur_option = None - cur_option_name = None - if cur_section.name == DEFAULTSECT: - self._defaults._lines.append(cur_section) - cur_section_name = DEFAULTSECT - else: - if self._sectionxform: - cur_section_name = self._sectionxform(cur_section.name) - else: - cur_section_name = cur_section.name - if not self._sections.has_key(cur_section_name): - self._sections[cur_section_name] = \ - INISection(cur_section, defaults=self._defaults, - optionxformsource=self) - else: - self._sections[cur_section_name]._lines.append(cur_section) - - if isinstance(lineobj, (CommentLine, EmptyLine)): - pending_lines.append(lineobj) - - self._data.extend(pending_lines) - if line and line[-1]=='\n': - self._data.add(EmptyLine()) - - if exc: - raise exc -