Show
Ignore:
Timestamp:
06/22/08 17:25:42 (5 months ago)
Author:
hsbt
Message:

shared option value for twitter_user.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • platform/tdiary/plugin/twitter.rb

    r3326 r14417  
    88require 'rexml/document' 
    99 
    10 @twitter_user = '' # <= Your Username. 
    1110@twitter_statuses = [] 
    1211 
     
    1615                timeout( 5 ) do 
    1716                        begin 
    18                                 xml = open( "http://twitter.com/statuses/user_timeline/#{@twitter_user}.xml" ){|f| f.read} 
     17                                xml = open( "http://twitter.com/statuses/user_timeline/#{@conf['twitter.user']}.xml" ){|f| f.read} 
    1918                        rescue Exception 
    2019                        end 
     
    3736        if !today_statuses.empty? 
    3837                r = %Q[<div class="section">] 
    39                 r << %Q[<h3><a href="http://twitter.com/#{@twitter_user}">Twitter statuses</a></h3>] 
     38                r << %Q[<h3><a href="http://twitter.com/#{@conf['twitter.user']}">Twitter statuses</a></h3>] 
    4039                today_statuses.sort{|a, b| b.last<=>a.last}.each do |t, d| 
    4140                        r << %Q[<p><strong>#{CGI::escapeHTML( t )}</strong> (#{d.strftime( '%H:%M:%S' )})</p>]