Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(11) |
Jun
(33) |
Jul
(31) |
Aug
(18) |
Sep
(3) |
Oct
(16) |
Nov
(3) |
Dec
(7) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2009 |
Jan
(13) |
Feb
(10) |
Mar
(9) |
Apr
(18) |
May
(22) |
Jun
(12) |
Jul
(20) |
Aug
(36) |
Sep
(7) |
Oct
(4) |
Nov
(13) |
Dec
(9) |
2010 |
Jan
(12) |
Feb
(6) |
Mar
(16) |
Apr
(34) |
May
(8) |
Jun
(9) |
Jul
|
Aug
(53) |
Sep
(37) |
Oct
(78) |
Nov
(11) |
Dec
(40) |
2011 |
Jan
(20) |
Feb
(25) |
Mar
(59) |
Apr
(20) |
May
(37) |
Jun
(52) |
Jul
(36) |
Aug
(56) |
Sep
(45) |
Oct
(20) |
Nov
(36) |
Dec
(11) |
2012 |
Jan
(18) |
Feb
(60) |
Mar
(67) |
Apr
(39) |
May
(44) |
Jun
(25) |
Jul
(7) |
Aug
(59) |
Sep
(183) |
Oct
(102) |
Nov
(44) |
Dec
(88) |
2013 |
Jan
(117) |
Feb
(87) |
Mar
(44) |
Apr
(23) |
May
(948) |
Jun
(45) |
Jul
(72) |
Aug
(30) |
Sep
(29) |
Oct
(15) |
Nov
(25) |
Dec
(14) |
2014 |
Jan
(12) |
Feb
(48) |
Mar
(4) |
Apr
(6) |
May
(30) |
Jun
(18) |
Jul
(8) |
Aug
(37) |
Sep
(30) |
Oct
(34) |
Nov
(34) |
Dec
(25) |
2015 |
Jan
(56) |
Feb
(41) |
Mar
(23) |
Apr
(4) |
May
(9) |
Jun
(8) |
Jul
(9) |
Aug
(12) |
Sep
(8) |
Oct
(4) |
Nov
(31) |
Dec
(54) |
2016 |
Jan
(77) |
Feb
(2) |
Mar
(31) |
Apr
(29) |
May
(34) |
Jun
(10) |
Jul
(7) |
Aug
(27) |
Sep
(12) |
Oct
(9) |
Nov
(10) |
Dec
(33) |
2017 |
Jan
(36) |
Feb
(12) |
Mar
(17) |
Apr
(4) |
May
(9) |
Jun
(22) |
Jul
(7) |
Aug
(11) |
Sep
(16) |
Oct
(8) |
Nov
(4) |
Dec
(18) |
2018 |
Jan
(21) |
Feb
|
Mar
(15) |
Apr
(7) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1
|
2
|
3
|
4
|
5
|
6
(2) |
7
|
8
|
9
|
10
(3) |
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
(1) |
21
(1) |
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
(2) |
31
|
|
|
|
|
From: <hsbt@us...> - 2009-03-30 09:51:05
|
Revision: 3419 http://tdiary.svn.sourceforge.net/tdiary/?rev=3419&view=rev Author: hsbt Date: 2009-03-30 09:50:59 +0000 (Mon, 30 Mar 2009) Log Message: ----------- replace defout to stdout. defout is obsolete. Modified Paths: -------------- trunk/plugin/ChangeLog trunk/plugin/pingback/pb.rb trunk/plugin/trackback/tb.rb trunk/plugin/xmlrpc/xmlrpc.rb Modified: trunk/plugin/ChangeLog =================================================================== --- trunk/plugin/ChangeLog 2009-03-30 09:50:05 UTC (rev 3418) +++ trunk/plugin/ChangeLog 2009-03-30 09:50:59 UTC (rev 3419) @@ -1,3 +1,7 @@ +2009-03-30 SHIBATA Hiroshi <shibata.hiroshi@...> + * pingback/pb.rb, trackbacktb.rb, xmlrpc/xmlrpc.rb: + replace defout to stdout. defout is obsolete. + 2009-03-10 TADA Tadashi <t@...> * todo.rb: changed WAVE DASH to TILDA. * squeeze.rb: changed name of global variable. Modified: trunk/plugin/pingback/pb.rb =================================================================== --- trunk/plugin/pingback/pb.rb 2009-03-30 09:50:05 UTC (rev 3418) +++ trunk/plugin/pingback/pb.rb 2009-03-30 09:50:59 UTC (rev 3419) @@ -7,7 +7,7 @@ # # require Ruby1.8 or xml-rpc(http://raa.ruby-lang.org/project/xml-rpc/) -BEGIN { $defout.binmode } +BEGIN { $stdout.binmode } $KCODE = 'n' if FileTest::symlink?( __FILE__ ) then Modified: trunk/plugin/trackback/tb.rb =================================================================== --- trunk/plugin/trackback/tb.rb 2009-03-30 09:50:05 UTC (rev 3418) +++ trunk/plugin/trackback/tb.rb 2009-03-30 09:50:59 UTC (rev 3419) @@ -7,7 +7,7 @@ # derived from sheepman's tb.rb. Thanks to sheepman <sheepman@...> # -BEGIN { $defout.binmode } +BEGIN { $stdout.binmode } $KCODE = 'n' begin Modified: trunk/plugin/xmlrpc/xmlrpc.rb =================================================================== --- trunk/plugin/xmlrpc/xmlrpc.rb 2009-03-30 09:50:05 UTC (rev 3418) +++ trunk/plugin/xmlrpc/xmlrpc.rb 2009-03-30 09:50:59 UTC (rev 3419) @@ -6,7 +6,7 @@ # # require Ruby1.8 or xml-rpc(http://raa.ruby-lang.org/project/xml-rpc/) -BEGIN { $defout.binmode } +BEGIN { $stdout.binmode } $KCODE = 'n' if FileTest::symlink?( __FILE__ ) then This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hsbt@us...> - 2009-03-30 09:50:20
|
Revision: 3418 http://tdiary.svn.sourceforge.net/tdiary/?rev=3418&view=rev Author: hsbt Date: 2009-03-30 09:50:05 +0000 (Mon, 30 Mar 2009) Log Message: ----------- replace defout to stdout. defout is obsolete. Modified Paths: -------------- trunk/core/ChangeLog trunk/core/misc/migrate.rb Modified: trunk/core/ChangeLog =================================================================== --- trunk/core/ChangeLog 2009-03-21 07:24:42 UTC (rev 3417) +++ trunk/core/ChangeLog 2009-03-30 09:50:05 UTC (rev 3418) @@ -1,3 +1,6 @@ +2009-03-30 SHIBATA Hiroshi <shibata.hiroshi@...> + * misc/migrate.rb: replace defout to stdout. defout is obsolete. + 2009-03-21 TADA Tadashi <t@...> * plugin/ja/00default.rb: fixed typo. Modified: trunk/core/misc/migrate.rb =================================================================== --- trunk/core/misc/migrate.rb 2009-03-21 07:24:42 UTC (rev 3417) +++ trunk/core/misc/migrate.rb 2009-03-30 09:50:05 UTC (rev 3418) @@ -7,7 +7,7 @@ # Copyright (C) 2007, Kazuhiko <kazuhiko@...> # You can redistribute it and/or modify it under GPL2. # -BEGIN { $defout.binmode } +BEGIN { $stdout.binmode } $KCODE = 'n' require "nkf" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tadatadashi@us...> - 2009-03-21 07:24:46
|
Revision: 3417 http://tdiary.svn.sourceforge.net/tdiary/?rev=3417&view=rev Author: tadatadashi Date: 2009-03-21 07:24:42 +0000 (Sat, 21 Mar 2009) Log Message: ----------- fixed typo. Modified Paths: -------------- trunk/core/ChangeLog trunk/core/plugin/ja/00default.rb Modified: trunk/core/ChangeLog =================================================================== --- trunk/core/ChangeLog 2009-03-20 14:40:15 UTC (rev 3416) +++ trunk/core/ChangeLog 2009-03-21 07:24:42 UTC (rev 3417) @@ -1,3 +1,6 @@ +2009-03-21 TADA Tadashi <t@...> + * plugin/ja/00default.rb: fixed typo. + 2009-03-10 TADA Tadashi <t@...> * plugin/00default: moved mail encoding point after all text builded. * skel/mail.rtxt.*: changed encoding to UTF-8. Modified: trunk/core/plugin/ja/00default.rb =================================================================== --- trunk/core/plugin/ja/00default.rb 2009-03-20 14:40:15 UTC (rev 3416) +++ trunk/core/plugin/ja/00default.rb 2009-03-21 07:24:42 UTC (rev 3417) @@ -180,7 +180,7 @@ <p><input name="index_page" value="#{h @conf.index_page}" size="70"></p> <h3 class="subtitle">日記のURL</h3> - #{"<p>日記のURLを指定します。このURLは、さまざまなプラグインで日記の指し示すために利用されるので、正しく一意なものを指定しましょう。</p>" unless @conf.mobile_agent?} + #{"<p>日記のURLを指定します。このURLは、さまざまなプラグインで日記を指し示すために利用されるので、正しく一意なものを指定しましょう。</p>" unless @conf.mobile_agent?} #{"<p><strong>指定してある値と、現在アクセス中のURLが異なります。注意してください。</strong></p>" unless @conf.base_url == @conf.base_url_auto} <p><input name="base_url" value="#{h @conf.base_url}" size="70"></p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tadatadashi@us...> - 2009-03-20 14:40:20
|
Revision: 3416 http://tdiary.svn.sourceforge.net/tdiary/?rev=3416&view=rev Author: tadatadashi Date: 2009-03-20 14:40:15 +0000 (Fri, 20 Mar 2009) Log Message: ----------- fixed error using with title_tag.rb, change module name TDiary to ::TDiary. Modified Paths: -------------- branches/Stable-2_2/plugin/ChangeLog branches/Stable-2_2/plugin/squeeze.rb Modified: branches/Stable-2_2/plugin/ChangeLog =================================================================== --- branches/Stable-2_2/plugin/ChangeLog 2009-03-10 07:30:47 UTC (rev 3415) +++ branches/Stable-2_2/plugin/ChangeLog 2009-03-20 14:40:15 UTC (rev 3416) @@ -1,3 +1,6 @@ +2009-03-20 TADA Tadashi <sho@...> + * squeeze.rb: fixed error using with title_tag.rb, change module name TDiary to ::TDiary. + 2008-09-10 KURODA Hiraku <hiraku at sapporo.email.ne.jp> * highlight.rb: enable to work on XHTML mode. Modified: branches/Stable-2_2/plugin/squeeze.rb =================================================================== --- branches/Stable-2_2/plugin/squeeze.rb 2009-03-10 07:30:47 UTC (rev 3415) +++ branches/Stable-2_2/plugin/squeeze.rb 2009-03-20 14:40:15 UTC (rev 3416) @@ -105,7 +105,7 @@ # # Dairy Squeeze # -module TDiary +module ::TDiary class YATDiarySqueeze < TDiaryBase def initialize(diary, dest, all_data, compat, conf, suffix) @ignore_parser_cache = true @@ -162,7 +162,7 @@ # # Main # -module TDiary +module ::TDiary class YATDiarySqueezeMain < TDiaryBase def initialize(dest, all_data, compat, conf, suffix) @ignore_parser_cache = true This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tadatadashi@us...> - 2009-03-10 07:31:04
|
Revision: 3415 http://tdiary.svn.sourceforge.net/tdiary/?rev=3415&view=rev Author: tadatadashi Date: 2009-03-10 07:30:47 +0000 (Tue, 10 Mar 2009) Log Message: ----------- * plugin/00default: moved mail encoding point after all text builded. * skel/mail.rtxt.*: changed encoding to UTF-8. Modified Paths: -------------- trunk/core/ChangeLog trunk/core/plugin/00default.rb trunk/core/skel/mail.rtxt.en trunk/core/skel/mail.rtxt.zh Modified: trunk/core/ChangeLog =================================================================== --- trunk/core/ChangeLog 2009-03-10 06:54:28 UTC (rev 3414) +++ trunk/core/ChangeLog 2009-03-10 07:30:47 UTC (rev 3415) @@ -1,3 +1,7 @@ +2009-03-10 TADA Tadashi <t@...> + * plugin/00default: moved mail encoding point after all text builded. + * skel/mail.rtxt.*: changed encoding to UTF-8. + 2009-02-28 TADA Tadashi <t@...> * tdiary/defaultio.rb: sorted by date before saving. Modified: trunk/core/plugin/00default.rb =================================================================== --- trunk/core/plugin/00default.rb 2009-03-10 06:54:28 UTC (rev 3414) +++ trunk/core/plugin/00default.rb 2009-03-10 07:30:47 UTC (rev 3415) @@ -681,7 +681,7 @@ require 'socket' name = comment_mail_mime( @conf.to_mail( @comment.name ) )[0] - body = @conf.to_mail( @comment.body.sub( /[\r\n]+\Z/, '' ) ) + body = @comment.body.sub( /[\r\n]+\Z/, '' ) mail = @comment.mail mail = @conf.author_mail unless mail =~ %r<[0-9a-zA-Z_.-]+@[\(\)%!0-9a-zA-Z_$@.&+-,'"*-]+> mail = receivers[0] if mail.empty? @@ -706,7 +706,7 @@ rescue rmail = File::open( "#{::TDiary::PATH}/skel/mail.rtxt" ){|f| f.read } end - text = ERB::new( rmail.untaint ).result( binding ) + text = @conf.to_mail( ERB::new( rmail.untaint ).result( binding ) ) receivers.each { |i| i.untaint } comment_mail( text, receivers ) end Modified: trunk/core/skel/mail.rtxt.en =================================================================== --- trunk/core/skel/mail.rtxt.en 2009-03-10 06:54:28 UTC (rev 3414) +++ trunk/core/skel/mail.rtxt.en 2009-03-10 07:30:47 UTC (rev 3415) @@ -5,7 +5,7 @@ Subject: <%= mail_header %>-<%= serial %> <%= name %> MIME-Version: 1.0 -Content-Type: text/plain; charset="iso-8859-1" +Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Errors-To: <%= receivers[0] %> X-Mailer: tDiary <%= TDIARY_VERSION %> Modified: trunk/core/skel/mail.rtxt.zh =================================================================== --- trunk/core/skel/mail.rtxt.zh 2009-03-10 06:54:28 UTC (rev 3414) +++ trunk/core/skel/mail.rtxt.zh 2009-03-10 07:30:47 UTC (rev 3415) @@ -5,7 +5,7 @@ Subject: <%= mail_header %>-<%= serial %> <%= name %> MIME-Version: 1.0 -Content-Type: text/plain; charset="big5" +Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Errors-To: <%= @conf.author_mail %> X-Mailer: tDiary <%= TDIARY_VERSION %> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tadatadashi@us...> - 2009-03-10 06:54:37
|
Revision: 3414 http://tdiary.svn.sourceforge.net/tdiary/?rev=3414&view=rev Author: tadatadashi Date: 2009-03-10 06:54:28 +0000 (Tue, 10 Mar 2009) Log Message: ----------- changed name of global variable. Modified Paths: -------------- trunk/plugin/ChangeLog trunk/plugin/squeeze.rb Modified: trunk/plugin/ChangeLog =================================================================== --- trunk/plugin/ChangeLog 2009-03-10 06:32:58 UTC (rev 3413) +++ trunk/plugin/ChangeLog 2009-03-10 06:54:28 UTC (rev 3414) @@ -1,5 +1,6 @@ 2009-03-10 TADA Tadashi <t@...> * todo.rb: changed WAVE DASH to TILDA. + * squeeze.rb: changed name of global variable. 2009-02-26 TADA Tadashi <t@...> * my-ex.rb: fixed warning of Regexp on ruby 1.9.1. Modified: trunk/plugin/squeeze.rb =================================================================== --- trunk/plugin/squeeze.rb 2009-03-10 06:32:58 UTC (rev 3413) +++ trunk/plugin/squeeze.rb 2009-03-10 06:54:28 UTC (rev 3414) @@ -14,8 +14,8 @@ # The original version of this file was distributed with squeeze # TADA Tadashi <sho@...> with GPL2. # -unless $squeeze_loaded -$squeeze_loaded ||= true +unless $tdiary_squeeze_loaded +$tdiary_squeeze_loaded ||= true mode = defined?(TDiary) ? "PLUGIN" : ENV["REQUEST_METHOD"]? "CGI" : "CMD" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tadatadashi@us...> - 2009-03-10 06:33:09
|
Revision: 3413 http://tdiary.svn.sourceforge.net/tdiary/?rev=3413&view=rev Author: tadatadashi Date: 2009-03-10 06:32:58 +0000 (Tue, 10 Mar 2009) Log Message: ----------- changed WAVE DASH to TILDA. Modified Paths: -------------- trunk/plugin/ChangeLog trunk/plugin/todo.rb Modified: trunk/plugin/ChangeLog =================================================================== --- trunk/plugin/ChangeLog 2009-03-06 11:12:15 UTC (rev 3412) +++ trunk/plugin/ChangeLog 2009-03-10 06:32:58 UTC (rev 3413) @@ -1,3 +1,6 @@ +2009-03-10 TADA Tadashi <t@...> + * todo.rb: changed WAVE DASH to TILDA. + 2009-02-26 TADA Tadashi <t@...> * my-ex.rb: fixed warning of Regexp on ruby 1.9.1. Modified: trunk/plugin/todo.rb =================================================================== --- trunk/plugin/todo.rb 2009-03-06 11:12:15 UTC (rev 3412) +++ trunk/plugin/todo.rb 2009-03-10 06:32:58 UTC (rev 3413) @@ -84,7 +84,7 @@ s << %Q|<del>| if x.deleted? s << %Q|<span class="todo-priority">#{if x.prio != '' then '%02d' % x.prio else '' end}</span> #{apply_plugin x.todo}| if x.limit - s << "(〜#{x.limit}" + s << "(~#{x.limit}" y, m, d = ParseDate.parsedate(x.limit) y = today.year unless y if y and m and d This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hsbt@us...> - 2009-03-06 11:12:24
|
Revision: 3412 http://tdiary.svn.sourceforge.net/tdiary/?rev=3412&view=rev Author: hsbt Date: 2009-03-06 11:12:15 +0000 (Fri, 06 Mar 2009) Log Message: ----------- supported Encoding::* when using force_encoding. Modified Paths: -------------- trunk/core/misc/lib/compatible.rb Modified: trunk/core/misc/lib/compatible.rb =================================================================== --- trunk/core/misc/lib/compatible.rb 2009-03-06 10:44:31 UTC (rev 3411) +++ trunk/core/misc/lib/compatible.rb 2009-03-06 11:12:15 UTC (rev 3412) @@ -44,6 +44,12 @@ # for Ruby1.8.X unless "".respond_to?('force_encoding') + class Encoding + def Encoding.const_missing(id) + self + end + end + class String def force_encoding(encoding) self This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hsbt@us...> - 2009-03-06 10:44:42
|
Revision: 3411 http://tdiary.svn.sourceforge.net/tdiary/?rev=3411&view=rev Author: hsbt Date: 2009-03-06 10:44:31 +0000 (Fri, 06 Mar 2009) Log Message: ----------- tabify. Modified Paths: -------------- trunk/core/misc/lib/compatible.rb Modified: trunk/core/misc/lib/compatible.rb =================================================================== --- trunk/core/misc/lib/compatible.rb 2009-02-28 09:20:06 UTC (rev 3410) +++ trunk/core/misc/lib/compatible.rb 2009-03-06 10:44:31 UTC (rev 3411) @@ -20,55 +20,55 @@ }.join unless "".respond_to?('to_a') - class String - def to_a - [ self ] - end - end + class String + def to_a + [ self ] + end + end end unless "".respond_to?('each') - class String - alias each each_line - end + class String + alias each each_line + end end # Ruby1.9では String が Enumerable ではなくなった class String - def method_missing(name, *args, &block) - each_line.__send__(name, *args, &block) - end + def method_missing(name, *args, &block) + each_line.__send__(name, *args, &block) + end end # for Ruby1.8.X unless "".respond_to?('force_encoding') - class String - def force_encoding(encoding) - self - end - end + class String + def force_encoding(encoding) + self + end + end end unless "".respond_to?('bytesize') - class String - alias bytesize size - end + class String + alias bytesize size + end end unless "".respond_to?('ord') - class String - def ord - self[0] - end - end - - class Integer - def ord - self - end - end + class String + def ord + self[0] + end + end + + class Integer + def ord + self + end + end end # -------------------------------------------------------- @@ -79,12 +79,12 @@ # (PStore 保存前は Time だが, 保存後に String となる) # 暫定的に String だったら Time へ変換する module TDiary - class WikiDiary - def last_modified - if @last_modified.instance_of? String - @last_modified = Time.at(0) - end - @last_modified - end - end + class WikiDiary + def last_modified + if @last_modified.instance_of? String + @last_modified = Time.at(0) + end + @last_modified + end + end end This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |