-
Notifications
You must be signed in to change notification settings - Fork 67
/
ChangeLog
3568 lines (2580 loc) · 127 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
2024-02-29 Hiroshi SHIBATA <hsbt@ruby-lang.org>
* support Ruby 3.2 and 3.3.
* drop to support Ruby 2.7.
* release 5.3.0
2022-11-29 Tada, Tadashi <t@tdtds.jp>
* support rack 3.x
* support dalli 3.x
* release 5.2.4
2022-08-29 Tada, Tadashi <t@tdtds.jp>
* remove Heroku button from README
* release 5.2.3
2022-05-29 Tada, Tadashi <t@tdtds.jp>
* remove support of ruby 2.6
* release 5.2.2
2022-02-28 Tada, Tadashi <t@tdtds.jp>
* release 5.2.1
2022-01-31 OGAWA KenIchi <kenichi@ice.email.ne.jp>
* image.js: Restore the same behavior as when 'live()' was used
2021-12-06 oɹıɥɐsɐɯ ɐʇıɾnɟ <mfjt@users.noreplypgithub.com>
* amazon.rb: When amazon returned 429 error, print value of the argument "label" instead of raw URL if specified it
2021-11-29 Tada, Tadashi <t@tdtds.jp>
* release 5.2.0
2021-11-14 Tada, Tadashi <t@tdtds.jp>
* fix error in `String#encode` cause by keyword parameter incompatible
* fix debugging on vscode
2021-08-29 Tada, Tadashi <t@tdtds.jp>
* fix heroku button: add MONGODB_URI into env section
* release 5.1.7
2021-05-29 Tada, Tadashi <t@tdtds.jp>
* support ruby 3.0
* stop support ruby 2.5
* release 5.1.6
2021-02-28 Tada, Tadashi <t@tdtds.jp>
* release 5.1.5
2021-01-11 Tada, Tadashi <t@tdtds.jp>
* calendar2.rb: fix calendar display when next/prev diary mode
2020-11-29 Tada, Tadashi <t@tdtds.jp>
* release 5.1.4
2020-08-29 Tada, Tadashi <t@tdtds.jp>
* release 5.1.3
* category.js: add support for multiple category display
* category-legacy.rb: add option to sort reverse the category list
* support vscode remote-container instead of misc/docker-devel
2020-05-29 Tada, Tadashi <t@tdtds.jp>
* release 5.1.2
* stop support of ruby 2.4
2020-05-01 Tada, Tadashi <t@tdtds.jp>
* (experimental) add 03purge_cache plugin into default
2020-04-30 Tada, Tadashi <t@tdtds.jp>
* update jQuery to 3.5.0
2020-04-16 Tada, Tadashi <t@tdtds.jp>
* fix error in makerss by bad CGI.escape
2020-03-09 Nyoho <algebraicallyClosedField@gmail.com>
* support SVG type for favicon
2020-02-29 Tada, Tadashi <t@tdtds.jp>
* release 5.1.1
2020-02-27 Tada, Tadashi <t@tdtds.jp>
* category.rb: add an option to sort reverse the category list
2020-02-25 Tada, Tadashi <t@tdtds.jp>
* amazon.rb: check access_key and secret_key are specified
2019-11-29 Tada, Tadashi <t@tdtds.jp>
* release 5.1.0
2019-11-24 Tada, Tadashi <t@tdtds.jp>
* amazon.rb: update to use PA-API v5
2019-08-17 Tada, Tadashi <t@tdtds.jp>
* sort commants by date on a new comment added
2019-08-15 HIGUCHI Daisuke (VDR dai) <dai@debian.org>
* amazon.rb: support HTTP Found response and discard wrong stored cache
2019-06-29 SHIBATA Hiroshi <hsbt@ruby-lang.org>
* release 5.0.14
2019-05-15 Tada, Tadashi <t@tdtds.jp>
* update jQuery to 3.4.1
* amazon.rb: fix default image to https
2019-04-03 Tada, Tadashi <t@tdtds.jp>
* release 5.0.13
2019-04-02 Tada, Tadashi <t@tdtds.jp>
* fix: support extentions (cf.tdiary-contrib) assets paths again
2019-03-29 Tada, Tadashi <t@tdtds.jp>
* release 5.0.12
2019-03-27 Tada, Tadashi <t@tdtds.jp>
* stop to support ruby 2.3
2019-03-12 SHIBATA Hiroshi <hsbt@ruby-lang.org>
* remove sprockets dependency
2019-03-19 Tada, Tadashi <t@tdtds.jp>
* amazon plugin: use https resource on amazon image
2018-12-29 Tada, Tadashi <t@tdtds.jp>
* release 5.0.11
2018-09-29 SHIBATA Hiroshi <hsbt@ruby-lang.org>
* release 5.0.10
2018-06-29 Tada, Tadashi <t@tdtds.jp>
* release 5.0.9
2018-06-21 Tada, Tadashi <t@tdtds.jp>
* amp.rb: fix converting img to amp-img tags when parametes have '>' chars
* dropdown_calendar.rb: jump to link made by html_anchor plugin using js
* amazon.rb: catch Net::HTTPExceptions and log the reason
2018-03-29 Tada, Tadashi <t@tdtds.jp>
* release 5.0.8
2018-01-10 Tada, Tadashi <t@tdtds.jp>
* fix insecure errors by autoload in amazon.rb
2017-12-29 Tada, Tadashi <t@tdtds.jp>
* release 5.0.7
2017-12-27 Tada, Tadashi <t@tdtds.jp>
* fix insecure errors in some plugins using DiaryContainer
2017-12-22 Tada, Tadashi <t@tdtds.jp>
* change document links to GitHub Wiki
2017-09-29 Tada, Tadashi <t@tdtds.jp>
* release 5.0.6
2017-09-19 Tada, Tadashi <t@tdtds.jp>
* fix incompatibirity between bundler 1.15 and 1.16 (#646)
2017-06-29 Tada, Tadashi <t@tdtds.jp>
* release 5.0.5
2017-06-22 Tada, Tadashi <t@tdtds.jp>
* update jQuery and jQuery UI
2017-06-15 Tada, Tadashi <t@tdtds.jp>
* plugin/amp.rb: fix error on the day was empty
2017-03-29 Tada, Tadashi <t@tdtds.jp>
* release 5.0.4
2017-03-02 MATSUOKA Kohei <kohei@machu.jp>
* amp.rb, extend plugin callback (add_amp_header_proc, add_amp_body_enter_proc)
2017-02-09 TADA Tadashi <t@tdtds.jp>
* fix: ignore @css by theme location in tdiary.conf
2017-01-20 TADA Tadashi <t@tdtds.jp>
* support ruby 2.4.0
* drop ruby 2.1
2017-01-16 TADA Tadashi <t@tdtds.jp>
* insert theme location (local or online) into @theme in tdiary.conf
2017-01-04 TADA Tadashi <t@tdtds.jp>
* heroku/Gemfile.local: change some gem source to "https" instead of "github"
2016-12-29 MATSUOKA Kohei <kohei@machu.jp>
* release 5.0.3
2016-12-16 TADA Tadashi <t@tdtds.jp>
* remove misc/theme_convert
2016-12-13 MATSUOKA Kohei <kohei@machu.jp>
* amp.rb: remove script tag
2016-12-11 MATSUOKA Kohei <kohei@machu.jp>
* amp.rb, views/amp.rhtml: support amp (Accelerated Mobile Pages)
2016-11-16 TADA Tadashi <t@tdtds.jp>
* category.rb, category-legacy.rb: fix error about here documents
2016-09-29 TADA Tadashi <t@tdtds.jp>
* update some documents: add using Gemfile.local
* release 5.0.2
2016-08-23 TADA Tadashi <t@tdtds.jp>
* base.css, default.css: define img.right and img.left after img.photo
2016-06-30 TADA Tadashi <t@tdtds.jp>
* skip loading octokit on production mode in Rakefile
2016-06-29 TADA Tadashi <t@tdtds.jp>
* move preview plugin from contrib
* release 5.0.1
2016-05-12 MATSUOKA Kohei <kohei@machu.jp>
* plugin.rb: support asynchronous JavaScript loading
* remove sprockets from release package
2016-05-09 TADA Tadashi <t@tdtds.jp>
* theme/base.css: set width of dropdown list of draft plugin
2016-04-26 TADA Tadashi <t@tdtds.jp>
* heroku/tdiary.conf: use MONGODB_URI environment variable instead of MONGOLAB_URI
2016-04-19 MATSUOKA Kohei <kohei@machu.jp>
* Dockerfile: support docker
2016-04-01 TADA Tadashi <t@tdtds.jp>
* category.rb: enable to call category_list and category_dropdown_list
plugins in diary header
2016-03-29 MATSUOKA Kohei <kohei@machu.jp>
* release 5.0.0
2016-03-22 TADA Tadashi <t@tdtds.jp>
* index.rb, update.rb: set magic comment ascii-8bit to show all error messages
2016-03-16 TADA Tadashi <t@tdtds.jp>
* rename category_legacy.rb to category-legacy.rb
2016-03-10 TADA Tadashi <t@tdtds.jp>
* style/wiki.rb: untaint plugin code when syntax checking
2016-03-09 TADA Tadashi <t@tdtds.jp>
* replace category.rb plugin by contrib/category-lite.rb plugin
* kill secure mode (ignore @secure variable in tdiary.conf and more)
2016-01-26 TADA Tadashi <t@tdtds.jp>
* title_tag.rb: print only diary name when diary has no subtitles
2016-01-19 TADA Tadashi <t@tdtds.jp>
* delete config.ru for Heroku (use default one)
2016-01-08 TADA Tadashi <t@tdtds.jp>
* title_tag.rb: support category-lite plugin
2016-01-05 TADA Tadashi <t@tdtds.jp>
* system_update.rb, README.md: enable deploy master branch to heroku
2016-01-05 MATSUOKA Kohei <kohei@machu.jp>
* support heroku on master branch
2015-12-31 TADA Tadashi <t@tdtds.jp>
* application.rb: fix error when @index or @update specified with URL in tdiary.conf
2015-12-29 MATSUOKA Kohei <kohei@machu.jp>
* release 4.2.1
2015-12-25 MATSUOKA Kohei <kohei@machu.jp>
* revert 61b7b6: writing dependency in gemspec, see #527
2015-12-25 TADA Tadashi <t@tdtds.jp>
* default.css: more adjust CSS for mobile devices
2015-12-08 MATSUOKA Kohei <kohei@machu.jp>
* fix #494 authentication error by omniauth and rack::session::pool
2015-12-01 MATSUOKA Kohei <kohei@machu.jp>
* enable to write TDiary::Application settings in tdiary.conf (@index, @update, @options['base_url'])
2015-11-26 MATSUOKA Kohei <kohei@machu.jp>
* move gems dependency from Gemfile to .gemspec
* specify spec.files without git command
* remove specs from gem
2015-09-29 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* release 4.2.0
2015-06-29 MATSUOKA Kohei <kohei@machu.jp>
* release 4.1.3
* Gemfile: use rack 1.6.4 which sepatates params with ';'. see #485
2015-05-05 MATSUOKA Kohei <kohei@machu.jp>
* catch TDiary::ForceRedirect exception from 90migrate.rb at startup
2015-04-22 TADA Tadashi <t@tdtds.jp>
* add full path of lib into LOAD_PATH, fix #481 #483
2015-03-29 MATSUOKA Kohei <kohei@machu.jp>
* release 4.1.2
2015-03-15 MATSUOKA Kohei <kohei@machu.jp>
* use omniauth automatically if omniauth gem loaded
* support some auth providers (twitter, facebook, google, github)
2015-02-25 MATSUOKA Kohei <kohei@machu.jp>
* support ruby-2.2 and unsupport ruby-1.9.3
2015-02-19 TADA Tadashi <t@tdtds.jp>
* enable to specify multiple twitter user in OmniAuth
2015-02-02 TADA Tadashi <t@tdtds.jp>
* Gemfile: work around about rack 1.6 not separate params with ';'. see #485
2015-01-28 TADA Tadashi <t@tdtds.jp>
* use Rack::Session::Dalli automatically if dalli gem loaded
2015-01-27 TADA Tadashi <t@tdtds.jp>
* plugin/00default.rb: fix #482 by another code: bad url of og:image
2015-01-26 TADA Tadashi <t@tdtds.jp>
* accept external JavaScript or CSS URL without scheme
* plugin/theme_online.rb: support another theme site by options
2015-01-24 TADA Tadashi <t@tdtds.jp>
* plugin/comment_mail-smtp.rb: use Mail gem instead of Net::SMTP
* plugin/comment_ajax.rb: set theme_url into js
2015-01-21 MATSUOKA Kohei <kohei@machu.jp>
* add add_startup_proc plugin interface
* plugin/makerss.rb: create rdf on startup
2015-01-19 TADA Tadashi <t@tdtds.jp>
* plugin/amazon.rb: retry by returning error from rpaproxy
2015-01-10 MATSUOKA Kohei <kohei@machu.jp>
* diary_container.rb: add the model to get diary directoly without using CGI
* Gemfile: use webrick server as default (to use other server, write in Gemfile.local)
* cli.rb: add --log option to tdiary server command
2014-12-29 MATSUOKA Kohei <kohei@machu.jp>
* release 4.1.1
2014-12-27 MATSUOKA Kohei <kohei@machu.jp>
* lib/tdiary/application.rb: fix #442: call extensions setup before the core setup
* lib/tdiary/application/extensions/omniauth.rb: fix error with base_dir
* lib/tdiary/rack/auth/omniauth.rb: remove github authentication
2014-12-22 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* lib/tdiary.rb: fixed load path of additional gems
2014-12-16 TADA Tadashi <t@tdtds.jp>
* plugin/category.rb: fix error on update running on ruby 1.9.3
2014-11-29 TADA Tadashi <t@tdtds.jp>
* release 4.1.0
2014-11-26 TADA Tadashi <t@tdtds.jp>
* misc/plugin/category.rb: support plugin storage
* misc/plugin/disp_referrer.rb: unsupport nora library
* misc/plugin/recent_comment3.rb: fix error on tree view mode
2014-11-10 TADA Tadashi <t@tdtds.jp>
* misc/plugin/makerss.rb: support plugin storage
2014-10-17 TADA Tadashi <t@tdtds.jp>
* implement plugin storage in IO class
2014-09-05 TADA Tadashi <t@tdtds.jp>
* style/wiki.rb: fix #437: error when 'a' element with some attr in plugin notation
2014-08-29 TADA Tadashi <t@tdtds.jp>
* release 4.0.5
2014-08-27 zunda <zunda at freeshell.org>
* plugin/weather.rb: Change Japanese translation for few clouds
2014-08-12 zunda <zunda at freeshell.org>
* plugin/weather.rb: Change Japanese translation for few clouds
2014-07-25 zunda <zunda at freeshell.org>
* plugin/weather.rb: Add a Japanese translation to Scattered Clouds
2014-06-14 zunda <zunda at freeshell.org>
* plugin/weather.rb: Add a translation for `few clouds'
2014-05-29 TADA Tadashi <t@tdtds.jp>
* release 4.0.4
2014-05-08 TADA Tadashi <t@tdtds.jp>
* fix error on image when edit mode #412
* remove mobile link discovery tag because it is obsolete.
* add default OGP
2014-02-21 TADA Tadashi <t@tdtds.jp>
* add theme_online plugin #291
2013-03-20 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* misc/style/gfm/gfm_style.rb: bugfix #268, #269. fixed broken rule of autolink replacements.
2013-03-13 TADA Tadashi <t@tdtds.jp>
* tdiary/server.rb: fix js not load
* alert of old ruby version for end of ruby 1.8
2013-03-10 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary/io/cache/redis.rb: added Redis cache store.
2013-02-10 MATSUOKA Kohei <kohei@machu.jp>
* tdiary/view.rb, js/comment_ajax.js: post comment with ajax.
* tdiary/request.rb: implement TDiary::Request#xhr?
2013-02-07 MATSUOKA Kohei <kohei@machu.jp>
fixed #260: tDiary.document_root returns current directory in the CGI/FastCGI
2013-02-06 MATSUOKA Kohei <kohei@machu.jp>
fixed #250: disable Rack::Reloader except development environment
2013-02-06 TADA Tadashi <t@tdtds.jp>
fixed #259: return path under tDiary.document_root only not fullpath
2013-02-01 MATSUOKA Kohei <kohei@machu.jp>
* misc/plugin/makerss.rb: puts rss file to the public directory if the Rack environment
2013-01-30 MATSUOKA Kohei <kohei@machu.jp>
* tdiary.rb: add TDiary::document_root to return static contents directory
2013-01-29 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* release 3.2.1
2013-01-22 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* misc/plugin/recent_comment3.rb: directory matching condition discarded to ambiguous pattern.
2013-01-20 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* misc/plugin/recent_comment3.rb: guard to overwrite empty data when exists data.
2013-01-19 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* skel/show.rhtml, tdiary/base.rb, tdiary/dispatcher/update_main.rb: remove unnecessary skelton.
2013-01-18 MATSUOKA Kohei <kohei@machu.jp>
* plugin/05referer.rb: record up to 10,000 of the volatile referer
2013-01-16 MATSUOKA Kohei <kohei@machu.jp>
* tdiary/base.rb: enable plugin cache again, except blogkit
* config.ru ValidRequestPath after Rack::File to return public contents
2013-01-15 MATSUOKA Kohei <kohei@machu.jp>
* 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 <shibata.hiroshi@gmail.com>
* tdiary.rb, tdiary/server.rb, tdiary/application.rb, tdiary/tasks/server.rake: moved strandalone_cgi_server to core function: experimental
2013-01-13 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* 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 <KitaitiMakoto@gmail.com>
* misc/paas/sqale/Gemfile, doc/INSTALL-paas.md: added sqale docs.
2013-01-12 MATSUOKA Kohei <kohei@machu.jp>
* spec/core/plugin_spec.rb: add spec for TDiary::Plugin
2013-01-12 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary.rb, tdiary/base.rb, tdiary/view.rb: implement to singleton logger class
* tdiary/compatible.rb, tdiary/style.rb: compatible.rb is only backward or forward compatible methods.
* vendor/json_pure*, vendor/rdtool*: update bundled gems.
2013-01-06 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary.rb, tdiary/*: restructured TDiary* classes
2013-01-05 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* 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 <shibata.hiroshi@gmail.com>
* misc/plugin/title_tag.rb: added nil guard for case of subtitle is nil
2012-12-27 TADA Tadashi <t@tdtds.jp>
* misc/standalone_cgi/bin/server: change bind address to any (0.0.0.0) and add option '-b'
2012-11-18 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* .travis.yml: tweak ignore and exclude option
* spec/acceptance/*: accept capybara-2.0.0 ways
2012-11-12 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* misc/style/gfm/gfm_style.rb: integrate twitter-autolink.
2012-11-06 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary/tasks/release.rake: integrate release task.
2012-11-03 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* misc/style/gfm/gfm_style.rb: ignored to expand url strings in plugin syntax.
2012-10-29 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* Release 3.2.0
2012-10-11 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* .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 <shibata.hiroshi@gmail.com>
* 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 <shibata.hiroshi@gmail.com>
* tdiary/io/rdb.rb: support auto migration for database
* misc/style/gfm/gfm_style.rb: support Emoji
2012-09-25 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* spec/acceptance_helper.rb: enable running specs with rdb.
2012-09-16 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary/tasks/db.rake: added task for rdb import from default.
2012-08-24 MATSUOKA Kohei <kohei@machu.jp>
* tdiary.conf.sample: set default @data_path
2012-08-19 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* plugin/00default.rb: upgrade jQuery-1.8
* vendor/*: upgrade json_pure-1.7.4, rdtool-0.6.37
2012-08-06 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary/rack/assets/precompile.rb: CoffeeScript auto compile in rack middleware.
2012-08-03 TADA Tadashi <t@tdtds.jp>
* plugin/calendar3.rb: fix typo of js file name #187
2012-07-29 TADA Tadashi <t@tdtds.jp>
* Release 3.1.4.
2012-07-03 hb <smallstyle@gmail.com>
* tdiary/rack/valid_request_path.rb: response body is empty for HEAD request.
2012-06-20 hb <smallstyle@gmail.com>
* tdiary/config.rb: fixed base_url_auto when script_name is empty.
2012-06-14 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary/io/rdb.rb: fixed unsaved style when using RdbIO.
2012-06-12 TADA Tadashi <t@tdtds.jp>
* ja/disp_referer.rb: maintained about google image search.
2012-06-09 TADA Tadashi <t@tdtds.jp>
* title_tag.rb: fixed error on empty subtitle.
2012-05-20 MATSUOKA Kohei <kohei@machu.jp>
* tdiary/rack/valid_request_path.rb: validate PATH_INFO in rack
2012-05-18 MATSUOKA Kohei <kohei@machu.jp>
* Rakefile: add task heroku:install
2012-05-17 MATSUOKA Kohei <kohei@machu.jp>
* Rakefile: add task auth:password:create
2012-05-12 MATSUOKA Kohei <kohei@machu.jp>
* config.ru, tdiary/rack/auth/omniauth.rb: integrate omniauth for authentication
2012-04-29 TADA Tadashi <t@tdtds.jp>
* Release 3.1.3.
2012-04-25 TADA Tadashi <t@tdtds.jp>
* title_tag.rb: a little modify of title tag.
2012-04-17 TADA Tadashi <t@tdtds.jp>
* highlight.{js,rb}: set section title function back.
2012-04-17 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary/io/heroku.rb: memoize cache_path for HerokuIO
2012-04-14 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* 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 <shibata.hiroshi@gmail.com>
* 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 <smallstyle@gmail.com>
* misc/plugin/image.rb, misc/plugin/en/image.rb, js/image.js: added Drag and Drop upload field. #40
2012-03-23 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* 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 <shibata.hiroshi@gmail.com>
* 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 <shibata.hiroshi@gmail.com>
* tdiary/io/base.rb: fix initialize style.path.
2012-02-23 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* 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 <shibata.hiroshi@gmail.com>
* misc/style/gfm/gfm_style.rb: fix plugin syntax error in gfm_style.
2012-02-17 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* 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 <t@tdtds.jp>
* amazon.rb: changed required API version to 2011-08-01. #134
2012-01-29 TADA Tadashi <t@tdtds.jp>
* Release 3.1.2.
2012-01-22 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* misc/plugins/amazon.rb: more lazy loading.
2012-01-14 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* 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 <t@tdtds.jp>
* plugin/title_tag.rb: fixed over escape in title element. #127
2012-01-10 TADA Tadashi <t@tdtds.jp>
* fixed incorrect version number (2011->2012).
2012-01-08 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary/plugin.rb, Rakefile: support CoffeeScript, enabled dynamic compile when running on Rack mode.
2012-01-06 TADA Tadashi <t@tdtds.jp>
* plugin/amazon.rb: show an error message when API timeouted.
2012-01-05 TADA Tadashi <t@tdtds.jp>
* filter/antispamservice.rb: discontinued using Net::HTTP.version_1_1.
2011-12-13 TADA Tadashi <t@tdtds.jp>
* plugin/image.rb: set correct image size when size parameter has under 2 items. #119
2011-11-03 TADA Tadashi <t@tdtds.jp>
* plugin/disp_referrer.rb: suppressed Encoding::CompatibilityError error.
2011-11-02 TADA Tadashi <t@tdtds.jp>
* 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 <shibata.hiroshi@gmail.com>
* tdiary/dispatcher/index_main.rb: bugfix http header when status is NOT_MODIFIED.
2011-10-29 TADA Tadashi <t@tdtds.jp>
* theme/conf.css: fixed invalid element: div.help-icon to span.help.icon.
* Release 3.1.1.
2011-10-23 Kazuhiko <kazuhiko@fdiary.net>
* misc/plugin/amazon.rb: support more contries - China, Italy and Spain.
2011-10-18 TADA Tadashi <t@tdtds.jp>
* plugin/amazon.rb: supported AssociateTags for each country. #104
2011-10-04 Kazuhiko <kazuhiko@fdiary.net>
* 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 <kazuhiko@fdiary.net>
* 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 <shibata.hiroshi@gmail.com>
* tdiary/config.rb: do not encode when string is already utf-8 encoding.
2011-09-13 Kazuhiko <kazuhiko@fdiary.net>
* tdiary/config.rb (to_native): fix a typo that may cause NoMethodError, pointed out by hsbt.
2011-09-12 Kazuhiko <kazuhiko@fdiary.net>
* tdiary/config.rb (to_native): fix a mistake in 631e228 that may cause nil return value.
2011-09-08 Kazuhiko <kazuhiko@fdiary.net>
* tdiary/lang/ja.rb, tdiary/lang/zh.rb: replace invalid or undefined characters in String#encode to avoid exceptions.
2011-09-07 Kazuhiko <kazuhiko@fdiary.net>
* 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 <zn@mbf.nifty.com>.
2011-09-06 Kazuhiko <kazuhiko@fdiary.net>
* 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 <t@tdtds.jp>
* plugin/00default.rb: apply plugin for subtitle when generating subtitle elements.
2011-08-28 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary/compatible.rb: remove String#encode, affects json_pure gems.
2011-08-25 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* re-bundle json_pure
* tdiary/compatible.rb, tdiary/referer_manager.rb, tdiary.rb: check to Encoding class defined.
2011-08-19 TADA Tadashi <t@tdtds.jp>
* theme/default: fixed: deleted background image from gustav.
2011-08-17 TADA Tadashi <t@tdtds.jp>
* misc/plugin/footnote.rb: initialized variables to fix error on category page. #89
2011-08-09 TADA Tadashi <t@tdtds.jp>
* js/01conf.js: reloaded after savng when csrf_protection plugin only. #79
2011-08-05 hb <smallstyle@gmail.com>
* misc/plugin/image.rb, js/image.js: upload/delete image in ajax.
2011-08-01 hb <smallstyle@gmail.com>
* misc/plugin/image.rb: supported multiple upload.
2011-07-31 TADA Tadashi <t@tdtds.jp>
* misc/plugin/my-ex.rb: fixed error when tb-show.rb disabled.
2011-07-29 TADA Tadashi <t@tdtds.jp>
* js/00default.js: fixed over escape in makePluginTag().
* Release 3.1.0.
2011-07-28 TADA Tadashi <t@tdtds.jp>
* js/01conf.js: reloaded after savng when sp plugin only. #76
2011-07-26 TADA Tadashi <t@tdtds.jp>
* 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 <t@tdtds.jp>
* 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 <t@tdtds.jp>
* plugin/00default.rb: replaced sub to lines.
* js/01conf.js: fixed: lost CR/LF in textarea.
2011-07-06 TADA Tadashi <t@tdtds.jp>
* specified id attr for conf form element.
2011-07-05 TADA Tadashi <t@tdtds.jp>
* saved preferences in ajax.
2011-07-03 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* merge tdiary-request. use Rack like interface when cgi mode.
2011-06-29 MATSUOKA Kohei <kohei@machu.jp>
* 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 <t@tdtds.jp>
* 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 <kohei@machu.jp>
* js/highlight.js: fixed XSS vulnerability. #59
2011-06-21 TADA Tadashi <t@tdtds.jp>
* added vendor/imagesize.
* plugin/image.rb: using ImageSize class getting image type and size. #56
2011-06-20 MATSUOKA Kohei <kohei@machu.jp>
* plugin/highlight.rb, js/highlight.js: rewrited on jQuery. #38, #53
2011-06-20 TADA Tadashi <t@tdtds.jp>
* plugin/image.rb, js/image.rb: ported to jQuery. #54
2011-06-18 TADA Tadashi <t@tdtds.jp>
* plugin/00default.rb: added query string to javascripts for disable browser cache.
2011-06-16 TADA Tadashi <t@tdtds.jp>
* 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 <t@tdtds.jp>
* plugin/js/disp_referrer.rb: maintained some search engines.
2011-06-12 TADA Tadashi <t@tdtds.jp>
* js/00default.js, js/category.js: fixed: running on MSIE(8) or Firefox(4).
2011-06-11 TADA Tadashi <t@tdtds.jp>
* 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 <t@tdtds.jp>
* avoid duplicate loading of javascript files.
* plugin/category.rb, js/category.js: splitted js file and rewrited on jQuery.
2011-06-06 OGAWA KenIchi <kenichi@ice.email.ne.jp>
* plugin/pre_wrap.rb: fixed error about invalid selector.
2011-06-02 TADA Tadashi <t@tdtds.jp>
* replaced div elements into span for better HTML. #35
* inserted some ids into update form.
2011-05-28 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* 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 <t@tdtds.jp>
* supported ruby 1.9 on list.rb.
2011-05-17 TADA Tadashi <t@tdtds.jp>
* 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 <t@tdtds.jp>
* 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 <shibata.hiroshi@gmail.com>
* plugin/05referer.rb, misc/plugin/a.rb: bugfix, backward compatibility.
2011-04-29 TADA Tadashi <t@tdtds.jp>
* Release 3.0.2.
2011-04-27 TADA Tadashi <t@tdtds.jp>
* recent_rss.rb: fixed security error.
2011-04-25 TADA Tadashi <t@tdtds.jp>
* deleted PingBack sending and receiving feature.
2011-04-19 TADA Tadashi <t@tdtds.jp>
* converted some en documents to HTML.
2011-04-11 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* 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 <shibata.hiroshi@gmail.com>
* index.rb, update.rb: added 'type' headed instead of 'Content-Type' when running cgi.rb
2011-04-06 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary.rb: untaint external load_path. thanks tamoot.
2011-04-03 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* plugin/00default.rb: bug fix for navi_user_edit, unshown prev/next day anchor.
2011-03-31 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* plugin/05referer.rb, tdiary/{tdiary.rb, defaultio.rb}: bug fix for 1.8.6 compatibility.
2011-03-22 KADO Masanori <kdmsnr@gmail.com>
* tdiary.rb, skel/diary.rhtml: add comment_leave_proc.
2011-03-21 TADA Tadashi <t@tdtds.jp>
* deleted TrackBack sending and receiving feature.
2011-03-20 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary/wiki_style.rb: fixed bug, WikiDiary#add_section.
2011-03-05 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary/tdiary_style.rb: fix 1.8 backward compatibility. thx tamoot.
2011-03-03 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary.rb: remove old redirect action for apache ErrorDocutment.
2011-02-27 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary.rb: remove ruby 1.6 backward compatibility.
2011-02-22 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary/{defaultio.rb, compatible.rb}, tdiary.rb, plugin/*.rb: remove 1.8 backward compatibility.
2011-02-20 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* 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 <kdmsnr@gmail.com>
* 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 <t@tdtds.jp>
* skel/preview*: removed westing </strong>.
2011-01-30 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* misc/lib/compatible.rb: move to tdiary/compatible.rb
2011-01-18 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary/wiki_style.rb, test/wiki_style_test.rb: applied patch #168
2011-01-17 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* Capfile, tdiary/deploy.rb: added deployment task with Capistrano
2011-01-05 TADA Tadashi <t@tdtds.jp>
* tdiary/dispatch.rb: fixed error on image.rb uploading image files.
2011-01-03 TADA Tadashi <t@tdtds.jp>
* plugin/00default.rb: generated CSRF protection key automatically.
* misc/plugin/kw.rb: specified UTF-8 to searching by google.
2010-11-17 tamoot <tamoot@gmail.com>
* tdiary/dispatcher.rb: deleted an over CR/LF.
2010-11-14 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* misc/lib/compatible.rb: use Enumerable for String#each and String#to_a in Ruby 1.9.
2010-10-26 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary/dispatcher.rb: fixed header error on commented.
2010-10-08 TADA Tadashi <t@tdtds.jp>
* require_jquery method for plugin.
2010-10-06 Kazuhiko <kazuhiko@fdiary.net>
* tdiary.rb: fixed Encoding error on illegal referer.
2010-10-05 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* index.fcgi: fix error for mobile phone in Ruby 1.9.2
2010-09-21 TADA Tadashi <t@tdtds.jp>
* supported X-Frame-Options header.
2010-09-20 TADA Tadashi <t@tdtds.jp>
* Release 3.0.1.
2010-09-08 KADO Masanori <kdmsnr@gmail.com>
* 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 <shibata.hiroshi@gmail.com>
* Release 3.0.0 at RubyKaigi2010
2010-08-24 MATSUOKA Kohei <kohei@machu.jp>
* plugin/05referer.rb: ignore an invalid referer. (non-ASCII character)
2010-08-22 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* 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 <t@tdtds.jp>
* misc/plugin/makerss.rb: checked 'A little modify' when the diary is older over a month.
2010-06-15 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* misc/lib/compatible.rb, spec/core/compatible_spec.rb:
convert encoding first time only. thx machu.
2010-05-16 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* plugin/00default.rb, plugin/{ja,en,zh}/00default.rb: added recommended filter setting.
2010-04-30 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* misc/style/rd/rd_style.rb: applied patch #190, thx kumaryu.
2010-04-25 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* tdiary/filter/spam.rb: revert r3619. and fix debug message.
* tdiary/filter/spam.rb: added IP based DNSBL filter.
2010-04-21 TADA Tadashi <t@tdtds.jp>
* added Config#smartphone? calling CGI::smartphone?. And alias as iphone?.
2010-04-20 TADA Tadashi <t@tdtds.jp>
* added CGI#smartphone? for some SmartPhone's user agent.
2010-04-06 TADA Tadashi <t@tdtds.jp>
* theme/base.css: adjusted some styles for amazon plugin.
2010-03-30 TADA Tadashi <t@tdtds.jp>
* 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 <t@tdtds.jp>
* skel/header.rhtml: added 'class="update"' into body element when update mode.
2010-03-27 TADA Tadashi <t@tdtds.jp>
* theme/base.css: added style for amazon plugin.
2010-03-26 TADA Tadashi <t@tdtds.jp>
* 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 <shibata.hiroshi@gmail.com>
* 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 <kazuhiko@fdiary.net>
* 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