-
Notifications
You must be signed in to change notification settings - Fork 4
/
ChangeLog
2217 lines (1594 loc) · 50 KB
/
ChangeLog
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
See
http://fisheye2.cenqua.com/browse/pyicqt
for SVN logs.
--- Old ChangeLog ---
2007-06-03 Daniel Henninger <[email protected]>
* src/tlib/oscar.py:
Applied patches from Scott Dial and Chris Carlin for OSCAR changes,
delayed messages, and stability fixes.
2007-03-22 Daniel Henninger <[email protected]>
* src/tlib/oscar.py:
Applied patch from Michael Dyrna to fix password hash issues.
2007-02-16 Daniel Henninger <[email protected]>
* src/xdb/mysql.py:
Applied patch from Alexander Sulfrian to handle mysql auto-reconnect.
2006-10-03 Daniel Henninger <[email protected]>
* src/services/IqAvatarFactory.py:
Was never actually -sending- the iq avatar response.
2006-10-01 Daniel Henninger <[email protected]>
* src/langs/__init__.py:
* src/main.py:
Minor cosmetic tweaks.
* config_example.xml:
Added better example of saslUsername usage.
* src/legacy/glue.py:
Killed pointless traceback.
2006-09-30 Daniel Henninger <[email protected]>
* src/session.py:
* src/legacy/glue.py:
Added handling of presence probes.
* src/adhoc.py:
Improved ad-hoc support.
* src/main.py:
* src/daemonize.py:
Fixed backgrounded mode by switching to twistd.
* src/xdb/mysql.py:
* config_example.xml:
Added ability to encrypt passwords.
* src/xdb/mysql.py:
Set charset to utf8.
* tools/migrate.py:
Fixed bug with lack of utils import.
* src/xdb/mysql.py:
Added check for easy migration between encrypted and not encrypted.
* src/legacy/glue.py:
Updated for version 0.8 release.
2006-09-17 Daniel Henninger <[email protected]>
* src/main.py:
* src/contact.py:
* src/config.py:
* config_example.xml:
Disabled pubsub/pep stuff since it's no longer valid/useful.
* src/web/handler.py:
* src/web/xmppcred.py:
* src/adhoc.py:
* src/avatar.py:
* src/contact.py:
* src/disco.py:
* src/iq.py:
* src/jabw.py:
* src/pubsub.py:
* src/register.py:
* src/sasl.py:
* src/session.py:
* src/utils.py:
* src/xmlconfig.py:
* src/main.py:
* src/xdb/legacyaimtransport.py:
* src/xdb/legacyjittransport.py:
* src/xdb/xmlfiles.py:
* src/services/VersionTeller.py:
* src/services/VCardFactory.py:
* src/services/Statistics.py:
* src/services/SearchFactory.py:
* src/services/RosterRetrieval.py:
* src/services/LastActivity.py:
* src/services/IqAvatarFactory.py:
* src/services/GatewayTranslator.py:
* src/services/EntityTime.py:
* src/services/ConnectUsers.py:
* src/legacy/glue.py:
* src/legacy/buddies.py:
* src/legacy/services/ConfirmAccount.py:
* src/legacy/services/EmailLookup.py:
* tools/migrate.py:
Updated to use twistwrap instead of tlib.
* src/tlib/jabber:
* src/tlib/domish.py:
* src/tlib/xmlstream.py:
* src/tlib/twistwrap.py:
Removed due to lack of need anymore.
* src/main.py:
Updated to match PyMSNt's handling of reactors.
* src/main.py:
Added note about debug log.
* src/services/VCardFactory.py:
Fixed wrong number of args passed bug.
2006-09-11 Daniel Henninger <[email protected]>
* src/jabw.py:
Adjusted sendRosterImport to match JEP-0172 more accurately.
Thanks to guest from blathersource for submitting patch.
* src/sasl.py:
* config_example.xml:
Added quick note about lack of functionality with > Twisted 2.2.0.
* src/tlib/twisted-1.3.0:
Removed what has been reconsidered to be a bad idea.
* src:
Added svn:externals link for twistfix directory (to twistfix-0.6).
2006-06-13 Daniel Henninger <[email protected]>
* src/session.py:
Added priorities to nicknames and avatars.
* src/jabw.py:
* src/session.py:
* src/main.py:
Moved around capabilities request and renamed.
2006-06-12 Daniel Henninger <[email protected]>
* src/services/VCardFactory.py:
Added check for vcard avatar disable.
* src/contact.py:
Added check for pep avatar disable.
* src/jabw.py:
Minor cosmetic tweak.
2006-06-08 Daniel Henninger <[email protected]>
* src/contact.py:
Fixed lack of check for disableAvatars.
* tools/infodump.py:
Added tool to dump information about python install/setup.
* src/tlib/twisted-1.3.0:
Added entire twisted 1.3.0 dist (important parts).
2006-06-06 Daniel Henninger <[email protected]>
* src/globals.py:
* src/services/VCardFactory.py:
Added support for JEP-0164, vcard filtering.
* src/legacy/icqt.py:
Fixed problem with unicode handling.
2006-05-30 Daniel Henninger <[email protected]>
* src/tlib/oscar.py:
* src/legacy/icqt.py:
Added setting of permdeny 'properly' upon login.
2006-05-29 Daniel Henninger <[email protected]>
* src/xdb/mysql.py:
Fixed potential security hole. =( (not escaping variable)
* tools/managessi.py:
Added permissions and visibility functionality.
* src/tlib/oscar.py:
Added better SSI support for PDInfo entry.
* src/xdb/mysql.py:
Added ping before each mysql command to reconnect if connection lost.
2006-05-22 Daniel Henninger <[email protected]>
* src/session.py:
* src/jabw.py:
* src/adhoc.py:
* src/iq.py:
* src/disco.py:
* src/services/IqAvatarFactory.py:
Switched defaultUri to uri.
* src/avatar.py:
* src/contact.py:
Killed newlines in base64 encodings.
2006-05-07 Daniel Henninger <[email protected]>
* src/config.py:
* src/legacy/icqt.py:
* config_example.xml:
Added ability to disable away im-messages.
2006-05-01 Daniel Henninger <[email protected]>
* src/disco.py:
Added ability to have user-specific handlers.
Added ability to kill name in identity.
* src/pubsub.py:
Updated to handle disco responses for pubsub stuff.
2006-04-30 Daniel Henninger <[email protected]>
* src/config.py:
* config_example.xml:
* src/session.py:
* src/services/IqAvatarFactory.py:
* src/jabw.py:
Added options to disable each avatar style separately.
* src/jabw.py:
Tweaked to handle removal of resources more normally.
* src/contact.py:
Added more nickname functionality.
* src/main.py:
Tweaked loop call stuff.
* src/pubsub.py:
* src/main.py:
* src/contact.py:
Began adding support for PEP avatars and nicknames (.. maybe?)
2006-04-27 Daniel Henninger <[email protected]>
* src/debug.py:
* src/main.py:
Moved debugging around a tad.
* src/main.py:
Added improved support for reactors. User can now pick whatever
reactor they want, with some that are 'known' to work.
cf reactor added for OS X. cf stills needs to be tested more though.
* src/debug.py:
* src/main.py:
* src/xdb/__init__.py:
Added support for skipping display of 'args'.
* src/debug.py:
Minor prettying.
* src/xmlconfig.py:
* src/register.py:
* src/utils.py:
* src/pubsub.py:
* src/main.py:
* src/iq.py:
* src/disco.py:
* src/avatar.py:
* src/adhoc.py:
* src/services/GatewayTranslator.py:
* src/services/IqAvatarFactory.py:
* src/services/VCardFactory.py:
* src/web/handler.py:
* src/xdb/legacyaimtransport.py:
* src/xdb/legacyjittransport.py:
* src/xdb/xmlfiles.py:
* src/legacy/icqt.py:
Cleaned up LogEvent call just a tad.
2006-04-26 Daniel Henninger <[email protected]>
* src/avatar.py:
Fixed iq:avatar parser.
* src/iq.py:
* src/session.py:
Fixed errback exception handling.
* src/svninfo.py:
* src/main.py:
* src/services/VersionTeller.py:
Added (and modified a slight bit) James's svn version stuff.
2006-04-22 Daniel Henninger <[email protected]>
* src/session.py:
Updated to stop sending double avatar requests.
2006-04-21 Daniel Henninger <[email protected]>
* src/services/RosterRetrieval.py:
* src/langs/en.py:
Added roster retrieval functionality.
2006-04-20 Daniel Henninger <[email protected]>
* src/avatar.py:
Fixed stupid bug with avatar conversion.
* src/jabw.py:
* src/session.py:
Improved IQ-based avatar support.
2006-04-18 Daniel Henninger <[email protected]>
* src/legacy/icqt.py:
* src/legacy/glue.py:
Updated to use guess_encoding with vcard type data.
* src/xmlconfig.py:
Updated to shout more about config options.
* src/config.py:
* src/xmlconfig.py:
Added functionality to complain about deprecated variables.
* src/web/xmppcred.py:
Added functionality to make web auth handler NOT keep trying.
2006-04-17 Daniel Henninger <[email protected]>
* src/tlib/oscar.py:
Added Uri Shaked's SMS code.
* src/config.py:
* config_example.xml:
* src/langs/en.py:
* src/register.py:
* src/jabw.py:
* src/legacy/glue.py:
Added support for JEP-0136 (message archiving) and ldap register auth.
* src/config.py:
* config_example.xml:
* src/main.py:
Migrated from useJ2Component to useRouteWrap and useComponentBinding.
* src/services/GatewayTranslator.py:
Fixed return of prompt to jid as specified in JEP-0100.
2006-04-16 Daniel Henninger <[email protected]>
* src/tlib/oscar.py:
Removed utf-16be from the guess_encoding stuff... causes problems.
* src/iq.py:
* src/session.py:
Added arg to errback.
* src/adhoc.py:
Couple of cleanups.
2006-04-13 Daniel Henninger <[email protected]>
* src/main.py:
Added actual failure on lack of loading plugin.
* src/services/EntityTime.py:
Added jabber:iq:time handler.
* src/services/EntityTime.py:
* src/services/VersionTeller.py:
Cleanup.
* src/globals.py:
Added jabber:iq:last.
Added jabber:iq:time.
* src/services/VersionTeller.py:
Added twisted version to os string.
Shortened python version string.
2006-04-10 Daniel Henninger <[email protected]>
* src/main.py:
Commented out pubsub support so I can release r180.
* src/adhoc.py:
* src/services/ConnectUsers.py:
* src/services/GatewayTranslator.py:
* src/services/IqAvatar.py:
* src/services/SearchFactory.py:
* src/services/VCardFactory.py:
Updated to have proper location of sendIqError.
* src/jabw.py:
Updated to have proper location of sendIq.
* src/legacy/glue.py:
* src/legacy/icqt.py:
Put buddyList back as legacyList since other things depend on it.
* src/main.py:
Fixed bad call to onIq.
* src/legacy/legacylist.py:
* src/legacy/buddies.py:
Oops, forgot to add and move.
* src/services/VersionTeller.py:
Fixed to have proper call to disco.
2006-04-09 Daniel Henninger <[email protected]>
* src/pubsub.py:
Added handler for storage.
2006-04-08 Daniel Henninger <[email protected]>
* src/pubsub.py:
Updated to handle pubsub and pep.
* src/globals.py:
Added pubsub pieces (including pep), avatar, and nick.
* src/iq.py:
Renamed prefhandlers to prefixhandlers.
* src/jabw.py:
Added JEP-0172 nickname support.
* src/main.py:
Fixed bug with handling of debugLevel.
* src/legacy/icqt.py:
Updated to properly update ssicontact list when buddy does offline.
2006-04-03 Daniel Henninger <[email protected]>
* src/tlib/oscar.py:
Fixed guess_encoding .. maybe? Who knows....
* src/adhoc.py:
* src/main.py:
Separated ad-hoc commands support.
* src/pubsub.py:
Started pubsub support.
* src/main.py:
Misc restructuring.
* src/main.py:
Moved primary Iq handler out from under disco.
* src/main.py:
* src/disco.py:
* src/adhoc.py:
* src/misciq.py:
* src/services:
* src/services/connectusers.py:
* src/services/gwtranslator.py:
* src/services/iqavatar.py:
* src/services/ping.py:
* src/services/search.py:
* src/services/statistics.py:
* src/services/vcard.py:
* src/services/version.py:
* src/legacy/services:
* src/legacy/services/EmailLookup.py:
* src/legacy/services/ConfirmAccount.py:
* src/legacy/glue.py:
* src/legacy/__init__.py:
Restructured to 'plug-in services' architecture.
* src/main.py:
* src/legacy/__init__.py:
* src/legacy/glue.py:
* src/legacy/icqt.py:
* src/session.py:
* src/web/handler.py:
Removed statistics handlers that I don't use.
* src/main.py:
* src/adhoc.py:
* src/jabw.py:
* src/disco.py:
* src/register.py:
* src/services/ConnectUsers.py:
* src/services/GatewayTranslator.py:
* src/services/IqAvatarFactory.py:
* src/services/SearchFactory.py:
* src/services/VCardFactory.py:
* src/services/VersionTeller.py:
Renamed discovery to disco and ServerDiscovery to ServiceDiscovery.
* src/main.py:
* src/services/ConnectUsers.py:
* src/services/Statistics.py:
* src/services/VCardFactory.py:
Renamed adHocCommands to adhoc.
* src/legacy/legacylist.py:
* src/legacy/buddies.py:
* src/legacy/icqt.py:
* src/legacy/glue.py:
Renamed legacylist to buddies.
* src/icqt.py:
* src/glue.py:
Renamed icqcon to oscarcon. (for easier compares)
* src/main.py:
* config_example.xml:
Removed requirement of saslUsername for useJ2Component.
* src/iq.py:
* src/main.py:
* src/disco.py:
Separated iq handler routines out of disco.
2006-04-02 Daniel Henninger <[email protected]>
* src/tlib/oscar.py:
Code cleanup a tad.
2006-04-01 Daniel Henninger <[email protected]>
* src/tlib/oscar.py:
* src/legacy/icqt.py:
Identified and fixed icq status flags not being a single value.
2006-03-31 Daniel Henninger <[email protected]>
* src/main.py:
Added check to make sure pid file contects are an int.
* src/tlib/oscar.py:
Updated ICQ5 capabilities strings.
* src/legacy/icqt.py:
Removed ICQ5 capability identification.
* src/tlib/icqt.py:
* src/tlib/glue.py:
Fixed problem with not checking encoding of nickname in all locations.
* src/legacy/legacylist.py:
Fixed bug where I wasn't caring about nicknames always.
* config_example.xml:
* src/config.py:
* src/legacy/icqt.py:
Switched disableWebPresence to enableWebPresence. (changed default)
* tools/managessi.py:
Added display of nicknames.
* src/legacy/icqt.py:
Moved buddy nickname update to central location.
* src/jabw.py:
* src/session.py:
* src/avatar.py:
Added support for sending of IQ-based avatars.
2006-03-23 Daniel Henninger <[email protected]>
* src/legacy/glue.py:
Fixed misplaced savetheseusers.
2006-03-20 Daniel Henninger <[email protected]>
* src/main.py:
Added better handling of reactors.
2006-03-18 Daniel Henninger <[email protected]>
* src/legacy/icqt.py:
Added passing of encoding to BOSConnection.
Check encoding of nicknames.
Added better checking for updateNickname.
* src/tlib/oscar.py:
Added in encoding guess support for offline messages.
2006-03-14 Daniel Henninger <[email protected]>
* src/legacy/icqt.py:
* src/tlib/oscar.py:
Fixed handling of icq statuses and flags.
* src/legacy/icqt.py:
Fixed encoding issues with nicknames (thanks Norbert!)
* src/main.py:
Fixed bug with call to handleResourcePresence (thanks Motienko!)
* src/legacy/glue.py:
Fixed possible crash with inactive session.
* src/legacy/icqt.py:
Fixed bug in how gotNickname was called.
2006-03-12 Daniel Henninger <[email protected]>
* src/main.py:
Removed raise (that was there for testing)
* src/contact.py:
* src/globals.py:
* src/jabw.py:
* src/main.py:
* src/misciq.py:
* src/register.py:
* src/session.py:
* src/utils.py:
Starting really using globals.
* src/tlib/oscar.py:
* src/legacy/icqt.py:
Started passing direct variables instead of arrays.
2006-03-11 Daniel Henninger <[email protected]>
* src/config.py:
* src/xmlconfig.py:
* src/main.py:
* src/debug.py:
* src/legacy/glue.py:
* src/legacy/icqt.py:
Added true integer checking in config file.
* src/web/handler.py:
Added handling for port specification. (username@hostname%port)
* src/web/xmppcred.py:
* src/tlib/twistwrap.py:
* src/tlib/ifcompat.py:
* src/tlib/xmlstream.py:
Added functionality to make web interface compatible with twisted 1.*.
* src/tlib/oscar.py:
Adjusted snac handling to make sure calls look the same.
* src/debug.py:
Killed 'self' debug instance.
* src/legacy/glue.py:
Adjusted to check for offline vs online for messages.
* src/tlib/scheduler.py:
Minor cosmetic cleanup.
* src/tlib/oscar.py:
Added better repr printing of various objects.
2006-03-09 Daniel Henninger <[email protected]>
* src/legacy/glue.py:
Updated version to post-0.7a.
* src/legacy/icqt.py:
Added recursive/improved group parse.
2006-03-06 Daniel Henninger <[email protected]>
* src/main.py:
* PyICQt.py:
Added option to enable profiling.
* src/legacy/glue.py:
Updated version to 0.7a.
2006-03-05 Daniel Henninger <[email protected]>
* src/legacy/legacylist.py:
Fixed updateNickname to behave itself...
* src/legacy/legacylist.py:
Fixed stupid bug with cached icons.
* src/web/handler.py:
Fixed bug with web access check.
* src/legacy/legacylist.py:
Adjusted encoding handling of nicknames.
* src/main.py:
Fixed bug with debugLog vs debugFile.
* src/jabw.py:
Added catch for nickname.
* src/tlib/oscar.py:
Added ability to connect on other ports properly besides 5190.
* src/legacy/icqt.py:
Fixed for stupid problems with port and socks port handling.
* src/main.py:
Fixes for jabberd2 disconnects. (not complete)
2006-03-04 Daniel Henninger <[email protected]>
* src/legacy/glue.py:
Fixed misplaced return.
* tools/migrate.py:
* tools/managessi.py:
Switched to /usr/bin/env python.
* src/tlib/oscar.py:
Added functionality to request "short info".
* src/legacy/icqt.py:
Added pieces to auto-retrieve nicknames.
* src/jabw.py:
Switched namespace for roster subsync.
* src/legacy/icqt.py:
Added better handling of nick.
* src/tlib/oscar.py:
Updated to actually include extended pieces of SSIBuddy.
* src/legacy/glue.py:
Fixed bug with retrieval of ip address and such.
2006-03-03 Daniel Henninger <[email protected]>
* src/legacy/glue.py:
Removed print of variable that didn't exist.
* src/tlib/oscar.py:
Fixed lack of check for errorurl.
2006-03-01 Daniel Henninger <[email protected]>
* src/web/handler.py:
Fixed stupid call to attribute that didn't exist.
* tools/Makefile:
Made testinst more verbose.
* src/legacy/legacylist.py:
Fixed bad call to updateIconHashes.
2006-02-28 Daniel Henninger <[email protected]>
* src/tlib/oscar.py:
Fixed warning (thanks to pkern from chatroom).
* src/legacy/legacylist.py:
Fixed debug output.
* src/legacy/glue.py:
Fixed lack of removal of "get their icon" indicator.
* src/legacy/icqt.py:
Cleaned up connectionLost code a tad.
2006-02-27 Daniel Henninger <[email protected]>
* tools/Makefile:
Added script to create test install.
* src/tlib/oscar.py:
Fixed stupid error.
* src/legacy/glue.py:
* src/legacy/legacylist.py:
* src/tlib/oscar.py:
Worked on improvements to direct buddy icons.
2006-02-26 Daniel Henninger <[email protected]>
* src/avatar.py:
Fixed odd call to abspath.
* src/tlib/oscar.py:
Added other SSI and user info types.
2006-02-24 Daniel Henninger <[email protected]>
* src/legacy/icqt.py:
Fixed double encoding issue with auto-away messages.
2006-02-22 Daniel Henninger <[email protected]>
* src/tlib/oscar.py:
* src/legacy/icqt.py:
Updated capabilities stuff and tried out a few.
2006-02-14 Daniel Henninger <[email protected]>
* src/sasl.py:
Tweaks to try to get sasl working right.
2006-02-13 Daniel Henninger <[email protected]>
* tools/migrate.py:
Fixed to use new twistwrap stuff.
* src/sasl.py:
Fixed duplicate xmlns declaration.
* src/tlib/oscar.py:
Fixed encoding that doesn't exist everywhere.
* PyICQt.py:
Adjusted call to python.
* config_example.xml:
Switched to port 5190 since 5238 seems to bust buddy icons.
* src/web/handler.py:
Updated to ask real jabber server if you are who you say you are.
* src/sasl.py:
Minor mods to fix duplicate xmlns declaration.
2006-02-12 Daniel Henninger <[email protected]>
* src/tlib/oscar.py:
Fixed typoed repr.
* src/debug.py:
Adjusted ordering of debug output.
* src/web/handler.py:
Fixed string concat bug.
2006-02-11 Daniel Henninger <[email protected]>
* src/main.py:
Applied fixes for dealing with reactors better.
* src/avatar.py:
* src/contact.py:
* src/disco.py:
* src/jabw.py:
* src/main.py:
* src/misciq.py:
* src/register.py:
* src/sasl.py:
* src/session.py:
* src/utils.py:
* src/xmlconfig.py:
Applied Florian's patch to use %r instead of %s.
Fixes crashes during printing of unprintable chars.
* src/session.py:
Fixed handling of avatar hashes received.
* tools/Makefile:
Added developer Makefile.
* src/config.py:
* src/debug.py:
* src/main.py:
Switched to new debugging code.
* src/avatar.py:
* src/contact.py:
* src/disco.py:
* src/jabw.py:
* src/main.py:
* src/misciq.py:
* src/register.py:
* src/session.py:
* src/utils.py:
* src/xmlconfig.py:
* src/xdb/__init__.py:
* src/xdb/legacyaimtransport.py:
* src/xdb/legacyjittransport.py:
* src/xdb/xmlfiles.py:
* src/web/handler.py:
* src/legacy/__init__.py:
* src/legacy/glue.py:
* src/legacy/icqt.py:
* src/legacy/legacyiq.py:
* src/legacy/legacylist.py:
Switched to new debugging style.
* src/globals.py:
Added extra settings.
* src/lang.py:
* src/sasl.py:
Minor cleanup.
* src/web/handler.py:
Imported http from newer proper location.
2006-02-10 Daniel Henninger <[email protected]>
* src/xdb/xmlfiles.py:
Fixed reading of differently named variable.
* src/imgmanip.py:
Pulled image pieces out into this.
* src/legacy/glue.py:
* src/legacy/legacylist.py:
* src/utils.py:
Adjusted to account for move of image pieces.
* src/legacy/glue.py:
Updated version to 0.7.
2006-02-09 Daniel Henninger <[email protected]>
* src/config.py:
* config_example.xml:
* src/legacy/icqt.py:
Added ability to disable email notifications.
2006-02-08 Daniel Henninger <[email protected]>
* src/xdb/xmlfiles.py:
Fixed stupid bug where I wasn't assigning pre to anything.
* src/legacy/legacylist.py:
Made it so I can see the numeric hash.
2006-02-07 Daniel Henninger <[email protected]>
* src/utils.py:
* src/avatar.py:
* src/debug.py:
* src/main.py:
* src/xdb/xmlfiles.py:
* src/xdb/legacyaimtransport.py:
Retired doPath.
* src/xdb/legacyjittransport.py:
Added driver for old JIT format.
* src/legacy/icqt.py:
* config_example.xml:
Added check for avatarsOnlyOnChat.
* config_example.xml:
* src/config.py:
* src/legacy/icqt.py:
* src/legacy/glue.py:
* src/legacy/legacylist.py:
* src/utils.py:
* src/session.py:
* src/jabw.py:
* src/contact.py:
* src/web/handler.py:
* src/misciq.py:
Added ability to disable avatars entirely.
* INSTALL:
Updated to reflect newer instructions.
* src/config.py:
* src/legacy/icqt.py:
* config_example.xml:
Added ability to disable web presence indicator.
* src/langs/en.py:
Removed useless lang string.
* src/xmlconfig.py:
Fix for lack of crashing with bad config option.
2006-02-06 Daniel Henninger <[email protected]>
* src/tlib/twistwrap.py:
Patched to work with newer Twisted stuff (thanks Asterix!)
* src/legacy/legacylist.py:
Added support for binary based hashes.
* src/legacy/icqt.py:
Fixed incoming direct icon support.
* src/web/handler.py:
Added admin checks.