«前の日記(2010-04-24 (土)) 最新 次の日記(2010-04-26 (月))» 編集
にっき
Google
2003|10|11|12|
2004|01|02|03|04|05|06|07|08|09|10|11|12|
2005|01|02|03|04|05|06|07|08|09|10|11|12|
2006|01|02|03|04|05|06|07|08|09|10|11|12|
2007|01|02|03|04|05|06|07|08|09|10|11|12|
2008|01|02|03|04|05|06|07|08|09|10|11|12|
2009|01|02|03|04|05|06|07|08|09|10|11|12|
2010|01|02|03|04|05|06|07|08|09|10|11|12|
2011|01|02|03|04|05|06|07|08|09|10|11|12|
2012|01|02|03|04|05|06|07|08|09|10|11|12|
2013|01|02|03|04|05|06|07|08|09|10|11|12|
2014|01|02|03|04|05|06|07|10|12|
2015|01|12|
2016|01|12|
2017|01|12|
2018|01|12|
2019|01|12|
2020|01|12|
2021|01|
2022|01|
2023|01|
2024|01|

2010-04-25 (日) 1282steps [長年日記]

_ エバーグリーン、1,999円の2入力HDMIセレクタ

8入力はなかなか壮観だな。

_ 日記へのTwitterでの「つぶやかれ数」を表示するようにした

ReTweetした際にエントリのタイトルが入らないようだったので、少し改造してみた。

--- retweet.rb.orig     2010-04-25 23:59:12.000000000 +0900
+++ retweet.rb  2010-04-26 01:56:46.000000000 +0900
@@ -28,6 +28,24 @@
   end
 end

+unless defined?(subtitle)
+  def subtitle( date, index, escape = true )
+    sn = 1
+    diary = @diaries[date.strftime( '%Y%m%d' )]
+    diary && diary.each_section do |section|
+      if sn == index then
+        old_apply_plugin = @options['apply_plugin']
+        @options['apply_plugin'] = true
+        title = apply_plugin( section.subtitle_to_html, true )
+        @options['apply_plugin'] = old_apply_plugin
+        title.gsub!( /"/, '\"' ) if escape
+        return title
+      end
+      sn += 1
+    end
+  end
+end
+
 # load tospy script and initialize
 add_header_proc do
        r = ''
@@ -44,6 +62,7 @@
   <<-"EOS"
   <div class="topsy_widget_data" style="float: right; margin-left: 1em;"> <!-- {
     "url": "#{permalink(date, index)}",
+    "title": "#{subtitle(date, index)}",
     "style": "big"
   } --></div>
   EOS
@@ -56,7 +75,7 @@
          <img src="http://www.machu.jp/diary/twitter_logo_small.png" height="16" width="62" alt="Twitter">:
     <div class="topsy_widget_data" style="float: right; margin-left: 1em;"> <!-- {
       "url": "#{permalink(date, index)}",
-      "title": "#{@subtitle || ''}",
+      "title": "#{subtitle(date, index)}",
       "style": "small"
     } --></div>
   </div>

contribにコミットしました。


«前の日記(2010-04-24 (土)) 最新 次の日記(2010-04-26 (月))» 編集