nadoka 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. data/.gitignore +5 -0
  2. data/ChangeLog.old +1553 -0
  3. data/Gemfile +4 -0
  4. data/README.org +31 -0
  5. data/Rakefile +1 -0
  6. data/bin/nadoka +13 -0
  7. data/lib/rss_check.rb +206 -0
  8. data/lib/tagparts.rb +206 -0
  9. data/nadoka.gemspec +29 -0
  10. data/nadoka.rb +123 -0
  11. data/nadokarc +267 -0
  12. data/ndk/bot.rb +241 -0
  13. data/ndk/client.rb +288 -0
  14. data/ndk/config.rb +571 -0
  15. data/ndk/error.rb +61 -0
  16. data/ndk/logger.rb +311 -0
  17. data/ndk/server.rb +784 -0
  18. data/ndk/server_state.rb +324 -0
  19. data/ndk/version.rb +44 -0
  20. data/plugins/autoawaybot.nb +66 -0
  21. data/plugins/autodumpbot.nb +227 -0
  22. data/plugins/autoop.nb +56 -0
  23. data/plugins/backlogbot.nb +88 -0
  24. data/plugins/checkbot.nb +64 -0
  25. data/plugins/cronbot.nb +20 -0
  26. data/plugins/dictbot.nb +53 -0
  27. data/plugins/drbcl.rb +39 -0
  28. data/plugins/drbot.nb +93 -0
  29. data/plugins/evalbot.nb +49 -0
  30. data/plugins/gonzuibot.nb +41 -0
  31. data/plugins/googlebot.nb +345 -0
  32. data/plugins/identifynickserv.nb +43 -0
  33. data/plugins/mailcheckbot.nb +0 -0
  34. data/plugins/marldiabot.nb +99 -0
  35. data/plugins/messagebot.nb +96 -0
  36. data/plugins/modemanager.nb +150 -0
  37. data/plugins/opensearchbot.nb +156 -0
  38. data/plugins/opshop.nb +23 -0
  39. data/plugins/pastebot.nb +46 -0
  40. data/plugins/roulettebot.nb +33 -0
  41. data/plugins/rss_checkbot.nb +121 -0
  42. data/plugins/samplebot.nb +24 -0
  43. data/plugins/sendpingbot.nb +17 -0
  44. data/plugins/shellbot.nb +59 -0
  45. data/plugins/sixamobot.nb +77 -0
  46. data/plugins/tenkibot.nb +111 -0
  47. data/plugins/timestampbot.nb +62 -0
  48. data/plugins/titlebot.nb +226 -0
  49. data/plugins/translatebot.nb +301 -0
  50. data/plugins/twitterbot.nb +138 -0
  51. data/plugins/weba.nb +209 -0
  52. data/plugins/xibot.nb +113 -0
  53. data/rice/irc.rb +780 -0
  54. metadata +102 -0
