forked from kuri65536/python-for-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
1599 lines (941 loc) · 39.5 KB
/
Copy pathChangeLog
File metadata and controls
1599 lines (941 loc) · 39.5 KB
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
2009-04-07 15:14 snakeru
* xmpp/protocol.py: Merged XEP-0004.Multiple.Items.Form.Results
patch. Thanks to Iván Lloro
2009-04-07 12:34 snakeru
* xmpp/transports.py: Merged a fix for DNS SRV lookup on win32
2009-04-07 11:11 snakeru
* xmpp/features.py: Fixed crash on whitespace-containing disco
<iq/> reply
2009-04-07 10:19 snakeru
* xmpp/client.py: Fixed documentation bug in Component.__init__
2009-04-07 09:59 snakeru
* xmpp/transports.py: Fix for fresh bug: self.server =>
self._server
2009-04-07 09:52 snakeru
* xmpp/: session.py, transports.py: Replaced couple of 'print'
statements with proper use of self.DEBUG
2009-03-03 13:24 normanr
* xmpp/simplexml.py: Import simplexml updates from gajim, thanks
mainly to asterix, thorstenp and dwd
2009-02-13 13:26 normanr
* xmpp/protocol.py: Add extra XEP refs (this has been sitting in my
working copy for about a year)
2008-09-14 01:45 normanr
* xmpp/auth.py: Allow anonymous auth if username is None
2008-08-09 21:00 normanr
* doc/examples/xtalk.py, xmpp/auth.py: Fix for incorrect-encoding
during SASL PLAIN auth
2008-02-08 12:00 normanr
* xmpp/auth.py: Handle spaces in SASL DIGEST-MD5 responses
correctly
2008-01-30 13:12 normanr
* doc/examples/xtalk.py: Handle missing body, thanks to Brendan
Sleight
2008-01-04 14:32 normanr
* xmpp/transports.py: HTTPPROXYsocket will send data before we have
a Dispatcher
2008-01-04 00:46 normanr
* xmpp/jep0106.py: Move jep0106 test code into it's module
2007-09-15 15:34 normanr
* xmpp/transports.py: Clean up SSL errors a little bit
2007-09-11 16:46 normanr
* xmpp/simplexml.py: Fixes for children node fetching, still not
perfect, but much better
2007-08-28 14:03 normanr
* xmpp/: auth.py, client.py: [ 1529650 ] Bug in auth, can't retry
2007-08-28 13:54 normanr
* xmpp/commands.py: [ 1729857 ] typo in commands.py
2007-08-04 02:35 normanr
* xmpp/client.py: Fix socket namespace conflict
2007-05-19 03:18 normanr
* xmpp/: client.py, dispatcher.py, transports.py: More fixes -
reconnectAndReauth now works for Client too
2007-05-19 02:43 normanr
* xmpp/client.py: Fix PlugOut and reconnectAndReauth code execution
order
2007-05-18 21:41 normanr
* xmpp/simplexml.py: Ordering fix for when addChild and addData are
used on the same node (may increase memory usage, might need to
watch for that)
2007-05-13 21:55 normanr
* xmpp/: jep0106.py, protocol.py: change jep references into xep
2007-05-13 21:55 normanr
* xmpp/browser.py: Fix for non-ascii data in debug message
2007-04-10 00:23 normanr
* xmpp/protocol.py: moving admin namespace constants from jep0133
to to protocol
2007-04-09 23:22 normanr
* xmpp/protocol.py: updating namespace constants
2007-04-09 21:50 normanr
* xmpp/protocol.py: add support for setting the DataField label in
it's constructor
2007-03-20 09:00 snakeru
* xmpp/simplexml.py: Fixed node attribute deletion with "del
node[attr]" syntax.
2007-03-15 23:49 normanr
* xmpp/client.py: Handle XCP component:accept namespace
2006-10-06 16:30 normanr
* doc/examples/: bot.py, xsend.py, xtalk.py: allow the bot to set a
connection resource
2006-10-06 03:30 normanr
* doc/index.html: missed a few links
2006-10-06 03:14 normanr
* doc/index.html: updating documentation links
2006-10-06 02:25 normanr
* setup.py: Debian updates for version 0.4
2006-10-04 00:03 normanr
* xmpp/protocol.py: add some missing protocol namespaces
2006-09-27 02:12 normanr
* doc/examples/xtalk.py: initial check-in
2006-09-27 02:12 normanr
* doc/examples/xsend.py: tweaked login code to fail with reasons
2006-08-21 12:12 normanr
* doc/examples/xsend.py: Ignore comment lines in config file
2006-08-21 12:11 normanr
* xmpp/auth.py: Fixing auth splits
2006-06-03 17:53 normanr
* xmpp/: auth.py, client.py, dispatcher.py: added support for
wildfire component binding
2006-06-03 16:54 normanr
* doc/examples/commandsbot.py, xmpp/commands.py: fixed command
namespaces and basic circle area math
2006-06-03 16:36 normanr
* doc/examples/commandsbot.py: added example command bot from
Liorithiel
2006-06-03 16:32 normanr
* xmpp/commands.py: fixes from Liorithiel
2006-06-03 16:22 normanr
* xmpp/simplexml.py: added xmlns safety check
2006-06-03 16:15 normanr
* xmpp/commands.py: fixed command namespaces
2006-05-30 23:55 normanr
* doc/examples/xsend.py: General cleanups
2006-05-22 12:58 normanr
* xmpp/transports.py: Fix for non-int ports
2006-05-18 09:53 snakeru
* xmpp/simplexml.py: Added CDATA extracting method to xml node.
2006-05-15 03:57 normanr
* xmpp/jep0106.py: moved jep-0106 into xmpp
2006-05-13 18:39 normanr
* xmpp/commands.py: minor typos
2006-03-25 09:11 snakeru
* xmpp/debug.py: Re-enabled debugging.
2006-03-25 09:01 snakeru
* setup.py: Updated version stuff for xmpppy module.
2006-03-25 08:47 snakeru
* xmpp/features.py: Fixed bug in disco items discovery (thanks
Soren Roug).
2006-02-11 18:45 snakeru
* xmpp/debug.py: Made NoDebug class usable
2006-02-11 18:37 snakeru
* xmpp/client.py: fixed resources consumation in many places
2006-02-11 18:36 snakeru
* xmpp/features.py: fixed features.register
2006-01-26 16:09 snakeru
* xmpp/transports.py: Bugfix for previous commit
2006-01-26 16:06 snakeru
* xmpp/: debug.py, transports.py: Made xmpppy to print warnings to
stdout instead of stderr
2006-01-19 00:38 normanr
* xmpp/: client.py, commands.py, debug.py, protocol.py: xmlns
fixes, and minor tweaks for speed and safety
2006-01-18 22:26 normanr
* xmpp/: auth.py, dispatcher.py: Namespace fixes
2006-01-10 01:08 normanr
* xmpp/protocol.py: Message.buildReply fix for Gerard
2006-01-07 21:41 normanr
* xmpp/protocol.py: Added message events, and minor DataForm fix
2006-01-02 22:40 normanr
* xmpp/: auth.py, client.py, dispatcher.py, protocol.py: Jabberd2
component protocol support
2006-01-02 22:26 normanr
* xmpp/debug.py: Enhanced debug output
2005-12-19 17:30 snakeru
* xmpp/debug.py: Disabled color output on non-un*x-like platforms.
2005-12-11 21:54 normanr
* xmpp/: client.py, transports.py: made failed connections slightly
more robust.
2005-11-30 20:05 normanr
* xmpp/auth.py: http://trac.gajim.org/ticket/1188 - fix for base64
encoded strings ending with an equals sign
2005-11-30 20:03 normanr
* xmpp/commands.py: command nodes now return correct disco#info
values
2005-11-22 08:20 snakeru
* xmpp/auth.py: Fixed digest-uri parameter in SASL auth. Thanks to
Le Boulanger Yann and Norman Rasmussen.
2005-10-31 09:15 snakeru
* xmpp/protocol.py: Fixed timstamp detecting bug (thanks to Daryl
Herzmann).
2005-10-26 12:45 snakeru
* xmpp/auth.py: Fixed SASL bug on win32 platform. (Thanks to Martin
Thomas)
2005-10-24 23:32 normanr
* xmpp/: client.py, transports.py: [gajim]it is standarD not with
T; thanks dkm
2005-10-23 01:47 normanr
* xmpp/: client.py, debug.py, protocol.py: fixed whitespace
2005-10-08 03:17 normanr
* xmpp/: browser.py, commands.py: fixes for discovery replies that
gajim exposed
2005-10-01 21:53 snakeru
* xmpp/: client.py, transports.py: Made SRV resolution disableable
(Gajim patch 3658).
2005-10-01 21:51 snakeru
* xmpp/client.py: Added catchment for exception while tls handshake
(Gajim patch 3323).
2005-10-01 21:41 snakeru
* xmpp/transports.py: Added events for sent/received bytes (Gajim
patches 2789, 2979, 3254).
2005-10-01 21:40 snakeru
* xmpp/session.py: Removed useless #!/usr/bin/python header (Gajim
patch 2115)
2005-10-01 21:39 snakeru
* xmpp/transports.py: Typo and debug line text fixes (Gajim patch
2113).
2005-10-01 21:36 snakeru
* xmpp/protocol.py: Added method for retrieve nick value in MUC
(Gajim patch 2089).
2005-10-01 21:34 snakeru
* xmpp/TODO: Added several lines to TODO.
2005-10-01 19:03 snakeru
* xmpp/client.py: Fixed binding process. Formatiing fixes.
2005-10-01 18:58 snakeru
* xmpp/protocol.py: Fixed first timestamp detection
2005-10-01 01:34 mikealbon
* xmpp/client.py: SASL Timeout, Gajim #2066
2005-10-01 01:28 mikealbon
* xmpp/client.py: Enable SSL on non-standard port. Gajim #2065
2005-10-01 00:13 mikealbon
* xmpp/features.py: Asynchronous In-band Registration. Gajim
patches #2035 #2318
2005-09-30 01:38 mikealbon
* xmpp/protocol.py: Bumper pack of namespace definitions. Including
gajim #2637.
2005-09-28 11:20 snakeru
* xmpp/client.py: Docstring fixes. Fixed typo in Client.connect
method docstring (Thanks to Andrew Diederich). Evaluated more
descriptions of Component.__init__ and Component.__connect__ .
2005-09-23 22:32 normanr
* xmpp/: browser.py, client.py, commands.py: Fixes to make commands
work, when you're working with multiple jids and nodes.
2005-09-21 00:56 normanr
* xmpp/TODO: some todo items
2005-09-17 19:15 normanr
* xmpp/protocol.py: tidied disco and muc namespaces
2005-09-17 19:13 normanr
* xmpp/commands.py: fix for items being returned on non-items disco
2005-09-16 18:28 snakeru
* xmpp/TODO: Added TODO line about roster parsing traceback.
2005-09-16 18:15 snakeru
* xmpp/TODO: Added another todo line about input chunking.
2005-09-16 17:59 snakeru
* xmpp/TODO: Added keepalive feature in TODO list.
2005-09-09 08:12 snakeru
* doc/examples/xsend.py: Added help message to sample config file.
2005-09-06 02:04 mikealbon
* xmpp/transports.py: Added SRV record resolution for new client
connections. This is using gajim changesets (2036 2037 2039 2040
3184 3407 3408 3409 3410 3411 3412 3413) Debugging through debug
needs to be fixed.
2005-08-29 01:50 normanr
* xmpp/commands.py: fixes for error constants
2005-08-19 00:03 normanr
* xmpp/dispatcher.py: Added support for non-fatal exception
handling, exceptions can also be logged to file.
2005-08-06 08:48 snakeru
* xmpp/session.py: Fixed usage of .T. and .NT. notation according
to recent change.
2005-08-06 08:44 snakeru
* xmpp/simplexml.py: WARNING! Incompartible change! Now
newtag=n.T.newtag do not creates new tag but only returns
existing one (if possible). If you need to create tag use either
.NT. method or attribute set (i.e. n.T.newtag=something).
2005-08-05 08:57 snakeru
* xmpp/features.py: The setPrivacyList function used a nonexistent
payload variable where it should use the list parameter (thanks
to Michal Politowski).
2005-07-13 17:22 snakeru
* xmpp/roster.py: Docstring fix
2005-07-08 01:34 normanr
* xmpp/commands.py: Commands now work. Errors are also returned if
continuing an invalid session.
2005-06-02 16:22 snakeru
* xmpp/client.py: Changed cl.connected from 'tls' to 'ssl' in case
of port 5223/443.
2005-06-02 16:19 snakeru
* xmpp/client.py: List of default ssl ports is now [5223,443].
2005-05-28 13:30 mikealbon
* xmpp/commands.py: Lots of bugfixes -- thanks Norman
2005-05-26 09:04 snakeru
* xmpp/: auth.py, client.py: Another SASL case was broken. Fix
applied, tested against variety of servers.
2005-05-24 17:59 snakeru
* xmpp/auth.py: Removed early FeaturesHandler call to not start
auth before credentials got passed.
2005-05-24 17:28 snakeru
* xmpp/client.py: Added parameter to auth() to disable SASL
2005-05-12 13:20 snakeru
* xmpp/TODO: Added note about TLS issue
2005-05-12 13:00 snakeru
* xmpp/client.py: Added return value description to connect()
docstring.
2005-05-12 11:35 snakeru
* xmpp/transports.py: Fixed TLS-not-disconnects bug
2005-05-11 09:42 snakeru
* xmpp/roster.py: Added comment about roster's NodeProcessed
behaivoir.
2005-05-11 09:38 snakeru
* xmpp/roster.py: Roster Iq handler must raise NodeProcessed.
Otherwise, iq's will hit default handler and <iq type='error'/>
will be sent back.
2005-05-09 21:31 snakeru
* doc/index.html: Made <a/> tags to not open new windows.
2005-05-09 21:27 snakeru
* doc/xmpppy_title.png: New design. Big thanks to Marek Kubica for
it.
2005-05-09 21:09 snakeru
* doc/: index.html, xmpppy.css: New design. Big thanks to Marek
Kubica for it.
2005-05-09 18:51 snakeru
* xmpp/dispatcher.py: Bugfix: RegisterHandler(...,makefirst=1)
didn't work.
2005-05-08 12:03 snakeru
* setup.py: Changed download url from whole project to xmpppy
module
2005-05-08 11:54 snakeru
* setup.py: Add reminder to fix source code release version string
while making release
2005-05-08 08:51 snakeru
* xmpp/: client.py, dispatcher.py: Added possibility to detect
broken servers that didn't restart stream after tls start and
disable tls for them.
2005-05-07 20:24 snakeru
* xmpp/transports.py: Fixed traceback while connecting via proxy
2005-05-07 20:14 snakeru
* xmpp/protocol.py: Fixed stupid typo in DataForm
2005-05-07 07:26 snakeru
* xmpp/dispatcher.py: Added non-locking SendAndCallForResponse
method to ease life of realtime clients.
2005-05-07 06:42 snakeru
* xmpp/auth.py: Auth was failing when server declares XMPP stream
(version="1.0") but not supports SASL.
2005-05-06 21:33 snakeru
* xmpp/protocol.py: Added missing MUC attributes helper. Added
'instructions' field to XData.asDict()
2005-05-02 12:38 snakeru
* xmpp/roster.py: Formatting fix.
2005-05-02 12:36 snakeru
* xmpp/: dispatcher.py, protocol.py: Added stream errors classes
along with default handler
2005-04-30 14:17 snakeru
* xmpp/: client.py, auth.py: Fixed Non-SASL auth brocken with one
of today's commits.
2005-04-30 12:56 snakeru
* xmpp/: dispatcher.py, transports.py: Bugfix: TLS mode was unable
to handle big (>1024 bytes) chunks of data. Was forced to
change TCPsocket.receive() return values logic.
2005-04-30 12:53 snakeru
* xmpp/client.py: Fixed auth logic: if SASL failed - then auth
definitely failed too.
2005-04-30 12:14 snakeru
* xmpp/transports.py: Minor changes in receive() code in
preparation to fix TLS bug.
2005-04-30 12:10 snakeru
* xmpp/dispatcher.py: Added two docstrings
2005-04-30 11:43 snakeru
* xmpp/features.py: Fixed getRegInfo to not crash on query's CDATA
2005-04-30 11:33 snakeru
* xmpp/commands.py: Formatteed/added several docstrings
2005-04-30 11:20 snakeru
* xmpp/simplexml.py: Cosmetic docstrings changes
2005-04-30 11:17 snakeru
* xmpp/protocol.py: Added NS_COMMANDS, NS_ENCRYPTED, NS_SIGNED
namespaces. Added MUC iq attributes functions from jabberpy.
2005-04-30 11:13 snakeru
* xmpp/browser.py: Fixed RegisterHandler calls to catch only 'get'
iqs. Fixed DiscoHandler to raise NodeProcessed (or we should
just return instead?)
2005-04-30 11:01 snakeru
* xmpp/: auth.py, transports.py: Fixed plugout methods to not take
parameter
2005-04-10 12:25 snakeru
* xmpp/TODO: TODO for 0.2 release
2005-04-10 12:21 snakeru
* xmpp/simplexml.py: Reduced overload caused by extensive usage of
T/NT classes.
2005-04-10 12:09 snakeru
* xmpp/client.py: Added back possibility of manual specification of
server type (for Component) for case if ejabberd team (or
others) will add features to component streams. Changed default
port for component connection to 5347 (jabberd2 router).
2005-04-10 11:55 snakeru
* xmpp/client.py: Replaced manual server type specification with
autodetect
2005-03-09 17:18 snakeru
* doc/examples/logger.py: Added presences tracking
2005-03-09 11:32 snakeru
* doc/examples/logger.py: Bugfix: proxy was specified incorrectly
2005-03-09 00:18 snakeru
* doc/index.html: index.html
2005-03-09 00:14 snakeru
* doc/examples/README.py: Moved to "examples".
2005-03-08 23:57 snakeru
* doc/examples/logger.py: Conference logging bot example
2005-03-08 23:48 snakeru
* Makefile: Installer Makefile
2005-03-08 22:50 snakeru
* xmpp/commands.py: Tuned "import"s stuff to be more in-line with
library
2005-03-08 22:36 snakeru
* xmpp/: auth.py, client.py, dispatcher.py, protocol.py: Tweaked
library to make it play nice as jabberd2 legacy component.
2005-03-08 19:15 snakeru
* xmpp/simplexml.py: Some tweaks about determining if node needs
'xmlns' attribute.
2005-03-07 12:34 snakeru
* xmpp/__init__.py: Added commands module import
2005-03-07 12:07 snakeru
* xmpp/auth.py: Preserved handlers during auth process to allow
early handlers registration.
2005-02-25 08:49 snakeru
* xmpp/roster.py: Changed (c) date range
2005-02-25 08:48 snakeru
* xmpp/roster.py: Fixed Iq callback brocken last commit
2005-02-25 08:35 snakeru
* xmpp/roster.py: "raise NodeProcessed" removed to allow userspace
catch roster changes too
2005-02-21 14:52 snakeru
* xmpp/dispatcher.py: Added etherx namespace to the default set to
allow stream errors handling.
2005-02-17 11:16 snakeru
* xmpp/roster.py: Bugfix: presences should not really inherit
meta-info (like <show/> etc)
2005-02-16 19:33 snakeru
* xmpp/roster.py: Bugfix: UNbroke accidentally brocken code. Shame
on me.
2005-02-16 19:29 snakeru
* xmpp/auth.py: Bugfix: (NonSASL) Added removal of empty
<password/> node to achieve JiveMessenger compartibility (Tnx
Brian Tipton)
2005-02-07 21:38 snakeru
* xmpp/roster.py: BugFix: Roster.PresenceHandler should not raise
NodeProcessed exception.
2005-01-31 16:10 mikealbon
* xmpp/commands.py: Modified the handlers used. Result messages are
not required for command processor use.
2005-01-21 14:16 mikealbon
* xmpp/commands.py: Initial version of commands processor
2005-01-16 23:18 snakeru
* doc/examples/bot.py: Xmpppy-based bot example
2005-01-16 21:32 snakeru
* doc/examples/xsend.py: Old servers compartibility stuff added.
Tnx google, randomthoughts.
2005-01-04 08:17 snakeru
* xmpp/session.py: Session class added
2004-12-26 11:54 snakeru
* setup.py: python distutils install tool
2004-12-26 11:40 snakeru
* README: README rewrited
2004-12-26 11:34 snakeru
* doc/index.html: Some more updates
2004-12-26 11:12 snakeru
* doc/: advanced.html, basic.html, index.html: Documentation
updated: expert docs written, advanced started.
2004-12-26 10:39 snakeru
* doc/expert.html: Removed since api documentation is maintained
via docstrings.
2004-12-25 23:06 snakeru
* xmpp/: __init__.py, dispatcher.py, features.py, filetransfer.py,
roster.py, transports.py: Added and/or modifyed docstrings. Now
every method in library is documented\! Hurray\!
2004-12-24 22:56 snakeru
* xmpp/: browser.py, protocol.py: Pydoc strings added
2004-12-23 23:11 snakeru
* xmpp/: __init__.py, auth.py, client.py, dispatcher.py,
simplexml.py: Docstrings merged. Most of them were ready already
in (shame!) july.
2004-12-09 18:08 snakeru
* xmpp/dispatcher.py: Bugfix: complete autodetection of default
handler's namespace
2004-12-09 18:06 snakeru
* xmpp/dispatcher.py: More wisdom for default handler's namespace
determining
2004-12-09 17:34 snakeru
* xmpp/dispatcher.py: Added some wisdom to determining of default
handler's namespace.
2004-12-09 17:21 snakeru
* xmpp/: auth.py, client.py, protocol.py: Fixed component auth that
was brocken by dispatcher's changes.
2004-12-06 17:49 snakeru
* xmpp/browser.py: Bugfix: typo in _DiscoveryHandler (thanks 2 Mike
Albon)
2004-10-23 11:58 snakeru
* xmpp/protocol.py: NS_DIALBACK added JID's node and domain now
stored only lowercase Bugfix: don't allow empty type to go into
error node Do not serialise error reply to error stanza (prevent
error bouncing)
2004-10-23 11:53 snakeru
* xmpp/dispatcher.py: "chained" handlers killed changing type of
incomed stanza only if it is a simple Node (to allow pickling)
2004-10-23 11:51 snakeru
* xmpp/auth.py: Bugfix: auth details should go into self._owner
2004-10-08 23:10 snakeru
* xmpp/auth.py: Ensure that username and resourcename got from
server's responce.
2004-10-08 23:06 snakeru
* xmpp/dispatcher.py: Now stanza properties stored in it's
attribute "props".
2004-10-08 23:01 snakeru
* xmpp/features.py: Bugfix: don't traceback if DISCO/Browse timed
out.
2004-09-25 23:05 snakeru
* xmpp/simplexml.py: Rolled back ns vocabularies. They were
potentially messing namespaces.
2004-09-25 22:52 snakeru
* xmpp/simplexml.py: Allowed attribute values to be objects
2004-09-25 22:50 snakeru
* xmpp/protocol.py: XMPP streams namespace added. One more XMPP
stanza error condition added: <not-authorized/> Error conditions
now differs by name: STREAM_, ERR_ and SASL_. Attribute 'to' and
'from' in protocol instances now JIDs - not strings. Added
namespace to Protocol element's __init__s. Changed error forming
process to involve correct namespace setting.
2004-09-25 22:46 snakeru
* xmpp/dispatcher.py: Namespace handler now comes under the name
"default".
2004-09-20 00:05 snakeru
* xmpp/client.py: Plugging in now available only once. Now using
SASL.auth() method instead of SASL()
2004-09-19 16:34 snakeru
* xmpp/dispatcher.py: Added plugout method for proper destuction of
Stream instance. Added RegisterNamespace method for registering
default handlers for ns. Made UnregisterHandler immune to
unregistering absent handler.
2004-09-19 16:31 snakeru
* xmpp/simplexml.py: added destroy method to NodeBuilder to prevent
memory leak
2004-09-19 16:28 snakeru
* xmpp/transports.py: Added plugout method to TLS class for
unregistering handlers. Added raising NodeProcessed in TLS
handler according to dispatcher's architecture.
2004-09-19 16:19 snakeru
* xmpp/protocol.py: Added SASL error conditions
2004-09-19 15:49 snakeru
* xmpp/auth.py: SASL.auth method added. Removed credentials passing
from PlugIn. plugout methods added for unregistering handlers.
NodeProcessed exceptions now raised according to dispatcher
architecture.
2004-09-17 23:28 snakeru
* xmpp/: auth.py, dispatcher.py, transports.py: Added stanzas
namespace support in dispatcher.
2004-09-17 23:22 snakeru
* xmpp/protocol.py: Added xmpp streams namespace. Made
stream-level error conditions render in proper xmlns. Removed
error text backward compartibility positioning.
2004-09-17 23:19 snakeru
* xmpp/simplexml.py: XML namespaces vocabulary introduced. Quick
node access methods introduced.
2004-09-15 22:35 snakeru
* xmpp/simplexml.py: Bugfix: more delicate namespaces processing.
Slow (again) but sure. Bugfix: stream-level CDATA processing.
Feature: stream open/close events system.
2004-09-15 22:30 snakeru
* xmpp/transports.py: Fixed comment.
2004-09-15 22:22 snakeru
* xmpp/roster.py: Bugfix: handle roster item deletion properly.
Translated comment into english.
2004-09-15 22:19 snakeru
* xmpp/protocol.py: Added 'jabber:client' and 'jabber:server'
namespaces.
2004-09-15 18:57 snakeru
* xmpp/filetransfer.py: Comments translated to english.
2004-09-15 18:51 snakeru
* xmpp/dispatcher.py: Added sessions support.
2004-09-15 07:18 snakeru
* xmpp/ietf-docs/draft-ietf-xmpp-core.html: Update to revision 24.
2004-09-13 14:32 snakeru
* doc/examples/xsend.py: Fixed typo: SendInitialPresence =>
SendInitPresence.
2004-08-04 22:41 snakeru
* xmpp/__init__.py: IBB is fixed and worth inclusion.
2004-08-04 22:39 snakeru
* xmpp/__init__.py: IBB stuff is fixed and worth inclusion.
2004-08-04 22:30 snakeru
* xmpp/: __init__.py, features.py, protocol.py: Stable 0.1 will not
include browser and new DataForm class.
2004-08-04 21:35 snakeru
* xmpp/: client.py, filetransfer.py: Fixed and tested IBB. Added
usual debugging stuff to it.
2004-08-04 21:32 snakeru
* xmpp/dispatcher.py: Bugfix: typeless stanzas were processed
several times sometimes.
2004-08-04 21:26 snakeru
* doc/basic.html: Corrections to text donated by Mike Albon.