File: ChangeLog

package info (click to toggle)
tdiary 2.0.1-1sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 7,220 kB
  • ctags: 1,667
  • sloc: ruby: 20,044; lisp: 476; makefile: 91; sql: 32; sh: 31
file content (908 lines) | stat: -rw-r--r-- 32,916 bytes parent folder | download
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
2005-03-31 TADA Tadashi <sho@spc.gr.jp>
	* release 2.0.1.

2005-03-16 TADA Tadashi <sho@spc.gr.jp>
	* tb-send.rb: last section focused in default.

2005-03-11 TADA Tadashi <sho@spc.gr.jp>
	* back ports bug fixes from HEAD. see below:
	* image.rb (image_info): get correct size of any jpeg files.
	* amazon.rb (get_amazon_image): add a title attribute.
	* calendar3.rb: hide 'onmouseover' if @options['calendar3.show_popup'] == false, thanks to Ohiwa-san
	* makerss.rb: escapes inside description and title, thanks to Hideki Ikemoto <ikemo at wakaba.jp>
	* makerss.rb: escape comment body, thanks to Kouhei Sutou <kou at cozmixng.org>
	* calendar2.rb: escape quote in subtitle.
	* amazon.rb: remove debug print.
	* tb-send.rb: add some error check and bug fix. thanks Yutaka Oiwa <yutaka at oiwa.jp>

2004-10-03 Junichiro Kita <kita@kitaj.no-ip.com>
	* amazon.rb: add new option, @conf['amazon.over18']

2004-10-01  Masao Mutoh  <mutoh@highway.ne.jp>
	* counter.rb: Support @options["bot"]

2004-09-30  Masao Mutoh  <mutoh@highway.ne.jp>
	* a.rb: improve HTML

2004-09-26  Masao Mutoh  <mutoh@highway.ne.jp>
	* a.rb: Support config menu.
	* en/a.rb: Added.
	* a/: Removed.

2004-09-15  URABE Shyouhei  <shyouhei@ice.uec.ac.jp>
	* ja/disp_referrer.rb : add some search engines.

2004-08-13 TADA Tadashi <sho@spc.gr.jp>
	* makerss.rb: cut tail of entity reference. thanks IKEDA and snak.

2004-08-10 zunda <zunda at freeshell.org>
	* weather.rb, */weather.rb: show_robot enables to hide weather from robots

2004-08-09 NT <nt@be.to>
	* tlink.rb: fix typo.

2004-08-08 Junichiro Kita <kita@kitaj.no-ip.com>
	* category.rb: fix bug in category_anchor.

2004-08-07 TADA Tadashi <sho@spc.gr.jp>
	* makerss.rb: watch changing subtitle.
	* makerss.rb: delete entity references in description.
	* makerss.rb: fix wrong TSUKKOMI id with TrackBacks.
	* trackback/tb.rb: fix security hole of TrackBack spam by JavaScript.
	* image.rb: fix thumbnail specify bug on secure mode.

2004-07-30 zunda <zunda at freeshell.org>
	* ja/referer_scheme.rb: better regexp, thanks to Nishiyama-san
	<zn at mbf.nifty.com>

2004-07-27 zunda <zunda at freeshell.org>
	* ja/referer_scheme.rb: HatenaHost remended, thanks to Kakutani-san
	<shintaro at kakutani.com>.

2004-07-19 Junichiro Kita <kita@kitaj.no-ip.com>
	* makelirs.rb: fix errors when user agent is mobile.

2004-07-07 TADA Tadashi <sho@spc.gr.jp>
	* makerss.rb: some HTML tags escaped in description and content:encoded.

2004-07-06 TADA Tadashi <sho@spc.gr.jp>
	* makerss.rb: add description elements to items.

2004-07-05 TADA Tadashi <sho@spc.gr.jp>
	* makerss.rb: add categories to dc:subject element. thanks smbd
	<mitsuru@diana.dti.ne.jp>.

2004-07-02 TADA Tadashi <sho@spc.gr.jp>
	* makerss.rb: save HTML tag of subtitle in content. thanks smbd
	<mitsuru@diana.dti.ne.jp>.

2004-07-01 TADA Tadashi <sho@spc.gr.jp>
	* makerss.rb: enclose subtitle with h3 element.
	* category.rb: remove white space after category tag insert by JavaScript.

2004-06-27 TADA Tadashi <sho@spc.gr.jp>
	* release 2.0.0.

2004-06-27 Junichiro Kita <kita@kitaj.no-ip.com>
	* calendar3.rb: tDiary 1.4 is not supported any more

2004-06-26 Junichiro Kita <kita@kitaj.no-ip.com>
	* makerss.rb: define RDFSection if @mode == trackbackreceive
	* my-ex.rb: invalidated if mobile_agent

2004-06-24 Junichiro Kita <kita@kitaj.no-ip.com>
	* random_google.rb: hide if user agent is bot or modile_agent.

2004-06-23 Junichiro Kita <kita@kitaj.no-ip.com>
	* recent_comment3.rb: hide invisible comments.
	* recent_trackback3.rb: hide invisible trackbacks.

2004-06-19 TADA Tadashi <sho@spc.gr.jp>
	* footnote.rb: suppress making footnote in update mode.
	* makerss.rb: call body_enter_proc and body_leave_proc before output each section.
	* makerss.rb: support RSS auto discovery.

2004-06-19 zunda <zunda at freeshell.org>
	* category.rb: support ruby 1.6.x on secure mode.

2004-06-18 TADA Tadashi <sho@spc.gr.jp>
	* tb-send.rb: catch more error from trackback server.

