/* Puchi RSS Reader(code name) - Simple RSS reader with Javascript Copyright 2008 RSS Marketing, Richard Choi(bluesky.sora@gmail.com) http://www.rssm.jp */ ////////// Global values ////////////////////////////////////////////////////// var feed = { 'channelTitle':'プロバイダー - Live Search ニュース', 'channelLink':'http://search.msn.com:80/news/results.aspx?q=%e3%83%97%e3%83%ad%e3%83%90%e3%82%a4%e3%83%80%e3%83%bc', 'entries': [ { 'title':'クアルコム、英国でも「MediaFlo」サービスを開始か ... - CNET Japan', 'link':'http://japan.cnet.com/news/com/story/0,2000056021,20373481,00.htm', 'published':'2008-05-20' }, { 'title':'ダウンロード中の画面に動画を表示するMMCAST - CNET Japan', 'link':'http://japan.cnet.com/blog/uchiyama/2008/05/19/entry_27001588/', 'published':'2008-05-20' }, { 'title':'ソフトバンクと Alibaba.com、「アリババ株式会社」を ... - Japan.internet.com', 'link':'http://japan.internet.com/ecnews/20080519/4.html', 'published':'2008-05-20' }, { 'title':'日立ソフト、ソフトウェア開発/管理支援の月額 ... - Japan.internet.com', 'link':'http://japan.internet.com/ecnews/20080519/3.html', 'published':'2008-05-20' }, { 'title':'児童ポルノ 禁止法をどう見直すか - 信濃毎日新聞', 'link':'http://www.shinmai.co.jp/news/20080518/KT080517ETI090005000022.htm', 'published':'2008-05-20' }, { 'title':'デルはマネージドサービスプロバイダー業界の ... - ITmedia', 'link':'http://www.itmedia.co.jp/enterprise/articles/0707/20/news080.html', 'published':'2008-05-20' }, { 'title':'ソフトバンク、Windows ケータイ「X02HT」の発売日を ... - Japan.internet.com', 'link':'http://japan.internet.com/allnet/20070919/2.html', 'published':'2008-05-20' }, { 'title':'D2C の FM ラジオアプリ「FM ラジオ Music サーチ ... - Japan.internet.com', 'link':'http://japan.internet.com/allnet/20061016/2.html', 'published':'2008-05-20' }, { 'title':'ブロードバンド市場、「トリプルプレイ」が規模 ... - ITmedia', 'link':'http://www.itmedia.co.jp/news/articles/0608/08/news018.html', 'published':'2008-05-20' }, { 'title':'今、あらためてクライアントセキュリティを考える - Internet Watch', 'link':'http://internet.watch.impress.co.jp/cda/special/2007/12/26/18009.html', 'published':'2008-05-20' }, ], 'uid':'329','count':'10'}; var how_many_entires = 10; var toggle_title = 1; var toggle_date = 1; ////////// Function definition //////////////////////////////////////////////// function puchi_reader(feed) { var html = ''; // Channel title html += toggle_title ? '

' +(feed.channelTitle) + '

' : ''; // Entires html += ''; html += ''; document.getElementById('puchi_reader_' + feed.uid).innerHTML = html; return 1; } ////////// Main /////////////////////////////////////////////////////////////// function puchi_read() { var work_space = 'puchi_reader_329' document.getElementById(work_space).innerHTML = '
読み込み中…読み込み中…
'; puchi_reader(feed); }