File: popit.rb

package info (click to toggle)
tdiary-contrib 5.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,576 kB
  • ctags: 1,957
  • sloc: ruby: 16,900; lisp: 514; xml: 451; php: 61; sql: 40; sh: 35; makefile: 33
file content (22 lines) | stat: -rw-r--r-- 944 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# popit.rb:plugin embedding POP on POPit(http://pop-it.jp)
#
# usage:
#   popit(pop_id) - pop_id: The id of the POP on POPit (e.g. 2000 http://pop-it.jp/item/amazon/1989/pop/2000 )
#
# Copyright (c) KAYA Satoshi <http://kayakaya.net/>
# You can redistributed it and/or modify if under GPL2.
#
def popit(pop_id, size = "large")
  return unless pop_id

  width_size = {"large" => "260", "small" => "180" }
  height_size = {"large" => "380", "small" => "220" }
  width_style = {"large" => "220px", "small" => "160px" }

  sizequery = size == "large" ? "?size=large" : ''
  r = ""
  r << %Q|<iframe src="http://pop-it.jp/pop/blogparts/#{pop_id}#{sizequery}" frameborder="0" width="#{width_size[size]}" height="#{height_size[size]}"> </iframe>|
  r << %Q|<div style="width:#{width_style[size]};margin:0;text-align:center;font-size:12px;">Powered by <a href="http://pop-it.jp" target="_blank" style="color: #edbe26;">POPit</a></div>|

  return r
end