2004-06-16 TADA Tadashi <sho@spc.gr.jp>
	* add zh (Traditional Chinese) language resources. thanks Hiroshi Yui <thinker60@mail2000.com.tw>.
	* makerss.rb: fix typo.

2004-06-15 TADA Tadashi <sho@spc.gr.jp>
	* makerss.rb: insert time zone into dc:date.
	* makerss.rb: fix error when section has no subtitle.
	* output_rdf.rb: remove.

2004-06-14  Kazuhiko  <kazuhiko@fdiary.net>
	* makerss.rb: CGI::escapeHTML title and description.

2004-06-14 TADA Tadashi <sho@spc.gr.jp>
	* makerss.rb: new plugin.

2004-06-12 zunda <zunda at freeshell.org>
	* disp_referer.rb: option added for command-line executed benchmark
	* {en,ja}/disp_referer.rb: better regexp, thanks to Aoki-san http://i.loveruby.net/d/20040530.html#p02

2004-06-12  Kazuhiko  <kazuhiko@fdiary.net>
	* ping.rb: use cgi.params['key'][0] instead of cgi['key'][0]

2004-06-11 TADA Tadashi <sho@spc.gr.jp>
	* ping.rb: fix error when no @options['ping.list'].

2004-06-10 TADA Tadashi <sho@spc.gr.jp>
	* ping.rb: multi threading.
	* ping.rb: 'Sending ping' checkbox in edit form.

2004-06-09 TADA Tadashi <sho@spc.gr.jp>
	* append-css.rb: fix typo.
	* ping.rb: append.

2004-06-07 TADA Tadashi <sho@spc.gr.jp>
	* list.rb: apply_plugin to the result string.

2004-05-28  Masao Mutoh  <mutoh@highway.ne.jp>
	* search_form.rb: Fix a wrong anchor for Yahoo Japan.
	Reported by michieru.

2004-06-02 zunda <zunda at freeshell.org>
	* ja/disp_referrer.rb, en/disp_referrer.rb: constants tainted to be used under secure diaries and ruby-1.6.x. Thanks Kazuhiko.

2004-06-01  Kazuhiko  <kazuhiko@fdiary.net>
	* windex.rb: check existence of the pstore directory in load().
	* squeeze.rb: 'add_update_proc' in plugin mode only.

2004-05-29 TADA Tadashi <sho@spc.gr.jp>
	* image.rb: fix bad width attribute in secure mode.

2004-05-28  Masao Mutoh  <mutoh@highway.ne.jp>
	* a.rb: escape HTML in anchor tag by Akinori MUSHA.

2004-05-17  Kazuhiko  <kazuhiko@fdiary.net>
	* title_tag.rb: apply_plugin in a day's title.
	* title_tag.rb: escape diary's title and day's title.

2004-05-16  mput <root@mput.dip.jp>
	* title_tag.rb : New file.

