Sha256: 3dc16089036ccfc20b37abca807c91ed8f1f61241b526c80609ef3024bf54b15
Contents?: true
Size: 1.53 KB
Versions: 28
Compression:
Stored size: 1.53 KB
Contents
# # ja/nicovideo.rb - Japanese resource # # Copyright (C) TADA Tadashi <sho@spc.gr.jp> # Distributed under GPL. # def nicovideo_player_path 'http://www.nicovideo.jp' end def nicovideo_feed( i ) <<-HTML <table border="0" cellpadding="4" cellspacing="0" summary="#{h i[:title]}"><tr valign="top"> <td><a href="#{i[:url]}"><img alt="#{h i[:title]}" src="#{i[:thumb]}" width="130" height="100" style="border:solid 1px #333;"></a></td> <td width="100%"><a href="#{i[:url]}"><strong>#{h i[:title]}</strong></a> (#{i[:length]})</td> </tr></table> HTML end def nicovideo_html( i ) <<-HTML <table border="0" cellpadding="4" cellspacing="0" summary="#{h i[:title]}" style="margin-left:0em;"> <tr valign="top"> <td style="font-size:70%;border-width:0px;"> <div style="margin:4px 0px;"><a href="#{i[:url]}" onclick="return nicovideoPlayer( '#{i[:id]}' );"><img alt="#{h i[:title]}" src="#{i[:thumb]}" width="130" height="100" style="border:solid 1px #333;"></a></div> </td> <td width="100%" style="font-size:80%;border-width:0px;"> <p><a href="#{i[:url]}" class="video" onclick="return nicovideoPlayer( '#{i[:id]}' );"><strong>#{h i[:title]}</strong></a> (#{i[:length].split(/:/).map{|j|'%02d' % j.to_i}.join(':')})</p> <p><strong>#{i[:date][0,10]}</strong> Posted<br> <strong>#{i[:view].scan(/\d+?(?=\d{3}*$)/).join(",")}</strong> Views<br> <strong>#{i[:comment_num].scan(/\d+?(?=\d{3}*$)/).join(",")}</strong> Comments<br> <strong>#{i[:mylist].scan(/\d+?(?=\d{3}*$)/).join(",")}</strong> Mylists</p> </td> </tr> </table> HTML end
Version data entries
28 entries across 23 versions & 2 rubygems