tdiary 3.2.2.20130507

Sign up to get free protection for your applications and to get access to all the features.
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
data/update.fcgi ADDED
@@ -0,0 +1,45 @@
1
+ #!/usr/bin/env ruby
2
+ # -*- coding: utf-8; -*-
3
+ #
4
+ # index.fcgi $Revision: 1.35 $
5
+ #
6
+ # Copyright (C) 2004, Akinori MUSHA
7
+ # Copyright (C) 2006, moriq
8
+ # Copyright (C) 2011, Kazuhiko <kazuhiko@fdiary.net>
9
+ # You can redistribute it and/or modify it under GPL2.
10
+ #
11
+ require 'fcgi'
12
+ # workaround untaint LOAD_PATH for rubygems library path is always tainted.
13
+ $:.each{|path| path.untaint if path.include?('fcgi') && path.tainted? }
14
+
15
+ if FileTest::symlink?( __FILE__ ) then
16
+ org_path = File::dirname( File::readlink( __FILE__ ) ).untaint
17
+ else
18
+ org_path = File::dirname( __FILE__ ).untaint
19
+ end
20
+ load "#{org_path}/misc/lib/fcgi_patch.rb"
21
+
22
+ FCGI.each_cgi do |cgi|
23
+ begin
24
+ ENV.clear
25
+ ENV.update(cgi.env_table)
26
+ class << CGI; self; end.class_eval do
27
+ define_method(:new) {|*args| cgi }
28
+ end
29
+ dir = File::dirname( cgi.env_table["SCRIPT_FILENAME"] )
30
+ Dir.chdir(dir) do
31
+ load 'update.rb'
32
+ end
33
+ ensure
34
+ class << CGI
35
+ remove_method :new
36
+ end
37
+ end
38
+ end
39
+
40
+ # Local Variables:
41
+ # mode: ruby
42
+ # indent-tabs-mode: t
43
+ # tab-width: 3
44
+ # ruby-indent-level: 3
45
+ # End:
data/update.rb ADDED
@@ -0,0 +1,57 @@
1
+ #!/usr/bin/env ruby
2
+ # -*- coding: utf-8; -*-
3
+ #
4
+ # update.rb
5
+ #
6
+ # Copyright (C) 2001-2009, TADA Tadashi <t@tdtds.jp>
7
+ # You can redistribute it and/or modify it under GPL2.
8
+ #
9
+ BEGIN { $stdout.binmode }
10
+
11
+ begin
12
+ if FileTest::symlink?( __FILE__ ) then
13
+ org_path = File::dirname( File::readlink( __FILE__ ) ).untaint
14
+ else
15
+ org_path = File::dirname( __FILE__ ).untaint
16
+ end
17
+ $:.unshift( org_path ) unless $:.include?( org_path )
18
+ require 'tdiary'
19
+
20
+ encoding_error = {}
21
+ cgi = CGI::new(:accept_charset => "UTF-8") do |name, value|
22
+ encoding_error[name] = value
23
+ end
24
+ if encoding_error.empty?
25
+ @cgi = cgi
26
+ else
27
+ @cgi = CGI::new(:accept_charset => 'shift_jis')
28
+ @cgi.params = cgi.params.dup
29
+ end
30
+ request = TDiary::Request.new( ENV, @cgi )
31
+ status, headers, body = TDiary::Dispatcher.update.dispatch_cgi( request, @cgi )
32
+ headers['type'] = headers.delete('Content-Type')
33
+ TDiary::Dispatcher.send_headers( status, headers )
34
+ TDiary::Dispatcher.send_body( body )
35
+
36
+ rescue Exception
37
+ if @cgi then
38
+ print @cgi.header( 'status' => '500 Internal Server Error', 'type' => 'text/html' )
39
+ else
40
+ print "Status: 500 Internal Server Error\n"
41
+ print "Content-Type: text/html\n\n"
42
+ end
43
+ puts "<h1>500 Internal Server Error</h1>"
44
+ puts "<pre>"
45
+ puts CGI::escapeHTML( "#{$!} (#{$!.class})" )
46
+ puts ""
47
+ puts CGI::escapeHTML( $@.join( "\n" ) )
48
+ puts "</pre>"
49
+ puts "<div>#{' ' * 500}</div>"
50
+ end
51
+
52
+ # Local Variables:
53
+ # mode: ruby
54
+ # indent-tabs-mode: t
55
+ # tab-width: 3
56
+ # ruby-indent-level: 3
57
+ # End:
@@ -0,0 +1,28 @@
1
+ Copyright (c) 2005, Kazuhiko <kazuhiko@fdiary.net>
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are
6
+ met:
7
+
8
+ * Redistributions of source code must retain the above copyright
9
+ notice, this list of conditions and the following disclaimer.
10
+ * Redistributions in binary form must reproduce the above
11
+ copyright notice, this list of conditions and the following
12
+ disclaimer in the documentation and/or other materials provided
13
+ with the distribution.
14
+ * Neither the name of the HikiDoc nor the names of its
15
+ contributors may be used to endorse or promote products derived
16
+ from this software without specific prior written permission.
17
+
18
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,30 @@
1
+ ! NEWS
2
+
3
+ !! Changes 0.0.6 from 0.0.5: 2010-08-28
4
+
5
+ * fix missing NEWS.ja for packaging
6
+
7
+ !! Changes 0.0.5 from 0.0.4: 2010-08-26
8
+
9
+ * fix a bug: strings after non-WikiName expression are ignored
10
+ * new text decoration ``monospaced text``
11
+ * fix rake failure with Hoe 1.9.0 or later
12
+ * add syntax highlighting with google-code-prettify
13
+
14
+ !! Changes 0.0.4 from 0.0.3: 2009-08-17
15
+
16
+ * escape collectly in inline_plugin same as block_plugin does.
17
+ * fix a DoS vulnerability processing a plugin expression.
18
+
19
+ !! Changes 0.0.3 from 0.0.2: 2008-08-25
20
+
21
+ * fix warning message "Could not find main page README.txt" at installation via gem
22
+
23
+ !! Changes 0.0.2 from 0.0.1: 2008-08-11
24
+
25
+ * fix a bug: an inline that is inside of a modifier inline do not works
26
+ * add a option "--no-wikiname" to `hikidoc' command
27
+ * correct URI scheme behavior of InterWikiName
28
+ * add some tests
29
+ * add a Rake task "coverage" (requires rcov)
30
+
@@ -0,0 +1,30 @@
1
+ ! NEWS.ja
2
+
3
+ !! 0.0.5����0.0.6���ѹ���: 2010-08-28
4
+
5
+ * �ѥå���������NEWS.ja��ϳ��Ƥ��ޤ��Τ���
6
+
7
+ !! 0.0.4����0.0.5���ѹ���: 2010-08-26
8
+
9
+ * Ʊ��Ԥ˴ޤޤ����WikiNameɽ���ʹߤ�ʸ�������Ϥ���ʤ��Х�����
10
+ * ������ʸ���ν���``����ɽ��``���ɲ�
11
+ * Hoe 1.9.0 �ޤ��Ϥ���ʹߤ�rake�����Ԥ����������
12
+ * google-code-prettify�ǤΥ��󥿥å����ϥ��饤�Ȥ��ɲ�
13
+
14
+ !! 0.0.3����0.0.4���ѹ���: 2009-08-17
15
+
16
+ * inline_plugin��block_pluginƱ�ͤ˥��������פ���褦�˽���
17
+ * �ץ饰����ɽ���β��ˤ�����DoS�ȼ������Ф��뽤��
18
+
19
+ !! 0.0.2����0.0.3���ѹ���: 2008-08-25
20
+
21
+ * gem����Υ��󥹥ȡ������"Could not find main page README.txt"�Ȥ����ٹ��å����������Ϥ����������
22
+
23
+ !! 0.0.1����0.0.2���ѹ���: 2008-08-11
24
+
25
+ * �����ϥ���饤����Υ���饤��ˡ��Ÿ������ʤ��Х�����
26
+ * hikidoc���ޥ�ɤ�--no-wikiname���ץ������ɲ�
27
+ * InterWikiName��URI scheme�Ȥ��ư�����Τ�http(s),file,ftp�˸��ꤹ��褦����
28
+ * �ƥ��Ȥ򶯲�
29
+ * Rake������coverage���ɲá���rcov��
30
+
@@ -0,0 +1,86 @@
1
+ ! HikiDoc
2
+
3
+ !! Introduction
4
+
5
+ 'HikiDoc' is a text-to-HTML conversion tool for web writers. HikiDoc
6
+ allows you to write using an easy-to-read, easy-to-write plain text
7
+ format, then convert it to structurally valid HTML (or XHTML).
8
+
9
+ !! Requirements
10
+
11
+ HikiDoc requires Ruby 1.8.2 or later.
12
+
13
+ !! Download
14
+
15
+ Get from the subversion repository http://hikidoc.rubyforge.org/svn/ .
16
+
17
+ (eg.)
18
+ svn co http://hikidoc.rubyforge.org/svn/trunk/ hikidoc
19
+
20
+ !! Installation
21
+
22
+ Run the 'setup.rb' script like so:
23
+
24
+ $ ruby setup.rb config
25
+ $ ruby setup.rb setup
26
+ # ruby setup.rb install
27
+
28
+ !! Syntax
29
+
30
+ See [[TextFormattingRules]].
31
+
32
+ !! Mailing list
33
+
34
+ To subscribe the HikiDoc ML, please send the following mail. English
35
+ posts are also welcome.
36
+
37
+ To: hikidoc@ml.fdiary.net
38
+ Cc: kazuhiko@fdiary.net
39
+ Subject: subscribe <- any subject
40
+
41
+ Hello. <- any body
42
+
43
+ HikiDoc ML's archive is available at http://www.fdiary.net/ml/hikidoc/ .
44
+
45
+ !! Related softwares
46
+
47
+ The following softwares use the HikiDoc library or the HikiDoc format.
48
+
49
+ :[[tDiary|http://www.tdiary.org/]]:a Weblog/Web-diary software
50
+ :[[Hiki|http://hikiwiki.org/]]:a powerful and fast wiki clone
51
+ :[[lily|http://lily.sourceforge.jp/]]:a simple CMS
52
+ :[[Text::HikiDoc|http://search.cpan.org/perldoc?Text::HikiDoc]]:HikiDoc by Perl
53
+ :[[PikiDoc|http://github.com/moro/piki_doc/]]:a library that you can add plugin functions on HikiDoc
54
+
55
+ !! License
56
+
57
+ HikiDoc's license is the 'Modified BSD License'.
58
+
59
+ Copyright (c) 2005, Kazuhiko <kazuhiko@fdiary.net>
60
+ All rights reserved.
61
+
62
+ Redistribution and use in source and binary forms, with or without
63
+ modification, are permitted provided that the following conditions are
64
+ met:
65
+
66
+ * Redistributions of source code must retain the above copyright
67
+ notice, this list of conditions and the following disclaimer.
68
+ * Redistributions in binary form must reproduce the above
69
+ copyright notice, this list of conditions and the following
70
+ disclaimer in the documentation and/or other materials provided
71
+ with the distribution.
72
+ * Neither the name of the HikiDoc nor the names of its
73
+ contributors may be used to endorse or promote products derived
74
+ from this software without specific prior written permission.
75
+
76
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
77
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
78
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
79
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
80
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
81
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
82
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
83
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
84
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
85
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
86
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,83 @@
1
+ ! HikiDoc
2
+
3
+ !! �Ϥ����
4
+
5
+ 'HikiDoc' �ϡ֥ƥ����Ȣ� HTML���Ѵ��ġ���Ǥ����񤭤䤹���ɤߤ䤹��ʸˡ��
6
+ �ƥ����Ȥ�ޤȤ�� HTML (�� XHTML) ���Ѵ����ޤ���
7
+
8
+ !! ɬ�פʤ��
9
+
10
+ HikiDoc �μ¹Ԥˤ� Ruby 1.8.2 �ʹߤ�ɬ�פǤ���
11
+
12
+ !! �����������
13
+
14
+ Subversion ��ݥ��ȥ� http://hikidoc.rubyforge.org/svn/ �����������
15
+ ����������
16
+
17
+ (��)
18
+ svn co http://hikidoc.rubyforge.org/svn/trunk/ hikidoc
19
+
20
+ !! ���󥹥ȡ���
21
+
22
+ �ʲ��Τ褦�� 'setup.rb' ������ץȤ��Ѥ��ƥ��󥹥ȡ��뤷�ޤ���
23
+
24
+ $ ruby setup.rb config
25
+ $ ruby setup.rb setup
26
+ # ruby setup.rb install
27
+
28
+ !! ʸˡ
29
+
30
+ [[TextFormattingRules.ja]] ��������������
31
+
32
+ !! �᡼��󥰥ꥹ��
33
+
34
+ ���ä��˾��������ϡ��ʲ��Τ褦�ʥ᡼����������Ƥ���������
35
+ To: hikidoc@ml.fdiary.net
36
+ Cc: kazuhiko@fdiary.net
37
+
38
+ ��ʸ�˼��ʾҲ�ʤ�
39
+
40
+ ���Υ᡼��� http://www.fdiary.net/ml/hikidoc/ �Ǹ������Ƥ��ޤ���
41
+
42
+ !! ��Ϣ���륽�եȥ�����
43
+
44
+ �ʲ��Υ��եȥ������� HikiDoc �饤�֥�ꡢ�ޤ��� HikiDoc �ե����ޥåȤ��Ѥ����Ƥ��ޤ���
45
+
46
+ :[[tDiary|http://www.tdiary.org/]]:�������������եȥ�����
47
+ :[[Hiki|http://hikiwiki.org/]]:¿��ǽ���Ĺ�®�� Wiki ��������
48
+ :[[lily|http://lily.sourceforge.jp/]]:����ץ�� CMS (Web �����ȹ��ۥ����ƥ�)
49
+ :[[Text::HikiDoc|http://search.cpan.org/perldoc?Text::HikiDoc]]:Perl �ˤ�� HikiDoc �μ���
50
+ :[[PikiDoc|http://github.com/moro/piki_doc/]]:HikiDoc�Ρ֥ץ饰����׵�ǽ���ɲäǤ���饤�֥��Ǥ�
51
+
52
+ !! �饤����
53
+
54
+ Modified BSD �饤���󥹤Ǥ���
55
+
56
+ Copyright (c) 2005, Kazuhiko <kazuhiko@fdiary.net>
57
+ All rights reserved.
58
+
59
+ Redistribution and use in source and binary forms, with or without
60
+ modification, are permitted provided that the following conditions are
61
+ met:
62
+
63
+ * Redistributions of source code must retain the above copyright
64
+ notice, this list of conditions and the following disclaimer.
65
+ * Redistributions in binary form must reproduce the above
66
+ copyright notice, this list of conditions and the following
67
+ disclaimer in the documentation and/or other materials provided
68
+ with the distribution.
69
+ * Neither the name of the HikiDoc nor the names of its
70
+ contributors may be used to endorse or promote products derived
71
+ from this software without specific prior written permission.
72
+
73
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
74
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
75
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
76
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
77
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
78
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
79
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
80
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
81
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
82
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
83
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,68 @@
1
+ # -*- ruby -*-
2
+
3
+ require 'rubygems'
4
+ require 'hoe'
5
+
6
+ require 'find'
7
+
8
+ base_dir = File.expand_path(File.dirname(__FILE__))
9
+ $LOAD_PATH.unshift(File.join(base_dir, 'lib'))
10
+ require 'hikidoc'
11
+
12
+ truncate_base_dir = Proc.new do |x|
13
+ x.gsub(/\A#{Regexp.escape(base_dir + File::SEPARATOR)}/, '')
14
+ end
15
+
16
+ manifest = File.join(base_dir, "Manifest.txt")
17
+ manifest_contents = []
18
+ base_dir_included_components = %w(COPYING README README.ja Rakefile
19
+ TextFormattingRules TextFormattingRules.ja
20
+ NEWS.ja setup.rb)
21
+ excluded_components = %w(.svn doc log pkg)
22
+ Find.find(base_dir) do |target|
23
+ target = truncate_base_dir[target]
24
+ components = target.split(File::SEPARATOR)
25
+ if components.size == 1 and !File.directory?(target)
26
+ next unless base_dir_included_components.include?(components[0])
27
+ end
28
+ Find.prune if (excluded_components - components) != excluded_components
29
+ manifest_contents << target if File.file?(target)
30
+ end
31
+
32
+ File.open(manifest, "w") do |f|
33
+ f.puts manifest_contents.sort.join("\n")
34
+ end
35
+ at_exit do
36
+ FileUtils.rm_f(manifest)
37
+ end
38
+
39
+ ENV["VERSION"] ||= HikiDoc::VERSION
40
+ project = Hoe.spec('hikidoc') do |project|
41
+ project.version = HikiDoc::VERSION
42
+ project.author = ['Kazuhiko']
43
+ project.email = ['kazuhiko@fdiary.net']
44
+ project.description = project.paragraphs_of('README', 2).join
45
+ project.summary = project.description.split(/(\.)/, 3)[0, 2].join
46
+ project.url = 'http://rubyforge.org/projects/hikidoc/'
47
+ project.test_globs = ['test/test_*.rb']
48
+ project.extra_rdoc_files = %w(README COPYING NEWS TextFormattingRules)
49
+ project.changes = File.read("NEWS").split(/^!! .*$/)[1].strip
50
+ end
51
+
52
+ desc 'Tag the repository for release.'
53
+ task :tag do
54
+ version = HikiDoc::VERSION
55
+ message = "Released HikiDoc #{version}!"
56
+ base = "svn+ssh://rubyforge.org/var/svn/hikidoc/"
57
+ sh 'svn', 'copy', '-m', message, "#{base}trunk", "#{base}tags/#{version}"
58
+ end
59
+
60
+
61
+ # Fix Hoe's uncustomizable options
62
+ rdoc_main = "lib/hikidoc.rb"
63
+ project.spec.rdoc_options.each do |option|
64
+ option.replace(rdoc_main) if option == "README.txt"
65
+ end
66
+ ObjectSpace.each_object(Rake::RDocTask) do |task|
67
+ task.main = rdoc_main if task.main == "README.txt"
68
+ end
@@ -0,0 +1,320 @@
1
+ !Paragraphs
2
+
3
+ Consecutive lines are concatenated into a single paragraph.
4
+
5
+ Blank lines (ones with only a carriage return or with only spaces and tabs) mark the end of a paragraph.
6
+
7
+ *Example statement
8
+
9
+ For example,
10
+ if I write like this, these lines
11
+ will be formatted as one paragraph.
12
+
13
+ *Example output
14
+
15
+ For example,
16
+ if I write like this, these lines
17
+ will be formatted as one paragraph.
18
+
19
+ !Links
20
+
21
+ !!WikiNames
22
+
23
+ WikiNames are comprised of two or more words put together; each word begins with an uppercase letter, and is followed by at least one lowercase letter or number.
24
+
25
+ Words in which this condition is met become a WikiName, and a link is automatically attached.
26
+
27
+ *Example statement
28
+
29
+ WikiName - WikiName
30
+ HogeRule1 - WikiName
31
+ NOTWIKINAME - All of the letters are uppercase, so this is not a WikiName
32
+ WikiNAME - All of the letters in NAME are uppercase, so this is not a WikiName
33
+ fooWikiName - This begins with "foo", which is in all lowercase, so this is not a WikiName
34
+
35
+ *Example output
36
+
37
+ **WikiName - WikiName
38
+ **HogeRule1 - WikiName
39
+ **NOTWIKINAME - All of the letters are uppercase, so this is not a WikiName
40
+ **WikiNAME - All of the letters in NAME are uppercase, so this is not a WikiName
41
+ **fooWikiName - This begins with "foo", which is in all lowercase, so this is not a WikiName
42
+
43
+ You can disable an auto WikiName link by putting ''^'' to the WikiName.
44
+
45
+ *Example statement
46
+
47
+ WikiName - WikiName
48
+ ^WikiName - Disable WikiName link
49
+
50
+ *Example output
51
+
52
+ **WikiName - WikiName
53
+ **^WikiName - Disable WikiName link
54
+
55
+ !!Linking to other Wiki pages
56
+
57
+ If a page name is surrounded with two pairs of brackets, it becomes a link to that page.
58
+
59
+ *Example statement
60
+
61
+ For example, if you write [[TextFormattingRules]], it becomes a link to that page.
62
+
63
+ *Example output
64
+
65
+ For example, if you write [[TextFormattingRules]], it becomes a link to that page.
66
+
67
+ !!Linking to an arbitrary URL
68
+
69
+ If a phrase and URL, separated by a vertical line, are surrounded with two pairs of brackets, it becomes a link to an arbitrary URL.
70
+
71
+ *Example statement
72
+
73
+ Links like [[Yahoo!|http://www.yahoo.com/]] are also possible.
74
+
75
+ *Example output
76
+
77
+ Links like [[Yahoo!|http://www.yahoo.com/]] are also possible.
78
+
79
+ Text in a paragraph that looks like a URL will automatically become a link.
80
+
81
+ *Example statement
82
+
83
+ Hiki's home page is http://hikiwiki.org/en/ (English).
84
+
85
+ *Example output
86
+
87
+ Hiki's home page is http://hikiwiki.org/en/ (English).
88
+
89
+ In this case, if the URL ends with jpg., .jpeg, .png, or .gif, the image is displayed on the page.
90
+
91
+ *Example statement
92
+
93
+ http://jp.rubyist.net/theme/clover/clover_h1.png
94
+
95
+ *Example output
96
+
97
+ http://jp.rubyist.net/theme/clover/clover_h1.png
98
+
99
+ !Preformatted text
100
+
101
+ Lines beginning with spaces or tabs will be treated as preformatted text.
102
+
103
+ *Example output
104
+
105
+ require 'cgi'
106
+
107
+ cgi = CGI::new
108
+ cgi.header
109
+
110
+ puts <<EOS
111
+ <html>
112
+ <head>
113
+ <title>Hello!</title>
114
+ </head>
115
+ <body>
116
+ <p>Hello!</p>
117
+ </body>
118
+ </html>
119
+ EOS
120
+
121
+ !Text decoration
122
+
123
+ Text surrounded by sets of two single quotes ('') is emphasised.
124
+
125
+ Text surrounded by sets of three single quotes (''') is strongly emphasised.
126
+
127
+ Text surrounded by sets of double equal signs (===) is struck out.
128
+
129
+ Text surrounded by sets of double backquotes (``) is inline literal.
130
+
131
+ *Example statement
132
+
133
+ If you write like this, it becomes ''emphasised''.
134
+ And if you write like this, it becomes '''strongly emphasised'''.
135
+ ==This is dull, but== And struck-out text is supported, too!
136
+ If you write like this, it becomes ``monospaced text``.
137
+
138
+ *Example output
139
+
140
+ If you write like this, it becomes ''emphasised''.
141
+ And if you write like this, it becomes '''strongly emphasised'''.
142
+ ==This is dull, but== And struck-out text is supported, too!
143
+ If you write like this, it becomes ``monospaced text``.
144
+
145
+ !Headings
146
+
147
+ Lines with exclamation marks at the beginning become headings.
148
+
149
+ One can use up to six exclamation marks; they will be converted to <h1> to <h6> tags.
150
+
151
+ *Example statement
152
+
153
+ !Heading1
154
+ !!Heading2
155
+ !!!Heading3
156
+ !!!!Heading4
157
+ !!!!!Heading5
158
+
159
+ *Example output
160
+
161
+ !Heading1
162
+ !!Heading2
163
+ !!!Heading3
164
+ !!!!Heading4
165
+ !!!!!Heading5
166
+
167
+ !Horizontal lines
168
+
169
+ Four hyphens at the beginning of the line (----) become a horizontal rule.
170
+
171
+ *Example statement
172
+
173
+ A B C D E
174
+ ----
175
+ F G H I J
176
+
177
+ *Example output
178
+
179
+ A B C D E
180
+ ----
181
+ F G H I J
182
+
183
+ !Lists
184
+
185
+ Lines beginning with asterisks become list items.
186
+
187
+ It is possible to use up to three asterisks; it is also possible to create nested lists.
188
+
189
+ Lines beginning with a # become numbered lists.
190
+
191
+ *Example statement
192
+
193
+ *Item 1
194
+ **Item 1.1
195
+ **Item 1.2
196
+ ***Item 1.2.1
197
+ ***Item 1.2.2
198
+ ***Item 1.2.3
199
+ **Item 1.3
200
+ **Item 1.4
201
+ *Item 2
202
+
203
+ #Item 1
204
+ #Item 2
205
+ ##Item 2.1
206
+ ##Item 2.2
207
+ ##Item 2.3
208
+ #Item 3
209
+ ##Item 3.1
210
+ ###Item 3.1.1
211
+ ###Item 3.1.2
212
+
213
+ *Example output
214
+
215
+ *Item 1
216
+ **Item 1.1
217
+ **Item 1.2
218
+ ***Item 1.2.1
219
+ ***Item 1.2.2
220
+ ***Item 1.2.3
221
+ **Item 1.3
222
+ **Item 1.4
223
+ *Item 2
224
+
225
+ #Item 1
226
+ #Item 2
227
+ ##Item 2.1
228
+ ##Item 2.2
229
+ ##Item 2.3
230
+ #Item 3
231
+ ##Item 3.1
232
+ ###Item 3.1.1
233
+ ###Item 3.1.2
234
+
235
+ !Quotations
236
+
237
+ Lines beginning with two double quotes become quotations.
238
+
239
+ *Example statement
240
+
241
+ ""This is a quotation.
242
+ ""This is another quote.
243
+ ""This is a continued quote. When there are consecutive quotations,
244
+ ""they are displayed as one quote,
245
+ ""like this.
246
+
247
+ *Example output
248
+
249
+ ""This is a quotation.
250
+ ""This is another quote.
251
+ ""This is a continued quote. When there are consecutive quotations,
252
+ ""they are displayed as one quote,
253
+ ""like this.
254
+
255
+ !Definitions
256
+
257
+ Lines beginning with a colon and have a phrase and explanation separated by another colon will become a definition.
258
+
259
+ *Example statement
260
+
261
+ :ringo:apple
262
+ :gorira:gorilla
263
+ :rakuda:camel
264
+
265
+ *Example output
266
+
267
+ :ringo:apple
268
+ :gorira:gorilla
269
+ :rakuda:camel
270
+
271
+ ! Tables
272
+
273
+ Tables begin with two vertical bars.
274
+
275
+ Leading `!' in a cell means that it is a heading cell.
276
+
277
+ To concatenate columns or rows, put `>'(columns) or `^'(rows) at head of
278
+ the cell.
279
+
280
+ * Example statement
281
+
282
+ ||!row heading \ column heading||!column A||!column B||!column C||!>column D-E (horizontal concatenation)
283
+ ||!row 1||A1||B1||^C1-C2 (vertical concatenation)||D1||E1
284
+ ||!row 2||A2||B2||^>D2-E2-D3-E3 (vertical and horizontal concatenation)
285
+ ||!row 3||>>A3-C3 (horizontal concatenation)
286
+
287
+ * Example output
288
+
289
+ ||!row heading \ column heading||!column A||!column B||!column C||!>column D-E (horizontal concatenation)
290
+ ||!row 1||A1||B1||^C1-C2 (vertical concatenation)||D1||E1
291
+ ||!row 2||A2||B2||^>D2-E2-D3-E3 (vertical and horizontal concatenation)
292
+ ||!row 3||>>A3-C3 (horizontal concatenation)
293
+
294
+ ! Comments
295
+
296
+ Lines starting with `//' becomes a comment line.
297
+ Comment lines is not outputted.
298
+
299
+ * Example statement
300
+ // This is a comment line.
301
+
302
+ * Example output (not displayed)
303
+ // This is a comment line.
304
+
305
+ !Plugins
306
+
307
+ One can use a plugin by surrounding text with two pairs of brackets.
308
+ Multiple lines parameter is supported.
309
+ When a line contains plugin only, it becomes a block plugin,
310
+ which is not surrounded by <p> ... </p>.
311
+
312
+ *Example statement
313
+
314
+ {{recent(3)}}
315
+
316
+ * Example statement of multiple lines
317
+
318
+ {{pre('
319
+ ...
320
+ ')}}