taiwanese_news_parser 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +35 -2
  3. data/bin/taiwanese_news_parser +16 -0
  4. data/lib/taiwanese_news_parser/parser.rb +5 -3
  5. data/lib/taiwanese_news_parser/parser/china_times.rb +9 -1
  6. data/lib/taiwanese_news_parser/parser/china_times_money.rb +72 -0
  7. data/lib/taiwanese_news_parser/parser/cna.rb +1 -1
  8. data/lib/taiwanese_news_parser/parser/liberty_times.rb +5 -6
  9. data/lib/taiwanese_news_parser/parser/liberty_times_news.rb +66 -0
  10. data/lib/taiwanese_news_parser/parser/udn.rb +4 -1
  11. data/lib/taiwanese_news_parser/version.rb +1 -1
  12. data/spec/taiwanese_news_parser/parser/china_times_money_s1.html +519 -0
  13. data/spec/taiwanese_news_parser/parser/china_times_money_spec.rb +21 -0
  14. data/spec/taiwanese_news_parser/parser/china_times_s5.html +830 -0
  15. data/spec/taiwanese_news_parser/parser/china_times_spec.rb +10 -0
  16. data/spec/taiwanese_news_parser/parser/cna_s1.html +1240 -927
  17. data/spec/taiwanese_news_parser/parser/cna_s2.html +1905 -0
  18. data/spec/taiwanese_news_parser/parser/cna_spec.rb +11 -1
  19. data/spec/taiwanese_news_parser/parser/liberty_times_news_s1.html +638 -0
  20. data/spec/taiwanese_news_parser/parser/liberty_times_news_s2.html +641 -0
  21. data/spec/taiwanese_news_parser/parser/liberty_times_news_s3.html +632 -0
  22. data/spec/taiwanese_news_parser/parser/liberty_times_news_spec.rb +51 -0
  23. data/spec/taiwanese_news_parser/parser/liberty_times_s2.html +116 -0
  24. data/spec/taiwanese_news_parser/parser/liberty_times_s3.html +110 -0
  25. data/spec/taiwanese_news_parser/parser/liberty_times_spec.rb +15 -5
  26. data/spec/taiwanese_news_parser/parser/udn_s2.html +2250 -0
  27. data/spec/taiwanese_news_parser/parser/udn_spec.rb +10 -0
  28. data/taiwanese_news_parser.gemspec +1 -0
  29. metadata +65 -26
  30. data/spec/taiwanese_news_parser/parser/liberty_times_s1.html +0 -145
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 067e4fb14a386429fc75be6ad0ffd3169677d9a7
4
- data.tar.gz: b3c9af0188c2df29573c725c09919530a1a8099c
3
+ metadata.gz: f2dcc61f33b26dccfd916bb3cba7d237e8ab9800
4
+ data.tar.gz: 766787ce1574e678f115c66501294aed32020c7d
5
5
  SHA512:
6
- metadata.gz: 5d6fde19818bfdf3a408dd985fec21b07dcf7a117a321a35e788bba3861cc8179f50203dea756cc8e841a1d3b3f7f1ece849f15a7084af987af9d63de54e1bf4
7
- data.tar.gz: f32b846ff9bc138b611bb330bea80612f129ce62951f06d36a7fb953fa383f029bdbcea7007ff134eb6f613358cb773c84ca2e39d883e08df3dc445547e6e786
6
+ metadata.gz: 68676325f905bd14dae2ce14bc306f9a2ff5c81fbac6627b1d4e4d0b2f1b1f097652ac15b37e4b1b25844a626a961888680906898c66ed2e999c1a07cb2c283e
7
+ data.tar.gz: 2ee0be9d077f3007fcf2cf23cd18acc72ed737659d74bc3ecbda1dc701176391ab55f0b68eb74c3956188d9d31684fe132ace9ff1b09547d3f80c817153978e8
data/README.md CHANGED
@@ -2,16 +2,49 @@
2
2
 
3
3
  台灣各新聞網站新聞解析器
4
4
 
5
- ## Installation
5
+ ## 給平常不用 Ruby 的人的使用法:
6
+
7
+ ### 安裝
8
+
9
+ 請先安裝 Ruby,本程式庫支援 Ruby 1.9 以上。
10
+
11
+ 接著請在 shell 執行:
12
+
13
+ gem install taiwanese_news_parser
14
+
15
+ ### 使用
16
+
17
+ 在 shell 裡面執行:
18
+
19
+ taiwanese_news_parser "[網址]"
20
+
21
+ 即會印出網址分析的 JSON ,比如:
22
+
23
+ {"url":"http://iservice.ltn.com.tw/2014/specials/nonukes/news.php?no=998123","web_domain":"libertytimes.com.tw","url_id":null,"title":"民眾行為脫序 內政部:將更強勢執法","company_name":"自由時報","content":"〔本報訊〕反核民眾近來動作頻頻,許多脫序的行為已明顯違法,內政部次長陳純敬表示...(略)","published_at":"2014-04-30 15:13:00 +0800","reporter_name":null,"reproduced":false}
24
+
25
+
26
+ ## 給對 Ruby 比較熟悉的人的使用法:
27
+
28
+ ### 安裝
29
+
30
+ 在 Gemfile 裡面加入這行:
6
31
 
7
32
  gem 'taiwanese_news_parser'
8
33
 
9
- ## Usage
34
+ 然後執行
35
+
36
+ bundle install
37
+
38
+ ### 呼叫
10
39
 
11
40
  TaiwaneseNewsParser.parse(url)
12
41
 
13
42
  會回傳新聞資訊的 hash
14
43
 