2004-05-14 zunda <zunda at freeshell.org>
	* ja/weather.rb: correct translation of `rain showers': http://zunda.freeshell.org/d/20040428.html#p02

2004-05-09 TADA Tadashi <sho@spc.gr.jp>
	* tb-send.rb, tb-show.rb, output_rdf.rb: support absolute path of @conf.index.
	* tb-show.rb: apply_plugin to dc:title.

2004-05-05 TADA Tadashi <sho@spc.gr.jp>
	* makelirs.rb: change ruby version independ code.

2004-05-05 yowa <yowaken@cool.ne.jp>
	* tb-send.rb: check excerpt is not null.

2004-05-04 TADA Tadashi <sho@spc.gr.jp>
	* makelirs.rb: add a comment into HTML header.

2004-05-03 TADA Tadashi <sho@spc.gr.jp>
	* tb-send.rb: support to specify multiple ping URL.
	* tb-show.rb: remove to add '...' after shorten.

2004-05-02 TADA Tadashi <sho@spc.gr.jp>
	* image.rb: a little modify forms and labels.
	* tb-send.rb: select section support in append mode.

2004-04-23  mput <root@mput.dip.jp>
	* recent_comment3.rb (recent_comment3): Sorry the commit I posted yesterday had another problem.  Fixed that.  Thanks to Kitaj.

2004-04-22 mput <root@mput.dip.jp>
	* recent_comment3.rb (recent_comment3): Bug fix.

2004.04.10 Masanori_KADO <QVE02451@nifty.com>
	* category.rb: display categories you use on update form.

2004-04-05 TADA Tadashi <sho@spc.gr.jp>
	* highlight.rb: using CSS class as .highlight. thanks ZnZ <zn@mbf.nifty.com>.
	* highlight.rb: insert when day mode only.

2004-03-31 TADA Tadashi <sho@spc.gr.jp>
	* tb-send.rb: section subtitle into TrackBack title when excerpt specified.
	* tb-send.rb: set tabindex to section field.

2004.03.23 Junichiro Kita <kita@kitaj.no-ip.com>
	* category.rb: works in secure mode. sorry.

2004.03.23 Junichiro Kita <kita@kitaj.no-ip.com>
	* category.rb, */category.rb: icon dir can be configured in unsecure mode.

2004.03.22 Junichiro Kita <kita@kitaj.no-ip.com>
	* category.rb, */category.rb: category icons can be configured.

2004-03-20 TADA Tadashi <sho@spc.gr.jp>
	* tb-send.rb: specify section of TrackBack source. thanks yowa <yowaken@cool.ne.jp>.
	* {ja,en}/tb-send.rb, tb-show.rb: a little modified some labels.

2004-03-16 TADA Tadashi <sho@spc.gr.jp>
	* referer_scheme.rb: support WiLiKi style.

2004.03.16 Junichiro Kita <kita@kitaj.no-ip.com>
	* category.rb: cache shorten body this time around. sumaso-

2004.03.15 Junichiro Kita <kita@kitaj.no-ip.com>
	* category.rb: add category_dropdown_list.
	* */category.rb: escape category name by CGI.escapeHTML in category_title.

2004.03.15 Masashi Seiki <mass@starshine.jp>
	* category.rb: category_navi does'nt show buttons who have empty labels.

2004.03.15 Masashi Seiki <mass@starshine.jp>
	* category.rb: save configurations.
	* category.rb: add new conf parameter: @conf['category.period']

2004-03-15  mput <root@mput.dip.jp>
	* category.rb (Cache::categorize_diary): bug fix for heredoc handling

2004.03.15 Junichiro Kita <kita@kitaj.no-ip.com>
	* category.rb: works in secure mode. cache shorten body again.

2004.03.15 Junichiro Kita <kita@kitaj.no-ip.com>
	* amazon.rb: don't show image when @mode == categoryview.

2004.03.15 Junichiro Kita <kita@kitaj.no-ip.com>
	* category.rb: cache entire body. Thanks kazuhiko.

2004.03.15 Junichiro Kita <kita@kitaj.no-ip.com>
	* category.rb: indexed category. Thanks mass and phonondrive.com.

2004-03-04 TADA Tadashi <sho@spc.gr.jp>
	* makelirs.rb: running under update_proc.
	* output_rdf.rb: running under update_proc.
	* squeeze.rb: running under update_proc.
	* tb-send.rb: running under update_proc.
	* comment_mail-*.rb: running under update_proc.

2004-02-26 TADA Tadashi <sho@spc.gr.jp>
	* ja/referer_scheme.rb: fix mod_ruby's error.
	* ja/referer_scheme.rb: modify hatena's URL. thanks KAKUTANI Shintaro <shintaro@kakutani.com>
	* output_rdf.rb: add <dc:creator> into RDF.
	* output_rdf.rb: remove path name from @options['outout_rdf.file']. Kazuhiro NISHIYAMA <zn@mbf.nifty.com>.
	* a/a_conf.rhtml: support ruby 1.8's ERB. thanks miyaken.

2004-02-25  mput <mput@users.sf.net>
	* en/disp_referrer.rb (DispRef2SetupIF::show_unknown_list): ditto.
	* ja/disp_referrer.rb (DispRef2SetupIF::show_unknown_list): add similarity search, answerbus, dogpile.

2004-02-24 TADA Tadashi <sho@spc.gr.jp>
	* referer_scheme.rb: a little modify about wiki scheme.

2004-02-22  Kazuhiko  <kazuhiko@fdiary.net>
	* output_rdf.rb: catch exception of 'File::mtime( rdf_file )'

2004-02-17 TADA Tadashi <sho@spc.gr.jp>
	* trackback/bookmarklet.ja: add. written by s.sawada <moonwave@ba2.so-net.ne.jp>.

2004-02-16 TADA Tadashi <sho@spc.gr.jp>
	* amazon.rb: swap aliased method names, and bug fix.

2004-02-09 TADA Tadashi <sho@spc.gr.jp>
	* my-ex.rb: fuzzy regexp in my plugin.
	* makelirs.rb: remove option 'makelirs.url'.

2004-02-09 sfanla <tdiary@sfanla.com>
	* append-css.rb: without escape CSS elements.

2004.01.28 TADA Tadashi <sho@spc.gr.jp>
	* tb-show.rb: fix error when TrackBack has only URL.

2004.01.27 mput <mput@users.sf.net>
	* ja/disp_referrer.rb: add Bulkfeeds to search engine.

2004.01.26 Junichiro Kita <kita@kitaj.no-ip.com>
	* calendar3.rb: fix displacement of popup window. thanks sfanla<tdiary@sfanla.com>.

2004.01.25 Junichiro Kita <kita@kitaj.no-ip.com>
	* recent_trackback3.rb: setting via conf.

2004.01.21 Junichiro Kita <kita@kitaj.no-ip.com>
	* recent_trackback3.rb: Oops. remove debug code.

2004.01.21 Junichiro Kita <kita@kitaj.no-ip.com>
	* recent_trackback3.rb: add.

2004.01.20 TADA Tadashi <sho@spc.gr.jp>
	* tb-show.rb: fix typo on autodiscovery RDF.

2004.01.14 Junichiro Kita <kita@kitaj.no-ip.com>
	* makelirs.rb: define Time#utc_offset if not defined.

2004.01.12 Junichiro Kita <kita@kitaj.no-ip.com>
	* my-ex.rb: this time, my can handle 'yyyymmdd#txx'.

2004.01.12 Junichiro Kita <kita@kitaj.no-ip.com>
	* tb-*.rb: if trackback is longer than 255 byte, it will be shorten to 252 byte and '...' will be added.

2004.01.09 RedGecko <redgecko@redgecko.jp>
	* random_google.rb: hide link access by bot.

2003.12.30 Junichiro Kita <kita@kitaj.no-ip.com>
	* my-ex.rb: my can handle 'yyyymmdd#txx'.

2003.12.26 TADA Tadashi <sho@spc.gr.jp>
	* tb-show.rb: shorten excerpt into 256 bytes.
	* image.rb: support blog styles.

2003.12.25 TADA Tadashi <sho@spc.gr.jp>
	* tb-send.rb: support error messages in multi-lines.
	* makelirs.rb: set last-modified to time stamp of file. thanks Takeru KOMORIYA <komoriya@paken.org>.
	* output_rdf.rb: set revious time stamp to RDF when diary was hidden.

2003.12.19 TADA Tadashi <sho@spc.gr.jp>
	* squeeze.rb, windex.rb, trackback/tb.rb: set $KCODE to 'n'.

2003-12-17 zunda <zunda at freeshell.org>
	* referer_scheme.rb: updated documentation in the lang. resources
	* referer_scheme.rb: avoid infinite call of aliased `each' when the plug-in is eval'ed more than once.
	* referer_scheme.rb: scheme_tdiary moved to the plugin-body
	* referer_scheme.rb: bug fixed for scheme_tdiarynet. thanks to kosaka http://tnat.net/diary/?date=20031217#p01
	* ja/weather.rb: translation for heavy rain added. thanks to kosaka http://tnat.net/diary/?date=20031217
	* referer_scheme.rb: scheme_ymd added. thanks to kitaj http://kitaj.no-ip.com/tdiary/20031218.html#p02

