tdiary 3.2.2.20130507

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (509) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +16 -0
  4. data/.travis.yml +29 -0
  5. data/Capfile +2 -0
  6. data/ChangeLog +3173 -0
  7. data/Gemfile +58 -0
  8. data/Gemfile.lock +201 -0
  9. data/LICENSE +340 -0
  10. data/Procfile +1 -0
  11. data/README.md +33 -0
  12. data/Rakefile +26 -0
  13. data/bin/tdiary +7 -0
  14. data/config.ru +61 -0
  15. data/data/.htaccess +2 -0
  16. data/doc/HOWTO-authenticate-in-rack.md +89 -0
  17. data/doc/HOWTO-make-io.md +305 -0
  18. data/doc/HOWTO-make-plugin.md +279 -0
  19. data/doc/HOWTO-make-theme.md +67 -0
  20. data/doc/HOWTO-testing-tDiary.md +44 -0
  21. data/doc/HOWTO-use-plugin.md +148 -0
  22. data/doc/HOWTO-write-tDiary.en.md +131 -0
  23. data/doc/HOWTO-write-tDiary.md +136 -0
  24. data/doc/INSTALL-paas.md +202 -0
  25. data/doc/INSTALL.md +160 -0
  26. data/doc/README.en.md +174 -0
  27. data/doc/README.md +56 -0
  28. data/doc/UPGRADE.md +164 -0
  29. data/doc/doc.css +115 -0
  30. data/dot.htaccess +27 -0
  31. data/index.fcgi +45 -0
  32. data/index.rb +57 -0
  33. data/js/00default.js +60 -0
  34. data/js/01conf.js +62 -0
  35. data/js/02edit.coffee +5 -0
  36. data/js/02edit.js +15 -0
  37. data/js/amazon.js +43 -0
  38. data/js/calendar3.js +130 -0
  39. data/js/caretposition.js +170 -0
  40. data/js/category.js +29 -0
  41. data/js/category_autocomplete.js +96 -0
  42. data/js/comment_ajax.js +27 -0
  43. data/js/draft.js +149 -0
  44. data/js/highlight.js +36 -0
  45. data/js/image.js +181 -0
  46. data/misc/convert2.rb +123 -0
  47. data/misc/filter/antispamservice.rb +101 -0
  48. data/misc/filter/limitdays.rb +40 -0
  49. data/misc/filter/linkcheck.rb +81 -0
  50. data/misc/filter/plugin/antispamservice.rb +82 -0
  51. data/misc/filter/plugin/en/antispamservice.rb +21 -0
  52. data/misc/filter/plugin/ja/antispamservice.rb +20 -0
  53. data/misc/lib/README +4 -0
  54. data/misc/lib/compatible.rb +1 -0
  55. data/misc/lib/fcgi_patch.rb +90 -0
  56. data/misc/migrate.rb +157 -0
  57. data/misc/paas/cloudfoundry/Gemfile +26 -0
  58. data/misc/paas/cloudfoundry/Gemfile.lock +85 -0
  59. data/misc/paas/heroku/Gemfile +22 -0
  60. data/misc/paas/heroku/Gemfile.lock +85 -0
  61. data/misc/paas/sqale/Gemfile +19 -0
  62. data/misc/paas/sqale/Gemfile.lock +85 -0
  63. data/misc/paas/sqale/Procfile +1 -0
  64. data/misc/paas/sqale/dot.env +1 -0
  65. data/misc/plugin/ChangeLog.DO_NOT_UPDATE +2333 -0
  66. data/misc/plugin/a.rb +211 -0
  67. data/misc/plugin/amazon.rb +403 -0
  68. data/misc/plugin/amazon/README.en +17 -0
  69. data/misc/plugin/amazon/README.ja +29 -0
  70. data/misc/plugin/amazon/amazonimg.rb +113 -0
  71. data/misc/plugin/amazon/large.png +0 -0
  72. data/misc/plugin/amazon/medium.png +0 -0
  73. data/misc/plugin/amazon/small.png +0 -0
  74. data/misc/plugin/append-css.rb +51 -0
  75. data/misc/plugin/bq.rb +48 -0
  76. data/misc/plugin/calendar2.rb +184 -0
  77. data/misc/plugin/calendar3.rb +256 -0
  78. data/misc/plugin/category.rb +779 -0
  79. data/misc/plugin/category_autocomplete.rb +33 -0
  80. data/misc/plugin/comment_ajax.rb +11 -0
  81. data/misc/plugin/comment_mail-qmail.rb +57 -0
  82. data/misc/plugin/comment_mail-sendmail.rb +56 -0
  83. data/misc/plugin/comment_mail-smtp.rb +59 -0
  84. data/misc/plugin/comment_rank.rb +36 -0
  85. data/misc/plugin/counter.rb +631 -0
  86. data/misc/plugin/daily_theme.rb +55 -0
  87. data/misc/plugin/disp_referrer.rb +1486 -0
  88. data/misc/plugin/doctype-html401tr.rb +16 -0
  89. data/misc/plugin/draft.rb +20 -0
  90. data/misc/plugin/dropdown_calendar.rb +32 -0
  91. data/misc/plugin/edit_today.rb +50 -0
  92. data/misc/plugin/en/a.rb +10 -0
  93. data/misc/plugin/en/amazon.rb +71 -0
  94. data/misc/plugin/en/append-css.rb +17 -0
  95. data/misc/plugin/en/bq.rb +12 -0
  96. data/misc/plugin/en/calendar2.rb +12 -0
  97. data/misc/plugin/en/category.rb +204 -0
  98. data/misc/plugin/en/counter.rb +48 -0
  99. data/misc/plugin/en/daily_theme.rb +14 -0
  100. data/misc/plugin/en/disp_referrer.rb +387 -0
  101. data/misc/plugin/en/dropdown_calendar.rb +14 -0
  102. data/misc/plugin/en/edit_today.rb +22 -0
  103. data/misc/plugin/en/hide-mail-field.rb +19 -0
  104. data/misc/plugin/en/highlight.rb +29 -0
  105. data/misc/plugin/en/image.rb +54 -0
  106. data/misc/plugin/en/kw.rb +22 -0
  107. data/misc/plugin/en/makerss.rb +47 -0
  108. data/misc/plugin/en/pb-show.rb +21 -0
  109. data/misc/plugin/en/ping.rb +16 -0
  110. data/misc/plugin/en/recent_comment.rb +44 -0
  111. data/misc/plugin/en/recent_comment3.rb +56 -0
  112. data/misc/plugin/en/recent_rss.rb +33 -0
  113. data/misc/plugin/en/referer_scheme.rb +48 -0
  114. data/misc/plugin/en/search_control.rb +74 -0
  115. data/misc/plugin/en/search_form.rb +22 -0
  116. data/misc/plugin/en/speed_comment.rb +19 -0
  117. data/misc/plugin/en/tb-show.rb +37 -0
  118. data/misc/plugin/en/todo.rb +43 -0
  119. data/misc/plugin/en/weather.rb +185 -0
  120. data/misc/plugin/en/xmlrpc.rb +14 -0
  121. data/misc/plugin/footnote.rb +92 -0
  122. data/misc/plugin/gradation.rb +39 -0
  123. data/misc/plugin/gradient.rb +36 -0
  124. data/misc/plugin/hide-mail-field.rb +50 -0
  125. data/misc/plugin/highlight.rb +22 -0
  126. data/misc/plugin/html_anchor.rb +34 -0
  127. data/misc/plugin/image.rb +290 -0
  128. data/misc/plugin/ja/amazon.rb +89 -0
  129. data/misc/plugin/ja/bq.rb +13 -0
  130. data/misc/plugin/ja/calendar2.rb +12 -0
  131. data/misc/plugin/ja/category.rb +212 -0
  132. data/misc/plugin/ja/daily_theme.rb +15 -0
  133. data/misc/plugin/ja/disp_referrer.rb +644 -0
  134. data/misc/plugin/ja/edit_today.rb +23 -0
  135. data/misc/plugin/ja/hide-mail-field.rb +20 -0
  136. data/misc/plugin/ja/highlight.rb +30 -0
  137. data/misc/plugin/ja/makerss.rb +44 -0
  138. data/misc/plugin/ja/my-sequel.rb +52 -0
  139. data/misc/plugin/ja/pb-show.rb +23 -0
  140. data/misc/plugin/ja/ping.rb +17 -0
  141. data/misc/plugin/ja/recent_comment.rb +45 -0
  142. data/misc/plugin/ja/recent_comment3.rb +57 -0
  143. data/misc/plugin/ja/recent_rss.rb +34 -0
  144. data/misc/plugin/ja/referer_scheme.rb +86 -0
  145. data/misc/plugin/ja/search_control.rb +75 -0
  146. data/misc/plugin/ja/search_form.rb +32 -0
  147. data/misc/plugin/ja/tb-show.rb +38 -0
  148. data/misc/plugin/ja/todo.rb +46 -0
  149. data/misc/plugin/ja/weather.rb +402 -0
  150. data/misc/plugin/ja/xmlrpc.rb +15 -0
  151. data/misc/plugin/kw.rb +150 -0
  152. data/misc/plugin/list.rb +40 -0
  153. data/misc/plugin/makelirs.rb +89 -0
  154. data/misc/plugin/makerss.rb +744 -0
  155. data/misc/plugin/my-ex.rb +68 -0
  156. data/misc/plugin/my-sequel.rb +539 -0
  157. data/misc/plugin/navi_user.rb +19 -0
  158. data/misc/plugin/number_anchor.rb +47 -0
  159. data/misc/plugin/pb-show.rb +165 -0
  160. data/misc/plugin/ping.rb +99 -0
  161. data/misc/plugin/pre_wrap.rb +19 -0
  162. data/misc/plugin/random_google.rb +165 -0
  163. data/misc/plugin/recent_comment.rb +82 -0
  164. data/misc/plugin/recent_comment3.rb +192 -0
  165. data/misc/plugin/recent_list.rb +91 -0
  166. data/misc/plugin/recent_namazu.rb +50 -0
  167. data/misc/plugin/recent_rss.rb +305 -0
  168. data/misc/plugin/referer-antibot.rb +53 -0
  169. data/misc/plugin/referer-utf8.rb +12 -0
  170. data/misc/plugin/referer_scheme.rb +87 -0
  171. data/misc/plugin/search_control.rb +227 -0
  172. data/misc/plugin/search_form.rb +53 -0
  173. data/misc/plugin/sn.rb +107 -0
  174. data/misc/plugin/speed_comment.rb +68 -0
  175. data/misc/plugin/squeeze.rb +272 -0
  176. data/misc/plugin/src.rb +30 -0
  177. data/misc/plugin/tb-show.rb +212 -0
  178. data/misc/plugin/title_list.rb +41 -0
  179. data/misc/plugin/title_tag.rb +80 -0
  180. data/misc/plugin/tlink.rb +163 -0
  181. data/misc/plugin/todo.rb +182 -0
  182. data/misc/plugin/weather.rb +505 -0
  183. data/misc/plugin/whatsnew.rb +100 -0
  184. data/misc/plugin/xmlrpc.rb +80 -0
  185. data/misc/plugin/xmlrpc/README +20 -0
  186. data/misc/plugin/xmlrpc/xmlrpc.rb +575 -0
  187. data/misc/style/emptdiary/README.rd +83 -0
  188. data/misc/style/emptdiary/README.rd.en +78 -0
  189. data/misc/style/emptdiary/emptdiary_style.rb +199 -0
  190. data/misc/style/etdiary/README.rd +83 -0
  191. data/misc/style/etdiary/etdiary_style.rb +446 -0
  192. data/misc/style/gfm/gfm_style.rb +194 -0
  193. data/misc/style/rd/README.rd +71 -0
  194. data/misc/style/rd/rd_style.rb +366 -0
  195. data/misc/style/wiki/README +116 -0
  196. data/misc/style/wiki/README.en +101 -0
  197. data/misc/style/wiki/wiki_parser.rb +273 -0
  198. data/misc/style/wiki/wiki_style.rb +478 -0
  199. data/misc/theme_convert/Readme.rd +21 -0
  200. data/misc/theme_convert/append.rcss +150 -0
  201. data/misc/theme_convert/theme_convert.rb +453 -0
  202. data/plugin/00default.rb +1015 -0
  203. data/plugin/05referer.rb +298 -0
  204. data/plugin/10spamfilter.rb +183 -0
  205. data/plugin/50sp.rb +146 -0
  206. data/plugin/60sf.rb +152 -0
  207. data/plugin/90migrate.rb +109 -0
  208. data/plugin/en/00default.rb +390 -0
  209. data/plugin/en/05referer.rb +49 -0
  210. data/plugin/en/10spamfilter.rb +81 -0
  211. data/plugin/en/50sp.rb +56 -0
  212. data/plugin/en/60sf.rb +60 -0
  213. data/plugin/ja/00default.rb +401 -0
  214. data/plugin/ja/05referer.rb +47 -0
  215. data/plugin/ja/10spamfilter.rb +79 -0
  216. data/plugin/ja/50sp.rb +66 -0
  217. data/plugin/ja/60sf.rb +73 -0
  218. data/public/.gitkeep +0 -0
  219. data/public/images/.gitkeep +0 -0
  220. data/public/javascripts/.gitkeep +0 -0
  221. data/public/stylesheets/.gitkeep +0 -0
  222. data/skel/category.rhtml +9 -0
  223. data/skel/conf.rhtml +23 -0
  224. data/skel/day.rhtml +33 -0
  225. data/skel/diary.rhtml +83 -0
  226. data/skel/footer.rhtml +8 -0
  227. data/skel/header.rhtml +10 -0
  228. data/skel/i.category.rhtml +6 -0
  229. data/skel/i.conf.rhtml +14 -0
  230. data/skel/i.day.rhtml +28 -0
  231. data/skel/i.diary.rhtml +17 -0
  232. data/skel/i.footer.rhtml +2 -0
  233. data/skel/i.header.rhtml +3 -0
  234. data/skel/i.latest.rhtml +24 -0
  235. data/skel/i.month.rhtml +39 -0
  236. data/skel/i.search.rhtml +5 -0
  237. data/skel/i.update.rhtml +40 -0
  238. data/skel/i.update.rhtml.en +40 -0
  239. data/skel/latest.rhtml +27 -0
  240. data/skel/mail.rtxt +18 -0
  241. data/skel/mail.rtxt.en +18 -0
  242. data/skel/month.rhtml +27 -0
  243. data/skel/plugin_error.rhtml +27 -0
  244. data/skel/preview.rhtml +85 -0
  245. data/skel/preview.rhtml.en +72 -0
  246. data/skel/referer.rhtml +24 -0
  247. data/skel/search.rhtml +14 -0
  248. data/skel/tdiary.rconf +76 -0
  249. data/skel/update.rhtml +103 -0
  250. data/skel/update.rhtml.en +83 -0
  251. data/spec/acceptance/append_comment_spec.rb +94 -0
  252. data/spec/acceptance/append_diary_spec.rb +98 -0
  253. data/spec/acceptance/bugfix/encoding_error_spec.rb +27 -0
  254. data/spec/acceptance/save_conf_comment_spec.rb +87 -0
  255. data/spec/acceptance/save_conf_default_spec.rb +169 -0
  256. data/spec/acceptance/save_conf_dnsbl_spec.rb +152 -0
  257. data/spec/acceptance/save_conf_filter_spec.rb +50 -0
  258. data/spec/acceptance/save_conf_plugin_spec.rb +69 -0
  259. data/spec/acceptance/save_conf_referer_spec.rb +60 -0
  260. data/spec/acceptance/save_conf_security_spec.rb +280 -0
  261. data/spec/acceptance/support/helpers.rb +49 -0
  262. data/spec/acceptance/support/paths.rb +7 -0
  263. data/spec/acceptance/update_diary_spec.rb +113 -0
  264. data/spec/acceptance/view_category_spec.rb +38 -0
  265. data/spec/acceptance/view_comment_spec.rb +67 -0
  266. data/spec/acceptance/view_diary_spec.rb +126 -0
  267. data/spec/acceptance/view_referer_spec.rb +31 -0
  268. data/spec/acceptance_helper.rb +101 -0
  269. data/spec/core/compatible_spec.rb +54 -0
  270. data/spec/core/core_ext_spec.rb +59 -0
  271. data/spec/core/plugin_spec.rb +389 -0
  272. data/spec/core/rack/assets/precompile_spec.rb +76 -0
  273. data/spec/core/rack/html_anchor_spec.rb +57 -0
  274. data/spec/core/rack/valid_request_path_spec.rb +67 -0
  275. data/spec/core/style/emptdiary_style_spec.rb +165 -0
  276. data/spec/core/style/etdiary_style_spec.rb +512 -0
  277. data/spec/core/style/gfm_style_spec.rb +334 -0
  278. data/spec/core/style/rd_style_spec.rb +202 -0
  279. data/spec/core/style/tdiary_style_spec.rb +240 -0
  280. data/spec/core/style/wiki_style_spec.rb +441 -0
  281. data/spec/fixtures/ascii8bit-pstore.db +0 -0
  282. data/spec/fixtures/invalid-sequence-volatile.tdr +9 -0
  283. data/spec/fixtures/just_installed.conf +1 -0
  284. data/spec/fixtures/plugin/ja/sample.rb +4 -0
  285. data/spec/fixtures/plugin/sample.rb +6 -0
  286. data/spec/fixtures/sample.rb +12 -0
  287. data/spec/fixtures/tdiary.conf.gem +212 -0
  288. data/spec/fixtures/tdiary.conf.rack +212 -0
  289. data/spec/fixtures/tdiary.conf.rdb +227 -0
  290. data/spec/fixtures/tdiary.conf.secure +204 -0
  291. data/spec/fixtures/tdiary.conf.webrick +212 -0
  292. data/spec/javascripts/00default_spec.js +35 -0
  293. data/spec/javascripts/fixtures/00default.html +1 -0
  294. data/spec/javascripts/support/jasmine.yml +76 -0
  295. data/spec/plugin/bq_spec.rb +24 -0
  296. data/spec/plugin/plugin_helper.rb +203 -0
  297. data/spec/spec_helper.rb +32 -0
  298. data/tdiary.conf.beginner +244 -0
  299. data/tdiary.conf.sample +345 -0
  300. data/tdiary.conf.sample-en +333 -0
  301. data/tdiary.gemspec +26 -0
  302. data/tdiary.rb +151 -0
  303. data/tdiary/admin.rb +236 -0
  304. data/tdiary/application.rb +57 -0
  305. data/tdiary/author_only_base.rb +171 -0
  306. data/tdiary/base.rb +220 -0
  307. data/tdiary/cli.rb +116 -0
  308. data/tdiary/comment.rb +40 -0
  309. data/tdiary/comment_manager.rb +94 -0
  310. data/tdiary/compatible.rb +72 -0
  311. data/tdiary/config.rb +270 -0
  312. data/tdiary/core_ext.rb +122 -0
  313. data/tdiary/deploy.rb +50 -0
  314. data/tdiary/dispatcher.rb +77 -0
  315. data/tdiary/dispatcher/index_main.rb +122 -0
  316. data/tdiary/dispatcher/update_main.rb +101 -0
  317. data/tdiary/environment.rb +15 -0
  318. data/tdiary/filter.rb +48 -0
  319. data/tdiary/filter/default.rb +54 -0
  320. data/tdiary/filter/spam.rb +304 -0
  321. data/tdiary/io/base.rb +70 -0
  322. data/tdiary/io/cache/file.rb +123 -0
  323. data/tdiary/io/cache/memcached.rb +88 -0
  324. data/tdiary/io/cache/redis.rb +100 -0
  325. data/tdiary/io/default.rb +297 -0
  326. data/tdiary/io/pstore.rb +252 -0
  327. data/tdiary/io/rdb.rb +213 -0
  328. data/tdiary/lang/en.rb +79 -0
  329. data/tdiary/lang/ja.rb +72 -0
  330. data/tdiary/plugin.rb +375 -0
  331. data/tdiary/rack/assets/precompile.rb +37 -0
  332. data/tdiary/rack/auth/basic.rb +38 -0
  333. data/tdiary/rack/auth/omniauth.rb +51 -0
  334. data/tdiary/rack/html_anchor.rb +31 -0
  335. data/tdiary/rack/valid_request_path.rb +36 -0
  336. data/tdiary/referer_manager.rb +80 -0
  337. data/tdiary/request.rb +217 -0
  338. data/tdiary/response.rb +29 -0
  339. data/tdiary/server.rb +85 -0
  340. data/tdiary/style.rb +194 -0
  341. data/tdiary/style/tdiary_style.rb +198 -0
  342. data/tdiary/style/wiki_style.rb +213 -0
  343. data/tdiary/tasks.rb +1 -0
  344. data/tdiary/tasks/assets.rake +31 -0
  345. data/tdiary/tasks/auth.rake +28 -0
  346. data/tdiary/tasks/db.rake +110 -0
  347. data/tdiary/tasks/doc.rake +31 -0
  348. data/tdiary/tasks/heroku.rake +37 -0
  349. data/tdiary/tasks/jasmine.rake +16 -0
  350. data/tdiary/tasks/rdoc.rake +24 -0
  351. data/tdiary/tasks/release.rake +122 -0
  352. data/tdiary/tasks/rspec.rake +51 -0
  353. data/tdiary/tasks/server.rake +33 -0
  354. data/tdiary/tasks/test.rake +17 -0
  355. data/tdiary/version.rb +3 -0
  356. data/tdiary/view.rb +468 -0
  357. data/tdiary/view_helper.rb +15 -0
  358. data/test/disp_referrer_test.rb +93 -0
  359. data/test/my-sequel_test.rb +238 -0
  360. data/test/test_helper.rb +7 -0
  361. data/test/test_plugin_helper.rb +64 -0
  362. data/test/test_plugin_helper_test.rb +28 -0
  363. data/test/weather_test.rb +33 -0
  364. data/theme/base.css +268 -0
  365. data/theme/conf.block.png +0 -0
  366. data/theme/conf.css +254 -0
  367. data/theme/default/README +11 -0
  368. data/theme/default/body.png +0 -0
  369. data/theme/default/default.css +743 -0
  370. data/theme/help.png +0 -0
  371. data/theme/loading.gif +0 -0
  372. data/theme/tdiary1/README +7 -0
  373. data/theme/tdiary1/tdiary1.css +394 -0
  374. data/theme/tdiary2/README +19 -0
  375. data/theme/tdiary2/tdiary2.css +624 -0
  376. data/update.fcgi +45 -0
  377. data/update.rb +57 -0
  378. data/vendor/hikidoc-0.0.6/COPYING +28 -0
  379. data/vendor/hikidoc-0.0.6/NEWS +30 -0
  380. data/vendor/hikidoc-0.0.6/NEWS.ja +30 -0
  381. data/vendor/hikidoc-0.0.6/README +86 -0
  382. data/vendor/hikidoc-0.0.6/README.ja +83 -0
  383. data/vendor/hikidoc-0.0.6/Rakefile +68 -0
  384. data/vendor/hikidoc-0.0.6/TextFormattingRules +320 -0
  385. data/vendor/hikidoc-0.0.6/TextFormattingRules.ja +318 -0
  386. data/vendor/hikidoc-0.0.6/bin/hikidoc +66 -0
  387. data/vendor/hikidoc-0.0.6/lib/hikidoc.rb +914 -0
  388. data/vendor/hikidoc-0.0.6/setup.rb +1360 -0
  389. data/vendor/hikidoc-0.0.6/test/run-test.rb +13 -0
  390. data/vendor/hikidoc-0.0.6/test/test_hikidoc.rb +506 -0
  391. data/vendor/imagesize-0.1.1/Manifest.txt +19 -0
  392. data/vendor/imagesize-0.1.1/README.txt +49 -0
  393. data/vendor/imagesize-0.1.1/lib/image_size.rb +305 -0
  394. data/vendor/imagesize-0.1.1/lib/image_size/version.rb +9 -0
  395. data/vendor/imagesize-0.1.1/setup.rb +1585 -0
  396. data/vendor/imagesize-0.1.1/test/2-4-7.png +0 -0
  397. data/vendor/imagesize-0.1.1/test/4_1_2.gif +0 -0
  398. data/vendor/imagesize-0.1.1/test/bmp.bmp +0 -0
  399. data/vendor/imagesize-0.1.1/test/cursor.xbm +6 -0
  400. data/vendor/imagesize-0.1.1/test/detect.swf +0 -0
  401. data/vendor/imagesize-0.1.1/test/pbm.pbm +0 -0
  402. data/vendor/imagesize-0.1.1/test/pcx.pcx +0 -0
  403. data/vendor/imagesize-0.1.1/test/pgm.pgm +5 -0
  404. data/vendor/imagesize-0.1.1/test/test.xpm +38 -0
  405. data/vendor/imagesize-0.1.1/test/test_helper.rb +2 -0
  406. data/vendor/imagesize-0.1.1/test/test_image_size.rb +71 -0
  407. data/vendor/imagesize-0.1.1/test/tiff.tiff +0 -0
  408. data/vendor/imagesize-0.1.1/test/tokyo_tower.jpg +0 -0
  409. data/vendor/imagesize-0.1.1/test/tower_e.gif.psd +0 -0
  410. data/vendor/jasmine-jquery-1.4.2/jasmine-jquery.js +548 -0
  411. data/vendor/jquery-1.8/jquery.js +9227 -0
  412. data/vendor/rdtool-0.6.38/COPYING.txt +339 -0
  413. data/vendor/rdtool-0.6.38/Gemfile +3 -0
  414. data/vendor/rdtool-0.6.38/HISTORY +318 -0
  415. data/vendor/rdtool-0.6.38/LGPL-2.1 +502 -0
  416. data/vendor/rdtool-0.6.38/LICENSE.txt +58 -0
  417. data/vendor/rdtool-0.6.38/README.html +66 -0
  418. data/vendor/rdtool-0.6.38/README.ja.html +73 -0
  419. data/vendor/rdtool-0.6.38/README.rd +76 -0
  420. data/vendor/rdtool-0.6.38/README.rd.ja +85 -0
  421. data/vendor/rdtool-0.6.38/Rakefile +152 -0
  422. data/vendor/rdtool-0.6.38/TODO +22 -0
  423. data/vendor/rdtool-0.6.38/bin/rd2 +283 -0
  424. data/vendor/rdtool-0.6.38/bin/rdswap.rb +207 -0
  425. data/vendor/rdtool-0.6.38/doc/rd-draft.html +456 -0
  426. data/vendor/rdtool-0.6.38/doc/rd-draft.ja.html +466 -0
  427. data/vendor/rdtool-0.6.38/doc/rd-draft.rd +479 -0
  428. data/vendor/rdtool-0.6.38/doc/rd-draft.rd.ja +487 -0
  429. data/vendor/rdtool-0.6.38/lib/rd/block-element.rb +114 -0
  430. data/vendor/rdtool-0.6.38/lib/rd/complex-list-item.rb +65 -0
  431. data/vendor/rdtool-0.6.38/lib/rd/desclist.rb +55 -0
  432. data/vendor/rdtool-0.6.38/lib/rd/document-struct.rb +46 -0
  433. data/vendor/rdtool-0.6.38/lib/rd/dot.rd2rc +18 -0
  434. data/vendor/rdtool-0.6.38/lib/rd/element.rb +160 -0
  435. data/vendor/rdtool-0.6.38/lib/rd/filter.rb +255 -0
  436. data/vendor/rdtool-0.6.38/lib/rd/head-filter.rb +14 -0
  437. data/vendor/rdtool-0.6.38/lib/rd/inline-element.rb +233 -0
  438. data/vendor/rdtool-0.6.38/lib/rd/labeled-element.rb +14 -0
  439. data/vendor/rdtool-0.6.38/lib/rd/list.rb +57 -0
  440. data/vendor/rdtool-0.6.38/lib/rd/loose-struct.rb +11 -0
  441. data/vendor/rdtool-0.6.38/lib/rd/methodlist.rb +57 -0
  442. data/vendor/rdtool-0.6.38/lib/rd/output-format-visitor.rb +30 -0
  443. data/vendor/rdtool-0.6.38/lib/rd/package.rb +4 -0
  444. data/vendor/rdtool-0.6.38/lib/rd/parser-util.rb +14 -0
  445. data/vendor/rdtool-0.6.38/lib/rd/post-install +1 -0
  446. data/vendor/rdtool-0.6.38/lib/rd/pre-setup.rb +18 -0
  447. data/vendor/rdtool-0.6.38/lib/rd/rbl-file.rb +69 -0
  448. data/vendor/rdtool-0.6.38/lib/rd/rbl-suite.rb +37 -0
  449. data/vendor/rdtool-0.6.38/lib/rd/rd-struct.rb +86 -0
  450. data/vendor/rdtool-0.6.38/lib/rd/rd2html-ext-lib.rb +266 -0
  451. data/vendor/rdtool-0.6.38/lib/rd/rd2html-ext-opt.rb +34 -0
  452. data/vendor/rdtool-0.6.38/lib/rd/rd2html-lib.rb +490 -0
  453. data/vendor/rdtool-0.6.38/lib/rd/rd2html-opt.rb +67 -0
  454. data/vendor/rdtool-0.6.38/lib/rd/rd2man-lib.rb +251 -0
  455. data/vendor/rdtool-0.6.38/lib/rd/rd2rdo-lib.rb +19 -0
  456. data/vendor/rdtool-0.6.38/lib/rd/rd2rmi-lib.rb +32 -0
  457. data/vendor/rdtool-0.6.38/lib/rd/rdblockparser.ry +518 -0
  458. data/vendor/rdtool-0.6.38/lib/rd/rdblockparser.tab.rb +1061 -0
  459. data/vendor/rdtool-0.6.38/lib/rd/rdfmt.rb +15 -0
  460. data/vendor/rdtool-0.6.38/lib/rd/rdinlineparser.ry +503 -0
  461. data/vendor/rdtool-0.6.38/lib/rd/rdinlineparser.tab.rb +1243 -0
  462. data/vendor/rdtool-0.6.38/lib/rd/rdvisitor.rb +214 -0
  463. data/vendor/rdtool-0.6.38/lib/rd/reference-resolver.rb +114 -0
  464. data/vendor/rdtool-0.6.38/lib/rd/search-file.rb +14 -0
  465. data/vendor/rdtool-0.6.38/lib/rd/tree.rb +103 -0
  466. data/vendor/rdtool-0.6.38/lib/rd/version.rb +41 -0
  467. data/vendor/rdtool-0.6.38/lib/rd/visitor.rb +86 -0
  468. data/vendor/rdtool-0.6.38/rdtool.gemspec +125 -0
  469. data/vendor/rdtool-0.6.38/setup.rb +1596 -0
  470. data/vendor/rdtool-0.6.38/test/data/includee1.html +1 -0
  471. data/vendor/rdtool-0.6.38/test/data/includee2.html +1 -0
  472. data/vendor/rdtool-0.6.38/test/data/includee3.nothtml +1 -0
  473. data/vendor/rdtool-0.6.38/test/data/includee4.xhtml +0 -0
  474. data/vendor/rdtool-0.6.38/test/data/label.rbl +2 -0
  475. data/vendor/rdtool-0.6.38/test/data/label2.rbl +2 -0
  476. data/vendor/rdtool-0.6.38/test/data/sub/includee2.html +1 -0
  477. data/vendor/rdtool-0.6.38/test/data/sub/includee4.html +0 -0
  478. data/vendor/rdtool-0.6.38/test/dummy-observer.rb +6 -0
  479. data/vendor/rdtool-0.6.38/test/dummy.rb +33 -0
  480. data/vendor/rdtool-0.6.38/test/temp-dir.rb +19 -0
  481. data/vendor/rdtool-0.6.38/test/test-block-parser.rb +46 -0
  482. data/vendor/rdtool-0.6.38/test/test-desclist-item.rb +219 -0
  483. data/vendor/rdtool-0.6.38/test/test-document-element.rb +46 -0
  484. data/vendor/rdtool-0.6.38/test/test-document-struct.rb +66 -0
  485. data/vendor/rdtool-0.6.38/test/test-element.rb +46 -0
  486. data/vendor/rdtool-0.6.38/test/test-headline.rb +80 -0
  487. data/vendor/rdtool-0.6.38/test/test-inline-parser.rb +46 -0
  488. data/vendor/rdtool-0.6.38/test/test-list-item.rb +54 -0
  489. data/vendor/rdtool-0.6.38/test/test-list.rb +53 -0
  490. data/vendor/rdtool-0.6.38/test/test-methodlist-item.rb +73 -0
  491. data/vendor/rdtool-0.6.38/test/test-nonterminal-element.rb +170 -0
  492. data/vendor/rdtool-0.6.38/test/test-nonterminal-inline.rb +33 -0
  493. data/vendor/rdtool-0.6.38/test/test-output-format-visitor.rb +48 -0
  494. data/vendor/rdtool-0.6.38/test/test-parser-util.rb +41 -0
  495. data/vendor/rdtool-0.6.38/test/test-rbl-file.rb +156 -0
  496. data/vendor/rdtool-0.6.38/test/test-rbl-suite.rb +43 -0
  497. data/vendor/rdtool-0.6.38/test/test-rd2html-lib.rb +496 -0
  498. data/vendor/rdtool-0.6.38/test/test-rdtree.rb +17 -0
  499. data/vendor/rdtool-0.6.38/test/test-rdvisitor.rb +29 -0
  500. data/vendor/rdtool-0.6.38/test/test-reference-resolver.rb +202 -0
  501. data/vendor/rdtool-0.6.38/test/test-reference.rb +132 -0
  502. data/vendor/rdtool-0.6.38/test/test-search-file.rb +22 -0
  503. data/vendor/rdtool-0.6.38/test/test-terminal-inline.rb +41 -0
  504. data/vendor/rdtool-0.6.38/test/test-textblock.rb +44 -0
  505. data/vendor/rdtool-0.6.38/test/test-tree.rb +82 -0
  506. data/vendor/rdtool-0.6.38/test/test-version.rb +57 -0
  507. data/vendor/rdtool-0.6.38/test/test-visitor.rb +230 -0
  508. data/vendor/rdtool-0.6.38/utils/rd-mode.el +464 -0
  509. metadata +666 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4b4e9c3be4d1a87f35816ef3a53531a57eb22577
