Show
Ignore:
Timestamp:
07/10/08 20:08:05 (4 months ago)
Author:
sho
Message:

platform/tdiary/plugin/nicovideo.rb: deleted comments in feed on en and zh language.

Location:
platform/tdiary/plugin
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • platform/tdiary/plugin/en/nicovideo.rb

    r15203 r15644  
    88def nicovideo_player_path 
    99        'http://www.nicovideo.jp' 
     10end 
     11 
     12def nicovideo_feed( i ) 
     13        <<-HTML 
     14                <table border="0" cellpadding="4" cellspacing="0" summary="#{i[:title]}"><tr valign="top"> 
     15                <td><a href="#{i[:url]}"><img alt="#{i[:title]}" src="#{i[:thumb]}" width="130" height="100" style="border:solid 1px #333;"></a></td> 
     16                <td width="100%"><a href="#{i[:url]}"><strong>#{i[:title]}</strong></a> (#{i[:length]})</td> 
     17                </tr></table> 
     18        HTML 
    1019end 
    1120 
  • platform/tdiary/plugin/ja/nicovideo.rb

    r15203 r15644  
    88def nicovideo_player_path 
    99        'http://www.nicovideo.jp' 
     10end 
     11 
     12def nicovideo_feed( i ) 
     13        <<-HTML 
     14                <table border="0" cellpadding="4" cellspacing="0" summary="#{i[:title]}"><tr valign="top"> 
     15                <td><a href="#{i[:url]}"><img alt="#{i[:title]}" src="#{i[:thumb]}" width="130" height="100" style="border:solid 1px #333;"></a></td> 
     16                <td width="100%"><a href="#{i[:url]}"><strong>#{i[:title]}</strong></a> (#{i[:length]})<br>#{i[:desc]}</td> 
     17                </tr></table> 
     18        HTML 
    1019end 
    1120 
  • platform/tdiary/plugin/nicovideo.rb

    r15382 r15644  
    5252 
    5353        if feed? then 
    54                 result = <<-HTML 
    55                         <table border="0" cellpadding="4" cellspacing="0" summary="#{i[:title]}"><tr valign="top"> 
    56                         <td><a href="#{i[:url]}"><img alt="#{i[:title]}" src="#{i[:thumb]}" width="130" height="100" style="border:solid 1px #333;"></a></td> 
    57                         <td width="100%"><a href="#{i[:url]}"><strong>#{i[:title]}</strong></a> (#{i[:length]})<br>#{i[:desc]}</td> 
    58                         </tr></table> 
    59                 HTML 
     54                result = nicovideo_feed( i ) 
    6055        else 
    6156                result = nicovideo_html( i ) 
  • platform/tdiary/plugin/zh/nicovideo.rb

    r15203 r15644  
    88def nicovideo_player_path 
    99        'http://www.nicovideo.jp' 
     10end 
     11 
     12def nicovideo_feed( i ) 
     13        <<-HTML 
     14                <table border="0" cellpadding="4" cellspacing="0" summary="#{i[:title]}"><tr valign="top"> 
     15                <td><a href="#{i[:url]}"><img alt="#{i[:title]}" src="#{i[:thumb]}" width="130" height="100" style="border:solid 1px #333;"></a></td> 
     16                <td width="100%"><a href="#{i[:url]}"><strong>#{i[:title]}</strong></a> (#{i[:length]})</td> 
     17                </tr></table> 
     18        HTML 
    1019end 
    1120