Skip to content

Instantly share code, notes, and snippets.

@koki-h
Created May 18, 2009 07:13
Show Gist options
  • Save koki-h/113357 to your computer and use it in GitHub Desktop.
Save koki-h/113357 to your computer and use it in GitHub Desktop.
#Slideshareの埋め込みコードをはてなに埋め込みやすいように変更する
#変更されたコードは自動的にクリップボードに入る
#コマンドプロンプトから実行してみたがうまく動かない。"<"などが邪魔をする?
#エラーメッセージ↓
# C:\Users\koki\Documents\scripts>ruby slideshare.rb 'aaaaa'
# c:/ruby-1.8/lib/ruby/gems/1.8/gems/win32-clipboard-0.5.1/lib/win32/clipboard.rb:
# 71:in `<<': can't modify frozen string (TypeError)
# from c:/ruby-1.8/lib/ruby/gems/1.8/gems/win32-clipboard-0.5.1/lib/win32/
# clipboard.rb:71:in `set_data'
# from slideshare.rb:20
# _END_ の後に埋め込みコードを貼り付けて実行するようにすればいいか。
require 'rubygems'
require 'win32/clipboard'
include Win32
#埋め込みコードを引数に取る
html = ARGV[0] || DATA.read #引数なしのときはテストデータ読み込み
#変換する
html.gsub!('static.slidesharecdn.com','static.slideshare.net')
html.sub!(/<div.+?>/,'<div style="margin-left:20px">')
html.sub!(/object><div.+?\/div>/,'object>')
html.sub!(/margin:.+?;/,'margin-bottom:5px;')
#クリップボードにコピー
Clipboard.empty
Clipboard.set_data(html)
#"コピーしたよ"メッセージと変換後のデータを表示
print "The data copied to clipboard was :\n"
print Clipboard.data
#こんな感じのコードになって欲しい↓
#
#<div style="margin-left:20px">
#<a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin-bottom:5px;text-decoration:underline;"
# href="http://www.slideshare.net/koki_h/20090516-rubyist?type=presentation"
# title="20090516 Rubyist九州">20090516 Rubyist九州</a>
#<object style="margin:0px" width="425" height="355">
# <param name="movie"
# value="http://static.slideshare.net/swf/ssplayer2.swf?doc=20090516rubyist-090516125804-phpapp01&stripped_title=20090516-rubyist" />
# <param name="allowFullScreen" value="true"/>
# <param name="allowScriptAccess" value="always"/>
# <embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=20090516rubyist-090516125804-phpapp01&stripped_title=20090516-rubyist"
# type="application/x-shockwave-flash"
# allowscriptaccess="always"
# allowfullscreen="true"
# width="425" height="355"></embed>
#</object>
#</div>
#テストデータ
__END__
<div style="width:425px;text-align:left" id="__ss_1445227"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/koki_h/20090516-rubyist?type=presentation" title="20090516 Rubyist九州">20090516 Rubyist九州</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=20090516rubyist-090516125804-phpapp01&stripped_title=20090516-rubyist" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=20090516rubyist-090516125804-phpapp01&stripped_title=20090516-rubyist" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object><div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/koki_h">koki_h</a>.</div></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment