taiwanese_news_parser 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +23 -0
- data/Rakefile +4 -0
- data/g0v.json +37 -0
- data/lib/taiwanese_news_parser/parser/apple_daily.rb +69 -0
- data/lib/taiwanese_news_parser/parser/china_times.rb +76 -0
- data/lib/taiwanese_news_parser/parser/cna.rb +59 -0
- data/lib/taiwanese_news_parser/parser/cts.rb +52 -0
- data/lib/taiwanese_news_parser/parser/ettoday.rb +53 -0
- data/lib/taiwanese_news_parser/parser/liberty_times.rb +66 -0
- data/lib/taiwanese_news_parser/parser/liberty_times_big5.rb +51 -0
- data/lib/taiwanese_news_parser/parser/now_news.rb +53 -0
- data/lib/taiwanese_news_parser/parser/tvbs.rb +46 -0
- data/lib/taiwanese_news_parser/parser/udn.rb +43 -0
- data/lib/taiwanese_news_parser/parser.rb +57 -0
- data/lib/taiwanese_news_parser/url_cleaner.rb +19 -0
- data/lib/taiwanese_news_parser/version.rb +3 -0
- data/lib/taiwanese_news_parser.rb +15 -0
- data/spec/spec_helper.rb +9 -0
- data/spec/taiwanese_news_parser/parser/apple_daily_s1.html +484 -0
- data/spec/taiwanese_news_parser/parser/apple_daily_s2.html +333 -0
- data/spec/taiwanese_news_parser/parser/apple_daily_s3.html +334 -0
- data/spec/taiwanese_news_parser/parser/apple_daily_spec.rb +57 -0
- data/spec/taiwanese_news_parser/parser/china_times_s1.html +513 -0
- data/spec/taiwanese_news_parser/parser/china_times_s2.html +538 -0
- data/spec/taiwanese_news_parser/parser/china_times_s3.html +893 -0
- data/spec/taiwanese_news_parser/parser/china_times_s4.html +1045 -0
- data/spec/taiwanese_news_parser/parser/china_times_spec.rb +63 -0
- data/spec/taiwanese_news_parser/parser/cna_s1.html +1616 -0
- data/spec/taiwanese_news_parser/parser/cna_spec.rb +33 -0
- data/spec/taiwanese_news_parser/parser/cts_s1.html +672 -0
- data/spec/taiwanese_news_parser/parser/cts_s2.html +672 -0
- data/spec/taiwanese_news_parser/parser/cts_spec.rb +36 -0
- data/spec/taiwanese_news_parser/parser/ettoday_s1.html +1817 -0
- data/spec/taiwanese_news_parser/parser/ettoday_s2.html +1822 -0
- data/spec/taiwanese_news_parser/parser/ettoday_spec.rb +35 -0
- data/spec/taiwanese_news_parser/parser/liberty_times_big5_s1.html +213 -0
- data/spec/taiwanese_news_parser/parser/liberty_times_big5_spec.rb +31 -0
- data/spec/taiwanese_news_parser/parser/liberty_times_s1.html +145 -0
- data/spec/taiwanese_news_parser/parser/liberty_times_spec.rb +29 -0
- data/spec/taiwanese_news_parser/parser/now_news_s1.html +968 -0
- data/spec/taiwanese_news_parser/parser/now_news_s2.html +986 -0
- data/spec/taiwanese_news_parser/parser/now_news_spec.rb +31 -0
- data/spec/taiwanese_news_parser/parser/tvbs_s1.html +734 -0
- data/spec/taiwanese_news_parser/parser/tvbs_s2.html +739 -0
- data/spec/taiwanese_news_parser/parser/tvbs_spec.rb +36 -0
- data/spec/taiwanese_news_parser/parser/udn_s1.html +1678 -0
- data/spec/taiwanese_news_parser/parser/udn_spec.rb +42 -0
- data/taiwanese_news_parser.gemspec +30 -0
- metadata +237 -0
@@ -0,0 +1,57 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe TaiwaneseNewsParser::Parser::AppleDaily do
|
4
|
+
describe '#parse' do
|
5
|
+
it do
|
6
|
+
url = 'http://www.appledaily.com.tw/realtimenews/article/politics/20130629/217673/%E9%82%B1%E6%96%87%E9%81%94%E5%85%A7%E5%AE%9A%E8%A1%9B%E7%A6%8F%E9%83%A8%E9%95%B7%E6%94%BF%E6%AC%A1%E6%9B%BE%E4%B8%AD%E6%98%8E%E6%88%B4%E6%A1%82%E8%8B%B1%E5%91%BC%E8%81%B2%E9%AB%98'
|
7
|
+
FakeWeb.register_uri(:get, url, body:sample(__FILE__,'apple_daily_s1.html'))
|
8
|
+
article = described_class.new(url).parse
|
9
|
+
article[:title].should == '邱文達內定衛福部長 政次曾中明戴桂英呼聲高' #TODO remove one space in the middle
|
10
|
+
article[:content].should include('配合行政院組織改造,內政部社會司')
|
11
|
+
article[:company_name].should == '蘋果日報'
|
12
|
+
article[:reporter_name].should == '王家俊'
|
13
|
+
article[:published_at].should == DateTime.new(2013,6,29,19,35)
|
14
|
+
end
|
15
|
+
|
16
|
+
it do
|
17
|
+
url = 'http://www.appledaily.com.tw/appledaily/article/headline/20050811/1968864'
|
18
|
+
FakeWeb.register_uri(:get, url, body:sample(__FILE__,'apple_daily_s2.html'))
|
19
|
+
article = described_class.new(url).parse
|
20
|
+
article[:title].should == '診所助理救活人反觸法' #TODO remove one space in the middle
|
21
|
+
article[:content].should include('姚在事發後已離職,林鴻也病逝。')
|
22
|
+
article[:content].should include('女子姚素珍三年前在北市中心診所當助理研究員')
|
23
|
+
article[:company_name].should == '蘋果日報'
|
24
|
+
article[:reporter_name].should == '丁牧群'
|
25
|
+
end
|
26
|
+
|
27
|
+
it 'reporter name' do
|
28
|
+
url = 'http://www.appledaily.com.tw/appledaily/article/international/20140115/35580004/%E6%97%A5%E5%89%8D%E9%A6%96%E7%9B%B8%E7%B4%B0%E5%B7%9D%E9%81%B8%E6%9D%B1%E4%BA%AC%E7%9F%A5%E4%BA%8B'
|
29
|
+
FakeWeb.register_uri(:get, url, body:sample(__FILE__,'apple_daily_s3.html'))
|
30
|
+
article = described_class.new(url).parse
|
31
|
+
article[:title].should == '日前首相細川 選東京知事'
|
32
|
+
article[:content].should include('日本前東京都知事豬瀨直樹因涉嫌非法收受政治獻金辭職下台')
|
33
|
+
article[:reporter_name].should == '陳怡妏'
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
describe '#parse_url_id' do
|
38
|
+
example 'realtime news' do
|
39
|
+
url = 'http://www.appledaily.com.tw/realtimenews/article/international/20130807/238720/'
|
40
|
+
described_class.parse_url_id(url).should == '20130807/238720'
|
41
|
+
end
|
42
|
+
example 'url with three numbers' do
|
43
|
+
url = 'http://www.appledaily.com.tw/realtimenews/article/politics/20130809/239528/1/'
|
44
|
+
described_class.parse_url_id(url).should == '20130809/239528/1'
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe '.parse_time' do
|
49
|
+
it 'parse date with time ' do
|
50
|
+
described_class.parse_time('2013年06月29日19:35').should == DateTime.new(2013,6,29,19,35)
|
51
|
+
end
|
52
|
+
it 'parse date' do
|
53
|
+
described_class.parse_time('2005年08月11日').should == DateTime.new(2005,8,11)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
@@ -0,0 +1,513 @@
|
|
1
|
+
|
2
|
+
<!DOCTYPE html>
|
3
|
+
<html>
|
4
|
+
<head id="ctl00_Head1">
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
<meta name="robots" content="noodp,noydir" />
|
7
|
+
<meta name="robots" content="index,follow,noarchive" />
|
8
|
+
<title>「春盈號」第二艘救生筏尋獲時破損 2死15失蹤 - 中時電子報</title>
|
9
|
+
<meta http-equiv="Pragma" content="no-cache" />
|
10
|
+
<meta http-equiv="cache-control" content="no-cache"/>
|
11
|
+
<meta http-equiv="expires" content="0" />
|
12
|
+
<meta http-equiv="content-language" content="zh-tw" />
|
13
|
+
<meta http-equiv="content-style-type" content="text/css" />
|
14
|
+
<meta http-equiv="last-modified" content="2013-06-29T18:24:29+08:00" />
|
15
|
+
|
16
|
+
<meta name="title" property="og:title" itemprop="name" content="「春盈號」第二艘救生筏尋獲時破損 2死15失蹤" />
|
17
|
+
<meta name="author" itemprop="author" content="中時電子報" />
|
18
|
+
<meta name="description" property="og:description" itemprop="description" content="高雄籍漁船「春盈號」日前在印度洋海域作業時發生火警,船上31人分乘兩艘救生筏逃生,其中一艘載有14人的救生筏先獲救,另一艘包括台籍船長等17人在內的救生筏昨天被尋獲,救生筏已經破損,兩人陳屍救生筏上面,其餘15人下落不明,船東研判,救生筏可能是遭到商船撞擊,家屬請求船東繼續搜尋,不要放棄救人。(溫蘭魁報導)" />
|
19
|
+
<meta name="news_keywords" content="救生筏" />
|
20
|
+
<meta name="keywords" itemprop="keywords" content="救生筏" />
|
21
|
+
<meta name="lastmod" itemprop="dateModified" content="2013-06-29T18:24:29+08:00" />
|
22
|
+
<meta name="pubdate" itemprop="datePublished" content="2013-06-29T18:24:27+08:00" />
|
23
|
+
<meta name="section" itemprop="articleSection" content="社會萬象" />
|
24
|
+
<meta name="source" itemprop="sourceOrganization" content="中時電子報" />
|
25
|
+
|
26
|
+
<meta name="distribution" content="global" />
|
27
|
+
<meta name="copyright" content="Copyright © China Times Inc. Limited" />
|
28
|
+
<meta name="medium" itemprop="genre" content="news" />
|
29
|
+
|
30
|
+
<meta itemprop="inLanguage" content="zh-Hant" />
|
31
|
+
<meta itemprop="headline" content="「春盈號」第二艘救生筏尋獲時破損 2死15失蹤" />
|
32
|
+
<meta itemprop="dateCreated" content="2013-06-29T18:24:27+08:00" />
|
33
|
+
|
34
|
+
<meta property="fb:admins" content="100000530044519" />
|
35
|
+
<meta property="fb:app_id" content="167904656694132" />
|
36
|
+
<meta property="og:type" content="article" />
|
37
|
+
<meta property="og:locale" content="zh_TW" />
|
38
|
+
<meta property="og:site_name" content="中時電子報" />
|
39
|
+
<meta property="og:url" itemprop="url" content="http://www.chinatimes.com/realtimenews/%E3%80%8C%E6%98%A5%E7%9B%88%E8%99%9F%E3%80%8D%E7%AC%AC%E4%BA%8C%E8%89%98%E6%95%91%E7%94%9F%E7%AD%8F%E5%B0%8B%E7%8D%B2%E6%99%82%E7%A0%B4%E6%90%8D-2%E6%AD%BB15%E5%A4%B1%E8%B9%A4-20130629003333-260402" />
|
40
|
+
<meta property="og:image" itemprop="image" content="http://www.chinatimes.com/images/logo_chinatimes_154x154.png" />
|
41
|
+
|
42
|
+
<link rel="apple-touch-icon" href="/images/touch-icon-iphone.png" />
|
43
|
+
<link rel="apple-touch-icon" sizes="72x72" href="/images/touch-icon-ipad.png" />
|
44
|
+
<link rel="apple-touch-icon" sizes="114x114" href="/images/touch-icon-iphone4.png" />
|
45
|
+
<link rel="apple-touch-icon" sizes="144x144" href="/images/touch-icon-newipad.png" />
|
46
|
+
|
47
|
+
<link rel="canonical" href="http://www.chinatimes.com/realtimenews/%E3%80%8C%E6%98%A5%E7%9B%88%E8%99%9F%E3%80%8D%E7%AC%AC%E4%BA%8C%E8%89%98%E6%95%91%E7%94%9F%E7%AD%8F%E5%B0%8B%E7%8D%B2%E6%99%82%E7%A0%B4%E6%90%8D-2%E6%AD%BB15%E5%A4%B1%E8%B9%A4-20130629003333-260402" />
|
48
|
+
<link rel="shortcut icon" href="http://www.chinatimes.com/images/cti-icon.ico">
|
49
|
+
<link rel="shortcut icon" type="image/x-icon" href="http://www.chinatimes.com/images/cti-icon.ico">
|
50
|
+
<link rel="icon" type="image/ico" href="http://www.chinatimes.com/images/cti-icon.ico">
|
51
|
+
<link rel="alternate" type="application/rss+xml" title="即時[RSS]" href="http://www.chinatimes.com/rss/realtimenews.xml" />
|
52
|
+
|
53
|
+
<!--[if lt IE 9]>
|
54
|
+
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
55
|
+
<![endif]-->
|
56
|
+
<!--讓IE9之前的版本支援HTML5的新元素-->
|
57
|
+
<link rel="stylesheet" type="text/css" href="/css-main/index.css" />
|
58
|
+
<script type="text/javascript" src="/Scripts/jquery-1.7.1.min.js"></script>
|
59
|
+
<script type="text/javascript" src="/Scripts/content-later-handle.js"></script>
|
60
|
+
<script type="text/javascript" src="/Scripts/content-later-update.js"></script>
|
61
|
+
<script src="/Scripts/jquery-ui-1.9.2.custom.min.js"></script>
|
62
|
+
<link rel="stylesheet" href="/css-main/jquery-ui-1.9.2.custom.min.css" />
|
63
|
+
<script type="text/javascript" src="/Scripts/common-scripts.js"></script>
|
64
|
+
<script type="text/javascript" src="/Scripts/jquery.fitvids.js"></script>
|
65
|
+
<script src="/Scripts/jquery.lazyload.mini.js" type="text/javascript"></script>
|
66
|
+
<script src="http://admanager.cyberone.com.tw/scripts/spac.js" type="text/javascript"></script>
|
67
|
+
<title>
|
68
|
+
|
69
|
+
</title></head>
|
70
|
+
<body id="page">
|
71
|
+
<!-- Google Tag Manager -->
|
72
|
+
<noscript>
|
73
|
+
<iframe src="//www.googletagmanager.com/ns.html?id=GTM-9FG3" height="0" width="0"
|
74
|
+
style="display: none; visibility: hidden"></iframe>
|
75
|
+
</noscript>
|
76
|
+
<script> (function (w, d, s, l, i) {
|
77
|
+
w[l] = w[l] || []; w[l].push({ 'gtm.start':
|
78
|
+
new Date().getTime(), event: 'gtm.js'
|
79
|
+
}); var f = d.getElementsByTagName(s)[0],
|
80
|
+
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
|
81
|
+
'//www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
|
82
|
+
})(window, document, 'script', 'dataLayer', 'GTM-9FG3');</script>
|
83
|
+
<!-- End Google Tag Manager -->
|
84
|
+
<!-- Begin comScore Tag -->
|
85
|
+
<script>
|
86
|
+
var _comscore = _comscore || [];
|
87
|
+
_comscore.push({ c1: "2", c2: "9457284" });
|
88
|
+
(function () {
|
89
|
+
var s = document.createElement("script"), el = document.getElementsByTagName
|
90
|
+
("script")[0]; s.async = true;
|
91
|
+
s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") +
|
92
|
+
".scorecardresearch.com/beacon.js";
|
93
|
+
el.parentNode.insertBefore(s, el);
|
94
|
+
})();
|
95
|
+
</script>
|
96
|
+
<noscript>
|
97
|
+
<img src="http://b.scorecardresearch.com/p?c1=2&c2=9457284&cv=2.0&cj=1" />
|
98
|
+
</noscript>
|
99
|
+
<!-- End comScore Tag -->
|
100
|
+
<div class="wrapper">
|
101
|
+
<script type="text/javascript" src="/Scripts/header.js"></script>
|
102
|
+
|
103
|
+
<script type="text/javascript" src="/Scripts/nav.js"></script>
|
104
|
+
<div class="ad_72890_box stack"> <div class="ad_72890"> <div class="banner-728x90"> <!-- AdSame ShowCode: 中時電子報 / 中時_即時區_內容頁 / 中時_即時內容頁_Super Banner Begin --> <script type="text/javascript" src="http://twasp.adsame.com/s?z=chinatimes&c=36" ></script> <!-- AdSame ShowCode: 中時電子報 / 中時_即時區_內容頁 / 中時_即時內容頁_Super Banner End --> </div> </div> </div>
|
105
|
+
<!--page_container-s-->
|
106
|
+
<div class="page_container stack clear-fix">
|
107
|
+
<article class="clear-fix">
|
108
|
+
|
109
|
+
<ul class="page_index">
|
110
|
+
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
|
111
|
+
<h6>
|
112
|
+
<a href="/beta.htm" itemprop="url"><span itemprop="title">首頁</span></a></h6>
|
113
|
+
</li>
|
114
|
+
|
115
|
+
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
|
116
|
+
<h6>
|
117
|
+
<a href="即時新聞" itemprop="url"><span itemprop="title">
|
118
|
+
即時新聞</span></a></h6>
|
119
|
+
</li>
|
120
|
+
|
121
|
+
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
|
122
|
+
<h6>
|
123
|
+
<a href="中廣即時新聞-5" itemprop="url"><span itemprop="title">
|
124
|
+
中廣</span></a></h6>
|
125
|
+
</li>
|
126
|
+
|
127
|
+
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
|
128
|
+
<h6>
|
129
|
+
<a href="中廣即時新聞-社會萬象-5-260402" itemprop="url"><span itemprop="title">
|
130
|
+
社會萬象</span></a></h6>
|
131
|
+
</li>
|
132
|
+
|
133
|
+
</ul>
|
134
|
+
|
135
|
+
<header>
|
136
|
+
<h1>
|
137
|
+
「春盈號」第二艘救生筏尋獲時破損 2死15失蹤</h1>
|
138
|
+
<div class="read_later">
|
139
|
+
<a href="javascript:;" class="clear-fix" data-aid="20130629003333" data-cid="260402">
|
140
|
+
<span class="text">稍後再讀</span><span class="icon_16x16"></span></a></div>
|
141
|
+
</header>
|
142
|
+
<div class="article_info clear-fix">
|
143
|
+
<div class="reporter">
|
144
|
+
<a href="中廣即時新聞-5">
|
145
|
+
中廣</a>
|
146
|
+
溫蘭魁
|
147
|
+
<time datetime="2013/06/29 00:00">
|
148
|
+
2013年06月29日 18:24</time>
|
149
|
+
</div>
|
150
|
+
</div>
|
151
|
+
<div class="article_star clear-fix">
|
152
|
+
<div class="font_size clear-fix">
|
153
|
+
<ul>
|
154
|
+
<li class="f_s"><a href="javascript:;" title="小字型">小字型</a></li>
|
155
|
+
<li class="f_c show"><a href="javascript:;" title="中字型">中字型</a></li>
|
156
|
+
<li class="f_b"><a href="javascript:;" title="大字型">大字型</a></li>
|
157
|
+
</ul>
|
158
|
+
</div>
|
159
|
+
</div>
|
160
|
+
<article class="clear-fix">
|
161
|
+
<p>高雄籍漁船「春盈號」日前在印度洋海域作業時發生火警,船上31人分乘兩艘救生筏逃生,其中一艘載有14人的救生筏先獲救,另一艘包括台籍船長等17人在內的救生筏昨天被尋獲,救生筏已經破損,兩人陳屍救生筏上面,其餘15人下落不明,船東研判,救生筏可能是遭到商船撞擊,家屬請求船東繼續搜尋,不要放棄救人。(溫蘭魁報導)</p><p></p><p>「春盈號」是去年12月從高雄港出港捕撈鮪魚,船上有台籍船長許聰德、輪機長陳奶妹以及大副夏德龍,另外有21名菲律賓籍和4名印尼漁工,船上還僱用3名斯里蘭卡武裝民兵,「春盈號」日前在塞席爾海域作業時突然失火,船上31人分乘兩艘無動力的救生筏棄船逃生,其中一艘搭載14人的救生筏六天後被塞席爾的搜救飛機發現,大副夏德龍等14人獲救。</p><p>春盈漁業公司董事長李珠清表示,包括一艘中國軍艦和一艘外國籍軍艦都協助在附近海域搜尋,中國軍艦的直昇機搜尋時發現第二艘救生筏的蹤影,立即通報友船「春盈777號」前往查看,發現救生筏上面有兩具遺體,其餘包括船長許聰德和輪機長陳奶妹在內的15人下落不明「中國軍艦上的直昇機他們看到地方嘛,我們的船趕過去,趕過去時發現這個情況,然後把那個救生筏想辦法跟裡面的大體把他處理上來的時候,就發現救生筏有破洞。」</p><p>李珠清董事長說,兩具遺體已經由「春盈777號」冰存,經日前獲救的14名船員指認,兩名死者分別是印尼籍的船員和斯里蘭卡民兵,從救生筏破洞的情形研判,懷疑是遭到航行經過的商船撞擊,家屬希望船公司不要放棄搜救,李珠清表示,搜救行動會持續進行。</p><p></p>
|
162
|
+
</article>
|
163
|
+
<div class="a_k">
|
164
|
+
<span>關鍵字:</span><a href="/Search/Result.htm?q=救生筏">救生筏</a></div>
|
165
|
+
<a id="penbi"></a>
|
166
|
+
<div class="article_function">
|
167
|
+
<ul class="clear-fix">
|
168
|
+
<li class="comments">
|
169
|
+
<div class="num">
|
170
|
+
<a class="disqus_count">0</a></div>
|
171
|
+
<span>留言數</span> </li>
|
172
|
+
<li class="penbi">
|
173
|
+
<div class="title_name">
|
174
|
+
我要評比</div>
|
175
|
+
<ul>
|
176
|
+
<li title="一顆星"></li>
|
177
|
+
<li title="二顆星"></li>
|
178
|
+
<li title="三顆星"></li>
|
179
|
+
<li title="四顆星"></li>
|
180
|
+
<li title="五顆星"></li>
|
181
|
+
</ul>
|
182
|
+
</li>
|
183
|
+
<li class="community clear-fix">
|
184
|
+
<ul>
|
185
|
+
<li class="fb">
|
186
|
+
<script>
|
187
|
+
document.write('<iframe src="http://www.facebook.com/plugins/like.php?href=' + encodeURIComponent(String(window.location)) + '&layout=box_count&show_faces=false&width=55&action=like&colorscheme=light&height=62" scrolling="no" frameborder="0" style="border: none; overflow: hidden; width: 55px; height: 62px; position: relative; top: 5px;" allowTransparency="true"></iframe>');
|
188
|
+
</script>
|
189
|
+
</li>
|
190
|
+
<li class="google"><span class="google-plusone">
|
191
|
+
<g:plusone size="tall"></g:plusone>
|
192
|
+
<script type="text/javascript">
|
193
|
+
window.___gcfg = { lang: 'zh-TW' };
|
194
|
+
|
195
|
+
(function () {
|
196
|
+
var po = document.createElement('script');
|
197
|
+
po.type = 'text/javascript'; po.async = true;
|
198
|
+
po.src = 'https://apis.google.com/js/plusone.js';
|
199
|
+
var s = document.getElementsByTagName('script')[0];
|
200
|
+
s.parentNode.insertBefore(po, s);
|
201
|
+
})();
|
202
|
+
</script>
|
203
|
+
</span></li>
|
204
|
+
|
205
|
+
</ul>
|
206
|
+
</li>
|
207
|
+
<li class="share">
|
208
|
+
<div class="title_name">
|
209
|
+
我要分享</div>
|
210
|
+
<ul>
|
211
|
+
<li class="fb"><a title="分享至facebook"></a></li>
|
212
|
+
<li class="google"><a title="分享至google+"></a></li>
|
213
|
+
</ul>
|
214
|
+
</li>
|
215
|
+
</ul>
|
216
|
+
</div>
|
217
|
+
<div class="a_f_star">
|
218
|
+
</div>
|
219
|
+
<nav class="nav-below clear-fix">
|
220
|
+
<div class="nav-next clear-fix"> <span class="arrow"></span><span>下一則:</span><h2><a href="白狼100萬交保-20130629003337-260402">白狼100萬交保</a></h2></div><div class="nav-previous clear-fix"> <span class="arrow"></span><span>上一則:</span><h2><a href="無羈押必要-張安樂百萬交保-20130629003328-260402">無羈押必要 張安樂百萬交保</a></h2></div>
|
221
|
+
</nav>
|
222
|
+
<div class="page_ad clear-fix">
|
223
|
+
<div class="l_ad"><!--YSM BEGIN -->
|
224
|
+
<div id="ysmcm" align="left" style="border:1px solid #E5DED6; width: 288px; height: 240px;"></div>
|
225
|
+
<script type="text/javascript">
|
226
|
+
var param_partner = "cti_tw_news_focus_content_cm";
|
227
|
+
var param_ctxtID = "cti_tw_general_001";
|
228
|
+
var ysm_maxCount = 4;
|
229
|
+
document.write("<link href='/css-main/CTI.css?rnd=" + Number(new Date) + "' rel='stylesheet' type='text/css'>");
|
230
|
+
document.write("<script src='/Scripts/CTI.js?rnd=" + Number(new Date) + "'></sc" + "ript>");
|
231
|
+
</script>
|
232
|
+
<!--YSM END-->
|
233
|
+
</div>
|
234
|
+
<div class="r_ad"><div id="tagtoo-ad1"></div>
|
235
|
+
<script>
|
236
|
+
if (typeof (tagtoo_ads_config) === "undefined") {
|
237
|
+
var tagtoo_ads_config = [{
|
238
|
+
"publisher": "50", "slot": "63", "id": "tagtoo-ad1", "width": "310", "height": "258"
|
239
|
+
}];
|
240
|
+
var _tagtoo_ads = _tagtoo_ads || [];
|
241
|
+
_tagtoo_ads.push(["init", tagtoo_ads_config]);
|
242
|
+
var RequestSite = "http://ad.tagtoo.co";
|
243
|
+
var tagtoo_ad_script = document.createElement("script"); tagtoo_ad_script.type = "text/javascript"; tagtoo_ad_script.async = true;
|
244
|
+
tagtoo_ad_script.src = RequestSite + "/media/ad/ad_loader2.js"; var s = document.getElementsByTagName("script")[0];
|
245
|
+
s.parentNode.insertBefore(tagtoo_ad_script, s);
|
246
|
+
}
|
247
|
+
</script>
|
248
|
+
</div>
|
249
|
+
</div>
|
250
|
+
|
251
|
+
<a id="disqus">
|
252
|
+
<div class="title">
|
253
|
+
全部留言</div>
|
254
|
+
</a>
|
255
|
+
<div id="disqus_thread" class="disqus_box">
|
256
|
+
</div>
|
257
|
+
<script type="text/javascript">
|
258
|
+
var disqus_url = 'http://www.chinatimes.com/realtimenews/%E3%80%8C%E6%98%A5%E7%9B%88%E8%99%9F%E3%80%8D%E7%AC%AC%E4%BA%8C%E8%89%98%E6%95%91%E7%94%9F%E7%AD%8F%E5%B0%8B%E7%8D%B2%E6%99%82%E7%A0%B4%E6%90%8D-2%E6%AD%BB15%E5%A4%B1%E8%B9%A4-20130629003333-260402';
|
259
|
+
var disqus_identifier = '20130629003333';
|
260
|
+
var disqus_container_id = 'disqus_thread';
|
261
|
+
var disqus_domain = 'disqus.com';
|
262
|
+
var disqus_shortname = 'chinatimes-report';
|
263
|
+
var disqus_title = "「春盈號」第二艘救生筏尋獲時破損 2死15失蹤";
|
264
|
+
var disqus_config = function () {
|
265
|
+
this.language = "zh_HANT";
|
266
|
+
};
|
267
|
+
var quote_to_url = 'http://www.chinatimes.com/';
|
268
|
+
</script>
|
269
|
+
<script type="text/javascript" src="/Scripts/content-article.js"></script>
|
270
|
+
</article>
|
271
|
+
<aside>
|
272
|
+
|
273
|
+
|
274
|
+
|
275
|
+
<div class="art_btntools clear-fix">
|
276
|
+
<div class="art_click">
|
277
|
+
點閱總數:<span>73</span></div>
|
278
|
+
<div class="star_box clear-fix">
|
279
|
+
<div class="average">
|
280
|
+
平均星等:</div>
|
281
|
+
<div itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating">
|
282
|
+
<div itemprop="rating" class="star_bg s0" alt="平均星評:0顆星"
|
283
|
+
title="平均星評:0顆星">
|
284
|
+
|
285
|
+
<meta itemprop="rating" content="0">
|
286
|
+
<meta itemprop="best" content="5">
|
287
|
+
<meta itemprop="author" content="溫蘭魁">
|
288
|
+
</div>
|
289
|
+
</div>
|
290
|
+
<div class="average_num">
|
291
|
+
<span>
|
292
|
+
0</span></div>
|
293
|
+
<div class="starlink">
|
294
|
+
<a href="#penbi">(去評比)</a></div>
|
295
|
+
</div>
|
296
|
+
<div class="quote_forward">
|
297
|
+
<a href="#disqus" class="disqus">留言(<span class="disqus_count">0</span>)</a> <a onclick="window.open('/htm/quote.htm','Recommand','toolbar=no,width=650,height=450,directories=no,status=no,scrollbars=no,resize=no,menubar=no')"
|
298
|
+
class="quote" title="引用" href="javascript:void(0)">引用(<span>0</span>)</a>
|
299
|
+
<a onclick="window.open('/htm/forward.htm','Forward','toolbar=no,width=470,height=320,directories=no,status=no,scrollbars=no,resize=no,menubar=no')"
|
300
|
+
class="forward" title="轉寄" href="javascript:void(0)">轉寄(<span>0</span>)</a>
|
301
|
+
</div>
|
302
|
+
</div>
|
303
|
+
|
304
|
+
<div class="ad"> <div class="text-ad"> <div class="container"> <p> <script> spac_writeAd ( "/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=292X22/POSITION=RIGHT21" );</script> </p> <p> <script> spac_writeAd ( "/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=292X22/POSITION=RIGHT22" );</script> </p> <p> <script> spac_writeAd ( "/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=292X22/POSITION=RIGHT23" );</script> </p> <p> <script> spac_writeAd ( "/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=292X22/POSITION=RIGHT24" );</script> </p> <p> <script> spac_writeAd ( "/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=292X22/POSITION=RIGHT25" );</script> </p> <p> <script> spac_writeAd ( "/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=292X22/POSITION=RIGHT26" );</script> </p> </div> </div> <div class="banner-300x250"> <div id="SkyAd"></div> <script src="http://ad.cyberone.com.tw/tserver/SITE=CT_NOWNEWS.TW/AREA=NOWNEWS.CP/AAMSZ=336X280/POSITION=MIDDLE1"></script> </div> <div class="banner-300x100"> <script> spac_writeAd ( "/SITE=CT_NOWNEWS.TW/AREA=NOWNEWS.CP/AAMSZ=300X100/POSITION=RIGHTG" );</script> </div> <div class="banner-300x100"> <script> spac_writeAd ( "/SITE=CT_NOWNEWS.TW/AREA=NOWNEWS.CP/AAMSZ=300X100/POSITION=RIGHTC" );</script> </div> <div class="banner-300x370"> <h2><b>旅遊行程推薦</b></h2> <script> spac_writeAd ( "/SITE=CT_NOWNEWS.TW/AREA=NOWNEWS.CP/AAMSZ=298X482/POSITION=MIDDLE0" );</script> </div> <div class="text-ad markets"><iframe name="markets" id="markets" src="http://news.chinatimes.com/2007Cti/2007Cti-Index-inc/Inc/2007-03-ChoiceCh-part02-iframe-Marketing2/0,4655,,00.shtml" allowtransparency="1" width="100%" height="300" marginheight="0" frameborder="0" scrolling="no" ></iframe></div> </div>
|
305
|
+
|
306
|
+
|
307
|
+
<section class="hot_news">
|
308
|
+
<header>
|
309
|
+
<h4>
|
310
|
+
最熱新聞</h4>
|
311
|
+
</header>
|
312
|
+
<article class="clear-fix">
|
313
|
+
<ul>
|
314
|
+
|
315
|
+
<li class="clear-fix">
|
316
|
+
<h3>
|
317
|
+
<a href="http://www.chinatimes.com/realtimenews/民眾不把警察放眼裡?中市警局長:正常-20130629002792-260402">
|
318
|
+
民眾不把警察放眼裡?中市警局長:正常</a></h3>
|
319
|
+
<span>
|
320
|
+
378</span></li>
|
321
|
+
|
322
|
+
<li class="clear-fix">
|
323
|
+
<h3>
|
324
|
+
<a href="http://www.chinatimes.com/realtimenews/加油站無良員工-學大舌頭譏笑癌婦-20130629002528-260402">
|
325
|
+
加油站無良員工 學大舌頭譏笑癌婦</a></h3>
|
326
|
+
<span>
|
327
|
+
364</span></li>
|
328
|
+
|
329
|
+
<li class="clear-fix">
|
330
|
+
<h3>
|
331
|
+
<a href="http://www.chinatimes.com/realtimenews/烏龍傳票四連發-同名之累善人變被告-20130629002696-260402">
|
332
|
+
烏龍傳票四連發 同名之累善人變被告</a></h3>
|
333
|
+
<span>
|
334
|
+
339</span></li>
|
335
|
+
|
336
|
+
<li class="clear-fix">
|
337
|
+
<h3>
|
338
|
+
<a href="http://www.chinatimes.com/realtimenews/高溫36度!男墜樓-大體曝曬5小時-20130629002724-260402">
|
339
|
+
高溫36度!男墜樓 大體曝曬5小時</a></h3>
|
340
|
+
<span>
|
341
|
+
153</span></li>
|
342
|
+
|
343
|
+
<li class="clear-fix">
|
344
|
+
<h3>
|
345
|
+
<a href="http://www.chinatimes.com/realtimenews/臉書揭發摔死貓事件-網友撻伐-20130629000021-260402">
|
346
|
+
臉書揭發摔死貓事件 網友撻伐</a></h3>
|
347
|
+
<span>
|
348
|
+
92</span></li>
|
349
|
+
|
350
|
+
</ul>
|
351
|
+
</article>
|
352
|
+
</section>
|
353
|
+
<section class="related_news">
|
354
|
+
<header>
|
355
|
+
<h4>
|
356
|
+
相關新聞</h4>
|
357
|
+
</header>
|
358
|
+
<article class="clear-fix">
|
359
|
+
<ul>
|
360
|
+
|
361
|
+
<li class="clear-fix">
|
362
|
+
<h3>
|
363
|
+
<a href="/newspapers/砸4,680萬美元-中航訂購新船-賺到-20130624000203-260206">
|
364
|
+
砸4,680萬美元 中航訂購新船 賺到</a></h3>
|
365
|
+
|
366
|
+
<span class="icon text"><a href="/newspapers/砸4,680萬美元-中航訂購新船-賺到-20130624000203-260206">文字</a></span>
|
367
|
+
|
368
|
+
<li class="clear-fix">
|
369
|
+
<h3>
|
370
|
+
<a href="/newspapers/短評-富邦巨獸-媒金分不分?-20130627001194-260310">
|
371
|
+
短評-富邦巨獸 媒金分不分?</a></h3>
|
372
|
+
|
373
|
+
<span class="icon pic"><a href="/newspapers/短評-富邦巨獸-媒金分不分?-20130627001194-260310">圖片</a></span>
|
374
|
+
|
375
|
+
<li class="clear-fix">
|
376
|
+
<h3>
|
377
|
+
<a href="/realtimenews/春盈號棄船失聯6天-31人乘救生筏逃生-20130627003605-260401">
|
378
|
+
春盈號棄船失聯6天 31人乘救生筏逃生</a></h3>
|
379
|
+
|
380
|
+
<span class="icon video"><a href="/realtimenews/春盈號棄船失聯6天-31人乘救生筏逃生-20130627003605-260401">影音</a></span>
|
381
|
+
|
382
|
+
<li class="clear-fix">
|
383
|
+
<h3>
|
384
|
+
<a href="/newspapers/突然起火棄船-春盈號非遇海盜-20130628000925-260106">
|
385
|
+
突然起火棄船 春盈號非遇海盜</a></h3>
|
386
|
+
|
387
|
+
<span class="icon text"><a href="/newspapers/突然起火棄船-春盈號非遇海盜-20130628000925-260106">文字</a></span>
|
388
|
+
|
389
|
+
<li class="clear-fix">
|
390
|
+
<h3>
|
391
|
+
<a href="/newspapers/春盈號2外籍船員罹難-20130629000371-260106">
|
392
|
+
春盈號2外籍船員罹難</a></h3>
|
393
|
+
|
394
|
+
<span class="icon text"><a href="/newspapers/春盈號2外籍船員罹難-20130629000371-260106">文字</a></span>
|
395
|
+
|
396
|
+
</li>
|
397
|
+
</ul>
|
398
|
+
</article>
|
399
|
+
|
400
|
+
</section>
|
401
|
+
</aside>
|
402
|
+
|
403
|
+
|
404
|
+
</div>
|
405
|
+
<!--page_container-e-->
|
406
|
+
<!--something area start-->
|
407
|
+
<div class="stack">
|
408
|
+
<div class="gototop">
|
409
|
+
<a href="#top" class="clear-fix"><span class="icon_16x16"></span>Top</a></div>
|
410
|
+
</div>
|
411
|
+
<!--something area end-->
|
412
|
+
|
413
|
+
|
414
|
+
<footer>
|
415
|
+
<div class="mobile">
|
416
|
+
<div class="stack clear-fix">
|
417
|
+
<div class="mobile_box clear-fix">
|
418
|
+
<ul>
|
419
|
+
<li><a href="/handheld/iPad" title="翻爆App"><span class="ipad_app"></span><p>翻爆App</p></a></li>
|
420
|
+
<li><a href="/handheld/iPhone" title="iPhoneApp"><span class="iphone_app"></span><p>iPhoneApp</p></a></li>
|
421
|
+
<li><a href="/handheld/mobile" title="手機網頁版"><span class="mobile_app"></span><p>手機網頁版</p></a></li>
|
422
|
+
<li><a href="/handheld/webapp" title="WebApp"><span class="web_app"></span><p>WebApp</p></a></li>
|
423
|
+
<li><a href="/sitemap" title="網站地圖"><span class="site_map"></span><p>網站地圖</p></a></li>
|
424
|
+
<li><a href="/syndication/rss" title="RSS"><span class="rss"></span><p>RSS</p></a></li>
|
425
|
+
</ul>
|
426
|
+
</div>
|
427
|
+
<div class="share_box clear-fix">
|
428
|
+
<ul>
|
429
|
+
<li><a href="http://www.facebook.com/CTfans" target="_blank"><span class="icon fb"></span>中時電子報<span class="num">63,468</span></a></li>
|
430
|
+
<li><a href="http://www.youtube.com/user/ChinaTimes" target="_blank"><span class="icon youtube"></span>訂閱人數<span class="num">442,950</span></a></li>
|
431
|
+
<li><a href="http://www.facebook.com/showbizCT" target="_blank"><span class="icon fb"></span>中時娛樂網<span class="num">27,263</span></a></li>
|
432
|
+
<li><a href="https://plus.google.com/+%E4%B8%AD%E6%99%82%E9%9B%BB%E5%AD%90%E5%A0%B1/posts" target="_blank"><span class="icon google"></span>中時電子報<span class="num">61,904</span></a></li>
|
433
|
+
<li><a href="http://e.weibo.com/showbizct" target="_blank"><span class="icon weibo"></span>中時娛樂網<span class="num">64,355</span></a></li>
|
434
|
+
<li><a href="http://t.qq.com/chinatimes-tw" target="_blank"><span class="icon tencent"></span>中時電子報<span class="num">49,775</span></a></li>
|
435
|
+
</ul>
|
436
|
+
</div>
|
437
|
+
</div>
|
438
|
+
</div>
|
439
|
+
<div class="corpinfo stack clear-fix">
|
440
|
+
<div class="clumn1">
|
441
|
+
<div class="title_name">
|
442
|
+
網站服務</div>
|
443
|
+
<ul class="clear-fix">
|
444
|
+
<li><a href="/news-feed/news-feed-idx" rel="nofollow">新聞工具列</a></li>
|
445
|
+
<li><a href="/customer/service" rel="nofollow">服務條款</a></li>
|
446
|
+
<li><a href="http://edm.member.chinatimes.com/2006/chinese/index.html" target="_blank" rel="nofollow">報紙廣告</a></li>
|
447
|
+
<li><a href="/customer/ads" rel="nofollow">廣告刊登</a></li>
|
448
|
+
<li><a href="/customer/contact" rel="nofollow">與我連絡</a></li>
|
449
|
+
</ul>
|
450
|
+
</div>
|
451
|
+
<div class="clumn2">
|
452
|
+
<div class="title_name">網站介紹</div>
|
453
|
+
<ul class="clear-fix">
|
454
|
+
<li class="wantwant clear-fix">
|
455
|
+
<a href="http://www.want-want.com.cn/tw/" target="_blank" rel="nofollow"><img src="/images/wantwant_logo_80x80.gif" title="旺旺集團logo" alt="旺旺集團logo" /></a>
|
456
|
+
<ul>
|
457
|
+
<li><a href="http://www.want-want.com.cn/tw/" target="_blank" rel="nofollow">旺旺集團</a></li>
|
458
|
+
<li><a href="/customer/websites" rel="nofollow">集團網站</a></li>
|
459
|
+
</ul>
|
460
|
+
</li>
|
461
|
+
<li class="chinatimes clear-fix">
|
462
|
+
<img src="/images/chinagroup_logo_80x80.gif" title="中時媒體集團logo" alt="中時媒體集團logo" />
|
463
|
+
<ul>
|
464
|
+
<li><a href="/customer/introduce" rel="nofollow">中時媒體集團</a></li>
|
465
|
+
<li><a href="/customer/about" rel="nofollow">關於我們</a></li>
|
466
|
+
</ul>
|
467
|
+
</li>
|
468
|
+
</ul>
|
469
|
+
</div>
|
470
|
+
<div class="clumn3">
|
471
|
+
<div class="title_name">客戶服務</div>
|
472
|
+
<ul class="clear-fix">
|
473
|
+
<li><a href="http://www.travelrich.com.tw/adnews/total_edm/total_edm_778.htm" target="_blank" rel="nofollow">旅遊玩家報</a></li>
|
474
|
+
<li><a href="http://health.chinatimes.com/" target="_blank" rel="nofollow">中時健康</a></li>
|
475
|
+
<li><a href="http://cti.twhouses.com.tw/" target="_blank" rel="nofollow">租房</a></li>
|
476
|
+
<li><a href="http://cti.soufun.com.tw/netc/index_sou.aspx" target="_blank" rel="nofollow">搜房</a></li>
|
477
|
+
<li><a href="http://chinatimes.88say.com/default.aspx" target="_blank" rel="nofollow">算命</a></li>
|
478
|
+
</ul>
|
479
|
+
</div>
|
480
|
+
</div>
|
481
|
+
<div class="copyright">
|
482
|
+
<div class="stack clear-fix">
|
483
|
+
<address>
|
484
|
+
<a href="/customer/infotimes"><img src="/images/infotimes-logo187x46.gif" title="時報資訊股份有限公司logo" alt="時報資訊股份有限公司logo" /></a><span>© 1995 - 2013 China Times Inc. 請尊重智慧財產權勿任意轉載違者依法必究。</span>
|
485
|
+
</address>
|
486
|
+
</div>
|
487
|
+
</div>
|
488
|
+
</footer>
|
489
|
+
</div>
|
490
|
+
<script src="/Scripts/portamento.js" type="text/javascript"></script>
|
491
|
+
<script>
|
492
|
+
$(function () {
|
493
|
+
$('#main_nav').portamento({ wrapper: $('.wrapper') });
|
494
|
+
});
|
495
|
+
</script>
|
496
|
+
<script src="/Scripts/front-end-specialized.js" type="text/javascript"></script>
|
497
|
+
<script>
|
498
|
+
$(".container").fitVids();
|
499
|
+
$(".container").fitVids({ customSelector: "iframe[src^='http://socialcam.com']" });
|
500
|
+
</script>
|
501
|
+
<script type="text/javascript">
|
502
|
+
var disqus_shortname = 'chinatimes-report';
|
503
|
+
|
504
|
+
(function () {
|
505
|
+
var s = document.createElement('script'); s.async = true;
|
506
|
+
s.type = 'text/javascript';
|
507
|
+
s.src = 'http://' + disqus_shortname + '.disqus.com/count.js';
|
508
|
+
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
|
509
|
+
} ());
|
510
|
+
|
511
|
+
</script>
|
512
|
+
</body>
|
513
|
+
</html>
|