Changeset 33403 for platform/tdiary
- Timestamp:
- 05/18/09 23:44:49 (4 years ago)
- Location:
- platform/tdiary/plugin
- Files:
-
- 3 modified
-
en/nicovideo.rb (modified) (2 diffs)
-
ja/nicovideo.rb (modified) (3 diffs)
-
zh/nicovideo.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
platform/tdiary/plugin/en/nicovideo.rb
r15799 r33403 12 12 def nicovideo_feed( i ) 13 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>14 <table border="0" cellpadding="4" cellspacing="0" summary="#{h i[:title]}"><tr valign="top"> 15 <td><a href="#{i[:url]}"><img alt="#{h 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>#{h i[:title]}</strong></a> (#{i[:length]})</td> 17 17 </tr></table> 18 18 HTML … … 21 21 def nicovideo_html( i ) 22 22 <<-HTML 23 <table border="0" cellpadding="4" cellspacing="0" summary="#{ i[:title]}" style="margin-left:0em;">23 <table border="0" cellpadding="4" cellspacing="0" summary="#{h i[:title]}" style="margin-left:0em;"> 24 24 <tr valign="top"> 25 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>26 <div style="margin:4px 0px;"><a href="#{i[:url]}" target="_blank"><img alt="#{h i[:title]}" src="#{i[:thumb]}" width="130" height="100" style="border:solid 1px #333;"></a></div> 27 27 </td> 28 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>29 <p><a href="#{i[:url]}" target="_blank" class="video"><strong>#{h i[:title]}</strong></a> (#{i[:length].split(/:/).map{|j|'%02d' % j.to_i}.join(':')})</p> 30 30 <p><strong>#{i[:date][0,10]}</strong> Posted<br> 31 31 <strong>#{i[:view].scan(/\d+?(?=\d{3}*$)/).join(",")}</strong> Views<br> -
platform/tdiary/plugin/ja/nicovideo.rb
r15799 r33403 12 12 def nicovideo_feed( i ) 13 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>14 <table border="0" cellpadding="4" cellspacing="0" summary="#{h i[:title]}"><tr valign="top"> 15 <td><a href="#{i[:url]}"><img alt="#{h 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>#{h i[:title]}</strong></a> (#{i[:length]})<br>#{i[:desc]}</td> 17 17 </tr></table> 18 18 HTML … … 21 21 def nicovideo_html( i ) 22 22 <<-HTML 23 <table border="0" cellpadding="4" cellspacing="0" summary="#{ i[:title]}" style="margin-left:0em;">23 <table border="0" cellpadding="4" cellspacing="0" summary="#{h i[:title]}" style="margin-left:0em;"> 24 24 <tr valign="top"> 25 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>26 <div style="margin:4px 0px;"><a href="#{i[:url]}" target="_blank"><img alt="#{h i[:title]}" src="#{i[:thumb]}" width="130" height="100" style="border:solid 1px #333;"></a></div> 27 27 <p><strong>#{i[:date][0,10]}</strong><br> 28 28 再生: <strong>#{i[:view].scan(/\d+?(?=\d{3}*$)/).join(",")}</strong><br> … … 31 31 </td> 32 32 <td width="100%" style="font-size:80%;border-width:0px;"> 33 <p><a href="#{i[:url]}" target="_blank" class="video"><strong>#{ i[:title]}</strong></a> (#{i[:length].split(/:/).map{|j|'%02d' % j.to_i}.join(':')})<br>#{i[:desc]}</p>33 <p><a href="#{i[:url]}" target="_blank" class="video"><strong>#{h i[:title]}</strong></a> (#{i[:length].split(/:/).map{|j|'%02d' % j.to_i}.join(':')})<br>#{i[:desc]}</p> 34 34 <div style="background:#FFF; border:solid 2px #CCC; padding:6px; margin-top:4px;"> 35 35 <p><strong>#{i[:comment]}</strong></p> -
platform/tdiary/plugin/zh/nicovideo.rb
r15799 r33403 12 12 def nicovideo_feed( i ) 13 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>14 <table border="0" cellpadding="4" cellspacing="0" summary="#{h i[:title]}"><tr valign="top"> 15 <td><a href="#{i[:url]}"><img alt="#{h 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>#{h i[:title]}</strong></a> (#{i[:length]})</td> 17 17 </tr></table> 18 18 HTML … … 21 21 def nicovideo_html( i ) 22 22 <<-HTML 23 <table border="0" cellpadding="4" cellspacing="0" summary="#{ i[:title]}" style="margin-left:0em;">23 <table border="0" cellpadding="4" cellspacing="0" summary="#{h i[:title]}" style="margin-left:0em;"> 24 24 <tr valign="top"> 25 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>26 <div style="margin:4px 0px;"><a href="#{i[:url]}" target="_blank"><img alt="#{h i[:title]}" src="#{i[:thumb]}" width="130" height="100" style="border:solid 1px #333;"></a></div> 27 27 </td> 28 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>29 <p><a href="#{i[:url]}" target="_blank" class="video"><strong>#{h i[:title]}</strong></a> (#{i[:length].split(/:/).map{|j|'%02d' % j.to_i}.join(':')})</p> 30 30 <p><strong>#{i[:date][0,10]}</strong> Posted<br> 31 31 <strong>#{i[:view].scan(/\d+?(?=\d{3}*$)/).join(",")}</strong> Views<br>
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)