forked from tdiary/tdiary-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
3176 lines (2306 loc) · 116 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
2014-02-21 TADA Tadashi <[email protected]>
* add theme_online plugin #291
2013-03-20 SHIBATA Hiroshi <[email protected]>
* misc/style/gfm/gfm_style.rb: bugfix #268, #269. fixed broken rule of autolink replacements.
2013-03-13 TADA Tadashi <[email protected]>
* tdiary/server.rb: fix js not load
* alert of old ruby version for end of ruby 1.8
2013-03-10 SHIBATA Hiroshi <[email protected]>
* tdiary/io/cache/redis.rb: added Redis cache store.
2013-02-10 MATSUOKA Kohei <[email protected]>
* tdiary/view.rb, js/comment_ajax.js: post comment with ajax.
* tdiary/request.rb: implement TDiary::Request#xhr?
2013-02-07 MATSUOKA Kohei <[email protected]>
fixed #260: tDiary.document_root returns current directory in the CGI/FastCGI
2013-02-06 MATSUOKA Kohei <[email protected]>
fixed #250: disable Rack::Reloader except development environment
2013-02-06 TADA Tadashi <[email protected]>
fixed #259: return path under tDiary.document_root only not fullpath
2013-02-01 MATSUOKA Kohei <[email protected]>
* misc/plugin/makerss.rb: puts rss file to the public directory if the Rack environment
2013-01-30 MATSUOKA Kohei <[email protected]>
* tdiary.rb: add TDiary::document_root to return static contents directory
2013-01-29 SHIBATA Hiroshi <[email protected]>
* release 3.2.1
2013-01-22 SHIBATA Hiroshi <[email protected]>
* misc/plugin/recent_comment3.rb: directory matching condition discarded to ambiguous pattern.
2013-01-20 SHIBATA Hiroshi <[email protected]>
* misc/plugin/recent_comment3.rb: guard to overwrite empty data when exists data.
2013-01-19 SHIBATA Hiroshi <[email protected]>
* skel/show.rhtml, tdiary/base.rb, tdiary/dispatcher/update_main.rb: remove unnecessary skelton.
2013-01-18 MATSUOKA Kohei <[email protected]>
* plugin/05referer.rb: record up to 10,000 of the volatile referer
2013-01-16 MATSUOKA Kohei <[email protected]>
* tdiary/base.rb: enable plugin cache again, except blogkit
* config.ru ValidRequestPath after Rack::File to return public contents
2013-01-15 MATSUOKA Kohei <[email protected]>
* tdiayr.rb, tdiary/base.rb, tdiary/dispatcher/index_main.rb, tdiary/plugin.rb: run ValidRequestPath after Rack::File to return public contents
2013-01-14 SHIBATA Hiroshi <[email protected]>
* tdiary.rb, tdiary/server.rb, tdiary/applicationn.rb, tdiary/tasks/server.rake: moved strandalone_cgi_server to core function: experimental
2013-01-13 SHIBATA Hiroshi <[email protected]>
* misc/style/gfm/gfm_style.rb, tdiary/core_ext.rb, skel/diary.rhtml: enabled to display emoji when day mode.
* misc/plugin/*/recent_trackback3.rb: remove trackback information
2013-01-13 KITAITI Makoto <[email protected]>
* misc/paas/sqale/Gemfile, doc/INSTALL-paas.md: added sqale docs.
2013-01-12 MATSUOKA Kohei <[email protected]>
* spec/core/plugin_spec.rb: add spec for TDiary::Plugin
2013-01-12 SHIBATA Hiroshi <[email protected]>
* tdiary.rb, tdiary/base.rb, tdiary/view.rb: implement to singleton logger class
* tdiary/compatible.rb, tdiary/style.rb: compatible.rb is only backword or forward compatibe methods.
* vendor/json_pure*, vendor/rdtool*: update bundled gems.
2013-01-06 SHIBATA Hiroshi <[email protected]>
* tdiary.rb, tdiary/*: restructured TDiary* classes
2013-01-05 SHIBATA Hiroshi <[email protected]>
* tdiary.rb, tdiary/*: restructured DiaryBase class.
* tdiary/diary_base.rb, tdiary/style/tdiary_style.rb, tdiary/style/wiki_style.rb, misc/style/gfm/gfm_style.rb: move common methods into DiaryBase, implement SectionBase module.
* misc/style/gfm/gfm_style.rb: ignored intra emphasis.
2012-12-29 SHIBATA Hiroshi <[email protected]>
* misc/plugin/title_tag.rb: added nil guard for case of subtitle is nil
2012-12-27 TADA Tadashi <[email protected]>
* misc/standalone_cgi/bin/server: change bind address to any (0.0.0.0) and add option '-b'
2012-11-18 SHIBATA Hiroshi <[email protected]>
* .travis.yml: tweak ignore and exclude otpion
* spec/acceptance/*: accept capybara-2.0.0 ways
2012-11-12 SHIBATA Hiroshi <[email protected]>
* misc/style/gfm/gfm_style.rb: integrate twitter-autolink.
2012-11-06 SHIBATA Hiroshi <[email protected]>
* tdiary/tasks/release.rake: integrate release task.
2012-11-03 SHIBATA Hiroshi <[email protected]>
* misc/style/gfm/gfm_style.rb: ignored to expand url strings in plugin syntax.
2012-10-29 SHIBATA Hiroshi <[email protected]>
* Release 3.2.0
2012-10-11 SHIBATA Hiroshi <[email protected]>
* .travis.yml, spec/acceptance_helper.rb: tweak RDB and memcached specs.
* tdiary/io/cache/{file, memcached}.rb: added store/restore interface for plugin.
2012-10-06 SHIBATA Hiroshi <[email protected]>
* tdiary/00default.rb: support to embedded external javascripts.
* misc/plugin/category_autocomplete.rb, js/category_autocomplete.js: added category_autocomplete.js, thanks for tamoot
2012-10-02 SHIBATA Hiroshi <[email protected]>
* tdiary/io/rdb.rb: support auto migration for database
* misc/style/gfm/gfm_style.rb: support Emoji
2012-09-25 SHIBATA Hiroshi <[email protected]>
* spec/acceptance_helper.rb: enable running specs with rdb.
2012-09-16 SHIBATA Hiroshi <[email protected]>
* tdiary/tasks/db.rake: added task for rdb import from default.
2012-08-24 MATSUOKA Kohei <[email protected]>
* tdiary.conf.sample: set default @data_path
2012-08-19 SHIBATA Hiroshi <[email protected]>
* plugin/00default.rb: upgrade jQuery-1.8
* vendor/*: upgrade json_pure-1.7.4, rdtool-0.6.37
2012-08-06 SHIBATA Hiroshi <[email protected]>
* tdiary/rack/assets/precompile.rb: CoffeeScript auto compile in rack middleware.
2012-08-03 TADA Tadashi <[email protected]>
* plugin/calendar3.rb: fix typo of js file name #187
2012-07-29 TADA Tadashi <[email protected]>
* Release 3.1.4.
2012-07-03 hb <[email protected]>
* tdiary/rack/valid_request_path.rb: response body is empty for HEAD request.
2012-06-20 hb <[email protected]>
* tdiary/config.rb: fixed base_url_auto when script_name is empty.
2012-06-14 SHIBATA Hiroshi <[email protected]>
* tdiary/io/rdb.rb: fixed unsaved style when using RdbIO.
2012-06-12 TADA Tadashi <[email protected]>
* ja/disp_referer.rb: maintained about google image search.
2012-06-09 TADA Tadashi <[email protected]>
* title_tag.rb: fixed error on empty subtitle.
2012-05-20 MATSUOKA Kohei <[email protected]>
* tdiary/rack/valid_request_path.rb: validate PATH_INFO in rack
2012-05-18 MATSUOKA Kohei <[email protected]>
* Rakefile: add task heroku:install
2012-05-17 MATSUOKA Kohei <[email protected]>
* Rakefile: add task auth:password:create
2012-05-12 MATSUOKA Kohei <[email protected]>
* config.ru, tdiary/rack/auth/omniauth.rb: integrate omniauth for authentication
2012-04-29 TADA Tadashi <[email protected]>
* Release 3.1.3.
2012-04-25 TADA Tadashi <[email protected]>
* title_tag.rb: a little modify of title tag.
2012-04-17 TADA Tadashi <[email protected]>
* highlight.{js,rb}: set section title function back.
2012-04-17 SHIBATA Hiroshi <[email protected]>
* tdiary/io/heroku.rb: memoize cache_path for HerokuIO
2012-04-14 SHIBATA Hiroshi <[email protected]>
* vendor/{json_pure-1.6.6,rdtool-0.6.33}: update latest gem version.
* tdiary/io/{default,heroku}.rb, tdiary/io/cache/*: split cache mecanism from IO files.
2012-03-28 SHIBATA Hiroshi <[email protected]>
* tdiary.rb, tdiary/io/default.rb: separate cache methods, now File cache is implerement to DefaultIO class.
* tdiary/io/heroku.rb: implements to diary's cache using memcached.
2012-03-27 hb <[email protected]>
* misc/plugin/image.rb, misc/plugin/en/image.rb, js/image.js: added Drag and Drop upload field. #40
2012-03-23 SHIBATA Hiroshi <[email protected]>
* tdiary.rb, tdiary/config.rb, tdiary/io/default.rb, plugin/*.rb:
move restore/store methods depending File I/O to DefaultIO.
* tdiary/io/heroku.rb, spec/fixtures/tdiary.conf.heroku: added HerokuIO. support running to www.heroku.com.
2012-02-28 SHIBATA Hiroshi <[email protected]>
* tdiary.rb: handled security error when tmp directory is nothing.
* misc/style/gfm/gfm_style.rb: support code highlighting with pygments.
* Rakefile, spec/spec_helper.rb: added ci_reporter.
2012-02-25 SHIBATA Hiroshi <[email protected]>
* tdiary/io/base.rb: fix initialize style.path.
2012-02-23 SHIBATA Hiroshi <[email protected]>
* tdiary/io/base.rb: support multiple directories for style file.
* theme/**/*.css: converted utf-8.
* plugin/00default.rb, js/02edit.{js,coffee}: auto expand textarea size.
2012-02-19 SHIBATA Hiroshi <[email protected]>
* misc/style/gfm/gfm_style.rb: fix plugin syntax error in gfm_style.
2012-02-17 SHIBATA Hiroshi <[email protected]>
* tdiary/io/base.rb, tdiary/*_style.rb: restructured style file path.
* misc/style/gfm/gfm_style.rb: added Github Flavored Markdown style.
2012-01-10 TADA Tadashi <[email protected]>
* amazon.rb: changed required API version to 2011-08-01. #134
2012-01-29 TADA Tadashi <[email protected]>
* Release 3.1.2.
2012-01-22 SHIBATA Hiroshi <[email protected]>
* misc/plugins/amazon.rb: more lazy loading.
2012-01-14 SHIBATA Hiroshi <[email protected]>
* misc/plugins/amazon.rb, misc/plugins/amazon/amazonimg.rb: use autoload when require REXML, because REXML loading was so heavy.
2012-01-11 TADA Tadashi <[email protected]>
* plugin/title_tag.rb: fixed over escape in title element. #127
2012-01-10 TADA Tadashi <[email protected]>
* fixed incorrect version number (2011->2012).
2012-01-08 SHIBATA Hiroshi <[email protected]>
* tdiary/plugin.rb, Rakefile: support CoffeeScript, enabled dynamic compile when running on Rack mode.
2012-01-06 TADA Tadashi <[email protected]>
* plugin/amazon.rb: show an error message when API timeouted.
2012-01-05 TADA Tadashi <[email protected]>
* filter/antispamservice.rb: discontinued using Net::HTTP.version_1_1.
2011-12-13 TADA Tadashi <[email protected]>
* plugin/image.rb: set correct image size when size parameter has under 2 items. #119
2011-11-03 TADA Tadashi <[email protected]>
* plugin/disp_referrer.rb: suppressed Encoding::CompatibilityError error.
2011-11-02 TADA Tadashi <[email protected]>
* plugin/ping.rb: discontinued using Net::HTTP.version_1_1.
* plugin/weather.rb: discontinued using Net::HTTP.version_1_1.
2011-10-30 SHIBATA Hiroshi <[email protected]>
* tdiary/dispatcher/index_main.rb: bugfix http header when status is NOT_MODIFIED.
2011-10-29 TADA Tadashi <[email protected]>
* theme/conf.css: fixed invalid element: div.help-icon to span.help.icon.
* Release 3.1.1.
2011-10-23 Kazuhiko <[email protected]>
* misc/plugin/amazon.rb: support more contries - China, Italy and Spain.
2011-10-18 TADA Tadashi <[email protected]>
* plugin/amazon.rb: supported AssociateTags for each country. #104
2011-10-04 Kazuhiko <[email protected]>
* tdiary/config.rb: preload more transcodes that can be used in kw.rb plugin or sending a notification email.
* misc/plugin/kw.rb: use the default key if the key is missing. use Shift_JIS instead of sjis as the encoding name. load NKF library out of method definitions.
2011-09-26 Kazuhiko <[email protected]>
* update.fcgi: initial commit.
* index.fcgi, misc/lib/fcgi_patch.rb: monkey patching FCGI::each_cgi so that we can accept both UTF-8 input and Shift_JIS input.
2011-09-14 SHIBATA Hiroshi <[email protected]>
* tdiary/config.rb: do not encode when string is already utf-8 encoding.
2011-09-13 Kazuhiko <[email protected]>
* tdiary/config.rb (to_native): fix a typo that may cause NoMethodError, pointed out by hsbt.
2011-09-12 Kazuhiko <[email protected]>
* tdiary/config.rb (to_native): fix a mistake in 631e228 that may cause nil return value.
2011-09-08 Kazuhiko <[email protected]>
* tdiary/lang/ja.rb, tdiary/lang/zh.rb: replace invalid or undefined characters in String#encode to avoid exceptions.
2011-09-07 Kazuhiko <[email protected]>
* tdiary/config.rb, tdiary/lang/en.rb, tdiary/lang/ja.rb, tdiary/lang/zh.rb: define to_native method in Config class instead of each language file.
* tdiary/lang/ja.rb (to_native): move 'require' to the top of this file because to_native can be called in $SAFE=4 environment.
* tdiary/compatible.rb: mark tainted objects as untrusted too to prevent SecurityError in Ruby 1.9, patch by Kazuhiro NISHIYAMA <[email protected]>.
2011-09-06 Kazuhiko <[email protected]>
* tdiary.rb, update.rb: handle encoding properly in mobile mode.
* tdiary/lang/ja.rb (to_native): support ASCII-8BIT and broken UTF-8 input.
2011-09-04 TADA Tadashi <[email protected]>
* plugin/00default.rb: apply plugin for subtitle when generating subtitle elements.
2011-08-28 SHIBATA Hiroshi <[email protected]>
* tdiary/compatible.rb: remove String#encode, affects json_pure gems.
2011-08-25 SHIBATA Hiroshi <[email protected]>
* re-bundle json_pure
* tdiary/compatible.rb, tdiary/referer_manager.rb, tdiary.rb: check to Encoding class defined.
2011-08-19 TADA Tadashi <[email protected]>
* theme/default: fixed: deleted background image from gustav.
2011-08-17 TADA Tadashi <[email protected]>
* misc/plugin/footnote.rb: initialized variables to fix error on category page. #89
2011-08-09 TADA Tadashi <[email protected]>
* js/01conf.js: reloaded after savng when csrf_protection plugin only. #79
2011-08-05 hb <[email protected]>
* misc/plugin/image.rb, js/image.js: upload/delete image in ajax.
2011-08-01 hb <[email protected]>
* misc/plugin/image.rb: supported multiple upload.
2011-07-31 TADA Tadashi <[email protected]>
* misc/plugin/my-ex.rb: fixed error when tb-show.rb disabled.
2011-07-29 TADA Tadashi <[email protected]>
* js/00default.js: fixed over escape in makePluginTag().
* Release 3.1.0.
2011-07-28 TADA Tadashi <[email protected]>
* js/01conf.js: reloaded after savng when sp plugin only. #76
2011-07-26 TADA Tadashi <[email protected]>
* plugin/00default.rb: added js_url method lile theme_url.
* misc/plugin/disp_referrer.rb: ignored encoding error (workaround). thanks arton. #74
2011-07-22 TADA Tadashi <[email protected]>
* skel/header.rb, skel/footer.rb: added div.whole-content inside body.
* rename theme/default to theme/tdiary2.
* added new theme default for tDiary 3.1.
2011-07-18 TADA Tadashi <[email protected]>
* plugin/00default.rb: replaced sub to lines.
* js/01conf.js: fixed: lost CR/LF in textarea.
2011-07-06 TADA Tadashi <[email protected]>
* specified id attr for conf form element.
2011-07-05 TADA Tadashi <[email protected]>
* saved preferences in ajax.
2011-07-03 SHIBATA Hiroshi <[email protected]>
* merge tdiary-request. use Rack like interface when cgi mode.
2011-06-29 MATSUOKA Kohei <[email protected]>
* vendor/json_pure-1.5.3: added json_pure library to use to_json method. #58
* tdiary/compatible.rb: added String#encoding to avoid NoMethodError.
2011-06-25 TADA Tadashi <[email protected]>
* plugin/image.rb, js/image.js: using jQuery to insert image tags. #54
* plugin/image.rb: fixed encoding error on ruby 1.9.
* skel/update.rhtml.zh: removed garbage tags.
* js/category.js: changed cursor when hover.
2011-06-25 MATSUOKA Kohei <[email protected]>
* js/highlight.js: fixed XSS vulnerability. #59
2011-06-21 TADA Tadashi <[email protected]>
* added vendor/imagesize.
* plugin/image.rb: using ImageSize class getting image type and size. #56
2011-06-20 MATSUOKA Kohei <[email protected]>
* plugin/highlight.rb, js/highlight.js: rewrited on jQuery. #38, #53
2011-06-20 TADA Tadashi <[email protected]>
* plugin/image.rb, js/image.rb: ported to jQuery. #54
2011-06-18 TADA Tadashi <[email protected]>
* plugin/00default.rb: added query string to javascripts for disable browser cache.
2011-06-16 TADA Tadashi <[email protected]>
* plugin/amazon.rb: preferences for using bit.ly. #47
* js/00default.js: set $tDiary.blogkit to false in default. #48
2011-06-13 TADA Tadashi <[email protected]>
* plugin/js/disp_referrer.rb: maintained some search engines.
2011-06-12 TADA Tadashi <[email protected]>
* js/00default.js, js/category.js: fixed: running on MSIE(8) or Firefox(4).
2011-06-11 TADA Tadashi <[email protected]>
* plugin/category.rb, js/category.js: dropdown list style on edit support.
* plugin/00default.rb: sorted javascripts by file name.
2011-06-06 TADA Tadashi <[email protected]>
* avoid duplicate loading of javascript files.
* plugin/category.rb, js/category.js: splitted js file and rewrited on jQuery.
2011-06-06 OGAWA KenIchi <[email protected]>
* plugin/pre_wrap.rb: fixed error about invalid selector.
2011-06-02 TADA Tadashi <[email protected]>
* replaced div elements into span for better HTML. #35
* inserted some ids into update form.
2011-05-28 SHIBATA Hiroshi <[email protected]>
* added tdiary/io, moved to DefaultIO, PStoreIO.
* added core_ext.rb, extract core extension in tdiary.rb
* extract IOBase class in tdiary.rb, added tdiary/io/base.rb.
* partision a tdiary.rb, now tdiary/config.rb, tdiary/plugin.rb.
2011-05-20 TADA Tadashi <[email protected]>
* supported ruby 1.9 on list.rb.
2011-05-17 TADA Tadashi <[email protected]>
* changed Plugin#add_js_setting to Array because old ruby's hash is not hold order.
* added description of using js.
2011-05-17 TADA Tadashi <[email protected]>
* added Plugin#enable_js and Plugin#add_js_setting method for inserting javascripts.
* added $tDiary and $tDiary.plugin object into javascript.
* added amazon.js for using amzn.to shoten service. Close #32.
2011-05-06 SHIBATA Hiroshi <[email protected]>
* plugin/05referer.rb, misc/plugin/a.rb: bugfix, backword compatibility.
2011-04-29 TADA Tadashi <[email protected]>
* Release 3.0.2.
2011-04-27 TADA Tadashi <[email protected]>
* recent_rss.rb: fixed security error.
2011-04-25 TADA Tadashi <[email protected]>
* deleted PingBack sending and receiving feature.
2011-04-19 TADA Tadashi <[email protected]>
* converted some en documents to HTML.
2011-04-11 SHIBATA Hiroshi <[email protected]>
* index.fcgi: workaround untaint LOAD_PATH for rubygems library path is always tainted.
* README, doc/*: rewrite README, and i18n documentation moved.
2011-04-07 SHIBATA Hiroshi <[email protected]>
* index.rb, update.rb: added 'type' headed instead of 'Content-Type' when running cgi.rb
2011-04-06 SHIBATA Hiroshi <[email protected]>
* tdiary.rb: untaint external load_path. thanks tamoot.
2011-04-03 SHIBATA Hiroshi <[email protected]>
* plugin/00default.rb: bug fix for navi_user_edit, unshown prev/next day anchor.
2011-03-31 SHIBATA Hiroshi <[email protected]>
* plugin/05referer.rb, tdiary/{tdiary.rb, defaultio.rb}: bug fix for 1.8.6 compatibility.
2011-03-22 KADO Masanori <[email protected]>
* tdiary.rb, skel/diary.rhtml: add comment_leave_proc.
2011-03-21 TADA Tadashi <[email protected]>
* deleted TrackBack sending and receiving feature.
2011-03-20 SHIBATA Hiroshi <[email protected]>
* tdiary/wiki_style.rb: fixed bug, WikiDiary#add_section.
2011-03-05 SHIBATA Hiroshi <[email protected]>
* tdiary/tdiary_style.rb: fix 1.8 backward compatibility. thx tamoot.
2011-03-03 SHIBATA Hiroshi <[email protected]>
* tdiary.rb: remove old redirect action for apache ErrorDocutment.
2011-02-27 SHIBATA Hiroshi <[email protected]>
* tdiary.rb: remove ruby 1.6 backward compatibility.
2011-02-22 SHIBATA Hiroshi <[email protected]>
* tdiary/{defaultio.rb, compatible.rb}, tdiary.rb, plugin/*.rb: remove 1.8 backward compatibility.
2011-02-20 SHIBATA Hiroshi <[email protected]>
* tdiary.rb, tdiary.conf.rack: removed tdiary.conf.rack, now used tdiary.conf only.
* spec/**/*_spec.rb, spec/spec_helper.rb: rewrite spec setup.
2011-02-18 KADO Masanori <[email protected]>
* plugin/00default.rb: use jQuery in all mode: Closes #8
* plugin/00default.rb: update jQuery from 1.4 to 1.5
2011-02-18 TADA Tadashi <[email protected]>
* skel/preview*: removed westing </strong>.
2011-01-30 SHIBATA Hiroshi <[email protected]>
* misc/lib/compatible.rb: move to tdiary/compatible.rb
2011-01-18 SHIBATA Hiroshi <[email protected]>
* tdiary/wiki_style.rb, test/wiki_style_test.rb: applied patch #168
2011-01-17 SHIBATA Hiroshi <[email protected]>
* Capfile, tdiary/deploy.rb: added deployment task with Capistrano
2011-01-05 TADA Tadashi <[email protected]>
* tdiary/dispatch.rb: fixed error on image.rb uploading image files.
2011-01-03 TADA Tadashi <[email protected]>
* plugin/00default.rb: generated CSRF protection key automatically.
* misc/plugin/kw.rb: specified UTF-8 to searching by google.
2010-11-17 tamoot <[email protected]>
* tdiary/dispatcher.rb: deleted an over CR/LF.
2010-11-14 SHIBATA Hiroshi <[email protected]>
* misc/lib/compatible.rb: use Enumerable for String#each and String#to_a in Ruby 1.9.
2010-10-26 SHIBATA Hiroshi <[email protected]>
* tdiary/dispatcher.rb: fixed header error on commented.
2010-10-08 TADA Tadashi <[email protected]>
* require_jquery method for plugin.
2010-10-06 Kazuhiko <[email protected]>
* tdiary.rb: fixed Encoding error on illegal referer.
2010-10-05 SHIBATA Hiroshi <[email protected]>
* index.fcgi: fix error for mobile phone in Ruby 1.9.2
2010-09-21 TADA Tadashi <[email protected]>
* supported X-Frame-Options header.
2010-09-20 TADA Tadashi <[email protected]>
* Release 3.0.1.
2010-09-08 KADO Masanori <[email protected]>
* tdiary.rb: revert 500173f. and fix the error of blog-category.
* index.rb: fix the error of tsukkomi from mobile phone.
2010-08-28 SHIBATA Hiroshi <[email protected]>
* Release 3.0.0 at RubyKaigi2010
2010-08-24 MATSUOKA Kohei <[email protected]>
* plugin/05referer.rb: ignore an invalid referer. (non-ASCII character)
2010-08-22 SHIBATA Hiroshi <[email protected]>
* misc/lib/compatible.rb: added String#lines, check convert to Enumerator in method_missing.
* misc/plugin/category.rb: fix bug. called String#map in make_anchor.
* plugin/00default.rb: fic bug. called String#collect in comment_mail_mime.
2010-08-20 TADA Tadashi <[email protected]>
* misc/plugin/makerss.rb: checked 'A little modify' when the diary is older over a month.
2010-06-15 SHIBATA Hiroshi <[email protected]>
* misc/lib/compatible.rb, spec/core/compatible_spec.rb:
convert encoding first time only. thx machu.
2010-05-16 SHIBATA Hiroshi <[email protected]>
* plugin/00default.rb, plugin/{ja,en,zh}/00default.rb: added recommended filter setting.
2010-04-30 SHIBATA Hiroshi <[email protected]>
* misc/style/rd/rd_style.rb: applied patch #190, thx kumaryu.
2010-04-25 SHIBATA Hiroshi <[email protected]>
* tdiary/filter/spam.rb: revert r3619. and fix debug message.
* tdiary/filter/spam.rb: added IP based DNSBL filter.
2010-04-21 TADA Tadashi <[email protected]>
* added Config#smartphone? calling CGI::smartphone?. And alias as iphone?.
2010-04-20 TADA Tadashi <[email protected]>
* added CGI#smartphone? for some SmartPhone's user agent.
2010-04-06 TADA Tadashi <[email protected]>
* theme/base.css: adjusted some styles for amazon plugin.
2010-03-30 TADA Tadashi <[email protected]>
* skel/update.rhtml*: changed element of top of div.caption to h2.
* theme/base.css: added style of profile plugin.
2010-03-29 TADA Tadashi <[email protected]>
* skel/header.rhtml: added 'class="update"' into body element when update mode.
2010-03-27 TADA Tadashi <[email protected]>
* theme/base.css: added style for amazon plugin.
2010-03-26 TADA Tadashi <[email protected]>
* plugin/00default.rb: loading jQuery 1.4 via googleapi to Edit and Preference pages.
* js/00default.js: added default loading js file.
2010-01-12 SHIBATA Hiroshi <[email protected]>
* doc/README.html: fixed supported ruby version.
* doc/HOWTO-make-theme.html, INSTALL.html: s/GPL/GPL2
* doc/*.html, *.css: fixed old mail address.
2010-01-05 Kazuhiko <[email protected]>
* misc/lib/hikidoc.rb: sync with hikidoc rev.126.
* misc/lib/compatible.rb: define CGI::ENV so as to avoid "Insecure
operation `[]' at level 4" exception.
* misc/lib/compatible.rb: define Encoding::CompatibilityError for
ruby 1.8.x because it appears in rescue clauses.
* skel/footer.rhtml: disypal RUBY_RELEASE_DATE instead of
RUBY_PATCHLEVEL if RUBY_PATCH_LEVEL is missing.
2009-12-09 Kazuhiko <[email protected]>
* skel/i.header.rhtml: invoke header_proc without embedding its result.
* plugin/00default.rb: fix mobile_navi according to navi_user integration.
2009-12-04 TADA Tadashi <[email protected]>
* plugin/00default.rb: fixed bug of no saved referer under new navi_user plugin.
2009-11-24 SHIBATA Hiroshi <[email protected]>
* tdiary.rb, plugin/00default.rb,
plugin/{ja,en,zh}/00default.rb: change logger implementation.
* tdiary.rb, plugin/00default.rb: change implemention of
navi_user_day to navi_user.rb.
2009-08-26 Kazuhiko <[email protected]>
* tdiary/filter/default.rb: match on ASCII-8BIT encoding because
incoming referer and/or configured non_referer can be non-UTF8
encoding.
* index.rb, update.rb: call $:.unshift only if it is required,
otherwise the same path is added by each request in FastCGI mode.
2009-08-17 zunda <zunda at freeshell.org>
* tdiary.rb, tdiary/defaultio.rb: modified to let style raise BadStyleError
2009-08-17 Kazuhiko <[email protected]>
* misc/lib/compatible.rb (PStore::load): auto convert ASCII_8BIT
pstore data (created by Ruby-1.8) to UTF-8 in Ruby-1.9.
* skel/tdiary.rconf: force encoding all String in 'ASCII-8BIT' to
get the same dump format on both Ruby-1.8 and Ruby-1.9.
2009-08-09 Kazuhiko <[email protected]>
* tdiary.rb (TDiary::TDiaryBase::load_plugins): reuse existing
Plugin instance if possible.
(TDiary::Plugin::initialize): use Object#instance_variable_set
instead of Kernel.eval.
2009-08-05 Kazuhiko <[email protected]>
* tdiary.rb (TDiary::Plugin::disp_referer): add encoding flag in
regexp.
2009-08-03 TADA Tadashi <[email protected]>
* release 2.3.3.
2009-07-31 Kazuhiko <[email protected]>
* tdiary.rb: dirty workaround to avoid recursive sort that causes
SecurityError in @secure=true environment since
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=16081
2009-07-28 Kazuhiko <[email protected]>
* skel/footer.rhtml: display fcgi information in footer.
2009-07-21 Kazuhiko <[email protected]>
* index.fcgi: initial commit based on the code by Akinori
Musha and moriq.
2009-06-21 SHIBATA Hiroshi <[email protected]>
* tdiary.rb: uses FileUtils::mkdir_p when create log directory.
2009-06-20 SHIBATA Hiroshi <[email protected]>
* tdiary.conf.sample, tdiary.conf.beginner: added some referer engine.
2009-05-28 SHIBATA Hiroshi <[email protected]>
* plugin/00default.rb: revert AutoPagerize support when day mode.
2009-05-21 SHIBATA Hiroshi <[email protected]>
* plugin/00default.rb, skel/diary.rhtml: support AutoPagerize.
2009-05-14 SHIBATA Hiroshi <[email protected]>
* tdiary.conf.sample: delete obsolete referer.
2009-05-08 TADA Tadashi <[email protected]>
* release 2.3.2.
2009-05-02 TADA Tadashi <[email protected]>
* tdiary.rb: fixed bug in Comment#shorten.
2009-05-01 TADA Tadashi <[email protected]>
* plugin/05referer.rb: fixed Encoding::CompatibilityError in referer_load.
thanks valda.
2009-04-28 TADA Tadashi <[email protected]>
* plugin/05referer.rb: opened reading mode of *.tdr file to 'rb'.
2009-04-27 SHIBATA Hiroshi <[email protected]>
* tdiary/lang/ja.rb: added encoding flag from a regexp.
(revert r3424)
2009-04-26 SHIBATA Hiroshi <[email protected]>
* tdiary/defaultio.rb: applied patch #112. thx kakutani.
2009-04-26 TADA Tadashi <[email protected]>
* tdiary/lang/ja.rb: removed encoding flag from a regexp.
* skel/plugin_error.rhtml: added stack trace.
* plugin/05referer.rb: force encoded to ASCII-8BIT in load_referer.
* misc/lib/compatible.rb: added dummy String#encode on ruby 1.8.
* plugin/00default.rb: added layout support plugins : brr and brl.
2009-04-10 SHIBATA Hiroshi <[email protected]>
* skel/update.rhtml: applied patch #78, thx kakutani.
2009-03-30 SHIBATA Hiroshi <[email protected]>
* misc/migrate.rb: replace defout to stdout. defout is obsolete.
2009-03-21 TADA Tadashi <[email protected]>
* plugin/ja/00default.rb: fixed typo.
2009-03-10 TADA Tadashi <[email protected]>
* plugin/00default: moved mail encoding point after all text builded.
* skel/mail.rtxt.*: changed encoding to UTF-8.
2009-02-28 TADA Tadashi <[email protected]>
* tdiary/defaultio.rb: sorted by date before saving.
2009-02-26 TADA Tadashi <[email protected]>
* tdiary.rb, misc/lib/compatible.rb: fixed warning on ruby 1.9.1.
2009-02-24 TADA Tadashi <[email protected]>
* enable migration on ruby 1.9.1.
* forced reloading after migration.
2009-02-12 TADA Tadashi <[email protected]>
* tdiary.rb, compatible.rb: added suport code against $SAFE BUG of ruby 1.9.1. This is a temporally patch.
2009-01-29 TADA Tadashi <[email protected]>
* tdiary.rb: enabled 'require' in plugins on ruby 1.9.1 but it dosen't works well yet.
2009-01-20 TADA Tadashi <[email protected]>
* index.rb, update.rb: caught NameError on Encoding::default_external=.
2009-01-18 SHIBATA Hiroshi <[email protected]>
* tdiary.conf.beginner: fix some plugin of header and footer.
2009-01-15 SHIBATA Hiroshi <[email protected]>
* add "mixi-mobile-converter" to mobile user agent.
2009-01-08 SHIBATA Hiroshi <[email protected]>
* deleted encoding parameter in File::open.
2009-01-07 SHIBATA Hiroshi <[email protected]>
* plugin/00default.rb: added to_native for cookie name.
2009-01-07 TADA Tadashi <[email protected]>
* tdiary.rb: supported secure mode in load_cgi_conf, but dose not works on secure mode...
2009-01-04 TADA Tadashi <[email protected]>
* supported ruby 1.9.1 more, but it dose not work well.
2008-12-16 TADA Tadashi <[email protected]>
* index.rb, update.rb: String#size -> String#bytesize.
* plugin/ja/05referer.rb: escaped backslash more.
2008-12-07 TADA Tadashi <[email protected]>
* tdiary/filter/default.rb, tdiary/defaultio.rb, tdiary.rb,
plugin/00default.rb: added encoding to File::open's parameter. But it
dosen't work yet.
2008-12-07 SHIBATA Hiroshi <[email protected]>
* misc/lib/compatible.rb: add compatible.rb
2008-12-07 SHIBATA Hiroshi <[email protected]>
* **/*.rb: insert magic comment.
2008-11-17 SHIBATA Hiroshi <[email protected]>
* index.rb, update.rb: replaced $defout to $stdout. ($defout is obsolete in ruby1.8)
2008-10-31 SHIBATA Hiroshi <[email protected]>
* plugin/00default.rb: escaped comment_form_text. thx fudan.
2008-10-26 SHIBATA Hiroshi <[email protected]>
* plugin/90migrate.rb: fixed error when a.dat is not exist.
2008-10-25 TADA Tadashi <[email protected]>
* tdiary.conf.beginner: 'update.cgi' -> 'update.rb'
2008-10-19 TADA Tadashi <[email protected]>
* release 2.3.1.
2008-10-18 TADA Tadashi <[email protected]>
* plugin/90migrate.rb: supported a.dat (a.rb plugin's dictionary).
2008-09-04 TADA Tadashi <[email protected]>
* tdiary.rb: fixed #119: Insecure error in CGI::https? when runnning on
secure mode.
2008-08-18 TADA Tadashi <[email protected]>
* misc/lib/hikidoc.rb: replaced HikiDoc library by 0.0.2.
2008-08-08 Kazuhiko <[email protected]>
* plugin/90migrate.rb: fix typos to convert category cache correctly.
set @conf.tdiary_version just after converting tdiary.conf to prevent
converting twice.
2008-08-05 TADA Tadashi <[email protected]>
* defaultio.rb: detected error of no style file.
* plugin/00default.rb: fixed #104, error on no existent day.
2008-08-01 TADA Tadashi <[email protected]>
* tdiary.rb, 00default.rb: set @date starting with plugin running.
2008-07-18 TADA Tadashi <[email protected]>
* index.rb, tdiary.rb, skel/search.rhtml: added site search template.
2008-07-14 SHIBATA Hiroshi <[email protected]>
* plugin/60sf.rb: fix #114. thx KAKUTANI Shintaro.
2008-07-11 SHIBATA Hiroshi <[email protected]>
* plugin/50sp.rb: fix #113. thx KAKUTANI Shintaro.
2008-07-10 SHIBATA Hiroshi <[email protected]>
* plugin/50sp.rb, 60sf.rb: fix #111. thx KAKUTANI Shintaro.
2008-07-08 SHIBATA Hiroshi <[email protected]>
* tdiary.rb, plugin/00default.rb: use device-width accessed by iPhone/iPod touch.
2008-07-05 SHIBATA Hiroshi <[email protected]>
* tdiary.rb, index.rb: raise 404 error when bot access to no existent diary.
* tdiary.rb, plugin/00default.rb: support iPhone/iPod touch.
2008-07-05 KURODA Hiraku <hiraku at sapporo.email.ne.jp>
* fixed error when volatile.tdr is not exist.
2008-07-02 SHIBATA Hiroshi <[email protected]>
* merge from Test_SelectFilter.
2008-07-01 SHIBATA Hiroshi <[email protected]>
* misc/filter/plugin/antispamservice.rb: fix key verify condition.
* misc/filter/antispam.rb, misc/filter/plugin/antispam.rb,
misc/filter/plugin/*/antispam.rb: rename antispam to antispamservice.
2008-06-25 SHIBATA Hiroshi <[email protected]>
* plugin/00default.rb: escape double quotation in title attribute of
subtitle anchor.
2008-06-24 SHIBATA Hiroshi <[email protected]>
* plugin/00default.rb: added title attribute in subtitle anchor.
2008-06-23 TADA Tadashi <[email protected]>
* skel/footer.rhtml: using rescue on display to RUBY_PATCHLEVEL.
2008-06-23 SHIBATA Hiroshi <[email protected]>
* tdiary.rb: add 'Semulator', 'Vemulator', 'J-EMULATOR' and 'emobile' to
mobile user agent.
* skel/footer.rhtml: display RUBY_PATCHLEVEL in footer.
2008-06-15 SHIBATA Hiroshi <[email protected]>
* misc/filter/antispam.rb, misc/filter/plugin/antispam.rb,
misc/filter/plugin/*/antispam.rb: delete antispam.enable option.
2008-06-15 SHIBATA Hiroshi <[email protected]>
* plugin/10spamfilter.rb, plugin/*/10spamfilter.rb,
tdiary.rb: integrate logger and spamfilter debug log.
2008-06-15 SHIBATA Hiroshi <[email protected]>
* tdiary.rb: changed logger path option.
2008-06-09 TADA Tadashi <[email protected]>
* self converting to UTF-8. thanks kazuhiko.
* tdiary/lang/*.rb: added migrate_to_utf8 method.
* tdiary/defaultio.rb: added migration code to utf-8.
* skel/tdiary.rconf added tdiary_veersion.
* plugin/90migrate.rb: added.
2008-06-02 SHIBATA Hiroshi <[email protected]>
* misc/migrate.rb: fix undefined class/module convert in PStore. thx KURODA Hiraku.
2008-05-31 SHIBATA Hiroshi <[email protected]>
* tdiary.rb: added logger.
2008-05-24 SHIBATA Hiroshi <[email protected]>
* plugin/60sf.rb: fix bug, plugin file unreadable error.
2008-05-22 SHIBATA Hiroshi <[email protected]>
* tdiary.rb, plugin/60sf.rb, plugin/*/60sf.rb: applied patch #58.
2008-05-08 SHIBATA Hiroshi <[email protected]>
* skel/diary.rhtml, skel/latest.rhtml, skel/month.rhtml: fixed #88.
2008-05-08 SHIBATA Hiroshi <[email protected]>
* tdiary.conf.beginner, tdiary.conf.sample, skel/preview.rhtml,
skel/update.rhtml: fixed #81.
2008-04-24 TADA Tadashi <[email protected]>
* plugin/10spamfilter.rb: fixed #84.
2008-04-15 TADA Tadashi <[email protected]>
* tdiary_style.rb: deleted useless counter variable.
2008-04-15 Yamaguchi <[email protected]>
* tdiary.rb: fixed #80.
2008-03-31 TADA Tadashi <[email protected]>
* tdiary_style.rb: fixed #74.
2008-03-22 SHIBATA Hiroshi <[email protected]>
* doc/*.html: fix document charset, change euc-jp to utf-8.
2008-03-14 Kazuhiko <[email protected]>
* plugin/en/00default.rb, plugin/ja/00default.rb,
plugin/zh/00default.rb: fix invalid HTML.
* plugin/ja/00default.db: fix invalid HTML (reported by hb).
2008-03-11 SHIBATA Hiroshi <[email protected]>
* dot.htaccess: add 'AddType application/xml'
2008-03-02 TADA Tadashi <[email protected]>
* marged with Test_UTF8 branch, and started development of series 2.3.
2008-02-29 TADA Tadashi <[email protected]>
* release 2.2.1.
2008-02-29 YAA <yaa at mail.ne.jp>
* plugin/05referer.rb: fixed to display volatile referers in latest edit page.
2008-02-27 TADA Tadashi <[email protected]>
* misc/style/etdiary: catch up current specification of the style.
* skel/preview.rhtml*: supported label element for hide diary checkbox.
2008-02-24 TADA Tadashi <[email protected]>
* plugin/05referer.rb: fixed no saving referer on day mode.
2008-02-23 TADA Tadashi <[email protected]>
* plugin/05referer.rb: fixed #49.
2008-02-14 ds14050 <ds14050 at vvvvvv.sakura.ne.jp>
* tdiary/wiki_style.rb: fixed eval error in valid_plugin_syntax?.
2008-02-13 TADA Tadashi <[email protected]>
* misc/lib/hikidoc.rb: updated to trunk and fix about InterWikiName.
2008-02-10 TADA Tadashi <[email protected]>
* tdiary/wiki_style.rb: removed warning by HikiDoc#to_html.
2008-02-08 TADA Tadashi <[email protected]>
* skel/diary.rhtml: hide div#comment-form-section without day mode.
2008-02-04 SHIBATA Hiroshi <[email protected]>
* tdiary.rb,plugin/00default.rb,plugin/10spamfilter.rb,
plugin/en/10spamfilter.rb,plugin/ja/10spamfilter.rb,
plugin/zh/10spamfilter.rb,tdiary/filter/spam.rb:
[EXPERIMENTAL] remove option for spamfilter.hide_comment.
Javascript is used to display all TSUKKOMI from into setting days before.
2008-02-03 TADA Tadashi <[email protected]>
* skel/diary.rhtml, plugin/00default.rb: [EXPERIMENTAL] add TSUKKOMI form
by Javascript in the hidden comment form condition.
2008-01-19 TADA Tadashi <[email protected]>
* misc/lib/hikidoc.rb: updated to 0.0.2.
* tdiary/wiki_style.rb: added :use_wiki_name and
:allow_bracket_inline_image option to false to HikiDoc. thanks to ds14050.
2008-01-15 TADA Tadashi <[email protected]>
* plugin/05referer.rb: fixed #11: error on update with no referer.
2008-01-11 SHIBATA Hiroshi <[email protected]>
* plugin/00default.rb, plugin/10spamfilter.rb,
plugin/*/10spamfilter.rb: add option for hide comment-form before
days considered to be spam.
2008-01-11 TADA Tadashi <[email protected]>
* plugin/00default.rb: hide comment form when accessed by bot.
2008-01-08 TADA Tadashi <[email protected]>
* plugin/05referer.rb: saving recent a few days into volatile.
2008-01-05 TADA Tadashi <[email protected]>
* plugin/00default.rb: hide comment form when over comments per day on mobile mode.
2008-01-03 TADA Tadashi <[email protected]>
* plugin/00default.rb: unescaped category name because over escape on Wiki
style.
2007-12-16 TADA Tadashi <[email protected]>
* release 2.2.0.
2007-10-31 TADA Tadashi <[email protected]>
* skel/conf.rhtml: inserted submit button to page top.
2007-10-07 TADA Tadashi <[email protected]>
* plugin/00default.rb: ACCESSKEY changed in mobile mode.
* plugin/00default.rb: replaced Update link to Edit in mobile navi menu.
2007-08-12 TADA Tadashi <[email protected]>
* plugin/00default.rb, plugin/10spamfilter.rb: support change comment
description in preference page of spam filter. thanks for hsbt.
2007-08-04 TADA Tadashi <[email protected]>
* tdiary.rb, plugin/00default.rb: specify base_url in preference page.