2003-12-16 zunda <zunda at freeshell.org>
	* referer_scheme.rb: new plug-in to expand referer_table. Idea by akira yamada <akira at akira.org>, doesn't work with ruby 1.6.7 ;(
	* referer_scheme.rb: now works on ruby 1.6.7. thanks Minero Aoki <aamine at loveruby.net>

2003-12-16 TADA Tadashi <sho@spc.gr.jp>
	* my-ex.rb: accept fuzzy anchor style.

2003-12-12 TADA Tadashi <sho@spc.gr.jp>
	* output_rdf.rb: add output_rdf.image option. thanks Kouhei Sutou <kou@cozmixng.org>.

2003-12-11 TADA Tadashi <sho@spc.gr.jp>
	* squeeze.rb: behave to like a bot.

2003-12-10 TADA Tadashi <sho@spc.gr.jp>
	* amazon.rb: add 'clear cache' switch in prefenrences page.
	* tb-show.rb: hide link when bot access (against trackback spam).
	* tb-show.rb: hide RDF of ping url when bot access (against trackback spam).

2003-12-05 TADA Tadashi <sho@spc.gr.jp>
	* amazon.rb: hide conf menu when secure mode and amazon.hideconf.

2003-12-02  Kazuhiko  <kazuhiko@fdiary.net>
	* amazon.rb: hide some options in secure mode.

2003-12-02 TADA Tadashi <sho@spc.gr.jp>
	* amazon.rb: add options amazon.imgsize and amazon.nodefault. thanx KOMORIYA.
	* amazon.rb: remove options amazon.smallimg.
	* amazon.rb: split ja resource.

2003-12-01 TADA Tadashi <sho@spc.gr.jp>
	* amazon.rb: add options amazon.smallimg and amazon.hidename. thanx KOMORIYA.

2003-11-26 nt <nt@be.to>
	* tlink.rb: use @conf.base_url.

2003-11-25 zunda <zunda at freeshell.org>
	* weather.rb: avoid showing duplicated translation like mist/mist, thanks toshi-san.

2003-11-19 Junichiro Kita <kita@kitaj.no-ip.com>
	* tb-send.rb, tb-show.rb, makelirs.rb, output_rdf.rb: use @conf.base_url

2003-11-18 zunda <zunda at freeshell.org>
	* ja/disp_referrer.rb, en/disp_referer.rb: hopefully more usable config menu
	* Thanks to Kazuhiro NISHIYAMA, TADA Tadashi, NISHIMURA Takashi, ysano, Daigo Moriwaki, and mass.

2003-11-19  Kazuhiko  <kazuhiko@fdiary.net>
	* output_rdf.rb: escape @html_title. support hidden diary.

2003-11-17 TADA Tadashi <sho@spc.gr.jp>
	* edit.rb: remove.

2003-11-14 TADA Tadashi <sho@spc.gr.jp>
	* append-css.rb: add "type" attr and comment tag.
	* random_google.rb: remove TARGET attr from A element.
	* html_anchor.rb: add come comments.

2003-11-13 TADA Tadashi <sho@spc.gr.jp>
	* nazo.rb: removed.
	* highlight.rb: nazo.rb modified and added. thanks to ZnZ <zn@mbf.nifty.com>

2003-11-11  Kazuhiko  <kazuhiko@fdiary.net>
	* comment_rank.rb: fix XSS.

2003-11-10 Junichiro Kita <kita@kitaj.no-ip.com>
	* tb-show.rb: fix XSS.

2003-11-10 TADA Tadashi <sho@spc.gr.jp>
	* tb-send.rb: i18n, but not support UTF-8.
	* tb-show.rb, trackback/tb.rb: i18n.

2003-11-09 Junichiro Kita <kita@kitaj.no-ip.com>
	* amazon.rb: fix bug in amazonNoImg.

2003-11-07 TADA Tadashi <sho@spc.gr.jp>
	* output_rdf.rb: add information to HTML header for Auto-Discovery. thanks mput.
	* output_rdf.rb: i18n.

2003-11-05 zunda <zunda at freesehll.org>
	* ja/weather.rb: added `(partial )?(freezing )?' to `fog', ignore `patches of'

2003-10-30 TADA Tadashi <sho@spc.gr.jp>
	* tb-show.rb: fix bug in mod_ruby environment.

2003-10-28 Junichiro Kita <kita@kitaj.no-ip.com>
	* calendar2.rb, calendar3.rb, my-ex.rb,
	output_rdf.rb, recent_list.rb, title_list.rb: support new io.

