|
Revision 15644, 1.4 kB
(checked in by sho, 5 years ago)
|
|
platform/tdiary/plugin/nicovideo.rb: deleted comments in feed on en and zh language.
|
| Line | |
|---|
| 1 | # |
|---|
| 2 | # ja/nicovideo.rb - Japanese resource |
|---|
| 3 | # |
|---|
| 4 | # Copyright (C) TADA Tadashi <sho@spc.gr.jp> |
|---|
| 5 | # Distributed under GPL. |
|---|
| 6 | # |
|---|
| 7 | |
|---|
| 8 | def nicovideo_player_path |
|---|
| 9 | 'http://www.nicovideo.jp' |
|---|
| 10 | end |
|---|
| 11 | |
|---|
| 12 | def 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 |
|---|
| 19 | end |
|---|
| 20 | |
|---|
| 21 | def nicovideo_html( i ) |
|---|
| 22 | <<-HTML |
|---|
| 23 | <table border="0" cellpadding="4" cellspacing="0" summary="#{i[:title]}" style="margin-left:0em;"> |
|---|
| 24 | <tr valign="top"> |
|---|
| 25 | <td style="font-size:70%;border-width:0px;"> |
|---|
| 26 | <div style="margin:4px 0px;"><a href="#{i[:url]}" target="_blank"><img alt="#{i[:title]}" src="#{i[:thumb]}" width="130" height="100" style="border:solid 1px #333;"></a></div> |
|---|
| 27 | </td> |
|---|
| 28 | <td width="100%" style="font-size:80%;border-width:0px;"> |
|---|
| 29 | <p><a href="#{i[:url]}" target="_blank" class="video"><strong>#{i[:title]}</strong></a> (#{i[:length].split(/:/).map{|j|'%02d' % j.to_i}.join(':')})</p> |
|---|
| 30 | <p><strong>#{i[:view].scan(/\d+?(?=\d{3}*$)/).join(",")}</strong> Views<br> |
|---|
| 31 | <strong>#{i[:comment_num].scan(/\d+?(?=\d{3}*$)/).join(",")}</strong> Comments<br> |
|---|
| 32 | <strong>#{i[:mylist].scan(/\d+?(?=\d{3}*$)/).join(",")}</strong> Mylists</p> |
|---|
| 33 | </td> |
|---|
| 34 | </tr> |
|---|
| 35 | </table> |
|---|
| 36 | HTML |
|---|
| 37 | end |
|---|