4
+ data.tar.gz: b2ce21337329596aba01b6052c42494e1e2216b6
5
+ SHA512:
6
+ metadata.gz: 04b9c56590faeebc758b2260a7fdd7bd0b2a9329b71a966cf2741f7cbec158726be315859e9eeb81bf460da36910064f85833dbd1d26f7c17b5ad824a8618b69
7
+ data.tar.gz: 092d9ddf09bfac2370eff578d07680dbfed6854c793076e5770d6b9df3a378d8dbcfe5236f1f84360774e32de1aecce7eae9cbf1e0cac09d7e3db5652a16f13f
data/.coveralls.yml ADDED
@@ -0,0 +1 @@
1
+ service_name: travis-ci
data/.gitignore ADDED
@@ -0,0 +1,16 @@
1
+ .bundle
2
+ .htpasswd
3
+ coverage
4
+ coverage.*
5
+ data/*
6
+ !data/.htaccess
7
+ log
8
+ pkg
9
+ tmp
10
+ rdoc
11
+ index.rdf
12
+ tdiary.conf
13
+ vendor/bundle/
14
+ spec/reports
15
+ doc/*.html
16
+ .rspec
data/.travis.yml ADDED
@@ -0,0 +1,29 @@
1
+ services: memcache
2
+
3
+ bundler_args: --without development
4
+
5
+ rvm:
6
+ - 1.9.3
7
+ - 2.0.0
8
+
9
+ before_script:
10
+ - export DISPLAY=:99.0
11
+ - sh -e /etc/init.d/xvfb start
12
+ - DAEMON=1 bundle exec rake server
13
+
14
+ script: if [ $TEST_MODE = "gem" ] ; then bundle exec tdiary test ; else bundle exec rake spec:coverage test ; fi
15
+
16
+ env:
17
+ - TEST_MODE=rack
18
+ - TEST_MODE=rdb
19
+ - TEST_MODE=webrick
20
+ - TEST_MODE=secure
21
+ - TEST_MODE=gem
22
+
23
+ notifications:
24
+ irc: "irc.freenode.org#tdiary"
25
+
26
+ matrix:
27
+ allow_failures:
28
+ # webrick mode is unstable results...
29
+ - env: TEST_MODE=webrick
data/Capfile ADDED
@@ -0,0 +1,2 @@
1
+ load 'deploy' if respond_to?(:namespace) # cap2 differentiator
2
+ load 'tdiary/deploy'
data/ChangeLog ADDED
@@ -0,0 +1,3173 @@
1
+ 2013-03-20 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
2
+ * misc/style/gfm/gfm_style.rb: bugfix #268, #269. fixed broken rule of autolink replacements.
3
+
4
+ 2013-03-13 TADA Tadashi <t@tdtds.jp>
5
+ * tdiary/server.rb: fix js not load
6
+ * alert of old ruby version for end of ruby 1.8
7
+
8
+ 2013-03-10 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
9
+ * tdiary/io/cache/redis.rb: added Redis cache store.
10
+
11
+ 2013-02-10 MATSUOKA Kohei <kohei@machu.jp>
12
+ * tdiary/view.rb, js/comment_ajax.js: post comment with ajax.
13
+ * tdiary/request.rb: implement TDiary::Request#xhr?
14
+
15
+ 2013-02-07 MATSUOKA Kohei <kohei@machu.jp>
16
+ fixed #260: tDiary.document_root returns current directory in the CGI/FastCGI
17
+
18
+ 2013-02-06 MATSUOKA Kohei <kohei@machu.jp>
19
+ fixed #250: disable Rack::Reloader except development environment
20
+
21
+ 2013-02-06 TADA Tadashi <t@tdtds.jp>
22
+ fixed #259: return path under tDiary.document_root only not fullpath
23
+
24
+ 2013-02-01 MATSUOKA Kohei <kohei@machu.jp>
25
+ * misc/plugin/makerss.rb: puts rss file to the public directory if the Rack environment
26
+
27
+ 2013-01-30 MATSUOKA Kohei <kohei@machu.jp>
28
+ * tdiary.rb: add TDiary::document_root to return static contents directory
29
+
30
+ 2013-01-29 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
31
+ * release 3.2.1
32
+
33
+ 2013-01-22 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
34
+ * misc/plugin/recent_comment3.rb: directory matching condition discarded to ambiguous pattern.
35
+
36
+ 2013-01-20 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
37
+ * misc/plugin/recent_comment3.rb: guard to overwrite empty data when exists data.
38
+
39
+ 2013-01-19 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
40
+ * skel/show.rhtml, tdiary/base.rb, tdiary/dispatcher/update_main.rb: remove unnecessary skelton.
41
+
42
+ 2013-01-18 MATSUOKA Kohei <kohei@machu.jp>
43
+ * plugin/05referer.rb: record up to 10,000 of the volatile referer
44
+
45
+ 2013-01-16 MATSUOKA Kohei <kohei@machu.jp>
46
+ * tdiary/base.rb: enable plugin cache again, except blogkit
47
+ * config.ru ValidRequestPath after Rack::File to return public contents
48
+
49
+ 2013-01-15 MATSUOKA Kohei <kohei@machu.jp>
50
+ * tdiayr.rb, tdiary/base.rb, tdiary/dispatcher/index_main.rb, tdiary/plugin.rb: run ValidRequestPath after Rack::File to return public contents
51
+
52
+ 2013-01-14 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
53
+ * tdiary.rb, tdiary/server.rb, tdiary/applicationn.rb, tdiary/tasks/server.rake: moved strandalone_cgi_server to core function: experimental
54
+
55
+ 2013-01-13 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
56
+ * misc/style/gfm/gfm_style.rb, tdiary/core_ext.rb, skel/diary.rhtml: enabled to display emoji when day mode.
57
+ * misc/plugin/*/recent_trackback3.rb: remove trackback information
58
+
59
+ 2013-01-13 KITAITI Makoto <KitaitiMakoto@gmail.com>
60
+ * misc/paas/sqale/Gemfile, doc/INSTALL-paas.md: added sqale docs.
61
+
62
+ 2013-01-12 MATSUOKA Kohei <kohei@machu.jp>
63
+ * spec/core/plugin_spec.rb: add spec for TDiary::Plugin
64
+
65
+ 2013-01-12 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
66
+ * tdiary.rb, tdiary/base.rb, tdiary/view.rb: implement to singleton logger class
67
+ * tdiary/compatible.rb, tdiary/style.rb: compatible.rb is only backword or forward compatibe methods.
68
+ * vendor/json_pure*, vendor/rdtool*: update bundled gems.
69
+
70
+ 2013-01-06 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
71
+ * tdiary.rb, tdiary/*: restructured TDiary* classes
72
+
73
+ 2013-01-05 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
74
+ * tdiary.rb, tdiary/*: restructured DiaryBase class.
75
+ * 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.
76
+ * misc/style/gfm/gfm_style.rb: ignored intra emphasis.
77
+
78
+ 2012-12-29 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
79
+ * misc/plugin/title_tag.rb: added nil guard for case of subtitle is nil
80
+
81
+ 2012-12-27 TADA Tadashi <t@tdtds.jp>
82
+ * misc/standalone_cgi/bin/server: change bind address to any (0.0.0.0) and add option '-b'
83
+
84
+ 2012-11-18 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
85
+ * .travis.yml: tweak ignore and exclude otpion
86
+ * spec/acceptance/*: accept capybara-2.0.0 ways
87
+
88
+ 2012-11-12 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
89
+ * misc/style/gfm/gfm_style.rb: integrate twitter-autolink.
90
+
91
+ 2012-11-06 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
92
+ * tdiary/tasks/release.rake: integrate release task.
93
+
94
+ 2012-11-03 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
95
+ * misc/style/gfm/gfm_style.rb: ignored to expand url strings in plugin syntax.
96
+
97
+ 2012-10-29 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
98
+ * Release 3.2.0
99
+
100
+ 2012-10-11 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
101
+ * .travis.yml, spec/acceptance_helper.rb: tweak RDB and memcached specs.
102
+ * tdiary/io/cache/{file, memcached}.rb: added store/restore interface for plugin.
103
+
104
+ 2012-10-06 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
105
+ * tdiary/00default.rb: support to embedded external javascripts.
106
+ * misc/plugin/category_autocomplete.rb, js/category_autocomplete.js: added category_autocomplete.js, thanks for tamoot
107
+
108
+ 2012-10-02 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
109
+ * tdiary/io/rdb.rb: support auto migration for database
110
+ * misc/style/gfm/gfm_style.rb: support Emoji
111
+
112
+ 2012-09-25 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
113
+ * spec/acceptance_helper.rb: enable running specs with rdb.
114
+
115
+ 2012-09-16 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
116
+ * tdiary/tasks/db.rake: added task for rdb import from default.
117
+
118
+ 2012-08-24 MATSUOKA Kohei <kohei@machu.jp>
119
+ * tdiary.conf.sample: set default @data_path
120
+
121
+ 2012-08-19 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
122
+ * plugin/00default.rb: upgrade jQuery-1.8
123
+ * vendor/*: upgrade json_pure-1.7.4, rdtool-0.6.37
124
+
125
+ 2012-08-06 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
126
+ * tdiary/rack/assets/precompile.rb: CoffeeScript auto compile in rack middleware.
127
+
128
+ 2012-08-03 TADA Tadashi <t@tdtds.jp>
129
+ * plugin/calendar3.rb: fix typo of js file name #187
130
+
131
+ 2012-07-29 TADA Tadashi <t@tdtds.jp>
132
+ * Release 3.1.4.
133
+
134
+ 2012-07-03 hb <smallstyle@gmail.com>
135
+ * tdiary/rack/valid_request_path.rb: response body is empty for HEAD request.
136
+
137
+ 2012-06-20 hb <smallstyle@gmail.com>
138
+ * tdiary/config.rb: fixed base_url_auto when script_name is empty.
139
+
140
+ 2012-06-14 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
141
+ * tdiary/io/rdb.rb: fixed unsaved style when using RdbIO.
142
+
143
+ 2012-06-12 TADA Tadashi <t@tdtds.jp>
144
+ * ja/disp_referer.rb: maintained about google image search.
145
+
146
+ 2012-06-09 TADA Tadashi <t@tdtds.jp>
147
+ * title_tag.rb: fixed error on empty subtitle.
148
+
149
+ 2012-05-20 MATSUOKA Kohei <kohei@machu.jp>
150
+ * tdiary/rack/valid_request_path.rb: validate PATH_INFO in rack
151
+
152
+ 2012-05-18 MATSUOKA Kohei <kohei@machu.jp>
153
+ * Rakefile: add task heroku:install
154
+
155
+ 2012-05-17 MATSUOKA Kohei <kohei@machu.jp>
156
+ * Rakefile: add task auth:password:create
157
+
158
+ 2012-05-12 MATSUOKA Kohei <kohei@machu.jp>
159
+ * config.ru, tdiary/rack/auth/omniauth.rb: integrate omniauth for authentication
160
+
161
+ 2012-04-29 TADA Tadashi <t@tdtds.jp>
162
+ * Release 3.1.3.
163
+
164
+ 2012-04-25 TADA Tadashi <t@tdtds.jp>
165
+ * title_tag.rb: a little modify of title tag.
166
+
167
+ 2012-04-17 TADA Tadashi <t@tdtds.jp>
168
+ * highlight.{js,rb}: set section title function back.
169
+
170
+ 2012-04-17 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
171
+ * tdiary/io/heroku.rb: memoize cache_path for HerokuIO
172
+
173
+ 2012-04-14 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
174
+ * vendor/{json_pure-1.6.6,rdtool-0.6.33}: update latest gem version.
175
+ * tdiary/io/{default,heroku}.rb, tdiary/io/cache/*: split cache mecanism from IO files.
176
+
177
+ 2012-03-28 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
178
+ * tdiary.rb, tdiary/io/default.rb: separate cache methods, now File cache is implerement to DefaultIO class.
179
+ * tdiary/io/heroku.rb: implements to diary's cache using memcached.
180
+
181
+ 2012-03-27 hb <smallstyle@gmail.com>
182
+ * misc/plugin/image.rb, misc/plugin/en/image.rb, js/image.js: added Drag and Drop upload field. #40
183
+
184
+ 2012-03-23 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
185
+ * tdiary.rb, tdiary/config.rb, tdiary/io/default.rb, plugin/*.rb:
186
+ move restore/store methods depending File I/O to DefaultIO.
187
+
188
+ * tdiary/io/heroku.rb, spec/fixtures/tdiary.conf.heroku: added HerokuIO. support running to www.heroku.com.
189
+
190
+ 2012-02-28 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
191
+ * tdiary.rb: handled security error when tmp directory is nothing.
192
+ * misc/style/gfm/gfm_style.rb: support code highlighting with pygments.
193
+ * Rakefile, spec/spec_helper.rb: added ci_reporter.
194
+
195
+ 2012-02-25 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
196
+ * tdiary/io/base.rb: fix initialize style.path.
197
+
198
+ 2012-02-23 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
199
+ * tdiary/io/base.rb: support multiple directories for style file.
200
+ * theme/**/*.css: converted utf-8.
201
+ * plugin/00default.rb, js/02edit.{js,coffee}: auto expand textarea size.
202
+
203
+ 2012-02-19 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
204
+ * misc/style/gfm/gfm_style.rb: fix plugin syntax error in gfm_style.
205
+
206
+ 2012-02-17 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
207
+ * tdiary/io/base.rb, tdiary/*_style.rb: restructured style file path.
208
+ * misc/style/gfm/gfm_style.rb: added Github Flavored Markdown style.
209
+
210
+ 2012-01-10 TADA Tadashi <t@tdtds.jp>
211
+ * amazon.rb: changed required API version to 2011-08-01. #134
212
+
213
+ 2012-01-29 TADA Tadashi <t@tdtds.jp>
214
+ * Release 3.1.2.
215
+
216
+ 2012-01-22 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
217
+ * misc/plugins/amazon.rb: more lazy loading.
218
+
219
+ 2012-01-14 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
220
+ * misc/plugins/amazon.rb, misc/plugins/amazon/amazonimg.rb: use autoload when require REXML, because REXML loading was so heavy.
221
+
222
+ 2012-01-11 TADA Tadashi <t@tdtds.jp>
223
+ * plugin/title_tag.rb: fixed over escape in title element. #127
224
+
225
+ 2012-01-10 TADA Tadashi <t@tdtds.jp>
226
+ * fixed incorrect version number (2011->2012).
227
+
228
+ 2012-01-08 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
229
+ * tdiary/plugin.rb, Rakefile: support CoffeeScript, enabled dynamic compile when running on Rack mode.
230
+
231
+ 2012-01-06 TADA Tadashi <t@tdtds.jp>
232
+ * plugin/amazon.rb: show an error message when API timeouted.
233
+
234
+ 2012-01-05 TADA Tadashi <t@tdtds.jp>
235
+ * filter/antispamservice.rb: discontinued using Net::HTTP.version_1_1.
236
+
237
+ 2011-12-13 TADA Tadashi <t@tdtds.jp>
238
+ * plugin/image.rb: set correct image size when size parameter has under 2 items. #119
239
+
240
+ 2011-11-03 TADA Tadashi <t@tdtds.jp>
241
+ * plugin/disp_referrer.rb: suppressed Encoding::CompatibilityError error.
242
+
243
+ 2011-11-02 TADA Tadashi <t@tdtds.jp>
244
+ * plugin/ping.rb: discontinued using Net::HTTP.version_1_1.
245
+ * plugin/weather.rb: discontinued using Net::HTTP.version_1_1.
246
+
247
+ 2011-10-30 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
248
+
249
+ * tdiary/dispatcher/index_main.rb: bugfix http header when status is NOT_MODIFIED.
250
+
251
+ 2011-10-29 TADA Tadashi <t@tdtds.jp>
252
+ * theme/conf.css: fixed invalid element: div.help-icon to span.help.icon.
253
+ * Release 3.1.1.
254
+
255
+ 2011-10-23 Kazuhiko <kazuhiko@fdiary.net>
256
+ * misc/plugin/amazon.rb: support more contries - China, Italy and Spain.
257
+
258
+ 2011-10-18 TADA Tadashi <t@tdtds.jp>
259
+ * plugin/amazon.rb: supported AssociateTags for each country. #104
260
+
261
+ 2011-10-04 Kazuhiko <kazuhiko@fdiary.net>
262
+ * tdiary/config.rb: preload more transcodes that can be used in kw.rb plugin or sending a notification email.
263
+
264
+ * 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.
265
+
266
+ 2011-09-26 Kazuhiko <kazuhiko@fdiary.net>
267
+ * update.fcgi: initial commit.
268
+ * 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.
269
+
270
+ 2011-09-14 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
271
+ * tdiary/config.rb: do not encode when string is already utf-8 encoding.
272
+
273
+ 2011-09-13 Kazuhiko <kazuhiko@fdiary.net>
274
+ * tdiary/config.rb (to_native): fix a typo that may cause NoMethodError, pointed out by hsbt.
275
+
276
+ 2011-09-12 Kazuhiko <kazuhiko@fdiary.net>
277
+ * tdiary/config.rb (to_native): fix a mistake in 631e228 that may cause nil return value.
278
+
279
+ 2011-09-08 Kazuhiko <kazuhiko@fdiary.net>
280
+ * tdiary/lang/ja.rb, tdiary/lang/zh.rb: replace invalid or undefined characters in String#encode to avoid exceptions.
281
+
282
+ 2011-09-07 Kazuhiko <kazuhiko@fdiary.net>
283
+ * 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.
284
+
285
+ * tdiary/lang/ja.rb (to_native): move 'require' to the top of this file because to_native can be called in $SAFE=4 environment.
286
+ * tdiary/compatible.rb: mark tainted objects as untrusted too to prevent SecurityError in Ruby 1.9, patch by Kazuhiro NISHIYAMA <zn@mbf.nifty.com>.
287
+
288
+ 2011-09-06 Kazuhiko <kazuhiko@fdiary.net>
289
+ * tdiary.rb, update.rb: handle encoding properly in mobile mode.
290
+ * tdiary/lang/ja.rb (to_native): support ASCII-8BIT and broken UTF-8 input.
291
+
292
+ 2011-09-04 TADA Tadashi <t@tdtds.jp>
293
+ * plugin/00default.rb: apply plugin for subtitle when generating subtitle elements.
294
+
295
+ 2011-08-28 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
296
+ * tdiary/compatible.rb: remove String#encode, affects json_pure gems.
297
+
298
+ 2011-08-25 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
299
+ * re-bundle json_pure
300
+ * tdiary/compatible.rb, tdiary/referer_manager.rb, tdiary.rb: check to Encoding class defined.
301
+
302
+ 2011-08-19 TADA Tadashi <t@tdtds.jp>
303
+ * theme/default: fixed: deleted background image from gustav.
304
+
305
+ 2011-08-17 TADA Tadashi <t@tdtds.jp>
306
+ * misc/plugin/footnote.rb: initialized variables to fix error on category page. #89
307
+
308
+ 2011-08-09 TADA Tadashi <t@tdtds.jp>
309
+ * js/01conf.js: reloaded after savng when csrf_protection plugin only. #79
310
+
311
+ 2011-08-05 hb <smallstyle@gmail.com>
312
+ * misc/plugin/image.rb, js/image.js: upload/delete image in ajax.
313
+
314
+ 2011-08-01 hb <smallstyle@gmail.com>
315
+ * misc/plugin/image.rb: supported multiple upload.
316
+
317
+ 2011-07-31 TADA Tadashi <t@tdtds.jp>
318
+ * misc/plugin/my-ex.rb: fixed error when tb-show.rb disabled.
319
+
320
+ 2011-07-29 TADA Tadashi <t@tdtds.jp>
321
+ * js/00default.js: fixed over escape in makePluginTag().
322
+ * Release 3.1.0.
323
+
324
+ 2011-07-28 TADA Tadashi <t@tdtds.jp>
325
+ * js/01conf.js: reloaded after savng when sp plugin only. #76
326
+
327
+ 2011-07-26 TADA Tadashi <t@tdtds.jp>
328
+ * plugin/00default.rb: added js_url method lile theme_url.
329
+ * misc/plugin/disp_referrer.rb: ignored encoding error (workaround). thanks arton. #74
330
+
331
+ 2011-07-22 TADA Tadashi <t@tdtds.jp>
332
+ * skel/header.rb, skel/footer.rb: added div.whole-content inside body.
333
+ * rename theme/default to theme/tdiary2.
334
+ * added new theme default for tDiary 3.1.
335
+
336
+ 2011-07-18 TADA Tadashi <t@tdtds.jp>
337
+ * plugin/00default.rb: replaced sub to lines.
338
+ * js/01conf.js: fixed: lost CR/LF in textarea.
339
+
340
+ 2011-07-06 TADA Tadashi <t@tdtds.jp>
341
+ * specified id attr for conf form element.
342
+
343
+ 2011-07-05 TADA Tadashi <t@tdtds.jp>
344
+ * saved preferences in ajax.
345
+
346
+ 2011-07-03 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
347
+ * merge tdiary-request. use Rack like interface when cgi mode.
348
+
349
+ 2011-06-29 MATSUOKA Kohei <kohei@machu.jp>
350
+ * vendor/json_pure-1.5.3: added json_pure library to use to_json method. #58
351
+ * tdiary/compatible.rb: added String#encoding to avoid NoMethodError.
352
+
353
+ 2011-06-25 TADA Tadashi <t@tdtds.jp>
354
+ * plugin/image.rb, js/image.js: using jQuery to insert image tags. #54
355
+ * plugin/image.rb: fixed encoding error on ruby 1.9.
356
+ * skel/update.rhtml.zh: removed garbage tags.
357
+ * js/category.js: changed cursor when hover.
358
+
359
+ 2011-06-25 MATSUOKA Kohei <kohei@machu.jp>
360
+ * js/highlight.js: fixed XSS vulnerability. #59
361
+
362
+ 2011-06-21 TADA Tadashi <t@tdtds.jp>
363
+ * added vendor/imagesize.
364
+ * plugin/image.rb: using ImageSize class getting image type and size. #56
365
+
366
+ 2011-06-20 MATSUOKA Kohei <kohei@machu.jp>
367
+ * plugin/highlight.rb, js/highlight.js: rewrited on jQuery. #38, #53
368
+
369
+ 2011-06-20 TADA Tadashi <t@tdtds.jp>
370
+ * plugin/image.rb, js/image.rb: ported to jQuery. #54
371
+
372
+ 2011-06-18 TADA Tadashi <t@tdtds.jp>
373
+ * plugin/00default.rb: added query string to javascripts for disable browser cache.
374
+
375
+ 2011-06-16 TADA Tadashi <t@tdtds.jp>
376
+ * plugin/amazon.rb: preferences for using bit.ly. #47
377
+ * js/00default.js: set $tDiary.blogkit to false in default. #48
378
+
379
+ 2011-06-13 TADA Tadashi <t@tdtds.jp>
380
+ * plugin/js/disp_referrer.rb: maintained some search engines.
381
+
382
+ 2011-06-12 TADA Tadashi <t@tdtds.jp>
383
+ * js/00default.js, js/category.js: fixed: running on MSIE(8) or Firefox(4).
384
+
385
+ 2011-06-11 TADA Tadashi <t@tdtds.jp>
386
+ * plugin/category.rb, js/category.js: dropdown list style on edit support.
387
+ * plugin/00default.rb: sorted javascripts by file name.
388
+
389
+ 2011-06-06 TADA Tadashi <t@tdtds.jp>
390
+ * avoid duplicate loading of javascript files.
391
+ * plugin/category.rb, js/category.js: splitted js file and rewrited on jQuery.
392
+
393
+ 2011-06-06 OGAWA KenIchi <kenichi@ice.email.ne.jp>
394
+ * plugin/pre_wrap.rb: fixed error about invalid selector.
395
+
396
+ 2011-06-02 TADA Tadashi <t@tdtds.jp>
397
+ * replaced div elements into span for better HTML. #35
398
+ * inserted some ids into update form.
399
+
400
+ 2011-05-28 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
401
+
402
+ * added tdiary/io, moved to DefaultIO, PStoreIO.
403
+ * added core_ext.rb, extract core extension in tdiary.rb
404
+ * extract IOBase class in tdiary.rb, added tdiary/io/base.rb.
405
+ * partision a tdiary.rb, now tdiary/config.rb, tdiary/plugin.rb.
406
+
407
+ 2011-05-20 TADA Tadashi <t@tdtds.jp>
408
+ * supported ruby 1.9 on list.rb.
409
+
410
+ 2011-05-17 TADA Tadashi <t@tdtds.jp>
411
+ * changed Plugin#add_js_setting to Array because old ruby's hash is not hold order.
412
+ * added description of using js.
413
+
414
+ 2011-05-17 TADA Tadashi <t@tdtds.jp>
415
+ * added Plugin#enable_js and Plugin#add_js_setting method for inserting javascripts.
416
+ * added $tDiary and $tDiary.plugin object into javascript.
417
+ * added amazon.js for using amzn.to shoten service. Close #32.
418
+
419
+ 2011-05-06 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
420
+ * plugin/05referer.rb, misc/plugin/a.rb: bugfix, backword compatibility.
421
+
422
+ 2011-04-29 TADA Tadashi <t@tdtds.jp>
423
+ * Release 3.0.2.
424
+
425
+ 2011-04-27 TADA Tadashi <t@tdtds.jp>
426
+ * recent_rss.rb: fixed security error.
427
+
428
+ 2011-04-25 TADA Tadashi <t@tdtds.jp>
429
+ * deleted PingBack sending and receiving feature.
430
+
431
+ 2011-04-19 TADA Tadashi <t@tdtds.jp>
432
+ * converted some en documents to HTML.
433
+
434
+ 2011-04-11 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
435
+
436
+ * index.fcgi: workaround untaint LOAD_PATH for rubygems library path is always tainted.
437
+ * README, doc/*: rewrite README, and i18n documentation moved.
438
+
439
+ 2011-04-07 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
440
+
441
+ * index.rb, update.rb: added 'type' headed instead of 'Content-Type' when running cgi.rb
442
+
443
+ 2011-04-06 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
444
+
445
+ * tdiary.rb: untaint external load_path. thanks tamoot.
446
+
447
+ 2011-04-03 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
448
+
449
+ * plugin/00default.rb: bug fix for navi_user_edit, unshown prev/next day anchor.
450
+
451
+ 2011-03-31 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
452
+
453
+ * plugin/05referer.rb, tdiary/{tdiary.rb, defaultio.rb}: bug fix for 1.8.6 compatibility.
454
+
455
+ 2011-03-22 KADO Masanori <kdmsnr@gmail.com>
456
+
457
+ * tdiary.rb, skel/diary.rhtml: add comment_leave_proc.
458
+
459
+ 2011-03-21 TADA Tadashi <t@tdtds.jp>
460
+ * deleted TrackBack sending and receiving feature.
461
+
462
+ 2011-03-20 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
463
+
464
+ * tdiary/wiki_style.rb: fixed bug, WikiDiary#add_section.
465
+
466
+ 2011-03-05 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
467
+
468
+ * tdiary/tdiary_style.rb: fix 1.8 backward compatibility. thx tamoot.
469
+
470
+ 2011-03-03 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
471
+
472
+ * tdiary.rb: remove old redirect action for apache ErrorDocutment.
473
+
474
+ 2011-02-27 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
475
+
476
+ * tdiary.rb: remove ruby 1.6 backward compatibility.
477
+
478
+ 2011-02-22 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
479
+
480
+ * tdiary/{defaultio.rb, compatible.rb}, tdiary.rb, plugin/*.rb: remove 1.8 backward compatibility.
481
+
482
+ 2011-02-20 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
483
+
484
+ * tdiary.rb, tdiary.conf.rack: removed tdiary.conf.rack, now used tdiary.conf only.
485
+ * spec/**/*_spec.rb, spec/spec_helper.rb: rewrite spec setup.
486
+
487
+ 2011-02-18 KADO Masanori <kdmsnr@gmail.com>
488
+
489
+ * plugin/00default.rb: use jQuery in all mode: Closes #8
490
+ * plugin/00default.rb: update jQuery from 1.4 to 1.5
491
+
492
+ 2011-02-18 TADA Tadashi <t@tdtds.jp>
493
+ * skel/preview*: removed westing </strong>.
494
+
495
+ 2011-01-30 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
496
+
497
+ * misc/lib/compatible.rb: move to tdiary/compatible.rb
498
+
499
+ 2011-01-18 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
500
+
501
+ * tdiary/wiki_style.rb, test/wiki_style_test.rb: applied patch #168
502
+
503
+ 2011-01-17 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
504
+
505
+ * Capfile, tdiary/deploy.rb: added deployment task with Capistrano
506
+
507
+ 2011-01-05 TADA Tadashi <t@tdtds.jp>
508
+ * tdiary/dispatch.rb: fixed error on image.rb uploading image files.
509
+
510
+ 2011-01-03 TADA Tadashi <t@tdtds.jp>
511
+ * plugin/00default.rb: generated CSRF protection key automatically.
512
+ * misc/plugin/kw.rb: specified UTF-8 to searching by google.
513
+
514
+ 2010-11-17 tamoot <tamoot@gmail.com>
515
+ * tdiary/dispatcher.rb: deleted an over CR/LF.
516
+
517
+ 2010-11-14 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
518
+
519
+ * misc/lib/compatible.rb: use Enumerable for String#each and String#to_a in Ruby 1.9.
520
+
521
+ 2010-10-26 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
522
+
523
+ * tdiary/dispatcher.rb: fixed header error on commented.
524
+
525
+ 2010-10-08 TADA Tadashi <t@tdtds.jp>
526
+ * require_jquery method for plugin.
527
+
528
+ 2010-10-06 Kazuhiko <kazuhiko@fdiary.net>
529
+ * tdiary.rb: fixed Encoding error on illegal referer.
530
+
531
+ 2010-10-05 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
532
+ * index.fcgi: fix error for mobile phone in Ruby 1.9.2
533
+
534
+ 2010-09-21 TADA Tadashi <t@tdtds.jp>
535
+ * supported X-Frame-Options header.
536
+
537
+ 2010-09-20 TADA Tadashi <t@tdtds.jp>
538
+ * Release 3.0.1.
539
+
540
+ 2010-09-08 KADO Masanori <kdmsnr@gmail.com>
541
+ * tdiary.rb: revert 500173f. and fix the error of blog-category.
542
+ * index.rb: fix the error of tsukkomi from mobile phone.
543
+
544
+ 2010-08-28 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
545
+
546
+ * Release 3.0.0 at RubyKaigi2010
547
+
548
+ 2010-08-24 MATSUOKA Kohei <kohei@machu.jp>
549
+ * plugin/05referer.rb: ignore an invalid referer. (non-ASCII character)
550
+
551
+ 2010-08-22 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
552
+ * misc/lib/compatible.rb: added String#lines, check convert to Enumerator in method_missing.
553
+ * misc/plugin/category.rb: fix bug. called String#map in make_anchor.
554
+ * plugin/00default.rb: fic bug. called String#collect in comment_mail_mime.
555
+
556
+ 2010-08-20 TADA Tadashi <t@tdtds.jp>
557
+ * misc/plugin/makerss.rb: checked 'A little modify' when the diary is older over a month.
558
+
559
+ 2010-06-15 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
560
+ * misc/lib/compatible.rb, spec/core/compatible_spec.rb:
561
+ convert encoding first time only. thx machu.
562
+
563
+ 2010-05-16 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
564
+ * plugin/00default.rb, plugin/{ja,en,zh}/00default.rb: added recommended filter setting.
565
+
566
+ 2010-04-30 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
567
+ * misc/style/rd/rd_style.rb: applied patch #190, thx kumaryu.
568
+
569
+ 2010-04-25 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
570
+ * tdiary/filter/spam.rb: revert r3619. and fix debug message.
571
+ * tdiary/filter/spam.rb: added IP based DNSBL filter.
572
+
573
+ 2010-04-21 TADA Tadashi <t@tdtds.jp>
574
+ * added Config#smartphone? calling CGI::smartphone?. And alias as iphone?.
575
+
576
+ 2010-04-20 TADA Tadashi <t@tdtds.jp>
577
+ * added CGI#smartphone? for some SmartPhone's user agent.
578
+
579
+ 2010-04-06 TADA Tadashi <t@tdtds.jp>
580
+ * theme/base.css: adjusted some styles for amazon plugin.
581
+
582
+ 2010-03-30 TADA Tadashi <t@tdtds.jp>
583
+ * skel/update.rhtml*: changed element of top of div.caption to h2.
584
+ * theme/base.css: added style of profile plugin.
585
+
586
+ 2010-03-29 TADA Tadashi <t@tdtds.jp>
587
+ * skel/header.rhtml: added 'class="update"' into body element when update mode.
588
+
589
+ 2010-03-27 TADA Tadashi <t@tdtds.jp>
590
+ * theme/base.css: added style for amazon plugin.
591
+
592
+ 2010-03-26 TADA Tadashi <t@tdtds.jp>
593
+ * plugin/00default.rb: loading jQuery 1.4 via googleapi to Edit and Preference pages.
594
+ * js/00default.js: added default loading js file.
595
+
596
+ 2010-01-12 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
597
+ * doc/README.html: fixed supported ruby version.
598
+ * doc/HOWTO-make-theme.html, INSTALL.html: s/GPL/GPL2
599
+ * doc/*.html, *.css: fixed old mail address.
600
+
601
+ 2010-01-05 Kazuhiko <kazuhiko@fdiary.net>
602
+ * misc/lib/hikidoc.rb: sync with hikidoc rev.126.
603
+ * misc/lib/compatible.rb: define CGI::ENV so as to avoid "Insecure
604
+ operation `[]' at level 4" exception.
605
+ * misc/lib/compatible.rb: define Encoding::CompatibilityError for
606
+ ruby 1.8.x because it appears in rescue clauses.
607
+ * skel/footer.rhtml: disypal RUBY_RELEASE_DATE instead of
608
+ RUBY_PATCHLEVEL if RUBY_PATCH_LEVEL is missing.
609
+
610
+ 2009-12-09 Kazuhiko <kazuhiko@fdiary.net>
611
+ * skel/i.header.rhtml: invoke header_proc without embedding its result.
612
+ * plugin/00default.rb: fix mobile_navi according to navi_user integration.
613
+
614
+ 2009-12-04 TADA Tadashi <t@tdtds.jp>
615
+ * plugin/00default.rb: fixed bug of no saved referer under new navi_user plugin.
616
+
617
+ 2009-11-24 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
618
+ * tdiary.rb, plugin/00default.rb,
619
+ plugin/{ja,en,zh}/00default.rb: change logger implementation.
620
+ * tdiary.rb, plugin/00default.rb: change implemention of
621
+ navi_user_day to navi_user.rb.
622
+
623
+ 2009-08-26 Kazuhiko <kazuhiko@fdiary.net>
624
+ * tdiary/filter/default.rb: match on ASCII-8BIT encoding because
625
+ incoming referer and/or configured non_referer can be non-UTF8
626
+ encoding.
627
+ * index.rb, update.rb: call $:.unshift only if it is required,
628
+ otherwise the same path is added by each request in FastCGI mode.
629
+
630
+ 2009-08-17 zunda <zunda at freeshell.org>
631
+ * tdiary.rb, tdiary/defaultio.rb: modified to let style raise BadStyleError
632
+
633
+ 2009-08-17 Kazuhiko <kazuhiko@fdiary.net>
634
+ * misc/lib/compatible.rb (PStore::load): auto convert ASCII_8BIT
635
+ pstore data (created by Ruby-1.8) to UTF-8 in Ruby-1.9.
636
+ * skel/tdiary.rconf: force encoding all String in 'ASCII-8BIT' to
637
+ get the same dump format on both Ruby-1.8 and Ruby-1.9.
638
+
639
+ 2009-08-09 Kazuhiko <kazuhiko@fdiary.net>
640
+ * tdiary.rb (TDiary::TDiaryBase::load_plugins): reuse existing
641
+ Plugin instance if possible.
642
+ (TDiary::Plugin::initialize): use Object#instance_variable_set
643
+ instead of Kernel.eval.
644
+
645
+ 2009-08-05 Kazuhiko <kazuhiko@fdiary.net>
646
+ * tdiary.rb (TDiary::Plugin::disp_referer): add encoding flag in
647
+ regexp.
648
+
649
+ 2009-08-03 TADA Tadashi <t@tdtds.jp>
650
+ * release 2.3.3.
651
+
652
+ 2009-07-31 Kazuhiko <kazuhiko@fdiary.net>
653
+ * tdiary.rb: dirty workaround to avoid recursive sort that causes
654
+ SecurityError in @secure=true environment since
655
+ http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=16081
656
+
657
+ 2009-07-28 Kazuhiko <kazuhiko@fdiary.net>
658
+ * skel/footer.rhtml: display fcgi information in footer.
659
+
660
+ 2009-07-21 Kazuhiko <kazuhiko@fdiary.net>
661
+ * index.fcgi: initial commit based on the code by Akinori
662
+ Musha and moriq.
663
+
664
+ 2009-06-21 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
665
+ * tdiary.rb: uses FileUtils::mkdir_p when create log directory.
666
+
667
+ 2009-06-20 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
668
+ * tdiary.conf.sample, tdiary.conf.beginner: added some referer engine.
669
+
670
+ 2009-05-28 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
671
+ * plugin/00default.rb: revert AutoPagerize support when day mode.
672
+
673
+ 2009-05-21 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
674
+ * plugin/00default.rb, skel/diary.rhtml: support AutoPagerize.
675
+
676
+ 2009-05-14 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
677
+ * tdiary.conf.sample: delete obsolete referer.
678
+
679
+ 2009-05-08 TADA Tadashi <t@tdtds.jp>
680
+ * release 2.3.2.
681
+
682
+ 2009-05-02 TADA Tadashi <t@tdtds.jp>
683
+ * tdiary.rb: fixed bug in Comment#shorten.
684
+
685
+ 2009-05-01 TADA Tadashi <t@tdtds.jp>
686
+ * plugin/05referer.rb: fixed Encoding::CompatibilityError in referer_load.
687
+ thanks valda.
688
+
689
+ 2009-04-28 TADA Tadashi <t@tdtds.jp>
690
+ * plugin/05referer.rb: opened reading mode of *.tdr file to 'rb'.
691
+
692
+ 2009-04-27 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
693
+ * tdiary/lang/ja.rb: added encoding flag from a regexp.
694
+ (revert r3424)
695
+
696
+ 2009-04-26 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
697
+ * tdiary/defaultio.rb: applied patch #112. thx kakutani.
698
+
699
+ 2009-04-26 TADA Tadashi <t@tdtds.jp>
700
+ * tdiary/lang/ja.rb: removed encoding flag from a regexp.
701
+ * skel/plugin_error.rhtml: added stack trace.
702
+ * plugin/05referer.rb: force encoded to ASCII-8BIT in load_referer.
703
+ * misc/lib/compatible.rb: added dummy String#encode on ruby 1.8.
704
+ * plugin/00default.rb: added layout support plugins : brr and brl.
705
+
706
+ 2009-04-10 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
707
+ * skel/update.rhtml: applied patch #78, thx kakutani.
708
+
709
+ 2009-03-30 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
710
+ * misc/migrate.rb: replace defout to stdout. defout is obsolete.
711
+
712
+ 2009-03-21 TADA Tadashi <t@tdtds.jp>
713
+ * plugin/ja/00default.rb: fixed typo.
714
+
715
+ 2009-03-10 TADA Tadashi <t@tdtds.jp>
716
+ * plugin/00default: moved mail encoding point after all text builded.
717
+ * skel/mail.rtxt.*: changed encoding to UTF-8.
718
+
719
+ 2009-02-28 TADA Tadashi <t@tdtds.jp>
720
+ * tdiary/defaultio.rb: sorted by date before saving.
721
+
722
+ 2009-02-26 TADA Tadashi <t@tdtds.jp>
723
+ * tdiary.rb, misc/lib/compatible.rb: fixed warning on ruby 1.9.1.
724
+
725
+ 2009-02-24 TADA Tadashi <t@tdtds.jp>
726
+ * enable migration on ruby 1.9.1.
727
+ * forced reloading after migration.
728
+
729
+ 2009-02-12 TADA Tadashi <t@tdtds.jp>
730
+ * tdiary.rb, compatible.rb: added suport code against $SAFE BUG of ruby 1.9.1. This is a temporally patch.
731
+
732
+ 2009-01-29 TADA Tadashi <t@tdtds.jp>
733
+ * tdiary.rb: enabled 'require' in plugins on ruby 1.9.1 but it dosen't works well yet.
734
+
735
+ 2009-01-20 TADA Tadashi <t@tdtds.jp>
736
+ * index.rb, update.rb: caught NameError on Encoding::default_external=.
737
+
738
+ 2009-01-18 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
739
+ * tdiary.conf.beginner: fix some plugin of header and footer.
740
+
741
+ 2009-01-15 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
742
+ * add "mixi-mobile-converter" to mobile user agent.
743
+
744
+ 2009-01-08 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
745
+ * deleted encoding parameter in File::open.
746
+
747
+ 2009-01-07 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
748
+ * plugin/00default.rb: added to_native for cookie name.
749
+
750
+ 2009-01-07 TADA Tadashi <t@tdtds.jp>
751
+ * tdiary.rb: supported secure mode in load_cgi_conf, but dose not works on secure mode...
752
+
753
+ 2009-01-04 TADA Tadashi <t@tdtds.jp>
754
+ * supported ruby 1.9.1 more, but it dose not work well.
755
+
756
+ 2008-12-16 TADA Tadashi <t@tdtds.jp>
757
+ * index.rb, update.rb: String#size -> String#bytesize.
758
+ * plugin/ja/05referer.rb: escaped backslash more.
759
+
760
+ 2008-12-07 TADA Tadashi <t@tdtds.jp>
761
+ * tdiary/filter/default.rb, tdiary/defaultio.rb, tdiary.rb,
762
+ plugin/00default.rb: added encoding to File::open's parameter. But it
763
+ dosen't work yet.
764
+
765
+ 2008-12-07 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
766
+ * misc/lib/compatible.rb: add compatible.rb
767
+
768
+ 2008-12-07 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
769
+ * **/*.rb: insert magic comment.
770
+
771
+ 2008-11-17 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
772
+ * index.rb, update.rb: replaced $defout to $stdout. ($defout is obsolete in ruby1.8)
773
+
774
+ 2008-10-31 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
775
+ * plugin/00default.rb: escaped comment_form_text. thx fudan.
776
+
777
+ 2008-10-26 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
778
+ * plugin/90migrate.rb: fixed error when a.dat is not exist.
779
+
780
+ 2008-10-25 TADA Tadashi <sho@spc.gr.jp>
781
+ * tdiary.conf.beginner: 'update.cgi' -> 'update.rb'
782
+
783
+ 2008-10-19 TADA Tadashi <sho@spc.gr.jp>
784
+ * release 2.3.1.
785
+
786
+ 2008-10-18 TADA Tadashi <sho@spc.gr.jp>
787
+ * plugin/90migrate.rb: supported a.dat (a.rb plugin's dictionary).
788
+
789
+ 2008-09-04 TADA Tadashi <sho@spc.gr.jp>
790
+ * tdiary.rb: fixed #119: Insecure error in CGI::https? when runnning on
791
+ secure mode.
792
+
793
+ 2008-08-18 TADA Tadashi <sho@spc.gr.jp>
794
+ * misc/lib/hikidoc.rb: replaced HikiDoc library by 0.0.2.
795
+
796
+ 2008-08-08 Kazuhiko <kazuhiko@fdiary.net>
797
+ * plugin/90migrate.rb: fix typos to convert category cache correctly.
798
+ set @conf.tdiary_version just after converting tdiary.conf to prevent
799
+ converting twice.
800
+
801
+ 2008-08-05 TADA Tadashi <sho@spc.gr.jp>
802
+ * defaultio.rb: detected error of no style file.
803
+ * plugin/00default.rb: fixed #104, error on no existent day.
804
+
805
+ 2008-08-01 TADA Tadashi <sho@spc.gr.jp>
806
+ * tdiary.rb, 00default.rb: set @date starting with plugin running.
807
+
808
+ 2008-07-18 TADA Tadashi <sho@spc.gr.jp>
809
+ * index.rb, tdiary.rb, skel/search.rhtml: added site search template.
810
+
811
+ 2008-07-14 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
812
+ * plugin/60sf.rb: fix #114. thx KAKUTANI Shintaro.
813
+
814
+ 2008-07-11 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
815
+ * plugin/50sp.rb: fix #113. thx KAKUTANI Shintaro.
816
+
817
+ 2008-07-10 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
818
+ * plugin/50sp.rb, 60sf.rb: fix #111. thx KAKUTANI Shintaro.
819
+
820
+ 2008-07-08 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
821
+ * tdiary.rb, plugin/00default.rb: use device-width accessed by iPhone/iPod touch.
822
+
823
+ 2008-07-05 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
824
+ * tdiary.rb, index.rb: raise 404 error when bot access to no existent diary.
825
+ * tdiary.rb, plugin/00default.rb: support iPhone/iPod touch.
826
+
827
+ 2008-07-05 KURODA Hiraku <hiraku at sapporo.email.ne.jp>
828
+ * fixed error when volatile.tdr is not exist.
829
+
830
+ 2008-07-02 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
831
+ * merge from Test_SelectFilter.
832
+
833
+ 2008-07-01 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
834
+ * misc/filter/plugin/antispamservice.rb: fix key verify condition.
835
+ * misc/filter/antispam.rb, misc/filter/plugin/antispam.rb,
836
+ misc/filter/plugin/*/antispam.rb: rename antispam to antispamservice.
837
+
838
+ 2008-06-25 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
839
+ * plugin/00default.rb: escape double quotation in title attribute of
840
+ subtitle anchor.
841
+
842
+ 2008-06-24 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
843
+ * plugin/00default.rb: added title attribute in subtitle anchor.
844
+
845
+ 2008-06-23 TADA Tadashi <sho@spc.gr.jp>
846
+ * skel/footer.rhtml: using rescue on display to RUBY_PATCHLEVEL.
847
+
848
+ 2008-06-23 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
849
+ * tdiary.rb: add 'Semulator', 'Vemulator', 'J-EMULATOR' and 'emobile' to
850
+ mobile user agent.
851
+ * skel/footer.rhtml: display RUBY_PATCHLEVEL in footer.
852
+
853
+ 2008-06-15 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
854
+ * misc/filter/antispam.rb, misc/filter/plugin/antispam.rb,
855
+ misc/filter/plugin/*/antispam.rb: delete antispam.enable option.
856
+
857
+ 2008-06-15 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
858
+ * plugin/10spamfilter.rb, plugin/*/10spamfilter.rb,
859
+ tdiary.rb: integrate logger and spamfilter debug log.
860
+
861
+ 2008-06-15 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
862
+ * tdiary.rb: changed logger path option.
863
+
864
+ 2008-06-09 TADA Tadashi <sho@spc.gr.jp>
865
+ * self converting to UTF-8. thanks kazuhiko.
866
+ * tdiary/lang/*.rb: added migrate_to_utf8 method.
867
+ * tdiary/defaultio.rb: added migration code to utf-8.
868
+ * skel/tdiary.rconf added tdiary_veersion.
869
+ * plugin/90migrate.rb: added.
870
+
871
+ 2008-06-02 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
872
+ * misc/migrate.rb: fix undefined class/module convert in PStore. thx KURODA Hiraku.
873
+
874
+ 2008-05-31 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
875
+ * tdiary.rb: added logger.
876
+
877
+ 2008-05-24 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
878
+ * plugin/60sf.rb: fix bug, plugin file unreadable error.
879
+
880
+ 2008-05-22 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
881
+ * tdiary.rb, plugin/60sf.rb, plugin/*/60sf.rb: applied patch #58.
882
+
883
+ 2008-05-08 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
884
+ * skel/diary.rhtml, skel/latest.rhtml, skel/month.rhtml: fixed #88.
885
+
886
+ 2008-05-08 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
887
+ * tdiary.conf.beginner, tdiary.conf.sample, skel/preview.rhtml,
888
+ skel/update.rhtml: fixed #81.
889
+
890
+ 2008-04-24 TADA Tadashi <sho@spc.gr.jp>
891
+ * plugin/10spamfilter.rb: fixed #84.
892
+
893
+ 2008-04-15 TADA Tadashi <sho@spc.gr.jp>
894
+ * tdiary_style.rb: deleted useless counter variable.
895
+
896
+ 2008-04-15 Yamaguchi <yamag@mbg.nifty.com>
897
+ * tdiary.rb: fixed #80.
898
+
899
+ 2008-03-31 TADA Tadashi <sho@spc.gr.jp>
900
+ * tdiary_style.rb: fixed #74.
901
+
902
+ 2008-03-22 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
903
+ * doc/*.html: fix document charset, change euc-jp to utf-8.
904
+
905
+ 2008-03-14 Kazuhiko <kazuhiko@fdiary.net>
906
+ * plugin/en/00default.rb, plugin/ja/00default.rb,
907
+ plugin/zh/00default.rb: fix invalid HTML.
908
+ * plugin/ja/00default.db: fix invalid HTML (reported by hb).
909
+
910
+ 2008-03-11 SHIBATA Hiroshi <h-sbt@nifty.com>
911
+ * dot.htaccess: add 'AddType application/xml'
912
+
913
+ 2008-03-02 TADA Tadashi <sho@spc.gr.jp>
914
+ * marged with Test_UTF8 branch, and started development of series 2.3.
915
+
916
+ 2008-02-29 TADA Tadashi <sho@spc.gr.jp>
917
+ * release 2.2.1.
918
+
919
+ 2008-02-29 YAA <yaa at mail.ne.jp>
920
+ * plugin/05referer.rb: fixed to display volatile referers in latest edit page.
921
+
922
+ 2008-02-27 TADA Tadashi <sho@spc.gr.jp>
923
+ * misc/style/etdiary: catch up current specification of the style.
924
+ * skel/preview.rhtml*: supported label element for hide diary checkbox.
925
+
926
+ 2008-02-24 TADA Tadashi <sho@spc.gr.jp>
927
+ * plugin/05referer.rb: fixed no saving referer on day mode.
928
+
929
+ 2008-02-23 TADA Tadashi <sho@spc.gr.jp>
930
+ * plugin/05referer.rb: fixed #49.
931
+
932
+ 2008-02-14 ds14050 <ds14050 at vvvvvv.sakura.ne.jp>
933
+ * tdiary/wiki_style.rb: fixed eval error in valid_plugin_syntax?.
934
+
935
+ 2008-02-13 TADA Tadashi <sho@spc.gr.jp>
936
+ * misc/lib/hikidoc.rb: updated to trunk and fix about InterWikiName.
937
+
938
+ 2008-02-10 TADA Tadashi <sho@spc.gr.jp>
939
+ * tdiary/wiki_style.rb: removed warning by HikiDoc#to_html.
940
+
941
+ 2008-02-08 TADA Tadashi <sho@spc.gr.jp>
942
+ * skel/diary.rhtml: hide div#comment-form-section without day mode.
943
+
944
+ 2008-02-04 SHIBATA Hiroshi <h-sbt@nifty.com>
945
+ * tdiary.rb,plugin/00default.rb,plugin/10spamfilter.rb,
946
+ plugin/en/10spamfilter.rb,plugin/ja/10spamfilter.rb,
947
+ plugin/zh/10spamfilter.rb,tdiary/filter/spam.rb:
948
+ [EXPERIMENTAL] remove option for spamfilter.hide_comment.
949
+ Javascript is used to display all TSUKKOMI from into setting days before.
950
+
951
+ 2008-02-03 TADA Tadashi <sho@spc.gr.jp>
952
+ * skel/diary.rhtml, plugin/00default.rb: [EXPERIMENTAL] add TSUKKOMI form
953
+ by Javascript in the hidden comment form condition.
954
+
955
+ 2008-01-19 TADA Tadashi <sho@spc.gr.jp>
956
+ * misc/lib/hikidoc.rb: updated to 0.0.2.
957
+ * tdiary/wiki_style.rb: added :use_wiki_name and
958
+ :allow_bracket_inline_image option to false to HikiDoc. thanks to ds14050.
959
+
960
+ 2008-01-15 TADA Tadashi <sho@spc.gr.jp>
961
+ * plugin/05referer.rb: fixed #11: error on update with no referer.
962
+
963
+ 2008-01-11 SHIBATA Hiroshi <h-sbt@nifty.com>
964
+ * plugin/00default.rb, plugin/10spamfilter.rb,
965
+ plugin/*/10spamfilter.rb: add option for hide comment-form before
966
+ days considered to be spam.
967
+
968
+ 2008-01-11 TADA Tadashi <sho@spc.gr.jp>
969
+ * plugin/00default.rb: hide comment form when accessed by bot.
970
+
971
+ 2008-01-08 TADA Tadashi <sho@spc.gr.jp>
972
+ * plugin/05referer.rb: saving recent a few days into volatile.
973
+
974
+ 2008-01-05 TADA Tadashi <sho@spc.gr.jp>
975
+ * plugin/00default.rb: hide comment form when over comments per day on mobile mode.
976
+
977
+ 2008-01-03 TADA Tadashi <sho@spc.gr.jp>
978
+ * plugin/00default.rb: unescaped category name because over escape on Wiki
979
+ style.
980
+
981
+ 2007-12-16 TADA Tadashi <sho@spc.gr.jp>
982
+ * release 2.2.0.
983
+
984
+ 2007-10-31 TADA Tadashi <sho@spc.gr.jp>
985
+ * skel/conf.rhtml: inserted submit button to page top.
986
+
987
+ 2007-10-07 TADA Tadashi <sho@spc.gr.jp>
988
+ * plugin/00default.rb: ACCESSKEY changed in mobile mode.
989
+ * plugin/00default.rb: replaced Update link to Edit in mobile navi menu.
990
+
991
+ 2007-08-12 TADA Tadashi <sho@spc.gr.jp>
992
+ * plugin/00default.rb, plugin/10spamfilter.rb: support change comment
993
+ description in preference page of spam filter. thanks for hsbt.
994
+
995
+ 2007-08-04 TADA Tadashi <sho@spc.gr.jp>
996
+ * tdiary.rb, plugin/00default.rb: specify base_url in preference page.
997
+
998
+ 2007-07-17 TADA Tadashi <sho@spc.gr.jp>
999
+ * 00default.rb: add 'rel="nofollow"' attribute to add/edit navigation.
1000
+
1001
+ 2007-07-14 Kazuhiko <kazuhiko@fdiary.net>
1002
+ * tdiary/filter/spam.rb: ignore invalid regular expressions.
1003
+
1004
+ 2007-06-30 TADA Tadashi <sho@spc.gr.jp>
1005
+ * tdiary.rb: set @date to newest visible date in latest mode.
1006
+ * 00default.rb: skip hidden diary for mobile navigation in latest mode.
1007
+
1008
+ 2007-06-05 TADA Tadashi <sho@spc.gr.jp>
1009
+ * tdiary.conf.beginner: add spam filter conditions.
1010
+
1011
+ 2007-05-10 TADA Tadashi <sho@spc.gr.jp>
1012
+ * tdiary.rb, tdiary.conf.*: add/delete some bots.
1013
+
1014
+ 2007-05-05 TADA Tadashi <sho@spc.gr.jp>
1015
+ * tdiary.rb: TrackBacks save the date of received to spam log.
1016
+ * theme/base.css: add 'span.message'.
1017
+
1018
+ 2007-05-03 TADA Tadashi <sho@spc.gr.jp>
1019
+ * tdiary.conf.beginner: update spam filter conditions.
1020
+ * doc/INSTALL.html: add about tdiary.conf.beginner.
1021
+ * theme/base.css: add style for footnote.rb, my-sequel.rb and
1022
+ category_to_tag.rb plugins.
1023
+
1024
+ 2007-04-30 TADA Tadashi <sho@spc.gr.jp>
1025
+ * skel/update.rhtml*, plugin/*/00default.rb; add label elements in update
1026
+ and preferences form.
1027
+
1028
+ 2007-04-29 TADA Tadashi <sho@spc.gr.jp>
1029
+ * skel/i.category.rb, plugin/00default.rb: category support mobile mode
1030
+ more.
1031
+ * plugin/05referer.rb: add rel="nofollow" into anchors.
1032
+
1033
+ 2007-04-22 TADA Tadashi <sho@spc.gr.jp>
1034
+ * add skel/i.category.rb for category page on mobile mode.
1035
+
1036
+ 2007-04-10 TADA Tadashi <sho@spc.gr.jp>
1037
+ * tdiary/wiki_style.rb: marge new text without subtitle into previous
1038
+ section.
1039
+
1040
+ 2007-03-28 hajime miyauchi <hajime.miyauchi at gmail.com>
1041
+ * style/rd/rd_style.rb: section_enter/leave_proc into mobile mode.
1042
+
1043
+ 2007-03-28 MIYASAKA Masaru <alkaid at coral.ocn.ne.jp>
1044
+ * 00default.rb: fix counting @prev_day and @next_day error in calc_links.
1045
+
1046
+ 2007-03-11 TADA Tadashi <sho@spc.gr.jp>
1047
+ * tdiary.rb: 'h' replace to 'CGI::escapeHTML' in TDiaryTrackBackError.
1048
+ thanks to MIYASAKA Masaru.
1049
+
1050
+ 2007-03-11 MIYASAKA Masaru <alkaid at coral.ocn.ne.jp>
1051
+ * tdiary.rb: CGI::request_uri support IIS and some other httpds.
1052
+
1053
+ 2007-03-06 TADA Tadashi <sho@spc.gr.jp>
1054
+ * hikidoc.rb was moved from 'tdiary' to 'misc/lib'.
1055
+
1056
+ 2007-02-27 TADA Tadashi <sho@spc.gr.jp>
1057
+ * theme/base.css: add more detail styles for amazon plugin.
1058
+
1059
+ 2007-02-24 SHIBATA Hiroshi <h-sbt@nifty.com>
1060
+ * plugin/{ja,en,zh}/10spamfilter.rb: fix bug resolv_check_mode setting.
1061
+
1062
+ 2007-02-22 TADA Tadashi <sho@spc.gr.jp>
1063
+ * tdiary.conf.beginner: add some spam and referer data.
1064
+ * filter/spam.rb: spam when referer has a fragment.
1065
+ * rename linkcheck.rb to spamlinkcheck.rb in filter.
1066
+ * plugin/10spamfilter.rb, filter/spamlinkcheck.rb: add options of
1067
+ TrackBack linkcheck.
1068
+ * plugin/00default.rb: add comment_form_mobile_mail_field method.
1069
+
1070
+ 2007-02-20 TADA Tadashi <sho@spc.gr.jp>
1071
+ * tdiary.rb: raise error when TrackBack has been filtered.
1072
+ * add new filter linkcheck.rb.
1073
+
1074
+ 2007-02-19 TADA Tadashi <sho@spc.gr.jp>
1075
+ * theme/base.css: add about edit-today plugin.
1076
+
1077
+ 2007-02-18 TADA Tadashi <sho@spc.gr.jp>
1078
+ * plugin/05referer.rb: move code of checking DefaultIO.
1079
+
1080
+ 2007-02-10 TADA Tadashi <sho@spc.gr.jp>
1081
+ * tdiary.rb: add remove_tag method into Plugin.
1082
+
1083
+ 2007-02-07 TADA Tadashi <sho@spc.gr.jp>
1084
+ * tdiary.rb: rewind about proxy.
1085
+ * tdiary.conf.*: add about @options['proxy'].
1086
+ * doc/HOWTO-use-plugin.html: add about @options['proxy']
1087
+ * tdiary/wiki_style.rb: escape single quote in expand parameters of plugins.
1088
+
1089
+ 2007-02-06 TADA Tadashi <sho@spc.gr.jp>
1090
+ * tdiary.rb: @options['proxy'] set to ENV['HTTP_PROXY'] in Plugin.
1091
+ * plugin/05referer.rb: DefaultIO detective code change 'class' to 'String'.
1092
+
1093
+ 2007-02-06 zunda <zunda at freeshell.org>
1094
+ * tdiary.rb: reverting the local change. Sorry.
1095
+
1096
+ 2007-02-06 zunda <zunda at freeshell.org>
1097
+ * tdiary.rb: stop checking tsukkomi once it has been made
1098
+ invisible by a filter
1099
+
1100
+ 2007-01-31 TADA Tadashi <sho@spc.gr.jp>
1101
+ * skel/mail.rtxt*: add TSUKKOMI display status, 'shown' or 'hidden'.
1102
+
1103
+ 2007-01-30 TADA Tadashi <sho@spc.gr.jp>
1104
+ * filter/spamakismet.rb: force hide TSUKKOMIs. Because Akismet judge
1105
+ Japanese TSUKKOMI to spam sometime.
1106
+
1107
+ 2007-01-29 TADA Tadashi <sho@spc.gr.jp>
1108
+ * filter/spamakismet.rb: add spam filter using Akismet <http://akismet.com/>.
1109
+
1110
+ 2007-01-26 TADA Tadashi <sho@spc.gr.jp>
1111
+ * filter/spam.rb: split RBL list by '\n' -> '[\r\n]+'.
1112
+
1113
+ 2007-01-26 SHIBATA Hiroshi <h-sbt@nifty.com>
1114
+ * filer/spam.rb,plugin/10spamfilter.rb: fix spamfilter.max_rate float to interger.
1115
+
1116
+ 2007-01-25 zunda <zunda at freeshell.org>
1117
+ * skel/preview.html*: removed gsub(/ /, '&nbsp;') from the view
1118
+ of plugin error, as the string is espaced more completly with h()
1119
+
1120
+ 2007-01-26 TADA Tadashi <sho@spc.gr.jp>
1121
+ * tdiary.rb, filter/spam.rb, plugin/spamfilter.rb: move debug method into
1122
+ Filter class. And rename options 'spamfilter.debug_*' to 'filter.debug_*'.
1123
+ And split debug mode to 3 state: DEBUG_NONE, DEBUG_SPAM and DEBUG_FULL.
1124
+ * skel/i.update.rhtml*, plugin/00default.rb: enlarge TEXTAREA size.
1125
+
1126
+ 2007-01-22 TADA Tadashi <sho@spc.gr.jp>
1127
+ * tdiary.rb: add misc/lib into default search path of ruby library.
1128
+
1129
+ 2007-01-18 TADA Tadashi <sho@spc.gr.jp>
1130
+ * plugin/{ja,en,zh}/00default.rb: add to_utf8 method.
1131
+
1132
+ 2007-01-17 SHIBATA Hiroshi <h-sbt@nifty.com>
1133
+ * plugin/00default.rb: add name attribute for comment-form.
1134
+
1135
+ 2007-01-17 TADA Tadashi <sho@spc.gr.jp>
1136
+ * tdiary.rb: support TrackBack spec 1.2.
1137
+ * tdiary/lang/*.rb: to_native optional support source charset.
1138
+
1139
+ 2007-01-09 zunda <zunda at freeshell.org>
1140
+ * plugin/00default.rb: escaped theme_url, nyear_diary_title,
1141
+ and comment_submit_label
1142
+
1143
+ 2007-01-10 Kazuhiko <kazuhiko@fdiary.net>
1144
+ * plugin/zh/00default.rb: remove parentheses warnings.
1145
+
1146
+ 2007-01-09 zunda <zunda at freeshell.org>
1147
+ * tdiary.rb: modified TDiaryForm so that, when appending a diary,
1148
+ default title is set if there is already a diary for the same date.
1149
+
1150
+ 2007-01-09 Kazuhiko <kazuhiko@fdiary.net>
1151
+ * plugin/00default.rb: remove parentheses warnings.
1152
+
1153
+ 2007-01-07 zunda <zunda at freeshell.org>
1154
+ * plugin/00default.rb: escaped arguments to navi_item
1155
+
1156
+ 2007-01-07 zunda <zunda at freeshell.org>
1157
+ * plugin/en/00default.rb: fixed typo: s/@.update/@update/
1158
+
1159
+ 2007-01-08 TADA Tadashi <sho@spc.gr.jp>
1160
+ * index.rb: support ETag and If-None-Match header, and delete cache control
1161
+ from GET response.
1162
+
1163
+ 2007-01-07 zunda <zunda at freeshell.org>
1164
+ * skel/plugin_error.rb: modified to show error message in <pre>
1165
+
1166
+ 2007-01-06 TADA Tadashi <sho@spc.gr.jp>
1167
+ * apply HTML escape when generate HTML in skeltons or plugins.
1168
+
1169
+ 2006-12-28 TADA Tadashi <sho@spc.gr.jp>
1170
+ * tdiary/filter/spam.rb: fix error on logging when no 'date' parameter (again).
1171
+
1172
+ 2006-12-27 TADA Tadashi <sho@spc.gr.jp>
1173
+ * tdiary/filter/spam.rb: fix error on logging when no 'date' parameter.
1174
+
1175
+ 2006-12-20 zunda <zunda at freeshell.org>
1176
+ * tdiary/filter/spam.rb: add date of rejected tsukkomi to debug log
1177
+
1178
+ 2006-12-10 TADA Tadashi <sho@spc.gr.jp>
1179
+ * skel/conf.rhtml, skel/i.conf.rhtml: security fix: escape @key value.
1180
+
1181
+ 2006-12-05 zunda <zunda at freeshell.org>
1182
+ * index.rb, update.rb: escape HTML for error page.
1183
+
1184
+ 2006-12-04 HASHIMOTO Keisuke <ksk at be.to>
1185
+ * plugin/00default.rb: change 'theme' to '#{theme}': position of help icon.
1186
+
1187
+ 2006-11-28 TADA Tadashi <sho@spc.gr.jp>
1188
+ * tdiary.rb: fix error when no 'conf' parameter in preferences page.
1189
+
1190
+ 2006-11-26 TADA Tadashi <sho@spc.gr.jp>
1191
+ * tdiary.rb, skel/conf.rhtml: security fix: escape HTML for conf parameter
1192
+ in update.rb.
1193
+
1194
+ 2006-11-15 Tanaka Akira <akr at fsij.org>
1195
+ * tdiary/wiki_style.rb: check plugin syntax in $SAFE=4.
1196
+
1197
+ 2006-11-13 Kazuhiko <kazuhiko@fdiary.net>
1198
+ * tdiary/wiki_style.rb: rescue SecurityError.
1199
+ * tdiary/hikidoc.rb: sync with hikidoc rev.43.
1200
+ use Syntax library in multi-pre if possible
1201
+
1202
+ 2006-11-11 Tanaka Akira <akr at fsij.org>
1203
+ * tdiary/wiki_style.rb: support here document ends without CR/LF in plugin.
1204
+
1205
+ 2006-11-10 TADA Tadashi <sho@spc.gr.jp>
1206
+ * style/wiki_style.rb: fix bug when plugin specified in subtitle.
1207
+
1208
+ 2006-11-09 TADA Tadashi <sho@spc.gr.jp>
1209
+ * tdiary.rb: add 'SoftBank' to mobile user agent.
1210
+
1211
+ 2006-11-06 Tanaka Akira <akr at fsij.org>
1212
+ * tdiary/hikidoc.rb, tdiary/wiki_style.rb: support here document in wiki
1213
+ style plugin syntax.
1214
+
1215
+ 2006-09-13 Shun-ichi TAHARA <jado at flowernet.gr.jp>
1216
+ * style/etdiary/etdiary_style.rb: fix bug for mobile mode.
1217
+
1218
+ 2006-09-13 Masahiro Sakai <sakai at tom.sfc.keio.ac.jp>
1219
+ * style/rd/rd_style.rb: unescapeHTML for parameters of plugins.
1220
+
1221
+ 2006-09-05 TADA Tadashi <sho@spc.gr.jp>
1222
+ * skel/i.*.rhtml: add navigation link to bottom of pages.
1223
+
1224
+ 2006-08-16 Kazuhiko <kazuhiko@fdiary.net>
1225
+ * tdiary/wiki_style.rb (append): revise detection of sections.
1226
+
1227
+ 2006-08-09 Kazuhiko <kazuhiko@fdiary.net>
1228
+ * tdiary/wiki_style.rb: revise to output correct HTML with the
1229
+ makerss.rb plugin.
1230
+
1231
+ 2006-08-05 Kazuhiko <kazuhiko@fdiary.net>
1232
+ * tdiary/hikidoc.rb: sync with hikidoc rev.38.
1233
+ support nested modifier (reported by MoonWolf)
1234
+ support relative inline URL and fix parse_table
1235
+
1236
+ 2006-07-23 TADA Tadashi <sho@spc.gr.jp>
1237
+ * skel/mail.rtxt: ENV['REMOTE_ADDR'] -> @cgi.remote_addr, and move it to
1238
+ bottom of the mail body.
1239
+
1240
+ 2006-07-21 SHIBATA Hiroshi <h-sbt@nifty.com>
1241
+ * tdiary/filter/spam.rb: fix namespace ResolvError.
1242
+
1243
+ 2006-07-21 Kazuhiko <kazuhiko@fdiary.net>
1244
+ * skel/mail.rtxt: output ENV['REMOTE_ADDR'].
1245
+ * tdiary/filter/default.rb: untaint referer file names for mod_ruby.
1246
+
1247
+ 2006-07-19 SHIBATA Hiroshi <h-sbt@nifty.com>
1248
+ * tdiary/filter/spam.rb: add timeout to black_domain.
1249
+
1250
+ 2006-07-19 TADA Tadashi <sho@spc.gr.jp>
1251
+ * tdiary/filter/spam.rb: recognize URI only http, https, ftp and mailto.
1252
+ * tdiary/filter/spam.rb: max_rate means percentage.
1253
+
1254
+ 2006-07-10 TADA Tadashi <sho@spc.gr.jp>
1255
+ * plugin/ja/10spamfilter.rb: modify messages of preference page more.
1256
+ * theme/conf.css: hide div.footer, and enlarge submit button.
1257
+ * skel/conf.rhtml: add some classes.
1258
+
1259
+ 2006-07-08 TADA Tadashi <sho@spc.gr.jp>
1260
+ * tdiary/filter/default.rb: TSUKKOMI filtered by 'POST' command exactly.
1261
+
1262
+ 2006-07-05 TADA Tadashi <sho@spc.gr.jp>
1263
+ * misc/style/wiki: fix bug and add notice about obsolete to README.
1264
+ thanks Norihiro Hattori <norihiro.hattori at gmail.com>.
1265
+ * tdiary/defaultio.rb: fix Errno::EACCES error when convert referer to new
1266
+ formats on Windows.
1267
+ * tdiary/filter/default.rb: check POST method correctly.
1268
+
1269
+ 2006-07-05 TADA Tadashi <sho@spc.gr.jp>
1270
+ * tdiary/defaultio.rb: close file before delete empty diary file.
1271
+
1272
+ 2006-07-04 TADA Tadashi <sho@spc.gr.jp>
1273
+ * add 'tdiary.conf.beginner' for configuration file for beginner.
1274
+ * theme/default: move sidebar to rightside, and support beginner conf.
1275
+
1276
+ 2006-06-26 TADA Tadashi <sho@spc.gr.jp>
1277
+ * add help button to each preferences.
1278
+ * plugin/ja/10spamfilter.rb: change some words.
1279
+
1280
+ 2006-06-26 SHIBATA Hiroshi <h-sbt@nifty.com>
1281
+ * plugin/10spamfilter.rb: fix bug about spamfilter.date_limit. thanks OGAWA KenIchi.
1282
+
1283
+ 2006-05-28 TADA Tadashi <sho@spc.gr.jp>
1284
+ * index.rb, update.rb: return status 500 on error when "MSIE" also.
1285
+
1286
+ 2006-05-26 TADA Tadashi <sho@spc.gr.jp>
1287
+ * index.rb, update.rb: return status 500 on error. thanks Masahiro Sakai.
1288
+
1289
+ 2006-05-24 Kazuhiko <kazuhiko@fdiary.net>
1290
+ * misc/style/etdiary/etdiary_style.rb: remove debug code.
1291
+
1292
+ 2006-05-13 TADA Tadashi <sho@spc.gr.jp>
1293
+ * plugin/50sp.rb: add tDiary path before 'misc/plugin' in sp.path. thanks
1294
+ KURODA Hiraku.
1295
+ * tdiary.rb: fix bug about counting TrackBack. thanks Masahiro YOSHIZAWA.
1296
+
1297
+ 2006-04-15 TADA Tadashi <sho@spc.gr.jp>
1298
+ * release 2.1.4 at dotBAR.
1299
+
1300
+ 2006-03-23 TADA Tadashi <sho@spc.gr.jp>
1301
+ * plugin/00default.rb: delete white spaces in anchor of date.
1302
+ thanks cherry.usacho.jp.
1303
+
1304
+ 2006-03-21 FUDAN <joker at comel.or.jp>
1305
+ * tdiary.conf: add "WILLCOM" to mobile agent.
1306
+
1307
+ 2006-03-19 TADA Tadashi <sho@spc.gr.jp>
1308
+ * skel/show.rhtml, skel/i.show.rhtml: delete contents because these are
1309
+ dummy. thanks ZnZ.
1310
+
1311
+ 2006-03-18 TADA Tadashi <sho@spc.gr.jp>
1312
+ * remove a limit of TSUKKOMI max (more).
1313
+ * plugin/00default.rb: add Mobile Link Discovery to HTML header.
1314
+
1315
+ 2006-03-17 TADA Tadashi <sho@spc.gr.jp>
1316
+ * remove a limit of TSUKKOMI max.
1317
+ * move TSUKKOMI form from skel to plugin.
1318
+
1319
+ 2006-02-10 TADA Tadashi <sho@spc.gr.jp>
1320
+ * tdiary/default_io.rb: revive safety global lock.
1321
+ * plugin/05referer.rb: change labels.
1322
+
1323
+ 2006-02-06 TADA Tadashi <sho@spc.gr.jp>
1324
+ * revive @referer_day_only option but reverse default value.
1325
+
1326
+ 2006-02-04 TADA Tadashi <sho@spc.gr.jp>
1327
+ * 01referer.rb: check existence of @referer_volatile in
1328
+ referer_of_today_long.
1329
+ * 01referer.rb: delete implement of referer_of_today_short.
1330
+ * theme/base.css: add p.message.
1331
+
1332
+ 2006-02-03 TADA Tadashi <sho@spc.gr.jp>
1333
+ * large change about referer: daily management, volatile link, etc.
1334
+ * default_io.rb: ignore error when *.tdc was empty.
1335
+
1336
+ 2006-01-02 TADA Tadashi <sho@spc.gr.jp>
1337
+ * tdiary/defaultio.rb: ignore Errno::NOENT when delete empty file.
1338
+
1339
+ 2005-12-09 Kazuhiko <kazuhiko@fdiary.net>
1340
+ * misc/convert2.rb: revise for current tdiary.rb.
1341
+
1342
+ 2005-10-23 SHIBATA Hiroshi <h-sbt@nifty.com>
1343
+ * tdiary/filter/spam.rb, plugin/10spamfilter.rb, plugin/*/10spamfilter.rb:
1344
+ add safe domain list at referer check.
1345
+
1346
+ 2005-10-22 SHIBATA Hiroshi <h-sbt@nifty.com>
1347
+ * tdiary/filter/spam.rb: change uri regexp pattern in DNSBL filter.
1348
+
1349
+ 2005-10-22 SHIBATA Hiroshi <h-sbt@nifty.com>
1350
+ * tdiary/filter/spam.rb: add debug message and retry process in DNSBL filter.
1351
+
1352
+ 2005-10-21 TADA Tadashi <sho@spc.gr.jp>
1353
+ * tdiary/wiki_style.rb: fix enbugged on 2.1.3.20051020.
1354
+
1355
+ 2005-10-21 SHIBATA Hiroshi <h-sbt@nifty.com>
1356
+ * tdiary/filter/spam.rb, plugin/10spamfilter.rb, plugin/*/10spamfilter.rb:
1357
+ remove IP Blacklist filter. add two services to Domain Blacklist initialization.
1358
+
1359
+ 2005-10-20 SHIBATA Hiroshi <h-sbt@nifty.com>
1360
+ * tdiary/filter/spam.rb, plugin/10spamfilter.rb, plugin/*/10spamfilter.rb: add DNSBL filter.
1361
+
1362
+ 2005-10-20 TADA Tadashi <sho@spc.gr.jp>
1363
+ * tdiary/wiki_style.rb: enable specify "{{'</p>'}}" into text.
1364
+
1365
+ 2005-10-16 TADA Tadashi <sho@spc.gr.jp>
1366
+ * doc/HOWTO-make-plugin.html: add about section_enter/leave_proc.
1367
+
1368
+ 2005-10-15 Kazuhiko <kazuhiko@fdiary.net>
1369
+ * tdiary/wiki_style.rb (to_html): support multi-line plugins.
1370
+
1371
+ 2005-10-12 TADA Tadashi <sho@spc.gr.jp>
1372
+ * tdiary.rb, *_style.rb, theme/base.css: add section_enter/leave_proc.
1373
+
1374
+ 2005-10-10 TADA Tadashi <sho@spc.gr.jp>
1375
+ * plugin/00default.rb: my plugin: fix bug when @index was full path.
1376
+
1377
+ 2005-10-06 TADA Tadashi <sho@spc.gr.jp>
1378
+ * tdiary/hikidoc.rb, tdiary/wiki_style.rb: support relative inline URL.
1379
+ This is a temporally fix.
1380
+
1381
+ 2005-10-02 Kazuhiko <kazuhiko@fdiary.net>
1382
+ * tdiary/hikidoc.rb: sync with hikidoc rev.33.
1383
+ revise escapes in parse_link
1384
+ allow empty descriptions in definition lists
1385
+ * tdiary/wiki_style.rb (to_html): replace links to my/kw plugins.
1386
+
1387
+ 2005-09-29 TADA Tadashi <sho@spc.gr.jp>
1388
+ * release 2.1.3.
1389
+
1390
+ 2005-09-27 Kazuhiko <kazuhiko@fdiary.net>
1391
+ * tdiary/hikidoc.rb: sync with hikidoc rev.29.
1392
+ bugfix in parse_plugin.
1393
+ revise URI_RE.
1394
+
1395
+ 2005-09-26 TADA Tadashi <sho@spc.gr.jp>
1396
+ * tdiary.rb: remove index parameter from Plugin#subtitle_proc.
1397
+ * style/*_style.rb: revise subtitle_proc.
1398
+
1399
+ 2005-09-26 Kazuhiko <kazuhiko@fdiary.net>
1400
+ * tdiary/hikidoc.rb: sync with hikidoc rev.27.
1401
+ revise parse_plugin.
1402
+
1403
+ 2005-09-25 ds14050 at vvvvvv.sakura.ne.jp
1404
+ * tdiary/wiki_style.rb: enable @options['kw.show_inter'].
1405
+
1406
+ 2005-09-22 Kazuhiko <kazuhiko@fdiary.net>
1407
+ * tdiary/wiki_style.rb (do_html4): support diaries without
1408
+ subtitles.
1409
+
1410
+ 2005-09-18 zunda <zunda at freeshell.org>
1411
+ * plugin/*/10spamfilter.rb: fixed the form always showing comments will be discarded
1412
+
1413
+ 2005-09-17 Kazuhiko <kazuhiko@fdiary.net>
1414
+ * tdiary/hikidoc.rb: sync with hikidoc rev.25.
1415
+ minimum match in parse_modifier.
1416
+ revise parse_list.
1417
+ move parse_comment next to parse_pre.
1418
+
1419
+ 2005-09-17 TADA Tadashi <sho@spc.gr.jp>
1420
+ * tdiary/wiki_style.rb: unescape target URI in link format.
1421
+
1422
+ 2005-09-16 TADA Tadashi <sho@spc.gr.jp>
1423
+ * plugin/00default.rb: prev/next navigation on edit mode.
1424
+ * tdiary/wiki_style.rb: unescape target URI to own diary.
1425
+ * tdiary.rb, skel/conf.rhtml, theme/conf.css: set inversion color to
1426
+ current preference item in sidebar.
1427
+
1428
+ 2005-09-12 TADA Tadashi <sho@spc.gr.jp>
1429
+ * tdiary/filter/spam.rb: fix debug message in referer_filter.
1430
+
1431
+ 2005-09-09 TADA Tadashi <sho@spc.gr.jp>
1432
+ * plugin/00default.rb: insert thumbnail of selected theme.
1433
+
1434
+ 2005-09-08 TADA Tadashi <sho@spc.gr.jp>
1435
+ * theme/conf.css: a little change about design of list.
1436
+ * tdiary.conf, plugin/00default.rb, skel/tdiary.rconf: add @conf.banner
1437
+ and update genre.
1438
+
1439
+ 2005-09-07 TADA Tadashi <sho@spc.gr.jp>
1440
+ * plugin/*.rb: a little adjustment design in English.
1441
+ * plugin/00default.rb: not generate link for absent month.
1442
+
1443
+ 2005-09-06 YAMAGUCHI Seiji <valda at suicidalmachineers.com>
1444
+ * tdiary/default.rb: safety lock for storing comments and referers.
1445
+
1446
+ 2005-09-05 Kazuhiko <kazuhiko@fdiary.net>
1447
+ * tdiary/wiki_style.rb: add a new wiki style using HikiDoc.
1448
+ * misc/style/wiki/wiki_parser.rb: remove.
1449
+ * misc/style/wiki/wiki_style.rb: remove.
1450
+
1451
+ 2005-08-30 TADA Tadashi <sho@spc.gr.jp>
1452
+ * wiki_style.rb: fix: duplicated anchor in mobile mode.
1453
+
1454
+ 2005-08-29 TADA Tadashi <sho@spc.gr.jp>
1455
+ * rd_style.rb, etdiary_style_rb, emptdiary_style.rb: support subtitle_proc.
1456
+
1457
+ 2005-08-28 TADA Tadashi <sho@spc.gr.jp>
1458
+ * tdiary/tdiary_style.rb: fix bug: error when specify plugin in subtitle.
1459
+ * wiki_style.rb: fix bug: subtitle_proc failed when some inline elements in
1460
+ subtitle.
1461
+ * plugin/00default.rb: disable nyear link when mobile mode.
1462
+
1463
+ 2005-08-26 TADA Tadashi <sho@spc.gr.jp>
1464
+ * tdiary.rb: add title_proc and subtitle_proc to Plugin.
1465
+ * plugin/00default.rb: add title_of_today and nyear_link.
1466
+ * tdiary_style.rb, wiki_style.rb: support subtitle_proc.
1467
+
1468
+ 2005-08-25 TADA Tadashi <sho@spc.gr.jp>
1469
+ * tdiary.rb and etc: add genre parameter to Plugin#add_conf_proc.
1470
+
1471
+ 2005-08-24 TADA Tadashi <sho@spc.gr.jp>
1472
+ * (testing) change preferences page design.
1473
+
1474
+ 2005-08-15 TADA Tadashi <sho@spc.gr.jp>
1475
+ * theme/base.css: add calendar2.rb plugin's default image settings.
1476
+
1477
+ 2005-08-15 akira yamada <akira at arika.org>
1478
+ * filter/spam.rb, plugin/10spamfilter.rb: add dispose mode, more check mail
1479
+ address and date limitation.
1480
+
1481
+ 2005-08-10 Kazuhiko <kazuhiko@fdiary.net>
1482
+ * plugin/00default.rb (my): use absolute URLs.
1483
+
1484
+ 2005-08-10 zunda <zunda at freeshell.org>
1485
+ * tdiary/lang/ja.rb: use NKF to convert to charset when NKF::UTF8 defined.
1486
+
1487
+ 2005-08-08 TADA Tadashi <sho@spc.gr.jp>
1488
+ * plugin/00default.rb: TSUKKOMI mail plugin: add new option send mail when filter hide TSUKKOMI.
1489
+
1490
+ 2005-08-07 akira yamada <akira at arika.org>
1491
+ * filter/spam.rb: fix bug abut @max_uris checking.
1492
+ * filter/spam.rb: add checking TLD.
1493
+
1494
+ 2005-07-27 TADA Tadashi <sho@spc.gr.jp>
1495
+ * plugin/00default.rb, tdiary/defaultio.rb, tdiary/pstoreio.rb,
1496
+ tdiary/tdiary_style.rb, tdiary/filter/default.rb, tdiary/lang/en.rb,
1497
+ tdiary/lang/ja.rb, tdiary/lang/zh.rb, theme/base.css: add license.
1498
+ * add plugin/10spamfilter.rb and rename 01sp.rb to 50sp.rb.
1499
+
1500
+ 2005-07-21 zunda <zunda at freeshell.org>
1501
+ * tdiary/defaultio.rb DefaultIO#restore(): move rescue clause later:
1502
+ IO#read in ruby-1.8.0 returns not "" but nil when reading over EOF
1503
+
1504
+ 2005-07-21 TADA Tadashi <sho@spc.gr.jp>
1505
+ * doc/HOWTO-make-plugin.html: correct charset ISO-2022-JP to EUC-JP.
1506
+
1507
+ 2005-07-20 TADA Tadashi <sho@spc.gr.jp>
1508
+ * release 2.1.2.
1509
+
1510
+ 2005-07-19 Yutaka OIWA <y.oiwa at aist.go.jp>
1511
+ * doc/HOWTO-make-plugin.html: add about against CSRF attack.
1512
+
1513
+ 2005-07-07 Yutaka OIWA <y.oiwa at aist.go.jp>
1514
+ * tdiary.rb, 00default.rb, skel/*.rhtml, tdiary.conf.sample: against
1515
+ CSRF attack.
1516
+
1517
+ 2005-06-22 Kazuhiko <kazuhiko@fdiary.net>
1518
+ * tdiary.rb (apply_plugin): ignore exceptions.
1519
+
1520
+ 2005-06-19 TADA Tadashi <sho@spc.gr.jp>
1521
+ * tdiary.rb: fix wrong version number.
1522
+
1523
+ 2005-06-13 TADA Tadashi <sho@spc.gr.jp>
1524
+ * skel/diary.rhtml: TSUKKOMI 'Before...' links to '#c00'. thanks Kazuhiro
1525
+ NISHIYAMA <zn at mbf.nifty.com>
1526
+ * README.html: s/GPL/GPL2/g
1527
+ * theme/base.css: add some sidebar items.
1528
+
1529
+ 2005-06-13 hahahaha <rin_ne at big.or.jp>
1530
+ * index.rb: support 'n days before/after' mode when using
1531
+ ErrorDocument/Action.
1532
+
1533
+ 2005-06-09 TADA Tadashi <sho@spc.gr.jp>
1534
+ * release 2.1.1.
1535
+
1536
+ 2005-06-07 TADA Tadashi <sho@spc.gr.jp>
1537
+ * doc/README.html, doc/INSTALL.html: separate INSTALL from README.
1538
+
1539
+ 2005-06-06 TADA Tadashi <sho@spc.gr.jp>
1540
+ * plugin/ja/00default.rb: change words in navi_next/prev_ndays.
1541
+
1542
+ 2005-06-05 TADA Tadashi <sho@spc.gr.jp>
1543
+ * plugin/00default.rb: hide 'n days' navigation and referer accessed by bots.
1544
+
1545
+ 2005-06-04 TADA Tadashi <sho@spc.gr.jp>
1546
+ * tdiary.conf.sample: add <%=navi%> in footer.
1547
+ * plugin/00default.rb: separate navi_user_* methods from navi_user method.
1548
+ * plugin/00default.rb: "prev/next month" navigation in month mode.
1549
+
1550
+ 2005-06-03 TADA Tadashi <sho@spc.gr.jp>
1551
+ * plugin/00default.rb, misc/style/wiki/wiki_style.rb: my plugin support 'n days before/after' mode.
1552
+ * misc/style/rd/rd_style.rb: my plugin support 'n days before/after' mode.
1553
+ * tdiary.rb: set limit 30 days on 'n days before/after' mode.
1554
+ * plugin/00default.rb: anchor plugin support 'n days before/after' mode.
1555
+
1556
+ 2005-06-02 TADA Tadashi <sho@spc.gr.jp>
1557
+ * tdiary.rb, plugin/00default.rb: "N days before/after" navigation
1558
+ button [EXPERIMENTAL]
1559
+
1560
+ 2005-06-01 TADA Tadashi <sho@spc.gr.jp>
1561
+ * tdiary.rb, index.rb: N days mode [EXPERIMENTAL]
1562
+
1563
+ 2005-05-29 KURODA Hiraku <hiraku at hinet.mydns.jp>
1564
+ * escape quote in TSUKKOMI.
1565
+
1566
+ 2005-05-18 Kazuhiko <kazuhiko@fdiary.net>
1567
+ * tdiary/defaultio.rb: support CRLF.
1568
+
1569
+ 2005-05-18 TADA Tadashi <sho@spc.gr.jp>
1570
+ * tdiary.rb: fix typo by supporting ruby 1.9 HEAD.
1571
+ * doc/HOWTO-make-io.rd: fix about IO#transaction block parameter.
1572
+
1573
+ 2005-05-16 Kazuhiko <kazuhiko@fdiary.net>
1574
+ * tdiary.rb: support ruby 1.9 HEAD.
1575
+
1576
+ 2005-05-15 Kazuhiko <kazuhiko@fdiary.net>
1577
+ * tdiary.rb: support ruby 1.9 HEAD.
1578
+ * tdiary/defaultio.rb: close open file only in 'ensure'.
1579
+
1580
+ 2005-05-05 TADA Tadashi <sho@spc.gr.jp>
1581
+ * plugin/{ja,en.zh}/00default.rb: fix wrong </h4> to </h3>.
1582
+
1583
+ 2005-04-21 Kazuhiko <kazuhiko@fdiary.net>
1584
+ * tdiary.rb: invoke update_proc in showcomment mode.
1585
+
1586
+ 2005-04-08 TADA Tadashi <sho@spc.gr.jp>
1587
+ * tdiary.rb, plugin/00default.rb, misc/theme_convert/theme_convert.rb:
1588
+ remove using ERbLight. (only support ruby 1.8 or later.)
1589
+ * erb/*: delete.
1590
+ * skel/conf.rhtml, plugin/00default.rb: fix theme to 'default' in configuration mode.
1591
+
1592
+ 2005-04-06 TADA Tadashi <sho@spc.gr.jp>
1593
+ * tdiary/defailtio.rb: support ruby 1.9 HEAD. thanks Mineo Aoki <aamine at loveruby.net>.
1594
+ * tdiary/defailtio.rb: through NameError in restore.
1595
+
1596
+ 2005-03-09 TADA Tadashi <sho@spc.gr.jp>
1597
+ * tdiary.rb: add mobile user agents; 'Vodafone' and 'MOT-'.
1598
+ thanks Masaru Yokoi <masaru at masaru.org>
1599
+ * skel/i.update.rhtml: fix HTML tag typo. thanks Masaru Yokoi <masaru at masaru.org>
1600
+
1601
+ 2005-01-27 zunda <zunda at freeshell.org>
1602
+ * skel/i.update.rhtml: bug fix - Kanji code converted from shift-jis to euc
1603
+ * skel/i.month.rhtml: use labels from plugin for i18n
1604
+
1605
+ 2005-01-12 Kazuhiko <kazuhiko@fdiary.net>
1606
+ * tdiary/defaultio.rb: separate each transaction and use exclusive
1607
+ lock in writing transaction only.
1608
+
1609
+ 2004-12-22 zunda <zunda at freeshell.org>
1610
+ * misc/style/emptdiary/emptdiary_style.rb: body_to_html defined, thanks to dai <d+r at vdr.jp>.
1611
+
1612
+ 2004-12-01 zunda <zunda at freeshell.org>
1613
+ * skel/tdiary.rconf: bug fix - could not saveconf unless icon and description are set
1614
+
1615
+ 2004-12-01 zunda <zunda at freeshell.org>
1616
+ * plugin/00default.rb, plugin/ja/00default.rb: added icon_tag and description_tag
1617
+
1618
+ 2004-11-29 zunda <zunda at freeshell.org>
1619
+ * tdiary.rb, skel/tdiary.rconf, plugin/00default.rb, plugin/{ja,en,zh}/00default.rb:
1620
+ added @conf.icon and @conf.description
1621
+
1622
+ 2004-11-05 MoonWolf <moonwolf@moonwolf.com>
1623
+ * tdiary/tdiary_style.rb: XML-RPC API support
1624
+ * misc/style/emptdiary: XML-RPC API support
1625
+ * misc/style/etdiary: XML-RPC API support
1626
+ * misc/style/rd: XML-RPC API support
1627
+ * misc/style/wiki: XML-RPC API support
1628
+
1629
+ 2004-11-04 MoonWolf <moonwolf@moonwolf.com>
1630
+ * tdiary.rb: method visibility change.
1631
+
1632
+ 2004-09-24 Fri UECHI Yasumasa <uechi@potaway.net>
1633
+ * rd_style.rb: fix tainted name space of RD Headline class. Thanks Shugo Maeda <maeda@shugo.net>.
1634
+
1635
+ 2004-08-08 Junichiro Kita <kita@kitaj.no-ip.com>
1636
+ * tdiary.rb: TDiaryCategoryView's @last_modified changed to Time.now from Time.at(0).
1637
+ Thanks MATSUOKA Kohei <kohei@machu.jp>.
1638
+
1639
+ 2004-07-18 Junichiro Kita <kita@kitaj.no-ip.com>
1640
+ * tdiary.rb, tdiary/defaultio.rb: delete dispensable data dir and cache.
1641
+
1642
+ 2004-07-01 TADA Tadashi <sho@spc.gr.jp>
1643
+ * tdiary_style.rb: implement body_to_html method.
1644
+
1645
+ 2004-06-28 Junichiro Kita <kita@kitaj.no-ip.com>
1646
+ * misc/i18n/tdiary.conf.sample-en: fix typo. thanks to jfkimura@yahoo.co.jp
1647
+
1648
+ 2004-06-27 TADA Tadashi <sho@spc.gr.jp>
1649
+ * release 2.0.0.
1650
+
1651
+ 2004-06-18 TADA Tadashi <sho@spc.gr.jp>
1652
+ * 00default.rb: deny robots when update modes.
1653
+
1654
+ 2004-06-16 TADA Tadashi <sho@spc.gr.jp>
1655
+ * add zh (Traditional Chinese) language resources. thanks Hiroshi Yui <thinker60@mail2000.com.tw>.
1656
+
1657
+ 2004-06-15 Tue UECHI Yasumasa <uechi@potaway.net>
1658
+ * rd_style.rb: remove <p> tags in manufacture(*_to_html) only subtitles is given.
1659
+
1660
+ 2004-06-09 TADA Tadashi <sho@spc.gr.jp>
1661
+ * 00default.rb: remove debug code.
1662
+
1663
+ 2004-05-22 zunda <zunda at freeshell.org>
1664
+ * tdiary.conf.sample: English notice at the top.
1665
+
1666
+ 2004-05-22 TADA Tadashi <sho@spc.gr.jp>
1667
+ * default.css, tdiary1.css: add '@charset "euc-jp";'.
1668
+
1669
+ 2004-05-20 Kazuhiko <kazuhiko@fdiary.net>
1670
+ * skel/mail.rtxt, skel/mail.rtxt.en: separate each address by
1671
+ comma.
1672
+
1673
+ 2004-05-20 TADA Tadashi <sho@spc.gr.jp>
1674
+ * mail.rtxt.en: against empty @author_mail or @author_name.
1675
+ * tdiary.rb: catch exceptions when cannot delete cache files.
1676
+
1677
+ 2004-05-19 ZnZ <zn@mbf.nifty.com>
1678
+ * 00default.rb, mail.rtxt: against empty @author_mail or @author_name.
1679
+
1680
+ 2004-05-16 TADA Tadashi <sho@spc.gr.jp>
1681
+ * misc/style/wiki/wiki_parser.rb: ignore any elements in plugin.
1682
+ * tdiary.conf.sample: add self URL into @no_referer. thanks ZnZ <zn@mbf.nifty.com>.
1683
+
1684
+ 2004-05-14 TADA Tadashi <sho@spc.gr.jp>
1685
+ * skel/mail.rtxt: support absolute path of @conf.index.
1686
+
1687
+ 2004-05-09 TADA Tadashi <sho@spc.gr.jp>
1688
+ * tdiary.rb: support absolute path of @conf.index.
1689
+ * skel/i.diary.rhtml: show TSUKKOMI body length 100 to 200 chars.
1690
+
1691
+ 2004-05-05 TADA Tadashi <sho@spc.gr.jp>
1692
+ * misc: move posttdiary.rb and tdiary-mode to contrib package.
1693
+ * release 1.5.7.
1694
+
1695
+ 2004-05-05 Kazuhiko <kazuhiko@fdiary.net>
1696
+ * misc/style/etdiary/etdiary_style.rb: fix a bug that causes a
1697
+ problem in 'to_html' without options.
1698
+
1699
+ 2004-05-04 Kazuhiko <kazuhiko@fdiary.net>
1700
+ * skel/update.rhtml: display an e-mail address of comment if
1701
+ exists.
1702
+
1703
+ 2004-05-04 TADA Tadashi <sho@spc.gr.jp>
1704
+ * tdiary.rb: remove to add '...' after using Config#shorten.
1705
+
1706
+ 2004-04-19 ZnZ <zn@mbf.nifty.com>
1707
+ * tdiary.rb: add error information to eval.
1708
+
1709
+ 2004-04-19 TADA Tadashi <sho@spc.gr.jp>
1710
+ * tdiary.conf.sample: uncomment @options['apply_plugin'] and @options['bot'].
1711
+ * tdiary.conf.sample: some robots add to @options['bot']. thanks MUSHA <knu@ruby-lang.org>.
1712
+
1713
+ 2004-04-06 zunda <zunda at freeshell.org>
1714
+ * plugin/01sp.rb: records only plug-in filenames. When more than one plug-ins in different directories have the same filename, first occurrence in sp.path will be used, without raising an error.
1715
+
1716
+ 2004-04-05 TADA Tadashi <sho@spc.gr.jp>
1717
+ * theme/base.css: add .highlight class. thanks ZnZ <zn@mbf.nifty.com> and Naoko <naoko@ns.undefine.to>.
1718
+
1719
+ 2004-04-04 TADA Tadashi <sho@spc.gr.jp>
1720
+ * tdiary.rb: apply comment_filter for TrackBack.
1721
+ * tdiary/filter/default.rb: reject without GET method in comment_filter.
1722
+
1723
+ 2004.03.16 SHIMADA Mitsunobu <simm@fan.jp>
1724
+ * misc/style/etdiary/etdiary_style.rb: fix bug: section without subtitle.
1725
+
1726
+ 2004-03-15 Kazuhiko <kazuhiko@fdiary.net>
1727
+ * tdiary.rb (apply_plugin): return empty string if input string is
1728
+ nil.
1729
+
1730
+ 2004.03.15 Junichiro Kita <kita@kitaj.no-ip.com>
1731
+ * plugin/*/00default.rb: resurrection of category_anchor. Thanks mput.
1732
+
1733
+ 2004.03.15 Junichiro Kita <kita@kitaj.no-ip.com>
1734
+ * index.rb, tdiary.rb, skel/category.rhtml, plugin/*/00default.rb: indexed category.
1735
+ Thanks mass and phonondrive.com.
1736
+
1737
+ 2004-03-04 TADA Tadashi <sho@spc.gr.jp>
1738
+ * tdiary.rb: do not call update_proc when TSUKKOMI was filtered.
1739
+ * plugin/00default.rb: fix bug in comment_mail_send.
1740
+
1741
+ 2004-02-27 TADA Tadashi <sho@spc.gr.jp>
1742
+ * tdiary.rb, skel/*: call update_proc after all plugins loaded.
1743
+
1744
+ 2004-02-17 TADA Tadashi <sho@spc.gr.jp>
1745
+ * tdiary.rb: fix TDiary::Filter::Filter#comment_filter prototype.
1746
+
1747
+ 2004.02.12 Junichiro Kita <kita@kitaj.no-ip.com>
1748
+ * tdiary/filter/default.rb: support ruby 1.6.x.
1749
+
1750
+ 2004-02-11 zunda <zunda at freeshell.org>
1751
+ * tdiary.rb, tdiary/filter/default.rb: fix bugs.
1752
+
1753
+ 2004-02-10 TADA Tadashi <sho@spc.gr.jp>
1754
+ * tdiary.rb, tdiary/filter/default.rb: TSUKKOMI and referer filter feature.
1755
+
1756
+ 2004-02-09 TADA Tadashi <sho@spc.gr.jp>
1757
+ * plugin/00default.rb: fuzzy regexp in my plugin.
1758
+ * skel/mail.rtxt*: anchor move to the bottom of body.
1759
+
1760
+ 2004-02-09 mput <mput@users.sf.net>
1761
+ * tdiary.rb: fix Plugin#apply_plugin.
1762
+
1763
+ 2004-02-04 UECHI Yasumasa <uh@u.dhis.portside.net>
1764
+ * misc/style/rd/rd_style.rb: rescue ParseError
1765
+
1766
+ 2004-01-26 UECHI Yasumasa <uh@u.dhis.portside.net>
1767
+ * misc/style/rd/rd_style.rb: fix body_to_html
1768
+
1769
+ 2004.01.21 Junichiro Kita <kita@kitaj.no-ip.com>
1770
+ * tdiary.rb: call update_proc in TDiaryTrackBackReceive#eval_rhtml for recent_trackback3.rb.
1771
+
1772
+ 2004-01-17 TADA Tadashi <sho@spc.gr.jp>
1773
+ * plugin/{ja,en}/00default.rb: split @theme_location_comment.
1774
+ * theme/base.css: modify style of calendar3 plugin.
1775
+
1776
+ 2004-01-17 TADA Tadashi <sho@spc.gr.jp>
1777
+ * misc/posttdiary.rb: support ruby 1.8.1.
1778
+
1779
+ 2004-01-17 Kazuhiko <kazuhiko@fdiary.net>
1780
+ * tdiary.rb: use erbscan if possible.
1781
+
1782
+ 2004.01.12 Junichiro Kita <kita@kitaj.no-ip.com>
1783
+ * tdiary.rb: remove TDiaryTrackBackBase#trackback_url.
1784
+ * tdiary.rb: use @conf.base_url in TDiaryTrackBackBase#diary_url.
1785
+
1786
+ 2004.01.12 Junichiro Kita <kita@kitaj.no-ip.com>
1787
+ * tdiary.rb: if trackback is longer than 255 byte, it will be shorten to 252 byte and '...' will be added.
1788
+
1789
+ 2004.01.09 TADA Tadashi <sho@spc.gr.jp>
1790
+ * plugin/00default.rb: meta link support HTML 4.01.
1791
+
1792
+ 2003.12.30 Junichiro Kita <kita@kitaj.no-ip.com>
1793
+ * plugin/00default.rb: my can handle 'yyyymmdd#txx'.
1794
+ * wiki_style.rb: strip_subtitle returns nil if subtitle == ''. thanks to YAA.
1795
+
1796
+ 2003.12.26 TADA Tadashi <sho@spc.gr.jp>
1797
+ * tdiary/pstoreio.rb: fix bug: enable running 1.5.6 or later.
1798
+
1799
+ 2003.12.26 Kazuhiko <kazuhiko@fdiary.net>
1800
+ * tdiary.rb(trackback_url): HTTP_HOST -> SERVER_NAME.
1801
+ (base_url): return '' in non CGI case.
1802
+
1803
+ 2003.12.26 Junichiro Kita <kita@kitaj.no-ip.com>
1804
+ * skel/mail.rtxt*: add comment's URL in the body.
1805
+
1806
+ 2003.12.25 TADA Tadashi <sho@spc.gr.jp>
1807
+ * tdiary.rb: TDiaryBase#clear_cache support parameter of file name pattern.
1808
+
1809
+ 2003.12.26 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
1810
+ * misc/style/wiki/wiki_style.rb: bug fix of parsing categories. thanks to yowa.
1811
+
1812
+ 2003.12.26 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
1813
+ * tdiary.rb: catch StandardError when broken cache.
1814
+
1815
+ 2003.12.20 Kazuhiko <kazuhiko@fdiary.net>
1816
+ * misc/style/rd/rd_style.rb: bug fix.
1817
+
1818
+ 2003.12.19 TADA Tadashi <sho@spc.gr.jp>
1819
+ * index.rb, update.rb: set $KCODE to 'n'.
1820
+
1821
+ 2003.12.19 Fri UECHI Yasumasa <uh@u.dhis.portside.net>
1822
+ * misc/style/rd/rd_style.rb: accept lower level headlines without upper level headlines.
1823
+
1824
+ 2003.12.18 TADA Tadashi <sho@spc.gr.jp>
1825
+ * 00default.rb: save theme conf before call header_proc.
1826
+
1827
+ 2003.12.16 Takeru KOMORIYA <komoriya@paken.org>
1828
+ * tdiary.rb: do not count up last-modified when the diary disabled.
1829
+
1830
+ 2003.12.16 TADA Tadashi <sho@spc.gr.jp>
1831
+ * 00default.rb: accept fuzzy anchor style.
1832
+
1833
+ 2003.12.11 TADA Tadashi <sho@spc.gr.jp>
1834
+ * skel/day.rhtml, skel/diary.rhtml: do not make link URL when access from bot.
1835
+
1836
+ 2003.12.09 TADA Tadashi <sho@spc.gr.jp>
1837
+ * tdiary.rb: String#make_link replace space to '&nbsp;' only top of lines.
1838
+
1839
+ 2003.12.01 TADA Tadashi <sho@spc.gr.jp>
1840
+ * misc/posttdiary.rb: support over 10 images. thanks jun.o.
1841
+
1842
+ 2003.11.27 TADA Tadashi <sho@spc.gr.jp>
1843
+ * index.rb, update.rb: no 'Content-Type' in error message running on mod_ruby.
1844
+ * plugin/01sp.rb: sp.path can terminate by '/'.
1845
+
1846
+ 2003.11.21 Junichiro Kita <kita@kitaj.no-ip.com>
1847
+ * tdiary.rb: Url returned by base_url ends with '/'.
1848
+
1849
+ 2003.11.21 Kazuhiko <kazuhiko@fdiary.net>
1850
+ * tdiary.rb: remove tail '/' of base_url.
1851
+
1852
+ 2003.11.19 Junichiro Kita <kita@kitaj.no-ip.com>
1853
+ * tdiary.rb: import base_url method from RWiki.
1854
+
1855
+ 2003.11.18 TADA Tadashi <sho@spc.gr.jp>
1856
+ * tdiary.rb: run Plugin#apply_plugin under $SAFE = 4 when secure mode.
1857
+
1858
+ 2003.11.17 TADA Tadashi <sho@spc.gr.jp>
1859
+ * dot.htaccess: move comment about YYYYMMDD.html access to html_anchor.rb plugin.
1860
+ * tdiary/lang/ja.rb: remove decoding of charref.
1861
+ * plugin/00default.rb: remove sub from hostname in comment_mail_send.
1862
+
1863
+ 2003.11.14 TADA Tadashi <sho@spc.gr.jp>
1864
+ * misc/jtime.rb: removed. use plugin/jdate.rb.
1865
+
1866
+ 2003.11.13 TADA Tadashi <sho@spc.gr.jp>
1867
+ * release 1.5.6.
1868
+
1869
+ 2003.11.10 TADA Tadashi <sho@spc.gr.jp>
1870
+ * skel/update.rhtml*: add subtitle in update form.
1871
+
1872
+ 2003.11.06 zunda <zunda at freeshell.org>
1873
+ * misc/style/emptdiary/README.rd and README.rd.en: emptdiary -> emptDiary
1874
+
1875
+ 2003.11.06 TADA Tadashi <sho@spc.gr.jp>
1876
+ * plugin/{ja,en}/00default.rb: looks up style documents in docs.tdiary.org wiki.
1877
+
1878
+ 2003.11.05 Junichiro Kita <kita@kitaj.no-ip.com>
1879
+ * misc/style/wiki/README*: add document for kw plugin.
1880
+
1881
+ 2003.11.05 Junichiro Kita <kita@kitaj.no-ip.com>
1882
+ * tdiary.rb: rescue SyntaxError and raise BadStyleError when bad style is specified.
1883
+
1884
+ 2003.11.03 Junichiro Kita <kita@kitaj.no-ip.com>
1885
+ * ske/category.rhtml: stripped_subtitle -> stripped_subtitle_to_html.
1886
+
1887
+ 2003.10.29 zunda <zunda at freeshell.org>
1888
+ * tdiary.rb: passes yield separate values instead of an Array to follow behavior of yield [ruby-dev:21276]
1889
+
1890
+ 2003.10.28 Junichiro Kita <kita@kitaj.no-ip.com>
1891
+ * tdiary.rb: dup string in apply_plugin.
1892
+ * doc/HOWTO-make-io.rd: add documents for *_to_html.
1893
+ * misc/style/etdiary/etdiary_style.rb, misc/style/rd/rd_style.rb,
1894
+ misc/style/wiki/wiki_style.rb, tdiary/pstoreio.rb, tdiary/tdiary_style.rb: add *_to_html.
1895
+
1896
+ 2003.10.25 Junichiro Kita <kita@kitaj.no-ip.com>
1897
+ * tdiary.rb: auto invalidation of parser cache and ERb cache.
1898
+
1899
+ 2003.10.23 Kazuhiko <kazuhiko@fdiary.net>
1900
+ * plugin/ja/00default.rb, plugin/ja/00default.rb,
1901
+ skel/category.rhtml, skel/conf.rhtml, skel/i.conf.rhtml,
1902
+ skel/i.day.rhtml, skel/i.latest.rhtml, skel/i.month.rhtml,
1903
+ skel/i.show.rhtml, skel/i.update.rhtml, skel/i.update.rhtml.en,
1904
+ skel/preview.rhtml, skel/preview.rhtml.en, skel/show.rhtml,
1905
+ skel/update.rhtml, skel/update.rhtml.en: escape HTML @html_title.
1906
+
1907
+ 2003.10.22 TADA Tadashi <sho@spc.gr.jp>
1908
+ * skel/tdiary.rconf: fix error when @author_mail was nil.
1909
+
1910
+ 2003.10.21 Junichiro Kita <kita@kitaj.no-ip.com>
1911
+ * tdiary/lang/ja.rb: shorten('') returns '' instead of nil.
1912
+
1913
+ 2003.10.14 Junichiro Kita <kita@kitaj.no-ip.com>
1914
+ * misc/style/wiki/wiki_style.rb: support '[[string|inter:key]]'.
1915
+
1916
+ 2003.10.10 TADA Tadashi <sho@spc.gr.jp>
1917
+ * misc/posttdiary.rb: --image-format.
1918
+
1919
+ 2003.10.10 zunda <zunda at freeshell.org>
1920
+ * plugin/01sp.rb: CGI::escape instead of CGI::escapeHTML to make a URL
1921
+
1922
+ 2003.10.09 zunda <zunda at freeshell.org>
1923
+ * plugin/01sp.rb: links to plugin documents
1924
+
1925
+ 2003.10.09 Kazuhiko <kazuhiko@fdiary.net>
1926
+ * plugin/00default.rb: untaint receivers for mod_ruby.
1927
+
1928
+ 2003.10.09 TADA Tadashi <sho@spc.gr.jp>
1929
+ * tdiary.rb, 00default.rb: move Plugin#bot? to Config class, and make wrapper in Plugin.
1930
+ * tdiary.rb: suppress saving referer from bot.
1931
+
1932
+ 2003.10.08 Kazuhiko <kazuhiko@fdiary.net>
1933
+ * plugin/01sp.rb: untaint sp_option( 'selected' ) for mod_ruby.
1934
+
1935
+ 2003.10.07 Kazuhiko <kazuhiko@fdiary.net>
1936
+ * tdiary.rb: untaint '#{@lang}.rb' for mod_ruby.
1937
+
1938
+ 2003.10.07 Yasuaki Gohko <gony@sm.rim.or.jp>
1939
+ * pstoreio.rb: support ruby 1.8.
1940
+
1941
+ 2003.10.06 zunda <zunda at freeshell.org>
1942
+ * plugin/01sp.rb: allows multiple directories for plugins
1943
+
1944
+ 2003.10.01 zunda <zunda at freeshell.org>
1945
+ * plugin/01sp.rb: no more revision information, links to sources and comments
1946
+ * plugin/01sp.rb: user friendlier sequence of plugin list
1947
+
1948
+ 2003.10.01 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
1949
+ * tdiary.rb: change security error message in Plugin#add_cookie.
1950
+
1951
+ 2003.09.29 TADA Tadashi <sho@spc.gr.jp>
1952
+ * plugin/01sp.rb: support secure mode.
1953
+
1954
+ 2003.09.28 TADA Tadashi <sho@spc.gr.jp>
1955
+ * add new setting @referer_day_only to reduce 'referer noise'.
1956
+
1957
+ 2003.09.27 zunda <zunda at freeshell.org>
1958
+ * plugin/01sp.rb: better to have default opt values set nil: hide* -> show*
1959
+ * plugin/01sp.rb: shows help in the resource file if there is
1960
+
1961
+ 2003.09.27 TADA Tadashi <sho@spc.gr.jp>
1962
+ * add plugin/01sp.rb and resources of ja and en.
1963
+
1964
+ 2003.09.26 TADA Tadashi <sho@spc.gr.jp>
1965
+ * tdiary/lang/en.rb: add comments.
1966
+
1967
+ 2003.09.25 TADA Tadashi <sho@spc.gr.jp>
1968
+ * i18n framework.
1969
+ * tdiary/lang: add ja.rb and en.rb.
1970
+ * tdiary.rb: move DiaryBase#disp_referer method to Plugin class.
1971
+ * tdiary.rb: remove Comment#shorten and Plugin#shorten.
1972
+ * misc/i18n/00lang.en.rb: moved to plugin/en/00default.rb.
1973
+ * add plugin/ja/00default.rb.
1974
+
1975
+ 2003.09.25 Junichiro Kita <kita@kitaj.no-ip.com>
1976
+ * tdiary.rb, skel/diary.rhtml, plugin/00default.rb: add <div class="trackbacks">. Thanks to mput.
1977
+
1978
+ 2003.09.17 UECHI Yasumasa <uh@u.dhis.portside.net>
1979
+ * rd_style.rb: change URL of RAA.
1980
+
1981
+ 2003.09.16 TADA Tadashi <sho@spc.gr.jp>
1982
+ * tdiary.rb, tdiary.conf*: add @cache_path. Thanks MoonWolf <moonwolf@moonwolf.com>.
1983
+
1984
+ 2003.09.10 TADA Tadashi <sho@spc.gr.jp>
1985
+ * skel/tdiary.rconf: fix typo.
1986
+ * tdiary.rb: automatic generate date when Append.
1987
+ * misc/posttdiary.rb: not send date to update CGI.
1988
+ * misc/posttdiary.rb: unset date to request for tDiary.
1989
+
1990
+ 2003.09.02 Junichiro kita <kita@kitaj.no-ip.com>
1991
+ * plugin/00default.rb: calc_links works correctly with mobile agent.
1992
+
1993
+ 2003.09.02 KAKUTANI Shintaro <shintaro@kakutani.com>
1994
+ * skel/plugin_error.rhtml: follow conf proc.
1995
+
1996
+ 2003.09.02 TADA Tadashi <sho@spc.gr.jp>
1997
+ * dot.htaccess: deny "*.rhtml*".
1998
+ * plugin/00default.rb: mobile_navi supports ruby 1.8.
1999
+
2000
+ 2003.09.01 Junichiro kita <kita@kitaj.no-ip.com>
2001
+ * plugin/00default.rb, skel/i.*.rhtml: create navigation link with mobile_navi.
2002
+
2003
+ 2003-08-23 zunda <zunda at freeshell.org>
2004
+ sp.rb: simpler configuration display
2005
+
2006
+ 2003.08.28 Kazuhiko <kazuhiko@fdiary.net>
2007
+ * rd_style.rb, wiki_style.rb insert "\n\n" at the end of @body.
2008
+
2009
+ 2003-08-28 Thu UECHI Yasumasa <uh@u.dhis.portside.net>
2010
+ * rd_style.rb: fix bug when last section doesn't terminate by CR.
2011
+
2012
+ 2003-08-26 zunda <zunda at freeshell.org>
2013
+ sp.rb: English translation
2014
+ sp.rb: option defaults are flipped
2015
+ sp.rb: Typo for @options are fixed
2016
+
2017
+ 2003-08-22 zunda <zunda at freeshell.org>
2018
+ sp.rb: following options are added: thanks to kaz
2019
+ sp.rb: @options['select_plugins.hidesource']
2020
+ sp.rb: @options['select_plugins.hidemandatory']
2021
+ sp.rb: @options['select_plugins.newdefault']
2022
+ sp.rb: new plugins are marked in the list until the user configures the selections
2023
+ sp.rb: bug fix: check conf mode before updating the options
2024
+
2025
+ 2003.08.21 TADA Tadashi <sho@spc.gr.jp>
2026
+ * tdiary.rb: remove debug message.
2027
+ * tdiary.rb, 00default.rb: add Plugin@last_modified and insert it into HTML header.
2028
+ * 00default.rb, update.rhtml*, preview.rhtml*: add style_howto plugin.
2029
+ * index.rb, update.rb: waiting 1 second after post.
2030
+
2031
+ 2003-08-20 zunda <zunda at freeshell.org>
2032
+ sp.rb: first release
2033
+
2034
+ 2003.08.20 TADA Tadashi <sho@spc.gr.jp>
2035
+ * skel/tdiary.rconf: cancel saving Array and Hash.
2036
+
2037
+ 2003.08.20 TADA Tadashi <sho@spc.gr.jp>
2038
+ * skel/tdiary.rconf: save Array and Hash value of @options2. thanks kazuhiko.
2039
+ * tdiary.rb: Config#delete as delete a key of @options.
2040
+
2041
+ 2003.08.06 zunda <zunda at freeshell.org>
2042
+ * tdiary.rb: taint @options2 when it is created for the first time
2043
+
2044
+ 2003.08.06 TADA Tadashi <sho@spc.gr.jp>
2045
+ * tdiary.rb, 00default.rb: taint all param values of @cgi in Plugin.
2046
+
2047
+ 2003.08.05 TADA Tadashi <sho@spc.gr.jp>
2048
+ * doc/HOWTO-make-plugin.html: about conf_proc.
2049
+ * 00default.rb: fix about comment_mail error in secure mode. thanks kazuhiko.
2050
+ * release 1.5.5.
2051
+
2052
+ 2003.08.04 TADA Tadashi <sho@spc.gr.jp>
2053
+ * support ruby 1.8.0 preview7.
2054
+ * wiki_parser.rb: add "\n" to end of blockquoted lines.
2055
+
2056
+ 2003.07.31 Junichiro Kita <kita@kitaj.no-ip.com>
2057
+ * index.rb: tdiary.cookies is set after tdiary.eval_rhtml, at least in case of whats_new plugin.
2058
+
2059
+ 2003.07.30 TADA Tadashi <sho@spc.gr.jp>
2060
+ * tdiary.rb: use ERB2 when running on ruby 1.8 or later (testing).
2061
+ * wiki_style.rb: support TrackBack anchor.
2062
+
2063
+ 2003.07.29 UECHI Yasumasa <uh@u.dhis.portside.net>
2064
+ * rd_style: fix Reference element to recognize trackbacks
2065
+
2066
+ 2003.07.29 Kazuhiko <kazuhiko@fdiary.net>
2067
+ * index.rb: don't make 'body' in case of HEAD request.
2068
+
2069
+ 2003.07.22 TADA Tadashi <sho@spc.gr.jp>
2070
+ * skel/conf.rhtml: to valid html.
2071
+
2072
+ 2003.07.18 zunda <zunda at freeshell.org>
2073
+ * misc/style/emptdiary/emptydiary.rb: support ruby 1.8.0 (2003-07-18):
2074
+ Array.join() no longer returns EmptdiaryString but returns String.
2075
+
2076
+ 2003.07.18 UECHI Yasumasa <uh@u.dhis.portside.net>
2077
+ * rd_style: fix ref_ext_IMG is not for HTML4
2078
+
2079
+ 2003.07.15 TADA Tadashi <sho@spc.gr.jp>
2080
+ * save only valid referer, and referer URL to euc before display.
2081
+
2082
+ 2003.07.10 TADA Tadashi <sho@spc.gr.jp>
2083
+ * fix bug when empty receivers in comment_mail plugins.
2084
+
2085
+ 2003.07.05 TADA Tadashi <sho@spc.gr.jp>
2086
+ * fix yeasterday's bug.
2087
+
2088
+ 2003.07.04 TADA Tadashi <sho@spc.gr.jp>
2089
+ * fix some bugs in comment_mail plugins.
2090
+
2091
+ 2003.06.24 TADA Tadashi <sho@spc.gr.jp>
2092
+ * wiki_style.rb: fix bug about only subtitle section.
2093
+ * tdiary.rb, wiki_style.rb: support ruby 1.8.0 preview3.
2094
+
2095
+ 2003.06.22 TADA Tadashi <sho@spc.gr.jp>
2096
+ * 00default.rb: css_tag plugin support base.css.
2097
+ * default.css: remove including base.css.
2098
+
2099
+ 2003.06.21 TADA Tadashi <sho@spc.gr.jp>
2100
+ * conf_proc supports secure mode.
2101
+
2102
+ 2003.06.16 Junichiro Kita <kita@kitaj.no-ip.com>
2103
+ * 00default.rb: use @conf.author_mail when @conf['comment_mail.receivers'] is nil.
2104
+
2105
+ 2003.06.16 TADA Tadashi <sho@spc.gr.jp>
2106
+ * conf_proc: English support.
2107
+ * conf_proc: mobile agent support.
2108
+
2109
+ 2003.06.15 Hideki SAKAMOTO <hs@on-sky.net>
2110
+ * tdiary.rb: initialize @css in Config class.
2111
+
2112
+ 2003.06.14 TADA Tadashi <sho@spc.gr.jp>
2113
+ * conf_proc plugin modify.
2114
+ * conf.rhtml.en: deleted.
2115
+
2116
+ 2003.06.13 TADA Tadashi <sho@spc.gr.jp>
2117
+ * [TESTING] conf_proc plugin modify.
2118
+
2119
+ 2003.06.12 TADA Tadashi <sho@spc.gr.jp>
2120
+ * [TESTING] conf_proc plugin support.
2121
+ * 00default.rb, mail.rtxt: optimize comment mail.
2122
+
2123
+ 2003.06.07 TADA Tadashi <sho@spc.gr.jp>
2124
+ * update.rhtml, preview.rhtml: renumbering tabindex.
2125
+
2126
+ 2003.06.07 Junichiro Kita <kita@kitaj.no-ip.com>
2127
+ * wiki_style.rb: remove categorizable?
2128
+
2129
+ 2003.06.06 TADA Tadashi <sho@spc.gr.jp>
2130
+ * tdiary.rb, update.rb: redirection to day page after append or replace diary.
2131
+ * update.rhtml, preview.rhtml: change update form layout.
2132
+ * 00default.rb, 00lang.en.rb: marge edit.rb and change some labels.
2133
+
2134
+ 2003.06.05 TADA Tadashi <sho@spc.gr.jp>
2135
+ * base.css: add some plugin's default settings. thanks Nana.
2136
+
2137
+ 2003.06.02 TADA Tadashi <sho@spc.gr.jp>
2138
+ * tdiary.rb: fix error in 1st preview in the new day.
2139
+
2140
+ 2003.05.30 TADA Tadashi <sho@spc.gr.jp>
2141
+ * tdiary.rb: fix wrong style selected in preview when editing a diary in the another style.
2142
+ * base.css: add default of calendar3 plugin.
2143
+
2144
+ 2003.05.17 Kenta MURATA <muraken2@nifty.com>
2145
+ * TDiaryComment#eval_rhtml ignores some exceptions
2146
+
2147
+ 2003.05.15 TADA Tadashi <sho@spc.gr.jp>
2148
+ * wiki_parser.rb: remove #!... line.
2149
+ * release 1.5.4.
2150
+
2151
+ 2003.05.15 UECHI Yasumasa <uh@u.dhis.portside.net>
2152
+ * rd_style.rb: fix footnote element with mput's patch.
2153
+
2154
+ 2003.05.13 Junichiro Kita <kita@kitaj.no-ip.com>
2155
+ * tdiary.rb: TDiary::TDiaryTrackBackReceive#to_euc don't look charset parameter.(automatic translation)
2156
+
2157
+ 2003.05.11 Junichiro Kita <kita@kitaj.no-ip.com>
2158
+ * tdiary.rb: TDiaryTrackBackReceive#eval_rhtml call super to do some plugin tasks. (eg. update_proc)
2159
+
2160
+ 2003.05.10 Junichiro Kita <kita@kitaj.no-ip.com>
2161
+ * tdiary.rb: TrackBack support charset parameter.
2162
+
2163
+ 2003.05.09 TADA Tadashi <sho@spc.gr.jp>
2164
+ * preview.rhtml: show anchor.
2165
+
2166
+ 2003.05.09 Junichiro Kita <kita@kitaj.no-ip.com>
2167
+ * plugin/00default.rb: add bot?
2168
+
2169
+ 2003.05.06 Junichiro Kita <kita@kitaj.no-ip.com>
2170
+ * plugin/00default.rb: anchor can handle yyyymmdd#txx.
2171
+
2172
+ 2003.05.06 TADA Tadashi <sho@spc.gr.jp>
2173
+ * preview: change to simple action on append mode.
2174
+
2175
+ 2003.05.03 Junichiro Kita <kita@kitaj.no-ip.com>
2176
+ * tdiary.rb: import classes for TrackBack(TDiary::TDiaryTrackBack*) from tb.rb.
2177
+
2178
+ 2003.05.02 TADA Tadashi <sho@spc.gr.jp>
2179
+ * index.rb, update.rb: untaint org_path. thanks mput.
2180
+
2181
+ 2003.04.28 TADA Tadashi <sho@spc.gr.jp>
2182
+ * HOWTO-make-plugin.html: add about form_proc.
2183
+
2184
+ 2003.04.27 Junichiro Kita <kita@kitaj.no-ip.com>
2185
+ * plugin/00default.rb: send comment_mail when receive TrackBack Ping.
2186
+
2187
+ 2003.04.22 TADA Tadashi <sho@spc.gr.jp>
2188
+ * escape backslash in header and footer.
2189
+
2190
+ 2003.04.20 TADA Tadashi <sho@spc.gr.jp>
2191
+ * support form_proc plugin.
2192
+
2193
+ 2003.04.18 TADA Tadashi <sho@spc.gr.jp>
2194
+ * remove comment mail feature to plugin: comment_mail-{smtp,qmail,sendmail}.rb.
2195
+
2196
+ 2003.04.17 TADA Tadashi <sho@spc.gr.jp>
2197
+ * default.css: add table settings.
2198
+ * tdiary.conf.sample: updated.
2199
+
2200
+ 2003.04.15 TADA Tadashi <sho@spc.gr.jp>
2201
+ * support edit_proc plugin.
2202
+
2203
+ 2003.04.11 zunda <zunda@freeshell.org>
2204
+ * skel/i.day.rhtml, skel/i.latest.rhtml, skel/i.month.rhtml: <input ... -> <INPUT ...
2205
+
2206
+ 2003.04.07 TADA Tadashi <sho@spc.gr.jp>
2207
+ * plugin_error.rhtml: 'Update' -> 'Edit' when error in updating.
2208
+
2209
+ 2003.04.06 TADA Tadashi <sho@spc.gr.jp>
2210
+ * preview: show safety page when plugin error.
2211
+
2212
+ 2003.04.05 TADA Tadashi <sho@spc.gr.jp>
2213
+ * support preview page.
2214
+
2215
+ 2003.04.04 TADA Tadashi <sho@spc.gr.jp>
2216
+ * 00default.rb: add content_script_type plugin.
2217
+
2218
+ 2003.04.03 TADA Tadashi <sho@spc.gr.jp>
2219
+ * HOWTO-use-plugin.html: add about @options['apply_plugin'].
2220
+ * mobile mode support AirH"PHONE browser.
2221
+
2222
+ 2003-04-02 UECHI Yasumasa <uh@u.dhis.portside.net>
2223
+ * rd_style.rb: fix nested <a> tag in DescList. thanx mput.
2224
+ * rd_style.rb: MethodList use for HTML block element.
2225
+
2226
+ 2003.03.25 TADA Tadashi <sho@spc.gr.jp>
2227
+ * wiki_style.rb: disable WikiName in WikiSection#strip_subtitle.
2228
+
2229
+ 2003.03.22 Minero Aoki <aamine@loveruby.net>
2230
+ * misc/jtime.rb, misc/posttdiary.rb, misc/theme_convert/theme_conver.rb: remove warning on ruby 1.8.
2231
+ * emptdiary_style.rb, etdiary_style.rb, rd_style.rb, wiki_style.rb: remove warning on ruby 1.8.
2232
+ * skel/plugin_error.rb: remove warning on ruby 1.8.
2233
+ * tdiary/defaultio.rb, tdiary/pstoreio.rb, tdiary/tdiary_style.rb: remove warning on ruby 1.8.
2234
+ * tdiary.rb: remove warning on ruby 1.8.
2235
+
2236
+ 2003.03.21 zunda <zunda@freeshell.org>
2237
+ * skel/(i.)diary.rhtml, i.update.rhtml(.en): comment.body.shorten -> comment.shorten
2238
+
2239
+ 2003.03.19 TADA Tadashi <sho@spc.gr.jp>
2240
+ * tdiary.rb: loading plugin files before eval rhtmls.
2241
+
2242
+ 2003.03.17 TADA Tadashi <sho@spc.gr.jp>
2243
+ * tdiary.rb: fix bug of referer_limit.
2244
+
2245
+ 2003.03.14 TADA Tadashi <sho@spc.gr.jp>
2246
+ * HOWTO-make-plugin.html: add about @plugin_files.
2247
+
2248
+ 2003.03.10 TADA Tadashi <sho@spc.gr.jp>
2249
+ * tdiary.rb: add @plugin_files into Plugin.
2250
+
2251
+ 2003.03.08 UECHI Yasumasa <uh@u.dhis.portside.net>
2252
+ * rd style: 'my' and 'a' plugins are used for reference.
2253
+
2254
+ 2003.03.06 UECHI Yasumasa <uh@u.dhis.portside.net>
2255
+ * rd style: simple subtitle in CHTML
2256
+
2257
+ 2003.03.06 TADA Tadashi <sho@spc.gr.jp>
2258
+ * tDiary/etDiary/emptDiary style: subtitle <P> to <H3> in mobile mode.
2259
+
2260
+ 2003.03.05 TADA Tadashi <sho@spc.gr.jp>
2261
+ * Wiki style: fix bug of definition list.
2262
+
2263
+ 2003.03.04 UECHI Yasumasa <uh@u.dhis.portside.net>
2264
+ * rd_style.rb: change apply_to_RefToElement calls ref_ext_* methods directly.
2265
+
2266
+ 2003.03.04 TADA Tadashi <sho@spc.gr.jp>
2267
+ * support ruby 1.8.0 preview2 (again).
2268
+
2269
+ 2003.03.03 TADA Tadashi <sho@spc.gr.jp>
2270
+ * etDiary style: fix section starts with plugin. thanks simm.
2271
+ * support ruby 1.8.0 preview2.
2272
+
2273
+ 2003.03.01 TADA Tadashi <sho@spc.gr.jp>
2274
+ * rd style: fix subtitle without category (again). thanks mput and uechi.
2275
+
2276
+ 2003.02.29 TADA Tadashi <sho@spc.gr.jp>
2277
+ * rd style: fix subtitle without category. thanks mput.
2278
+
2279
+ 2003.02.26 TADA Tadashi <sho@spc.gr.jp>
2280
+ * wiki style: fix bug again when last section doesn't terminate by CR.
2281
+ * add navi_edit plugin (label) into 00default.rb and 00lang.en.rb.
2282
+
2283
+ 2003.02.25 TADA Tadashi <sho@spc.gr.jp>
2284
+ * wiki style: fix bug when last section doesn't terminate by CR.
2285
+ * some styles: update document about install.
2286
+
2287
+ 2003.02.23 TADA Tadashi <sho@spc.gr.jp>
2288
+ * wiki style: fix bug about blockquote grammar.
2289
+ * etDiary style: update.
2290
+ * release 1.5.3.
2291
+
2292
+ 2003.02.21 TADA Tadashi <sho@spc.gr.jp>
2293
+ * wiki style: modify blockquote grammar.
2294
+ * some documents update.
2295
+
2296
+ 2003.02.19 TADA Tadashi <sho@spc.gr.jp>
2297
+ * add etdiary style's document.
2298
+ * some documents update.
2299
+
2300
+ 2003.02.18 TADA Tadashi <sho@spc.gr.jp>
2301
+ * add emptdiary_style.rb and some documents of styles.
2302
+ * move misc/style/wiki/kw.rb to plugin.
2303
+ * doc.css: fix bug.
2304
+
2305
+ 2003.02.17 TADA Tadashi <sho@spc.gr.jp>
2306
+ * add rd_style.rb.
2307
+
2308
+ 2003.02.16 TADA Tadashi <sho@spc.gr.jp>
2309
+ * tdiary_style.rb: fix bug when subtitle has only category.
2310
+ * tdiary.rb: taint Plugin instance.
2311
+
2312
+ 2003.02.13 TADA Tadashi <sho@spc.gr.jp>
2313
+ * 00default.rb: hide preferences in navi_admin when categorized view.
2314
+
2315
+ 2003.02.13 Junichiro Kita <kita@kitaj.no-ip.com>
2316
+ * add misc/style/etdiary/etdiary_style.rb
2317
+
2318
+ 2003.02.12 Junichiro Kita <kita@kitaj.no-ip.com>
2319
+ * merge from Test_Category.
2320
+
2321
+ 2003.02.12 Junichiro Kita <kita@kitaj.no-ip.com>
2322
+ * tdiary/pstoreio.rb: class Diary include UncategorizableDiary.
2323
+
2324
+ 2003.02.11 Junichiro Kita <kita@kitaj.no-ip.com>
2325
+ * wiki_style.rb, tdiary_style.rb: stripped_subtitle returns nil if @subtitle or stripped subtitle is nil.
2326
+
2327
+ 2003.02.11 Junichiro Kita <kita@kitaj.no-ip.com>
2328
+ * plugin/category.rb, skel/category.rhtml: separate cgi parameters with ';'.
2329
+
2330
+ 2003.02.10 Junichiro Kita <kita@kitaj.no-ip.com>
2331
+ * category.rb: valid HTML. thanks Yoshimi KURUMA <yoshimik@iris.dti.ne.jp>
2332
+
2333
+ 2003.02.08 Junichiro Kita <kita@kitaj.no-ip.com>
2334
+ * move CategorizableDiary/UncategorizableDiary into tdiary.rb.
2335
+ * HOWTO-make-io.rd: add about category.
2336
+
2337
+ 2003.02.08 TADA Tadashi <sho@spc.gr.jp>
2338
+ * change IO <-> style interface: IOBase#load_styles.
2339
+
2340
+ 2003.02.06 TADA Tadashi <sho@spc.gr.jp>
2341
+ * support WikiWord and table in Wiki parser.
2342
+
2343
+ 2003.01.22 TADA Tadashi <sho@spc.gr.jp>
2344
+ * fix the term of style.
2345
+
2346
+ 2003.01.21 TADA Tadashi <sho@spc.gr.jp>
2347
+ * defaultio.rb: fix style require bug.
2348
+ * pstoreio.rb: fix about style.
2349
+
2350
+ 2003.01.20 TADA Tadashi <sho@spc.gr.jp>
2351
+ * tdiary.rb: rescue SyntaxError in plugins, and support mod_ruby.
2352
+ * support changing describe style.
2353
+
2354
+ 2003.01.18 TADA Tadashi <sho@spc.gr.jp>
2355
+ * HOWTO-make-plugin.html: add about HTML style generated by plugins.
2356
+
2357
+ 2003.01.10 TADA Tadashi <sho@spc.gr.jp>
2358
+ * 00default.rb: making @prev_day and @next_day in calc_link. for navi_user
2359
+ * 00default.rb: add link elements into head: start, first, prev, next and last.
2360
+
2361
+ 2003.01.09 TADA Tadashi <sho@spc.gr.jp>
2362
+ * 00default.rb: add title attr into specifying stylesheet.
2363
+ * tdiary.rb: Plugin#shorten.
2364
+
2365
+ 2003.01.06 TADA Tadashi <sho@spc.gr.jp>
2366
+ * defaultio.rb: truncate after .td2 saving. thanks MIZUNO Takehiko.
2367
+
2368
+ 2002.12.30 TADA Tadashi <sho@spc.gr.jp>
2369
+ * tdiary.rb: fix for mod_ruby. thanks rcn.
2370
+
2371
+ 2002.12.25 Junichiro Kita <kita@kitaj.no-ip.com>
2372
+ * apply_plugin apply ERb when @options['apply_plugin'] == true
2373
+
2374
+ 2002.12.25 TADA Tadashi <sho@spc.gr.jp>
2375
+ * pstoreio.rb: for PStore of ruby 1.6.8.
2376
+
2377
+ 2002.12.25 TADA Tadashi <sho@spc.gr.jp>
2378
+ * release 1.5.2.
2379
+
2380
+ 2002.12.24 TADA Tadashi <sho@spc.gr.jp>
2381
+ * skel/i.*.rhtml: support @hide_comment_form in tdiary.conf.
2382
+
2383
+ 2002.12.20 TADA Tadashi <sho@spc.gr.jp>
2384
+ * tdiary.rb, HOWTO-make-plugin.html: add Plugin#apply_plugin method.
2385
+
2386
+ 2002.12.19 TADA Tadashi <sho@spc.gr.jp>
2387
+ * tdiary.conf.sample: change URL of yahoo search.
2388
+ * document update: theme gallery and theme bench to tDiary.org.
2389
+ * 00default.rb: fix nyear title. thank uechi <uh@u.dhis.portside.net>.
2390
+
2391
+ 2002.12.18 TADA Tadashi <sho@spc.gr.jp>
2392
+ * conf.rhtml*: change theme gallery URL.
2393
+ * tdiary.rb, index.rb: be able to change last modified from plugins.
2394
+
2395
+ 2002.12.16 TADA Tadashi <sho@spc.gr.jp>
2396
+ * dot.htaccess: add some comments about ErrorDocument.
2397
+ * 00default.rb: skip hidden diary in navi_user.
2398
+
2399
+ 2002.12.15 TADA Tadashi <sho@spc.gr.jp>
2400
+ * 00default.rb, 00lang.en.rb: fix wrong title tag when NYEAR mode.
2401
+
2402
+ 2002.12.13 TADA Tadashi <sho@spc.gr.jp>
2403
+ * 00default.rb, 00lang.en.rb: prev and next navi when NYEAR mode, more.
2404
+ * default.css: a little change in list elements.
2405
+
2406
+ 2002.12.11 TADA Tadashi <sho@spc.gr.jp>
2407
+ * 00default.rb: prev and next navi when NYEAR mode.
2408
+
2409
+ 2002.12.04 Junichiro Kita <kita@kitaj.no-ip.com>
2410
+ * plugin/00default.rb: bugfix in navi_user.
2411
+
2412
+ 2002.12.02 TADA Tadashi <sho@spc.gr.jp>
2413
+ * tdiary1.css: convert for 1.5 or later.
2414
+ * misc/i18n/00lang.en.rb: add nyear labels.
2415
+ * update English documents. thanks Mizuho <gha@intrastore.cdc.com>.
2416
+ * add theme/base.css for basic styles.
2417
+ * footer.rhtml: move footer_proc before div.footer.
2418
+
2419
+ 2002.12.02 Junichiro Kita <kita@kitaj.no-ip.com>
2420
+ * skel/diary.rhtml: let nyear into <span>.
2421
+
2422
+ 2002.12.01 Junichiro Kita <kita@kitaj.no-ip.com>
2423
+ * doc/HOWTO-make-plugin.html: add about footer_proc.
2424
+
2425
+ 2002.12.01 Junichiro Kita <kita@kitaj.no-ip.com>
2426
+ * merge from Test_NYEAR.
2427
+
2428
+ 2002.11.26 TADA Tadashi <sho@spc.gr.jp>
2429
+ * tdiary.net -> tdiary.org.
2430
+
2431
+ 2002.11.25 TADA Tadashi <sho@spc.gr.jp>
2432
+ * update documents. thanks Mizuho <gha@intrastore.cdc.com>.
2433
+
2434
+ 2002.11.20 TADA Tadashi <sho@spc.gr.jp>
2435
+ * fix: bad last modified setting in CommentManager::add_comment.
2436
+
2437
+ 2002.11.19 TADA Tadashi <sho@spc.gr.jp>
2438
+ * tdiary.rb: remove a debugging message.
2439
+ * defaultio.rb, pstoreio.rb: support Ruby 1.6.8 (ad hoc).
2440
+ * show.rhtml: make anchor name of section.
2441
+
2442
+ 2002.11.18 TADA Tadashi <sho@spc.gr.jp>
2443
+ * remove Japanese char in diary.rhtml and 00lang.en.rb.
2444
+ * fix: setting default values in Config.
2445
+ * release 1.5.1.
2446
+
2447
+ 2002.11.17 TADA Tadashi <sho@spc.gr.jp>
2448
+ * specify configuration value in default.
2449
+ * navi_user plugin: send Time object to navi_{prev|next}_diary.
2450
+
2451
+ 2002.11.16 Minero Aoki <aamine@loveruby.net>
2452
+ * avoid ruby 1.7 warnings.
2453
+
2454
+ 2002.11.13 TADA Tadashi <sho@spc.gr.jp>
2455
+ * update docs.
2456
+
2457
+ 2002.11.13 Junichiro Kita <kita@kitaj.no-ip.com>
2458
+ *index.rb: fix: put cookies into head after tdiary.eval_rhtml.
2459
+
2460
+ 2002.11.12 TADA Tadashi <sho@spc.gr.jp>
2461
+ * skel/*.en: marge some files to language independent revision.
2462
+ * tdiary.rb: fix: rescue plugin error.
2463
+ * defaultio.rb, pstoreio.rb: remove white space in the top of paragraph.
2464
+
2465
+ 2002.11.11 TADA Tadashi <sho@spc.gr.jp>
2466
+ * tdiary.rb: TDiaryBase#mode method added.
2467
+
2468
+ 2002.11.08 Junichiro Kita <kita@kitaj.no-ip.com
2469
+ * 00default.rb: use @years to make links to prev/next month in navi_user
2470
+
2471
+ 2002.11.09 TADA Tadashi <sho@spc.gr.jp>
2472
+ * add TDiary::Config::mobile_agent? (for squeeze's error...)
2473
+
2474
+ 2002.11.08 Junichiro Kita <kita@kitaj.no-ip.com
2475
+ * merge navi_user_light.rb into 00default.rb
2476
+
2477
+ 2002.11.08 TADA Tadashi <sho@spc.gr.jp>
2478
+ * @lang in tdiary.conf and add English resources.
2479
+
2480
+ 2002.11.07 TADA Tadashi <sho@spc.gr.jp>
2481
+ * tdiary.conf.sample: fix Regexp of private address in @no_referer.
2482
+ * dot.htaccess: more condition setting for 'YYYYMMDD.html' style.
2483
+ * add @plugin_path into conf.
2484
+
2485
+ 2002.11.05 TADA Tadashi <sho@spc.gr.jp>
2486
+ * misc/i18n/*: spell checking.
2487
+
2488
+ 2002.11.02 TADA Tadashi <sho@spc.gr.jp>
2489
+ * doc/HOWTO-make-theme.html: add about font-size and div.sidebar, themebench2.
2490
+
2491
+ 2002.10.30 TADA Tadashi <sho@spc.gr.jp>
2492
+ * misc/i18n/*: add English documents(draft), thanks Mizuho <gha@intrastore.cdc.com>.
2493
+
2494
+ 2002.10.29 Junichiro Kita <kita@kitaj.no-ip.com>
2495
+ * tdiary.rb: rescue ArgumentError in parser_cache
2496
+
2497
+ 2002.10.28 TADA Tadashi <sho@spc.gr.jp>
2498
+ * misc/mail-via-*: follow up for TDiary::Config.
2499
+
2500
+ 2002.10.23 TADA Tadashi <sho@spc.gr.jp>
2501
+ * Config#hide_comment_form.
2502
+ * fix bug: waste sending mail when no body of comment.
2503
+
2504
+ 2002.10.22 TADA Tadashi <sho@spc.gr.jp>
2505
+ * remove misc/squeeze.rb. use squeeze.rb in the plugin collection.
2506
+
2507
+ 2002.10.17 TADA Tadashi <sho@spc.gr.jp>
2508
+ * fix(?) bug(?) of 'YYYYMMDD.html' style.
2509
+
2510
+ 2002.10.12 TADA Tadashi <sho@spc.gr.jp>
2511
+ * support 'YYYYMMDD.html' style using ErrorDocument.
2512
+ * fix about reading hidden mode.
2513
+
2514
+ 2002.10.07 TADA Tadashi <sho@spc.gr.jp>
2515
+ * fix @mode value in TDiary::TDiaryBase#load_plugins.
2516
+
2517
+ 2002.10.03 TADA Tadashi <sho@spc.gr.jp>
2518
+ * merge with Test_TDiary_module branch, so...
2519
+ * split namespace by TDiary module.
2520
+ * load plugin files in TDiary::Plugin class.
2521
+ * split TDiary::Config class.
2522
+ * add @conf into Plugin class.
2523
+ * HOWTO-make-io.rd: update.
2524
+ * HOWTO-make-plugin.html: update.
2525
+
2526
+ 2002.09.30 Hiroyuki Ikezoe <zoe@kasumi.sakura.ne.jp>
2527
+ * update.rhtml: add "update" into class selector in <div class="day">.
2528
+ * conf.rhtml: add "conf" into class selector in <div class="day">.
2529
+
2530
+ 2002.09.29 TADA Tadashi <sho@spc.gr.jp>
2531
+ * misc/posttdiary.rb:fix bug when boundary has special character of Regexp.
2532
+
2533
+ 2002.09.28 TADA Tadashi <sho@spc.gr.jp>
2534
+ * update.rb: remove an unnecessary </div>.
2535
+
2536
+ 2002.09.24 TADA Tadashi <sho@spc.gr.jp>
2537
+ * i.update.rhtml: fix typo.
2538
+
2539
+ 2002.09.16 TADA Tadashi <sho@spc.gr.jp>
2540
+ * update.rhtml: class="field" into all input field element.
2541
+
2542
+ 2002.09.15 TADA Tadashi <sho@spc.gr.jp>
2543
+ * tdiary.rb: fix bug in TDiaryAppend and TDiaryReplace: title= -> set_title.
2544
+
2545
+ 2002.09.13 TADA Tadashi <sho@spc.gr.jp>
2546
+ * HOWTO-make-io.rd: about Section#body.
2547
+
2548
+ 2002.09.12 TADA Tadashi <sho@spc.gr.jp>
2549
+ * index.rb: redirect using by meta element after comment posting.
2550
+
2551
+ 2002.09.11 TADA Tadashi <sho@spc.gr.jp>
2552
+ * update documents for 1.5 features.
2553
+ * 00default.rb, doc/*.html: HTML 4.01 Strict DOCTYPE.
2554
+
2555
+ 2002.09.10 TADA Tadashi <sho@spc.gr.jp>
2556
+ * tdiary.rb: argument check in DiaryBase#set_date.
2557
+ * HOWTO-make-io.html -> HOWTO-make-io.rd.
2558
+
2559
+ 2002.09.09 TADA Tadashi <sho@spc.gr.jp>
2560
+ * tdiary.rb: implement DiaryBase#title, DiaryBase#set_title.
2561
+ * defaultio.rb, pstoreio.rb: remove title, title=, date method.
2562
+ * rename method: Section#text -> to_src.
2563
+
2564
+ 2002.08.26 TADA Tadashi <sho@spc.gr.jp>
2565
+ * tdiary.rb: change TDiary::DIRTY_NONE false to zero.
2566
+ * tdiary.rb, diary.rhtml: add CommentManager#each_visible_comment.
2567
+ * tdiary.conf.sample: referer_table update.
2568
+ * pstoreio.rb: fix determination of dirty flag.
2569
+ * defaultio.rb: enable hidden comment flag.
2570
+
2571
+ 2002.08.25 TADA Tadashi <sho@spc.gr.jp>
2572
+ * defaultio.rb: fix about lost hidden comments at saving. thanks Mizuho <gha@intrastore.cdc.com>.
2573
+ * update.rhtml: change format of comments.
2574
+
2575
+ 2002.08.22 TADA Tadashi <sho@spc.gr.jp>
2576
+ * defaultio.rb: untaint directory name in calendar method. thanks Mizuho <gha@intrastore.cdc.com>.
2577
+
2578
+ 2002.08.16 TADA Tadashi <sho@spc.gr.jp>
2579
+ * tdiary.rb: create cache directory before using parser cache. thanks Mizuho <gha@intrastore.cdc.com>.
2580
+ * paragraph_anchor -> section_anchor.
2581
+ * theme: panchor -> sanchor.
2582
+ * tdiary.rb: @ignore_parser_cache for yasqeeze.
2583
+
2584
+ 2002.08.13 TADA Tadashi <sho@spc.gr.jp>
2585
+ * tdiary.rb, defaultio.rb pstoreio.rb: change interface of io#transaction method.
2586
+ * diary#each_paragraph -> each_section
2587
+ * update.rhtml, defaultio.rb pstoreio.rb: to_text -> to_src.
2588
+ * HOWTO-make-io.html: add a document for IO class builders (cont.)
2589
+
2590
+ 2002.08.07 TADA Tadashi <sho@spc.gr.jp>
2591
+ * update.rhtml: replace Diary#each_paragraph to Diary#to_text.
2592
+
2593
+ 2002.08.06 TADA Tadashi <sho@spc.gr.jp>
2594
+ * diary.rhtml: remove commenttitle class.
2595
+ * tdiary.rb: call plugins after posting a comment.
2596
+ * tdiary.rb: use Plugin#anchor to make new location after posting comment.
2597
+
2598
+ 2002.08.05 TADA Tadashi <sho@spc.gr.jp>
2599
+ * tdiary.rb, defaultio.rb: implement parser cache.
2600
+ * defaultio.rb: split modules CommentIO and RefererIO.
2601
+ * tdiary.rb, defaultio.rb: optimize dirty flags.
2602
+
2603
+ 2002.07.25 TADA Tadashi <sho@spc.gr.jp>
2604
+ * tdiary.rb: fix of bad fragment of redirection after posting comment. thanks NT.
2605
+ * diary.rhtml: separate CR/LF in comments by <br>: try again.
2606
+ * append text when the target diary existed on replace mode (porting from Rev.1.31.2.4).
2607
+
2608
+ 2002.07.24 TADA Tadashi <sho@spc.gr.jp>
2609
+ * index.rb, tdiary.rb: redirect to day page after posting comment.
2610
+ * diary.rhtml: separate CR/LF in comments by <br>: more try.
2611
+ * defaultio.rb: cut surplus \n in tail of comments.
2612
+
2613
+ 2002.07.23 TADA Tadashi <sho@spc.gr.jp>
2614
+ * diary.rhtml: separate CR/LF in comments by <br>.
2615
+ * defauldio.rb: restore last modified into diaries.
2616
+ * convert2.rb: fix bugs.
2617
+
2618
+ 2002.06.01 TADA Tadashi <sho@spc.gr.jp>
2619
+ * defaultio.rb: fix IO#calendar.
2620
+ * defaultio.rb: fix tDiary2 parser.
2621
+
2622
+ 2002.05.31 TADA Tadashi <sho@spc.gr.jp>
2623
+ * 00default.rb: remove media="all" from meta element in HTML header.
2624
+ * implement tDiary2 file format [update support].
2625
+ * update.rhtml, default.css: change class of 'hide diary' checkbox 'hide' to 'hidediary'.
2626
+
2627
+ 2002.05.30 TADA Tadashi <sho@spc.gr.jp>
2628
+ * implement tDairy2 file format [read only].
2629
+ * diary.rhtml, update.rhtml: change class of form.
2630
+ * misc/convert2.rb: added.
2631
+
2632
+ 2002.05.23 TADA Tadashi <sho@spc.gr.jp>
2633
+ * follow i.diary.rhtml also.
2634
+ * diary.rhtml: add <div ...> into referer list.
2635
+
2636
+ 2002.05.22 TADA Tadashi <sho@spc.gr.jp>
2637
+ * split DiaryBase module from Diary class.
2638
+ * generate diary body in Diary class.
2639
+
2640
+ 2002.05.21 TADA Tadashi <sho@spc.gr.jp>
2641
+ * generate new HTML.
2642
+
2643
+ 2002.05.20 TADA Tadashi <sho@spc.gr.jp>
2644
+ * fix security hole about apply plugin.
2645
+
2646
+ 2002.05.16 TADA Tadashi <sho@spc.gr.jp>
2647
+ * replace new default theme.
2648
+
2649
+ 2002.05.15 TADA Tadashi <sho@spc.gr.jp>
2650
+ * split CommentManager and RefererManager from Diary class.
2651
+ * move theme files into each directory.
2652
+
2653
+ 2002.05.14 TADA Tadashi <sho@spc.gr.jp>
2654
+ * split IO class to tdiary/pstoreio.rb.
2655
+ * tdiary.rb: move transaction to IO classes.
2656
+ * tdiary.rb: rename make_years to calendar and move to IO class.
2657
+ * tdiary.rb: move Diary and Paragraph class to pstoreio.rb.
2658
+ * enable define @cache_path in tdiary.conf.
2659
+ * add String#shorten.
2660
+
2661
+ 2002.05.14 TADA Tadashi <sho@spc.gr.jp>
2662
+ * tdiary.rb: ignore $KCODE in disp_referer.
2663
+ * tdiary.conf.sample: shorten referer URL in @referer_table.
2664
+
2665
+ 2002.05.12 TADA Tadashi <sho@spc.gr.jp>
2666
+ * 1.4.2.
2667
+ * README.html: add notice about copyright of themes and plugins.
2668
+
2669
+ 2002.04.26 TADA Tadashi <sho@spc.gr.jp>
2670
+ * remove Plugin#eval_rhtml.
2671
+
2672
+ 2002.04.24 TADA Tadashi <sho@spc.gr.jp>
2673
+ * i.day.rhtml, i.show.rhtml: call update_proc when comment added.
2674
+ * tdiary.rb: suppress result string in Plugin#update_proc.
2675
+
2676
+ 2002.04.23 TADA Tadashi <sho@spc.gr.jp>
2677
+ * tdiary.rb: cache file change .rhtml -> .rb. thanks sakai <s01397ms@sfc.keio.ac.jp>.
2678
+ * add skel/plugin_error.rhtml and change message when errors in plugin.
2679
+ * HOWTO-make-plugin.html: add about @debug.
2680
+
2681
+ 2002.04.23 MUTOH Masao <mutoh@highway.ne.jp>
2682
+ * tdiary.rb: add @debug for Plugin#method_missing.
2683
+
2684
+ 2002.04.21 TADA Tadashi <sho@spc.gr.jp>
2685
+ * i.diary.rhtml: fix bug of paragraph number increment.
2686
+
2687
+ 2002.04.19 TADA Tadashi <sho@spc.gr.jp>
2688
+ * i.diary.rhtml: fix bug of paragraph number.
2689
+
2690
+ 2002.04.18 TADA Tadashi <sho@spc.gr.jp>
2691
+ * justify mail address auto-link in comment.
2692
+
2693
+ 2002.04.17 TADA Tadashi <sho@spc.gr.jp>
2694
+ * tdiary.rb: change version.
2695
+ * HOWTO-make-plugin.html: add about methods in Plugin.
2696
+ * doc/*: some bugs fixed.
2697
+
2698
+ 2002.04.17 MUTOH Masao <mutoh@highway.ne.jp>
2699
+ * index.rb, tdiary.rb: add Plugin#add_cookie.
2700
+
2701
+ 2002.04.16 TADA Tadashi <sho@spc.gr.jp>
2702
+ * misc/posttdiary.rb:bmp support for feelH". if found Ruby::Magick use it, else use convert.
2703
+
2704
+ 2002.04.07 TADA Tadashi <sho@spc.gr.jp>
2705
+ * misc/posttdiary.rb:fix mojibake: -mQ -> -m0.
2706
+
2707
+ 2002.04.05 TADA Tadashi <sho@spc.gr.jp>
2708
+ * 1.4.1
2709
+
2710
+ 2002.04.05 TADA Tadashi <sho@spc.gr.jp>
2711
+ * misc/posttdiary.rb: set permission of image to readable everybody.
2712
+ * misc/posttdiary.rb:--image-path and --image-url options.
2713
+
2714
+ 2002.04.02 TADA Tadashi <sho@spc.gr.jp>
2715
+ * conf.rhtml: make link to new Theme Gallery.
2716
+ * conf.rhtml: add notify about comment mail sent to.
2717
+ * update erb to 1.4.3.
2718
+
2719
+ 2002.03.28 TADA Tadashi <sho@spc.gr.jp>
2720
+ * default.css: no underline for links.
2721
+
2722
+ 2002.03.27 TADA Tadashi <sho@spc.gr.jp>
2723
+ * index.rb, update.rb: $:.unshift orig_path.
2724
+ * tdiary.rb: fail safe check for @data_path.
2725
+
2726
+ 2002.03.26 TADA Tadashi <sho@spc.gr.jp>
2727
+ * @options support in tdiary.conf and plugins.
2728
+
2729
+ 2002.03.22 TADA Tadashi <sho@spc.gr.jp>
2730
+ * tdiary.rb: Plugin#add_xxx_proc can receive a block.
2731
+ * 00default.rb: follow new add_xxx_proc style.
2732
+ * HOWTO-make-plugin.html: follow new add_xxx_proc style.
2733
+ * diary.rhtml: escape HTML in comment form.
2734
+ * tdiary.rb: shorten commentator's name and mail address validation in comment mail.
2735
+
2736
+ 2002.03.20 TADA Tadashi <sho@spc.gr.jp>
2737
+ * doctype plugin.
2738
+ * add HTML 4.01 Tr DTD's URL into default DOCTYPE. [testing]
2739
+
2740
+ 2002.03.18 TADA Tadashi <sho@spc.gr.jp>
2741
+ * tdiary.rb: fix comment mail subject was wrong.
2742
+
2743
+ 2002.03.17 TADA Tadashi <sho@spc.gr.jp>
2744
+ * 1.4.0
2745
+ * conf.rhtml, tdiary.conf.sample, default.css: image anchor in default.
2746
+ * tdiary.rb: no referer saving into hidden diary.
2747
+ * update documents.
2748
+
2749
+ 2002.03.15 TADA Tadashi <sho@spc.gr.jp>
2750
+ * tdiary.rb: fix duplicated referer on day mode.
2751
+ * update.rb: move hide checkbox to right of submit button.
2752
+
2753
+ 2002.03.14 TADA Tadashi <sho@spc.gr.jp>
2754
+ * update.rhtml: remove 'class="commenttitle"' from changing comment status button.
2755
+ * default.css: add style for blockquote and some plugins.
2756
+
2757
+ 2002.03.12 TADA Tadashi <sho@spc.gr.jp>
2758
+ * update erb to 1.4.0.
2759
+ * taint @body_{enter,leave}_procs in Plugin class.
2760
+
2761
+ 2002.03.11 TADA Tadashi <sho@spc.gr.jp>
2762
+ * tdiary.rb, mail.rtxt: fix mime bug in From and Subject of comment mail.
2763
+
2764
+ 2002.03.09 TADA Tadashi <sho@spc.gr.jp>
2765
+ * tdiary.conf.sapmle: add notice about documentation in @footer.
2766
+
2767
+ 2002.03.09 TADA Tadashi <sho@spc.gr.jp>
2768
+ * 1.3.4
2769
+
2770
+ 2002.03.08 TADA Tadashi <sho@spc.gr.jp>
2771
+ * mail.rtxt: add white space after serial in subject.
2772
+
2773
+ 2002.03.07 TADA Tadashi <sho@spc.gr.jp>
2774
+ * add doc/HOWTO-make-theme.html.
2775
+ * tdiary.rb: join all lines in Comment#shorten.
2776
+
2777
+ 2002.03.06 TADA Tadashi <sho@spc.gr.jp>
2778
+ * @mail_header accept the format of Time#strftime.
2779
+
2780
+ 2002.03.05 TADA Tadashi <sho@spc.gr.jp>
2781
+ * documents moved to doc.
2782
+ * HOWTO-use-plugin.html, HOWTO-make-plugin.html: add.
2783
+ * remove sample plugins.
2784
+ * tdiary.rb: change to_mime to return array.
2785
+
2786
+ 2002.03.05 Kazuhiko <kazuhiko@fdiary.net>
2787
+ * tdiary.conf.sample, conf.rhtml: remove restriction of using Japanese in @mail_header.
2788
+ * skel/mail.rtxt: (Subject) use @date_format instead of '%Y-%m-%d'.
2789
+ * tdiary.rb: specify a message_id by hour, minute and second to avoid possible message_id confliction. exclude @mail_header from a message_id so as to avoid non-ascii character.
2790
+
2791
+ 2002.03.04 TADA Tadashi <sho@spc.gr.jp>
2792
+ * jtime.rb: add description.
2793
+
2794
+ 2002.03.02 TADA Tadashi <sho@spc.gr.jp>
2795
+ * tdiary.conf.sample: fix comment of @latest_limit.
2796
+
2797
+ 2002.03.01 TADA Tadashi <sho@spc.gr.jp>
2798
+ * i.update.rhtml: adjust comment number when some comments hidden.
2799
+ * add 'anchor' plugin. for mod_rewrite.
2800
+ * add 'my' plugin.
2801
+
2802
+ 2002.02.28 TADA Tadashi <sho@spc.gr.jp>
2803
+ * tdiary.rb, update.rhtml: adjust comment number when some comments hidden.
2804
+
2805
+ 2002.02.27 TADA Tadashi <sho@spc.gr.jp>
2806
+ * i.diary.rhtml: paragraph/comment anchor fixed in mobile mode.
2807
+ * squeeze.rb: add -c option and other changes.
2808
+
2809
+ 2002.02.26 TADA Tadashi <sho@spc.gr.jp>
2810
+ * tdiary.rb: fix when wrong file in @data_path.
2811
+
2812
+ 2002.02.23 TADA Tadashi <sho@spc.gr.jp>
2813
+ * mail-via-{qmail,sendmail}.rb: fix typo.
2814
+ * recent_list: fix paragraph numbering.
2815
+
2816
+ 2002.02.22 Daisuke Kato <dai@kato-agri.com>
2817
+ * posttdiary.rb: support Multipart Mail.
2818
+
2819
+ 2002.02.22 TADA Tadashi <sho@spc.gr.jp>
2820
+ * *.css: valid by W3C. thanks shinchan <stakei@nga.jp>.
2821
+ * update.rhtml, i.update.rhtml: change tabsindexs.
2822
+ * recent_comment.rb: update by kitaj <kita@kitaj.no-ip.com>.
2823
+
2824
+ 2002.02.21 TADA Tadashi <sho@spc.gr.jp>
2825
+ * recent_comment.rb: fix by zoe.
2826
+
2827
+ 2002.02.20 TADA Tadashi <sho@spc.gr.jp>
2828
+ * update.rhtml, i.update.rhtml: move hide box below submit button.
2829
+ * document maintenance.
2830
+ * theme: add wiLL.css.
2831
+ * misc/plugin: add recent_list.rb, calendar2.rb, recent_comment.rb, comment_rank.rb.
2832
+ * title_list.rb: HTML tags have compatibility with recent_list.
2833
+
2834
+ 2002.02.19 TADA Tadashi <sho@spc.gr.jp>
2835
+ * tdiary.rb: enable when no @no_referer in tdiary.conf.
2836
+ * tdiary.rb: untaint cache file name when clear cache.
2837
+ * tdiary.rb: rescue when errors in eval plugins.
2838
+ * tdiary.rb, diary.rhtml, i.diary.rhtml: [testing] body_{enter|leave}_proc plugin.
2839
+ * tdiary.rb, update.rhtml, i.update.rhtml: support hidden diary.
2840
+ * tdiary.rb, diary.rhtml, i.diary.rhtml: correct count of comments by Diary#count_comments.
2841
+ * misc/jtime.rb: added.
2842
+ * tdiary.rb: clear cache after changing comment status.
2843
+
2844
+ 2002.02.12 TADA Tadashi <sho@spc.gr.jp>
2845
+ * mail.rhtml: URL change.
2846
+ * 00default.rb: escape HTML tags in referer table. thanks KT <pakira@bd6.so-net.ne.jp>.
2847
+
2848
+ 2002.02.07 TADA Tadashi <sho@spc.gr.jp>
2849
+ * tdiary.rb, 00default.rb: leap second again.
2850
+ * dot.htaccess: ExecCGI -> +ExecCGI.
2851
+ * tdiary.rb: mail-via-smtp as default.
2852
+ * tdiary.rb: sort themes in TDiaryConf.
2853
+ * skel/footer.rhtml: www.spc.gr.jp -> www.tdiary.net.
2854
+ * tdiary.rb: correct message_id. thanks woods <sodium@da2.so-net.ne.jp>
2855
+
2856
+ 2002.01.31 TADA Tadashi <sho@spc.gr.jp>
2857
+ * misc/plugin/README.html: fix bug: description of insert plugin.
2858
+ * 00default.rb: support leap second in navi_user.
2859
+ * tdiary.rb: ignore case hostname in Diary#add_referer. thanks munemasa <munemasa@msi.biglobe.ne.jp>.
2860
+ * conf.rhtml: insert 'navi plugin'.
2861
+
2862
+ 2002.01.24 TADA Tadashi <sho@spc.gr.jp>
2863
+ * @@update_proc -> add_update_proc, @@header_proc -> add_header_proc.
2864
+ * modify document misc/plugin/README.html.
2865
+ * call update_proc when a new comment appended.
2866
+ * misc/mail-via-{smtp|qmail|sendmail).rb: added.
2867
+ * UPGRADE: update.
2868
+ * mail.rtxt: add name to subject.
2869
+ * remove name attribute in anchor tag without DAY mode.
2870
+ * fix error in mobile mode.
2871
+
2872
+ 2002.01.23 TADA Tadashi <sho@spc.gr.jp>
2873
+ * add @@header into plugin.
2874
+ * fix error handling for loading plugins.
2875
+ * tdiary.conf.sample: maintain referer_table.
2876
+ * add Plugin's instance var: @cgi, @author_name, @author_mail, @theme, @css, @cookie.
2877
+
2878
+ 2002.01.21 TADA Tadashi <sho@spc.gr.jp>
2879
+ * 1.3.3
2880
+ * tdiary.rb: fix TDiaryLatest#initialize.
2881
+ * tdiary.rb: easy to understand errors in plugins.
2882
+ * @hour_offset support.
2883
+ * 00default.rb: add plugins, "comment_total" and "comment_date".
2884
+
2885
+ 2002.01.13 TADA Tadashi <sho@spc.gr.jp>
2886
+ * 00default.rb: fix navi_user plugin when comment mode.
2887
+ * edit.rb: add new plugin into misc/plugin.
2888
+ * index.rb, update.rb: move 'begin' to top of script.
2889
+ * posttdiary.rb: add into misc.
2890
+
2891
+ 2002.01.12 TADA Tadashi <sho@spc.gr.jp>
2892
+ * misc/posttdiary.rb: added and support null subject.
2893
+
2894
+ 2002.01.10 TADA Tadashi <sho@spc.gr.jp>
2895
+ * fix cache bug.
2896
+ * conf.rhtml: fix typo.
2897
+ * tdiary.rb: bug fix: error when @index_page is nil in navi_user.
2898
+ * dropdown_calendar.rb: fix unclosed tag.
2899
+ * tdiary.rb: cache latest and month.
2900
+ * 00default.rb, diary.rhtml: move referer list to plugin.
2901
+ * tdiary.rb: add to Plugin @data_path and @cache_path.
2902
+
2903
+ 2001.12.26 TADA Tadashi <sho@spc.gr.jp>
2904
+ * 1.3.2
2905
+ * diary.rhtml: add <p class="commenttitle"> when no comment.
2906
+ * themes update for new layout.
2907
+ * tdiary.rb: reverse.each -> reverse_each :-)
2908
+ * 00default.rb: remove title_list.
2909
+ * misc/plugin: added dropdown_calendar.rb, src.rb, title_list.rb.
2910
+ * misc/plugin: documentation of how to use/make plugin as README.html.
2911
+ * update plugin test implement.
2912
+
2913
+ 2001.12.21 TADA Tadashi <sho@spc.gr.jp>
2914
+ * over months in latest mode. thanks gekisive <gekisive@84ch.net>
2915
+ * misc/squeeze.rb: 1.0.1.
2916
+
2917
+ 2001.12.20 TADA Tadashi <sho@spc.gr.jp>
2918
+ * tdiary.rb: add @diaries to Plugin, again.
2919
+ * 00default.rb: bug fix: error when @index_page is empty in navi_user.
2920
+ * diary.rhtml, show.rhtml: hide comment form after update.
2921
+ * follow symlink-shared diary.
2922
+ * 00default.rb: add theme_url.
2923
+ * 00default.rb, *.rhtml: add xxx_label
2924
+ * 00default.rb: add title_list (trial).
2925
+ * CHANGES -> ChangeLog
2926
+
2927
+ 2001.12.19 TADA Tadashi <sho@spc.gr.jp>
2928
+ * tdiary.rb, diary.rhtml: bug fix: adjust number of comments.
2929
+ * tdiary.rb: some refactoring.
2930
+ * tdiary.rb: add @diaries to Plugin.
2931
+ * diary:rhtml: bug fix: @index -> opt['index'] in comment form.
2932
+
2933
+ 2001.12.19 TADA Tadashi <sho@spc.gr.jp>
2934
+ * index.rb, update.rb: remove Accept-Ranges header field in HTTP response.
2935
+ * tdiary.rb: add Plugin#method_missing.
2936
+ * tdiary.rb: comment summary upto 120 bytes.
2937
+ * day.rhtml: move referer list below comment form.
2938
+ * concat all default plugins into 00default.rb.
2939
+ * 00default.rb: split navi to navi_user and navi_admin.
2940
+ * index.rb, update.rb: add Vary header field.
2941
+ * diary.rhtml: change 'More...' to 'Before...'.
2942
+ * diary.rhtml: add '<div class="section">...</div>'.
2943
+
2944
+ 2001.12.17 TADA Tadashi <sho@spc.gr.jp>
2945
+ * fix bug: error with mod_ruby.
2946
+
2947
+ 2001.12.16 TADA Tadashi <sho@spc.gr.jp>
2948
+ * 1.3.1
2949
+ * moved *.rhtml *.rtxt *.rconf to skel/.
2950
+ * plugin support. thanks kitaj <kita@kitaj.no-ip.com>.
2951
+ * calendar and insert to plugin.
2952
+ * added navi plugin.
2953
+
2954
+ 2001.11.26 TADA Tadashi <sho@spc.gr.jp>
2955
+ * index.rb, update.rb: $defout.binmode.
2956
+ * link to tDiary Themes.
2957
+ * misc/squeeze.rb: added.
2958
+ * diary.rhtml: escape html to comment.name.
2959
+
2960
+ 2001.11.18 TADA Tadashi <sho@spc.gr.jp>
2961
+ * tdiary.rb, diary.rhtml: HTMLescape for referer.
2962
+
2963
+ 2001.11.15 TADA Tadashi <sho@spc.gr.jp>
2964
+ * index.rb, tdiary.rb: trapped permission error again.
2965
+
2966
+ 2001.11.12 TADA Tadashi <sho@spc.gr.jp>
2967
+ * index.rb, tdiary.rb: trapped permission error.
2968
+ * tdiary.rb: PStore#abort when unless @dirty. thanks sakai <zvm01052@nifty.ne.jp>.
2969
+
2970
+ 2001.10.12 TADA Tadashi <sho@spc.gr.jp>
2971
+ * tdiary.rb: fix no effective show_referer/show_comment in CGI conf.
2972
+
2973
+ 2001.10.01 TADA Tadashi <sho@spc.gr.jp>
2974
+ * tdiary.rb: Xiino and L-mode into mobile terminal.
2975
+ * tdiary.conf.sample: referer_table update.
2976
+ * tdiary.rb: added 'Xiino' to mobile agent list.
2977
+ * tdiary.rb: fix error when no @smtp_host and @mail_on_comment == true.
2978
+ * tdiary.rb: different TZ problem fix(?).
2979
+
2980
+ 2001.09.01 TADA Tadashi <sho@spc.gr.jp>
2981
+ * 1.2.0
2982
+ * tdiary.conf.sample: added some search engines into referer_table.
2983
+ * UPGRADE: added.
2984
+ * Document update.
2985
+ * tdiary.rb: exactly match for no_referer.
2986
+
2987
+ 2001.08.30 TADA Tadashi <sho@spc.gr.jp>
2988
+ * update.rb: remove no-cache.
2989
+ * HOWTO-write-tDiary.html: added.
2990
+ * update.rhtml: hide change comment mode button when no comments.
2991
+
2992
+ 2001.08.27 TADA Tadashi <sho@spc.gr.jp>
2993
+ * 1.1.4
2994
+ * repackage.
2995
+ * tdiary.conf.sample: document update.
2996
+
2997
+ 2001.08.27 TADA Tadashi <sho@spc.gr.jp>
2998
+ * split referer.rhtml from conf.rhtml.
2999
+ * update/configuration page for i-mode.
3000
+
3001
+ 2001.08.24 TADA Tadashi <sho@spc.gr.jp>
3002
+ * add Windows CE's IE to mobile terminal.
3003
+
3004
+ 2001.08.19 TADA Tadashi <sho@spc.gr.jp>
3005
+ * theme: maroon by Shinchan.
3006
+
3007
+ 2001.08.18 TADA Tadashi <sho@spc.gr.jp>
3008
+ * add ASTEL DOTi and H" to mobile terminal.
3009
+ * @index, @update.
3010
+ * owner can hide any comments.
3011
+
3012
+ 2001.08.17 TADA Tadashi <sho@spc.gr.jp>
3013
+ * 1.1.3
3014
+ * support mod_ruby completely.
3015
+ * tdiary.rb: fix make_link when URL have '@' in it.
3016
+ * add Zaurus to mobile terminal.
3017
+ * diary.conf: hidden 'new comment' when @show_comment was false.
3018
+
3019
+ 2001.08.16 TADA Tadashi <sho@spc.gr.jp>
3020
+ * testing for mod_ruby (3).
3021
+
3022
+ 2001.08.16 TADA Tadashi <sho@spc.gr.jp>
3023
+ * testing for mod_ruby (2).
3024
+
3025
+ 2001.08.11 TADA Tadashi <sho@spc.gr.jp>
3026
+ * testing for mod_ruby.
3027
+
3028
+ 2001.08.07 TADA Tadashi <sho@spc.gr.jp>
3029
+ * 1.1.2
3030
+ * conf.rhtml: CGI::escapeHTML for each data.
3031
+
3032
+ 2001.08.03 TADA Tadashi <sho@spc.gr.jp>
3033
+ * tdiary.rb: fix bug not saving @latest_limit via CGI.
3034
+ * tdiary.rb: secure CGI setting. changing format of @data_path/tdiary.conf.
3035
+ * header.rhtml: showing error message.
3036
+ * diary.rhtml: link of "making new comment".
3037
+ * conf.rhtml: fix bug: display diff @no_referer2/@referer_table2 and @no_referer/@referer_table.
3038
+
3039
+ 2001.07.30 TADA Tadashi <sho@spc.gr.jp>
3040
+ * 1.1.1
3041
+ * theme: line, nebula by zoe.
3042
+ * configuration via CGI.
3043
+ * index.rb, update.rb: no-cache.
3044
+ * errata: "auther" -> "author" (^^;
3045
+ * changing term: "Referer" -> "リンク元"
3046
+
3047
+ 2001.07.25 TADA Tadashi <sho@spc.gr.jp>
3048
+ * tdiary.rb: fix bug bad cookie when running on root directory.
3049
+
3050
+ 2001.07.21 TADA Tadashi <sho@spc.gr.jp>
3051
+ * <%=calendar%> added into tdiary.conf.sample.
3052
+
3053
+ 2001.07.20 TADA Tadashi <sho@spc.gr.jp>
3054
+ * make editable when multi user mode.
3055
+ * @date_format for comment.
3056
+ * referer_table into title attr in referer list.
3057
+ * Diary#eval_rhtml requires Hash parameter.
3058
+
3059
+ 2001.07.19 TADA Tadashi <sho@spc.gr.jp>
3060
+ * @date_format.
3061
+
3062
+ 2001.07.18 TADA Tadashi <sho@spc.gr.jp>
3063
+ * testing code for multi user mode.
3064
+
3065
+ 2001.07.14 TADA Tadashi <sho@spc.gr.jp>
3066
+ * 1.1.0
3067
+ * making theme directory, and move default.css to theme.
3068
+ * theme: desert, lovely, midnight, pool side.
3069
+ * header and footer eval eRuby in Element class.
3070
+
3071
+ 2001.07.05 TADA Tadashi <sho@spc.gr.jp>
3072
+ * 1.0.1
3073
+ * tdiary.rb: white space to '&nbsp;' in String#make_link.
3074
+ * calender -> calendar (^^;
3075
+ * mail.rtxt: add MIME-Version on header.
3076
+ * index.rb, tdiary.rb: force latest mode when incorrect date specified.
3077
+ * tdiary.conf.sample, README.html: 'Mary Diary' into @referer_table.
3078
+ * README.html: hoge.net -> hoge.example (as RFC2606).
3079
+ * tdiary.rb: 'anonymouse@anywhere' -> @auther_mail.
3080
+
3081
+ 2001.07.01 TADA Tadashi <sho@spc.gr.jp>
3082
+ * 1.0.0
3083
+ * tdiary.rb: fix referer duplicated on latest day bug.
3084
+ * release.
3085
+
3086
+ 2001.06.29 TADA Tadashi <sho@spc.gr.jp>
3087
+ * 0.9.9.5
3088
+ * tdiary.rb: char code force to EUC-JP
3089
+ * update.rhtml: referer_table apply to update.
3090
+ * header.rhtml: insert generator.
3091
+ * tdiary.rb: no saving duplicated comments.
3092
+ * update.rhtml: unescapeHTML for title.
3093
+ * diary.rhtml, default.css: <p> to <h3> on subtitle.
3094
+ * day.rhtml: button of previous/next day.
3095
+ * diary.rhtml: SPACE and TAB change to &nbsp; on comment.
3096
+ * default.css: hr.sep { display: none; }
3097
+ * tdiary.rb: suppress '?\d{8}' of referer URL.
3098
+ * tdiary.rb: text_save. thanks densuke <densuke-web@usi.dyndns.org>
3099
+ * update.rhtml: add @referer_table.
3100
+
3101
+ 2001.06.16 TADA Tadashi <sho@spc.gr.jp>
3102
+ * 0.9.9
3103
+ * tdiary.rb: fix referer saving bug on TDiaryDay.
3104
+ * tdiary.rb: ignore case when compare referers.
3105
+ * tdiary.conf.sample: fix typo.
3106
+
3107
+ 2001.06.16 TADA Tadashi <sho@spc.gr.jp>
3108
+ * 0.9.8
3109
+ * saving name and mail of comment by cookie.
3110
+
3111
+ 2001.06.15 TADA Tadashi <sho@spc.gr.jp>
3112
+ * 0.9.7
3113
+ * tdiary.rb: using unescaped URL for referer's key.
3114
+ * month.rhtml: fix error when no 1st day on MONTH mode.
3115
+ * tdiary.rb: compare @no_referer with unescaped referer.
3116
+ * tdiary.rb: fix add_referer miss type.
3117
+ * tdiary.rb, index.rb: Palmscape/ezWeb/J-PHONE support.
3118
+ * i.header.rhtml: date in <title>
3119
+ * tdiary.rb: method 'title' in TDiaryView
3120
+ * tdiary.rb: show always latest month on view mode.
3121
+ * tdiary.rb: TDiary{Day|Comment|Month|Latest} classes.
3122
+ * tdiary.rb: mail on comment.
3123
+ * tdiary.rb, day.rhtml: referer_table.
3124
+
3125
+ 2001.06.12 TADA Tadashi <sho@spc.gr.jp>
3126
+ * 0.9.6
3127
+ * tdiary.rb: fix referer bug.
3128
+
3129
+ 2001.06.12 TADA Tadashi <sho@spc.gr.jp>
3130
+ * 0.9.5
3131
+ * header.rhtml: disable CSS for Netscape 4.
3132
+ * header.rhtml: date for <title> tag.
3133
+ * footer.rhtml: 'powerd' -> 'powered'.
3134
+ * tdiary.rb: fix make_link '&' bug.
3135
+ * tdiary.rb: unescape referer.
3136
+ * diary.rhtml: to_euc for referer URL.
3137
+ * diary.rhtml: idx -> count on today's referer.
3138
+ * diary.rhtml, i.diary.rhtml: enable Tagged paragraph after subtitle.
3139
+ Thanks for Masahiro Sakai <zvm01052@nifty.ne.jp>
3140
+ * index.rb, update.rb: using /usr/bin/env.
3141
+
3142
+ 2001.05.18 TADA Tadashi <sho@spc.gr.jp>
3143
+ * 0.9.4
3144
+ * i-mode support (view only)
3145
+ * tdiary.rb: fixed Last-Modified bug.
3146
+ * rename: admin.rb -> update.rb
3147
+ * move: ../tdiary.css -> default.css
3148
+ * anchor for comments.
3149
+ * .diary: @paragraph_anchor, @comment_anchor, @limit_latest
3150
+ * document as README.html.
3151
+
3152
+ 2001.05.14 TADA Tadashi <sho@spc.gr.jp>
3153
+ * 0.9.3
3154
+ * tdiary.css: hr.sep class
3155
+ * tdiary.conf support
3156
+ * move: data path
3157
+ * move: admin/index.rb -> admin.rb
3158
+
3159
+ 2001.04.25 TADA Tadashi <sho@spc.gr.jp>
3160
+ * 0.9.2
3161
+ * tdiary.rb: fixed Last-Modified bug.
3162
+ * diary.rhtml: split paragraphs when a Paragraph object have some line.
3163
+ * tdiary.rb: saving referer only starting with 'http://'.
3164
+ * diary.rhtml: unescape referer URL when display.
3165
+
3166
+ 2001.04.24 TADA Tadashi <sho@spc.gr.jp>
3167
+ * 0.9.1
3168
+ * no update last-modified when request with referer.
3169
+ * no file creation when specified a date no existent.
3170
+
3171
+ 2001.04.23 TADA Tadashi <sho@spc.gr.jp>
3172
+ * 0.9.0
3173
+ * create and local release.