2003-10-24 TADA Tadashi <sho@spc.gr.jp>
	* disp_referrer.rb: fix bug on 23 Oct.

2003-10-23 TADA Tadashi <sho@spc.gr.jp>
	* disp_referrer.rb: escape a bug of String#tr in ruby 1.6 dose not run in secure mode.

2003-10-23 Junichiro Kita <kita@kitaj.no-ip.com>
	* tb-show.rb: bug fix. Make <a name="t"> even if there is no trackbacks.

2003-10-22 zunda <zunda at freeshell.org>
	* disp_referrer.rb: language resources for ja and en completed (kondo koso..)

2003-10-21 zunda <zunda at freeshell.org>
	* disp_referrer.rb: language resources for ja and en completed (hopefully :)

2003-10-21 Junichiro Kita <kita@kitaj.no-ip.com>
	* output_rdf.rb: follow new @conf.shorten.

2003-10-21  Kazuhiko  <kazuhiko@fdiary.net>
	* outpur_rdf.rb: make plain text title. ignore empty comment. add
	'dc:date' to each comment.

2003-10-20 zunda <zunda at freeshell.org>
	* disp_referrer.rb: syntax error fixed. su ma so...

2003-10-20 zunda <zunda at freeshell.org>
	* disp_referrer.rb: search engine added: Comet Web Search

2003-10-19 Junichiro Kita <kita@kitaj.no-ip.com>
	* todo.rb: priority is optional.

2003-10-18  Kazuhiko  <kazuhiko@fdiary.net>
	* output_rdf.rb: make plain text description. change default file
	name from 't.rdf' to 'index.rdf'. make an item per comment.

2003-10-16  Kazuhiko  <kazuhiko@fdiary.net>
	* plugin.rb: 'priority' is also optional.

2003.10.14 zunda <zunda at freeshell.org>
	* disp_referrer.rb: search engine list in lang. resources (still more to do)

2003.10.13 Gony <gony@sm.rim.or.jp>
	* windex.rb: bug fix.
	* windex.rb: add wikw method.
	* windex.rb: support kw argument at CGI mode.
	* windex.rb: support @options['windex.generate_all'] option.

2003-10-13 zunda <zunda at freeshell.org>
	* search_control.rb: ja and en resources are divided.

2003-10-13 Junichiro Kita <kita@kitaj.no-ip.com>
	* kw.rb: kw can take 2 args. thanks to yowa.

2003-10-13 Junichiro Kita <kita@kitaj.no-ip.com>
	* tb-send.rb: HTMLize excerpt of TrackBack ping. thanks to matz.

2003-10-13  Kazuhiko  <kazuhiko@fdiary.net>
	* image.rb: revise for @conf.secure.

2003-10-13 Junichiro Kita <kita@kitaj.no-ip.com>
	* image.rb: support ruby1.8.

2003-10-12 TADA Tadashi <sho@spc.gr.jp>
	* image.rb: comma separated image size by 3digs.

2003-10-12 Junichiro Kita <kita@kitaj.no-ip.com>
	* image.rb: guess image type and image size from file header. thanks to akira@arika.org.

2003-10-09  Kazuhiko  <kazuhiko@fdiary.net>
	* comment_mail-qmail.rb: add "-f #{@conf.author_mail.untaint}"

2003-10-09 TADA Tadashi <sho@spc.gr.jp>
	* referer-antibot.rb: support 'bot?' method and English document.

2003-10-08  Kazuhiko  <kazuhiko@fdiary.net>
	* todo.rb: catch exception of 'FileTest::exist?(todo_file)' for mod_ruby.

2003-10-08 Junichiro Kita <kita@kitaj.no-ip.com>
	* todo.rb: if @conf['todo.todos'] == nil, @conf['todo.todos'] = ''.

2003-10-08  Kazuhiko  <kazuhiko@fdiary.net>
	* image.rb: show image size unless @conf.secure only.

2003-10-07 Junichiro Kita <kita@kitaj.no-ip.com>
	* tb-send.rb, tb-show.rb: move from trackback/

2003-10-06  Kazuhiko  <kazuhiko@fdiary.net>
	* comment_mail-smtp.rb: untaint 'From address' for mod_ruby.

2003-10-02 zunda <zunda at freeshell.org>
	* disp_referrer.rb: refined match for nifty

