<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
  <title>iddy.jp - RSS feeds by turutosiya</title> 
  <link>http://iddy.jp/rss/blog/turutosiya/</link> 
  <description>RSS feeds by turutosiya hosted at http://iddy.jp/</description>
  <language>ja</language>
  <item>
    <title>Redmine 1.3 から 1.4 へのアップグレード</title> 
    <description>
    <![CDATA[
    
<div class="section">
<h4> 手順</h4>
<h5> 1.4(STABLE)を入手</h5>
<p><pre>
svn co <a href="http://redmine.rubyforge.org/svn/branches/1.4-stable" target="_blank">http://redmine.rubyforge.org/svn/branches/1.4-stable</a> redmine-1.4
</pre></p>
<h5> 設定ファイル等をコピー</h5>
<p><pre>
cd redmine-1.4
cp /path/to/redmine-1.3/config/database.yml config/database.yml
cp /path/to/redmine-1.3/config/configuration.yml config/configuration.yml
cp /path/to/redmine-1.3/files/* files/
</pre></p>
<h5> アップグレード処理</h5>
<p><pre>
rake generate_session_store
rake db:migrate:upgrade_plugin_migrations RAILS_ENV=production 
rake db:migrate RAILS_ENV=production 
</pre></p>
<h4> 以下、 RubyGem 1.8.23 もインストールする場合</h4>
<h5> RubyGems(1.8.23) が依存しているものをインストール</h5>
<p><pre>
rpm -Uvh <a href="http://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm" target="_blank">http://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm</a>
yum --enablerepo=epel install jasper jasper-libs jasper-devel

rpm -Uvh <a href="http://rpms.famillecollet.com/enterprise/remi-release-5.rpm" target="_blank">http://rpms.famillecollet.com/enterprise/remi-release-5.rpm</a>
yum install ImageMagick2-devel  --enablerepo=remi

rpm -Uvh <a href="http://yum.pgrpms.org/9.1/redhat/rhel-5-x86_64/pgdg-centos91-9.1-4.noarch.rpm" target="_blank">http://yum.pgrpms.org/9.1/redhat/rhel-5-x86_64/pgdg-centos91-9.1-4.noarch.rpm</a>
yum install postgresql91-devel

gem install bundler
bundle config build.pg  --with-pg-dir=/usr/pgsql-9.1
bundle install --without development test
</pre></p>
<h5> RubyGems(1.8.23) をインストール</h5>
<p><pre>
wget <a href="http://rubyforge.org/frs/download.php/76030/rubygems-update-1.8.23.gem" target="_blank">http://rubyforge.org/frs/download.php/76030/rubygems-update-1.8.23.gem</a>
gem install rubygems-update-1.8.23.gem
cd /usr/local/rvm/gems/ruby-1.8.7-p352/gems/rubygems-update-1.8.23/
ruby setup.rb
</pre></p>
</div>

    ]]>
    </description>
    <link>http://d.hatena.ne.jp/turutosiya/20120427/p1</link> 
    <pubDate>Thu, 26 Apr 2012 15:00:00 GMT</pubDate>
   </item>
  <item>
    <title> rsync での ftpサイトの同期</title> 
    <description>
    <![CDATA[
    
<div class="section">
<h4> curlftpfs のインストール</h4>
<p><pre>
wget <a href="http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el5.rf.x86_64.rpm" target="_blank">http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el5.rf.x86_64.rpm</a>
rpm -Uvh rpmforge-release-0.5.2-2.el5.rf.x86_64.rpm
yum install curlftpfs --enablerepo=rpmforge
</pre></p>
<h4> curlftpfs でマウント</h4>
<p><pre>
mkdir -p /mnt/curlftpfs/hoge.com
curlftpfs -o allow_other <a href="ftp://name:pwd@hoge.com" target="_blank">ftp://name:pwd@hoge.com</a> /mnt/curlftpfs/hoge.com
</pre></p>
<h4> rsync 実行</h4>
<p><pre>
mkdir -p /var/mirrors/hoge.com
rsync -rzvvv --inplace --append --progress --stats --timeout=7200 /mnt/curlftpfs/hoge.com /var/mirrors/hoge.com
</pre></p>
</div>

    ]]>
    </description>
    <link>http://d.hatena.ne.jp/turutosiya/20120313/p2</link> 
    <pubDate>Mon, 12 Mar 2012 15:00:00 GMT</pubDate>
   </item>
  <item>
    <title>Redmine 1.2 から 1.3.2 へのアップグレード (JVN#93406632対応)</title> 
    <description>
    <![CDATA[
    
<div class="section">
<h4> 手順</h4>
<h5> 1.3(STABLE) を入手</h5>
<p><pre>
svn co <a href="http://redmine.rubyforge.org/svn/branches/1.3-stable" target="_blank">http://redmine.rubyforge.org/svn/branches/1.3-stable</a> redmine-1.3
</pre></p>
<h5> 設定ファイルをコピー</h5>
<p><pre>
cd redmine-1.3
cp /path/to/redmine-1.2/config/database.yml config/database.yml
cp /path/to/redmine-1.2/config/configuration.yml config/configuration.yml
cp /path/to/redmine-1.2/files/* files/*
</pre></p>
<h5> Rails(2.3.14) をインストール</h5>
<p><pre>
gem install -v 2.3.14 rails
</pre></p>
<p>参考</p>
<p><a href="http://www.redmine.org/projects/redmine/wiki/RedmineInstall#Requirements" target="_blank">http://www.redmine.org/projects/redmine/wiki/RedmineInstall#Requirements</a></p>
<h5> アップグレード処理</h5>
<p><pre>
rake generate_session_store
rake db:migrate:upgrade_plugin_migrations RAILS_ENV=production 
rake db:migrate RAILS_ENV=production 
</pre></p>
<h5> RubyGems(1.7.2)にしておく（しなくてもいい）</h5>
<p><pre>
wget <a href="http://rubyforge.org/frs/download.php/74616/rubygems-update-1.7.2.gem" target="_blank">http://rubyforge.org/frs/download.php/74616/rubygems-update-1.7.2.gem</a>
gem install rubygems-update-1.7.2.gem
cd /usr/local/rvm/gems/ruby-1.8.7-p352/gems/rubygems-update-1.7.2/
ruby setup.rb
</pre></p>
<p>参考</p>
<p><a href="http://www.redmine.org/projects/redmine/wiki/RedmineInstall#Requirements" target="_blank">http://www.redmine.org/projects/redmine/wiki/RedmineInstall#Requirements</a></p>
<h4> 追加情報</h4>
<p>JVN#93406632</p>
<p>Redmine におけるクロスサイトスクリプティングの脆弱性</p>
<p><a href="http://jvn.jp/jp/JVN93406632/index.html" target="_blank">http://jvn.jp/jp/JVN93406632/index.html</a></p>
</div>

    ]]>
    </description>
    <link>http://d.hatena.ne.jp/turutosiya/20120313/p1</link> 
    <pubDate>Mon, 12 Mar 2012 15:00:00 GMT</pubDate>
   </item>
  <item>
    <title>Ooooooopennnnn!</title> 
    <description>
    <![CDATA[
    <embed allowscriptaccess="never"  src="http://www.youtube.com/v/cD7AWFxhTBA?version=3&amp;hl=en_US" type="application/x-shockwave-flash" width="480" height="270" wmode="transparent" class=""/><br>
<a href="http://www.youtube.com/watch?v=cD7AWFxhTBA&amp;feature=share" target="_blank">Open Sesame- Kool &amp; the Gang</a><br>
    ]]>
    </description>
    <link>http://rd.yahoo.co.jp/rss/l/blog/myblog/rss2/item/*http://blogs.yahoo.co.jp/turutosiya/61529978.html</link> 
    <pubDate>Sat, 12 Nov 2011 19:31:14 +0900</pubDate>
   </item>
  <item>
    <title>Don&amp;#039;t stop believing</title> 
    <description>
    <![CDATA[
    <embed allowscriptaccess="never"  src="http://www.youtube.com/v/5I-SbwCHJ80?version=3&amp;hl=ja_JP" type="application/x-shockwave-flash" width="480" height="360" wmode="transparent" class=""/><br>
<a href="http://www.youtube.com/watch?v=5I-SbwCHJ80&amp;feature=share" target="_blank">Don&#39;t Stop Believing - Journey</a><br>
<div><br></div>
<div>Hold on to that feeling</div>
    ]]>
    </description>
    <link>http://rd.yahoo.co.jp/rss/l/blog/myblog/rss2/item/*http://blogs.yahoo.co.jp/turutosiya/61476048.html</link> 
    <pubDate>Sun, 23 Oct 2011 19:16:46 +0900</pubDate>
   </item>
  <item>
    <title> Redmine 1.2 を さくらVPSでホストしている CentOS 5.7 にインストールして Passenger + Virtual Host で運用する方法</title> 
    <description>
    <![CDATA[
    
<div class="section">
<h4> 必要なもの</h4>

<ul>
<li> Ruby 1.8.6, 1.8.7</li>
<li> Rails 2.3.11</li>
<li> Rack 1.1.1</li>
<li> RubyGems 1.6.x</li>
<li> Rake 0.8.7</li>
<li> I18n 0.4.2</li>
</ul>
<h4> yum で入れられるものをインストール</h4>
<p><pre>
yum install curl-devel openssl-devel httpd-devel apr-devel apr-util-devel zlib-devel mysql-devel
</pre></p>
<h4> RVM インストール</h4>
<p><pre>
bash &#60; &#60;(curl -s <a href="https://rvm.beginrescueend.com/install/rvm" target="_blank">https://rvm.beginrescueend.com/install/rvm</a>)
echo ' -s ”/usr/local/rvm/scripts/rvm” <a class="keyword" href="http://d.hatena.ne.jp/keyword/%20%2Ds%20%A1%C9/usr/local/rvm/scripts/rvm%A1%C9%20?mode=edit" rel="nofollow">?</a> && . "/usr/local/rvm/scripts/rvm" # Load RVM function' &#62;&#62; ~/.bash_profile
source ~/.bash_profile
</pre></p>
<h4> Ruby(1.8.7) インストール</h4>
<p><pre>
rvm install 1.8.7
rvm use 1.8.7
</pre></p>
<h4> zlib インストール</h4>
<p><pre>
cd /usr/local/rvm/src/ruby-1.8.7-p352/ext/zlib/
ruby extconf.rb
make
make install
</pre></p>
<h4> GEM(1.6.2) インストール</h4>
<p><pre>
wget <a href="http://rubyforge.org/frs/download.php/74444/rubygems-update-1.6.2.gem" target="_blank">http://rubyforge.org/frs/download.php/74444/rubygems-update-1.6.2.gem</a>
gem install rubygems-update-1.6.2.gem
cd /usr/local/rvm/gems/ruby-1.8.7-p352/gems/rubygems-update-1.6.2/
ruby setup.rb
</pre></p>
<h4> Rake(0.8.7) インストール</h4>
<p><pre>
gem install -v=0.8.7 rake
</pre></p>
<h4> Rails(2.3.11) インストール</h4>
<p><pre>
gem install -v 2.3.11 rails
</pre></p>
<h4> Rack(1.1.1) インストール</h4>
<p><pre>
gem install -v 1.1.1 rack
</pre></p>
<h4>  i18n インストール</h4>
<p><pre>
gem install -v=0.4.2 i18n
</pre></p>
<h4>  MySQL 関係インストール</h4>
<p><pre>
gem install mysql
</pre></p>
<h4>  OpenSSL 関係インストール</h4>
<p><pre>
gem install jruby-openssl
cd  /usr/local/rvm/src/ruby-1.8.7-p352/ext/openssl
ruby extconf.rb
make
make install
</pre></p>
<h4> Redmine(1.2) 本体のダウンロード</h4>
<p><pre>
mkdir /opt/redmine
chmod 777 /opt/redmine
svn co <a href="http://redmine.rubyforge.org/svn/branches/1.2-stable" target="_blank">http://redmine.rubyforge.org/svn/branches/1.2-stable</a> /opt/redmine/1.2-stable
</pre></p>
<h4> Redmine 用のデータベース作成(SQL)</h4>
<p><pre>
CREATE DATABASE redmine CHARACTER SET utf8 COLLATE utf8_general_ci;
GRANT ALL PRIVILEGES on redmine.* TO redmine@localhost identified by 'very-strong-password';
GRANT ALL PRIVILEGES on redmine.* TO redmine@'127.0.0.1' identified by 'very-strong-password';
FLUSH PRIVILEGES;
</pre></p>
<h4> Redmine 初期化</h4>
<p><pre>
cd /opt/redmine/1.2-stable
RAILS_ENV=production rake db:migrate
RAILS_ENV=production rake redmine:load_default_data
mkdir tmp public/plugin_assets
sudo chown -R apache:apache files log tmp public/plugin_assets
sudo chmod -R 755 files log tmp public/plugin_assets
</pre></p>
<h4> Passenger インストール</h4>
<p><pre>
gem install passenger
passenger-install-apache2-module
</pre></p>
<h4> Apache の設定</h4>
<p><pre>
&#60;VirtualHost *:80&#62;
  ServerName hostname.of.redmine
  DocumentRoot /opt/redmine/1.2-stable/public
  
  LoadModule passenger_module /usr/local/rvm/gems/ruby-1.8.7-p352/gems/passenger-3.0.9/ext/apache2/mod_passenger.so
PassengerRoot /usr/local/rvm/gems/ruby-1.8.7-p352/gems/passenger-3.0.9
PassengerRuby /usr/local/rvm/wrappers/ruby-1.8.7-p352/ruby
RailsBaseURI /

  &#60;Directory /opt/redmine/1.2-stable/public&#62;
  AllowOverride all
  Options -MultiViews
  &#60;/Directory&#62;
&#60;/VirtualHost&#62;
</pre></p>
</div>

    ]]>
    </description>
    <link>http://d.hatena.ne.jp/turutosiya/20111010/p1</link> 
    <pubDate>Sun, 09 Oct 2011 15:00:00 GMT</pubDate>
   </item>
  <item>
    <title>[Google][Google Docs]Google Docs Viewer で 指定ページにリンクする方法</title> 
    <description>
    <![CDATA[
    
<div class="section">
<h4> 概要</h4>
<p>オンライン上のパワーポイントやPDFのファイルを、<a href="http://docs.google.com/viewer" target="_blank">Google Docs Viewer</a> で見る方は多いかと思います。</p>
<p>その際の、特定ページへリンクするURLの指定方法をご紹介</p>
<h4> 方法</h4>

<ol>
<li> <a href="http://docs.google.com/viewer" target="_blank">Google Docs Viewer</a> でリンクを作成</li>
<li> 作成されたURLの末尾に　<span style="font-weight:bold;" class="deco">#:i.page.{ページ番号}</span>　を付ける</li>
</ol>
<p><a href="http://f.hatena.ne.jp/turutosiya/20110509205556" class="hatena-fotolife" target="_blank"><img src="http://cdn-ak.f.st-hatena.com/images/fotolife/t/turutosiya/20110509/20110509205556.png" alt="f:id:turutosiya:20110509205556p:image" title="f:id:turutosiya:20110509205556p:image" class="hatena-fotolife"></a></p>
<h4> 例</h4>
<p>例えば、下記URLのPDFを開く場合</p>
<blockquote>
<p><a href="http://s3.amazonaws.com/ppt-download/sugarcrmmeets-netimplementationsystem-data-sugarclient-100510203652-phpapp02.pdf" target="_blank">http://s3.amazonaws.com/ppt-download/sugarcrmmeets-netimplementationsystem-data-sugarclient-100510203652-phpapp02.pdf</a></p>
</blockquote>
<p>Google Docs Viewer で見る場合のURLは次のようになるはずです。</p>
<blockquote>
<p><a href="http://docs.google.com/viewer?url=http%3A%2F%2Fs3.amazonaws.com%2Fppt-download%2Fsugarcrmmeets-netimplementationsystem-data-sugarclient-100510203652-phpapp02.pdf" target="_blank">http://docs.google.com/viewer?url=http%3A%2F%2Fs3.amazonaws.com%2Fppt-download%2Fsugarcrmmeets-netimplementationsystem-data-sugarclient-100510203652-phpapp02.pdf</a></p>
</blockquote>
<p>そして、7ページ目へのリンクは次の様になります。</p>
<blockquote>
<p><a href="http://docs.google.com/viewer?url=http%3A%2F%2Fs3.amazonaws.com%2Fppt-download%2Fsugarcrmmeets-netimplementationsystem-data-sugarclient-100510203652-phpapp02.pdf#:i.page.7" target="_blank">http://docs.google.com/viewer?url=http%3A%2F%2Fs3.amazonaws.com%2Fppt-download%2Fsugarcrmmeets-netimplementationsystem-data-sugarclient-100510203652-phpapp02.pdf#:i.page.7</a></p>
</blockquote>
</div>

    ]]>
    </description>
    <link>http://d.hatena.ne.jp/turutosiya/20110509/p1</link> 
    <pubDate>Sun, 08 May 2011 15:00:00 GMT</pubDate>
   </item>
  <item>
    <title>[Viber][Android][iPhone] 無料通話アプリViberがAndroid版のベータテスターを募集中</title> 
    <description>
    <![CDATA[
    
<div class="section">
<p><div class="hatena-asin-detail hatena-keyword-detail">
  
  <a href="http://d.hatena.ne.jp/keyword/Viber?kid=319421"><img src="http://d.hatena.ne.jp/images/keyword/319421.png" class="hatena-asin-detail-image" alt="Viber" title="Viber"></a>
  
  <div class="hatena-asin-detail-info">
    <p class="hatena-asin-detail-title"><a href="http://d.hatena.ne.jp/keyword/Viber?kid=319421"><img src="http://d.hatena.ne.jp/images/icon-keyword.png" alt="" class="icon">Viberとは</a><a class="hatena-keyword-detail-edit" href="http://d.hatena.ne.jp/keyword/Viber?kid=319421&#38;mode=edit" >編集</a></p>
    <ul>
      <li>スマートフォン向けアプリ。Viberをインストールしているスマートフォン同士で無料通話・テキストメッセージの送受信ができる。事前にユーザー登録は必要なく、相手の電話番号さえ知っていれば誰にでも電話をかけることができる。Wi-Fi、3G 回線ともに利用可..  <a class="hatena-keyword-detail-seemore" href="http://d.hatena.ne.jp/keyword/Viber?kid=319421" >続きを読む</a></li>      <li><a class="hatena-keyword-detail-keywordblog" href="http://k.hatena.ne.jp/keywordblog/Viber" target="_blank">このキーワードを含むブログ (今週 3 件) を見る</a></li> 
    </ul>
  </div>
  <div class="hatena-asin-detail-foot">
  </div>
</div>
</p>
<h4> 注意事項</h4>
<p><a href="http://jp.techcrunch.com/archives/20110504viber-to-release-free-calling-messaging-app-for-android-this-week/" target="_blank">TechCrunchの記事</a>によると、</p>
<blockquote>
<p>Viberアプリを心待ちにしている多数のAndroidユーザーには残念だが、Viberはこのアプリのユーザーを急速に増やす考えはない。今週中にベータテストに招待されるユーザー数はわずか500</p>
</blockquote>
<p>とのこと。</p>
<h4> 概要</h4>
<p>無料通話iPhoneアプリとして名高いがAndroid版のベータテストを開始したようです。</p>
<p>現在、サイト上でベーターテスターに応募できるようになっていましたので手順をご紹介。</p>
<h4> 手順</h4>
<p>１．<a href="http://www.viber.com/" target="_blank">Viberのサイトのトップページ</a>にある「Signup For the Viber Android beta now!」をクリック</p>
<p><a href="http://f.hatena.ne.jp/turutosiya/20110507143613" class="hatena-fotolife" target="_blank"><img src="http://cdn-ak.f.st-hatena.com/images/fotolife/t/turutosiya/20110507/20110507143613.png" alt="f:id:turutosiya:20110507143613p:image" title="f:id:turutosiya:20110507143613p:image" class="hatena-fotolife"></a></p>
<p>２．必要事項を入力</p>
<p><a href="http://f.hatena.ne.jp/turutosiya/20110507143614" class="hatena-fotolife" target="_blank"><img src="http://cdn-ak.f.st-hatena.com/images/fotolife/t/turutosiya/20110507/20110507143614.png" alt="f:id:turutosiya:20110507143614p:image" title="f:id:turutosiya:20110507143614p:image" class="hatena-fotolife"></a></p>
<p>３．info@viber.com から送られてくるメールの本文にあるリンクをクリック</p>
<p><a href="http://f.hatena.ne.jp/turutosiya/20110507143616" class="hatena-fotolife" target="_blank"><img src="http://cdn-ak.f.st-hatena.com/images/fotolife/t/turutosiya/20110507/20110507143616.png" alt="f:id:turutosiya:20110507143616p:image" title="f:id:turutosiya:20110507143616p:image" class="hatena-fotolife"></a></p>
<h4> 参考リンク</h4>

<ul>
<li> <a href="http://jp.techcrunch.com/archives/20110504viber-to-release-free-calling-messaging-app-for-android-this-week/" target="_blank">Viber、Android向け無料通話、メッセージ・アプリをベータ公開へ</a></li>
<li> <a href="http://www.appbank.net/2010/12/07/iphone-application/196264.php" target="_blank">Viber &#8211; Free Phone Calls: 簡単設定で無料で通話できちゃうぞ！目指せ通話料0円。無料。</a></li>
<li> <a href="http://blog.isnext.net/issy/archives/1084/trackback" target="_blank">Viber for Androidを試したメモ</a></li>
<li> <a href="http://twt-signal.appspot.com/?q=Viber" target="_blank">Viber | TwtSignal</a></li>
</ul>
<p>2011/5/9 追加</p>

<ul>
<li> <a href="http://blog.isnext.net/issy/archives/698" target="_blank">Viber for Android テスター募集中らしい</a></li>
</ul>
<p>2011/5/14 追加</p>

<ul>
<li> <a href="http://getnews.jp/archives/116084" target="_blank">無料通話できるアプリ『Viber』のAndroid版を先行入手！　iPhoneユーザーとも通話可能</a></li>
</ul>
<br>

<h4> Viber for Android - First look</h4>
<p><object width="425" height="336"><param name="movie" value="http://www.youtube.com/v/cLkqgAp2tfE"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/cLkqgAp2tfE" type="application/x-shockwave-flash" wmode="transparent" width="425" height="336" FlashVars="movie_url=http://d.hatena.ne.jp/video/youtube/cLkqgAp2tfE"></embed></object>
<a href="http://d.hatena.ne.jp/video/youtube/cLkqgAp2tfE" alt="この動画を含む日記"><img src="http://d.hatena.ne.jp/images/d_entry.gif" alt="D" border="0" style="vertical-align: bottom;" title="この動画を含む日記"></a></p>
</div>

    ]]>
    </description>
    <link>http://d.hatena.ne.jp/turutosiya/20110507/p1</link> 
    <pubDate>Fri, 06 May 2011 15:00:00 GMT</pubDate>
   </item>
  <item>
    <title>Conga</title> 
    <description>
    <![CDATA[
    <embed allowscriptaccess="never"  src="http://www.youtube.com/v/CyIjrijfsJs?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" width="480" height="385" wmode="transparent" class=""/><br>
<a href="http://www.youtube.com/watch?v=CyIjrijfsJs&amp;feature=share" target="_blank">GLORIA ESTEFAN - CONGA(LIVE 1988)</a><br>
    ]]>
    </description>
    <link>http://rd.yahoo.co.jp/rss/l/blog/myblog/rss2/item/*http://blogs.yahoo.co.jp/turutosiya/61006126.html</link> 
    <pubDate>Thu, 05 May 2011 15:41:35 +0900</pubDate>
   </item>
  <item>
    <title>Jazz is the Teacher, Funk is the Preacher</title> 
    <description>
    <![CDATA[
    <embed allowscriptaccess="never"  src="http://www.youtube.com/v/3IxxLcgiGm0?fs=1&amp;hl=ja_JP" type="application/x-shockwave-flash" width="480" height="385" wmode="transparent" class=""/><br>
<a href="http://www.youtube.com/watch?v=3IxxLcgiGm0&amp;feature=share" target="_blank">Screaming Headless Torsos - Jazz Is the Teacher 1996</a><br>
    ]]>
    </description>
    <link>http://rd.yahoo.co.jp/rss/l/blog/myblog/rss2/item/*http://blogs.yahoo.co.jp/turutosiya/60564020.html</link> 
    <pubDate>Sun, 28 Nov 2010 20:08:13 +0900</pubDate>
   </item>
  <item>
    <title>When you&amp;#039;re down and troubled And you need some loving care And nothing, nothing is going right</title> 
    <description>
    <![CDATA[
    <span class="Apple-style-span" style="border-collapse:separate;color:rgb(0, 0, 0);font-family:'Times New Roman';font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;orphans:2;text-indent:0px;text-transform:none;white-space:normal;widows:2;word-spacing:0px;font-size:12pt;"><span class="Apple-style-span" style="font-family:Verdana, Arial;font-size:7.5pt;">Close your eyes and think of me<br>
And soon I will be there<br>
To brighten up even your darkest night<br>
<br>
</span></span><embed allowscriptaccess="never"  src="http://www.youtube.com/v/trEwDejTKRY?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" width="480" height="385" wmode="transparent" class=""/><br>
<a target="_blank" href="http://www.youtube.com/watch?v=trEwDejTKRY">You&#39;ve Got A Friend - Carole King</a><br>
<br>
    ]]>
    </description>
    <link>http://rd.yahoo.co.jp/rss/l/blog/myblog/rss2/item/*http://blogs.yahoo.co.jp/turutosiya/60292352.html</link> 
    <pubDate>Sun, 12 Sep 2010 12:17:19 +0900</pubDate>
   </item>
  <item>
    <title>男の心の裏側に唾を吐きかけなじる</title> 
    <description>
    <![CDATA[
    <embed allowscriptaccess="never"  src="http://www.youtube.com/v/B7RDW9JE-s0?fs=1&amp;hl=ja_JP" type="application/x-shockwave-flash" width="480" height="385" wmode="transparent" class=""/><br>
<a href="http://www.youtube.com/watch?v=B7RDW9JE-s0" target="_blank">世良公則－銃爪</a><br>
    ]]>
    </description>
    <link>http://rd.yahoo.co.jp/rss/l/blog/myblog/rss2/item/*http://blogs.yahoo.co.jp/turutosiya/60197522.html</link> 
    <pubDate>Sun, 15 Aug 2010 15:37:11 +0900</pubDate>
   </item>
  <item>
    <title>哀しみと喜びの波間に流されない夢を抱く</title> 
    <description>
    <![CDATA[
    <div class='wiki'><embed allowscriptaccess="never"  src="http://www.youtube.com/v/nmIGB7PO8kI&hl=en_US&fs=1" type="application/x-shockwave-flash" width="425" height="344" wmode="transparent"></embed><br />
<a href="http://www.youtube.com/watch?v=nmIGB7PO8kI" target="_blank">「SPIRIT OF LOVE」　佐藤竹善</a><br />
</div>
    ]]>
    </description>
    <link>http://rd.yahoo.co.jp/rss/l/blog/myblog/rss2/item/*http://blogs.yahoo.co.jp/turutosiya/59532746.html</link> 
    <pubDate>Tue, 16 Feb 2010 02:22:48 +0900</pubDate>
   </item>
  <item>
    <title>There must be a ghost around the snare.</title> 
    <description>
    <![CDATA[
    <div class='wiki'><embed allowscriptaccess="never"  src="http://www.youtube.com/v/lpMW7WrUW4o&hl=en_US&fs=1" type="application/x-shockwave-flash" width="425" height="344" wmode="transparent"></embed><br />
<a href="http://www.youtube.com/watch?v=lpMW7WrUW4o" target="_blank">Tower of Power -  Soul with a capital S</a><br />
</div>
    ]]>
    </description>
    <link>http://rd.yahoo.co.jp/rss/l/blog/myblog/rss2/item/*http://blogs.yahoo.co.jp/turutosiya/59465907.html</link> 
    <pubDate>Sun, 31 Jan 2010 00:08:11 +0900</pubDate>
   </item>
  <item>
    <title>変化自在</title> 
    <description>
    <![CDATA[
    <div class='wiki'><embed allowscriptaccess="never"  src="http://www.youtube.com/v/uE3Y380Nv8Y&hl=en_US&fs=1" type="application/x-shockwave-flash" width="384" height="313" wmode="transparent"></embed><br />
<a href="http://www.youtube.com/watch?v=uE3Y380Nv8Y" target="_blank">MESHELL NDEGEOCELLO - SLAP FUNK</a><br />
</div>
    ]]>
    </description>
    <link>http://rd.yahoo.co.jp/rss/l/blog/myblog/rss2/item/*http://blogs.yahoo.co.jp/turutosiya/59291684.html</link> 
    <pubDate>Sun, 20 Dec 2009 17:40:07 +0900</pubDate>
   </item>
</channel>
</rss>