44
+ ## 使用實例
45
+
46
+ * [新聞糾正](http://news.1dv.tw)
47
+
15
48
  ## Contributing
16
49
 
17
50
  想要協助的朋友可以幫忙為其他新聞網站寫解析器。實作細節請參考個別解析器以及[wiki](https://github.com/lulalala/taiwanese_news_parser/wiki)。
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'taiwanese_news_parser'
4
+ require 'json'
5
+
6
+ url = ARGV[0]
7
+
8
+ if url.nil?
9
+ abort "taiwanese_news_parser: no URL provided.\nusage: taiwanese_news_parser \"[url]\"\nPlease remember to quote your url."
10
+ end
11
+
12
+ begin
13
+ puts JSON.generate(TaiwaneseNewsParser.parse(url))
14
+ rescue => e
15
+ abort "taiwanese_news_parser: #{e.message}"
16
+ end
@@ -12,11 +12,13 @@ class TaiwaneseNewsParser::Parser
12
12
  end
13
13
 
14
14
  def self.applicable_parser(url)
15
+ redirected_url = open(url).base_uri.to_s
16
+
15
17
  parser_class = subclasses.find do |parser_class|
16
- parser_class.applicable?(url)
18
+ parser_class.applicable?(redirected_url)
17
19
  end
18
20
  if parser_class
19
- parser_class.new(url)
21
+ parser_class.new(redirected_url)
20
22
  end
21
23
  end
22
24
 
@@ -48,7 +50,7 @@ class TaiwaneseNewsParser::Parser
48
50
 
49
51
  Dir[File.dirname(__FILE__) + '/parser/*.rb'].each{|file| require file}
50
52
  def self.subclasses
51
- [ Udn, LibertyTimes, LibertyTimesBig5, ChinaTimes, Cna, AppleDaily, Ettoday, Tvbs, Cts, NowNews ]
53
+ [ Udn, LibertyTimes, LibertyTimesBig5, LibertyTimesNews, ChinaTimes, ChinaTimesMoney, Cna, AppleDaily, Ettoday, Tvbs, Cts, NowNews ]
52
54
  end
53
55
 
54
56
  def self.domain
@@ -4,7 +4,11 @@ class TaiwaneseNewsParser::Parser::ChinaTimes < TaiwaneseNewsParser::Parser
4
4
  end
5
5
 
6
6
  def self.names
7
- %w{中國時報 中時電子報 工商時報 旺報 時報週刊 中天 中視 中廣}
7
+ %w{中國時報 中時電子報 工商時報 旺報 時報週刊 中天 中視 中廣 中時即時}
8
+ end
9
+
10
+ def self.applicable?(url)
11
+ url.include?('chinatimes.com') && !url.include?('money.chinatimes.com')
8
12
  end
9
13
 
10
14
  def doc
@@ -49,6 +53,10 @@ class TaiwaneseNewsParser::Parser::ChinaTimes < TaiwaneseNewsParser::Parser
49
53
  end
50
54
 
51
55
  def parse_company_name
56
+ if doc.at_css('.reporter>a').nil?
57
+ return '中時電子報'
58
+ end
59
+
52
60
  n = doc.at_css('.reporter>a').text
53
61
  if n == '時週精選'
54
62
  n = '時報週刊'
@@ -0,0 +1,72 @@
1
+ class TaiwaneseNewsParser::Parser::ChinaTimesMoney < TaiwaneseNewsParser::Parser
2
+ def self.domain
3
+ 'chinatimes.com'
4
+ end
5
+
6
+ def self.names
7
+ %w{中國時報 中時電子報 工商時報 旺報 時報週刊 中天 中視 中廣 中時即時}
8
+ end
9
+
10
+ def self.applicable?(url)
11
+ url.include?('money.chinatimes.com')
12
+ end
13
+
14
+ def doc
15
+ @raw = open(url).read
16
+ @doc = Nokogiri::HTML(@raw)
17
+ end
18
+
19
+ #url = 'http://money.chinatimes.com/news/news-content.aspx?id=20140405000233&cid=1206&fb_action_ids=682850115112321&fb_action_types=og.comments'
20
+ def parse
21
+ @article[:title] = doc.at_css('.articlebox h1.highlight').text
22
+
23
+ @article[:company_name] = parse_company_name
24
+
25
+ @article[:content] = doc.css('#zoom-area p').text
26
+
27
+ #@article[:web_published_at] = Time.parse(doc.at_css('#story_update').text)
28
+
29
+ @article[:reporter_name] = parse_reporter_name()
30
+
31
+ @article[:published_at] = Time.parse(@doc.css('.bar-align-left>ul.inline-list>li')[0].text)
32
+
33
+ clean_up
34
+
35
+ @article
36
+ end
37
+
38
+ def parse_reporter_name
39
+ text = doc.css('.bar-align-left>ul.inline-list>li.last').text
40
+ if match = text.match(%r{(.+?)[//╱/]})
41
+ reporter_name = match[1]
42
+ elsif match = text.match(%r{【(.+?)[//╱/]})
43
+ reporter_name = match[1]
44
+ else
45
+ reporter_name = text
46
+ end
47
+ reporter_name
48
+ end
49
+
50
+ def parse_company_name
51
+ n = doc.css('.bar-align-left>ul.inline-list>li')[1].text
52
+ if n == '時週精選'
53
+ n = '時報週刊'
54
+ elsif n == '新聞速報'
55
+ n = '中時電子報'
56
+ end
57
+ n
58
+ end
59
+
60
+ def clean_url
61
+ cleaner = TaiwaneseNewsParser::UrlCleaner.new('id')
62
+ @article[:url] = cleaner.clean(@article[:url])
63
+ end
64
+
65
+ def self.parse_url_id(url)
66
+ cleaner = TaiwaneseNewsParser::UrlCleaner.new('id')
67
+ cleaned_url = cleaner.clean(url)
68
+ url_id = cleaned_url[%r{id=(\d+)},1]
69
+ url_id
70
+ end
71
+ end
72
+
@@ -14,7 +14,7 @@ class TaiwaneseNewsParser::Parser::Cna < TaiwaneseNewsParser::Parser
14
14
 
15
15
  #url = 'http://www.cna.com.tw/News/aSaM/201304120296-1.aspx'
16
16
  def parse
17
- @article[:title] = doc.at_css('.news_content h1').text
17
+ @article[:title] = doc.at_css('.news_content h1, .news_content h2').text
18
18
 
19
19
  @article[:company_name] = '中央社'
20
20
 
@@ -8,7 +8,7 @@ class TaiwaneseNewsParser::Parser::LibertyTimes < TaiwaneseNewsParser::Parser
8
8
  end
9
9
 
10
10
  def self.applicable?(url)
11
- url.match(%r{libertytimes\.com\.tw/liveNews/news\.php})
11
+ url.include?('iservice.ltn.com.tw')
12
12
  end
13
13
 
14
14
  def doc
@@ -16,16 +16,15 @@ class TaiwaneseNewsParser::Parser::LibertyTimes < TaiwaneseNewsParser::Parser
16
16
  @doc = Nokogiri::HTML(@raw)
17
17
  end
18
18
 
19
- #url = 'http://www.libertytimes.com.tw/2013/new/apr/13/today-sp2.htm'
20
19
  def parse
21
20
  # new layout uses utf-8
22
- @article[:title] = doc.at_css('#newsti text()').text
21
+ @article[:title] = doc.at_css('.content h1 text()').text
23
22
  @article[:company_name] = parse_company_name
24
- @article[:content] = doc.css('#newsc.news_content').text
23
+ @article[:content] = doc.css('.content p').text
25
24
 
26
- time = doc.at_css('.conttime').text[%r{\d{4}/\d{1,2}/\d{1,2} \d{2}:\d{2}}]
25
+ time = doc.at_css('.content .date').text[%r{\d{4}-\d{1,2}-\d{1,2} \d{2}:\d{2}}]
27
26
  if time.nil?
28
- match = doc.at_css('.conttime').text.match(%r{(\d{2}):(\d{2})})
27
+ match = doc.at_css('.content .date').text.match(%r{(\d{2}):(\d{2})})
29
28
  now = Time.now
30
29
  today = Date.today
31
30
  @article[:published_at] = Time.new(today.year, today.month, today.day, match[1].to_i, match[2].to_i)
@@ -0,0 +1,66 @@
1
+ class TaiwaneseNewsParser::Parser::LibertyTimesNews < TaiwaneseNewsParser::Parser
2
+ def self.domain
3
+ 'ltn.com.tw'
4
+ end
5
+
6
+ def self.names
7
+ %{自由時報}
8
+ end
9
+
10
+ def self.applicable?(url)
11
+ url.include?('news.ltn.com.tw')
12
+ end
13
+
14
+ def doc
15
+ @raw = open(url).read
16
+ @doc = Nokogiri::HTML(@raw)
17
+ end
18
+
19
+ #url = 'http://news.ltn.com.tw/news/politics/breakingnews/998126'
20
+ def parse
21
+ # new layout uses utf-8
22
+ @article[:title] = doc.at_css('.content h1').text
23
+ @article[:company_name] = parse_company_name
24
+ @article[:content] = doc.css('#newstext p').text
25
+
26
+ time = doc.at_css('#newstext span').text[%r{\d{4}-\d{1,2}-\d{1,2}\W*\d{2}:\d{2}}]
27
+ if time.nil?
28
+ match = doc.at_css('#newstext span').text.match(%r{(\d{2}):(\d{2})})
29
+ now = Time.now
30
+ today = Date.today
31
+ @article[:published_at] = Time.new(today.year, today.month, today.day, match[1].to_i, match[2].to_i)
32
+ else
33
+ @article[:published_at] = Time.parse("#{time}:00")
34
+ end
35
+
36
+ @article[:reporter_name] = parse_reporter_name()
37
+
38
+ clean_up
39
+
40
+ @article
41
+ end
42
+
43
+ def parse_reporter_name
44
+ if match = @article[:content].match(%r{〔(.*?)[//╱](.*?)〕})
45
+ reporter_name = match[1][%r{記者(.+)},1]
46
+ elsif match = @article[:content].match(%r{記者(.+?)[//╱]})
47
+ reporter_name = match[1]
48
+ elsif match = @article[:content].match(%r{(文/(.*?))})
49
+ reporter_name = match[1]
50
+ end
51
+ reporter_name
52
+ end
53
+
54
+ def parse_company_name
55
+ '自由時報'
56
+ end
57
+
58
+ def clean_url
59
+ cleaner = TaiwaneseNewsParser::UrlCleaner.new()
60
+ @article[:url] = cleaner.clean(@article[:url])
61
+ end
62
+
63
+ def self.parse_url_id(url)
64
+ url[%r{\w+/\w+/\w+/(\d+)},1]
65
+ end
66
+ end
@@ -28,7 +28,10 @@ class TaiwaneseNewsParser::Parser::Udn < TaiwaneseNewsParser::Parser
28
28
  get_company_name_and_reporter_name.match(%r{^(.*?)[//╱]})[1]
29
29
  end
30
30
  def parse_reporter_name
31
- get_company_name_and_reporter_name[%r{[//╱]記者(.*)[//╱]},1]
31
+ source = get_company_name_and_reporter_name
32
+ name = source[%r{[//╱](?:本報)?記者(.*)[//╱]},1]
33
+ name ||= source[%r{本報記者(.*)[//╱]?},1]
34
+ name
32
35
  end
33
36
 
34
37
  def self.parse_url_id(url)
@@ -1,3 +1,3 @@
1
1
  module TaiwaneseNewsParser
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -0,0 +1,519 @@
1
+
2
+
3
+ <!DOCTYPE html>
4
+ <html xmlns="http://www.w3.org/1999/xhtml">
5
+ <head id="ctl00_Head1"><meta http-equiv="X-UA-Compatible" content="IE=9; IE=8; IE=7; IE=EDGE" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta name="robots" content="noodp,noydir" /><meta name="robots" content="index,follow,noarchive" /><title>
6
+ 美罕見用要負責任批反服貿|財經焦點|理財新聞|中時理財
7
+ </title><meta http-equiv="Pragma" content="no-cache" /><meta http-equiv="cache-control" content="no-cache" /><meta http-equiv="expires" content="0" /><meta http-equiv="content-language" content="zh-tw" /><meta http-equiv="content-style-type" content="text/css" /><meta name="title" property="og:title" itemprop="name" content="中時理財 - 中時電子報" /><meta name="Description" content="「中時理財」提供即時、豐富、深入淺出的投資理財訊息;「理財新聞」提供您中國時報、工商時報、旺報免費線上閱覽;「股市報價」與台灣證券交易所同步,讓您隨時掌握股市行情;「基金專區」即時更新上千檔基金績效和淨值;「證金看板」完整呈現上市櫃行情、匯市利率及原物料商品報價;「報稅專區」給您最全面的稅務訊息;「理財運勢」以易經八卦、星座生肖預測您的財運走勢;還有「討論區」讓網友暢所欲言。" /><meta name="copyright" content="Copyright © China Times Inc. Limited" /><meta name="medium" itemprop="genre" content="news" />
8
+ <!--[if lt IE 9]>
9
+ <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
10
+ <![endif]-->
11
+ <!--讓IE9之前的版本支援HTML5的新元素-->
12
+ <link rel="shortcut icon" href="http://www.chinatimes.com/images/cti-icon.ico" /><link rel="shortcut icon" type="image/x-icon" href="http://www.chinatimes.com/images/cti-icon.ico" /><link rel="icon" type="image/ico" href="http://www.chinatimes.com/images/cti-icon.gif" /><link rel="stylesheet" type="text/css" href="http://www.chinatimes.com/css-main/index.css" /><link href="http://www.chinatimes.com/2009Cti/cthead/css-main/index.css" rel="stylesheet" type="text/css" /><link href="http://www.chinatimes.com/2009Cti/cthead/css-main/hover-menu.css" rel="stylesheet" type="text/css" /><link href="http://www.chinatimes.com/2009Cti/cthead/css-main/reset.css" rel="stylesheet" type="text/css" /><link href="http://www.chinatimes.com/2009Cti/cthead/css-main/2013reset.css" rel="stylesheet" type="text/css" />
13
+ <script src="http://www.chinatimes.com/scripts/jquery-1.7.1.min.js"></script>
14
+ <script src="http://www.chinatimes.com/scripts/jquery-ui-1.9.2.custom.min.js"></script>
15
+ <link rel="stylesheet" href="http://www.chinatimes.com/css-main/jquery-ui-1.9.2.custom.min.css" />
16
+ <script type="text/javascript" src="http://www.chinatimes.com/scripts/common-scripts.js"></script>
17
+ <script type="text/javascript" src="http://www.chinatimes.com/Scripts/content-later-handle.js"></script>
18
+ <script type="text/javascript" src="http://www.chinatimes.com/Scripts/content-later-update.js"></script>
19
+ <script src="http://www.chinatimes.com/Scripts/jquery.lazyload.mini.js" type="text/javascript"></script>
20
+ <script src="http://admanager.cyberone.com.tw/scripts/spac.js" type="text/javascript"></script>
21
+ <script charset="big5" src="http://www.chinatimes.com/2009Cti/cthead/Scripts/news2008.js" type="text/JavaScript"></script>
22
+ <!-- 理財 analytics code 開始 -->
23
+ <script type="text/javascript" language="javascript" src="http://www.chinatimes.com/analytics/Money.js"></script>
24
+ <!-- 理財 analytics code 結束 -->
25
+ <script src="http://money.chinatimes.com/M_ad_content_head.js" type="text/JavaScript"></script>
26
+ <meta name="Description" content=" 美國國務院亞太助卿羅素(Daniel Russel)3日在國會聽證會上指出,美國期盼台灣的反服貿學生「負責任地運用自由,以文明與平和方式抗爭」。羅素同時以「歷史性里程碑」等字眼,讚揚馬英九總統改善兩岸關係等成就。"/>
27
+ <link href="/css-main/money-news.css" rel="stylesheet" type="text/css" />
28
+ <link rel="stylesheet" href="/scripts/fancybox/jquery.fancybox-1.2.6.css" type="text/css" media="screen" />
29
+ <link href="http://www.chinatimes.com/2009Cti/cthead/css-main/yahooad.css" rel="stylesheet" type="text/css"/>
30
+ <script type="text/javascript" src="/scripts/fancybox/jquery.fancybox-1.2.6.js"></script>
31
+ </head>
32
+
33
+ <body>
34
+ <!-- Begin comScore Tag -->
35
+ <fjtignoreurl>
36
+ <script>
37
+ var _comscore = _comscore || [];
38
+ _comscore.push({ c1: "2", c2: "9457284",
39
+ options: {
40
+ url_append: "comscorekw=finance"
41
+ }
42
+ });
43
+ (function() {
44
+ var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;
45
+ s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
46
+ el.parentNode.insertBefore(s, el);
47
+ })();
48
+ </script>
49
+ <noscript>
50
+ <img src="http://b.scorecardresearch.com/p?c1=2&c2=9457284&cv=2.0&cj=1" />
51
+ </noscript>
52
+ </fjtignoreurl>
53
+ <!-- End comScore Tag -->
54
+ <!-- Start Alexa Certify Javascript -->
55
+ <script type="text/javascript">
56
+ _atrk_opts = { atrk_acct:"JvLre1aYs600Mr", domain:"chinatimes.com",dynamic: true};
57
+ (function() { var as = document.createElement('script'); as.type = 'text/javascript'; as.async = true; as.src = "https://d31qbv1cthcecs.cloudfront.net/atrk.js"; var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(as, s); })();
58
+ </script>
59
+ <noscript><img src="https://d5nxst8fruw4z.cloudfront.net/atrk.gif?account=JvLre1aYs600Mr" style="display:none" height="1" width="1" alt="" /></noscript>
60
+ <!-- End Alexa Certify Javascript -->
61
+ <!-- Google Tag Manager -->
62
+ <noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-63D2"
63
+ height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
64
+ <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
65
+ new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
66
+ j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
67
+ '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
68
+ })(window,document,'script','dataLayer','GTM-63D2');</script>
69
+ <!-- End Google Tag Manager -->
70
+ <a name="page-top"></a>
71
+ <!-- Head Start-->
72
+ <div class="wrapper-new">
73
+ <script type="text/javascript">var sDomain="http://money.chinatimes.com";</script>
74
+ <script type="text/javascript" src="http://www.chinatimes.com/scripts/header.js"></script>
75
+ <nav id="main_nav"></nav>
76
+ <script type="text/javascript" src="http://www.chinatimes.com/Scripts/nav.js"></script>
77
+ <!-- ADBanner -->
78
+
79
+ <div class="ad_72890_box stack">
80
+ <div id="banner728x90">
81
+ <div class="ad">
82
+ <div class="banner-728x90">
83
+ <script src="http://money.chinatimes.com/M_ad_content_banner.js" type="text/JavaScript"></script>
84
+ </div>
85
+ </div>
86
+ </div>
87
+ </div>
88
+
89
+
90
+
91
+ <!-- ADBanner End-->
92
+ </div>
93
+ <!-- Head End-->
94
+ <!-- Head Start-->
95
+ <div id="jq-wrapper" class='wrapper cnt-place-holder'></div>
96
+ <script type="text/javascript">
97
+ var sChannel = 'money';
98
+ var FocusCategory = 'T01';
99
+ </script>
100
+ <script type="text/javascript" charset="utf-8" src="http://www.chinatimes.com/2009Cti/cthead/header-utf8.js"></script>
101
+ <!-- Head End-->
102
+
103
+
104
+
105
+ <!-- 第三層選單 -->
106
+ <div class="wrapper topnav3-place-holder">
107
+ <div class="topnav3">
108
+ <div class="bdr-left">
109
+ </div>
110
+ <div class="bdr-right">
111
+ </div>
112
+ <div class="bgn">
113
+ <ul class="menu clear-fix">
114
+ <ul class="menu clear-fix">
115
+ <li id="L1203" class="base"><a href="/news/news-overview-table.aspx?MainCatID=1203">股市焦點<span class="pointer"></span></a></li>
116
+ <li id="L1204" class="base"><a href="/news/news-overview-table.aspx?MainCatID=1204">個股動態<span class="pointer"></span></a></li>
117
+ <li id="L1205" class="base"><a href="/news/news-overview-table.aspx?MainCatID=1205">國際股市<span class="pointer"></span></a></li>
118
+ <li id="L1206" class="base"><a href="/news/news-overview-table.aspx?MainCatID=1206">財經焦點<span class="pointer"></span></a></li>
119
+ <li id="L1207" class="base"><a href="/news/news-overview-table.aspx?MainCatID=1207">國際財經<span class="pointer"></span></a></li>
120
+ <li id="L1208" class="base"><a href="/news/news-overview-table.aspx?MainCatID=1208">大陸經貿<span class="pointer"></span></a></li>
121
+ <li id="L1209" class="base"><a href="/news/news-overview-table.aspx?MainCatID=1209">金融市場<span class="pointer"></span></a></li>
122
+ <li id="L1210" class="base"><a href="/news/news-overview-table.aspx?MainCatID=1210">產業情報<span class="pointer"></span></a> </li>
123
+ <li id="L1211" class="base"><a href="/news/news-overview-table.aspx?MainCatID=1211">科技脈動<span class="pointer"></span></a></li>
124
+ <li id="L1212" class="base"><a href="/news/news-overview-table.aspx?MainCatID=1212">投資理財<span class="pointer"></span></a></li>
125
+ <li id="L1213" class="base last"> <a href="/news/research-overview-table.aspx">研究報告<span class="pointer"></span></a> </li>
126
+ </ul>
127
+ </ul>
128
+ </div>
129
+ </div>
130
+ </div>
131
+ <!-- 第三層選單結束 -->
132
+
133
+ <!-- 插入 OneAd 影音廣告 -->
134
+ <script src="http://www.chinatimes.com/ads/onead.js" charset="UTF-8" type="text/javascript"></script>
135
+
136
+ <form name="aspnetForm" method="post" action="news-content.aspx?id=20140405000233&amp;cid=1206&amp;fb_action_ids=682850115112321&amp;fb_action_types=og.comments" id="aspnetForm">
137
+ <div>
138
+ <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKLTI1MTE1MDI2NGRkhbd2+5Dk1TUKZQ/hUXgIlzBIYM0=" />
139
+ </div>
140
+
141
+ <!-- Center -->
142
+ <div class="wrapper">
143
+ <div class="main-bgn clear-fix">
144
+ <!-- Center left -->
145
+ <div class="clmn-left">
146
+ <!--請將內容放至於此 -->
147
+
148
+ <div class="content">
149
+ <div class="container bgn clear-fix">
150
+
151
+ <div class="realtime-news">
152
+ <dl class="inline-list clear-fix">
153
+ <dd class="rightitem ui more">
154
+ <a href="/news/news-overview-table.aspx" class="more">總覽</a>
155
+ </dd>
156
+ <dd class="rightitem ui more">
157
+ <a href="/news/news-rank-table.aspx" class="more">排行</a>
158
+ </dd>
159
+ <dt class="ui">即時新聞:</dt>
160
+ <dd style="background: none repeat scroll 0% 0% transparent;">
161
+ <iframe src="/news-maeqee-provider.aspx" allowtransparency="true" frameborder="0" scrolling="no"></iframe>
162
+ </dd>
163
+ </dl>
164
+ </div>
165
+
166
+ <h2>
167
+ <b>財經焦點</b></h2>
168
+
169
+
170
+ <script type="text/javaScript">
171
+ function MakeFwdContent() {
172
+ //reride http://news.chinatimes.com/2008Cti/index/Utl/2008-js/0,4883,,00.js 內的 MakeFwdContent()
173
+ document.getElementById('CtiFwd').style.top = parseInt(parent.document.body.scrollTop) + 100;
174
+ document.getElementById("CtiFwd").style.display = "block";
175
+ document.getElementById("CtiFwd").style.zIndex = 100;
176
+ }
177
+ function MakeFwdContentClose() {
178
+ //reride http://news.chinatimes.com/2008Cti/index/Utl/2008-js/0,4883,,00.js 內的 MakeFwdContentClose()
179
+ if (document.getElementById("CtiFwd")) {
180
+ //document.getElementById("ctiforwarddiframe").src = "/Email.html";
181
+ document.getElementById("CtiFwd").style.display = "none";
182
+ }
183
+ }
184
+
185
+ </script>
186
+
187
+ <div class="article-function-bar">
188
+ <ul class="inline-list bar-align-right dash-down">
189
+ <li class="ui"><span id="commentcount"></span></li>
190
+ <li class="ui"><a href="#" onclick="copyToClipboard();alert('只要將滑鼠點擊「引用新聞」,您就可以用滑鼠右鍵「貼上」的方式,將這一則新聞的標題、第一段前言以及新聞連結網址,貼到您準備引用這一則新聞的網頁上;基於中時電子報經營付費新聞資料庫的業務,中時電子報所有新聞的連結網址最多只能提供一個月內的有效連結,一個月後該連結將會失效。');"
191
+ class="trackback">引用</a></li>
192
+ <li class="ui"><a href="javascript:MakeFwdContent()" class="forward">轉寄</a></li>
193
+ <li class="ui"><a href='/news/print.aspx?artid=20140405000233' class="print">列印</a></li>
194
+ <li class="zoom-font ui"><span class="font">字體:</span><a id="font-small" href="javascript:doZoom(13)">小</a>.<a
195
+ id="font-medium" class="current" href="javascript:doZoom(15)">中</a>.<a id="font-large"
196
+ href="javascript:doZoom(18)">大</a></li>
197
+ <li class="ui">
198
+ <script>
199
+ document.write('<span class="google-plusone"><g:plusone size="tall" href="' + encodeURIComponent(String(window.location)) + '"></g:plusone></span>');
200
+ </script>
201
+ </li>
202
+ <li class="ui last">
203
+ <script>
204
+ document.write('<iframe src="http://www.facebook.com/plugins/like.php?href=' + encodeURIComponent(String(window.location)) + '&amp;layout=box_count&amp;show_faces=false&amp;width=55&amp;action=like&amp;colorscheme=light&amp;height=60" scrolling="no" frameborder="0" style="border: none; overflow: hidden; width: 55px; height: 60px; position: relative; top: 5px;" allowTransparency="true"></iframe>');
205
+ </script>
206
+ </li>
207
+ </ul>
208
+ </div>
209
+ <!-- 轉寄UI -->
210
+
211
+ <script type="text/javascript">
212
+ if (typeof (define_content_1) == "undefined" | !define_content_1)
213
+ var define_content_1 = '美罕見用要負責任批反服貿'; //Title
214
+ var define_firstP = ' 美國國務院亞太助卿羅素(Daniel Russel)3日在國會聽證會上指出,美國期盼台灣的反服貿學生「…'; //Content
215
+ </script>
216
+
217
+ <div id="CtiFwd" style="display: none; z-index: 999; left: 200px; position: absolute;
218
+ top: 100px">
219
+ <table cellspacing="0" cellpadding="0" width="494" border="0">
220
+ <tbody>
221
+ <tr valign="top" align="left">
222
+ <td height="260">
223
+ <table cellspacing="0" cellpadding="0" width="500" background="http://news.chinatimes.com/2007Cti/2007Cti-Common/Inc/img/ddbg2.gif"
224
+ border="0">
225
+ <tbody>
226
+ <tr>
227
+ <td valign="top" align="left" width="69">
228
+ <img height="301" src="http://news.chinatimes.com/2007Cti/2007Cti-Common/Inc/img/aa101.gif"
229
+ width="69">
230
+ </td>
231
+ <td valign="top" align="left">
232
+ <table cellspacing="0" cellpadding="0" width="100%" border="0">
233
+ <tbody>
234
+ <tr valign="top" align="left">
235
+ <td>
236
+ <img height="34" src="http://news.chinatimes.com/2007Cti/2007Cti-Common/Inc/img/bb101.gif"
237
+ alt="" width="431" />
238
+ </td>
239
+ </tr>
240
+ <tr valign="top" align="left">
241
+ <td>
242
+ <iframe id="ctiforwarddiframe" src="/Email.html" width="100%" height="270" marginwidth="0"
243
+ marginheight="0" align="top" scrolling="no" frameborder="0" allowtransparency>
244
+ </iframe>
245
+ </td>
246
+ </tr>
247
+ </tbody>
248
+ </table>
249
+ </td>
250
+ </tr>
251
+ </tbody>
252
+ </table>
253
+ </td>
254
+ </tr>
255
+ <tr>
256
+ <td height="10">
257
+ <img height="45" src="http://news.chinatimes.com/2007Cti/2007Cti-Common/Inc/img/down101.gif"
258
+ alt="" width="500" />
259
+ </td>
260
+ </tr>
261
+ <tr bgcolor="#000000">
262
+ <td height="24">
263
+ <div align="right">
264
+ <p>
265
+ <a onmouseover="MM_swapImage('Image5','','http://news.chinatimes.com/2007Cti/2007Cti-Common/Inc/img/close102.gif',1)"
266
+ onmouseout="MM_swapImgRestore()" href="javascript:MakeFwdContentClose();">
267
+ <img height="20" src="http://news.chinatimes.com/2007Cti/2007Cti-Common/Inc/img/close101.gif"
268
+ alt="" width="69" border="0" name="Image5" /></a></p>
269
+ </div>
270
+ </td>
271
+ </tr>
272
+ </tbody>
273
+ </table>
274
+ </div>
275
+
276
+
277
+ <script type="text/javascript">
278
+ var UNI_ID = 'MR20140405000233'; //MR + 文章編號"
279
+ var Channel = "CHINATIMES"; //目前為固定字串
280
+ var define_content_1 = '美罕見用要負責任批反服貿'; //主旨
281
+ var define_content_2 = location.href; //包括http://的完整連結
282
+ var define_content_3 = '財經焦點_Money'; //雜誌名稱 + 雜誌編號 + 分類名稱
283
+ var define_content_4 = '1206'; //MagazineRN + 分類ID
284
+ var define_content_5 = '2014/04/05'; //建立日期(yyyy/MM/dd)
285
+ var define_content_6 = '7';
286
+ </script>
287
+ <iframe name="POSTFILE" src="/clickboardBig5.htm" width="0" height="0" style="position: absolute; top: 0px; left: -9999px;">
288
+ <!--針對IE的使用者 該檔案必需在同一個主機位置 如附件-->
289
+ <layer src="/clickboardbig5.htm" clips="0,0,0,0">
290
+ <!--針對netscape6.0以下的使用者-->
291
+ </layer>
292
+ </iframe>
293
+
294
+ <div class="articlebox">
295
+ <h1 class="highlight">
296
+ <!--title begin-->
297
+ 美罕見用要負責任批反服貿
298
+ <!--title end-->
299
+ </h1>
300
+ <div class="bar-align-left">
301
+ <ul class="inline-list">
302
+ <li class="ui" style="">2014-04-05 01:28</li>
303
+ <li class="ui"><!--source begin-->中國時報<!--source end--></li>
304
+ <li class="ui last">
305
+ <!--authorname begin-->劉屏/華盛頓4日電<!--authorname end-->
306
+ </li>
307
+ </ul>
308
+ </div>
309
+ <table class="photobox photo-left" style='display:'>
310
+ <tbody>
311
+
312
+ <tr>
313
+ <td>
314
+ <a class="zoom" rel="NewsPhoto" href='http://camera.chinatimes.com/newsphoto/2014-04-03/450/BXQA00_P_01_02.JPG'>
315
+ <img alt=' 新血接棒 ←2日晚間,剛加入立法院議場內靜坐行列的學生,在學運幹部的介紹下認識環境與相關規則。(陳信翰攝)'
316
+ src='http://camera.chinatimes.com/newsphoto/2014-04-03/250/BXQA00_P_01_02.JPG'
317
+ Width="250px" class="photo"/></a>
318
+ <p class="photo-essay">
319
+  新血接棒 ←2日晚間,剛加入立法院議場內靜坐行列的學生,在學運幹部的介紹下認識環境與相關規則。(陳信翰攝)</p>
320
+ </td>
321
+ </tr>
322
+
323
+ </tbody>
324
+ </table>
325
+ <div id="zoom-area"><!--content begin--><p> 美國國務院亞太助卿羅素(Daniel Russel)3日在國會聽證會上指出,美國期盼台灣的反服貿學生「負責任地運用自由,以文明與平和方式抗爭」。羅素同時以「歷史性里程碑」等字眼,讚揚馬英九總統改善兩岸關係等成就。</p>
326
+ <p> 10年來,這是美國第3度使用「負責任」一詞向台灣喊話。民主政治原本就是責任政治,美國卻公開要民主的台灣「負責任」,的確少見。</p>
327
+ <p> 反服貿背後有綠影</p>
328
+ <p> 這3次要求台灣「負責任」,前兩次的對象是執政當局,這回的對象是反服貿協議的學生和抗爭群眾。值得玩味的是,前兩次的執政當局都是民進黨,這回反服貿的背後似乎也有民進黨的影子。</p>
329
+ <p> 羅素此一談話是答詢時所說。他不時低頭看稿,顯然有所準備。這番話全文是:「台灣是個充滿活力的民主體系,對各種政治觀點有很高的容忍度。很明顯地,美國非常希望學生和抗爭群眾負責任地運用那種自由,行為要文明、平和,當然要避免暴力」。</p>
330
+ <p> 要平和更要負責任</p>
331
+ <p> 學生因為反服貿而霸占立法院後,美國官方評論曾使用「希望對話能夠平和與文明(peacefully and civilly)進行」等字句,3日又加上了「負責任」等語。</p>
332
+ <p> 回顧美國前2次對台灣使用「負責任」一詞,一次是2007年9月,當時陳水扁政府「入聯公投」推得如火如荼。美國國務院亞太副助卿柯慶生(Thomas Christensen)親自撰文,用了極其嚴厲的字眼。這位借調自普林斯頓大學的學者寫道:「負責任的台灣領導人,必須預期到中國可能的紅線及反應,避免不必要、沒有意義的挑釁」。柯慶生當時並說,期盼台灣人民識破政治人物的花言巧語。</p>
333
+ <p> 另一次是2004年4月,正好是10年前,當時華府紀念《台灣關係法》25周年,陳水扁則準備第二任期的就職演說。當時陳總統對美國媒體說「即使冒著戰爭風險,也要獨立」。這話令美國很擔心,於是由國務院東亞助卿凱利(James Kelly)出面警告,說片面台獨可能引發軍事衝突,如果台灣領導人把北京當局的說法不當回事,「那是不負責任的」。</p>
334
+ <p> 府:不可能操作美國</p>
335
+ <p> 楊舒媚/台北報導</p>
336
+ <p> 太陽花學潮引發國際關注,究竟美國對此學潮態度為何?表態者是否具備美官方代表性?據了解,府方對美國相關人士發言,多視為「個人意見」;但卻相當重視美國務院亞太助卿羅素的談話。</p>
337
+ <p> 據指出,府方也確實透過管道理解,美方已有「某黨與運動的關係太深了」的資訊。府方不可能操作美國,但也相信,先進國家對民主必須遵守體制常軌的標準是一樣的。</p><!--content end-->
338
+ <div class="video-container" style='display:none'>
339
+ <iframe width="420" height="315" src="" frameborder="0" allowfullscreen></iframe>
340
+ </div>
341
+ <p style='display:none'> <a href="http://video.chinatimes.com/" target="_blank" class="more"></a></p>
342
+ </div>
343
+ <div class="articlebox">
344
+
345
+ </div>
346
+
347
+ <span name="iclickAdBody_End" id="iclickAdBody_End"></span>
348
+ </div>
349
+ <br/>
350
+
351
+ <div id="CTIweb20"></div>
352
+ <script language="JavaScript" type="text/javascript">MakeCTIweb20();</script>
353
+
354
+
355
+ <div class="money-search">
356
+ 理財新聞搜尋:
357
+ <input type="text" size="14" value="新聞關鍵字" style="font-size:12px; height:12px;" id="txtKeyword" />
358
+ <input type="button" value="查詢" class="form-btn" onclick="onSearch();" style="height:18px;" />
359
+ <a href="advanced-search.aspx">進階查詢</a> <span class="ui last">熱門:</span><span><a href="/news/search-results-table.aspx?k=%e5%ae%8f%e9%81%94%e9%9b%bb" class="hot-keyword">宏達電</a><a href="/news/search-results-table.aspx?k=iPhone5" class="hot-keyword">iPhone5</a><a href="/news/search-results-table.aspx?k=%e5%ae%8f%e7%a2%81" class="hot-keyword">宏碁</a><a href="/news/search-results-table.aspx?k=%e5%ae%b8%e9%b4%bb" class="hot-keyword">宸鴻</a></span>
360
+ <script type="text/javascript">
361
+ var $search = $("#txtKeyword");
362
+ $search.focus(function() {
363
+ $search.val("");
364
+ });
365
+ function onSearch() {
366
+ var key = $search.val();
367
+ if (key.length == 0 || key.replace(/\s+/ig,"").length == 0) {
368
+ alert("請輸入關鍵字");
369
+ return;
370
+ }
371
+ var search_url = "/news/search-results-table.aspx?k=" + encodeURIComponent(key);
372
+ window.location.href = search_url;
373
+ }
374
+ </script>
375
+ </div>
376
+
377
+
378
+ <!--YSM BEGIN -->
379
+ <div id="ysmcm" align="left"></div>
380
+ <script type="text/javascript">
381
+ var param_partner = "cti_tw_finance_content_cm";
382
+ var param_ctxtID = "cti_tw_finance_001";
383
+ var ysm_maxCount = 4;
384
+ document.write("<script src='http://www.chinatimes.com/2009Cti/cthead/Scripts-utf8/yahoo.js' charset='utf-8'></sc" + "ript>");
385
+ </script>
386
+ <!-- YSM End -->
387
+
388
+ <ul style="margin: 1em 0px; padding: 0px 20px 0px 0px;" class="vertical-list">
389
+ <h2><b>相關新聞</b></h2><br />
390
+
391
+ <li><a href='news-content.aspx?id=20140331000778&cid=12'>反服貿、反反服貿 港街頭互嗆</a><span class="walls">03-31 01:55</span></li>
392
+
393
+ <li><a href='news-content.aspx?id=20140401003019&cid=12'>柯一正:張安樂有案在身沒資格進議場</a><span class="walls">04-01 12:19</span></li>
394
+
395
+ <li><a href='news-content.aspx?id=20140330002245&cid=12'>反反服貿上街 黑白人馬隔街表訴求</a><span class="walls">03-30 16:07</span></li>
396
+
397
+ <li><a href='news-content.aspx?id=20140401003976&cid=12'>反反服貿VS反服貿 學生派代表與白狼對話</a><span class="walls">04-01 15:44</span></li>
398
+
399
+ <li><a href='news-content.aspx?id=20140404000695&cid=12'>沒破壞沒偷吃 推給白色恐怖</a><span class="walls">04-04 01:26</span></li>
400
+
401
+ <li><a href='news-content.aspx?id=20140401005295&cid=12'>白狼率眾力挺服貿 與學生對談30秒無交集</a><span class="walls">04-01 21:01</span></li>
402
+
403
+ <li><a href='news-content.aspx?id=20140404000702&cid=12'>綠委阻審服貿 協商6度破局</a><span class="walls">04-04 01:26</span></li>
404
+
405
+ <li><a href='news-content.aspx?id=20140405000242&cid=12'>吳育昇痛批學生像紅衛兵</a><span class="walls">04-05 01:28</span></li>
406
+
407
+ <li><a href='news-content.aspx?id=20140404000699&cid=12'>代議制失靈 朝野惡鬥死結更深</a><span class="walls">04-04 01:26</span></li>
408
+
409
+ <li><a href='news-content.aspx?id=20140405000246&cid=12'>反服貿師長促藍委簽承諾書</a><span class="walls">04-05 01:28</span></li>
410
+
411
+ </ul>
412
+ <!--div id="relatedDoc"></div>
413
+ <script type="text/javascript">
414
+ var id = 'zoom-area';
415
+ var url = "http://122.147.50.139/wise/relatedTopic.jsp?id=" + id;
416
+ var NewE = //document.createElement("SCRIPT");
417
+ NewE.type = "text/javascript";
418
+ NewE.src=url;
419
+ //document.getElementsByTagName("head")[0].appendChild(NewE);
420
+ </script-->
421
+
422
+ <!-- fb comments -->
423
+ <script src="http://www.chinatimes.com/FB/comments.js" charset="big5"></script>
424
+
425
+ <ul class="vertical-list" style="margin: 1em 0px 1em 0px; padding: 0px 20px 0px 0px;">
426
+ <h2>
427
+ <b>財經焦點最新五則新聞</b></h2>
428
+ <br/>
429
+
430
+ <li><a href='/news/news-content.aspx?id=20140430003247&cid=1206'>
431
+ 《經濟》主計處:攤販數量增幅,創歷史新低</a><span class="walls">04-30 13:47</span></li>
432
+
433
+ <li><a href='/news/news-content.aspx?id=20140430002676&cid=1206'>
434
+ 《經濟》104:8成民眾認為CSR是企業基本責任,近半仍不滿意</a><span class="walls">04-30 11:37</span></li>
435
+
436
+ <li><a href='/news/news-content.aspx?id=20140430002675&cid=1206'>
437
+ 《政治》胡志強:共赴黨難,責無旁貸</a><span class="walls">04-30 11:37</span></li>
438
+
439
+ <li><a href='/news/news-content.aspx?id=20140430002673&cid=1206'>
440
+ 《政治》接班副主席,郝:共同承擔責任</a><span class="walls">04-30 11:37</span></li>
441
+
442
+ <li><a href='/news/news-content.aspx?id=20140430002635&cid=1206'>
443
+ 《經濟》Q1專利申請,鴻海連霸</a><span class="walls">04-30 11:27</span></li>
444
+
445
+ </ul>
446
+ <br/>
447
+ </div>
448
+ </div>
449
+ <script type="text/javascript">
450
+ $(document).keypress(function(event) { return !(event.keyCode == 13); });
451
+ $(document).ready(function() {
452
+ $("a.zoom").fancybox({
453
+ 'titlePosition': "inside",
454
+ 'showCloseButton' : true,
455
+ 'callbackOnStart': function() {
456
+ if ($(window).scrollTop() < $("#commentcount").offset().top)
457
+ $(window).scrollTop($("#commentcount").offset().top);
458
+ }
459
+ });
460
+ // $("div.bookmark dl dd iframe").clone().prependTo("div.article-function-bar ul li.last");
461
+ });
462
+ </script>
463
+
464
+ <!--請將內容放至於此 end -->
465
+ </div>
466
+ <!-- Center left End -->
467
+ <!-- Center Right -->
468
+ <div class="clmn-right">
469
+ <div class="ad">
470
+ <center>
471
+ <!-- 理財內頁廣告code開始 -->
472
+ <script src="http://money.chinatimes.com/M_ad_content_right.js" type="text/JavaScript"></script>
473
+ <!-- 理財內頁廣告code結束 -->
474
+ </center>
475
+ </div>
476
+
477
+ <script src="http://www.chinatimes.com/FB/likebox - money.js" charset="big5"></script>
478
+
479
+ </div>
480
+ <!-- Center Right End-->
481
+ </div>
482
+ </div>
483
+ <!-- Center End-->
484
+ <!-- CTmenu script-->
485
+ <script type="text/javascript">var bNeedCtiMenu = false;</script>
486
+ <script type="text/javascript">var bNeedCtiMenuMkt = false;</script>
487
+ <script type="text/javascript">var sDomain = "http://news.chinatimes.com";</script>
488
+ <!--<script charset="big5" src="http://news.chinatimes.com/2008Cti/index/Utl/2008-CTmenu/0,4919,,00.shtml"></script>-->
489
+ <!-- CTmenu script End-->
490
+ <!--something area start-->
491
+ <div class="stack">
492
+ <div class="gototop"> <a href="#top" class="clear-fix"><span class="icon_16x16"></span>Top</a></div>
493
+ </div>
494
+ <!--something area end-->
495
+ <!-- Foot start-->
496
+ <div class="wrapper-new">
497
+ <script type="text/javascript" src="http://www.chinatimes.com/scripts/footer.js"></script>
498
+ </div>
499
+ <!-- Foot End-->
500
+ <script src="http://www.chinatimes.com/Scripts/portamento.js" type="text/javascript"></script>
501
+ <script>
502
+ $(function () {
503
+ $('#main_nav').portamento({ wrapper: $('body') });
504
+ });
505
+ </script>
506
+ <script src="http://www.chinatimes.com/Scripts/front-end-specialized.js" type="text/javascript"></script>
507
+
508
+
509
+
510
+
511
+
512
+
513
+ <script type="text/javascript">
514
+ //<![CDATA[
515
+ $('#L1206 > a').attr('class','on')//]]>
516
+ </script>
517
+ </form>
518
+ </body>
519
+ </html>