@@ -0,0 +1,5 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ log/
5
+ pkg/*
@@ -0,0 +1,1553 @@
1
+ 2011-10-29 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
2
+
3
+ * rice/irc.rb: add RPL_REOPLIST and RPL_ENDOFREOPLIST.
4
+
5
+ * ChangeLog: remove svn keywords.
6
+
7
+ 2011-09-29 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
8
+
9
+ * plugins/opensearchbot.nb: add comma separators.
10
+
11
+ 2011-09-29 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
12
+
13
+ * ndk/version.rb: 0.7.7
14
+
15
+ 2011-09-28 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
16
+
17
+ * plugins/translatebot.nb: merge patch from ko1_ndk.
18
+ support Bing Translator.
19
+
20
+ 2011-09-15 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
21
+
22
+ * plugins/opensearchbot.nb: split class and enabled to run on
23
+ command line for tests.
24
+
25
+ 2011-08-16 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
26
+
27
+ * plugins/googlebot.nb: bot return uri only, because cannot fetch
28
+ results from Google code search.
29
+
30
+ 2011-08-15 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
31
+
32
+ * plugins/opensearchbot.nb: add new bot.
33
+
34
+ 2011-06-02 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
35
+
36
+ * rice/irc.rb (RICE::Message::PATTERN::NICKNAME): nickname starts
37
+ with DIGIT may occur in split mode.
38
+
39
+ 2010-12-14 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
40
+
41
+ * plugins/tenkibot.nb: use same_bot? and clean up trailing spaces.
42
+
43
+ 2010-12-14 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
44
+
45
+ * plugins/tenkibot.nb (TenkiBot#tenki): cut after "...".
46
+ (TenkiBot#bot_initialize): use bot_init_utils.
47
+
48
+ 2010-12-14 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
49
+
50
+ * ndk/bot.rb (Nadoka::NDK_Bot#bot_init_utils): add new methods.
51
+
52
+ * plugins/googlebot.nb (GoogleBot#bot_initialize): use bot_init_utils.
53
+
54
+ 2010-10-21 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
55
+
56
+ * plugins/googlebot.nb: add ch_kcode. merge patch from ko1_ndk.
57
+
58
+ 2010-10-21 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
59
+
60
+ * ndk/server.rb (Nadoka::NDK_Server#server_main_proc): do not use
61
+ nick_succ when channel and retry join.
62
+
63
+ 2010-10-21 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
64
+
65
+ * plugins/translatebot.nb: added (contributed from SASADA Koichi)
66
+
67
+ 2010-09-29 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
68
+
69
+ * nadokarc, plugins/autoawaybot.nb, plugins/autodumpbot.nb,
70
+ plugins/backlogbot.nb, plugins/dictbot.nb, plugins/modemanager.nb,
71
+ plugins/pastebot.nb, plugins/roulettebot.nb,
72
+ plugins/timestampbot.nb, plugins/xibot.nb, rice/irc.rb: CRLF -> LF.
73
+
74
+ 2010-09-29 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
75
+
76
+ * 0.7.5: released
77
+
78
+ * ndk/version.rb: 0.7.6
79
+
80
+ 2010-09-28 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
81
+
82
+ * plugins/googlebot.nb: add gime and gimed.
83
+
84
+ * plugins/googlebot.nb: use shortest match.
85
+
86
+ 2010-09-13 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
87
+
88
+ * plugins/dictbot.nb: use shortest match.
89
+
90
+ 2010-09-06 NARUSE, Yui <naruse@ruby-lang.org>
91
+
92
+ * plugins/twitterbot.nb: added.
93
+
94
+ * plugins/xibot.nb: added.
95
+
96
+ * plugins/backlogbot.nb: send message which matches pattern.
97
+
98
+ 2010-08-18 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
99
+
100
+ * rice/irc.rb: applied nurse's patch.
101
+ Update regexp of IPv6 address based on RFC3986.
102
+
103
+ 2010-07-21 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
104
+
105
+ * nadokarc: update IPv6 Sample in Servers.
106
+ see http://www.ircnet.ne.jp/
107
+
108
+ 2010-02-15 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
109
+
110
+ * plugins/rss_checkbot.nb (RSS_CheckBot#send_notice): all
111
+ #send_notice should support Array in @ch.
112
+
113
+ * rice/irc.rb (RICE::Message#to_s): add recursive #to_s to avoid
114
+ "can't convert Array into String (TypeError)" in `<<'.
115
+
116
+ 2010-01-28 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
117
+
118
+ * ndk/server.rb (Nadoka::NDK_Server#set_signal_trap): merge patch
119
+ from n0kada. http://www.atdot.net/sp/view/dswxwk
120
+
121
+ 2010-01-25 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
122
+
123
+ * nadokarc: update Servers.
124
+ see http://www.wide.ad.jp/news/press/20100125-IRC-server-close-j.html
125
+ and http://www.ircnet.ne.jp/ .
126
+
127
+ 2010-01-01 Koichi Sasada <ko1@atdot.net>
128
+
129
+ * plugins/googlebot.nb: support new searcher calc and code.
130
+
131
+ * plugins/googlebot.nb: support abbreviated syntax (ex: g> ).
132
+
133
+ 2009-11-30 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
134
+
135
+ * nadokarc: update Servers.
136
+ see http://twitter.com/ircnet_fujisawa/status/6185537849 for irc6.fujisawa.wide.ad.jp,
137
+ and http://en.wikipedia.org/wiki/IRCd says most often used port for SSL is 6697.
138
+
139
+ 2009-11-08 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
140
+
141
+ * nadokarc: update Servers.
142
+ see http://slashdot.jp/it/article.pl?sid=09/11/06/0747210
143
+
144
+ 2009-10-23 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
145
+
146
+ * plugins/googlebot.nb: fallback to json gem.
147
+
148
+ 2009-09-22 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
149
+
150
+ * ndk/server.rb (Nadoka::NDK_Server#server_main_proc): support
151
+ RPL_ISUPPORT.
152
+
153
+ 2009-09-22 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
154
+
155
+ * ndk/error.rb: add Nadoka::NDK_InvalidMessage.
156
+
157
+ * ndk/server.rb (Nadoka::NDK_Server#send_to_server): check [\r\n].
158
+
159
+ 2009-09-21 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
160
+
161
+ * rice/irc.rb: remove magic comment. ruby 1.9.2 works without it.
162
+
163
+
164
+ 2009-09-21 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
165
+
166
+ * 0.7.2: released
167
+
168
+ * ndk/version.rb: bumped version to 0.7.5.
169
+
170
+ 2009-09-17 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
171
+
172
+ * plugins/googlebot.nb: use hl because lr used by web searcher only.
173
+
174
+ 2009-09-17 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
175
+
176
+ * plugins/googlebot.nb: support more searcher of Google AJAX
177
+ Search API.
178
+
179
+ 2009-09-17 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
180
+
181
+ * plugins/googlebot.nb: use Google AJAX Search API.
182
+ see http://code.google.com/intl/ja/apis/ajaxsearch/ for detail.
183
+
184
+ 2009-09-14 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
185
+
186
+ * plugins/googlebot.nb: Google SOAP Search API (No Longer Available).
187
+ see http://code.google.com/intl/ja/apis/soapsearch/ and
188
+ http://googlecode.blogspot.com/2009/08/well-earned-retirement-for-soap-search.html
189
+
190
+ 2009-08-21 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
191
+
192
+ * nadoka.rb, ndk/server.rb: revert previous change, and use ?\x1
193
+ instead.
194
+
195
+ 2009-08-21 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
196
+
197
+ * nadoka.rb, ndk/server.rb: handle ctcp on ruby 1.9.
198
+
199
+ 2009-08-18 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
200
+
201
+ * nadoka.rb, ndk/config.rb, rice/irc.rb: ruby 1.9 support (not
202
+ completed yet). apply patch from unak.
203
+
204
+ 2009-08-17 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
205
+
206
+ * nadokarc, ndk/config.rb, ndk/server.rb: no listen when
207
+ Client_server_port is nil.
208
+
209
+ 2009-08-17 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
210
+
211
+ * plugins/tenkibot.nb: omit empty min celsius.
212
+
213
+ 2009-07-29 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
214
+
215
+ * lib/rss_check.rb: update lirs_uri.
216
+
217
+ 2009-07-29 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
218
+
219
+ * 0.7.1 : released
220
+
221
+ * ndk/version.rb : 0.7.2
222
+
223
+ 2009-07-27 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
224
+
225
+ * nadoka.rb: add --daemon option. (apply patch from unak)
226
+
227
+ 2009-07-04 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
228
+
229
+ * plugins/dictbot.nb: avoid nkf bug.
230
+ add waei as w, ruigo as r.
231
+ new yahoo dict URI. (apply patch from ko1_ndk)
232
+
233
+ * plugins/googlebot.nb: quote splited words. (apply patch from ko1_ndk)
234
+
235
+ 2009-07-01 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
236
+
237
+ * rice/irc.rb: @conn[0] may be nil.
238
+
239
+ 2009-05-25 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
240
+
241
+ * ndk/config.rb, ndk/server.rb: add Primitive_Filter
242
+ to filter any commands. (apply patch from unak)
243
+
244
+ 2009-05-20 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
245
+
246
+ * plugins/identifynickserv.nb: added.
247
+
248
+ 2009-05-20 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
249
+
250
+ * ndk/bot.rb, ndk/server.rb: add on_server_connected.
251
+
252
+ 2009-04-16 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
253
+
254
+ * nadokarc, ndk/config.rb, ndk/server.rb, rice/irc.rb: support SSL.
255
+
256
+ Wed Mar 19 19:46:52 2008 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
257
+
258
+ * ndk/logger.rb : pass ch to msgobj from clog.
259
+
260
+ * ndk/config.rb : unify safe channel log filename.
261
+
262
+ Mon Jul 23 01:07:08 2007 Kazuhiro NISHIAYMA <zn@mbf.nifty.com>
263
+
264
+ * lib/rss_check.rb : bug fix when dc_date is nil.
265
+
266
+ * ndk/config.rb : fix bug when non-Hash in BotConfig array.
267
+
268
+
269
+ Mon Jul 02 19:01:04 2007 Koichi Sasada <ko1@atdot.net>
270
+
271
+ * plugins/tenkibot.nb : fix output format detail.
272
+
273
+ * plugins/googlebot.nb : fix to retry 5 times if error is
274
+ occurred while google search.
275
+
276
+ * plugins/dictbot.nb : fix to show short summary.
277
+
278
+
279
+ 2007-07-02(Mon) 18:01:58 +0900 Kazuhiro NISHIAYMA <zn@mbf.nifty.com>
280
+
281
+ * rice/irc.rb : allow trailing "." in HOSTNAME (for NickServ
282
+ on Freenode)
283
+
284
+
285
+ 2007-02-20(Tue) 23:35:41 +0900 Kazuhiro NISHIAYMA <zn@mbf.nifty.com>
286
+
287
+ * **/*.rb, plugins/*.nb : fix typos
288
+
289
+
290
+ 2006-10-28(Sat) 22:08:11 +0900 Kazuhiro NISHIAYMA <zn@mbf.nifty.com>
291
+
292
+ * ndk/server_state.rb : fix bug on_mode after server split
293
+
294
+
295
+ 2006-10-20(Fri) 22:22:07 +0900 Kazuhiro NISHIAYMA <zn@mbf.nifty.com>
296
+
297
+ * ndk/bot.rb : new method ccn2rcn
298
+
299
+
300
+ 2006-10-07(Sat) 03:52:11 +0900 Koichi Sasada <ko1@atdot.net>
301
+
302
+ * plugin/tenkibot.nb : added
303
+
304
+
305
+ 2006-10-02(Mon) 21:58:40 +0900 Koichi Sasada <ko1@atdot.net>
306
+
307
+ * 0.7.0 : released
308
+
309
+ * ndk/version.rb : 0.7.1
310
+
311
+
312
+ 2006-10-02(Mon) 21:41:24 +0900 Koichi Sasada <ko1@atdot.net>
313
+
314
+ * plugins/weatherbot.nb : removed
315
+
316
+ * plugins/sendpingbot.nb : added
317
+
318
+ * ndk/client.rb : modified for pingbot
319
+
320
+ * ndk/server.rb : ditto
321
+
322
+
323
+ 2006-09-01(Fri) 02:04:15 +0900 Kazuhiro NISHIAYMA <zn@mbf.nifty.com>
324
+
325
+ * ndk/bot.rb : support send to a safe channel
326
+
327
+ * nadokarc : fix misalignment
328
+
329
+
330
+ 2006-08-31(Thu) 01:40:39 +0900 Kazuhiro NISHIAYMA <zn@mbf.nifty.com>
331
+
332
+ * ndk/bot.rb : fix typos
333
+
334
+
335
+ 2006-08-11(Fri) 14:45:01 +0900 Koichi Sasada <ko1@atdot.net>
336
+
337
+ * plugins/gonzuibot.nb : add a comma
338
+
339
+ * plugins/pastebot.nb : add nick to paste page name
340
+
341
+ * plugins/googlebot.nb : fix show_char_code_and_erace_tag
342
+
343
+
344
+ 2006-05-16(Tue) 16:16:30 +0900 Koichi Sasada <ko1@atdot.net>
345
+
346
+ * ndk/server.rb : handle TERM signal
347
+
348
+
349
+ 2006-03-27(Mon) 19:50:27 +0900 Koichi Sasada <ko1@atdot.net>
350
+
351
+ * plugins/dictbot.nb : fix dict index
352
+
353
+ * plugins/roulettebot.nb : added
354
+
355
+ * rice/irc.rb : loosen nick regexp
356
+
357
+ * ndk/server.rb : randomize server if serching next server
358
+
359
+
360
+ 2005-09-30(Fri) 00:05:19 +0900 Koichi Sasada <ko1@atdot.net>
361
+
362
+ * plugins/googlebot.nb : fix bugs
363
+
364
+ * plugins/dictbot.nb : support
365
+
366
+ * plugins/gonzuibot.nb : added
367
+
368
+ * ndk/config.rb : fix bugs
369
+
370
+
371
+ 2005-06-25(Sat) 19:02:24 +0900 Koichi Sasada <ko1@atdot.net>
372
+
373
+ * nadoka.rb : output error information to file
374
+ 'nadoka_fatal_error' when unhandled error is occure (bug)
375
+
376
+
377
+ 2005-06-14(Tue) 21:26:07 +0900 Koichi Sasada <ko1@atdot.net>
378
+
379
+ * ndk/server.rb : change reloaded message output method to slog
380
+
381
+
382
+ 2005-06-13(Mon) 18:25:33 +0900 Koichi Sasada <ko1@atdot.net>
383
+
384
+ * nadokarc, ndk/logger.rb, ndk/config.rb : support
385
+ :channel_name_in_file_name option for logging
386
+
387
+
388
+ 2005-06-13(Mon) 00:11:39 +0900 Koichi Sasada <ko1@atdot.net>
389
+
390
+ * ndk/server_state.rb : fix typo
391
+
392
+ * ndk/config.rb : see ENV['LANG'] to decide filename encoding
393
+
394
+ * ndk/version.rb : fix version format
395
+
396
+ * ndk/bot.rb : fix comment
397
+
398
+
399
+ 2005-06-10(Fri) 04:38:25 +0900 Koichi Sasada <ko1@atdot.net>
400
+
401
+ * ndk/server.rb : fix logic operation
402
+
403
+
404
+ 2005-06-09(Thu) 17:22:25 +0900 Koichi Sasada <ko1@atdot.net>
405
+
406
+ * ndk/logger.rb : synchronize IOLogWriter output
407
+
408
+
409
+ 2005-06-09(Thu) 17:18:21 +0900 Koichi Sasada <ko1@atdot.net>
410
+
411
+ * ndk/config.rb : set default file encoding to EUC
412
+
413
+
414
+ 2005-06-09(Thu) 05:11:58 +0900 Koichi Sasada <ko1@atdot.net>
415
+
416
+ * ndk/config.rb : fix to get FilenameEncoding
417
+
418
+ * ndk/server.rb : stop away message until server connection
419
+
420
+
421
+ 2005-06-08(Wed) 07:56:17 +0900 Koichi Sasada <ko1@atdot.net>
422
+
423
+ * ndk/config.rb : clear if channel setting is not hash
424
+
425
+
426
+ 2005-06-08(Wed) 07:42:17 +0900 Koichi Sasada <ko1@atdot.net>
427
+
428
+ * plugins/googlebot.nb : fix to use count default language
429
+
430
+
431
+ 2005-06-08(Wed) 06:21:25 +0900 Koichi Sasada <ko1@atdot.net>
432
+
433
+ * ndk/server.rb : trap IOError and change error output
434
+
435
+ * ndk/config.rb : support {prefix:(nick|user|host)} specifier
436
+
437
+ * ndk/logger.rb : {user} -> {nick}
438
+
439
+ * nadokarc : apply above changes
440
+
441
+ * rice/irc.rb : output unless port is closed
442
+
443
+ * plugins/backlogbot.nb : change spell (@store -> @stores)
444
+
445
+
446
+ 2005-06-05(Sun) 22:47:15 +0900 Koichi Sasada <ko1@atdot.net>
447
+
448
+ * ndk/server.rb : PONG MISS message dlog -> slog
449
+
450
+
451
+ 2005-05-31(Tue) 14:08:26 +0900 Koichi Sasada <ko1@atdot.net>
452
+
453
+ * nadokarc : change log setting of "#nadoka_check"
454
+
455
+
456
+ 2005-05-29(Sun) 14:01:02 +0900 Koichi Sasada <ko1@atdot.net>
457
+
458
+ * ndk/server.rb, ndk/server_state.rb, ndk/logger.rb :
459
+ NICK and QUIT logging from server_state
460
+
461
+ * nadokarc, ndk/config.rb : change default PART, QUIT message format
462
+
463
+
464
+ 2005-05-29(Sun) 12:53:48 +0900 Koichi Sasada <ko1@atdot.net>
465
+
466
+ * plugins/weba.nb : set default password on
467
+
468
+ * ndk/logger.rb : fix nick logging
469
+
470
+
471
+ 2005-05-29(Sun) 07:06:55 +0900 Koichi Sasada <ko1@atdot.net>
472
+
473
+ * plugins/weba.nb : use logger's message store
474
+
475
+ * ndk/logger.rb, ndk/config.rb : some changes for weba
476
+
477
+ * nadokarc : add vim pragma and FilenameEncoding setting
478
+
479
+ * ndk/client.rb, ndk/server.rb : fix logger relaod process
480
+
481
+ * ndk/server_state.rb : add channel_raw_names
482
+
483
+
484
+ 2005-05-29(Sun) 03:35:28 +0900 Koichi Sasada <ko1@atdot.net>
485
+
486
+ * nadokarc : add BackLogBot as default bot
487
+
488
+
489
+ 2005-05-29(Sun) 03:31:07 +0900 Koichi Sasada <ko1@atdot.net>
490
+
491
+ * ndk/server.rb : add @rc read accessor
492
+
493
+ * nadokarc, ndk/config.rb : support default setting_name
494
+ as rc file name
495
+
496
+
497
+ 2005-05-29(Sun) 03:04:53 +0900 Koichi Sasada <ko1@atdot.net>
498
+
499
+ * ndk/config.rb : support filename encoding(utf-8)
500
+
501
+
502
+ 2005-05-29(Sun) 02:49:12 +0900 Koichi Sasada <ko1@atdot.net>
503
+
504
+ * ndk/server_state.rb, ndk/config.rb, ndk/logger.rb :
505
+ new logging scheme is added
506
+
507
+ * nadokarc : add indent and log detail setting
508
+
509
+ * plugins/backlogbot.nb : use logger's message store
510
+
511
+
512
+ 2005-05-27(Fri) 21:32:35 +0900 Koichi Sasada <ko1@atdot.net>
513
+
514
+ * nadokarc : comment out Quit_Message and change
515
+ Default_log, Log_TimeFormat setting
516
+
517
+ * ndk/client.rb : fix welcome message
518
+
519
+ * ndk/config.rb : change Default_log, System_log path,
520
+ Log_TimeFormat and add Log_MessageFormat.
521
+
522
+
523
+ 2005-05-26(Thu) 22:11:48 +0900 Koichi Sasada <ko1@atdot.net>
524
+
525
+ * plugins/autodumpbot.nb, plugins/sixamobot.nb :
526
+ change copyright year
527
+
528
+
529
+ 2005-05-26(Thu) 22:07:15 +0900 Koichi Sasada <ko1@atdot.net>
530
+
531
+ * ndk/config.rb : fix a bug
532
+
533
+
534
+ 2005-05-26(Thu) 21:51:10 +0900 Koichi Sasada <ko1@atdot.net>
535
+
536
+ * nadokarc : change default quit message
537
+
538
+
539
+ 2005-05-26(Thu) 21:45:49 +0900 Koichi Sasada <ko1@atdot.net>
540
+
541
+ * nadokarc : fix ACL comment
542
+
543
+
544
+ 2005-05-26(Thu) 21:42:29 +0900 Koichi Sasada <ko1@atdot.net>
545
+
546
+ * plugins/backlogbot.nb : fix configuration example
547
+
548
+
549
+ 2005-05-26(Thu) 21:24:50 +0900 Koichi Sasada <ko1@atdot.net>
550
+
551
+ * log/.deleteme : remove
552
+
553
+
554
+ 2005-05-26(Thu) 21:23:03 +0900 Koichi Sasada <ko1@atdot.net>
555
+
556
+ * plugins/weatherbot.nb : add parentheses
557
+
558
+ * plugins/rss_checkbot.nb : add configuration :over_message
559
+
560
+
561
+ 2005-05-26(Thu) 21:03:24 +0900 Koichi Sasada <ko1@atdot.net>
562
+
563
+ * some files : change copyright year
564
+
565
+
566
+ 2005-05-26(Thu) 20:52:32 +0900 Koichi Sasada <ko1@atdot.net>
567
+
568
+ * plugins/googlebot.nb : fix plural support bug
569
+
570
+
571
+ 2005-05-26(Thu) 20:27:16 +0900 Koichi Sasada <ko1@atdot.net>
572
+
573
+ * plugins/googlebot.nb : fix configuration example
574
+ and support plural
575
+
576
+ * plugins/rss_checkbot.nb : change bot_state format and
577
+ separate rss check function
578
+
579
+ * lib/rss_check.rb : return failed information if
580
+ exception is raised
581
+
582
+
583
+ 2005-05-26(Thu) 11:21:31 +0900 Koichi Sasada <ko1@atdot.net>
584
+
585
+ * ndk/bot.rb : some refactoring
586
+
587
+
588
+ 2005-05-26(Thu) 10:53:40 +0900 Koichi Sasada <ko1@atdot.net>
589
+
590
+ * plugins/autoawaybot.nb : add configuration example
591
+ and some refactoring
592
+
593
+
594
+ 2005-05-26(Thu) 10:44:33 +0900 Koichi Sasada <ko1@atdot.net>
595
+
596
+ * plugins/timestampbot.nb : add :client configuration
597
+ (if true, output timestamp to clients. default: false)
598
+
599
+
600
+ 2005-05-26(Thu) 10:37:29 +0900 Koichi Sasada <ko1@atdot.net>
601
+
602
+ * plugins/timestampbot.nb : fix configuration example
603
+
604
+
605
+ 2005-05-26(Thu) 10:29:16 +0900 Koichi Sasada <ko1@atdot.net>
606
+
607
+ * plugins/message.nb => plugins/messagebot.nb
608
+
609
+ * plugins/autoaway.nb => plugins/autoawaybot.nb
610
+
611
+ * plugins/autodump.nb => plugins/autodumpbot.nb
612
+
613
+ * plugins/sixamo.nb => plugins/sixamobot.nb
614
+
615
+ * plugins/mailcheck.nb => plugins/mailcheckbot.nb
616
+
617
+ * plugins/sixamobot.nb : fix configuration example
618
+
619
+
620
+ 2005-05-26(Thu) 10:18:18 +0900 Koichi Sasada <ko1@atdot.net>
621
+
622
+ * plugins/rss_check.nb => plugins/rss_checkbot.nb,
623
+
624
+ * plugins/cron.nb => plugins/cronbot.nb
625
+
626
+ * plugins/mailcheck.nb, plugins/modemanager.nb, plugins/weba.nb,
627
+ plugins/drbot.nb, plugins/rss_checkbot.nb : fix configuration example
628
+
629
+
630
+ 2005-05-26(Thu) 02:35:09 +0900 Koichi Sasada <ko1@atdot.net>
631
+
632
+ * ndk/version.rb : 0.7.0
633
+
634
+
635
+ 2005-05-25(Wed) 14:22:32 +0900 Koichi Sasada <ko1@atdot.net>
636
+
637
+ * ndk/config.rb, nadokarc : change bot configuration format
638
+ (BotConfig format)
639
+
640
+ * ndk/config.rb : Nadoka::require is supported
641
+ (if reload configuration, required files by Nadoka::require are cleared)
642
+
643
+ * ndk/bot.rb : BotClass (Array) => BotClasses (Hash (name => body))
644
+
645
+ * plugins/googlebot.nb : fix setting description
646
+ and fix google_key file path search logic
647
+
648
+ * plugins/dict_bot.nb => plugins/dictbot.nb
649
+
650
+ * plugins/backlogbot.nb : fix setting description
651
+
652
+ 2005-05-22(Sun) 23:40:28 +0900 Koichi Sasada <ko1@atdot.net>
653
+
654
+ * plugins/dict_bot.nb : /dic(.)>.../ => /\Adic(.)>.../
655
+
656
+ * plugins/googlebot.nb : remove words in results
657
+
658
+ * plugins/pastebot.nb : support fpaste
659
+
660
+
661
+ 2005-05-22(Sun) 23:28:53 +0900 Koichi Sasada <ko1@atdot.net>
662
+
663
+ * ndk/logger.rb : support directory auto generation
664
+
665
+
666
+ 2005-05-22(Sun) 01:53:38 +0900 Koichi Sasada <ko1@atdot.net>
667
+
668
+ * nadoka/ : mkdir
669
+
670
+ * lib/ : mkdir
671
+
672
+ * ndk_*.rb : move to nadoka/ and change require path
673
+
674
+ * tagparts.rb, rss_check.rb : move to lib/ and change require path
675
+
676
+ * ndk_manager.rb (NDK_Manager) : move to ndk/server.rb and rename NDK_Server
677
+
678
+ * ndk_err.rb : move to ndk/error.rb
679
+
680
+
681
+ 2005-03-15(Tue) 17:30:25 +0900 Koichi Sasada <ko1@atdot.net>
682
+
683
+ * ndk_state.rb : re-fix state management
684
+
685
+
686
+ 2005-03-04(Fri) 16:28:18 +0900 Koichi Sasada <ko1@atdot.net>
687
+
688
+ * 0.6.4 released
689
+
690
+ * ndk_version.rb : 0.6.5
691
+
692
+
693
+ 2005-03-04(Fri) 13:23:37 +0900 Koichi Sasada <ko1@atdot.net>
694
+
695
+ * ndk_state.rb : fix server message pattern
696
+
697
+
698
+ 2005-01-20(Thu) 23:15:33 +0900 Koichi Sasada <ko1@atdot.net>
699
+
700
+ * nadokarc : fix typo
701
+
702
+
703
+ 2004-12-20(Mon) 20:15:03 +0900 Koichi Sasada <ko1@atdot.net>
704
+
705
+ * plugins/weatherbot.nb : change unkown region error message
706
+ and ignore region's case
707
+
708
+
709
+ 2004-12-20(Mon) 20:04:53 +0900 Koichi Sasada <ko1@atdot.net>
710
+
711
+ * plugins/weatherbot.nb : strip region name
712
+
713
+
714
+ 2004-12-20(Mon) 19:53:18 +0900 Koichi Sasada <ko1@atdot.net>
715
+
716
+ * plugins/dict_bot.nb, plugins/pastebot.nb, plugins/weatherbot.nb
717
+ added (test version)
718
+
719
+
720
+ 2004-12-03(Fri) 14:45:19 +0900 Koichi Sasada <ko1@atdot.net>
721
+
722
+ * ndk_state.rb : fix again (patched by U.Nakamura)
723
+
724
+
725
+ 2004-12-03(Fri) 13:59:48 +0900 Koichi Sasada <ko1@atdot.net>
726
+
727
+ * ndk_state.rb : fix bug about mode change by server
728
+
729
+ * plugins/modemanager.rb : fix bug to detect mode
730
+
731
+
732
+ 2004-11-24(Wed) 13:20:17 +0900 Koichi Sasada <ko1@atdot.net>
733
+
734
+ * plugins/autodump.nb : fix bug (apply patch from shugo)
735
+
736
+
737
+ 2004-08-25(Wed) 15:00:49 +0900 Koichi Sasada <ko1@atdot.net>
738
+
739
+ * nadokarc : fix bug(add ',')
740
+
741
+
742
+ 2004-08-20(Fri) 18:48:36 +0900 Koichi Sasada <ko1@atdot.net>
743
+
744
+ * plugins/googlebot.nb : fix googlec prompt
745
+
746
+
747
+ 2004-08-19(Thu) 01:17:13 +0900 Koichi Sasada <ko1@atdot.net>
748
+
749
+ * nadokarc : add '#nadoka' channel setting
750
+
751
+
752
+ 2004-08-19(Thu) 01:12:03 +0900 Koichi Sasada <ko1@atdot.net>
753
+
754
+ * plugins/autoaway.nb : fix bug(add condition at on_timer)
755
+
756
+
757
+ 2004-08-16(Mon) 13:07:15 +0900 Koichi Sasada <ko1@atdot.net>
758
+
759
+ * ndk_state.rb, ndk_manager.rb : fix kick bug([nadoka:271])
760
+
761
+
762
+ 2004-08-14(Sat) 21:24:28 +0900 Koichi Sasada <ko1@atdot.net>
763
+
764
+ * plugins/modemanager.nb : fix mode check routine(match -> include?)
765
+
766
+
767
+ 2004-08-13(Fri) 11:04:36 +0900 Koichi Sasada <ko1@atdot.net>
768
+
769
+ * 0.6.3 released
770
+
771
+ * ndk_version.rb : 0.6.4
772
+
773
+
774
+ 2004-08-13(Fri) 10:18:03 +0900 Koichi Sasada <ko1@atdot.net>
775
+
776
+ * plugins/modemanager.nb : fix bug
777
+
778
+ * plugins/autodump.nb : added
779
+
780
+ * plugins/*.nb : fix hash access([] to fetch(key, default)).
781
+
782
+
783
+ 2004-08-13(Fri) 10:04:26 +0900 Koichi Sasada <ko1@atdot.net>
784
+
785
+ * ndk_state.rb : fix enbug
786
+
787
+ * nadokarc : change default channel and fix typo
788
+
789
+ * plugins/drbot.nb : fix configuration example's bug
790
+
791
+ * plugins/sixamo.nb : fix typo
792
+
793
+
794
+ 2004-08-05(Thu) 08:25:48 +0900 Koichi Sasada <ko1@atdot.net>
795
+
796
+ * ndk_state.rb : fix some bugs
797
+
798
+
799
+ 2004-08-02(Mon) 07:51:51 +0900 Koichi Sasada <ko1@atdot.net>
800
+
801
+ * ndk_client.rb : fix pong message field
802
+
803
+ * ndk_state.rb : fix on_quit process
804
+
805
+ * plugins/modemanager.nb : don't set mode if already set
806
+
807
+
808
+ 2004-07-28(Wed) 05:07:00 +0900 Koichi Sasada <ko1@atdot.net>
809
+
810
+ * plugins/google.nb : support gooo*gle
811
+
812
+
813
+ 2004-07-27(Tue) 11:16:05 +0900 Koichi Sasada <ko1@atdot.net>
814
+
815
+ * plugins/ndk_client.rb : fix typo
816
+
817
+
818
+ 2004-07-26(Mon) 02:13:58 +0900 Koichi Sasada <ko1@atdot.net>
819
+
820
+ * plugins/backlogbot.nb : fixed a bug
821
+
822
+ * plugins/modemanager.nb : applied unak's patch
823
+ (support delaied distribution, and so on)
824
+
825
+ * ndk_client.rb : fix exception handling
826
+
827
+
828
+ 2004-07-24(Sat) 21:26:30 +0900 Koichi Sasada <ko1@atdot.net>
829
+
830
+ * plugins/modemanager.nb : added
831
+
832
+
833
+ 2004-07-24(Sat) 07:30:10 +0900 Koichi Sasada <ko1@atdot.net>
834
+
835
+ * ndk_manager.rb : fix server login process(reconnect
836
+ if server replies error)
837
+
838
+ * ndk_manager.rb, ndk_state.rb : support 'KICK' state
839
+
840
+ * ndk_manager.rb, ndk_staet.rb : support safe channel
841
+
842
+ * plugins/backlogbot.nb : fix around safe channel bugs
843
+
844
+ * plugins/googlebot.nb(googlec) : fix charcode problem
845
+
846
+
847
+ 2004-07-21(Wed) 19:17:13 +0900 Koichi Sasada <ko1@atdot.net>
848
+
849
+ * ndk_bot.rb(canonical_channel_name) : added
850
+ and this alias 'ccn' is added
851
+
852
+ * ndk_state.rb : rename channel_member to channel_users
853
+ and channel_member_mode to channel_user_mode
854
+
855
+
856
+ 2004-07-21(Wed) 00:57:44 +0900 Koichi Sasada <ko1@atdot.net>
857
+
858
+ * ndk_manager.rb : part only from own nick when server
859
+ disconnect
860
+
861
+
862
+ 2004-07-20(Tue) 11:33:46 +0900 Koichi Sasada <ko1@atdot.net>
863
+
864
+ * 0.6.2 release
865
+
866
+ * ndk_version.rb : 0.6.3
867
+
868
+
869
+ 2004-07-20(Tue) 04:06:17 +0900 Koichi Sasada <ko1@atdot.net>
870
+
871
+ * ndk_client.rb : use NdkCommandDescription to list
872
+ items
873
+
874
+ * ndk_config.rb(identical_channel_name) : add euc-jp option to regexp
875
+
876
+
877
+ 2004-07-20(Tue) 02:23:35 +0900 Koichi Sasada <ko1@atdot.net>
878
+
879
+ * plugins/sixamo.nb : change talk ratio algorithm
880
+
881
+
882
+ 2004-07-20(Tue) 02:23:35 +0900 Koichi Sasada <ko1@atdot.net>
883
+
884
+ * plugins/sixamo.nb : fix talk ratio algorithm
885
+
886
+
887
+ 2004-07-20(Tue) 02:18:01 +0900 Koichi Sasada <ko1@atdot.net>
888
+
889
+ * plugins/sixamo.nb : down talk rate and memorize his
890
+ talk
891
+
892
+
893
+ 2004-07-20(Tue) 02:00:45 +0900 Koichi Sasada <ko1@atdot.net>
894
+
895
+ * ndk_logger.rb : synchronize IO object output
896
+
897
+
898
+ 2004-07-20(Tue) 01:48:45 +0900 Koichi Sasada <ko1@atdot.net>
899
+
900
+ * ndk_manager.rb : fix invoke time event timing
901
+
902
+
903
+ 2004-07-20(Tue) 00:37:02 +0900 Koichi Sasada <ko1@atdot.net>
904
+
905
+ * ndk_manager.rb : add @pong_fail_count and MAX_PONG_FAIL
906
+ to check server response
907
+
908
+ * ndk_client.rb : fix usage 100% problem(remove Thread.pass
909
+ and ignore message when server connection is closed)
910
+
911
+
912
+ 2004-07-19(Mon) 22:10:05 +0900 Koichi Sasada <ko1@atdot.net>
913
+
914
+ * 0.6.1 releaseds
915
+
916
+ * ndk_version.rb : 0.6.2
917
+
918
+
919
+ 2004-07-19(Mon) 21:52:27 +0900 Koichi Sasada <ko1@atdot.net>
920
+
921
+ * ndk_manager.rb : TimerIntervalSec to 60
922
+
923
+
924
+ 2004-07-19(Mon) 21:40:17 +0900 Koichi Sasada <ko1@atdot.net>
925
+
926
+ * ndk_manager.rb : fix time thread timing
927
+
928
+ * ndk_manager.rb : fix SIGINT hook
929
+
930
+ * ndk_version.rb : remove debug code
931
+
932
+
933
+ 2004-07-19(Mon) 21:00:21 +0900 Koichi Sasada <ko1@atdot.net>
934
+
935
+ * 0.6.0 released
936
+
937
+ * ndk_version.rb : 0.6.1
938
+
939
+
940
+ 2004-07-19(Mon) 20:59:11 +0900 Koichi Sasada <ko1@atdot.net>
941
+
942
+ * plugins/mailcheck.nb : updated from
943
+ http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/ruexli/nadoka-plugins/
944
+
945
+
946
+ 2004-07-19(Mon) 19:50:40 +0900 Koichi Sasada <ko1@atdot.net>
947
+
948
+ * rice/irc.rb : support long nick
949
+
950
+ * ndk_manager.rb : fix time event invoke timing
951
+
952
+ * ndk_logger.rb(slog, clog, write_log) : add nostamp option
953
+
954
+ * plugins/timestampbot.nb
955
+
956
+
957
+ 2004-07-17(Sat) 00:06:54 +0900 Koichi Sasada <ko1@atdot.net>
958
+
959
+ * plugins/googlebot.nb : fix char code bugs
960
+
961
+ * ndk_manager.rb : trap SIGINT to quit program
962
+
963
+ * ndk_client.rb : add exception hook to protect unexpected
964
+ disconnect
965
+
966
+
967
+ 2004-07-14(Wed) 04:29:47 +0900 Koichi Sasada <ko1@atdot.net>
968
+
969
+ * ToDo : removed
970
+
971
+ * README : fix url
972
+
973
+
974
+ 2004-07-14(Wed) 04:27:53 +0900 Koichi Sasada <ko1@atdot.net>
975
+
976
+ * ndk_manager.rb : fix exception handling
977
+
978
+
979
+ 2004-07-14(Wed) 04:03:27 +0900 Koichi Sasada <ko1@atdot.net>
980
+
981
+ * ndk_config.rb : add DefaultBotFiles
982
+
983
+ * ndk_config.rb : ch_config(ch, key) is added
984
+
985
+ * ndk_config.rb(make_bot_instance) : logging message to bot_state
986
+
987
+ * ndk_manager.rb : fix error recovery process(set @connected to false)
988
+
989
+ * plugins/backlogbot.nb : fix some bugs
990
+ (user to user messages and so on)
991
+
992
+ * plugins/weba.nb : fix configuration example's bug
993
+
994
+
995
+ 2004-07-12(Mon) 16:51:24 +0900 Koichi Sasada <ko1@atdot.net>
996
+
997
+ * ndk_version.rb : add rev to version string if this in trunk
998
+
999
+
1000
+ 2004-07-12(Mon) 16:39:59 +0900 Koichi Sasada <ko1@atdot.net>
1001
+
1002
+ * ChangeLog : add rev keyword
1003
+
1004
+
1005
+ 2004-07-11(Sun) 11:37:14 +0900 Koichi Sasada <ko1@atdot.net>
1006
+
1007
+ * plugins/backlogbot.nb : fix schemes
1008
+
1009
+
1010
+ 2004-07-10(Sat) 22:48:35 +0900 Koichi Sasada <ko1@atdot.net>
1011
+
1012
+ * nadokarc : fix filenameencoding bugs
1013
+
1014
+ * ndk_logger.rb : fix user to user message's logname
1015
+
1016
+
1017
+ 2004-07-10(Sat) 21:22:18 +0900 Koichi Sasada <ko1@atdot.net>
1018
+
1019
+ * ndk_manager.rb : ignore NOTICE messages when logged in
1020
+
1021
+ * plugins/backlogbot.rb : ignore non channel messages
1022
+
1023
+
1024
+ 2004-07-10(Sat) 17:33:10 +0900 Koichi Sasada <ko1@atdot.net>
1025
+
1026
+ * ndk_version.rb : check trunk
1027
+
1028
+ * ndk_bot.rb : add on_quit_from_channel event
1029
+
1030
+ * plugins/backlogbot.nb: added
1031
+
1032
+
1033
+ 2004-07-09(Fri) 07:45:29 +0900 Koichi Sasada <ko1@atdot.net>
1034
+
1035
+ * plugins/drbot.nb : rename method name kick_* -> send/recv...
1036
+
1037
+
1038
+ 2004-07-09(Fri) 03:52:01 +0900 Koichi Sasada <ko1@atdot.net>
1039
+
1040
+ * plugins/drbot.nb, plugins/drbcl.rb : added
1041
+
1042
+ * plugins/mailcheck.nb, plugins/message.nb :added
1043
+ (contributed from Kazuhiro NISHIYAMA)
1044
+
1045
+
1046
+ 2004-07-09(Fri) 01:39:01 +0900 Koichi Sasada <ko1@atdot.net>
1047
+
1048
+ * ndk_client.rb(client_notice) : added
1049
+
1050
+ * ndk_manager.rb, ndk_client.rb : support '/nadoka status' command
1051
+ and add NDK_Manager#ndk_state, NDK_Bot#bot_state, NDK_Client#state
1052
+
1053
+ * plugins/rss_check.nb(bot_state) : added
1054
+
1055
+
1056
+ 2004-07-08(Thu) 08:31:33 +0900 Koichi Sasada <ko1@atdot.net>
1057
+
1058
+ * tagparts.rb : add tree2string
1059
+
1060
+
1061
+ 2004-07-07(Wed) 17:53:27 +0900 Koichi Sasada <ko1@atdot.net>
1062
+
1063
+ * ndk_client.rb : fix socket bugs
1064
+
1065
+
1066
+ 2004-07-07(Wed) 17:15:07 +0900 Koichi Sasada <ko1@atdot.net>
1067
+
1068
+ * plugins/weba.nb : add basic authentication, and some fixs
1069
+
1070
+ * plugins/shellbot.nb, plugins/evalbot.nb : undo
1071
+
1072
+
1073
+ 2004-07-07(Wed) 16:04:30 +0900 Koichi Sasada <ko1@atdot.net>
1074
+
1075
+ * plugins/shellbot.nb, plugins/evalbot.nb : fix bugs
1076
+ around constant search path
1077
+
1078
+ * ndk_state.rb(channel_member_mode) : added
1079
+
1080
+ * ndk_bot.rb : remove @raw_prefix
1081
+
1082
+
1083
+ 2004-07-07(Wed) 10:18:51 +0900 Koichi Sasada <ko1@atdot.net>
1084
+
1085
+ * plugins/weba.nb : fix some issues
1086
+
1087
+
1088
+ 2004-07-06(Tue) 22:38:58 +0900 Koichi Sasada <ko1@atdot.net>
1089
+
1090
+ * ndk_client.rb : fix exception bug
1091
+
1092
+ * ndk_manager.rb, ndk_config.rb : fix reload process
1093
+
1094
+ * nadokarc : fix typo
1095
+
1096
+ * plugins/weba.nb : fix some bugs, support writing
1097
+
1098
+ * tagparts.rb : added(required by weba)
1099
+
1100
+
1101
+ 2004-07-05(Mon) 15:40:09 +0900 Koichi Sasada <ko1@atdot.net>
1102
+
1103
+ * ndk_config.rb : change default Channel_Info,
1104
+ :timing as :startup
1105
+
1106
+ * ndk_manager.rb : fix nick change bugs
1107
+
1108
+ * plugins/weba.nb : added(test version)
1109
+
1110
+
1111
+ 2004-07-05(Mon) 13:13:26 +0900 Koichi Sasada <ko1@atdot.net>
1112
+
1113
+ * ndk_manager.rb : add execption hook(client thread)
1114
+
1115
+
1116
+ 2004-07-05(Mon) 09:43:12 +0900 Koichi Sasada <ko1@atdot.net>
1117
+
1118
+ * nadokarc : fix bug
1119
+
1120
+
1121
+ 2004-07-05(Mon) 08:31:35 +0900 Koichi Sasada <ko1@atdot.net>
1122
+
1123
+ * ndk_logger.rb : ignore IOError when logging
1124
+
1125
+ * plugins/googlebot.nb : add option ':googlec_maxwords'
1126
+
1127
+
1128
+ 2004-07-05(Mon) 08:02:43 +0900 Koichi Sasada <ko1@atdot.net>
1129
+
1130
+ * nadokarc : auto detect filename encoding(carelessly)
1131
+
1132
+
1133
+ 2004-07-05(Mon) 07:28:17 +0900 Koichi Sasada <ko1@atdot.net>
1134
+
1135
+ * nadokarc, ndk_config.rb : add 'Mode' option and
1136
+ Channel_Info[:initial_mode] option
1137
+
1138
+ * nadokarc, ndk_config.rb : add 'FilenameEncoding' option
1139
+
1140
+ * ndk_logger.rb, ndk_config.rb : support japanese character
1141
+ encoding channel name
1142
+
1143
+ * ndk_config.rb : fix canonical_channel_name and add
1144
+ identical_channel_name
1145
+
1146
+ * ndk_manager.rb : support "/nadoka reconnect" command
1147
+
1148
+ * ndk_manager.rb : ping to server and check this response,
1149
+ due to check connection
1150
+
1151
+ * ndk_manager.rb, ndk_state.rb : fix behavior when server
1152
+ connection is closed
1153
+
1154
+
1155
+ 2004-07-04(Sun) 17:50:06 +0900 Koichi Sasada <ko1@atdot.net>
1156
+
1157
+ * ndk_logger.rb : synchronize file output
1158
+
1159
+
1160
+ 2004-07-04(Sun) 16:15:24 +0900 Koichi Sasada <ko1@atdot.net>
1161
+
1162
+ * plugins/googlebot.nb : fix character code bugs
1163
+
1164
+
1165
+ 2004-07-03(Sat) 03:25:24 +0900 Koichi Sasada <ko1@atdot.net>
1166
+
1167
+ * plugins/googlebot.nb : added
1168
+
1169
+ * nadokarc : add default join channel '#nadoka_check'
1170
+
1171
+
1172
+ 2004-06-01(Tue) 16:51:29 +0900 Koichi Sasada <ko1@atdot.net>
1173
+
1174
+ * plugins/checkbot.nb : added(incomplete)
1175
+
1176
+ * plugins/rss_check.nb : change notice format
1177
+
1178
+ * ndk_client.rb : fix login messages(commands)
1179
+
1180
+
1181
+ 2004-05-14(Fri) 02:36:04 +0900 Koichi Sasada <ko1@atdot.net>
1182
+
1183
+ * ndk_manager.rb : fix part process at enter_away
1184
+
1185
+
1186
+ 2004-05-14(Fri) 02:27:06 +0900 Koichi Sasada <ko1@atdot.net>
1187
+
1188
+ * ndk_config.rb(canonical_channel_name) : added
1189
+ and all configuration keys of channel information are canonical
1190
+
1191
+ * ndk_state.rb(canonical_channel_name) : added
1192
+ and all state keys of channel are canonical
1193
+
1194
+
1195
+ 2004-05-09(Sun) 18:11:30 +0900 Koichi Sasada <ko1@atdot.net>
1196
+
1197
+ * ndk_manager.rb : correct command to clients
1198
+
1199
+
1200
+ 2004-05-09(Sun) 17:27:46 +0900 Koichi Sasada <ko1@atdot.net>
1201
+
1202
+ * ndk_manager.rb : change away nick lag time to 2 sec
1203
+
1204
+
1205
+ 2004-05-09(Sun) 16:46:30 +0900 Koichi Sasada <ko1@atdot.net>
1206
+
1207
+ * rice/irc.rb : fix some regexp bugs
1208
+
1209
+ * ndk_client.rb(send_motd) : use client original nick
1210
+
1211
+ * ndk_client.rb ; check io is still open
1212
+
1213
+ * plugins/rss_check.nb : change string compare operator
1214
+ from '=~' to '=='
1215
+
1216
+
1217
+ 2004-05-09(Sun) 03:33:29 +0900 Koichi Sasada <ko1@atdot.net>
1218
+
1219
+ * ndk_manager.rb, ndk_state.rb(nick_succ) :
1220
+ change nick.succ algorithm and timing(always change)
1221
+
1222
+ * ndk_manager.rb : refactoring around nick and away nick
1223
+
1224
+ * ndk_config.rb : change login timing action default
1225
+ to do nothing
1226
+
1227
+
1228
+ 2004-05-05(Wed) 17:19:14 +0900 Koichi Sasada <ko1@atdot.net>
1229
+
1230
+ * ndk_version.rb : 0.5.5 prepared
1231
+
1232
+
1233
+ 2004-05-05(Wed) 16:24:03 +0900 Koichi Sasada <ko1@atdot.net>
1234
+
1235
+ * ChangeLog : change date format
1236
+
1237
+ * 0.5.4 released
1238
+
1239
+
1240
+ Sun, 02 May 2004 03:34:54 +0900 Koichi Sasada <ko1@atdot.net>
1241
+
1242
+ * nadoka.rb : add location of nadoka.rb to load path
1243
+
1244
+
1245
+ Sat, 01 May 2004 23:58:55 +0900 Koichi Sasada <ko1@atdot.net>
1246
+
1247
+ * ndk_manager.rb : support nadoka control with signal
1248
+ and bot event on_sigusr[12]
1249
+
1250
+
1251
+ Sat, 01 May 2004 23:04:40 +0900 Koichi Sasada <ko1@atdot.net>
1252
+
1253
+ * ndk_manager.rb : fix typo
1254
+
1255
+
1256
+ Sat, 01 May 2004 19:11:29 +0900 Koichi Sasada <ko1@atdot.net>
1257
+
1258
+ * change source management system to Subversion
1259
+
1260
+
1261
+ Sat, 01 May 2004 14:38:04 +0900 Koichi Sasada <ko1@atdot.net>
1262
+
1263
+ * ndk_manager.rb : fix bootstrap process
1264
+
1265
+ * rice/irc.rb : add easy flood control
1266
+
1267
+ * 0.5.3 released
1268
+
1269
+
1270
+ Sat, 01 May 2004 14:03:52 +0900 Koichi Sasada <ko1@atdot.net>
1271
+
1272
+ * nadokarc : fix typo
1273
+
1274
+
1275
+ Sat, 01 May 2004 13:24:14 +0900 Koichi Sasada <ko1@atdot.net>
1276
+
1277
+ * ndk_config.rb : add nadoka server name
1278
+
1279
+ * nadokarc : fix IRCnet servers
1280
+
1281
+ * 0.5.2 released
1282
+
1283
+
1284
+ Sat, 01 May 2004 06:35:28 +0900 Koichi Sasada <ko1@atdot.net>
1285
+
1286
+ * ndk_logger.rb : added
1287
+
1288
+ * ndk_bot.rb : add @bot_config
1289
+
1290
+ * ndk_* : use @logger instead of @config to logging
1291
+
1292
+ * ndk_config.rb : extend BotConfig format
1293
+
1294
+ * ndk_manager.rb, rice/irc.rb : fix reconnect process
1295
+
1296
+ * some refactoring
1297
+
1298
+
1299
+ Fri, 30 Apr 2004 02:57:46 +0900 Koichi Sasada <ko1@atdot.net>
1300
+
1301
+ * ndk_manager.rb : ignore(and report) exception while '/nadoka reload'
1302
+ reloading
1303
+
1304
+
1305
+ Wed, 28 Apr 2004 11:24:23 +0900 Koichi Sasada <ko1@atdot.net>
1306
+
1307
+ * ndk_err.rb : change exception hierarchy
1308
+
1309
+ * ndk_manager.rb : dup filtered message
1310
+
1311
+
1312
+ Wed, 28 Apr 2004 10:31:29 +0900 Koichi Sasada <ko1@atdot.net>
1313
+
1314
+ * 0.5.1 released
1315
+
1316
+
1317
+ Wed, 28 Apr 2004 02:37:34 +0900 Koichi Sasada <ko1@atdot.net>
1318
+
1319
+ * plugins/shellbot.nb : remove debug print
1320
+
1321
+
1322
+ Wed, 28 Apr 2004 02:07:06 +0900 Koichi Sasada <ko1@atdot.net>
1323
+
1324
+ * plugins/evalbot.nb, plugins/shellbot.nb : added
1325
+
1326
+ * ndk_bot.rb : add on_client_privmsg, on_nadoka_command
1327
+
1328
+ * ndk_err.rb : add some exception class
1329
+
1330
+ * ndk_manager.rb : fix some bugs
1331
+
1332
+
1333
+ Tue, 27 Apr 2004 22:29:07 +0900 Koichi Sasada <ko1@atdot.net>
1334
+
1335
+ * ndk_version.rb : added
1336
+
1337
+ * ndk_manager.rb : add Privmsg_Filter, Notice_Filter
1338
+
1339
+
1340
+ Mon, 26 Apr 2004 10:46:49 +0900 Koichi Sasada <ko1@atdot.net>
1341
+
1342
+ * 0.5.0 released
1343
+
1344
+
1345
+ Mon, 26 Apr 2004 10:29:47 +0900 Koichi Sasada <ko1@atdot.net>
1346
+
1347
+ * ndk_manager.rb : change name on_message_default to
1348
+ on_every_message
1349
+
1350
+ * ndk_manager.rb, ndk_bot.rb : change first argument
1351
+ of bot event handlers to PrefixObject
1352
+
1353
+
1354
+ Sun, 25 Apr 2004 22:59:07 +0900 Koichi Sasada <ko1@atdot.net>
1355
+
1356
+ * plugins/rss_check.nb : add on_privmsg
1357
+
1358
+ * ndk_manager.rb : make ndk_error message more detail
1359
+
1360
+
1361
+ Sun, 25 Apr 2004 20:47:16 +0900 Koichi Sasada <ko1@atdot.net>
1362
+
1363
+ * ndk_manager.rb, ndk_bot.rb : fix typo(bot_destruct)
1364
+
1365
+ * ndk_err.rb : add NDK_BotBreak
1366
+
1367
+ * ndk_state.rb : remove debug output
1368
+
1369
+ * plugins/rss_check.rb : exception handling when translation error
1370
+
1371
+
1372
+ Sun, 25 Apr 2004 18:21:30 +0900 Koichi Sasada <ko1@atdot.net>
1373
+
1374
+ * ndk_manager.rb : add on_message_default
1375
+
1376
+
1377
+ Sun, 25 Apr 2004 14:55:56 +0900 Koichi Sasada <ko1@atdot.net>
1378
+
1379
+ * rss_check.rb : fix recent check
1380
+
1381
+
1382
+ Sat, 24 Apr 2004 23:48:07 +0900 Koichi Sasada <ko1@atdot.net>
1383
+
1384
+ * ndk_manager.rb : fix bug TCPServer.new. reported
1385
+ by Tadaaki OKABE <kabe@kabe.ac>.
1386
+
1387
+ * ndk_config.rb : fix ndk_config.rb script.
1388
+
1389
+ * rss_check.rb : add LIRS support
1390
+
1391
+ * rss_check.nb : add space around uri
1392
+
1393
+
1394
+ Sat, 24 Apr 2004 13:07:22 +0900 Koichi Sasada <ko1@atdot.net>
1395
+
1396
+ * rss_check.rb, plugins/rss_check.nb : added
1397
+
1398
+
1399
+ Sat, 24 Apr 2004 02:37:47 +0900 Koichi Sasada <ko1@atdot.net>
1400
+
1401
+ * ndk_config.rb : fix to use string strip
1402
+
1403
+
1404
+ Sat, 24 Apr 2004 01:20:55 +0900 Koichi Sasada <ko1@atdot.net>
1405
+
1406
+ * ndk_manager.rb, etc : introduce invoke_event mechanism
1407
+
1408
+ * ndk_config.rb : support Quit_Message which showed when
1409
+ program is quitting
1410
+
1411
+ * ndk_config.rb : support
1412
+ Channel_info{"ch" => {:part_message => '...'}}
1413
+
1414
+ * ndk_manager.rb, etc : fix exception handling with thread
1415
+
1416
+ * ndk_manager.rb : support /nadoka restart
1417
+
1418
+
1419
+ Fri, 23 Apr 2004 22:27:17 +0900 Koichi Sasada <ko1@atdot.net>
1420
+
1421
+ * ndk_state.rb : remove debug print
1422
+
1423
+
1424
+ Fri, 23 Apr 2004 19:56:54 +0900 Koichi Sasada <ko1@atdot.net>
1425
+
1426
+ * support tracing channel state. so nadoka doesn't need to command
1427
+ NAMES when a client join
1428
+
1429
+ * ndk_manager.rb : support channel join when client login
1430
+ (:timing => :login) by U.Nakamura <usa@garbagecollect.jp>
1431
+
1432
+ * ndk_config.rb : fix topic log format and output
1433
+
1434
+ * ndk_manager.rb, ndk_config.rb : add Client_server_host
1435
+
1436
+ * 0.4.0 released
1437
+
1438
+
1439
+ Fri, 23 Apr 2004 10:35:04 +0900 Koichi Sasada <ko1@atdot.net>
1440
+
1441
+ * ndk_manger.rb, ndk_client.rb, ndk_config.rb :
1442
+ support away action with Away_Message, Away_Nick
1443
+
1444
+ * nadoka.rb : fix version string
1445
+
1446
+ * ndk_config.rb : ACL -> ACL_Object
1447
+
1448
+ * 0.3.5 released
1449
+
1450
+
1451
+ Fri, 23 Apr 2004 02:45:13 +0900 Koichi Sasada <ko1@atdot.net>
1452
+
1453
+ * add a copyright statement to each file
1454
+
1455
+ * fix a ACL bug
1456
+
1457
+
1458
+ Thu, 22 Apr 2004 18:31:39 +0900 Koichi Sasada <ko1@atdot.net>
1459
+
1460
+ * rice/irc.rb : mitigate IRC message check(CRLF)
1461
+
1462
+
1463
+ Thu, 22 Apr 2004 17:58:25 +0900 Koichi Sasada <ko1@atdot.net>
1464
+
1465
+ * ndk_manager.rb : fix on_timer event call
1466
+
1467
+ * 0.3.4 released
1468
+
1469
+
1470
+ Thu, 22 Apr 2004 17:01:45 +0900 Koichi Sasada <ko1@atdot.net>
1471
+
1472
+ * ndk_client.rb : fix that send message to a client which has not
1473
+ logged in.
1474
+
1475
+ * ndk_config.rb : fix ${channel_name} sanitizing
1476
+
1477
+ * ndk_client.rb (login) : fix client login sequence
1478
+
1479
+ * ndk_config.rb : fix expand dir with log_dir
1480
+
1481
+ * ndk_manager.rb : close when client socket when client closed
1482
+
1483
+ * ndk_config.rb : add Client_server_acl
1484
+
1485
+ * ndk_config.rb : GC.start when reload config
1486
+
1487
+ * 0.3.3 released
1488
+
1489
+
1490
+ Thu, 22 Apr 2004 11:02:00 +0900 Koichi Sasada <ko1@atdot.net>
1491
+
1492
+ * ndk_bot.rb : add on_client_login, on_client_logout event
1493
+
1494
+ * plugins/sixamo.nb : ver. up sixamo bot san
1495
+
1496
+ * 0.3.2 released
1497
+
1498
+
1499
+ Wed, 21 Apr 2004 21:19:27 +0900 Koichi Sasada <ko1@atdot.net>
1500
+
1501
+ * ndk_manager.rb (logging) : add some logging action
1502
+
1503
+ * ndk_manager.rb : fix a ctcp VERSION bug.
1504
+
1505
+
1506
+ Wed, 21 Apr 2004 20:00:59 +0900 Koichi Sasada <ko1@atdot.net>
1507
+
1508
+ * ndk_config.rb : change the Server information setting format
1509
+
1510
+ * ndk_err.rb : add Nadoka::NDK_RestartProgram(not used)
1511
+
1512
+ * 0.3.0 released
1513
+
1514
+
1515
+ Wed, 21 Apr 2004 18:32:21 +0900 Koichi Sasada <ko1@atdot.net>
1516
+
1517
+ * plugins/sixamo.nb : modify to use configuration
1518
+
1519
+ * ndk_config.rb : Hostname use Socket.gethostname
1520
+
1521
+
1522
+ Wed, 21 Apr 2004 13:48:42 +0900 Koichi Sasada <ko1@atdot.net>
1523
+
1524
+ * plugins/sixamo.nb : added
1525
+
1526
+
1527
+ Wed, 21 Apr 2004 02:32:26 +0900 Koichi Sasada <ko1@atdot.net>
1528
+
1529
+ * ndk_manager.rb, ndk_client.rb : move 'send_from_client'
1530
+ method to ndk_client
1531
+
1532
+ * ndk_err.rb : add NDK_QuitProgram class
1533
+
1534
+
1535
+ Tue, 20 Apr 2004 18:06:47 +0900 Koichi Sasada <ko1@atdot.net>
1536
+
1537
+ * ndk_manager.rb (send_to_bot) : fix bot round robin routine
1538
+
1539
+ * ndk_bot.rb : add NDK_BotBreak to interrupt bot round robin
1540
+
1541
+ * ndk_config.rb : $C encode with URI.encode
1542
+
1543
+ * ndk_config.rb : Bots -> BotFiles
1544
+
1545
+ * ndk_config.rb : add Log_TimeFormat
1546
+
1547
+ * ndk_config.rb : Plugin_dir suppoort Enumerable
1548
+
1549
+ Tue, 20 Apr 2004 13:33:19 +0900 Koichi Sasada <ko1@atdot.net>
1550
+
1551
+ * 0.1 released
1552
+
1553
+