tdiary 3.2.2.20130507
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.coveralls.yml +1 -0
- data/.gitignore +16 -0
- data/.travis.yml +29 -0
- data/Capfile +2 -0
- data/ChangeLog +3173 -0
- data/Gemfile +58 -0
- data/Gemfile.lock +201 -0
- data/LICENSE +340 -0
- data/Procfile +1 -0
- data/README.md +33 -0
- data/Rakefile +26 -0
- data/bin/tdiary +7 -0
- data/config.ru +61 -0
- data/data/.htaccess +2 -0
- data/doc/HOWTO-authenticate-in-rack.md +89 -0
- data/doc/HOWTO-make-io.md +305 -0
- data/doc/HOWTO-make-plugin.md +279 -0
- data/doc/HOWTO-make-theme.md +67 -0
- data/doc/HOWTO-testing-tDiary.md +44 -0
- data/doc/HOWTO-use-plugin.md +148 -0
- data/doc/HOWTO-write-tDiary.en.md +131 -0
- data/doc/HOWTO-write-tDiary.md +136 -0
- data/doc/INSTALL-paas.md +202 -0
- data/doc/INSTALL.md +160 -0
- data/doc/README.en.md +174 -0
- data/doc/README.md +56 -0
- data/doc/UPGRADE.md +164 -0
- data/doc/doc.css +115 -0
- data/dot.htaccess +27 -0
- data/index.fcgi +45 -0
- data/index.rb +57 -0
- data/js/00default.js +60 -0
- data/js/01conf.js +62 -0
- data/js/02edit.coffee +5 -0
- data/js/02edit.js +15 -0
- data/js/amazon.js +43 -0
- data/js/calendar3.js +130 -0
- data/js/caretposition.js +170 -0
- data/js/category.js +29 -0
- data/js/category_autocomplete.js +96 -0
- data/js/comment_ajax.js +27 -0
- data/js/draft.js +149 -0
- data/js/highlight.js +36 -0
- data/js/image.js +181 -0
- data/misc/convert2.rb +123 -0
- data/misc/filter/antispamservice.rb +101 -0
- data/misc/filter/limitdays.rb +40 -0
- data/misc/filter/linkcheck.rb +81 -0
- data/misc/filter/plugin/antispamservice.rb +82 -0
- data/misc/filter/plugin/en/antispamservice.rb +21 -0
- data/misc/filter/plugin/ja/antispamservice.rb +20 -0
- data/misc/lib/README +4 -0
- data/misc/lib/compatible.rb +1 -0
- data/misc/lib/fcgi_patch.rb +90 -0
- data/misc/migrate.rb +157 -0
- data/misc/paas/cloudfoundry/Gemfile +26 -0
- data/misc/paas/cloudfoundry/Gemfile.lock +85 -0
- data/misc/paas/heroku/Gemfile +22 -0
- data/misc/paas/heroku/Gemfile.lock +85 -0
- data/misc/paas/sqale/Gemfile +19 -0
- data/misc/paas/sqale/Gemfile.lock +85 -0
- data/misc/paas/sqale/Procfile +1 -0
- data/misc/paas/sqale/dot.env +1 -0
- data/misc/plugin/ChangeLog.DO_NOT_UPDATE +2333 -0
- data/misc/plugin/a.rb +211 -0
- data/misc/plugin/amazon.rb +403 -0
- data/misc/plugin/amazon/README.en +17 -0
- data/misc/plugin/amazon/README.ja +29 -0
- data/misc/plugin/amazon/amazonimg.rb +113 -0
- data/misc/plugin/amazon/large.png +0 -0
- data/misc/plugin/amazon/medium.png +0 -0
- data/misc/plugin/amazon/small.png +0 -0
- data/misc/plugin/append-css.rb +51 -0
- data/misc/plugin/bq.rb +48 -0
- data/misc/plugin/calendar2.rb +184 -0
- data/misc/plugin/calendar3.rb +256 -0
- data/misc/plugin/category.rb +779 -0
- data/misc/plugin/category_autocomplete.rb +33 -0
- data/misc/plugin/comment_ajax.rb +11 -0
- data/misc/plugin/comment_mail-qmail.rb +57 -0
- data/misc/plugin/comment_mail-sendmail.rb +56 -0
- data/misc/plugin/comment_mail-smtp.rb +59 -0
- data/misc/plugin/comment_rank.rb +36 -0
- data/misc/plugin/counter.rb +631 -0
- data/misc/plugin/daily_theme.rb +55 -0
- data/misc/plugin/disp_referrer.rb +1486 -0
- data/misc/plugin/doctype-html401tr.rb +16 -0
- data/misc/plugin/draft.rb +20 -0
- data/misc/plugin/dropdown_calendar.rb +32 -0
- data/misc/plugin/edit_today.rb +50 -0
- data/misc/plugin/en/a.rb +10 -0
- data/misc/plugin/en/amazon.rb +71 -0
- data/misc/plugin/en/append-css.rb +17 -0
- data/misc/plugin/en/bq.rb +12 -0
- data/misc/plugin/en/calendar2.rb +12 -0
- data/misc/plugin/en/category.rb +204 -0
- data/misc/plugin/en/counter.rb +48 -0
- data/misc/plugin/en/daily_theme.rb +14 -0
- data/misc/plugin/en/disp_referrer.rb +387 -0
- data/misc/plugin/en/dropdown_calendar.rb +14 -0
- data/misc/plugin/en/edit_today.rb +22 -0
- data/misc/plugin/en/hide-mail-field.rb +19 -0
- data/misc/plugin/en/highlight.rb +29 -0
- data/misc/plugin/en/image.rb +54 -0
- data/misc/plugin/en/kw.rb +22 -0
- data/misc/plugin/en/makerss.rb +47 -0
- data/misc/plugin/en/pb-show.rb +21 -0
- data/misc/plugin/en/ping.rb +16 -0
- data/misc/plugin/en/recent_comment.rb +44 -0
- data/misc/plugin/en/recent_comment3.rb +56 -0
- data/misc/plugin/en/recent_rss.rb +33 -0
- data/misc/plugin/en/referer_scheme.rb +48 -0
- data/misc/plugin/en/search_control.rb +74 -0
- data/misc/plugin/en/search_form.rb +22 -0
- data/misc/plugin/en/speed_comment.rb +19 -0
- data/misc/plugin/en/tb-show.rb +37 -0
- data/misc/plugin/en/todo.rb +43 -0
- data/misc/plugin/en/weather.rb +185 -0
- data/misc/plugin/en/xmlrpc.rb +14 -0
- data/misc/plugin/footnote.rb +92 -0
- data/misc/plugin/gradation.rb +39 -0
- data/misc/plugin/gradient.rb +36 -0
- data/misc/plugin/hide-mail-field.rb +50 -0
- data/misc/plugin/highlight.rb +22 -0
- data/misc/plugin/html_anchor.rb +34 -0
- data/misc/plugin/image.rb +290 -0
- data/misc/plugin/ja/amazon.rb +89 -0
- data/misc/plugin/ja/bq.rb +13 -0
- data/misc/plugin/ja/calendar2.rb +12 -0
- data/misc/plugin/ja/category.rb +212 -0
- data/misc/plugin/ja/daily_theme.rb +15 -0
- data/misc/plugin/ja/disp_referrer.rb +644 -0
- data/misc/plugin/ja/edit_today.rb +23 -0
- data/misc/plugin/ja/hide-mail-field.rb +20 -0
- data/misc/plugin/ja/highlight.rb +30 -0
- data/misc/plugin/ja/makerss.rb +44 -0
- data/misc/plugin/ja/my-sequel.rb +52 -0
- data/misc/plugin/ja/pb-show.rb +23 -0
- data/misc/plugin/ja/ping.rb +17 -0
- data/misc/plugin/ja/recent_comment.rb +45 -0
- data/misc/plugin/ja/recent_comment3.rb +57 -0
- data/misc/plugin/ja/recent_rss.rb +34 -0
- data/misc/plugin/ja/referer_scheme.rb +86 -0
- data/misc/plugin/ja/search_control.rb +75 -0
- data/misc/plugin/ja/search_form.rb +32 -0
- data/misc/plugin/ja/tb-show.rb +38 -0
- data/misc/plugin/ja/todo.rb +46 -0
- data/misc/plugin/ja/weather.rb +402 -0
- data/misc/plugin/ja/xmlrpc.rb +15 -0
- data/misc/plugin/kw.rb +150 -0
- data/misc/plugin/list.rb +40 -0
- data/misc/plugin/makelirs.rb +89 -0
- data/misc/plugin/makerss.rb +744 -0
- data/misc/plugin/my-ex.rb +68 -0
- data/misc/plugin/my-sequel.rb +539 -0
- data/misc/plugin/navi_user.rb +19 -0
- data/misc/plugin/number_anchor.rb +47 -0
- data/misc/plugin/pb-show.rb +165 -0
- data/misc/plugin/ping.rb +99 -0
- data/misc/plugin/pre_wrap.rb +19 -0
- data/misc/plugin/random_google.rb +165 -0
- data/misc/plugin/recent_comment.rb +82 -0
- data/misc/plugin/recent_comment3.rb +192 -0
- data/misc/plugin/recent_list.rb +91 -0
- data/misc/plugin/recent_namazu.rb +50 -0
- data/misc/plugin/recent_rss.rb +305 -0
- data/misc/plugin/referer-antibot.rb +53 -0
- data/misc/plugin/referer-utf8.rb +12 -0
- data/misc/plugin/referer_scheme.rb +87 -0
- data/misc/plugin/search_control.rb +227 -0
- data/misc/plugin/search_form.rb +53 -0
- data/misc/plugin/sn.rb +107 -0
- data/misc/plugin/speed_comment.rb +68 -0
- data/misc/plugin/squeeze.rb +272 -0
- data/misc/plugin/src.rb +30 -0
- data/misc/plugin/tb-show.rb +212 -0
- data/misc/plugin/title_list.rb +41 -0
- data/misc/plugin/title_tag.rb +80 -0
- data/misc/plugin/tlink.rb +163 -0
- data/misc/plugin/todo.rb +182 -0
- data/misc/plugin/weather.rb +505 -0
- data/misc/plugin/whatsnew.rb +100 -0
- data/misc/plugin/xmlrpc.rb +80 -0
- data/misc/plugin/xmlrpc/README +20 -0
- data/misc/plugin/xmlrpc/xmlrpc.rb +575 -0
- data/misc/style/emptdiary/README.rd +83 -0
- data/misc/style/emptdiary/README.rd.en +78 -0
- data/misc/style/emptdiary/emptdiary_style.rb +199 -0
- data/misc/style/etdiary/README.rd +83 -0
- data/misc/style/etdiary/etdiary_style.rb +446 -0
- data/misc/style/gfm/gfm_style.rb +194 -0
- data/misc/style/rd/README.rd +71 -0
- data/misc/style/rd/rd_style.rb +366 -0
- data/misc/style/wiki/README +116 -0
- data/misc/style/wiki/README.en +101 -0
- data/misc/style/wiki/wiki_parser.rb +273 -0
- data/misc/style/wiki/wiki_style.rb +478 -0
- data/misc/theme_convert/Readme.rd +21 -0
- data/misc/theme_convert/append.rcss +150 -0
- data/misc/theme_convert/theme_convert.rb +453 -0
- data/plugin/00default.rb +1015 -0
- data/plugin/05referer.rb +298 -0
- data/plugin/10spamfilter.rb +183 -0
- data/plugin/50sp.rb +146 -0
- data/plugin/60sf.rb +152 -0
- data/plugin/90migrate.rb +109 -0
- data/plugin/en/00default.rb +390 -0
- data/plugin/en/05referer.rb +49 -0
- data/plugin/en/10spamfilter.rb +81 -0
- data/plugin/en/50sp.rb +56 -0
- data/plugin/en/60sf.rb +60 -0
- data/plugin/ja/00default.rb +401 -0
- data/plugin/ja/05referer.rb +47 -0
- data/plugin/ja/10spamfilter.rb +79 -0
- data/plugin/ja/50sp.rb +66 -0
- data/plugin/ja/60sf.rb +73 -0
- data/public/.gitkeep +0 -0
- data/public/images/.gitkeep +0 -0
- data/public/javascripts/.gitkeep +0 -0
- data/public/stylesheets/.gitkeep +0 -0
- data/skel/category.rhtml +9 -0
- data/skel/conf.rhtml +23 -0
- data/skel/day.rhtml +33 -0
- data/skel/diary.rhtml +83 -0
- data/skel/footer.rhtml +8 -0
- data/skel/header.rhtml +10 -0
- data/skel/i.category.rhtml +6 -0
- data/skel/i.conf.rhtml +14 -0
- data/skel/i.day.rhtml +28 -0
- data/skel/i.diary.rhtml +17 -0
- data/skel/i.footer.rhtml +2 -0
- data/skel/i.header.rhtml +3 -0
- data/skel/i.latest.rhtml +24 -0
- data/skel/i.month.rhtml +39 -0
- data/skel/i.search.rhtml +5 -0
- data/skel/i.update.rhtml +40 -0
- data/skel/i.update.rhtml.en +40 -0
- data/skel/latest.rhtml +27 -0
- data/skel/mail.rtxt +18 -0
- data/skel/mail.rtxt.en +18 -0
- data/skel/month.rhtml +27 -0
- data/skel/plugin_error.rhtml +27 -0
- data/skel/preview.rhtml +85 -0
- data/skel/preview.rhtml.en +72 -0
- data/skel/referer.rhtml +24 -0
- data/skel/search.rhtml +14 -0
- data/skel/tdiary.rconf +76 -0
- data/skel/update.rhtml +103 -0
- data/skel/update.rhtml.en +83 -0
- data/spec/acceptance/append_comment_spec.rb +94 -0
- data/spec/acceptance/append_diary_spec.rb +98 -0
- data/spec/acceptance/bugfix/encoding_error_spec.rb +27 -0
- data/spec/acceptance/save_conf_comment_spec.rb +87 -0
- data/spec/acceptance/save_conf_default_spec.rb +169 -0
- data/spec/acceptance/save_conf_dnsbl_spec.rb +152 -0
- data/spec/acceptance/save_conf_filter_spec.rb +50 -0
- data/spec/acceptance/save_conf_plugin_spec.rb +69 -0
- data/spec/acceptance/save_conf_referer_spec.rb +60 -0
- data/spec/acceptance/save_conf_security_spec.rb +280 -0
- data/spec/acceptance/support/helpers.rb +49 -0
- data/spec/acceptance/support/paths.rb +7 -0
- data/spec/acceptance/update_diary_spec.rb +113 -0
- data/spec/acceptance/view_category_spec.rb +38 -0
- data/spec/acceptance/view_comment_spec.rb +67 -0
- data/spec/acceptance/view_diary_spec.rb +126 -0
- data/spec/acceptance/view_referer_spec.rb +31 -0
- data/spec/acceptance_helper.rb +101 -0
- data/spec/core/compatible_spec.rb +54 -0
- data/spec/core/core_ext_spec.rb +59 -0
- data/spec/core/plugin_spec.rb +389 -0
- data/spec/core/rack/assets/precompile_spec.rb +76 -0
- data/spec/core/rack/html_anchor_spec.rb +57 -0
- data/spec/core/rack/valid_request_path_spec.rb +67 -0
- data/spec/core/style/emptdiary_style_spec.rb +165 -0
- data/spec/core/style/etdiary_style_spec.rb +512 -0
- data/spec/core/style/gfm_style_spec.rb +334 -0
- data/spec/core/style/rd_style_spec.rb +202 -0
- data/spec/core/style/tdiary_style_spec.rb +240 -0
- data/spec/core/style/wiki_style_spec.rb +441 -0
- data/spec/fixtures/ascii8bit-pstore.db +0 -0
- data/spec/fixtures/invalid-sequence-volatile.tdr +9 -0
- data/spec/fixtures/just_installed.conf +1 -0
- data/spec/fixtures/plugin/ja/sample.rb +4 -0
- data/spec/fixtures/plugin/sample.rb +6 -0
- data/spec/fixtures/sample.rb +12 -0
- data/spec/fixtures/tdiary.conf.gem +212 -0
- data/spec/fixtures/tdiary.conf.rack +212 -0
- data/spec/fixtures/tdiary.conf.rdb +227 -0
- data/spec/fixtures/tdiary.conf.secure +204 -0
- data/spec/fixtures/tdiary.conf.webrick +212 -0
- data/spec/javascripts/00default_spec.js +35 -0
- data/spec/javascripts/fixtures/00default.html +1 -0
- data/spec/javascripts/support/jasmine.yml +76 -0
- data/spec/plugin/bq_spec.rb +24 -0
- data/spec/plugin/plugin_helper.rb +203 -0
- data/spec/spec_helper.rb +32 -0
- data/tdiary.conf.beginner +244 -0
- data/tdiary.conf.sample +345 -0
- data/tdiary.conf.sample-en +333 -0
- data/tdiary.gemspec +26 -0
- data/tdiary.rb +151 -0
- data/tdiary/admin.rb +236 -0
- data/tdiary/application.rb +57 -0
- data/tdiary/author_only_base.rb +171 -0
- data/tdiary/base.rb +220 -0
- data/tdiary/cli.rb +116 -0
- data/tdiary/comment.rb +40 -0
- data/tdiary/comment_manager.rb +94 -0
- data/tdiary/compatible.rb +72 -0
- data/tdiary/config.rb +270 -0
- data/tdiary/core_ext.rb +122 -0
- data/tdiary/deploy.rb +50 -0
- data/tdiary/dispatcher.rb +77 -0
- data/tdiary/dispatcher/index_main.rb +122 -0
- data/tdiary/dispatcher/update_main.rb +101 -0
- data/tdiary/environment.rb +15 -0
- data/tdiary/filter.rb +48 -0
- data/tdiary/filter/default.rb +54 -0
- data/tdiary/filter/spam.rb +304 -0
- data/tdiary/io/base.rb +70 -0
- data/tdiary/io/cache/file.rb +123 -0
- data/tdiary/io/cache/memcached.rb +88 -0
- data/tdiary/io/cache/redis.rb +100 -0
- data/tdiary/io/default.rb +297 -0
- data/tdiary/io/pstore.rb +252 -0
- data/tdiary/io/rdb.rb +213 -0
- data/tdiary/lang/en.rb +79 -0
- data/tdiary/lang/ja.rb +72 -0
- data/tdiary/plugin.rb +375 -0
- data/tdiary/rack/assets/precompile.rb +37 -0
- data/tdiary/rack/auth/basic.rb +38 -0
- data/tdiary/rack/auth/omniauth.rb +51 -0
- data/tdiary/rack/html_anchor.rb +31 -0
- data/tdiary/rack/valid_request_path.rb +36 -0
- data/tdiary/referer_manager.rb +80 -0
- data/tdiary/request.rb +217 -0
- data/tdiary/response.rb +29 -0
- data/tdiary/server.rb +85 -0
- data/tdiary/style.rb +194 -0
- data/tdiary/style/tdiary_style.rb +198 -0
- data/tdiary/style/wiki_style.rb +213 -0
- data/tdiary/tasks.rb +1 -0
- data/tdiary/tasks/assets.rake +31 -0
- data/tdiary/tasks/auth.rake +28 -0
- data/tdiary/tasks/db.rake +110 -0
- data/tdiary/tasks/doc.rake +31 -0
- data/tdiary/tasks/heroku.rake +37 -0
- data/tdiary/tasks/jasmine.rake +16 -0
- data/tdiary/tasks/rdoc.rake +24 -0
- data/tdiary/tasks/release.rake +122 -0
- data/tdiary/tasks/rspec.rake +51 -0
- data/tdiary/tasks/server.rake +33 -0
- data/tdiary/tasks/test.rake +17 -0
- data/tdiary/version.rb +3 -0
- data/tdiary/view.rb +468 -0
- data/tdiary/view_helper.rb +15 -0
- data/test/disp_referrer_test.rb +93 -0
- data/test/my-sequel_test.rb +238 -0
- data/test/test_helper.rb +7 -0
- data/test/test_plugin_helper.rb +64 -0
- data/test/test_plugin_helper_test.rb +28 -0
- data/test/weather_test.rb +33 -0
- data/theme/base.css +268 -0
- data/theme/conf.block.png +0 -0
- data/theme/conf.css +254 -0
- data/theme/default/README +11 -0
- data/theme/default/body.png +0 -0
- data/theme/default/default.css +743 -0
- data/theme/help.png +0 -0
- data/theme/loading.gif +0 -0
- data/theme/tdiary1/README +7 -0
- data/theme/tdiary1/tdiary1.css +394 -0
- data/theme/tdiary2/README +19 -0
- data/theme/tdiary2/tdiary2.css +624 -0
- data/update.fcgi +45 -0
- data/update.rb +57 -0
- data/vendor/hikidoc-0.0.6/COPYING +28 -0
- data/vendor/hikidoc-0.0.6/NEWS +30 -0
- data/vendor/hikidoc-0.0.6/NEWS.ja +30 -0
- data/vendor/hikidoc-0.0.6/README +86 -0
- data/vendor/hikidoc-0.0.6/README.ja +83 -0
- data/vendor/hikidoc-0.0.6/Rakefile +68 -0
- data/vendor/hikidoc-0.0.6/TextFormattingRules +320 -0
- data/vendor/hikidoc-0.0.6/TextFormattingRules.ja +318 -0
- data/vendor/hikidoc-0.0.6/bin/hikidoc +66 -0
- data/vendor/hikidoc-0.0.6/lib/hikidoc.rb +914 -0
- data/vendor/hikidoc-0.0.6/setup.rb +1360 -0
- data/vendor/hikidoc-0.0.6/test/run-test.rb +13 -0
- data/vendor/hikidoc-0.0.6/test/test_hikidoc.rb +506 -0
- data/vendor/imagesize-0.1.1/Manifest.txt +19 -0
- data/vendor/imagesize-0.1.1/README.txt +49 -0
- data/vendor/imagesize-0.1.1/lib/image_size.rb +305 -0
- data/vendor/imagesize-0.1.1/lib/image_size/version.rb +9 -0
- data/vendor/imagesize-0.1.1/setup.rb +1585 -0
- data/vendor/imagesize-0.1.1/test/2-4-7.png +0 -0
- data/vendor/imagesize-0.1.1/test/4_1_2.gif +0 -0
- data/vendor/imagesize-0.1.1/test/bmp.bmp +0 -0
- data/vendor/imagesize-0.1.1/test/cursor.xbm +6 -0
- data/vendor/imagesize-0.1.1/test/detect.swf +0 -0
- data/vendor/imagesize-0.1.1/test/pbm.pbm +0 -0
- data/vendor/imagesize-0.1.1/test/pcx.pcx +0 -0
- data/vendor/imagesize-0.1.1/test/pgm.pgm +5 -0
- data/vendor/imagesize-0.1.1/test/test.xpm +38 -0
- data/vendor/imagesize-0.1.1/test/test_helper.rb +2 -0
- data/vendor/imagesize-0.1.1/test/test_image_size.rb +71 -0
- data/vendor/imagesize-0.1.1/test/tiff.tiff +0 -0
- data/vendor/imagesize-0.1.1/test/tokyo_tower.jpg +0 -0
- data/vendor/imagesize-0.1.1/test/tower_e.gif.psd +0 -0
- data/vendor/jasmine-jquery-1.4.2/jasmine-jquery.js +548 -0
- data/vendor/jquery-1.8/jquery.js +9227 -0
- data/vendor/rdtool-0.6.38/COPYING.txt +339 -0
- data/vendor/rdtool-0.6.38/Gemfile +3 -0
- data/vendor/rdtool-0.6.38/HISTORY +318 -0
- data/vendor/rdtool-0.6.38/LGPL-2.1 +502 -0
- data/vendor/rdtool-0.6.38/LICENSE.txt +58 -0
- data/vendor/rdtool-0.6.38/README.html +66 -0
- data/vendor/rdtool-0.6.38/README.ja.html +73 -0
- data/vendor/rdtool-0.6.38/README.rd +76 -0
- data/vendor/rdtool-0.6.38/README.rd.ja +85 -0
- data/vendor/rdtool-0.6.38/Rakefile +152 -0
- data/vendor/rdtool-0.6.38/TODO +22 -0
- data/vendor/rdtool-0.6.38/bin/rd2 +283 -0
- data/vendor/rdtool-0.6.38/bin/rdswap.rb +207 -0
- data/vendor/rdtool-0.6.38/doc/rd-draft.html +456 -0
- data/vendor/rdtool-0.6.38/doc/rd-draft.ja.html +466 -0
- data/vendor/rdtool-0.6.38/doc/rd-draft.rd +479 -0
- data/vendor/rdtool-0.6.38/doc/rd-draft.rd.ja +487 -0
- data/vendor/rdtool-0.6.38/lib/rd/block-element.rb +114 -0
- data/vendor/rdtool-0.6.38/lib/rd/complex-list-item.rb +65 -0
- data/vendor/rdtool-0.6.38/lib/rd/desclist.rb +55 -0
- data/vendor/rdtool-0.6.38/lib/rd/document-struct.rb +46 -0
- data/vendor/rdtool-0.6.38/lib/rd/dot.rd2rc +18 -0
- data/vendor/rdtool-0.6.38/lib/rd/element.rb +160 -0
- data/vendor/rdtool-0.6.38/lib/rd/filter.rb +255 -0
- data/vendor/rdtool-0.6.38/lib/rd/head-filter.rb +14 -0
- data/vendor/rdtool-0.6.38/lib/rd/inline-element.rb +233 -0
- data/vendor/rdtool-0.6.38/lib/rd/labeled-element.rb +14 -0
- data/vendor/rdtool-0.6.38/lib/rd/list.rb +57 -0
- data/vendor/rdtool-0.6.38/lib/rd/loose-struct.rb +11 -0
- data/vendor/rdtool-0.6.38/lib/rd/methodlist.rb +57 -0
- data/vendor/rdtool-0.6.38/lib/rd/output-format-visitor.rb +30 -0
- data/vendor/rdtool-0.6.38/lib/rd/package.rb +4 -0
- data/vendor/rdtool-0.6.38/lib/rd/parser-util.rb +14 -0
- data/vendor/rdtool-0.6.38/lib/rd/post-install +1 -0
- data/vendor/rdtool-0.6.38/lib/rd/pre-setup.rb +18 -0
- data/vendor/rdtool-0.6.38/lib/rd/rbl-file.rb +69 -0
- data/vendor/rdtool-0.6.38/lib/rd/rbl-suite.rb +37 -0
- data/vendor/rdtool-0.6.38/lib/rd/rd-struct.rb +86 -0
- data/vendor/rdtool-0.6.38/lib/rd/rd2html-ext-lib.rb +266 -0
- data/vendor/rdtool-0.6.38/lib/rd/rd2html-ext-opt.rb +34 -0
- data/vendor/rdtool-0.6.38/lib/rd/rd2html-lib.rb +490 -0
- data/vendor/rdtool-0.6.38/lib/rd/rd2html-opt.rb +67 -0
- data/vendor/rdtool-0.6.38/lib/rd/rd2man-lib.rb +251 -0
- data/vendor/rdtool-0.6.38/lib/rd/rd2rdo-lib.rb +19 -0
- data/vendor/rdtool-0.6.38/lib/rd/rd2rmi-lib.rb +32 -0
- data/vendor/rdtool-0.6.38/lib/rd/rdblockparser.ry +518 -0
- data/vendor/rdtool-0.6.38/lib/rd/rdblockparser.tab.rb +1061 -0
- data/vendor/rdtool-0.6.38/lib/rd/rdfmt.rb +15 -0
- data/vendor/rdtool-0.6.38/lib/rd/rdinlineparser.ry +503 -0
- data/vendor/rdtool-0.6.38/lib/rd/rdinlineparser.tab.rb +1243 -0
- data/vendor/rdtool-0.6.38/lib/rd/rdvisitor.rb +214 -0
- data/vendor/rdtool-0.6.38/lib/rd/reference-resolver.rb +114 -0
- data/vendor/rdtool-0.6.38/lib/rd/search-file.rb +14 -0
- data/vendor/rdtool-0.6.38/lib/rd/tree.rb +103 -0
- data/vendor/rdtool-0.6.38/lib/rd/version.rb +41 -0
- data/vendor/rdtool-0.6.38/lib/rd/visitor.rb +86 -0
- data/vendor/rdtool-0.6.38/rdtool.gemspec +125 -0
- data/vendor/rdtool-0.6.38/setup.rb +1596 -0
- data/vendor/rdtool-0.6.38/test/data/includee1.html +1 -0
- data/vendor/rdtool-0.6.38/test/data/includee2.html +1 -0
- data/vendor/rdtool-0.6.38/test/data/includee3.nothtml +1 -0
- data/vendor/rdtool-0.6.38/test/data/includee4.xhtml +0 -0
- data/vendor/rdtool-0.6.38/test/data/label.rbl +2 -0
- data/vendor/rdtool-0.6.38/test/data/label2.rbl +2 -0
- data/vendor/rdtool-0.6.38/test/data/sub/includee2.html +1 -0
- data/vendor/rdtool-0.6.38/test/data/sub/includee4.html +0 -0
- data/vendor/rdtool-0.6.38/test/dummy-observer.rb +6 -0
- data/vendor/rdtool-0.6.38/test/dummy.rb +33 -0
- data/vendor/rdtool-0.6.38/test/temp-dir.rb +19 -0
- data/vendor/rdtool-0.6.38/test/test-block-parser.rb +46 -0
- data/vendor/rdtool-0.6.38/test/test-desclist-item.rb +219 -0
- data/vendor/rdtool-0.6.38/test/test-document-element.rb +46 -0
- data/vendor/rdtool-0.6.38/test/test-document-struct.rb +66 -0
- data/vendor/rdtool-0.6.38/test/test-element.rb +46 -0
- data/vendor/rdtool-0.6.38/test/test-headline.rb +80 -0
- data/vendor/rdtool-0.6.38/test/test-inline-parser.rb +46 -0
- data/vendor/rdtool-0.6.38/test/test-list-item.rb +54 -0
- data/vendor/rdtool-0.6.38/test/test-list.rb +53 -0
- data/vendor/rdtool-0.6.38/test/test-methodlist-item.rb +73 -0
- data/vendor/rdtool-0.6.38/test/test-nonterminal-element.rb +170 -0
- data/vendor/rdtool-0.6.38/test/test-nonterminal-inline.rb +33 -0
- data/vendor/rdtool-0.6.38/test/test-output-format-visitor.rb +48 -0
- data/vendor/rdtool-0.6.38/test/test-parser-util.rb +41 -0
- data/vendor/rdtool-0.6.38/test/test-rbl-file.rb +156 -0
- data/vendor/rdtool-0.6.38/test/test-rbl-suite.rb +43 -0
- data/vendor/rdtool-0.6.38/test/test-rd2html-lib.rb +496 -0
- data/vendor/rdtool-0.6.38/test/test-rdtree.rb +17 -0
- data/vendor/rdtool-0.6.38/test/test-rdvisitor.rb +29 -0
- data/vendor/rdtool-0.6.38/test/test-reference-resolver.rb +202 -0
- data/vendor/rdtool-0.6.38/test/test-reference.rb +132 -0
- data/vendor/rdtool-0.6.38/test/test-search-file.rb +22 -0
- data/vendor/rdtool-0.6.38/test/test-terminal-inline.rb +41 -0
- data/vendor/rdtool-0.6.38/test/test-textblock.rb +44 -0
- data/vendor/rdtool-0.6.38/test/test-tree.rb +82 -0
- data/vendor/rdtool-0.6.38/test/test-version.rb +57 -0
- data/vendor/rdtool-0.6.38/test/test-visitor.rb +230 -0
- data/vendor/rdtool-0.6.38/utils/rd-mode.el +464 -0
- metadata +666 -0
@@ -0,0 +1,14 @@
|
|
1
|
+
# English resource of dropdown_calendar.rb
|
2
|
+
#
|
3
|
+
# calendar: replace calendar with dropdown style.
|
4
|
+
# Parameter: none.
|
5
|
+
#
|
6
|
+
|
7
|
+
@dropdown_calendar_label = 'Past Diaries'
|
8
|
+
|
9
|
+
# Local Variables:
|
10
|
+
# mode: ruby
|
11
|
+
# indent-tabs-mode: t
|
12
|
+
# tab-width: 3
|
13
|
+
# ruby-indent-level: 3
|
14
|
+
# End:
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# English resources of edit_today plugin.
|
2
|
+
|
3
|
+
@edit_today_caption = 'Edit'
|
4
|
+
|
5
|
+
def edit_today_edit_label( date )
|
6
|
+
date.strftime( 'Edit %Y-%m-%d' )
|
7
|
+
end
|
8
|
+
|
9
|
+
def edit_today_conf_html
|
10
|
+
r = <<-HTML
|
11
|
+
<h3 class="subtitle">Link String</h3>
|
12
|
+
<p>Specify string to link to edit page. If you have image file, you can specify icon on this link.</p>
|
13
|
+
<p><input name="edit_today_caption" size="70" value="#{h @conf['edit_today.caption']}"></p>
|
14
|
+
HTML
|
15
|
+
end
|
16
|
+
|
17
|
+
# Local Variables:
|
18
|
+
# mode: ruby
|
19
|
+
# indent-tabs-mode: t
|
20
|
+
# tab-width: 3
|
21
|
+
# ruby-indent-level: 3
|
22
|
+
# End:
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# English resource of hide-mail-field plugin
|
2
|
+
|
3
|
+
@hide_mail_field_label_conf = 'Hide Mail Field'
|
4
|
+
|
5
|
+
def hide_mail_field_conf_html
|
6
|
+
r = <<-HTML
|
7
|
+
<h3>Description of TSUKKOMI</h3>
|
8
|
+
<p>Show messeges about hidden of E-mail field for your subscribers. This field is as same as in default spam filter preferences.<br>
|
9
|
+
<textarea name="comment_description" cols="60" rows="5">#{h comment_description}</textarea></p>
|
10
|
+
Ex. "Add a TSUKKOMI or Comment please. E-mail field was hidden because against spam. Please do not input E-mail address if you can see it."</p>
|
11
|
+
HTML
|
12
|
+
end
|
13
|
+
|
14
|
+
# Local Variables:
|
15
|
+
# mode: ruby
|
16
|
+
# indent-tabs-mode: t
|
17
|
+
# tab-width: 3
|
18
|
+
# ruby-indent-level: 3
|
19
|
+
# End:
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# Japanese resource of highlight.rb
|
2
|
+
#
|
3
|
+
|
4
|
+
def highlight_conf_label; 'Highlight'; end
|
5
|
+
|
6
|
+
def highlight_conf_html
|
7
|
+
<<-HTML
|
8
|
+
<h3 class="subtitle">Color Settings of Highlight</h3>
|
9
|
+
<p>Highlights subtitle jumped from other pages as <span style="color: #{h @conf['highlight.color']}; background: #{h @conf['highlight.background']}">THIS</span>.</p>
|
10
|
+
|
11
|
+
<table>
|
12
|
+
<tr>
|
13
|
+
<th>Text color of highlight</th>
|
14
|
+
<td><input name="highlight.color" value="#{h @conf['highlight.color']}"></td>
|
15
|
+
</tr>
|
16
|
+
<tr>
|
17
|
+
<th>Background color of highlight</th>
|
18
|
+
<td><input name="highlight.background" value="#{h @conf['highlight.background']}"></td>
|
19
|
+
</tr>
|
20
|
+
</table>
|
21
|
+
HTML
|
22
|
+
end
|
23
|
+
|
24
|
+
# Local Variables:
|
25
|
+
# mode: ruby
|
26
|
+
# indent-tabs-mode: t
|
27
|
+
# tab-width: 3
|
28
|
+
# ruby-indent-level: 3
|
29
|
+
# End:
|
@@ -0,0 +1,54 @@
|
|
1
|
+
#
|
2
|
+
# English resource of image plugin
|
3
|
+
#
|
4
|
+
|
5
|
+
#
|
6
|
+
# Image Diary - Upload images and insert to diary.
|
7
|
+
#
|
8
|
+
# image( number, 'altword', thumbnail, size, place ) - show an image.
|
9
|
+
# number - image ID as 0, 1, 2...
|
10
|
+
# altword - alt strings of the img element.
|
11
|
+
# thumbnail - image ID of thumbnail (optional)
|
12
|
+
# size - array format of image size (optional), as [width, height]
|
13
|
+
# place - class name of <img> tag (optional), "place" is default.
|
14
|
+
#
|
15
|
+
# image_left( number, 'altword', thumbnail, size ) - show an image with "class=left"
|
16
|
+
# image_right( number, 'altword', thumbnail, size ) - show an image with "class=right"
|
17
|
+
#
|
18
|
+
# image_link( number, 'desc' ) - make link to an image.
|
19
|
+
# number - image ID as 0, 1, 2...
|
20
|
+
# desc - description of the image.
|
21
|
+
#
|
22
|
+
# options in tdiary.conf:
|
23
|
+
# @options['image.dir']
|
24
|
+
# Directory of uploading images. Default is './images/'.
|
25
|
+
# You have to set parmission to writable by web server.
|
26
|
+
# @options['image.url']
|
27
|
+
# URL of the image directory. Default is './images/'.
|
28
|
+
# @options['image.maxnum']
|
29
|
+
# Max of number of images per a day. Default is 1.
|
30
|
+
# This option is effective in @secure = true.
|
31
|
+
# @options['image.maxsize']
|
32
|
+
# Max size of an image. Default is 10000 bytes.
|
33
|
+
# This option is effective in @secure = true.
|
34
|
+
# @options['image.maxwidth']
|
35
|
+
# Max display width of image without specified 'size' parameter.
|
36
|
+
# It will ignore when @secure = true.
|
37
|
+
#
|
38
|
+
def image_error_num( max ); "You can add images upto #{h max} par a day."; end
|
39
|
+
def image_error_size( max ); "You can add images upto #{h max} bytes par an image."; end
|
40
|
+
def image_label_list_caption; 'Image Diary (List/Delete) - Click an image to insert'; end
|
41
|
+
def image_label_add_caption; 'Image Diary (Add)'; end
|
42
|
+
def image_label_description; 'Description of the image'; end
|
43
|
+
def image_label_add_plugin; 'Add to the article'; end
|
44
|
+
def image_label_delete; 'Delete checked images'; end
|
45
|
+
def image_label_only_jpeg; 'Only JPEG'; end
|
46
|
+
def image_label_add_image; 'Upload the image'; end
|
47
|
+
def image_label_drop_here; 'Drop files here'; end
|
48
|
+
|
49
|
+
# Local Variables:
|
50
|
+
# mode: ruby
|
51
|
+
# indent-tabs-mode: t
|
52
|
+
# tab-width: 3
|
53
|
+
# ruby-indent-level: 3
|
54
|
+
# End:
|
@@ -0,0 +1,22 @@
|
|
1
|
+
def kw_label
|
2
|
+
"Keyword"
|
3
|
+
end
|
4
|
+
|
5
|
+
def kw_desc
|
6
|
+
<<-HTML
|
7
|
+
<p>kw(KeyWord) plugin generate a Link by simple words. You can specify keywords
|
8
|
+
as space sepalated value: "keyword URL". For example,</p>
|
9
|
+
<pre>google http://www.google.com/search?q=$1</pre>
|
10
|
+
<p>then you specify in your diary as:</p>
|
11
|
+
<pre><%=kw 'google:tdiary' %></pre>
|
12
|
+
<p>so it will be translated to link of seraching 'tdiary' at Google.</p>
|
13
|
+
HTML
|
14
|
+
end
|
15
|
+
|
16
|
+
|
17
|
+
# Local Variables:
|
18
|
+
# mode: ruby
|
19
|
+
# indent-tabs-mode: t
|
20
|
+
# tab-width: 3
|
21
|
+
# ruby-indent-level: 3
|
22
|
+
# End:
|
@@ -0,0 +1,47 @@
|
|
1
|
+
# makerss.rb English resources
|
2
|
+
def makerss_tsukkomi_label( id )
|
3
|
+
"TSUKKOMI to #{id[0,4]}-#{id[4,2]}-#{id[6,2]}[#{id[/[1-9]\d*$/]}]"
|
4
|
+
end
|
5
|
+
|
6
|
+
@makerss_conf_label = 'RSS feeds'
|
7
|
+
|
8
|
+
def makerss_conf_html
|
9
|
+
<<-HTML
|
10
|
+
<h3>RSS feeds settings</h3>
|
11
|
+
<p>RSS feeds provides contents of your diary in a machine-readable format.
|
12
|
+
Information in RSS is read with RSS readers and posted on other web sites.</p>
|
13
|
+
#{%Q[<p class="message">Cannot write to file '#{@makerss_full.file}'.<br>This file have to writable by your web server.</p>] unless @makerss_full.writable?}
|
14
|
+
<ul>
|
15
|
+
<li><select name="makerss.hidecontent">
|
16
|
+
<option value="f"#{' selected' unless @conf['makerss.hidecontent']}>Include</option>
|
17
|
+
<option value="t"#{' selected' if @conf['makerss.hidecontent']}>Hide</option></select>
|
18
|
+
encoded contents of your diary in the feed.
|
19
|
+
<li>Include summary of your contents<select name="makerss.shortdesc">
|
20
|
+
<option value="f"#{' selected' unless @conf['makerss.shortdesc']}>as long as possible</option>
|
21
|
+
<option value="t"#{' selected' if @conf['makerss.shortdesc']}>only some portion</option></select>
|
22
|
+
in the feed.
|
23
|
+
<li><select name="makerss.comment_link">
|
24
|
+
<option value="f"#{' selected' unless @conf['makerss.comment_link']}>Insert</option>
|
25
|
+
<option value="t"#{' selected' if @conf['makerss.comment_link']}>Don't Insert </option></select>
|
26
|
+
a link to TSUKKOMI form into encoded text.
|
27
|
+
</ul>
|
28
|
+
|
29
|
+
<h3>Feed without TSUKKOMI</h3>
|
30
|
+
<p>Standard feed contains your diary and also TSUKKOMIs by your diary readers. If you want to make a feed without TSUKKOMIs, set this preference below. So, when standard feed has encoded contens, this feed contain encoded text of TSUKKOMI also.</p>
|
31
|
+
#{%Q[<p class="message">Cannot write to file '#{@makerss_no_comments.file}'.<br>This file have to writable by your web server.</p>] if @conf['makerss.no_comments'] and !@makerss_no_comments.writable?}
|
32
|
+
<ul>
|
33
|
+
<li><select name="makerss.no_comments">
|
34
|
+
<option value="t"#{' selected' if @conf['makerss.no_comments']}>Feed</option>
|
35
|
+
<option value="f"#{' selected' unless @conf['makerss.no_comments']}>Don't feed</option></select> RSS without TSUKKOMI.</li>
|
36
|
+
</ul>
|
37
|
+
HTML
|
38
|
+
end
|
39
|
+
|
40
|
+
@makerss_edit_label = "A little modify (don't update feeds)"
|
41
|
+
|
42
|
+
# Local Variables:
|
43
|
+
# mode: ruby
|
44
|
+
# indent-tabs-mode: t
|
45
|
+
# tab-width: 3
|
46
|
+
# ruby-indent-level: 3
|
47
|
+
# End:
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# English resource of pb-show.rb
|
2
|
+
#
|
3
|
+
def pingback_today; "Today's Pingbacks"; end
|
4
|
+
def pingback_total( total ); "(Total: #{total})"; end
|
5
|
+
def pb_show_conf_html
|
6
|
+
<<-"HTML"
|
7
|
+
<h3 class="subtitle">Pingback anchor</h3>
|
8
|
+
#{"<p>Pingback anchor is inserted into begining of each Pingbacks from other weblogs. So You can specify '<span class=\"tanchor\">_</span>\">', image anchor will be shown Image anchor by themes.</p>" unless @cgi.mobile_agent?}
|
9
|
+
<p><input name="trackback_anchor" value="#{ h(@conf['trackback_anchor'] || @conf.comment_anchor ) }" size="40"></p>
|
10
|
+
<h3 class="subtitle">Number of Pingbacks</h3>
|
11
|
+
#{"<p>In Latest or Month mode, you can specify number of visible Pingbacks. So in Dayly mode, all of Pingbacks are shown.</p>" unless @cgi.mobile_agent?}
|
12
|
+
<p><input name="trackback_limit" value="#{ h( @conf['trackback_limit'] || @conf.comment_limit )}" size="3"> Pingbacks</p>
|
13
|
+
HTML
|
14
|
+
end
|
15
|
+
|
16
|
+
# Local Variables:
|
17
|
+
# mode: ruby
|
18
|
+
# indent-tabs-mode: t
|
19
|
+
# tab-width: 3
|
20
|
+
# ruby-indent-level: 3
|
21
|
+
# End:
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# ping.rb English resources
|
2
|
+
if /conf/ =~ @mode then
|
3
|
+
@ping_label_conf = 'Update ping'
|
4
|
+
@ping_label_list = 'List of ping servers'
|
5
|
+
@ping_label_list_desc = 'Specify URLs of ping request.'
|
6
|
+
@ping_label_timeout = 'Timeout(sec)'
|
7
|
+
end
|
8
|
+
|
9
|
+
@ping_label_send = 'Sending ping'
|
10
|
+
|
11
|
+
# Local Variables:
|
12
|
+
# mode: ruby
|
13
|
+
# indent-tabs-mode: t
|
14
|
+
# tab-width: 3
|
15
|
+
# ruby-indent-level: 3
|
16
|
+
# End:
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# en/recent_comment.rb
|
2
|
+
#
|
3
|
+
# English resources for recent_comment.rb
|
4
|
+
#
|
5
|
+
# Copyright (c) 2005 Hiroshi SHIBATA <h-sbt@nifty.com>
|
6
|
+
# Distributed under the GPL
|
7
|
+
#
|
8
|
+
|
9
|
+
if @mode == 'conf' || @mode == 'saveconf'
|
10
|
+
add_conf_proc( 'recent_comment', 'Recent TSUKKOMI', 'tsukkomi' ) do
|
11
|
+
saveconf_recent_comment
|
12
|
+
recent_comment_init
|
13
|
+
<<-HTML
|
14
|
+
<h3 class="subtitle">The number of display comment</h3>
|
15
|
+
<p>Max <input name="recent_comment.max" value="#{h( @conf['recent_comment.max'] )}" size="3" /> item</p>
|
16
|
+
<h3 class="subtitle">Date format</h3>
|
17
|
+
<p>Refer to <a href="http://www.ruby-lang.org/ja/man/index.cgi?cmd=view;name=Time#strftime">Ruby's Manual</a>for the \'%\' character that can be used.</p>
|
18
|
+
<p><input name="recent_comment.date_format" value="#{h( @conf['recent_comment.date_format'] )}" size="40" /></p>
|
19
|
+
<h3 class="subtitle">Non display name in recent comment list</h3>
|
20
|
+
<p>Specified The name not displayed in the list.</p>
|
21
|
+
<p><input name="recent_comment.except_list" size="60" value="#{h( @conf['recent_comment.except_list'] )}" /></p>
|
22
|
+
<h3 class="subtitle">HTML Template for generate</h3>
|
23
|
+
<p>Specify how each comment is rendered.</p>
|
24
|
+
<textarea name="recent_comment.format" cols="60" rows="3">#{h( @conf['recent_comment.format'] )}</textarea>
|
25
|
+
<p><em>$digit</em> in the template is replaced as follows.</p>
|
26
|
+
<dl>
|
27
|
+
<dt>$2</dt><dd>comment's URL</dd>
|
28
|
+
<dt>$3</dt><dd>comment's shortening display</dd>
|
29
|
+
<dt>$4</dt><dd>name of comment's author</dd>
|
30
|
+
<dt>$5</dt><dd>when the comment is received</dd>
|
31
|
+
</dl>
|
32
|
+
<h3 class="subtitle">Message for no comment</h3>
|
33
|
+
<p>Specify the message to be shown when there is no comment entry.</p>
|
34
|
+
<p><input name="recent_comment.notfound_msg" value="#{h( @conf['recent_comment.notfound_msg'] )}" size="40" /></p>
|
35
|
+
HTML
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
# Local Variables:
|
40
|
+
# mode: ruby
|
41
|
+
# indent-tabs-mode: t
|
42
|
+
# tab-width: 3
|
43
|
+
# ruby-indent-level: 3
|
44
|
+
# End:
|
@@ -0,0 +1,56 @@
|
|
1
|
+
# en/recent_comment3.rb
|
2
|
+
#
|
3
|
+
# English resources for recent_comment3.rb
|
4
|
+
#
|
5
|
+
# Copyright (c) 2005 Hiroshi SHIBATA <h-sbt@nifty.com>
|
6
|
+
# Distributed under the GPL
|
7
|
+
#
|
8
|
+
|
9
|
+
if @mode == 'conf' || @mode == 'saveconf'
|
10
|
+
add_conf_proc( 'recent_comment3', 'Recent TSUKKOMI', 'tsukkomi' ) do
|
11
|
+
saveconf_recent_comment3
|
12
|
+
recent_comment3_init
|
13
|
+
checked = "t" == @conf['recent_comment3.tree'] ? ' checked' : ''
|
14
|
+
|
15
|
+
<<-HTML
|
16
|
+
<h3 class="subtitle">The number of display comment</h3>
|
17
|
+
<p>Max <input name="recent_comment3.max" value="#{h( @conf['recent_comment3.max'] )}" size="3" /> item</p>
|
18
|
+
|
19
|
+
<h3 class="subtitle">Date format</h3>
|
20
|
+
<p>Refer to <a href="http://www.ruby-lang.org/ja/man/index.cgi?cmd=view;name=Time#strftime">Ruby's Manual</a>for the \'%\' character that can be used.</p>
|
21
|
+
<p><input name="recent_comment3.date_format" value="#{h( @conf['recent_comment3.date_format'] )}" size="40" /></p>
|
22
|
+
|
23
|
+
<h3 class="subtitle">Non display name in recent comment list</h3>
|
24
|
+
<p>Specified The name not displayed in the list. Name is delimited by ","</p>
|
25
|
+
<p><input name="recent_comment3.except_list" size="60" value="#{h( @conf['recent_comment3.except_list'] )}" /></p>
|
26
|
+
|
27
|
+
<h3 class="subtitle">Tree View mode</h3>
|
28
|
+
<p><label for="recent_comment3.tree"><input id="recent_comment3.tree" name="recent_comment3.tree" type="checkbox" value="t"#{checked} />used Tree View</label></p>
|
29
|
+
|
30
|
+
<h3 class="subtitle">length of title at Tree View mode</h3>
|
31
|
+
<p>Input length of title at Tree View mode. When Tree view mode is not used, it doesn't relate.</p>
|
32
|
+
<p>Max <input name="recent_comment3.titlelen" value="#{h( @conf['recent_comment3.titlelen'] )}" size="3" /> characters.</p>
|
33
|
+
|
34
|
+
<h3 class="subtitle">HTML Template for generate</h3>
|
35
|
+
<p>Specify how each comment is rendered.</p>
|
36
|
+
<textarea name="recent_comment3.format" cols="60" rows="3">#{h( @conf['recent_comment3.format'] )}</textarea>
|
37
|
+
<p><em>$digit</em> in the template is replaced as follows.</p>
|
38
|
+
<dl>
|
39
|
+
<dt>$2</dt><dd>comment's URL</dd>
|
40
|
+
<dt>$3</dt><dd>comment's shortening display</dd>
|
41
|
+
<dt>$4</dt><dd>name of comment's author</dd>
|
42
|
+
<dt>$5</dt><dd>when the comment is received</dd>
|
43
|
+
</dl>
|
44
|
+
<h3 class="subtitle">Message for no comment</h3>
|
45
|
+
<p>Specify the message to be shown when there is no comment entry.</p>
|
46
|
+
<p><input name="recent_comment.notfound_msg" value="#{h( @conf['recent_comment.notfound_msg'] )}" size="40" /></p>
|
47
|
+
HTML
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
# Local Variables:
|
52
|
+
# mode: ruby
|
53
|
+
# indent-tabs-mode: t
|
54
|
+
# tab-width: 3
|
55
|
+
# ruby-indent-level: 3
|
56
|
+
# End:
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# -*- indent-tabs-mode: t -*-
|
2
|
+
#
|
3
|
+
# Copyright (c) 2003-2005 Kouhei Sutou <kou@cozmixng.org>
|
4
|
+
# Distributed under the GPL
|
5
|
+
#
|
6
|
+
|
7
|
+
def label_recent_rss_title
|
8
|
+
'External RSS display'
|
9
|
+
end
|
10
|
+
|
11
|
+
def label_recent_rss_use_image_link_title
|
12
|
+
'Image treatment'
|
13
|
+
end
|
14
|
+
|
15
|
+
def label_recent_rss_use_image_link_description
|
16
|
+
"Select whether you use image as link instead of text or not " +
|
17
|
+
"if the RSS has Web site's image information."
|
18
|
+
end
|
19
|
+
|
20
|
+
def label_recent_rss_not_use_image_link
|
21
|
+
"don't use image as link"
|
22
|
+
end
|
23
|
+
|
24
|
+
def label_recent_rss_use_image_link
|
25
|
+
"use image as link"
|
26
|
+
end
|
27
|
+
|
28
|
+
# Local Variables:
|
29
|
+
# mode: ruby
|
30
|
+
# indent-tabs-mode: t
|
31
|
+
# tab-width: 3
|
32
|
+
# ruby-indent-level: 3
|
33
|
+
# End:
|
@@ -0,0 +1,48 @@
|
|
1
|
+
=begin
|
2
|
+
= Meta-scheme plugin((-$Id: referer_scheme.rb,v 1.5 2004-02-26 08:09:24 tadatadashi Exp $-))
|
3
|
+
Makes it easier to edit the referer table.
|
4
|
+
|
5
|
+
== Usage
|
6
|
+
Enable this plug-in by coping into the plugin directory or selecting
|
7
|
+
from the plug-in selection plug-in.
|
8
|
+
|
9
|
+
Then, edit the `Rule of conversion URL to words' in `Today's Link' of
|
10
|
+
`Preference'. Add prefixes (meta-scheme) like `tdiary:'.
|
11
|
+
|
12
|
+
This adds the date of the diaries or blogs according to their URLs.
|
13
|
+
|
14
|
+
For example, set the `Rule' as
|
15
|
+
* tdiary:http://tdiary.tdiary.net/ tDiary.net management journal.
|
16
|
+
For this example, date is added with a (YYYY-MM-DD) format if the
|
17
|
+
information is contained in the URL.
|
18
|
+
|
19
|
+
== Notes
|
20
|
+
For URLs with tdiary:,
|
21
|
+
* Do not use parenthesis `(' and `)'
|
22
|
+
* End the URL with a '/'
|
23
|
+
|
24
|
+
== How to make a meta-scheme
|
25
|
+
Meta-schems are extracted from the user's Rule with a Regexp: /^(\w+):/.
|
26
|
+
Define singleton methods of @conf.referer_table as iterators:
|
27
|
+
def scheme_<scheme>( url, name )
|
28
|
+
:
|
29
|
+
yield( url_variants, name_variants )
|
30
|
+
:
|
31
|
+
end
|
32
|
+
The singleton methods are called according to the user's Rule with the
|
33
|
+
`<scheme>:' part omitted in the url.
|
34
|
+
|
35
|
+
== Copyright
|
36
|
+
Copyright (C) 2003 zunda <zunda at freeshell.org>
|
37
|
+
|
38
|
+
Permission is granted for use, copying, modification, distribution, and
|
39
|
+
distribution of modified versions of this work under the terms of GPL
|
40
|
+
version 2 or later.
|
41
|
+
=end
|
42
|
+
|
43
|
+
# Local Variables:
|
44
|
+
# mode: ruby
|
45
|
+
# indent-tabs-mode: t
|
46
|
+
# tab-width: 3
|
47
|
+
# ruby-indent-level: 3
|
48
|
+
# End:
|