-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathChangelog
6435 lines (3203 loc) · 223 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
0.84.4
~~~~~~
3144 - Mar 23 17:54:06 2012 - summary: Added tag 0.84.4 for changeset e7a3b8e53abe
3143 - Mar 23 17:35:55 2012 - summary: fix
3142 - Mar 23 17:30:55 2012 - summary: catch missing user Exception
3141 - Mar 23 17:19:40 2012 - summary: setdefault values of fleet config vars
3140 - Mar 23 16:56:28 2012 - summary: more fixes
3139 - Mar 23 16:47:13 2012 - summary: bunch of crap .. getting tired fixing bugs that keep reoccuring
3138 - Mar 23 12:29:15 2012 - summary: this is 0.84.4
3137 - Mar 23 11:21:05 2012 - summary: fix bugs discovered by ./bin/jsb-makedocs
3136 - Mar 23 10:49:13 2012 - summary: add release doc
3135 - Mar 23 08:37:13 2012 - summary: upper loglevel
3134 - Mar 23 01:31:53 2012 - summary: lower loglevel .. default globalcc to ""
3133 - Mar 23 01:25:04 2012 - summary: first check for channel cc then global cc otherwiser set to "!;"
3132 - Mar 22 18:39:53 2012 - summary: check if bot exists
3131 - Mar 22 18:15:25 2012 - summary: check if bot exists
3130 - Mar 22 01:16:39 2012 - summary: this is 0.84.3
3129 - Mar 22 00:59:54 2012 - summary: lower loglevel
3128 - Mar 21 21:02:15 2012 - summary: fix makechangelog
0.84.2
~~~~~~
3127 - Mar 21 21:02:03 2012 - summary: Added tag 0.84.2 for changeset 49b68ccb6ab3
3126 - Mar 19 21:04:42 2012 - summary: fix botlogs
3125 - Mar 19 14:31:19 2012 - summary: enable the keepalive thread
3124 - Mar 19 13:55:23 2012 - summary: fix reconnect code (IRC)
3123 - Mar 18 19:39:00 2012 - summary: fix reconnect part 1
3122 - Mar 18 15:45:32 2012 - summary: lower RequireError to loglevel info
3121 - Mar 18 15:19:08 2012 - summary: tune configuration saving (include other possible options)
3120 - Mar 18 14:47:08 2012 - summary: wait for connectok
3119 - Mar 18 14:44:30 2012 - summary: lower loglevel
3118 - Mar 18 14:25:32 2012 - summary: add possible config vars
3117 - Mar 18 14:04:53 2012 - summary: dont reconnect on failed start
3116 - Mar 18 12:52:22 2012 - summary: tune the fleet
3115 - Mar 17 19:41:21 2012 - summary: fix setup.py
3114 - Mar 17 19:37:39 2012 - summary: remove un needed packages from contrib
3113 - Mar 17 18:57:02 2012 - summary: tune
3112 - Mar 17 16:06:05 2012 - summary: logging nits
3111 - Mar 17 15:44:58 2012 - summary: check for RequireError
3110 - Mar 17 15:38:52 2012 - summary: use opts.nocolor
3109 - Mar 17 15:25:34 2012 - summary: tune loglevel .. "improve" logging format
3108 - Mar 17 02:00:38 2012 - summary: remove convore bot from the distro
3107 - Mar 17 01:05:03 2012 - summary: fix typo
3106 - Mar 17 01:03:45 2012 - summary: check for RequireError
3105 - Mar 17 00:54:01 2012 - summary: check for RequireError
3104 - Mar 17 00:51:20 2012 - summary: check for RequireError
3103 - Mar 17 00:46:13 2012 - summary: dont forget to import
3102 - Mar 17 00:45:52 2012 - summary: catch RequireError in EventBase.execute()
3101 - Mar 17 00:31:43 2012 - summary: properly import RequireError
3100 - Mar 17 00:27:05 2012 - summary: lock the getfleet
3099 - Mar 17 00:25:19 2012 - summary: load the fleet bots in getfleet
3098 - Mar 17 00:05:18 2012 - summary: add example to fish docs
3097 - Mar 16 23:52:51 2012 - summary: put txt inside exception
3096 - Mar 16 23:37:34 2012 - summary: fix
3095 - Mar 16 23:35:28 2012 - summary: its 2012 now
3094 - Mar 16 23:34:30 2012 - summary: fix typo
3093 - Mar 16 23:07:23 2012 - summary: disable rss-clone commands
3092 - Mar 16 23:00:14 2012 - summary: update docs
3091 - Mar 16 21:58:01 2012 - summary: add config know to fish plugin
3090 - Mar 16 21:35:14 2012 - summary: Corrected a typo in jsb.lib.errors
3089 - Mar 16 21:27:36 2012 - summary: implement a RequireError
3088 - Mar 16 19:36:19 2012 - summary: add bot.cfg.onconnect .. string to send after bot has logged in
3087 - Mar 16 19:25:34 2012 - summary: add onconnect and onconnectmode configuration strings
3086 - Mar 16 18:11:42 2012 - summary: fix test-plugs
3085 - Mar 16 17:16:27 2012 - summary: check if fleet is not empty
3084 - Mar 16 16:14:38 2012 - summary: fix fleet-cmnd ... use a control char !
3083 - Mar 16 15:14:52 2012 - summary: tune fleet bot registering
3082 - Mar 16 14:03:04 2012 - summary: update fleet booting
3081 - Mar 16 10:41:15 2012 - summary: add bot to fleet in BotBase.start()
3080 - Mar 15 14:50:26 2012 - summary: use unicode string
3079 - Mar 15 07:44:20 2012 - summary: dont add multiple tornado bots
3078 - Mar 15 07:41:42 2012 - summary: fix done command
3077 - Mar 15 07:40:04 2012 - summary: add fleet-save
3076 - Mar 15 07:18:55 2012 - summary: fix Fleet.addbot()
3075 - Mar 15 06:14:11 2012 - summary: make boot work on gae
3074 - Mar 15 03:37:17 2012 - summary: properly load plugins (or not)
3073 - Mar 15 02:54:58 2012 - summary: update API doc
3072 - Mar 15 02:50:27 2012 - summary: update
3071 - Mar 15 02:31:05 2012 - summary: update pluginlist
3070 - Mar 14 22:05:43 2012 - summary: fix fleet.loadall
3069 - Mar 14 21:59:07 2012 - summary: force loading of plugins if myplugs had changed
3068 - Mar 14 21:47:07 2012 - summary: remove dns from the contrib
3067 - Mar 14 21:33:53 2012 - summary: fix sleek
3066 - Mar 14 19:42:45 2012 - summary: detect config file changes on boot
3065 - Mar 14 18:27:35 2012 - summary: provide a !qq command that quits the bot
3064 - Mar 14 13:24:53 2012 - summary: show proper done() message
3063 - Mar 14 13:21:53 2012 - summary: put loggin message at the right place
3062 - Mar 14 13:05:57 2012 - summary: print message if db driver is disabled
3061 - Mar 14 04:42:31 2012 - summary: set aliases
3060 - Mar 14 04:27:04 2012 - summary: unload plugins when needed
3059 - Mar 14 03:42:43 2012 - summary: wish i knew ;]
3058 - Mar 14 02:15:24 2012 - summary: fix event.missing()
3057 - Mar 14 01:44:23 2012 - summary: fix aliases error
3056 - Mar 14 00:55:12 2012 - summary: add aliascheck
3055 - Mar 14 00:09:59 2012 - summary: properly do the alias thing
3054 - Mar 13 23:27:25 2012 - summary: set integer properly
3053 - Mar 13 21:44:38 2012 - summary: disable the database driver by default
3052 - Mar 13 21:42:32 2012 - summary: * Changed order in loading sqlite3 due of name clashing with Ubuntu 11.10
3051 - Mar 13 21:15:30 2012 - summary: dont enable database access by default
3050 - Mar 13 04:11:22 2012 - summary: enter the 0.84.2 RELEASE .. make jsb-makedocs work
3049 - Mar 13 01:57:44 2012 - summary: fix rss-start in /msg (IRC)
3048 - Mar 13 01:11:59 2012 - summary: fix urlinfo-list
3047 - Mar 13 00:05:33 2012 - summary: try fixing push to conference channels .. over to test
3046 - Mar 12 23:53:24 2012 - summary: fix push to conferences
3045 - Mar 12 21:24:35 2012 - summary: update jsb-init for jsb-sleek
3044 - Mar 12 18:46:44 2012 - summary: check for bare sqlite3 first
3043 - Mar 12 18:31:24 2012 - summary: update lib version to 0.84
3042 - Mar 12 07:53:33 2012 - summary: fix test_plugs
3041 - Mar 12 06:34:25 2012 - summary: enter the addguest() .. use nickname where possible
3040 - Mar 12 06:12:53 2012 - summary: read the proper mainconfig file
3039 - Mar 12 00:13:20 2012 - summary: fix EventBase.makeargs()
3038 - Mar 12 00:04:04 2012 - summary: dont bork on missing year
3037 - Mar 11 22:42:48 2012 - summary: skip delayed messages
3036 - Mar 11 21:29:29 2012 - summary: nits and bolts and pieces
3035 - Mar 11 14:15:16 2012 - summary: add presence notification to jsb-sleek
3034 - Mar 11 11:30:23 2012 - summary: update jsb-xmpp(1) manpage
3033 - Mar 11 11:28:38 2012 - summary: add the jsb-sleek(1) man page
3032 - Mar 11 11:05:47 2012 - summary: fix handler_dispatch
3031 - Mar 11 00:48:54 2012 - summary: enter 0.84.2
3030 - Mar 10 23:01:21 2012 - summary: fix makechangelog
0.84.1
~~~~~~
3029 - Mar 10 22:52:46 2012 - summary: Added tag 0.84.1 for changeset e82ce7368493
3028 - Mar 10 22:06:51 2012 - summary: add urban plugin
3027 - Mar 10 17:26:22 2012 - summary: restore old setup
3026 - Mar 10 17:20:07 2012 - summary: tune !
3025 - Mar 10 17:16:29 2012 - summary: move bare setup.py in place
3024 - Mar 10 17:15:16 2012 - summary: move setup.py to setup-full.py .. run this if you want all the deps
3023 - Mar 10 17:00:03 2012 - summary: fix sleek bot
3022 - Mar 10 15:35:34 2012 - summary: add the sleek
3021 - Mar 10 15:34:56 2012 - summary: enter the jsb-sleek
3020 - Mar 08 13:25:39 2012 - summary: speedy thing
3019 - Mar 08 13:11:09 2012 - summary: remove debug print
3018 - Mar 08 13:06:54 2012 - summary: fix dcc chat commands
3017 - Mar 08 12:58:39 2012 - summary: remove debug print
3016 - Mar 08 10:40:39 2012 - summary: properly fix binding of events
3015 - Mar 08 10:12:39 2012 - summary: fix irc connect
3014 - Mar 08 09:13:07 2012 - summary: fix test-plugs
3013 - Mar 08 08:56:56 2012 - summary: use url_disable
3012 - Mar 08 03:14:31 2012 - summary: add gethapi() to the import bunch
3011 - Mar 08 02:57:53 2012 - summary: fix channel specific cc detection ..thnx ArcAngel ;]
3010 - Mar 07 21:30:25 2012 - summary: this is 0.84.1
3009 - Mar 07 15:51:10 2012 - summary: add hapi to the contrib
0.84.0
~~~~~~
3008 - Mar 07 15:45:13 2012 - summary: Added tag 0.84.0 for changeset 4d5e0d18c0fb
3007 - Mar 06 06:11:20 2012 - summary: preserve EventBase.txt and use EventBase.execstr to dispatch from
3006 - Mar 06 05:30:30 2012 - summary: update doc segments
3005 - Mar 05 20:46:30 2012 - summary: add hapi API wrapper
3004 - Mar 05 18:31:45 2012 - summary: properly detect remote disconnect
3003 - Mar 05 14:03:52 2012 - summary: dont reset reconnectcount in BotBase.reconnect()
3002 - Mar 05 13:27:09 2012 - summary: properly catch exceptions
3001 - Mar 03 11:39:47 2012 - summary: be more verbose when shutting down
3000 - Mar 03 09:49:38 2012 - summary: fix nickcapture
2999 - Mar 03 00:35:06 2012 - summary: update to tornado 2.2
2998 - Mar 03 00:33:52 2012 - summary: smooth as it goes ;]
2997 - Mar 03 00:09:53 2012 - summary: upgrade to tornado 2.2
2996 - Mar 02 23:12:31 2012 - summary: make faster
2995 - Mar 02 21:55:09 2012 - summary: properly display error string
2994 - Mar 02 20:56:36 2012 - summary: implement init_threaded
2993 - Mar 02 10:43:57 2012 - summary: break readloop on error
2992 - Mar 02 10:22:57 2012 - summary: first sleep on reconnect to prevent looping
2991 - Feb 28 17:54:23 2012 - summary: move new irccat to irccat2 and restore old irccat
2990 - Feb 28 11:54:11 2012 - summary: fix
2989 - Feb 27 19:54:28 2012 - summary: fix irccat plugin .. cast to unicode on entrance
2988 - Feb 27 19:00:37 2012 - summary: over to test
2987 - Feb 26 13:33:16 2012 - summary: lock the BotBase.put() method
2986 - Feb 26 07:33:11 2012 - summary: fix RSS
2985 - Feb 25 21:30:50 2012 - summary: check for cfg.owner
2984 - Feb 25 21:27:06 2012 - summary: RC
2983 - Feb 25 21:26:37 2012 - summary: make 0.84.0 a RC
2982 - Feb 25 21:15:43 2012 - summary: set showall to True on websockets
2981 - Feb 25 20:07:36 2012 - summary: default event.nobind to True so you need to enable this first
2980 - Feb 24 23:12:13 2012 - summary: limit callbacks input a bit
2979 - Feb 24 21:26:03 2012 - summary: given normal response when command is not found
2978 - Feb 24 15:52:45 2012 - summary: set event.dontbind in pipelined events
2977 - Feb 24 15:44:23 2012 - summary: lower loglevel
2976 - Feb 24 15:15:44 2012 - summary: read as less config file stuff during import
2975 - Feb 24 11:35:41 2012 - summary: move back to the old irc driver
2974 - Feb 24 11:05:01 2012 - summary: set default timeout on 301 seconds
2973 - Feb 24 06:13:47 2012 - summary: check if self.bot is defined
2972 - Feb 24 06:08:17 2012 - summary: unbreak the GAE xmpp handler (esp. for error messages)
2971 - Feb 24 05:11:40 2012 - summary: set dontbind to False in handler_dispatch
2970 - Feb 24 04:28:26 2012 - summary: bind event properly
2969 - Feb 23 12:46:45 2012 - summary: lower loglevels .. restrict binding of events to dispatchable events
2968 - Feb 22 22:30:45 2012 - summary: make udpallowednicks optional aka setting to empty will allow all
2967 - Feb 22 22:02:19 2012 - summary: make default message type "chat"
2966 - Feb 22 21:17:25 2012 - summary: disable the pingloop for now
2965 - Feb 22 15:13:20 2012 - summary: load the irccat plugin per default
2964 - Feb 21 23:29:51 2012 - summary: skip admin commands
2963 - Feb 21 23:15:32 2012 - summary: explain event.execute() requirements
2962 - Feb 21 23:14:31 2012 - summary: fix doc generation
2961 - Feb 21 23:09:35 2012 - summary: skip over not found commands
2960 - Feb 21 23:02:51 2012 - summary: fix dcc chat
2959 - Feb 21 22:44:37 2012 - summary: show whole output on xmpp /msg
2958 - Feb 21 19:52:41 2012 - summary: smooth things a bit for GAE
2957 - Feb 21 17:35:10 2012 - summary: tune the input speed of events
2956 - Feb 21 17:28:52 2012 - summary: a bit better !
2955 - Feb 21 17:01:57 2012 - summary: inlock the loop
2954 - Feb 21 15:17:50 2012 - summary: use direct=True to fake correct unittests
2953 - Feb 21 13:39:00 2012 - summary: fix addressing modes
2952 - Feb 21 07:20:41 2012 - summary: make GAE shizzle work
2951 - Feb 20 21:15:27 2012 - summary: dont bork if loading of database is failing
2950 - Feb 20 20:12:51 2012 - summary: add --oauth support
2949 - Feb 20 19:58:27 2012 - summary: fix GAE console bot
2948 - Feb 20 09:06:22 2012 - summary: don't use a timeout in select()
2947 - Feb 20 01:48:03 2012 - summary: speedup the response time
2946 - Feb 20 01:41:19 2012 - summary: update markov algo
2945 - Feb 20 00:55:21 2012 - summary: set markov order to 2
2944 - Feb 20 00:47:34 2012 - summary: always bind the event when running event.execute()
2943 - Feb 20 00:13:46 2012 - summary: prepare the events properlt
2942 - Feb 19 23:29:44 2012 - summary: check if command is already there
2941 - Feb 19 23:25:16 2012 - summary: dont overload basic commands
2940 - Feb 19 22:27:25 2012 - summary: use 1 global db instance
2939 - Feb 19 21:23:30 2012 - summary: add shorttable index
2938 - Feb 19 20:51:38 2012 - summary: make tornado bot work
2937 - Feb 19 13:15:57 2012 - summary: fix ircbot
2936 - Feb 19 13:13:34 2012 - summary: fix xmpp bot
2935 - Feb 19 12:08:29 2012 - summary: fix pipeline
2934 - Feb 19 00:34:57 2012 - summary: fix !test-plugs on jabber
2933 - Feb 19 00:01:13 2012 - summary: fix direct console bot execution
2932 - Feb 18 23:17:20 2012 - summary: testing nits
2931 - Feb 18 22:58:03 2012 - summary: fix tests on tornado bot
2930 - Feb 18 21:54:29 2012 - summary: fix tornado
2929 - Feb 18 20:42:39 2012 - summary: more tuning
2928 - Feb 18 15:45:52 2012 - summary: fix the tornado !
2927 - Feb 18 13:56:52 2012 - summary: fix jabber
2926 - Feb 18 12:24:47 2012 - summary: tune in !
2925 - Feb 18 03:41:50 2012 - summary: sleep less in waitforqueue
2924 - Feb 17 20:26:06 2012 - summary: revamp detection of command stuff
2923 - Feb 17 15:21:27 2012 - summary: remove aliases from commands index. check for event.chan.data.aliases as
2922 - Feb 17 00:02:55 2012 - summary: fix fleet-cmnd command
2921 - Feb 16 23:25:48 2012 - summary: join threads before returning from wait()
2920 - Feb 16 21:08:29 2012 - summary: strip some attributes
2919 - Feb 16 16:39:06 2012 - summary: lower loglevels
2918 - Feb 16 09:46:37 2012 - summary: fix reconnect for sxmpp
2917 - Feb 16 07:57:12 2012 - summary: add default pingcheck method
2916 - Feb 16 06:50:42 2012 - summary: fix command exec after reconnect
2915 - Feb 16 01:33:40 2012 - summary: first attempt at irc reconnect stuff
2914 - Feb 15 22:43:07 2012 - summary: add beginning of the cfg plugin
2913 - Feb 15 22:42:54 2012 - summary: silence stream in debug loglevel .. nits and bolts !
2912 - Feb 15 13:04:57 2012 - summary: make plug-enable and plug-disable work properly
2911 - Feb 15 07:32:42 2012 - summary: sleep less
2910 - Feb 15 07:02:58 2012 - summary: sleep a bit less
2909 - Feb 15 06:38:06 2012 - summary: sleep a bit .. limit to 100 tps
2908 - Feb 15 05:54:52 2012 - summary: enable disabling of geturl functionality
2907 - Feb 15 04:43:35 2012 - summary: return {} in case of disabled geturl()
2906 - Feb 15 04:38:46 2012 - summary: more stuff
2905 - Feb 15 04:06:08 2012 - summary: make enabled accessible in geturl2
2904 - Feb 15 03:54:23 2012 - summary: tunes and nits
2903 - Feb 14 21:50:46 2012 - summary: user getusers()
2902 - Feb 14 21:47:16 2012 - summary: initiases commands after aliases so the get in the cmnd table for sure
2901 - Feb 14 20:14:40 2012 - summary: lower loglevel
2900 - Feb 14 19:24:42 2012 - summary: set nodispatch=False in EventBas.execute()
2899 - Feb 14 19:10:05 2012 - summary: fix GAE and dotest()
2898 - Feb 14 17:04:58 2012 - summary: fix irccat to use all available fleet bot. thnx to ingard.
2897 - Feb 14 17:02:49 2012 - summary: enter 0.84.0
2896 - Feb 14 16:37:09 2012 - summary: move formatparser
2895 - Feb 14 16:35:28 2012 - summary: import tehmaze-parser-ccc6923.zip
2894 - Feb 14 16:12:00 2012 - summary: add parse module
2893 - Feb 14 15:52:18 2012 - summary: branch merge .. update with bthate-core.googlecode.com/hg
2892 - Feb 14 15:50:03 2012 - summary: update makedocs
2891 - Feb 14 14:55:59 2012 - summary: set event.nodispatch to default to True
2890 - Feb 13 21:06:55 2012 - summary: silence some exceptions
2889 - Feb 13 17:58:32 2012 - summary: more tuning
2888 - Feb 13 16:30:49 2012 - summary: ok something to work with
2887 - Feb 13 13:51:13 2012 - summary: branch merge
2886 - Feb 13 01:13:53 2012 - summary: over to test
2885 - Feb 13 13:32:13 2012 - summary: nits
2884 - Feb 12 21:06:06 2012 - summary: call ievent.ready()
2883 - Feb 13 11:53:16 2012 - summary: catch exception
2882 - Feb 12 07:30:47 2012 - summary: update
2881 - Feb 11 15:58:53 2012 - summary: nits
2880 - Feb 11 15:53:32 2012 - summary: implement overflow-search
2879 - Feb 11 10:53:31 2012 - summary: update overflow plugin to fetch answers .. add threaded_init() to the API
2878 - Feb 10 14:47:42 2012 - summary: call wait cb directly, waitrunner is not working well
2877 - Feb 10 13:48:17 2012 - summary: track displayed data by creation_date
2876 - Feb 10 06:58:21 2012 - summary: use the creation_date to check if we have already seen an item
2875 - Feb 10 06:56:19 2012 - summary: fixes fixes fixes
2874 - Feb 10 06:47:51 2012 - summary: store uuid of the raw data
2873 - Feb 10 06:45:57 2012 - summary: print on 1 line
2872 - Feb 10 06:41:49 2012 - summary: allow loop to be stopped
2871 - Feb 10 06:33:50 2012 - summary: fix stuff
2870 - Feb 09 20:00:11 2012 - summary: remove grabber
2869 - Feb 09 19:59:58 2012 - summary: move to overflow.py
2868 - Feb 09 15:17:05 2012 - summary: use default query size of 10
2867 - Feb 09 14:18:35 2012 - summary: update
2866 - Feb 09 13:14:47 2012 - summary: implement stackoverflow-start/stop .. limit flood to 3 items
2865 - Feb 09 11:51:02 2012 - summary: nits
2864 - Feb 08 23:38:20 2012 - summary: tunes
2863 - Feb 08 23:34:55 2012 - summary: update stackoverflow url
2862 - Feb 08 21:39:28 2012 - summary: make stackoverflow plugin a poller
2861 - Feb 08 16:32:44 2012 - summary: add stackoverflow plugin
2860 - Feb 08 14:37:39 2012 - summary: add StackOverflow grabber
2859 - Feb 06 23:02:10 2012 - summary: use striphtml and try to remove javascript
2858 - Feb 06 22:36:25 2012 - summary: silence default response
2857 - Feb 06 22:21:55 2012 - summary: default to cc = "!;"
2856 - Feb 06 21:28:05 2012 - summary: dont echo if we cant find a command. default cc to ;
2855 - Feb 05 21:32:57 2012 - summary: throw disabled exception if fleet bot is disabled
2854 - Feb 05 19:57:50 2012 - summary: update docstring
2853 - Feb 05 16:53:26 2012 - summary: set default cc to ;
2852 - Feb 05 15:31:46 2012 - summary: enter teh warp !
2851 - Feb 05 07:30:53 2012 - summary: fix GAE on python27
2850 - Feb 04 21:06:46 2012 - summary: add timeout to geturl2() .. add first attempt at a yacy plugin
2849 - Feb 03 20:54:20 2012 - summary: wait on the proper event
2848 - Feb 01 23:31:49 2012 - summary: fix GAE stuff
2847 - Feb 01 08:07:27 2012 - summary: bla
2846 - Feb 01 00:09:05 2012 - summary: strip target from markov word list
2845 - Jan 29 13:31:38 2012 - summary: learn all stuff on learnadd
2844 - Jan 29 13:25:30 2012 - summary: more tunage
2843 - Jan 29 12:52:02 2012 - summary: tune the markov
2842 - Jan 29 00:49:06 2012 - summary: over to test
2841 - Jan 28 23:34:11 2012 - summary: dont reload the plugin on enable
2840 - Jan 28 23:24:31 2012 - summary: tune
2839 - Jan 28 23:19:24 2012 - summary: make command=0 config option work (respond to target found)
2838 - Jan 28 22:35:46 2012 - summary: fix markovlearnspider
2837 - Jan 28 22:09:22 2012 - summary: feed spider data into the markov chains
2836 - Jan 28 13:04:21 2012 - summary: fix learn plugin
2835 - Jan 28 06:30:09 2012 - summary: add jsb-pluglist .. generates a list of plugins with description
2834 - Jan 27 22:28:51 2012 - summary: fix tornado bot rebooting
2833 - Jan 27 21:43:06 2012 - summary: fix bug 85 http://code.google.com/p/jsonbot/issues/detail?id=85
2832 - Jan 27 21:17:49 2012 - summary: fix bug nr 84 http://code.google.com/p/jsonbot/issues/detail?id=84
2831 - Jan 27 13:07:53 2012 - summary: don't initialize aliases on import time
2830 - Jan 27 12:30:21 2012 - summary: don't run kickban plugin on non irc bots
2829 - Jan 27 03:13:23 2012 - summary: fix banlist fetching
2828 - Jan 27 02:39:55 2012 - summary: fix help and stuff
2827 - Jan 27 00:56:14 2012 - summary: dont be that anal
2826 - Jan 27 00:51:11 2012 - summary: fix reboot code
2825 - Jan 26 22:51:31 2012 - summary: branch merge
2824 - Jan 26 15:42:21 2012 - summary: fix ops
2823 - Jan 26 01:00:25 2012 - summary: split out wouldmatchre from woulddispatch.
2822 - Jan 26 00:16:29 2012 - summary: check for existence of bot.cfg.channels
2821 - Jan 26 22:50:42 2012 - summary: default floodallow to 1
2820 - Jan 25 23:14:08 2012 - summary: limit floodcontrol to only commands
2819 - Jan 25 22:11:15 2012 - summary: start on 0.83.0
2818 - Jan 24 23:36:25 2012 - summary: its floodallow
2817 - Jan 24 23:35:29 2012 - summary: check for mainconfig.foodallow
2816 - Jan 24 11:00:24 2012 - summary: update docs
2815 - Jan 14 02:29:52 2012 - summary: wait properly for event to finish (wel almost properly)
0.82.0
~~~~~~
2814 - Jan 14 02:01:21 2012 - summary: Added tag 0.82.0 for changeset a556ee32dc51
2813 - Jan 14 00:55:45 2012 - summary: tick every second
2812 - Jan 13 19:20:40 2012 - summary: move to todo2
2811 - Jan 13 16:32:03 2012 - summary: add gozerbot ported todo plugin
2810 - Jan 13 15:24:39 2012 - summary: fix quote2-last
2809 - Jan 12 10:10:26 2012 - summary: add floodcontrol to tornado API
2808 - Jan 12 09:41:31 2012 - summary: show proper dbtype on startup
2807 - Jan 12 09:16:02 2012 - summary: up to 0.82.0
2806 - Jan 12 08:51:40 2012 - summary: fix pipeline
2805 - Jan 12 04:50:08 2012 - summary: check if sqlite3 is available
2804 - Jan 12 04:34:14 2012 - summary: fix
2803 - Jan 12 04:10:24 2012 - summary: use issaved to indicate saved config files
2802 - Jan 12 03:45:10 2012 - summary: fix aliases
2801 - Jan 12 03:11:33 2012 - summary: add aliases AND SHIT !! ;]
2800 - Jan 12 01:32:19 2012 - summary: set version properly without accesing the mainconfig
2799 - Jan 12 00:50:13 2012 - summary: fix size .. dont use relay in test-plugs
2798 - Jan 12 00:41:36 2012 - summary: fix examples
2797 - Jan 12 00:25:14 2012 - summary: fix RE dispatching
2796 - Jan 12 00:15:02 2012 - summary: remove dot= from ieven.reply()
2795 - Jan 12 00:09:43 2012 - summary: fix karma2-get
2794 - Jan 12 00:02:21 2012 - summary: more db stuff .. fix RE usage
2793 - Jan 11 23:13:13 2012 - summary: add table definitions
2792 - Jan 11 23:05:49 2012 - summary: update db stuff
2791 - Jan 11 22:01:12 2012 - summary: move db plugins to their own versions
2790 - Jan 11 17:03:44 2012 - summary: fix loading of db plugs
2789 - Jan 11 14:51:59 2012 - summary: mvoe infoitem plugin over
2788 - Jan 11 14:37:46 2012 - summary: convert birthday
2787 - Jan 11 14:25:11 2012 - summary: add gozerbot db plugins to the bunch .. need to convert this
2786 - Jan 10 01:56:41 2012 - summary: move jquery stuff into the tornado prog
2785 - Jan 09 00:06:23 2012 - summary: more floodcontrol stuff
2784 - Jan 08 23:15:12 2012 - summary: use event.user in floodcontrol
2783 - Jan 07 05:48:58 2012 - summary: first attempt at floodcontrol
2782 - Jan 07 02:38:28 2012 - summary: create a local cache of bots
2781 - Jan 07 01:54:35 2012 - summary: is we are on GAE overload the config read from file with the db version
2780 - Jan 06 22:32:08 2012 - summary: adapt LICENSE to 2012
2779 - Jan 05 04:58:25 2012 - summary: branch merge
2778 - Jan 05 04:57:28 2012 - summary: fix bot on python2.5
2777 - Jan 05 03:58:52 2012 - summary: enter 0.81.2 DEVELOPMENT
2776 - Jan 05 02:57:43 2012 - summary: fix makechangelog
0.81.1
~~~~~~
2775 - Jan 05 02:52:15 2012 - summary: Added tag 0.81.1 for changeset 9931e903543f
2774 - Jan 05 02:40:55 2012 - summary: add jsb.api to the bunch
2773 - Jan 05 02:20:04 2012 - summary: add filter to test0-plugs command .. fix db generation in lists plugin
2772 - Jan 05 01:36:27 2012 - summary: check for non existent commands
2771 - Jan 04 23:47:15 2012 - summary: generate docs with direct exec mode
2770 - Jan 04 23:06:56 2012 - summary: serialize command execution in plain bin/jsb calls
2769 - Jan 04 15:33:50 2012 - summary: fix shell bot a bit
2768 - Jan 04 01:10:06 2012 - summary: make sure lists plugin works in the jsbnest
2767 - Jan 04 00:43:11 2012 - summary: put this db module in jsb.db.direct
2766 - Jan 04 00:37:56 2012 - summary: silence error
2765 - Jan 04 00:34:44 2012 - summary: make it actually work
2764 - Jan 04 00:12:44 2012 - summary: add __init__.py
2763 - Jan 04 00:04:18 2012 - summary: first attempt at integrating db support into jsonbot
2762 - Jan 03 03:12:56 2012 - summary: check for delayed messages
2761 - Jan 03 02:10:24 2012 - summary: branch merge
2760 - Jan 02 23:04:37 2012 - summary: serialize doc generation stuff
2759 - Jan 02 01:30:37 2012 - summary: lower loglevels
2758 - Jan 02 00:56:20 2012 - summary: lower loglevels
2757 - Jan 01 01:50:15 2012 - summary: fix logging into hipchat
2756 - Dec 31 16:35:34 2011 - summary: bunch of crap
2755 - Dec 31 01:09:41 2011 - summary: first attempt at the jsb.api package
2754 - Dec 30 23:20:29 2011 - summary: lower loglevels
2753 - Dec 30 20:32:35 2011 - summary: dont wait for a response if the event is not a command
2752 - Dec 30 11:39:53 2011 - summary: lower loglevel
2751 - Jan 02 17:57:27 2012 - summary: Fixed jira to get server info each time (times out otherwise)
2750 - Dec 30 00:18:41 2011 - summary: fix xmpp MUC joins
2749 - Dec 29 21:16:46 2011 - summary: skip hidden dirs
2748 - Dec 29 15:30:30 2011 - summary: make pipelines work again
2747 - Dec 29 15:28:02 2011 - summary: fist attempt at writing an API for JSONBOT
2746 - Dec 29 03:45:27 2011 - summary: fix tornado websocket for chrome
2745 - Dec 29 02:26:59 2011 - summary: more fix
2744 - Dec 29 02:12:43 2011 - summary: fix web console
2743 - Dec 28 16:46:43 2011 - summary: lower loglevel
2742 - Dec 28 16:39:03 2011 - summary: lower loglevel
2741 - Dec 28 07:08:14 2011 - summary: renable rss fetch logging
2740 - Dec 28 06:58:21 2011 - summary: make rss-setsleeptime OPER only
2739 - Dec 28 04:27:00 2011 - summary: fix plus-stop
2738 - Dec 28 04:05:35 2011 - summary: switch to bot.say() for rss delivery .. means feeds get relayed as well
2737 - Dec 28 01:52:00 2011 - summary: more relay docs
2736 - Dec 28 01:46:41 2011 - summary: give better relay example
2735 - Dec 28 00:52:13 2011 - summary: fix reloading of the plus plugin
2734 - Dec 28 00:12:05 2011 - summary: fix
2733 - Dec 27 23:46:15 2011 - summary: fix plus plugin
2732 - Dec 27 21:50:35 2011 - summary: make rss-seturl OPER perms
2731 - Dec 27 19:45:50 2011 - summary: plus plugin work
2730 - Dec 27 15:23:29 2011 - summary: fix pipeline on GAE
2729 - Dec 27 15:14:57 2011 - summary: testbed stuff
2728 - Dec 27 14:59:35 2011 - summary: add jsb/tests package
2727 - Dec 27 00:56:52 2011 - summary: fix creation of PlugPersistCollection objects
2726 - Dec 27 00:35:07 2011 - summary: this is 0.81.1
2725 - Dec 26 21:07:41 2011 - summary: start the irc bot
2724 - Dec 26 20:31:13 2011 - summary: dont limit str(lazydict) to json ready stuff
2723 - Dec 26 17:41:05 2011 - summary: lower loglevels
2722 - Dec 26 16:31:51 2011 - summary: looks better
2721 - Dec 26 15:28:21 2011 - summary: fix a bit
2720 - Dec 26 00:09:18 2011 - summary: bit better
2719 - Dec 25 09:20:18 2011 - summary: over to test
2718 - Dec 25 05:45:36 2011 - summary: more tune
2717 - Dec 25 05:31:23 2011 - summary: looks ok
2716 - Dec 25 03:54:13 2011 - summary: nits
2715 - Dec 25 03:41:59 2011 - summary: more tuning
2714 - Dec 25 02:38:12 2011 - summary: fix
2713 - Dec 25 02:20:39 2011 - summary: core rewrite part 1
2712 - Dec 23 18:48:02 2011 - summary: add thread name to the logs
2711 - Dec 23 11:38:20 2011 - summary: lower loglevel
2710 - Dec 23 02:51:14 2011 - summary: check if runner can be removed
2709 - Dec 23 01:59:48 2011 - summary: enable direct mod path
2708 - Dec 23 01:55:30 2011 - summary: fix
2707 - Dec 23 01:53:32 2011 - summary: add first attempt at a google plus plugin
2706 - Dec 22 23:25:54 2011 - summary: add autovoice plugin
2705 - Dec 22 20:44:39 2011 - summary: create spider/data/ as well
2704 - Dec 22 20:28:17 2011 - summary: cleanup better
2703 - Dec 22 18:56:32 2011 - summary: fix users.names()
2702 - Dec 22 13:54:49 2011 - summary: do try to reconnect 5 seconds after websocket close
2701 - Dec 22 13:48:24 2011 - summary: emit the OUTPUT event before doing the actual output
2700 - Dec 22 11:14:19 2011 - summary: lower loglevels
2699 - Dec 22 10:28:26 2011 - summary: use blocking get()
2698 - Dec 22 02:03:47 2011 - summary: dont catch exception in connect
2697 - Dec 13 15:02:11 2011 - summary: add qconsole.html
2696 - Dec 13 14:52:55 2011 - summary: over to test bugtracker ..
2695 - Dec 11 16:37:34 2011 - summary: thread urlget commands ..
2694 - Dec 10 03:56:17 2011 - summary: add jsb-jquery program to test jquery stuff with
2693 - Dec 10 03:55:58 2011 - summary: trim jsb-tornado
2692 - Dec 10 03:05:33 2011 - summary: change frontpage to console for now
2691 - Dec 10 01:18:43 2011 - summary: use bot.users
2690 - Dec 09 16:18:00 2011 - summary: add test_plugs
2689 - Dec 09 04:41:41 2011 - summary: enter jquery ui
2688 - Dec 09 04:36:41 2011 - summary: add jquery stuff
2687 - Dec 09 02:18:25 2011 - summary: lock the callback so the test passes
2686 - Dec 09 02:13:42 2011 - summary: fix unittests on shell
2685 - Dec 09 01:34:27 2011 - summary: update persist stuff and tests
2684 - Dec 09 01:05:59 2011 - summary: add jsb-testbed program
2683 - Dec 08 22:35:34 2011 - summary: check if data exists before logging
2682 - Dec 08 16:12:31 2011 - summary: check if learned item is already in result list
2681 - Dec 08 07:17:53 2011 - summary: update loadtest app
2680 - Dec 08 06:27:13 2011 - summary: add beginning of the load test program
2679 - Dec 08 00:16:00 2011 - summary: fix GAE local dev
2678 - Dec 07 15:56:25 2011 - summary: fix auto_register
2677 - Dec 06 23:26:13 2011 - summary: fix rss on GAE
2676 - Dec 06 20:16:47 2011 - summary: dont reconnect if channel is closed (for now)
2675 - Dec 06 16:10:51 2011 - summary: fetch from memcached first
2674 - Dec 06 08:44:12 2011 - summary: fix spider on GAE
2673 - Dec 06 07:50:14 2011 - summary: make search work on GAE
2672 - Dec 06 05:11:05 2011 - summary: update queue.yaml example
2671 - Dec 06 05:09:20 2011 - summary: GAE work part 1
2670 - Dec 06 02:22:13 2011 - summary: lower loglevels
2669 - Dec 06 02:19:47 2011 - summary: update boot sequence
2668 - Dec 05 21:12:54 2011 - summary: remove googletranslate from JSONBOT
2667 - Dec 05 16:44:02 2011 - summary: add sockets program .. list open connections
2666 - Dec 05 15:54:06 2011 - summary: add the snarf plugin
2665 - Dec 04 22:44:22 2011 - summary: fix unittests
2664 - Dec 04 15:09:48 2011 - summary: first check if we have result with count > 2
2663 - Dec 04 15:05:15 2011 - summary: add PersistCollection.search()
2662 - Dec 04 14:35:08 2011 - summary: search plugin update x
2661 - Dec 04 00:31:09 2011 - summary: more search working done
2660 - Dec 03 22:35:06 2011 - summary: update search command