2003-10-01 Junichiro Kita <kita@kitaj.no-ip.com>
	* todo/*: removed.
	* todo.rb, ja/todo.rb, en/todo.rb: ToDo is saved into @conf['todo.todos'].

2003-09-30 zunda <zunda at freeshell.org>
	* disp_referrer.rb: refined match for biglobe search, one more search engine

2003-09-29 zunda <zunda at freeshell.org>
	* weather.rb: Japanese resources divided into  a separate file, English resource created

2003-09-29 zunda <zunda at freeshell.org>
	* disp_referrer.rb: forgot to change arguments after changing initialize()

2003-09-28 Junichiro Kita <kita@kitaj.no-ip.com>
	* image.rb: write images with print method instead of puts method.
	* image.rb: show image size.

2003-09-27 Junichiro Kita <kita@kitaj.no-ip.com>
	* trackback/tb-show.rb: make RDF only when @mode == 'day'.

2003-09-26 TADA Tadashi <sho@spc.gr.jp>
	* select_plugins.rb: enable running on ruby 1.6.5. again.

2003-09-25 zunda <zunda at freeshell.org>
	* disp_referrer.rb: name.untaint to eval name

2003-09-25 TADA Tadashi <sho@spc.gr.jp>
	* select_plugins.rb: enable running on ruby 1.6.5.

2003-09-25 Junichiro Kita <kita@kitaj.no-ip.com>
	* trackback/tb.rb, todo/todo.rb: use conf.encoding and conf.mobile_encoding instead of conf.charset.

2003-09-25 zunda <zunda at freeshell.org>
	* disp_referrer.rb: to_euc removed, instead using @conf.to_native

2003-09-25 TADA Tadashi <sho@spc.gr.jp>
	* support i18n framework.
	* english support: append-css, image, kw, speed_comment, amazon, dropdown_calendar.
	* *.rb: remove String#to_euc.
	* referer-utf8.rb: obsolete.
	* amazon.rb: safe on secure mode.

2003-09-25 Kita Junichiro <kita@kitaj.no-ip.com>
	* trackback/tb-show.rb: add <div class="trackbacks">. Thanks to mput.

2003-09-25 TADA Tadashi <sho@spc.gr.jp>
	* image.rb: english support.
	* output_rdf.rb: use @conf.shorten.

2003-09-24 TADA Tadashi <sho@spc.gr.jp>
	* speed_comment.rb: support cookie for name, and conf_proc.

2003-09-23 SAKAMOTO Hideki <hs@on-sky.net>
	* sn.rb: document corrected

2003-09-19 zunda <zunda at freeshell.org>
	* disp_referrer.rb (head): overwritten with disp_referrer2.rb,v 1.1.2.104

2003-09-19  Kazuhiko  <kazuhiko@fdiary.net>
	* trackback/tb.rb: remove '</div>\n<div class="refererlist">'.

2003-09-18 TADA Tadashi <sho@spc.gr.jp>
	* whatsnew.rb: support apply_plugin.

2003-09-17 SAKAMOTO Hideki <hs@on-sky.net>
	* sn.rb: add add_body_leave_proc

2003-09-16 TADA Tadashi <sho@spc.gr.jp>
	* sn.rb: added.
	* number_anchor.rb: fix typo.

2003-09-10 zunda <zunda at freeshell.org>
	* disp_referrer.rb: Branch_disp_referrer-1 made on disp_referrer.rb.
	* disp_referrer.rb: use -r Branch_disp_referrer-1 option for MUTOH-san's

2003-09-07 Junichiro Kita <kita@kitaj.no-ip.com>
	* random_google.rb: add

2003-09-01 zunda <zunda at freeshell.org>
	* todo/todo.rhtml: s/%%>/%>/g for newer version of erb

2003-08-26 zunda <zunda at freeshell.org>
	* select_plugins.rb: simpler configuration display
	* search_control.rb: simpler configuration display

2003-08-27 zunda <zunda at freeshell.org>
	* 01_select_plugins.rb: renamed as select_plugins.rb
	* select_plugins.rb: does not show comments and sources in default

2003-08-26 zunda <zunda at freeshell.org>
	* search_control.rb: no table in configuration view, thanks to Tada-san.

2003-08-26 zunda <zunda at freeshell.org>
	* search_control.rb: added
	* 01_select_plugins.rb: added

2003-08-24 Junichiro Kita <kita@kitaj.no-ip.com>
	* output_rdf.rb: use @date

2003-08-20 TADA Tadashi <sho@spc.gr.jp>
	* append-css.rb: add.

2003-08-20 TADA Tadashi <sho@spc.gr.jp>
	* search_form.rb: to valid HTML. thanks Kakutani.

2003-08-20 TADA Tadashi <sho@spc.gr.jp>
	* kw.rb: save as String to conf.

2003-08-20 TADA Tadashi <sho@spc.gr.jp>
	* kw.rb: support conf_proc. thanks kazuhiko.

2003-08-16 zunda <zunda at freeshell.org>
	* weather.rb: heavy rain showers, thank you halchan-san

2003-08-11 TADA Tadashi <sho@spc.gr.jp>
	* amazon.rb: fix error when amazon.aid was nil.

2003-08-08 TADA Tadashi <sho@spc.gr.jp>
	* amazon.rb: support conf_proc, and add an option 'amazon.hideconf'.

2003-08-06 zunda <zunda at freeshell.org>
	* weather.rb: lightning -> Inazuma, thank you kotak-san

2003-08-06 Junichiro Kita <kita@kitaj.no-ip.com>
	* trackback/tb-send.rb: raise TDiaryTrackBackError if TrackBack Ping fail.

2003-08-05  Kazuhiko  <kazuhiko@fdiary.net>
	* squeeze.rb: make html when receiving TrackBack Ping
	* output_rdf.rb: make rdf when receiving TrackBack Ping

2003-08-04 zunda <zunda at freeshell.org>
	* squeeze.rb: sets mtime of the HTML files, exit(1) when error

2003-08-03 Junichiro Kita <kita@kitaj.no-ip.com>
	* makelirs.rb: make lirs when receiving TrackBack Ping

2003-07-24 zunda <zunda at freeshell.org>
	* weather.rb: Syntax error in drizzle fixed

2003-07-22 zunda <zunda at freeshell.org>
	* weather.rb: debug code erased m(. .;;)m

2003-07-21 zunda <zunda at freeshell.org>
	* weather.rb: support conf_proc, %r literals for ruby-1.8.0

2003-06-16 TADA Tadashi <sho@spc.gr.jp>
	* comment_mail-*.rb: support conf_proc new spec.

2003-06-14 TADA Tadashi <sho@spc.gr.jp>
	* comment_mail-*.rb: support conf_proc.

2003-06-12 TADA Tadashi <sho@spc.gr.jp>
	* [TESTING] comment_mail-*.rb: support conf_proc.

2003-06-07 TADA Tadashi <sho@spc.gr.jp>
	* image.rb: renumbering tabindex.
	* trackback/tb-send.rb: renumbering tabindex.

2003-06-06 zunda <zunda at freeshell.org>
	* weather.rb: checks data age, `towering cumulus clouds'

2003-06-06 TADA Tadashi <sho@spc.gr.jp>
	* edit.rb: obsolete.

2003-06-03 zunda <zunda at freeshell.org>
	* weather.rb: ignores `... in the vicinity' Thank you kosaka-san.

2003-05-26 zunda <zunda at freeshell.org>
	* weather.rb: fix typo on option names (thank you haluchan).

2003-05-19 MUTOH Masao <mutoh@highway.ne.jp>
	* disp_referrer.rb: Support to seperate Antenna similar to 
	disp_referrer2(by zunda).

2003-05-17 TADA Tadashi <sho@spc.gr.jp>
	* squeeze.rb: fix path of theme on CGI or CMD mode.
	* image.rb: fix typo. thanks HASHIMOTO Keisuke.
	* image.rb: add thumbnail in 3rd parameter of image method.
	* image.rb: force image width to 160 in update form.
	* image.rb: add image_link method.

2003-05-15 TADA Tadashi <sho@spc.gr.jp>
	* add trackback/README.

2003-05-15 Junichiro Kita <kita@kitaj.no-ip.com>
	* tb-show.rb: CGI::escapeHTML dc:title.
	* tb-show.rb: replace /-{2,}/ in RDF's dc:title to '&#45;'s.

2003-05-15 Junichiro Kita <kita@kitaj.no-ip.com>
	* tb-send.rb: add charset parameter.

2003-05-13 TADA Tadashi <sho@spc.gr.jp>
	* amazon.rb: cancel modify on 2003-05-11.
	* amazon.rb: support ruby 1.8.

2003-05-11 TADA Tadashi <sho@spc.gr.jp>
	* amazon.rb: escapeHTML strings from amazon.

2003-05-11 Junichiro Kita <kita@kitaj.no-ip.com>
	* tb.rb: use day.rhtml to do some plugin task.

2003-05-11 Junichiro Kita <kita@kitaj.no-ip.com>
	* tb-show.rb: new option. @options['tb.hide_if_no_tb'].

2003-05-10 Junichiro Kita <kita@kitaj.no-ip.com>
	* tb-send.rb: rescue failure to send TrackBack Ping.

2003-05-09 Junichiro Kita <kita@kitaj.no-ip.com>
	* calendar3.rb: use bot? to detect bot
	* trackback/tb-show.rb: use bot? to detect bot

2003-05-09 zunda <zunda at freeshell.org>
	* weather.rb: imported from zunda's local revision 1.1.2.32.

2003-05-08 TADA Tadashi <sho@spc.gr.jp>
	* kw.rb: fix bug when no default in @options['kw.dic']. thenks yowa.
	* kw.rb: @options['kw.show_inter'] support.

2003-05-06 TADA Tadashi <sho@spc.gr.jp>
	* image.rb: add notice 'JPEG only' when secure mode.
	* trackback/tb-show.rb: fail safe for running on command line.
	* html_anchor.rb, numberanchor.rb: anchor can handle yyyymmdd#txx.

2003-05-06 Junichiro Kita <kita@kitaj.no-ip.com>
	* trackback/tb-show.rb: generate anchor for each TrackBack.
	* recent_comment3.rb: use each_comment rather than count_comments to count comments. (for trackback)

2003-05-05 TADA Tadashi <sho@spc.gr.jp>
	* trackback/tb-send.rb: modify form layout.

2003-05-04 Junichiro Kita <kita@kitaj.no-ip.com>
	* trackback/tb-show.rb: antibot.
	* trackback/tb-show.rb: displaying position changed.
	* trackback/tb-show.rb: don't use ENV['SERVER_PORT']. (ENV['HTTP_HOST'] includes port number.)

2003-05-03 Junichiro Kita <kita@kitaj.no-ip.com>
	* trackback/tb-send.rb: Add methods for customizing messages.
	* trackback/tb.rb: remove classes for TrackBack.

2003-05-01 Junichiro Kita <kita@kitaj.no-ip.com>
	* trackback/tb-send.rb: shorten excerpt to about 255bytes.

2003-04-30 Junichiro Kita <kita@kitaj.no-ip.com>
	* trackback/tb-show.rb: show TrackBacked time.

2003-04-29 Junichiro Kita <kita@kitaj.no-ip.com>
	* trackback/tb-show.rb: make anchor to TrackBack Ping URL.
	* trackback/tb-send.rb: change separator of CGI parameters from ';' to '&'. now it works with b2.

2003-04-28 TADA Tadashi <sho@spc.gr.jp>
	* makelirs.rb: enable running on secure mode.

2003-04-28 TADA Tadashi <sho@spc.gr.jp>
	* trackback/tb-show.rb, tb.rb: fix some security holes.
	* trackback/tb-show.rb: show ping url under 'add TSUKKOMI'.
	* trackback/tb-show.rb: support name based virtual host and root directory.
	* trackback/tb-send.rb: change name attr of fields for edit_proc spec.
	* trackback/tb-send.rb: independ from net/uri.
	* trackback/tb.rb: support symlink.
	* trackback/tb.rb: save TrackBack in visible.
	* image.rb: fix bug when comment status change.
	* sqeeze.rb, output_rdf.rb, makelirs.rb: enable running on secure mode.
	* output_rdf.rb: enable running on secure mode.
	* output_rdf.rb: support non UTF-8 when cannot load uconv.

2003-04-28 Junichiro Kita <kita@kitaj.no-ip.com>
	* trackback/tb.rb: GET request is redirected to TrackBacks(?date=yyyymmdd#t).

2003-04-27 TADA Tadashi <sho@spc.gr.jp>
	* trackback/tb-show.rb: support TrackBack hide and ruby 1.8.

2003-04-27 Junichiro Kita <kita@kitaj.no-ip.com>
	* add trackback/*.

2003-04-25 TADA Tadashi <sho@spc.gr.jp>
	* image: maxnum and maxsize effective in secure mode.
	* image: add JavaScript for insert plugin tag into diary. thanks Yoshimi KURUMA <yoshimik@iris.dti.ne.jp>.
	* image: show message when upload failed.

2003-04-24 TADA Tadashi <sho@spc.gr.jp>
	* image: enable running on secure mode.

2003-04-24 TADA Tadashi <sho@spc.gr.jp>
	* add image.rb into plugin collection.

2003-04-23 TADA Tadashi <sho@spc.gr.jp>
	* amazon: add some comments to description of parameters.

2003-04-19 TADA Tadashi <sho@spc.gr.jp>
	* add jdate.rb.

2003-04-18 TADA Tadashi <sho@spc.gr.jp>
	* add comment_mail-{smtp,qmail,sendmail}.rb.

2003-04-16 TADA Tadashi <sho@spc.gr.jp>
	* dropdown_calendar: fix p.calendar -> div.calendar.
	* dropdown_calendar: support @options['dropdown_calendar.label'].

2003-03-04 TADA Tadashi <sho@spc.gr.jp>
	* follow to changing book title style in Amazon's HTML.

2003-03-28 TADA Tadashi <sho@spc.gr.jp>
	* add referer-antibot.rb and referer-utf8.rb.

2003-03-22 Minero Aoki <aamine@loveruby.net>
	* a/a_conf.rb, bq.rb, kw.rb, nazo.rb, recent_comment3.rb, todo/todo.rb: remove warning on ruby 1.8.

2003-03-08 Hiroyuki Ikezoe <zoe@kasumi.sakura.ne.jp>
	* makelirs.rb: set TD. Thanks koyasu san.

2003-03-04 TADA Tadashi <sho@spc.gr.jp>
	* support ruby 1.8.0 preview2.

2003-03-03 MUTOH Masao <mutoh@highway.ne.jp>
	* a.rb: Added.

2003-03-03 Hiroyuki Ikezoe <zoe@kasumi.sakura.ne.jp>
	* output_rdf.rb: validate by RSS 1.0 <http://www.redland.opensource.ac.uk/rss/>
	  Thanks Kakutani san. (see http://www.tdiary.net/archive/devel/msg00581.html)

2003-02-09 Junichiro Kita <kita@kitaj.no-ip.com>
	* merge from amazon2.rb. see http://kuwa.s26.xrea.com/b/20030211.html

2003-01-27 Hiroyuki Ikezoe <zoe@kasumi.sakura.ne.jp>
	* output_rdf.rb: reorder apply_plugin.

2003-01-21 Hiroyuki Ikezoe <zoe@kasumi.sakura.ne.jp>
	* output_rdf.rb: no requirement of diary.rrdf.
	* output_rdf.rb: rss version 1.0.

2003-01-13 TADA Tadashi <sho@spc.gr.jp>
	* for ruby 1.6.8. thanks woods <sodium@da2.so-net.ne.jp>.

2003-01-11 Hiroyuki Ikezoe <zoe@kasumi.sakura.ne.jp>
	* output_rdf.rb: use Plugin#apply_plugin.
	* output_rdf.rb: compatible defaultio

2003-01-09 MUTOH Masao <mutoh@highway.ne.jp>
	* my-ex.rb: Improve to show the anchor's title of section.subtitle.

2003-01-02 Kazuhiko  <kazuhiko@fdiary.net>
	* nazo.rb (nazo): Add 'type="text/javascript"' for valid html output. Revise URI of FAQ.

2002-11-28 TADA Tadashi <sho@spc.gr.jp>
	* HTML 4.01 Strict support.

2002-10-28 zoe <zoe@kasumi.sakura.ne.jp>
	* makelirs.rb: merge 1.4. Thanks koyasu san.

2002-10-13 MUTOH Masao <mutoh@highway.ne.jp>
	* search_form.rb: fix in Google search.
	* search_form.rb: insert image into Yahoo search.
	* search_form.rb: remove Lycos search. All of them were pointed out by patagon.
	* search_form.rb: version 1.0.2

2002-10-06 TADA Tadashi <http://sho.tdiary.net/>
	* makelirs.rb: for tDiary 1.5.0.20021003.

2002-09-01 Junichiro Kita <kita@kitaj.no-ip.com>
	* change URL for images.

2002-07-09 TADA Tadashi <sho@spc.gr.jp>
	* follow chaging of title format in amazon.

2002-05-19 MUTOH Masao <mutoh@highway.ne.jp>
	* search_form.rb: document update.
	* search_form.rb: version 1.0.1

2002-05-05 TADA Tadashi <http://sho.tdiary.net/>
	* makelirs.rb: support @options.

2002-05-04 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
	* makelirs.rb: create.

2002-04-01 MUTOH Masao <mutoh@highway.ne.jp>
	* search_form.rb: tab = 3, change document format.

2002-03-24 MUTOH Masao <mutoh@highway.ne.jp>
	* search_form.rb: support Namazu, Google, Yahoo!, Lycos
	* search_form.rb: version 1.0.0