onebox 1.5.5 → 1.5.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/lib/onebox/engine.rb +11 -10
- data/lib/onebox/engine/github_blob_onebox.rb +30 -25
- data/lib/onebox/engine/github_gist_onebox.rb +56 -7
- data/lib/onebox/engine/google_play_app_onebox.rb +11 -2
- data/lib/onebox/engine/standard_embed.rb +2 -35
- data/lib/onebox/engine/youku_onebox.rb +49 -0
- data/lib/onebox/file_type_finder.rb +69 -0
- data/lib/onebox/helpers.rb +30 -0
- data/lib/onebox/version.rb +1 -1
- data/spec/fixtures/githubblob.response +1 -5
- data/spec/fixtures/githubgist.response +310 -0
- data/spec/fixtures/youku-meta.response +1 -0
- data/spec/fixtures/youku.response +1443 -0
- data/spec/lib/onebox/engine/github_gist_onebox_spec.rb +67 -23
- data/spec/lib/onebox/engine/youku_onebox_spec.rb +13 -0
- data/spec/lib/onebox_spec.rb +1 -1
- data/templates/githubgist.mustache +12 -0
- data/templates/googleplayapp.mustache +2 -1
- metadata +13 -2
@@ -0,0 +1,69 @@
|
|
1
|
+
module Onebox
|
2
|
+
module FileTypeFinder
|
3
|
+
|
4
|
+
# In general, most of file extension names would be recognized
|
5
|
+
# by Highlights.js. However, some need to be checked in other
|
6
|
+
# ways, either because they just aren't included, because they
|
7
|
+
# are extensionless, or because they contain dots (they are
|
8
|
+
# multi-part).
|
9
|
+
# IMPORTANT: to prevent false positive matching, start all
|
10
|
+
# entries on this list with a "."
|
11
|
+
#
|
12
|
+
# For easy reference, keep these sorted in alphabetical order.
|
13
|
+
@long_file_types = {
|
14
|
+
".bib" => "tex",
|
15
|
+
".html.hbs" => "handlebars",
|
16
|
+
".html.handlebars" => "handlebars",
|
17
|
+
".latex" => "tex",
|
18
|
+
".ru" => "rb",
|
19
|
+
".simplecov" => "rb", # Not official, but seems commonly found
|
20
|
+
".sty" => "tex"
|
21
|
+
}
|
22
|
+
|
23
|
+
# Some extensionless files for which we know the type
|
24
|
+
# These should all be stored LOWERCASE, just for consistency.
|
25
|
+
# The ones that I know of also include the ".lock" fake extension.
|
26
|
+
#
|
27
|
+
# For easy reference, keep these sorted in alphabetical order,
|
28
|
+
# FIRST by their types and THEN by their names.
|
29
|
+
@extensionless_files = {
|
30
|
+
"cmake.in" => "cmake",
|
31
|
+
|
32
|
+
"gruntfile" => "js",
|
33
|
+
"gulpfile" => "js",
|
34
|
+
|
35
|
+
"artisan" => "php",
|
36
|
+
|
37
|
+
"berksfile" => "rb",
|
38
|
+
"capfile" => "rb",
|
39
|
+
"cheffile" => "rb",
|
40
|
+
"cheffile.lock" => "rb",
|
41
|
+
"gemfile" => "rb",
|
42
|
+
"guardfile" => "rb",
|
43
|
+
"rakefile" => "rb",
|
44
|
+
"thorfile" => "rb",
|
45
|
+
"vagrantfile" => "rb",
|
46
|
+
|
47
|
+
"boxfile" => "yaml" # Not currently (2014-11) in Highlight.js
|
48
|
+
}
|
49
|
+
|
50
|
+
def self.from_file_name(file_name)
|
51
|
+
lower_name = file_name.downcase
|
52
|
+
# First check against the known lists of "special" files and extensions.
|
53
|
+
return @extensionless_files[lower_name] if @extensionless_files.has_key?(lower_name)
|
54
|
+
|
55
|
+
@long_file_types.each { |extension,type|
|
56
|
+
return type if lower_name.end_with?(extension)
|
57
|
+
}
|
58
|
+
|
59
|
+
# Otherwise, just split on the last ".",
|
60
|
+
# but add one so we don't return the "." itself.
|
61
|
+
dot_spot = lower_name.rindex(".")
|
62
|
+
return lower_name[(dot_spot+1)..-1] if dot_spot
|
63
|
+
|
64
|
+
# If we couldn't figure it out from the name,
|
65
|
+
# let the highlighter figure it out from the content.
|
66
|
+
return ""
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
data/lib/onebox/helpers.rb
CHANGED
@@ -21,6 +21,36 @@ module Onebox
|
|
21
21
|
html.gsub(/<[^>]+>/, ' ').gsub(/\n/, '')
|
22
22
|
end
|
23
23
|
|
24
|
+
def self.fetch_response(location, limit = 5, domain = nil,headers=nil)
|
25
|
+
raise Net::HTTPError.new('HTTP redirect too deep', location) if limit == 0
|
26
|
+
|
27
|
+
uri = URI(location)
|
28
|
+
if !uri.host
|
29
|
+
uri = URI("#{domain}#{location}")
|
30
|
+
end
|
31
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
32
|
+
http.open_timeout = Onebox.options.connect_timeout
|
33
|
+
http.read_timeout = Onebox.options.timeout
|
34
|
+
if uri.is_a?(URI::HTTPS)
|
35
|
+
http.use_ssl = true
|
36
|
+
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
|
37
|
+
end
|
38
|
+
|
39
|
+
response = http.request_get(uri.request_uri,headers)
|
40
|
+
|
41
|
+
cookie = response.get_fields('set-cookie')
|
42
|
+
if (cookie)
|
43
|
+
header = {'cookie' => cookie.join("")}
|
44
|
+
end
|
45
|
+
header = nil unless header.is_a? Hash
|
46
|
+
|
47
|
+
case response
|
48
|
+
when Net::HTTPSuccess then response
|
49
|
+
when Net::HTTPRedirection then fetch_response(response['location'], limit - 1, "#{uri.scheme}://#{uri.host}",header)
|
50
|
+
else
|
51
|
+
response.error!
|
52
|
+
end
|
53
|
+
end
|
24
54
|
end
|
25
55
|
end
|
26
56
|
|
data/lib/onebox/version.rb
CHANGED
@@ -30,11 +30,7 @@ module Oneboxer
|
|
30
30
|
end
|
31
31
|
|
32
32
|
extension = @file.split(".")[-1]
|
33
|
-
@lang =
|
34
|
-
when "rb" then "ruby"
|
35
|
-
when "js" then "javascript"
|
36
|
-
else extension
|
37
|
-
end
|
33
|
+
@lang = extension
|
38
34
|
|
39
35
|
truncated = false
|
40
36
|
if data.length > SiteSetting.onebox_max_chars
|
@@ -0,0 +1,310 @@
|
|
1
|
+
{
|
2
|
+
"url": "https://api.github.com/gists/208fdd59fc4b4c39283b",
|
3
|
+
"forks_url": "https://api.github.com/gists/208fdd59fc4b4c39283b/forks",
|
4
|
+
"commits_url": "https://api.github.com/gists/208fdd59fc4b4c39283b/commits",
|
5
|
+
"id": "208fdd59fc4b4c39283b",
|
6
|
+
"git_pull_url": "https://gist.github.com/208fdd59fc4b4c39283b.git",
|
7
|
+
"git_push_url": "https://gist.github.com/208fdd59fc4b4c39283b.git",
|
8
|
+
"html_url": "https://gist.github.com/208fdd59fc4b4c39283b",
|
9
|
+
"files": {
|
10
|
+
"0.rb": {
|
11
|
+
"filename": "0.rb",
|
12
|
+
"type": "application/x-ruby",
|
13
|
+
"language": "Ruby",
|
14
|
+
"raw_url": "https://gist.githubusercontent.com/karreiro/208fdd59fc4b4c39283b/raw/42864e791652564ec50f773589df168998fbfdf7/0.rb",
|
15
|
+
"size": 384,
|
16
|
+
"truncated": false,
|
17
|
+
"content": "3.times { puts \"Gist API test.\" }\n\n3.times { puts \"Gist API test.\" }\n\n3.times { puts \"Gist API test.\" }\n\n3.times { puts \"Gist API test.\" }\n\n3.times { puts \"Gist API test.\" }\n\n3.times { puts \"Gist API test.\" }\n\n3.times { puts \"Gist API test.\" }\n\n3.times { puts \"Gist API test.\" }\n\n3.times { puts \"Gist API test.\" }\n\n3.times { puts \"Gist API test.\" }\n\n3.times { puts \"Gist API test.\" }\n"
|
18
|
+
},
|
19
|
+
"1.js": {
|
20
|
+
"filename": "1.js",
|
21
|
+
"type": "application/javascript",
|
22
|
+
"language": "JavaScript",
|
23
|
+
"raw_url": "https://gist.githubusercontent.com/karreiro/208fdd59fc4b4c39283b/raw/767c3a1cec198cc2a9e6bf8a8043977cfcf3a469/1.js",
|
24
|
+
"size": 22,
|
25
|
+
"truncated": false,
|
26
|
+
"content": "console.log(\"Hey! ;)\")"
|
27
|
+
},
|
28
|
+
"2.md": {
|
29
|
+
"filename": "2.md",
|
30
|
+
"type": "text/plain",
|
31
|
+
"language": "Markdown",
|
32
|
+
"raw_url": "https://gist.githubusercontent.com/karreiro/208fdd59fc4b4c39283b/raw/5da5715735f9d4d908003b4656426d53bfd69a96/2.md",
|
33
|
+
"size": 25,
|
34
|
+
"truncated": false,
|
35
|
+
"content": "#### Hey, this is a test!"
|
36
|
+
},
|
37
|
+
"3.java": {
|
38
|
+
"filename": "3.java",
|
39
|
+
"type": "text/plain",
|
40
|
+
"language": "Java",
|
41
|
+
"raw_url": "https://gist.githubusercontent.com/karreiro/208fdd59fc4b4c39283b/raw/1a5f6d12fc557951f87b52f91c9cb8d6bdb2562d/3.java",
|
42
|
+
"size": 43,
|
43
|
+
"truncated": false,
|
44
|
+
"content": "System.out.println(\"Wow! This is a test!\");"
|
45
|
+
}
|
46
|
+
},
|
47
|
+
"public": true,
|
48
|
+
"created_at": "2014-11-23T20:34:53Z",
|
49
|
+
"updated_at": "2014-11-26T01:06:05Z",
|
50
|
+
"description": "",
|
51
|
+
"comments": 0,
|
52
|
+
"user": null,
|
53
|
+
"comments_url": "https://api.github.com/gists/208fdd59fc4b4c39283b/comments",
|
54
|
+
"owner": {
|
55
|
+
"login": "karreiro",
|
56
|
+
"id": 1079279,
|
57
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/1079279?v=3",
|
58
|
+
"gravatar_id": "",
|
59
|
+
"url": "https://api.github.com/users/karreiro",
|
60
|
+
"html_url": "https://github.com/karreiro",
|
61
|
+
"followers_url": "https://api.github.com/users/karreiro/followers",
|
62
|
+
"following_url": "https://api.github.com/users/karreiro/following{/other_user}",
|
63
|
+
"gists_url": "https://api.github.com/users/karreiro/gists{/gist_id}",
|
64
|
+
"starred_url": "https://api.github.com/users/karreiro/starred{/owner}{/repo}",
|
65
|
+
"subscriptions_url": "https://api.github.com/users/karreiro/subscriptions",
|
66
|
+
"organizations_url": "https://api.github.com/users/karreiro/orgs",
|
67
|
+
"repos_url": "https://api.github.com/users/karreiro/repos",
|
68
|
+
"events_url": "https://api.github.com/users/karreiro/events{/privacy}",
|
69
|
+
"received_events_url": "https://api.github.com/users/karreiro/received_events",
|
70
|
+
"type": "User",
|
71
|
+
"site_admin": false
|
72
|
+
},
|
73
|
+
"forks": [
|
74
|
+
|
75
|
+
],
|
76
|
+
"history": [
|
77
|
+
{
|
78
|
+
"user": {
|
79
|
+
"login": "karreiro",
|
80
|
+
"id": 1079279,
|
81
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/1079279?v=3",
|
82
|
+
"gravatar_id": "",
|
83
|
+
"url": "https://api.github.com/users/karreiro",
|
84
|
+
"html_url": "https://github.com/karreiro",
|
85
|
+
"followers_url": "https://api.github.com/users/karreiro/followers",
|
86
|
+
"following_url": "https://api.github.com/users/karreiro/following{/other_user}",
|
87
|
+
"gists_url": "https://api.github.com/users/karreiro/gists{/gist_id}",
|
88
|
+
"starred_url": "https://api.github.com/users/karreiro/starred{/owner}{/repo}",
|
89
|
+
"subscriptions_url": "https://api.github.com/users/karreiro/subscriptions",
|
90
|
+
"organizations_url": "https://api.github.com/users/karreiro/orgs",
|
91
|
+
"repos_url": "https://api.github.com/users/karreiro/repos",
|
92
|
+
"events_url": "https://api.github.com/users/karreiro/events{/privacy}",
|
93
|
+
"received_events_url": "https://api.github.com/users/karreiro/received_events",
|
94
|
+
"type": "User",
|
95
|
+
"site_admin": false
|
96
|
+
},
|
97
|
+
"version": "e272e4f835e80f53fb61df2dca190fdc84b9077d",
|
98
|
+
"committed_at": "2014-11-26T01:06:05Z",
|
99
|
+
"change_status": {
|
100
|
+
"total": 4,
|
101
|
+
"additions": 2,
|
102
|
+
"deletions": 2
|
103
|
+
},
|
104
|
+
"url": "https://api.github.com/gists/208fdd59fc4b4c39283b/e272e4f835e80f53fb61df2dca190fdc84b9077d"
|
105
|
+
},
|
106
|
+
{
|
107
|
+
"user": {
|
108
|
+
"login": "karreiro",
|
109
|
+
"id": 1079279,
|
110
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/1079279?v=3",
|
111
|
+
"gravatar_id": "",
|
112
|
+
"url": "https://api.github.com/users/karreiro",
|
113
|
+
"html_url": "https://github.com/karreiro",
|
114
|
+
"followers_url": "https://api.github.com/users/karreiro/followers",
|
115
|
+
"following_url": "https://api.github.com/users/karreiro/following{/other_user}",
|
116
|
+
"gists_url": "https://api.github.com/users/karreiro/gists{/gist_id}",
|
117
|
+
"starred_url": "https://api.github.com/users/karreiro/starred{/owner}{/repo}",
|
118
|
+
"subscriptions_url": "https://api.github.com/users/karreiro/subscriptions",
|
119
|
+
"organizations_url": "https://api.github.com/users/karreiro/orgs",
|
120
|
+
"repos_url": "https://api.github.com/users/karreiro/repos",
|
121
|
+
"events_url": "https://api.github.com/users/karreiro/events{/privacy}",
|
122
|
+
"received_events_url": "https://api.github.com/users/karreiro/received_events",
|
123
|
+
"type": "User",
|
124
|
+
"site_admin": false
|
125
|
+
},
|
126
|
+
"version": "3e26db8aae98340fce9d0eed3e0105c78dc440e9",
|
127
|
+
"committed_at": "2014-11-26T01:05:48Z",
|
128
|
+
"change_status": {
|
129
|
+
"total": 48,
|
130
|
+
"additions": 24,
|
131
|
+
"deletions": 24
|
132
|
+
},
|
133
|
+
"url": "https://api.github.com/gists/208fdd59fc4b4c39283b/3e26db8aae98340fce9d0eed3e0105c78dc440e9"
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"user": {
|
137
|
+
"login": "karreiro",
|
138
|
+
"id": 1079279,
|
139
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/1079279?v=3",
|
140
|
+
"gravatar_id": "",
|
141
|
+
"url": "https://api.github.com/users/karreiro",
|
142
|
+
"html_url": "https://github.com/karreiro",
|
143
|
+
"followers_url": "https://api.github.com/users/karreiro/followers",
|
144
|
+
"following_url": "https://api.github.com/users/karreiro/following{/other_user}",
|
145
|
+
"gists_url": "https://api.github.com/users/karreiro/gists{/gist_id}",
|
146
|
+
"starred_url": "https://api.github.com/users/karreiro/starred{/owner}{/repo}",
|
147
|
+
"subscriptions_url": "https://api.github.com/users/karreiro/subscriptions",
|
148
|
+
"organizations_url": "https://api.github.com/users/karreiro/orgs",
|
149
|
+
"repos_url": "https://api.github.com/users/karreiro/repos",
|
150
|
+
"events_url": "https://api.github.com/users/karreiro/events{/privacy}",
|
151
|
+
"received_events_url": "https://api.github.com/users/karreiro/received_events",
|
152
|
+
"type": "User",
|
153
|
+
"site_admin": false
|
154
|
+
},
|
155
|
+
"version": "4ad435c22f01aca33b6b9425505b257b8e79fe51",
|
156
|
+
"committed_at": "2014-11-26T01:05:16Z",
|
157
|
+
"change_status": {
|
158
|
+
"total": 22,
|
159
|
+
"additions": 21,
|
160
|
+
"deletions": 1
|
161
|
+
},
|
162
|
+
"url": "https://api.github.com/gists/208fdd59fc4b4c39283b/4ad435c22f01aca33b6b9425505b257b8e79fe51"
|
163
|
+
},
|
164
|
+
{
|
165
|
+
"user": {
|
166
|
+
"login": "karreiro",
|
167
|
+
"id": 1079279,
|
168
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/1079279?v=3",
|
169
|
+
"gravatar_id": "",
|
170
|
+
"url": "https://api.github.com/users/karreiro",
|
171
|
+
"html_url": "https://github.com/karreiro",
|
172
|
+
"followers_url": "https://api.github.com/users/karreiro/followers",
|
173
|
+
"following_url": "https://api.github.com/users/karreiro/following{/other_user}",
|
174
|
+
"gists_url": "https://api.github.com/users/karreiro/gists{/gist_id}",
|
175
|
+
"starred_url": "https://api.github.com/users/karreiro/starred{/owner}{/repo}",
|
176
|
+
"subscriptions_url": "https://api.github.com/users/karreiro/subscriptions",
|
177
|
+
"organizations_url": "https://api.github.com/users/karreiro/orgs",
|
178
|
+
"repos_url": "https://api.github.com/users/karreiro/repos",
|
179
|
+
"events_url": "https://api.github.com/users/karreiro/events{/privacy}",
|
180
|
+
"received_events_url": "https://api.github.com/users/karreiro/received_events",
|
181
|
+
"type": "User",
|
182
|
+
"site_admin": false
|
183
|
+
},
|
184
|
+
"version": "766d913a9bbe70181944a7a74818db5a1531d7e2",
|
185
|
+
"committed_at": "2014-11-26T00:56:12Z",
|
186
|
+
"change_status": {
|
187
|
+
"total": 2,
|
188
|
+
"additions": 2,
|
189
|
+
"deletions": 0
|
190
|
+
},
|
191
|
+
"url": "https://api.github.com/gists/208fdd59fc4b4c39283b/766d913a9bbe70181944a7a74818db5a1531d7e2"
|
192
|
+
},
|
193
|
+
{
|
194
|
+
"user": {
|
195
|
+
"login": "karreiro",
|
196
|
+
"id": 1079279,
|
197
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/1079279?v=3",
|
198
|
+
"gravatar_id": "",
|
199
|
+
"url": "https://api.github.com/users/karreiro",
|
200
|
+
"html_url": "https://github.com/karreiro",
|
201
|
+
"followers_url": "https://api.github.com/users/karreiro/followers",
|
202
|
+
"following_url": "https://api.github.com/users/karreiro/following{/other_user}",
|
203
|
+
"gists_url": "https://api.github.com/users/karreiro/gists{/gist_id}",
|
204
|
+
"starred_url": "https://api.github.com/users/karreiro/starred{/owner}{/repo}",
|
205
|
+
"subscriptions_url": "https://api.github.com/users/karreiro/subscriptions",
|
206
|
+
"organizations_url": "https://api.github.com/users/karreiro/orgs",
|
207
|
+
"repos_url": "https://api.github.com/users/karreiro/repos",
|
208
|
+
"events_url": "https://api.github.com/users/karreiro/events{/privacy}",
|
209
|
+
"received_events_url": "https://api.github.com/users/karreiro/received_events",
|
210
|
+
"type": "User",
|
211
|
+
"site_admin": false
|
212
|
+
},
|
213
|
+
"version": "0b66a247bcbcdaeaee33b43a3b8accd499f82c8d",
|
214
|
+
"committed_at": "2014-11-24T23:48:58Z",
|
215
|
+
"change_status": {
|
216
|
+
"total": 1,
|
217
|
+
"additions": 1,
|
218
|
+
"deletions": 0
|
219
|
+
},
|
220
|
+
"url": "https://api.github.com/gists/208fdd59fc4b4c39283b/0b66a247bcbcdaeaee33b43a3b8accd499f82c8d"
|
221
|
+
},
|
222
|
+
{
|
223
|
+
"user": {
|
224
|
+
"login": "karreiro",
|
225
|
+
"id": 1079279,
|
226
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/1079279?v=3",
|
227
|
+
"gravatar_id": "",
|
228
|
+
"url": "https://api.github.com/users/karreiro",
|
229
|
+
"html_url": "https://github.com/karreiro",
|
230
|
+
"followers_url": "https://api.github.com/users/karreiro/followers",
|
231
|
+
"following_url": "https://api.github.com/users/karreiro/following{/other_user}",
|
232
|
+
"gists_url": "https://api.github.com/users/karreiro/gists{/gist_id}",
|
233
|
+
"starred_url": "https://api.github.com/users/karreiro/starred{/owner}{/repo}",
|
234
|
+
"subscriptions_url": "https://api.github.com/users/karreiro/subscriptions",
|
235
|
+
"organizations_url": "https://api.github.com/users/karreiro/orgs",
|
236
|
+
"repos_url": "https://api.github.com/users/karreiro/repos",
|
237
|
+
"events_url": "https://api.github.com/users/karreiro/events{/privacy}",
|
238
|
+
"received_events_url": "https://api.github.com/users/karreiro/received_events",
|
239
|
+
"type": "User",
|
240
|
+
"site_admin": false
|
241
|
+
},
|
242
|
+
"version": "310b5888a5ee830a38972f0fbace28055ab05759",
|
243
|
+
"committed_at": "2014-11-24T23:47:40Z",
|
244
|
+
"change_status": {
|
245
|
+
"total": 99,
|
246
|
+
"additions": 0,
|
247
|
+
"deletions": 99
|
248
|
+
},
|
249
|
+
"url": "https://api.github.com/gists/208fdd59fc4b4c39283b/310b5888a5ee830a38972f0fbace28055ab05759"
|
250
|
+
},
|
251
|
+
{
|
252
|
+
"user": {
|
253
|
+
"login": "karreiro",
|
254
|
+
"id": 1079279,
|
255
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/1079279?v=3",
|
256
|
+
"gravatar_id": "",
|
257
|
+
"url": "https://api.github.com/users/karreiro",
|
258
|
+
"html_url": "https://github.com/karreiro",
|
259
|
+
"followers_url": "https://api.github.com/users/karreiro/followers",
|
260
|
+
"following_url": "https://api.github.com/users/karreiro/following{/other_user}",
|
261
|
+
"gists_url": "https://api.github.com/users/karreiro/gists{/gist_id}",
|
262
|
+
"starred_url": "https://api.github.com/users/karreiro/starred{/owner}{/repo}",
|
263
|
+
"subscriptions_url": "https://api.github.com/users/karreiro/subscriptions",
|
264
|
+
"organizations_url": "https://api.github.com/users/karreiro/orgs",
|
265
|
+
"repos_url": "https://api.github.com/users/karreiro/repos",
|
266
|
+
"events_url": "https://api.github.com/users/karreiro/events{/privacy}",
|
267
|
+
"received_events_url": "https://api.github.com/users/karreiro/received_events",
|
268
|
+
"type": "User",
|
269
|
+
"site_admin": false
|
270
|
+
},
|
271
|
+
"version": "dc19c6c9c36079f56363062eea81e448fe1f996e",
|
272
|
+
"committed_at": "2014-11-24T01:06:00Z",
|
273
|
+
"change_status": {
|
274
|
+
"total": 99,
|
275
|
+
"additions": 99,
|
276
|
+
"deletions": 0
|
277
|
+
},
|
278
|
+
"url": "https://api.github.com/gists/208fdd59fc4b4c39283b/dc19c6c9c36079f56363062eea81e448fe1f996e"
|
279
|
+
},
|
280
|
+
{
|
281
|
+
"user": {
|
282
|
+
"login": "karreiro",
|
283
|
+
"id": 1079279,
|
284
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/1079279?v=3",
|
285
|
+
"gravatar_id": "",
|
286
|
+
"url": "https://api.github.com/users/karreiro",
|
287
|
+
"html_url": "https://github.com/karreiro",
|
288
|
+
"followers_url": "https://api.github.com/users/karreiro/followers",
|
289
|
+
"following_url": "https://api.github.com/users/karreiro/following{/other_user}",
|
290
|
+
"gists_url": "https://api.github.com/users/karreiro/gists{/gist_id}",
|
291
|
+
"starred_url": "https://api.github.com/users/karreiro/starred{/owner}{/repo}",
|
292
|
+
"subscriptions_url": "https://api.github.com/users/karreiro/subscriptions",
|
293
|
+
"organizations_url": "https://api.github.com/users/karreiro/orgs",
|
294
|
+
"repos_url": "https://api.github.com/users/karreiro/repos",
|
295
|
+
"events_url": "https://api.github.com/users/karreiro/events{/privacy}",
|
296
|
+
"received_events_url": "https://api.github.com/users/karreiro/received_events",
|
297
|
+
"type": "User",
|
298
|
+
"site_admin": false
|
299
|
+
},
|
300
|
+
"version": "9ec949557a17391117a30aebcd907a14d61eae88",
|
301
|
+
"committed_at": "2014-11-23T20:34:53Z",
|
302
|
+
"change_status": {
|
303
|
+
"total": 1,
|
304
|
+
"additions": 1,
|
305
|
+
"deletions": 0
|
306
|
+
},
|
307
|
+
"url": "https://api.github.com/gists/208fdd59fc4b4c39283b/9ec949557a17391117a30aebcd907a14d61eae88"
|
308
|
+
}
|
309
|
+
]
|
310
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"data":[{"ct":"f","cs":"2139","logo":"http:\/\/g2.ykimg.com\/1100641F46528C827D38F313B54FF057305EFD-1D91-46C5-821D-DC010415AC44","seed":6981,"tags":["\u674e\u5b97\u76db","\u5317\u4eac\u6f14\u5531\u4f1a","\u9ad8\u6e05"],"categories":"95","videoid":"159325444","vidEncoded":"XNjM3MzAxNzc2","username":"\u7f2a\u65af\u5de6\u53f3\u624b","userid":"330649584","title":"20131116\u674e\u5b97\u76db\u65e2\u7136\u9752\u6625\u7559\u4e0d\u4f4f\u5317\u4eac\u6f14\u5531\u4f1a_\u5c71\u4e18\u9ad8\u6e05","up":0,"down":0,"ts":"eCPhhDOr8KU0kcSeAbfYFkk","tsup":"eCPlljCr8KU0kcSeAqXcFkk","preview":{"thumbs":["05210001528C82AA6A074A508F0ED369"],"sectiontime":"6000","host":"http:\/\/g2.ykimg.com\/"},"key1":"b344b3f4","key2":"f502ea489c71b119","tt":"0","videoSource":"1","seconds":"426.46","streamfileids":{"flv":"38*15*38*38*38*40*38*40*38*38*53*40*30*57*7*0*2*43*53*0*25*57*43*15*48*53*2*63*63*38*38*43*38*40*25*57*32*49*60*32*32*2*58*60*30*48*58*32*60*63*63*0*58*60*38*32*15*63*40*58*63*57*43*2*40*57*","mp4":"38*15*38*38*38*30*38*40*38*38*53*40*30*57*7*25*48*43*53*0*25*57*43*15*48*53*2*63*63*38*38*43*38*40*25*57*32*49*60*32*32*2*58*60*30*48*58*32*60*63*63*0*58*60*38*32*15*63*40*58*63*57*43*2*40*57*","hd2":"38*15*38*38*38*43*38*15*38*38*53*40*30*57*30*40*7*49*53*0*25*57*43*15*48*53*2*63*63*38*38*43*38*40*25*57*32*49*60*32*32*2*58*60*30*48*58*32*60*63*63*0*58*60*38*32*15*63*40*58*63*57*43*2*40*57*"},"segs":{"flv":[{"no":"0","size":"6184613","seconds":205,"k":"37c1eef9d45943ef261e1651","k2":"143edcb51afd4d171"},{"no":"1","size":"9216438","seconds":222,"k":"220a2502b066ad2d24120d63","k2":"1139d718a87e8cc40"}],"mp4":[{"no":"0","size":"13698266","seconds":228,"k":"76da9c943b762c3724120d63","k2":"16661d1c25fdaee0c"},{"no":"1","size":"15953117","seconds":199,"k":"28efdc07f014982624120d63","k2":"13b9062ccfa57562d"}],"hd2":[{"no":"0","size":"27687337","seconds":205,"k":"29f6914d58f7f3a7282a1f3e","k2":"1bd4a6f687452e7fe"},{"no":"1","size":"16198622","seconds":119,"k":"524dd8fbfb7de533261e1651","k2":"163153a4deeaa0408"},{"no":"2","size":"21240220","seconds":102,"k":"e3cafd8cbe886d8e261e1651","k2":"1c4344748c6bdac6c"}]},"streamsizes":{"flv":"15401051","mp4":"29651383","hd2":"65126179"},"stream_ids":{"flv":"34575279","mp4":"34575265","hd2":"34575346"},"streamlogos":{"flv":1,"mp4":1,"hd2":1},"streamtypes":["flv","mp4","hd2"],"streamtypes_o":["hd2","flvhd","mp4"]}],"user":{"id":0},"controller":{"search_count":true,"mp4_restrict":1,"stream_mode":1,"video_capture":true,"hd3_enabled":false,"area_code":617,"dma_code":506,"continuous":0,"playmode":"normal","circle":false,"tsflag":false,"other_disable":false,"xplayer_disable":false,"app_disable":false,"share_disabled":false,"download_disabled":false,"pc_disabled":false,"pad_disabled":false,"mobile_disabled":false,"tv_disabled":false,"comment_disabled":false}}
|
@@ -0,0 +1,1443 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
5
|
+
<title>20131116李宗盛既然青春留不住北京演唱会_山丘高清—在线播放—优酷网,视频高清在线观看</title>
|
6
|
+
<meta name="title" content="20131116李宗盛既然青春留不住北京演唱会_山丘高清—在线播放—优酷网,视频高清在线观看">
|
7
|
+
<meta name="keywords" content="20131116李宗盛既然青春留不住北京演唱会_山丘高清 - 李宗盛 北京演唱会 高清 ">
|
8
|
+
<meta name="description" content="20131116李宗盛既然青春留不住北京演唱会_山丘高清 既然青春留不住,&ldquo;爱的代价&rdquo;&ldquo;哭&rdquo;&ldquo;领悟&rdquo;;
|
9
|
+
越过&ldquo;山丘&rdquo;&ldquo;笑红尘&rdquo;,&ldquo;希望&rdquo;&ldquo;你走你的路&rdquo;。
|
10
|
+
|
11
|
+
李宗盛&ldquo;既然青春留不住&rdquo; 北京演唱会(歌单)
|
12
|
+
part1人生的梦醒时分
|
13
|
+
1.《爱情有什么道理》(张艾嘉)
|
14
|
+
2.《忙与盲》(张艾嘉)
|
15
|
+
3.《阿宗的三件事》(李宗..." />
|
16
|
+
<link href="http://static.youku.com/v1.0.1013/index/css/youku.css" type="text/css" rel="stylesheet" />
|
17
|
+
<link href="http://static.youku.com/v1.0.1013/v/css/playV5.css" type="text/css" rel="stylesheet" />
|
18
|
+
<script type="text/javascript" src="http://static.youku.com/v1.0.1013/js/prototype.js"></script>
|
19
|
+
<script type="text/javascript" src="http://static.youku.com/v1.0.1013/index/js/common.js"></script>
|
20
|
+
<script type="text/javascript" src="http://static.youku.com/v1.0.1013/index/js/qcard.js"></script>
|
21
|
+
<script type="text/javascript" src="http://static.youku.com/v1.0.1013/v/js/v5/v.js"></script>
|
22
|
+
<script type="text/javascript">if (!window.Nova) Nova={};
|
23
|
+
Nova.QVideo = {
|
24
|
+
_name : 'QVideo',
|
25
|
+
isNeedVerify : function(param, callback, id) { return nova_call('/QVideo/~ajax/isNeedVerify', param, callback, id); },
|
26
|
+
getVideoPlayInfo : function(param, callback, id) { return nova_call('/QVideo/~ajax/getVideoPlayInfo', param, callback, id); },
|
27
|
+
getVideoInfo : function(param, callback, id) { return nova_call('/QVideo/~ajax/getVideoInfo', param, callback, id); },
|
28
|
+
getLastVideoInfo : function(param, callback, id) { return nova_call('/QVideo/~ajax/getLastVideoInfo', param, callback, id); },
|
29
|
+
usertags : function(param, callback, id) { return nova_call('/QVideo/~ajax/usertags', param, callback, id); },
|
30
|
+
videoStatus : function(param, callback, id) { return nova_call('/QVideo/~ajax/videoStatus', param, callback, id); },
|
31
|
+
logon : function(param, callback, id) { return nova_call('/QVideo/~ajax/logon', param, callback, id); },
|
32
|
+
comment : function(param, callback, id) { return nova_call('/QVideo/~ajax/comment', param, callback, id); },
|
33
|
+
addFav : function(param, callback, id) { return nova_call('/QVideo/~ajax/addFav', param, callback, id); },
|
34
|
+
deleteComment : function(param, callback, id) { return nova_call('/QVideo/~ajax/deleteComment', param, callback, id); },
|
35
|
+
updown : function(param, callback, id) { return nova_call('/QVideo/~ajax/updown', param, callback, id); },
|
36
|
+
getPlayListAll : function(param, callback, id) { return nova_call('/QVideo/~ajax/getPlayListAll', param, callback, id); },
|
37
|
+
setPlayListAll : function(param, callback, id) { return nova_call('/QVideo/~ajax/setPlayListAll', param, callback, id); },
|
38
|
+
setPlayListRandom : function(param, callback, id) { return nova_call('/QVideo/~ajax/setPlayListRandom', param, callback, id); },
|
39
|
+
delPlayListById : function(param, callback, id) { return nova_call('/QVideo/~ajax/delPlayListById', param, callback, id); },
|
40
|
+
cleanPlayList : function(param, callback, id) { return nova_call('/QVideo/~ajax/cleanPlayList', param, callback, id); },
|
41
|
+
getPlayLog : function(param, callback, id) { return nova_call('/QVideo/~ajax/getPlayLog', param, callback, id); },
|
42
|
+
setPlayLog : function(param, callback, id) { return nova_call('/QVideo/~ajax/setPlayLog', param, callback, id); },
|
43
|
+
getUserDevices : function(param, callback, id) { return nova_call('/QVideo/~ajax/getUserDevices', param, callback, id); },
|
44
|
+
sendVideoToAPP : function(param, callback, id) { return nova_call('/QVideo/~ajax/sendVideoToAPP', param, callback, id); },
|
45
|
+
feePayment : function(param, callback, id) { return nova_call('/QVideo/~ajax/feePayment', param, callback, id); },
|
46
|
+
videolabels : function(param, callback, id) { return nova_call('/QVideo/~ajax/videolabels', param, callback, id); },
|
47
|
+
lotteryDraw : function(param, callback, id) { return nova_call('/QVideo/~ajax/lotteryDraw', param, callback, id); },
|
48
|
+
lotteryUserInfo : function(param, callback, id) { return nova_call('/QVideo/~ajax/lotteryUserInfo', param, callback, id); },
|
49
|
+
checkPhone : function(param, callback, id) { return nova_call('/QVideo/~ajax/checkPhone', param, callback, id); },
|
50
|
+
isFeeMonthlyUser : function(param, callback, id) { return nova_call('/QVideo/~ajax/isFeeMonthlyUser', param, callback, id); },
|
51
|
+
isFeeVip : function(param, callback, id) { return nova_call('/QVideo/~ajax/isFeeVip', param, callback, id); },
|
52
|
+
getQrcodeToBuyMem : function(param, callback, id) { return nova_call('/QVideo/~ajax/getQrcodeToBuyMem', param, callback, id); }
|
53
|
+
};</script>
|
54
|
+
<script type="text/javascript">
|
55
|
+
var youku_video_page = 1; var removePlayerSideControl = 1;
|
56
|
+
var player_thx = 1;
|
57
|
+
var singerid = '0';
|
58
|
+
var videoId = '159325444';
|
59
|
+
var videoId2= 'XNjM3MzAxNzc2';
|
60
|
+
var version="/v1.0.1013";
|
61
|
+
var imgServer = 'http://static.youku.com';
|
62
|
+
var UC_FOLLOW_HOST = "i.youku.com";
|
63
|
+
var video_owner = '330649584';
|
64
|
+
var tags="%E6%9D%8E%E5%AE%97%E7%9B%9B|%E5%8C%97%E4%BA%AC%E6%BC%94%E5%94%B1%E4%BC%9A|%E9%AB%98%E6%B8%85|";
|
65
|
+
var showid="0";
|
66
|
+
var showid_en="";
|
67
|
+
var showtype="";
|
68
|
+
var cp="0";
|
69
|
+
var stage="";
|
70
|
+
var playmode="1";
|
71
|
+
var videoSeconds = Math.round(426.46);
|
72
|
+
|
73
|
+
var loadinglogo1 = "http://res.mfs.ykimg.com/05100000517743C66714C04A4F023605";
|
74
|
+
var loadinglogo2 = "http://res.mfs.ykimg.com/051000005177439C6714C049520DA8F8";
|
75
|
+
|
76
|
+
var space_domain ='u.youku.com';
|
77
|
+
var nc_domain ='nc.youku.com';
|
78
|
+
var uc_domain ='i.youku.com';
|
79
|
+
var youku_homeurl='www.youku.com';
|
80
|
+
var v_domain = 'v.youku.com';
|
81
|
+
var vpaymempoll = '1';
|
82
|
+
var vpaymemloginpoll = '1';
|
83
|
+
var vpaymovpoll = '1';
|
84
|
+
|
85
|
+
var adsParams = "&ct=f&cs=2139&td=0&v=159325444&u=330649584&k="+tags+""+"&sid="+window.logPvid+"&tt=20131116李宗盛既然青春留不住北京演唱会_山丘高清&pu="+window.location.href+"&ref="+document.referrer;
|
86
|
+
|
87
|
+
var DuboLoginLimitTime = "0";
|
88
|
+
var SubscribeLoginLimitTime = "0";
|
89
|
+
</script>
|
90
|
+
<script type="text/javascript">
|
91
|
+
var ab_ad_time=10*60*1000;
|
92
|
+
var ab_ad1=function(){
|
93
|
+
if($('ab_pip_pre'))Element.hide("ab_pip_pre");
|
94
|
+
if($("ab_000000")) Element.hide("ab_000000");
|
95
|
+
if(window.ab_ad1_timer) clearTimeout(window.ab_ad1_timer);
|
96
|
+
window.ab_ad1_timer = setTimeout('ab_ad1()',ab_ad_time);
|
97
|
+
}
|
98
|
+
|
99
|
+
var ab_v_ad1=function(){
|
100
|
+
Nova.addScript("http://v2html.atm.youku.com/vhtml?p=000000" + adsParams + "&t="+(new Date).getTime() + "&vl=" + videoSeconds);
|
101
|
+
if($('ab_pip_pre'))Element.hide("ab_pip_pre");
|
102
|
+
if($("ab_v_000000")) Element.hide("ab_v_000000");
|
103
|
+
if(window.ab_v_ad1_timer) clearTimeout(window.ab_v_ad1_timer);
|
104
|
+
window.ab_v_ad1_timer = setTimeout('ab_v_ad1()',ab_ad_time);
|
105
|
+
}
|
106
|
+
var show_pip=function(){
|
107
|
+
Element.show("ab_pip_pre"); Element.hide("ab_000000"); Element.hide("ab_v_000000");
|
108
|
+
}
|
109
|
+
</script>
|
110
|
+
</head>
|
111
|
+
|
112
|
+
<body class="page_ugc">
|
113
|
+
<script>
|
114
|
+
|
115
|
+
(function(){
|
116
|
+
var ua = window.navigator.userAgent;
|
117
|
+
var href = window.location.href;
|
118
|
+
var config = ['iPad','Android','iPhone','iPod','Firefox|Mobile'];
|
119
|
+
try{
|
120
|
+
var fromx = Nova.Cookie.get("_from_x_");
|
121
|
+
Nova.Cookie.set("xreferrer", document.referrer);
|
122
|
+
}catch(ex){
|
123
|
+
var fromx = 0;
|
124
|
+
}
|
125
|
+
for(var i=0; i<config.length;i++){
|
126
|
+
if(fromx == '1') break;
|
127
|
+
//用'|'分割多个需要查询的关键词
|
128
|
+
if(config[i].indexOf('|') !== -1){
|
129
|
+
var mStr = {};
|
130
|
+
mStr = config[i].split('|');
|
131
|
+
var mr = false;
|
132
|
+
for(var s=0,len=mStr.length; s<len; s++){
|
133
|
+
if(ua.indexOf(mStr[s]) !== -1){
|
134
|
+
mr = true;
|
135
|
+
}else{
|
136
|
+
mr = false;
|
137
|
+
break;
|
138
|
+
}
|
139
|
+
}
|
140
|
+
if(mr == true){
|
141
|
+
if(href.indexOf('?') !== -1){
|
142
|
+
href += '&x';
|
143
|
+
}else{
|
144
|
+
href += '?x';
|
145
|
+
}
|
146
|
+
//阿里TV浏览器返回功能导致在跳回去x页面
|
147
|
+
if(ua.indexOf("Yunos/Tvhelper") !== -1 && fromx.indexOf(window.videoId2)!==-1 && document.referrer != ""){
|
148
|
+
Nova.Cookie.set("_from_x_", "");
|
149
|
+
window.location.href = document.referrer;
|
150
|
+
break;
|
151
|
+
}
|
152
|
+
window.location.href = href;
|
153
|
+
break;
|
154
|
+
}
|
155
|
+
}else{
|
156
|
+
if(ua.indexOf(config[i]) !== -1){
|
157
|
+
if(href.indexOf("#") !== -1){
|
158
|
+
var wechat_redirect = href.split('#');
|
159
|
+
if(wechat_redirect.length > 1 && wechat_redirect[1].indexOf('wechat_redirect') !== -1){
|
160
|
+
Log.log(1, "tp=1&cp=4009242&cpp=1000752");
|
161
|
+
}
|
162
|
+
href = wechat_redirect[0];
|
163
|
+
}
|
164
|
+
if(href.indexOf('?') !== -1){
|
165
|
+
href += '&x';
|
166
|
+
}else{
|
167
|
+
href += '?x';
|
168
|
+
}
|
169
|
+
window.location.href = href;
|
170
|
+
break;
|
171
|
+
}
|
172
|
+
}
|
173
|
+
}
|
174
|
+
})();
|
175
|
+
|
176
|
+
</script>
|
177
|
+
|
178
|
+
<script>PageAuto.init();</script>
|
179
|
+
<div id="topBanner" style="display:none"></div>
|
180
|
+
<script type="text/javascript">
|
181
|
+
|
182
|
+
(function(){
|
183
|
+
var topRecommend = function(){
|
184
|
+
var userAgent = window.navigator.userAgent;
|
185
|
+
if(userAgent.match(/Android/i) || userAgent.indexOf('iPod') !== -1 || userAgent.indexOf('iPad') !== -1 || userAgent.indexOf('iPhone') !== -1){
|
186
|
+
var cookie = Nova.Cookie.get("_top_banner_");
|
187
|
+
if(cookie == 1) return false;
|
188
|
+
var dom = document.getElementById('topBanner');
|
189
|
+
var cssPlus = '';
|
190
|
+
if(window.screen.width < 768){
|
191
|
+
cssPlus = "x_topbanner_l";
|
192
|
+
}
|
193
|
+
var device = '';
|
194
|
+
if(userAgent.match(/Android/i)){
|
195
|
+
device = "Android";
|
196
|
+
var href = window.location.href;
|
197
|
+
if(href.indexOf('?') !== -1){
|
198
|
+
href += '&x';
|
199
|
+
}else{
|
200
|
+
href += '?x';
|
201
|
+
}
|
202
|
+
var xUrl = href;
|
203
|
+
var aString = '<div class="x_topbanner '+cssPlus+'"><div class="banner_skip"><div class="banner_panel"><i class="ico__info"></i><strong>ANDROID浏览时建议您:</strong><br><span>安装<a href="http://mobile.youku.com/index/wireless" target="_blank" onclick="Log.log(1,\'tp=1&cp=4007638&cpp=1000687\')">优酷客户端</a>,或访问<a href="'+xUrl+'" onclick="Nova.Cookie.set(\'_from_x_\',0,-1);Log.log(1,\'tp=1&cp=4007639&cpp=1000687\')">优酷ANDROID版</a></span></div><a title="关闭" class="btn__cls"></a></div></div>';
|
204
|
+
Log.log(1,"tp=1&cp=4007637&cpp=1000687");
|
205
|
+
}else if(userAgent.indexOf("iPad") !== -1){
|
206
|
+
device = "iPad";
|
207
|
+
var href = window.location.href;
|
208
|
+
if(href.indexOf('?') !== -1){
|
209
|
+
href += '&x';
|
210
|
+
}else{
|
211
|
+
href += '?x';
|
212
|
+
}
|
213
|
+
var xUrl = href;
|
214
|
+
var aString = '<div class="x_topbanner '+cssPlus+'"><div class="banner_skip"><div class="banner_panel"><i class="ico__info"></i><strong>IPAD浏览时建议您:</strong><br><span>安装可以下载视频的<a href="http://mobile.youku.com/index/wireless" target="_blank" onclick="Log.log(1,\'tp=1&cp=4007634&cpp=1000687\')">优酷客户端</a>,或访问<a href="'+xUrl+'" onclick="Nova.Cookie.set(\'_from_x_\',0,-1);Log.log(1,\'tp=1&cp=4007635&cpp=1000687\')">优酷IPAD版</a></span></div><a title="关闭" class="btn__cls"></a></div></div>';
|
215
|
+
Log.log(1,"tp=1&cp=4007633&cpp=1000687");
|
216
|
+
}
|
217
|
+
else if(userAgent.indexOf("iPhone") !== -1 || userAgent.indexOf("iPod") !== -1){
|
218
|
+
device = "iPhone";
|
219
|
+
var href = window.location.href;
|
220
|
+
if(href.indexOf('?') !== -1){
|
221
|
+
href += '&x';
|
222
|
+
}else{
|
223
|
+
href += '?x';
|
224
|
+
}
|
225
|
+
var xUrl = href;
|
226
|
+
var aString = '<div class="x_topbanner '+cssPlus+'"><div class="banner_skip"><div class="banner_panel"><i class="ico__info"></i><strong>IPHONE浏览时建议您:</strong><br><span>安装<a href="http://mobile.youku.com/index/wireless" target="_blank" onclick="Log.log(1,\'tp=1&cp=4007629&cpp=1000687\')">优酷客户端</a>,或访问<a href="'+xUrl+'" onclick="Nova.Cookie.set(\'_from_x_\',0,-1);Log.log(1,\'tp=1&cp=4007635&cpp=1000687\')">优酷IPHONE版</a></span></div><a title="关闭" class="btn__cls"></a></div></div>';
|
227
|
+
Log.log(1,"tp=1&cp=4007628&cpp=1000687");
|
228
|
+
}
|
229
|
+
dom.innerHTML = aString;
|
230
|
+
dom.style.display = "block";
|
231
|
+
var close = $$(".x_topbanner .btn__cls")[0];
|
232
|
+
if(close){
|
233
|
+
close.onclick = function(){
|
234
|
+
dom.style.display = "none";
|
235
|
+
Nova.Cookie.set("_top_banner_",1,1);
|
236
|
+
}
|
237
|
+
}
|
238
|
+
if(device == "Android"){
|
239
|
+
tp = "tp=1&cp=4007640&cpp=1000687";
|
240
|
+
}else if(device == "iPad"){
|
241
|
+
tp = "tp=1&cp=4007636&cpp=1000687";
|
242
|
+
}else{
|
243
|
+
tp = "tp=1&cp=4007632&cpp=1000687";
|
244
|
+
}
|
245
|
+
Log.log(1,tp);
|
246
|
+
}
|
247
|
+
};
|
248
|
+
})();
|
249
|
+
|
250
|
+
</script> <div id='light_switch' style="display: none;">
|
251
|
+
<div id="playshow_mask" style="display: block;"></div>
|
252
|
+
<div class="sideTool sideTool_dark" id="sideToolDark" style="display: block;">
|
253
|
+
<div class="handle" id="lighton"><a class="icon-light-off" href="javascript:;" title="开灯"></a></div>
|
254
|
+
</div>
|
255
|
+
</div>
|
256
|
+
<style type="text/css">
|
257
|
+
|
258
|
+
.sidebar {display: block;opacity: 0;overflow: hidden;position: fixed;_position: absolute;z-index: 1000;right: 20px;bottom: 60px;_bottom: auto;_position: absolute;_top: expression(eval(document.documentElement.scrollTop + 300 ));width: 50px;}
|
259
|
+
.sidebar a .sidebar-overlay{display:block;position:absolute;top:0;left:0;z-index:-1;background:#000;opacity: 0.7;filter: alpha(opacity=70);width:50px;height:50px;}
|
260
|
+
.sidebar a{position:relative;display:block;text-align: center;height: 26px;color:white;font-size: 12px;font-family: "Microsoft YaHei","微软雅黑",SimHei,helvetica,arial,verdana,tahoma,sans-serif;padding: 12px 0;}
|
261
|
+
.sidebar a:hover{color:#fff;}
|
262
|
+
.sidebar a:hover .sidebar-overlay{display:block;position:absolute;top:0;left:0;z-index:-1;background:#000;opacity:0.60;filter: alpha(opacity=60);}
|
263
|
+
.sidebar a .sidebar-on{background: #06a7e1;}
|
264
|
+
.sidebar i{width:24px;height: 24px;display:inline-block;*display:inline;*zoom:1}
|
265
|
+
.sidebar .ico-gotop,
|
266
|
+
.sidebar .ico-feedback,
|
267
|
+
.sidebar .ico-mobi,
|
268
|
+
.sidebar .ico-qrcode,
|
269
|
+
.sidebar .ico-lightOn,
|
270
|
+
.sidebar .ico-lightOff {vertical-align: middle;background: url("/index/img/2013/sidebar.8.png") no-repeat;}
|
271
|
+
.sidebar .ico-gotop{background-position: -7px -4px;height:26px;}
|
272
|
+
.sidebar .ico-feedback{background-position: -3px -40px;}
|
273
|
+
.sidebar .ico-lightOn{background-position: -3px -176px;}
|
274
|
+
.sidebar .ico-lightOff{background-position: -3px -142px;}
|
275
|
+
.sidebar .ico-mobi{background-position: -3px -74px;}
|
276
|
+
.sidebar .feedBack{margin: 1px 0;padding: 6px 0;height: 37px;height: 38px;}
|
277
|
+
.sidebar .mobi{padding: 6px 0 18px;display: none;}
|
278
|
+
.sidebar .scanQrcode{margin-top:1px;padding:7px 0;height:36px; }
|
279
|
+
.sidebar .ico-qrcode{height:24px;vertical-align:middle;background-position:-3px -108px; }
|
280
|
+
|
281
|
+
</style>
|
282
|
+
<div class="sidebar" id="padsideTool" style="display: none;opacity: 1;">
|
283
|
+
<a class="feedBack" href="/x_mfeed" target="_blank" style="display: block;"><i class="ico-feedback"></i><br/><span>反馈</span><span class="sidebar-overlay"></span></a>
|
284
|
+
<a class="mobi" onclick="Nova.Cookie.set('_from_x_',0,-1);Log.log(1,'tp=1&cp=4007635&cpp=1000687');window.location.reload();return false;" style="display: block;"><i class="ico-mobi"></i><br/><span>移动版</span><span class="sidebar-overlay"></span></a>
|
285
|
+
</div>
|
286
|
+
|
287
|
+
<div class="window">
|
288
|
+
<div class="screen">
|
289
|
+
<div class="s_body">
|
290
|
+
<div id="dfmaxthonv5_wrap"><div id="dfmaxthonv5"></div></div>
|
291
|
+
<div id="copyright_tips"></div>
|
292
|
+
<script>
|
293
|
+
|
294
|
+
(function(){
|
295
|
+
var aoutds = Array("www.soku.com");
|
296
|
+
var adr = document.referrer;
|
297
|
+
var aoutds_ua = navigator.userAgent.toLowerCase();
|
298
|
+
var aoutds_isFF = aoutds_ua.indexOf('firefox') >= 0;
|
299
|
+
var aoutds_isIE = (aoutds_ua.indexOf('msie') >= 0 && aoutds_ua.indexOf('opera') < 0);
|
300
|
+
var aoutds_isSFR = aoutds_ua.indexOf('safari') >= 0;
|
301
|
+
if(parent&&((aoutds_isIE&&parent!=document&&parent!=window)||((aoutds_isFF||aoutds_isSFR)&&parent!=window))&&adr!=""&&adr!=self.location&&top.location!=self.location){
|
302
|
+
var isAOUTD = false;
|
303
|
+
if(adr.indexOf(".youku.com") !== -1){
|
304
|
+
isAOUTD = true;
|
305
|
+
}
|
306
|
+
var adrs = adr.match(/\:\/\/([\w\.\-\d]+)\//g);
|
307
|
+
for(var ai=0;ai<aoutds.length;ai++){
|
308
|
+
if((typeof adrs == "string" && adrs == "://"+aoutds[ai]+"/") ||
|
309
|
+
((typeof adrs == "object" && adrs.length>0 && adrs[0] == "://"+aoutds[ai]+"/"))){
|
310
|
+
isAOUTD = true;
|
311
|
+
break;
|
312
|
+
}
|
313
|
+
}
|
314
|
+
if(isAOUTD == false) goHome();
|
315
|
+
}
|
316
|
+
|
317
|
+
function goHome(){
|
318
|
+
var tips = '<div style="height:32px;line-height:32px;background:#ffffe5;border:1px solid #ecdda8;color:#555;text-align:center;font-size:14px;font-family: "Microsoft YaHei","微软雅黑",helvetica,arial,verdana,tahoma,sans-serif;">本网页发现未经许可被嵌套播放,为保护您的隐私不被第三方网站窃取,马上为您跳到正常网页</div>';
|
319
|
+
document.getElementById('copyright_tips').innerHTML = tips;
|
320
|
+
setTimeout(function(){top.location=self.location;},2000);
|
321
|
+
};
|
322
|
+
})();
|
323
|
+
|
324
|
+
</script>
|
325
|
+
<link href="http://static.youku.com/v1.0.1013/index/css/qheader.css" type="text/css" rel="stylesheet" />
|
326
|
+
<div class="yk-header" id="qheader">
|
327
|
+
<div class="yk-header-container" id="qheader_box">
|
328
|
+
<div class="yk-box">
|
329
|
+
<div class="yk-logo">
|
330
|
+
|
331
|
+
<a href="http://www.youku.com/" title="Youku 优酷" attr=g_6><img src="http://static.youku.com/index/img/header/yklogo.png" alt="Youku 优酷" attr=1></a>
|
332
|
+
|
333
|
+
|
334
|
+
|
335
|
+
</div>
|
336
|
+
<div class="yk-so">
|
337
|
+
<div class="yk-so-box">
|
338
|
+
<form id="qheader_search"
|
339
|
+
action="http://www.soku.com/search_video"
|
340
|
+
method="get"
|
341
|
+
target="_blank"
|
342
|
+
onsubmit="
|
343
|
+
if(typeof(XBox) == 'object'){
|
344
|
+
return false;
|
345
|
+
}
|
346
|
+
else if(typeof(QHeader) == 'object'){
|
347
|
+
return QHeader.Search.doSearch();
|
348
|
+
}
|
349
|
+
">
|
350
|
+
<input name="q" id="headq" type="text" autocomplete="off" />
|
351
|
+
<button type="submit"><em>搜索</em></button>
|
352
|
+
<div id="qheader_keywords" style="display:none;">
|
353
|
+
|
354
|
+
|
355
|
+
|
356
|
+
|
357
|
+
|
358
|
+
<a target="_blank" href="http://www.soku.com/search_video/q_" class=""></a>
|
359
|
+
</div>
|
360
|
+
<input type="text" style="display:none;" />
|
361
|
+
</form>
|
362
|
+
</div>
|
363
|
+
</div>
|
364
|
+
<div class="yk-ucenter">
|
365
|
+
<div class="yk-userlog" id="qheader_userlog">
|
366
|
+
<div class="yk-userlog-before" id="qheader_logbefore" style="display:none">
|
367
|
+
<div class="entry">
|
368
|
+
<a id="qheader_login" href="http://www.youku.com/user_login/"><i class="ico-user-l2"></i>登录</a><span class="splite">|</span><a href="
|
369
|
+
http://login.youku.com/user_signup?from=header
|
370
|
+
" target="_blank">注册</a>
|
371
|
+
</div>
|
372
|
+
</div>
|
373
|
+
<div class="yk-userlog-after" id="qheader_logafter" style="display:none;"></div>
|
374
|
+
</div>
|
375
|
+
<div class="yk-appentry">
|
376
|
+
<div class="entry">
|
377
|
+
<a href="http://mobile.youku.com/index/wireless" target="_blank">APP下载</a>
|
378
|
+
</div>
|
379
|
+
</div>
|
380
|
+
<div class="yk-vipentry">
|
381
|
+
<div class="entry">
|
382
|
+
<a href="http://vip.youku.com/" target="_blank">会员</a>
|
383
|
+
</div>
|
384
|
+
</div>
|
385
|
+
<div class="yk-upload">
|
386
|
+
<div class="dropdown" id="qheader_upload">
|
387
|
+
<div class="handle"><a href="http://www.youku.com/v/upload" target="_blank"><i class="ico-upload-l2"></i><span>上传</span><b class="caret"></b></a></div>
|
388
|
+
<div class="panel">
|
389
|
+
<ul class="yk-userservices-list">
|
390
|
+
<li><a href="http://www.youku.com/v/upload" target="_blank"><i class="ico-upload-l2"></i>上传视频</a></li>
|
391
|
+
<li><a href="http://i.youku.com/u/videos" target="_blank"><i class="ico-videomanage-l2"></i>视频管理</a></li>
|
392
|
+
<li><a href="
|
393
|
+
http://i.youku.com/u/profile/
|
394
|
+
" target="_blank" id="qheader_upload_userspace"><i class="ico-myspace-l2"></i>我的频道</a></li>
|
395
|
+
<li><a href="http://index.youku.com/mydata/overview/y" target="_blank"><i class="ico-VR-l2"></i>我的指数</a></li>
|
396
|
+
<li><a href="http://share.youku.com" target="_blank"><i class="ico-sharing-l2"></i>分享计划</a></li>
|
397
|
+
</ul>
|
398
|
+
</div>
|
399
|
+
</div>
|
400
|
+
</div>
|
401
|
+
</div>
|
402
|
+
<div class="yk-menus-wrap">
|
403
|
+
<ul class="yk-menus">
|
404
|
+
<li class="yk-menus-item"><a href="http://www.youku.com" title="返回首页">首页</a></li>
|
405
|
+
<li class="yk-menus-item">
|
406
|
+
<div class="yk-guide">
|
407
|
+
<div class="dropdown" id="qheader_channel">
|
408
|
+
<div class="handle"><a href="javascript:void(0);"><i class="ico-channels-l2"></i><span>频道</span></a></div>
|
409
|
+
<div class="panel">
|
410
|
+
|
411
|
+
|
412
|
+
|
413
|
+
|
414
|
+
|
415
|
+
|
416
|
+
<div class="yk-guide-entry yk-channels">
|
417
|
+
<dl class="yk-guide-item">
|
418
|
+
<dd><a href="http://www.youku.com/">优酷首页</a></dd>
|
419
|
+
<dd><a href="http://tv.youku.com/">电视剧</a></dd>
|
420
|
+
<dd><a href="http://movie.youku.com/">电影</a></dd>
|
421
|
+
<dd><a href="http://zy.youku.com/">综艺</a></dd>
|
422
|
+
<dd><a href="http://music.youku.com/">音乐</a></dd>
|
423
|
+
<dd><a href="http://comic.youku.com/">动漫</a></dd>
|
424
|
+
<dd><a href="http://www.youku.com/v/">全部</a></dd>
|
425
|
+
</dl>
|
426
|
+
<dl class="yk-guide-item">
|
427
|
+
<dt><label>资讯中心</label></dt>
|
428
|
+
<dd><a href="http://news.youku.com/">资讯</a></dd>
|
429
|
+
<dd><a href="http://jilupian.youku.com/">纪录片</a></dd>
|
430
|
+
<dd><a href="http://sports.youku.com/">体育</a></dd>
|
431
|
+
<dd><a href="http://finance.youku.com/">财经</a></dd>
|
432
|
+
<dd><a href="http://edu.youku.com/">教育</a></dd>
|
433
|
+
<dd><a href="http://gongyi.youku.com/">公益</a></dd>
|
434
|
+
|
435
|
+
|
436
|
+
</dl>
|
437
|
+
<dl class="yk-guide-item">
|
438
|
+
<dt><label>娱乐中心</label></dt>
|
439
|
+
<dd><a href="http://ent.youku.com/">娱乐</a></dd>
|
440
|
+
<dd><a href="http://dv.youku.com/">原创</a></dd>
|
441
|
+
<dd><a href="http://game.youku.com/">游戏</a></dd>
|
442
|
+
<dd><a href="http://fun.youku.com/">搞笑</a></dd>
|
443
|
+
<dd><a href="http://original.youku.com/">优酷出品</a></dd>
|
444
|
+
</dl>
|
445
|
+
<dl class="yk-guide-item">
|
446
|
+
<dt><label>生活中心</label></dt>
|
447
|
+
<dd><a href="http://life.youku.com/">生活</a></dd>
|
448
|
+
<dd><a href="http://fashion.youku.com/">时尚</a></dd>
|
449
|
+
<dd><a href="http://travel.youku.com/">旅游</a></dd>
|
450
|
+
<dd><a href="http://auto.youku.com/">汽车</a></dd>
|
451
|
+
<dd><a href="http://tech.youku.com/">科技</a></dd>
|
452
|
+
<dd><a href="http://baby.youku.com/">亲子</a></dd>
|
453
|
+
</dl>
|
454
|
+
</div>
|
455
|
+
<div class="yk-guide-entry yk-services">
|
456
|
+
<dl class="yk-guide-item">
|
457
|
+
<dt><label>用户中心</label></dt>
|
458
|
+
<dd><a href="http://i.youku.com/u/official/">视频官网</a></dd>
|
459
|
+
</dl>
|
460
|
+
<dl class="yk-guide-item">
|
461
|
+
<dt><label>优酷会员</label></dt>
|
462
|
+
<dd><a href="http://pay.youku.com/" target="_blank">充值</a></dd>
|
463
|
+
<dd><a href="http://vip.youku.com/" target="_blank">会员</a></dd>
|
464
|
+
<dd><a href="http://yuanxian.youku.com/" target="_blank">院线</a></dd>
|
465
|
+
</dl>
|
466
|
+
<dl class="yk-guide-item">
|
467
|
+
<dt><label>客户端</label></dt>
|
468
|
+
<dd><a href="http://mobile.youku.com/index/paike" target="_blank">拍客</a></dd>
|
469
|
+
<dd><a href="http://mobile.youku.com/index/wireless" target="_blank">优酷移动</a></dd>
|
470
|
+
<dd><a href="http://mobile.youku.com/index/pc" target="_blank">PC客户端</a></dd>
|
471
|
+
</dl>
|
472
|
+
</div>
|
473
|
+
</div>
|
474
|
+
</div>
|
475
|
+
</div>
|
476
|
+
</li>
|
477
|
+
</ul>
|
478
|
+
</div>
|
479
|
+
</div>
|
480
|
+
<iframe class="mask" frameborder="0" scrolling="no" style="width:100%;height:60px;"></iframe>
|
481
|
+
</div><!-- yk-header end -->
|
482
|
+
</div>
|
483
|
+
<script>
|
484
|
+
var udomain = 'u.youku.com'
|
485
|
+
,UC_DOMAIN = 'i.youku.com'
|
486
|
+
,nc_domain ='nc.youku.com'
|
487
|
+
,youku_index_domain = 'www.youku.com'
|
488
|
+
,notice_domain ='http://notice.youku.com'
|
489
|
+
,space_domain ='u.youku.com'
|
490
|
+
,comments_domain ='http://comments.youku.com'
|
491
|
+
,openLookingClick = '1'
|
492
|
+
,passport = '1'
|
493
|
+
,passport_url = 'http://passport.youku.com'
|
494
|
+
,callback = 'videoLogin'
|
495
|
+
,novamodule = ''
|
496
|
+
,youku_homeurl = 'www.youku.com'
|
497
|
+
|
498
|
+
,loginSwitchToNew = true
|
499
|
+
,loginDomainNew = 'login.youku.com'
|
500
|
+
|
501
|
+
,lottery_open_sidetool = "1"
|
502
|
+
,lottery_sidetool_start = "2014-12-23"
|
503
|
+
,lottery_sidetool_end = "2014-12-30"
|
504
|
+
,lottery_sidetool_type = "1"
|
505
|
+
,lottery_sidetool_background = "http://r3.ykimg.com/051000005497C49A6737B324580A6D0A"
|
506
|
+
,lottery_sidetool_url = "http://fang.youku.com/2014/#qiangpiao"
|
507
|
+
,lottery_sidetool_function = ""
|
508
|
+
,lottery_id_sidetool = ""
|
509
|
+
//only for header
|
510
|
+
,qheaderjs = {
|
511
|
+
relyon: [
|
512
|
+
{
|
513
|
+
src : 'http://static.youku.com/v1.0.1013/js/prototype.js',
|
514
|
+
condition : 'typeof($)=="function"',
|
515
|
+
ready : false
|
516
|
+
},{
|
517
|
+
src : 'http://static.youku.com/v1.0.1013/index/js/common.js',
|
518
|
+
condition : 'typeof(login)=="function"',
|
519
|
+
ready : false
|
520
|
+
},{
|
521
|
+
src : 'http://static.youku.com/v1.0.1013/index/js/qwindow.js',
|
522
|
+
condition : 'typeof(Qwindow)=="function"',
|
523
|
+
ready : false
|
524
|
+
}
|
525
|
+
],
|
526
|
+
addons: [
|
527
|
+
{
|
528
|
+
src : 'http://static.soku.com/v2.0.4/soku/giantstar/js/sk-box-open.js',
|
529
|
+
condition : 'typeof(XBox)=="object"',
|
530
|
+
ready : false
|
531
|
+
}
|
532
|
+
]
|
533
|
+
};
|
534
|
+
</script>
|
535
|
+
<script src="http://static.youku.com/v1.0.1013/index/js/qheader.js"></script>
|
536
|
+
<script src="http://static.youku.com/v1.0.1013/index/js/qwindow.js"></script>
|
537
|
+
<script src="http://static.youku.com/v1.0.1013/index/js/popup.js"></script>
|
538
|
+
<div class="s_main layout_121">
|
539
|
+
<!--标题 播放器 播放列表-->
|
540
|
+
<div id="vpvideotitlev5_wrap"><div id="vpvideotitlev5"><!--视频基本信息-->
|
541
|
+
<div class="base">
|
542
|
+
<div class="base_info">
|
543
|
+
<div class="guide">
|
544
|
+
<div class="crumbs">
|
545
|
+
<a href="http://music.youku.com/" target="_blank" charset="" >音乐频道</a>
|
546
|
+
<span class="arrow"> > </span>
|
547
|
+
<a href="http://www.youku.com/v_showlist/t2d1c95.html" charset="" target="_blank">音乐列表</a>
|
548
|
+
<span class="arrow"> > </span>
|
549
|
+
|
550
|
+
<a charset="" href="http://www.youku.com/v_showlist/t2c95g2139.html" target="_blank">演唱会</a>
|
551
|
+
</div>
|
552
|
+
</div>
|
553
|
+
<h1 class="title">视频: 20131116李宗盛既然青春留不住北京演唱会_山丘高清</h1>
|
554
|
+
</div>
|
555
|
+
<!--广告位-->
|
556
|
+
<div id="ab_pip" class="ad_area">
|
557
|
+
<div id="ab_pip_pre"></div>
|
558
|
+
<div id='ab_863' style="display:none"></div>
|
559
|
+
<div id='ab_v_324' style="display:none"></div>
|
560
|
+
<div id="ab_569" style="display:none"></div>
|
561
|
+
</div>
|
562
|
+
<div class="clear"></div>
|
563
|
+
</div>
|
564
|
+
<script type="text/javascript">
|
565
|
+
var catId="95";
|
566
|
+
var cateStr = 'df2139_B';
|
567
|
+
var catName="%E9%9F%B3%E4%B9%90";
|
568
|
+
var attrs="";
|
569
|
+
var video_gener="";
|
570
|
+
var video_area="";
|
571
|
+
</script></div></div>
|
572
|
+
<div class="play_ugc">
|
573
|
+
<div class="play_area" id="playBox">
|
574
|
+
<div id="div_ad_crazy_v5" style="display:none"></div>
|
575
|
+
<div class="playBox" id="playerBox">
|
576
|
+
<div class="playArea">
|
577
|
+
<div class="abs">
|
578
|
+
<div id="preAd1" style="zoom:1;">
|
579
|
+
<div style="position:absolute;top:0px;left:610px;width:320px;height:460px;text-align:right;display:none" id="preAdContent"></div>
|
580
|
+
</div>
|
581
|
+
<div id="ad_crazy" style="zoom:1;">
|
582
|
+
<div id="ab_558"></div>
|
583
|
+
</div>
|
584
|
+
</div>
|
585
|
+
|
586
|
+
<div class="player" id="player" >
|
587
|
+
<script type="text/javascript">
|
588
|
+
var playerUrl = 'http://static.youku.com/v1.0.0494/v/swf/loader.swf';
|
589
|
+
var preId="";
|
590
|
+
var nextId="";
|
591
|
+
var plid="";
|
592
|
+
var type="";
|
593
|
+
</script>
|
594
|
+
<div id="player_title"></div>
|
595
|
+
<div id="player_html5" class="player_html5">
|
596
|
+
<div class="picture" id="youku-html5-player-info">
|
597
|
+
<video id="youku-html5-player-video" width="100%" height="458" x-webkit-airplay="allow" controls autoplay preload>
|
598
|
+
</video>
|
599
|
+
</div>
|
600
|
+
<div class="controls">
|
601
|
+
<div class="panel">
|
602
|
+
<div id="youku-html5-player-progressbar" class="processbar">
|
603
|
+
<div id="youku-html5-player-progress-tp" class="timepoint" style="left:0%;display:none">00:00</div>
|
604
|
+
<div id="youku-html5-player-progress-trk" class="track" style="width:0%;"></div>
|
605
|
+
<div id="youku-html5-player-progress-hd" class="handle" style="left:0%"></div>
|
606
|
+
</div>
|
607
|
+
<div id="youku-html5-player-play" class="start_disabled"></div>
|
608
|
+
<div class="time">
|
609
|
+
<span id="youku-html5-player-currentTime" class="current">00:00</span>/<span id="youku-html5-player-totalTime" class="total">00:00</span>
|
610
|
+
</div>
|
611
|
+
<div class="controls-fullscreen-button"></div>
|
612
|
+
<div class="base-button controls-widescreen-button"> 标屏</div>
|
613
|
+
<div class="controls-playmode"></div>
|
614
|
+
<div class="controls-language"></div>
|
615
|
+
<div class="volume" id="youku-html5-player-volume">
|
616
|
+
<div class="speaker" id="youku-html5-player-speaker">
|
617
|
+
<div class="mask">
|
618
|
+
<div class="lose" id="youku-html5-player-speaker-lose" style="width:100%"></div>
|
619
|
+
</div>
|
620
|
+
</div>
|
621
|
+
<div class="volumebar">
|
622
|
+
<div class="track" id="youku-html5-player-volumebar-trk"></div>
|
623
|
+
<div class="handle" id="youku-html5-player-volumebar-hd" style="left:0%"></div>
|
624
|
+
</div>
|
625
|
+
</div>
|
626
|
+
</div>
|
627
|
+
</div>
|
628
|
+
</div>
|
629
|
+
<iframe id="universalPlayer" src="" width="100%" height="498" border="0" frameborder="0" style="display:none"></iframe>
|
630
|
+
<script>
|
631
|
+
play();
|
632
|
+
</script>
|
633
|
</div>
|
634
|
+
</div>
|
635
|
+
</div>
|
636
|
+
|
637
|
+
<div class="clear"></div>
|
638
|
+
</div>
|
639
|
+
</div>
|
640
|
+
<!--右侧 相关视频等模块-->
|
641
|
+
<div class="sideCol">
|
642
|
+
<!--视频信息-->
|
643
|
+
<div id="vprelationvideov5_async_wrap"><div id="vprelationvideov5_async">
|
644
|
+
<div id='ab_101473'></div>
|
645
|
+
|
646
|
+
<div id='ab_v_325'></div>
|
647
|
+
<script type="text/javascript">
|
648
|
+
setInterval(function(){Nova.addScript("http://v2html.atm.youku.com/vhtml?p=325" + adsParams + "&t="+(new Date).getTime());},9*60*1000);
|
649
|
+
</script>
|
650
|
+
<div class="box nBox" exclude="1">
|
651
|
+
<div class="body">
|
652
|
+
<div class="vRelated">
|
653
|
+
<div class="colllist1w">
|
654
|
+
<div class="items">
|
655
|
+
<div class="" id="relationvideo_async"></div>
|
656
|
+
<div class="v v-small v-horiz">
|
657
|
+
<div class="v-thumb">
|
658
|
+
<img src="http://g4.ykimg.com/0100641F46548ACB5B334204C369D8838CCB01-068F-9183-4ED1-292988EBF6CD" alt="Galaxy A 年轻正发声" replace="false">
|
659
|
+
<div class="v-thumb-tagrb"><span class="v-time">01:00</span></div>
|
660
|
+
<div class="v-thumb-overlay"></div>
|
661
|
+
</div>
|
662
|
+
<div class="v-link">
|
663
|
+
<a href="http://v.youku.com/v_show/id_XODQ2NjI1ODA0.html" target="video" title="Galaxy A 年轻正发声"></a>
|
664
|
+
</div>
|
665
|
+
<div class="v-meta">
|
666
|
+
<div class="v-meta-title">
|
667
|
+
<a href="http://v.youku.com/v_show/id_XODQ2NjI1ODA0.html" target="video" title="Galaxy A 年轻正发声" charset="400-100-1">Galaxy A 年轻正发声</a>
|
668
|
+
</div>
|
669
|
+
<div class="v-meta-entry"><i class="ico-statplay" title="播放"></i><span class="v-num">5,105,100</span></div>
|
670
|
+
</div>
|
671
|
+
</div>
|
672
|
+
<div class="v v-small v-horiz">
|
673
|
+
<div class="v-thumb">
|
674
|
+
<img src="http://g1.ykimg.com/0100641F46547C05ECB0AB036BC529A7251B13-AE30-BA0D-908B-8FDF5D1930B3" alt="群星演绎为爱热牛奶" replace="false">
|
675
|
+
<div class="v-thumb-tagrb"><span class="v-time">04:55</span></div>
|
676
|
+
<div class="v-thumb-overlay"></div>
|
677
|
+
</div>
|
678
|
+
<div class="v-link">
|
679
|
+
<a href="http://v.youku.com/v_show/id_XODQ0NjI0MTM2.html" target="video" title="群星演绎为爱热牛奶"></a>
|
680
|
+
</div>
|
681
|
+
<div class="v-meta">
|
682
|
+
<div class="v-meta-title">
|
683
|
+
<a href="http://v.youku.com/v_show/id_XODQ0NjI0MTM2.html" target="video" title="群星演绎为爱热牛奶" charset="400-100-2">群星演绎为爱热牛奶</a>
|
684
|
+
</div>
|
685
|
+
<div class="v-meta-entry"><i class="ico-statplay" title="播放"></i><span class="v-num">8,862,094</span></div>
|
686
|
+
</div>
|
687
|
+
</div>
|
688
|
+
<div id="rellook" class="other_entry" style="display:none;">
|
689
|
+
<div class="form_btn form_btn_l form_btnsub_l"><a class="form_btn_text" target="_blank" href="http://yikan.youku.com/u/home?from=y1.2.0.0">猜你喜欢<i class="ico_gt"></i></a></div>
|
690
|
+
</div>
|
691
|
+
</div>
|
692
|
+
</div></div></div>
|
693
|
+
<!--body end-->
|
694
|
+
</div>
|
695
|
+
<div class="yk-tagBox" style="display:none">
|
696
|
+
<div class="yk-head">
|
697
|
+
<div class="yk-title"><span>视频标签</span></div>
|
698
|
+
<div class="yk-append"><a target="_blank" href="http://x.youku.com">查看更多</a></div>
|
699
|
+
</div>
|
700
|
+
<div class="yk-body" id="relatedtags"></div>
|
701
|
+
</div>
|
702
|
+
</div></div>
|
703
|
+
<script>RelationAsync.video();</script>
|
704
|
+
<div id="relUserBox"></div>
|
705
|
+
<script>RelationAsync.recUser();</script> <div id='ab_753'></div>
|
706
|
+
<div id='ab_v_322'></div>
|
707
|
+
<script type="text/javascript">
|
708
|
+
setInterval(function(){Nova.addScript("http://v2html.atm.youku.com/vhtml?p=322" + adsParams + "&t="+(new Date).getTime());},25*60*1000);
|
709
|
+
</script>
|
710
|
+
|
711
|
+
<div id='ab_69'></div>
|
712
|
+
<div id='ab_101565'></div>
|
713
|
+
<div id='ab_101618'></div>
|
714
|
+
<div id='ab_v_327'></div>
|
715
|
+
|
716
|
+
<div style="height:200px"></div>
|
717
|
+
</div><!--end sideCol--> <!--左侧 互动区 评论等模块-->
|
718
|
+
<div class="mainCol">
|
719
|
+
<div id="vpactionv5_wrap"><div id="vpactionv5"> <div class="yk-interact">
|
720
|
+
<div class="fns">
|
721
|
+
|
722
|
+
<div class="fn-updown">
|
723
|
+
<div class="fn" id="fn_updown">
|
724
|
+
<div class="fn-up" id="fn_up"><a title="顶:296"><span class="ico" data-stat-role="ck"><i class="ico-fn-up"></i></span><span class="num" id="upVideoTimes" data-stat-role="ck">296</span></a></div>
|
725
|
+
<div class="fn-down" id="fn_down"><a title="踩:2"><span class="ico" data-stat-role="ck"><i class="ico-fn-down"></i></span><span class="num" id="downVideoTimes" data-stat-role="ck">2</span></a></div>
|
726
|
+
</div>
|
727
|
+
</div>
|
728
|
+
|
729
|
+
|
730
|
+
<div class="fn-collect">
|
731
|
+
<div class="fn" data-dest="collect" id="fn_favorite"><div id="fn_favo"><a link="null"><span class="ico" data-stat-role="ck"><i class="ico-fn-collect"></i></span><span class="label" data-stat-role="ck">收藏</span></a></div></div>
|
732
|
+
</div>
|
733
|
+
|
734
|
+
<div class="fn-download">
|
735
|
+
<div class="fn" id="fn_download"><a link="null"><span class="ico" data-stat-role="ck"><i class="ico-fn-download"></i></span><span class="label" data-stat-role="ck">下载</span></a></div>
|
736
|
+
<!-- tips提示 -->
|
737
|
+
<!-- tips提示 end -->
|
738
|
+
</div>
|
739
|
+
|
740
|
+
<div class="fn-splite"></div>
|
741
|
+
|
742
|
+
<div class="fn-share">
|
743
|
+
<div class="fn" id="fn_share">
|
744
|
+
<div class="shares">
|
745
|
+
<ul class="options">
|
746
|
+
<li><a href="http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html" target="_blank" title="分享到Qzone" charset="400-03-8" id="s_qq"><span class="ico" data-stat-role="ck"><i class="ico-fn-qzone"></i></span></a></li>
|
747
|
+
<li><a href="http://connect.qq.com/widget/shareqq/index.html?title=20131116%E6%9D%8E%E5%AE%97%E7%9B%9B%E6%97%A2%E7%84%B6%E9%9D%92%E6%98%A5%E7%95%99%E4%B8%8D%E4%BD%8F%E5%8C%97%E4%BA%AC%E6%BC%94%E5%94%B1%E4%BC%9A_%E5%B1%B1%E4%B8%98%E9%AB%98%E6%B8%85&url=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html%3Ftpa%3DdW5pb25faWQ9MTAzMjUyXzEwMDAwMV8wMV8wMQ&desc=在优酷上看见这条视频还不错哦:20131116%E6%9D%8E%E5%AE%97%E7%9B%9B%E6%97%A2%E7%84%B6%E9%9D%92%E6%98%A5%E7%95%99%E4%B8%8D%E4%BD%8F%E5%8C%97%E4%BA%AC%E6%BC%94%E5%94%B1%E4%BC%9A_%E5%B1%B1%E4%B8%98%E9%AB%98%E6%B8%85&pics=http://g2.ykimg.com/0100641F46528C827D38F313B54FF057305EFD-1D91-46C5-821D-DC010415AC44&site=优酷" target="_blank" title="分享到QQ好友" charset="hz-4007877-1000208" id="s_qq_haoyou"><span class="ico" data-stat-role="ck"><i class="ico-fn-qq"></i></span></a></li>
|
748
|
+
<li><a href="http://v.t.sina.com.cn/share/share.php?appkey=2684493555&url=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html&title=%E3%80%90%E8%A7%86%E9%A2%91%EF%BC%9A++20131116%E6%9D%8E%E5%AE%97%E7%9B%9B%E6%97%A2%E7%84%B6%E9%9D%92%E6%98%A5%E7%95%99%E4%B8%8D%E4%BD%8F%E5%8C%97%E4%BA%AC%E6%BC%94%E5%94%B1%E4%BC%9A_%E5%B1%B1%E4%B8%98%E9%AB%98%E6%B8%85%E3%80%91&ralateUid=1642904381&source=%E4%BC%98%E9%85%B7%E7%BD%91&sourceUrl=http%3A%2F%2Fwww.youku.com%2F&content=utf8&searchPic=false" target="_blank" title="分享到微博" charset="400-03-10" id="s_sina"><span class="ico" data-stat-role="ck"><i class="ico-fn-weibo"></i></span></a></li>
|
749
|
+
<li><a href="/v_wechatShare/?url=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html&content=%E3%80%90%E8%A7%86%E9%A2%91%EF%BC%9A++20131116%E6%9D%8E%E5%AE%97%E7%9B%9B%E6%97%A2%E7%84%B6%E9%9D%92%E6%98%A5%E7%95%99%E4%B8%8D%E4%BD%8F%E5%8C%97%E4%BA%AC%E6%BC%94%E5%94%B1%E4%BC%9A_%E5%B1%B1%E4%B8%98%E9%AB%98%E6%B8%85%E3%80%91" charset="hz-4008673-1000709" target="_blank" title="分享到微信"><span class="ico" data-stat-role="ck"><i class="ico-fn-weixin"></i></span></a></li>
|
750
|
+
</ul>
|
751
|
+
<span class="label">分享给好友</span>
|
752
|
+
</div>
|
753
|
+
<div class="fn-handle" id="fn_share2" data-stat-role="ck"><a link="null"><i class="ico-drophandle"></i></a></div>
|
754
|
+
</div>
|
755
|
+
</div>
|
756
|
+
|
757
|
+
<div class="fn-stat">
|
758
|
+
<div class="fn" id="fn_stat">
|
759
|
+
<a link="null">
|
760
|
+
<div class="playstat" data-stat-role="ck"><span class="ico"><i class="ico-fn-VR"></i></span><span class="stat" id="videoTotalPV">播放</span></div>
|
761
|
+
<div class="fn-handle" data-stat-role="ck"><i class="ico-drophandle"></i></div>
|
762
|
+
</a>
|
763
|
+
</div>
|
764
|
+
</div>
|
765
|
+
</div><!--fns end-->
|
766
|
+
|
767
|
+
<div class="panels">
|
768
|
+
<div class="panel panel-collect" id="panel_favorite" style="display: none; ">
|
769
|
+
<div class="close" id="handle_favorite" title="关闭"><i class="ico-close"></i></div>
|
770
|
+
<div id="panel_favo"></div>
|
771
|
+
<!--
|
772
|
+
<div class="panel-con clearfix">
|
773
|
+
<div class="ico"><i class="ico-success-large"></i></div>
|
774
|
+
<div class="row2"><span class="majtxt">收藏成功</span><span class="subtxt">同时收藏了此节目</span></div>
|
775
|
+
</div>
|
776
|
+
-->
|
777
|
+
</div>
|
778
|
+
|
779
|
+
<div class="panel panel-download" id="panel_down" style="display: none;">
|
780
|
+
<div class="close" id="handle_down" title="关闭"><i class="ico-close"></i></div>
|
781
|
+
<div class="panel-con clearfix">
|
782
|
+
<div class="column column1" id="push_video">
|
783
|
+
<div class="head"><h4>缓存至手机</h4></div>
|
784
|
+
<div class="body clearfix" id="push_video_content"></div>
|
785
|
+
</div>
|
786
|
+
<div class="column column2">
|
787
|
+
<div class="head"><h4>下载至电脑</h4></div>
|
788
|
+
<div class="body">
|
789
|
+
<div class="help">您需要先安装 <a href="http://mobile.youku.com/index/pc" charset="hz-4009342-1000217" target="_blank">PC客户端</a>,才能下载视频哦</div>
|
790
|
+
<div class="form_btn form_btn_l form_btnsub_l"><a class="form_btn_text" id="fn_pc_download" charset="hz-4000480" href="javascript:;"><i class="ico-pc"></i>开始下载</a></div>
|
791
|
+
</div>
|
792
|
+
</div>
|
793
|
+
</div>
|
794
|
+
<div class="panel-con clearfix">
|
795
|
+
<div class="dimcode">
|
796
|
+
<div class="head"><h4>用手机看</h4></div>
|
797
|
+
<div class="body">
|
798
|
+
<div class="dim-pic" id="dimcode_pic"></div>
|
799
|
+
<div class="dim-txt">
|
800
|
+
<p>用优酷App或微信扫一扫,在手机上继续观看。</p>
|
801
|
+
<strong>20131116李宗盛既然青春留不住北京演唱会_山丘高清</strong>
|
802
|
+
<p><span class="coldodge" id="dimcode_watch_time"></span></p>
|
803
|
+
<div class="plink"><a href="/v_qcodeScanMethod/?url=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html&content=20131116%E6%9D%8E%E5%AE%97%E7%9B%9B%E6%97%A2%E7%84%B6%E9%9D%92%E6%98%A5%E7%95%99%E4%B8%8D%E4%BD%8F%E5%8C%97%E4%BA%AC%E6%BC%94%E5%94%B1%E4%BC%9A_%E5%B1%B1%E4%B8%98%E9%AB%98%E6%B8%85" target="_blank">如何扫描二维码</a></div>
|
804
|
+
</div>
|
805
|
+
</div>
|
806
|
+
</div>
|
807
|
+
</div> </div>
|
808
|
+
|
809
|
+
<div class="panel panel-share" id="panel_share" style="display: none; ">
|
810
|
+
<div class="close" id="handle_share" title="关闭"><i class="ico-close"></i></div>
|
811
|
+
<div class="panel-con clearfix">
|
812
|
+
<div class="p1">
|
813
|
+
<h4>分享给站外好友</h4>
|
814
|
+
<div class="item"><span class="label">视频地址: </span> <input type="text" class="form_input form_input_s" id="link1" value="http://v.youku.com/v_show/id_XNjM3MzAxNzc2.html">
|
815
|
+
<div class="form_btn form_btn_s form_btnsub_s" onclick="javascript:copyToClipboard('link1');"><span class="form_btn_text">复 制</span></div></div>
|
816
|
+
<h4>把视频贴到Blog或BBS</h4>
|
817
|
+
<div class="help"><a href="http://www.youku.com/help/view/fid/4#q2" target="_blank">怎么贴?</a></div>
|
818
|
+
<div class="item"><span class="label">flash地址: </span> <input type="text" class="form_input form_input_s" id="link2" value="http://player.youku.com/player.php/sid/XNjM3MzAxNzc2/v.swf" >
|
819
|
+
<div class="form_btn form_btn_s form_btnsub_s" onclick="javascript:copyToClipboard('link2');"><span class="form_btn_text">复 制</span></div></div>
|
820
|
+
<div class="item"><span class="label">html代码: </span> <input type="text" class="form_input form_input_s" id="link3" value='<embed src="http://player.youku.com/player.php/sid/XNjM3MzAxNzc2/v.swf" allowFullScreen="true" quality="high" width="480" height="400" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash"></embed>'>
|
821
|
+
<div class="form_btn form_btn_s form_btnsub_s" onclick="javascript:copyToClipboard('link3');"><span class="form_btn_text">复 制</span></div></div>
|
822
|
+
<div class="item"><span class="label">通用代码: </span> <input id="link4" type="text" class="form_input form_input_s" value='<iframe height=498 width=510 src="http://player.youku.com/embed/XNjM3MzAxNzc2" frameborder=0 allowfullscreen></iframe>'>
|
823
|
+
<div class="form_btn form_btn_s form_btnsub_s" onclick="javascript:copyToClipboard('link4');"><span class="form_btn_text">复 制</span></div><div class="tipinfo">可以让你的视频在iPhone、iPad上播放!</div></div>
|
824
|
+
<div class="item"><label>帮助: </label> <a href="http://hz.youku.com/red/click.php?tp=1&cp=4008760&cpp=1000187&url=http://open.youku.com/services/info?serid=1" target="_blank">怎样使分享出去的视频不带广告</a></div>
|
825
|
+
</div>
|
826
|
+
<div class="p2">
|
827
|
+
<h4>转发到</h4>
|
828
|
+
<div class="g1">
|
829
|
+
<a title="转发到QQ空间" charset="400-03-8" id="s_qq1" href="http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html" target="_blank"><i class="ico__qzone"></i>QQ空间</a>
|
830
|
+
<br/>
|
831
|
+
<a title="转发到微博" charset="400-03-10" id="s_sina1" href="http://v.t.sina.com.cn/share/share.php?appkey=2684493555&url=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html&title=%E3%80%90%E8%A7%86%E9%A2%91%EF%BC%9A++20131116%E6%9D%8E%E5%AE%97%E7%9B%9B%E6%97%A2%E7%84%B6%E9%9D%92%E6%98%A5%E7%95%99%E4%B8%8D%E4%BD%8F%E5%8C%97%E4%BA%AC%E6%BC%94%E5%94%B1%E4%BC%9A_%E5%B1%B1%E4%B8%98%E9%AB%98%E6%B8%85%E3%80%91&ralateUid=1642904381&source=%E4%BC%98%E9%85%B7%E7%BD%91&sourceUrl=http%3A%2F%2Fwww.youku.com%2F&content=utf8&searchPic=false" target="_blank"><i class="ico__sina"></i>微博</a>
|
832
|
+
<br/>
|
833
|
+
<a title="转发到腾讯朋友" charset="400-03-19" id="s_pengyou1" href="http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?to=pengyou&url=http://v.youku.com/v_show/id_XNjM3MzAxNzc2.html&title=20131116%E6%9D%8E%E5%AE%97%E7%9B%9B%E6%97%A2%E7%84%B6%E9%9D%92%E6%98%A5%E7%95%99%E4%B8%8D%E4%BD%8F%E5%8C%97%E4%BA%AC%E6%BC%94%E5%94%B1%E4%BC%9A_%E5%B1%B1%E4%B8%98%E9%AB%98%E6%B8%85" target="_blank"><i class="ico__pengyou"></i>腾讯朋友</a>
|
834
|
+
<br/>
|
835
|
+
<a title="转发到百度贴吧" charset="400-03-12" id="s_baidu1" href="http://tieba.baidu.com/f/commit/share/openShareApi?url=http://v.youku.com/v_show/id_XNjM3MzAxNzc2.html&title=20131116%C0%EE%D7%DA%CA%A2%BC%C8%C8%BB%C7%E0%B4%BA%C1%F4%B2%BB%D7%A1%B1%B1%BE%A9%D1%DD%B3%AA%BB%E1_%C9%BD%C7%F0%B8%DF%C7%E5&desc=%BC%C8%C8%BB%C7%E0%B4%BA%C1%F4%B2%BB%D7%A1%A3%AC%A1%B0%B0%AE%B5%C4%B4%FA%BC%DB%A1%B1%A1%B0%BF%DE%A1%B1%A1%B0%C1%EC%CE%F2%A1%B1%A3%BB%0A%D4%BD%B9%FD%A1%B0%C9%BD%C7%F0%A1%B1%A1%B0%D0%A6%BA%EC%B3%BE%A1%B1%A3%AC%A1%B0...&pic=http://g2.ykimg.com/0100641F46528C827D38F313B54FF057305EFD-1D91-46C5-821D-DC010415AC44" target="_blank"><i class="ico__baidu"></i>百度贴吧</a>
|
836
|
+
<br/>
|
837
|
+
<a title="转发到豆瓣" charset="400-03-17" id="s_douban1" href="http://www.douban.com/recommend/?url=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html&title=20131116%E6%9D%8E%E5%AE%97%E7%9B%9B%E6%97%A2%E7%84%B6%E9%9D%92%E6%98%A5%E7%95%99%E4%B8%8D%E4%BD%8F%E5%8C%97%E4%BA%AC%E6%BC%94%E5%94%B1%E4%BC%9A_%E5%B1%B1%E4%B8%98%E9%AB%98%E6%B8%85" target="_blank"><i class="ico__douban"></i>豆瓣</a>
|
838
|
+
<br/>
|
839
|
+
<a title="转发到搜狐微博" charset="400-03-22" id="s_sohu1" href="http://t.sohu.com/third/post.jsp?content=utf-8&url=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html&title=20131116%E6%9D%8E%E5%AE%97%E7%9B%9B%E6%97%A2%E7%84%B6%E9%9D%92%E6%98%A5%E7%95%99%E4%B8%8D%E4%BD%8F%E5%8C%97%E4%BA%AC%E6%BC%94%E5%94%B1%E4%BC%9A_%E5%B1%B1%E4%B8%98%E9%AB%98%E6%B8%85" target="_blank"><i class="ico__sohu"></i>搜狐微博</a>
|
840
|
+
<a href="/v_wechatShare/?url=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html&content=%E3%80%90%E8%A7%86%E9%A2%91%EF%BC%9A++20131116%E6%9D%8E%E5%AE%97%E7%9B%9B%E6%97%A2%E7%84%B6%E9%9D%92%E6%98%A5%E7%95%99%E4%B8%8D%E4%BD%8F%E5%8C%97%E4%BA%AC%E6%BC%94%E5%94%B1%E4%BC%9A_%E5%B1%B1%E4%B8%98%E9%AB%98%E6%B8%85%E3%80%91" charset="hz-4008673-1000709" target="_blank" title="转发到微信"><i class="ico__weixin"></i>微信</a>
|
841
|
+
</div>
|
842
|
+
<div class="g2">
|
843
|
+
<a title="转发给QQ好友" charset="hz-4007877-1000208" id="s_qq_haoyou1" href="http://connect.qq.com/widget/shareqq/index.html?title=20131116%E6%9D%8E%E5%AE%97%E7%9B%9B%E6%97%A2%E7%84%B6%E9%9D%92%E6%98%A5%E7%95%99%E4%B8%8D%E4%BD%8F%E5%8C%97%E4%BA%AC%E6%BC%94%E5%94%B1%E4%BC%9A_%E5%B1%B1%E4%B8%98%E9%AB%98%E6%B8%85&url=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html%3Ftpa%3DdW5pb25faWQ9MTAzMjUyXzEwMDAwMV8wMV8wMQ&desc=在优酷上看见这条视频还不错哦:20131116%E6%9D%8E%E5%AE%97%E7%9B%9B%E6%97%A2%E7%84%B6%E9%9D%92%E6%98%A5%E7%95%99%E4%B8%8D%E4%BD%8F%E5%8C%97%E4%BA%AC%E6%BC%94%E5%94%B1%E4%BC%9A_%E5%B1%B1%E4%B8%98%E9%AB%98%E6%B8%85&pics=http://g2.ykimg.com/0100641F46528C827D38F313B54FF057305EFD-1D91-46C5-821D-DC010415AC44&site=优酷" target="_blank"><i class="ico__qq"></i>QQ好友</a><br/>
|
844
|
+
<a title="转发到人人网" charset="400-03-7" id="s_renren1" href="http://share.renren.com/share/buttonshare.do?link=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html" target="_blank"><i class="ico__renren"></i>人人网</a>
|
845
|
+
<br>
|
846
|
+
<a title="转发到腾讯微博" charset="400-03-16" id="s_qq_t1" href="http://v.t.qq.com/share/share.php?title=%E3%80%90%E8%A7%86%E9%A2%91%EF%BC%9A++20131116%E6%9D%8E%E5%AE%97%E7%9B%9B%E6%97%A2%E7%84%B6%E9%9D%92%E6%98%A5%E7%95%99%E4%B8%8D%E4%BD%8F%E5%8C%97%E4%BA%AC%E6%BC%94%E5%94%B1%E4%BC%9A_%E5%B1%B1%E4%B8%98%E9%AB%98%E6%B8%85%E3%80%91&url=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html&appkey=e7ad0b0199994bda85ecc0a44ce9915f&site=www.youku.com&assname=youku2010" target="_blank"><i class="ico__tecent"></i>腾讯微博</a>
|
847
|
+
<br/>
|
848
|
+
<a title="转发到MSN" charset="400-03-20" id="s_msn1" href="http://profile.live.com/badge/?url=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html&Title=20131116%E6%9D%8E%E5%AE%97%E7%9B%9B%E6%97%A2%E7%84%B6%E9%9D%92%E6%98%A5%E7%95%99%E4%B8%8D%E4%BD%8F%E5%8C%97%E4%BA%AC%E6%BC%94%E5%94%B1%E4%BC%9A_%E5%B1%B1%E4%B8%98%E9%AB%98%E6%B8%85&swfurl=http://player.youku.com/player.php/sid/XNjM3MzAxNzc2/v.swf&screenshot=http://g2.ykimg.com/0100641F46528C827D38F313B54FF057305EFD-1D91-46C5-821D-DC010415AC44" target="_blank"><i class="ico__msn"></i>MSN</a>
|
849
|
+
<br/>
|
850
|
+
<a title="转发到开心网" charset="400-03-9" id="s_kaixin1" href="http://www.kaixin001.com/repaste/share.php?rurl=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html&rcontent=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html&rtitle=20131116%E6%9D%8E%E5%AE%97%E7%9B%9B%E6%97%A2%E7%84%B6%E9%9D%92%E6%98%A5%E7%95%99%E4%B8%8D%E4%BD%8F%E5%8C%97%E4%BA%AC%E6%BC%94%E5%94%B1%E4%BC%9A_%E5%B1%B1%E4%B8%98%E9%AB%98%E6%B8%85" target="_blank"><i class="ico__kaixin"></i>开心网</a>
|
851
|
+
<br/>
|
852
|
+
<a title="转发到MOP" charset="400-03-19" id="s_mop1" href="http://tt.mop.com/share/shareV.jsp?title=20131116%C0%EE%D7%DA%CA%A2%BC%C8%C8%BB%C7%E0%B4%BA%C1%F4%B2%BB%D7%A1%B1%B1%BE%A9%D1%DD%B3%AA%BB%E1_%C9%BD%C7%F0%B8%DF%C7%E5&flashUrl=http://player.youku.com/player.php/sid/XNjM3MzAxNzc2/v.swf&pageUrl=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html" target="_blank"><i class="ico__mop"></i>MOP贴贴</a>
|
853
|
+
<br/>
|
854
|
+
<a title="转发到网易微博" charset="400-03-13" id="s_1631" href="http://t.163.com/article/user/checkLogin.do?link=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html&source=%E4%BC%98%E9%85%B7%E7%BD%91&info=20131116%E6%9D%8E%E5%AE%97%E7%9B%9B%E6%97%A2%E7%84%B6%E9%9D%92%E6%98%A5%E7%95%99%E4%B8%8D%E4%BD%8F%E5%8C%97%E4%BA%AC%E6%BC%94%E5%94%B1%E4%BC%9A_%E5%B1%B1%E4%B8%98%E9%AB%98%E6%B8%85 http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html" target="_blank"><i class="ico__163"></i>网易微博</a>
|
855
|
+
<br>
|
856
|
+
<a href="/v_yixinShare/?url=http%3A%2F%2Fv.youku.com%2Fv_show%2Fid_XNjM3MzAxNzc2.html&content=%E3%80%90%E8%A7%86%E9%A2%91%EF%BC%9A++20131116%E6%9D%8E%E5%AE%97%E7%9B%9B%E6%97%A2%E7%84%B6%E9%9D%92%E6%98%A5%E7%95%99%E4%B8%8D%E4%BD%8F%E5%8C%97%E4%BA%AC%E6%BC%94%E5%94%B1%E4%BC%9A_%E5%B1%B1%E4%B8%98%E9%AB%98%E6%B8%85%E3%80%91" charset="hz-4009071" target="_blank" title="转发到易信"><i class="ico__yixin"></i>易信</a>
|
857
|
+
</div>
|
858
|
+
<div class="clear"></div>
|
859
|
+
</div>
|
860
|
+
<div class="clear"></div>
|
861
|
+
</div>
|
862
|
+
</div>
|
863
|
+
<div class="panel panel-stat" id="panel_stat" style="display: none; ">
|
864
|
+
<div id="info_stat" class="panel-con clearfix" owner="330649584">
|
865
|
+
<div class="vLoading"><div class="ico__loading_16"></div></div>
|
866
|
+
</div>
|
867
|
+
<div class="clear"></div>
|
868
|
+
</div><!--panel end-->
|
869
|
+
</div><!--panels end-->
|
870
|
+
</div>
|
871
|
+
<script type="text/javascript">
|
872
|
+
|
873
|
+
|
874
|
+
var shareClickHz = function(){
|
875
|
+
var hzCode = {
|
876
|
+
's_qq' : '4000351',
|
877
|
+
's_qq1' : '4000361',
|
878
|
+
's_qq2' : '4000361',
|
879
|
+
's_sina' : '4000353',
|
880
|
+
's_sina1' : '4000363',
|
881
|
+
's_sina2' : '4000363',
|
882
|
+
's_renren' : '4000350',
|
883
|
+
's_renren1' : '4000360',
|
884
|
+
's_renren2' : '4000360',
|
885
|
+
's_qq_t' : '4001144',
|
886
|
+
's_qq_t1' : '4001146',
|
887
|
+
's_qq_t2' : '4001146',
|
888
|
+
's_pengyou' : '4001393',
|
889
|
+
's_pengyou1' : '4001393',
|
890
|
+
's_msn' : '4001567',
|
891
|
+
's_msn1' : '4001569',
|
892
|
+
's_msn2' : '4001569',
|
893
|
+
's_baidu' : '4000371',
|
894
|
+
's_baidu1' : '4000371',
|
895
|
+
's_kaixin' : '4000352',
|
896
|
+
's_kaixin1' : '4000362',
|
897
|
+
's_kaixin2' : '4000362',
|
898
|
+
's_douban' : '4001151',
|
899
|
+
's_douban1' : '4001151',
|
900
|
+
's_mop' : '4001364',
|
901
|
+
's_mop1' : '4001364',
|
902
|
+
's_sohu' : '4002240',
|
903
|
+
's_sohu1' : '4002240',
|
904
|
+
's_163' : '4000890',
|
905
|
+
's_1631' : '4000890'
|
906
|
+
};
|
907
|
+
for(var key in hzCode)
|
908
|
+
{
|
909
|
+
if($(key))
|
910
|
+
{
|
911
|
+
$(key).href = 'http://hz.youku.com/red/click.php?tp=1&cp=' + hzCode[key] + '&cpp=1000208&url='+escape($(key).href);
|
912
|
+
}
|
913
|
+
}
|
914
|
+
};
|
915
|
+
shareClickHz();
|
916
|
+
//腾讯分享活动-回调函数接口
|
917
|
+
var qqHaoyou = function(){
|
918
|
+
var userinfo = get_username("all");
|
919
|
+
var userid = userinfo.userid > 0 ? userinfo.userid : 0;
|
920
|
+
var url = 'http://mini.cron.youku.com/web/www/qq_share/qq_cback.php?userId='+userid;
|
921
|
+
$('s_qq_haoyou').href += '&callback=' + url;
|
922
|
+
$('s_qq_haoyou1').href += '&callback=' + url;
|
923
|
+
}
|
924
|
+
qqHaoyou();
|
925
|
+
|
926
|
+
</script>
|
927
|
+
<script>
|
928
|
+
|
929
|
+
Interact.init();
|
930
|
+
if($('upVideoTimes') && $('downVideoTimes'))
|
931
|
+
{
|
932
|
+
var up = $('upVideoTimes').innerHTML;
|
933
|
+
var down = $('downVideoTimes').innerHTML;
|
934
|
+
if(up.length > 10)
|
935
|
+
{
|
936
|
+
$('upVideoTimes').innerHTML = up.substring(0,10);
|
937
|
+
}
|
938
|
+
if(down.length > 10)
|
939
|
+
{
|
940
|
+
$('downVideoTimes').innerHTML = down.substring(0,10);
|
941
|
+
}
|
942
|
+
}
|
943
|
+
|
944
|
+
|
945
|
+
</script></div></div>
|
946
|
+
<div id="vpvideoinfov5_wrap"><div id="vpvideoinfov5"><div class="yk-uploadinfo" >
|
947
|
+
<div class="yk-userinfo">
|
948
|
+
<div class="user-photo">
|
949
|
+
<a href="http://i.youku.com/u/UMTMyMjU5ODMzNg==" charset="hz-" target="_blank"><img src="http://static.youku.com/user/img/avatar/50/52.jpg" /></a>
|
950
|
+
</div>
|
951
|
+
<div class="user-name"> <a href="http://i.youku.com/u/UMTMyMjU5ODMzNg==" target="_blank" class='userName'>缪斯左右手</a></div>
|
952
|
+
<div class="user-action">
|
953
|
+
<div class="sub-btn" id="user_follow_info_videoinfo"><div class="form_btn form_btn_m form_btnmaj_m" id="subscribe_videoinfo" data-stat-role="ck" data-dest="subscription"><span class="form_btn_text">订 阅</span></div></div>
|
954
|
+
<div class="sub-state"><span class="num" id="user_fans_num_videoinfo"></span><b class="arrow"><em class="arrow-bg">◆</em><em class="arrow-co">◆</em></b></div>
|
955
|
+
</div>
|
956
|
+
</div>
|
957
|
+
<div class="yk-videoinfo">
|
958
|
+
<div class="text" id="text_short">既然青春留不住,“爱的代价”“哭”“领悟”;
|
959
|
+
越过“山丘”“笑红尘”,“希望”“你走你的路”。
|
960
|
+
|
961
|
+
李宗盛“既然青春留不住” 北京演唱会(歌单)
|
962
|
+
part1人生的梦醒时分
|
963
|
+
1.《爱情有什么道理》(张艾嘉)
|
964
|
+
2.《忙与盲》(张艾嘉)
|
965
|
+
3.《阿宗的三件事》(李宗盛)
|
966
|
+
4.《生命中的精灵》(李宗盛)
|
967
|
+
5....<a onclick="$('text_long').show();$('text_short').hide();Log.log(1,'');">详情</a></div>
|
968
|
+
<div class="text" id="text_long" style="display: none;">既然青春留不住,“爱的代价”“哭”“领悟”;<br />
|
969
|
+
越过“山丘”“笑红尘”,“希望”“你走你的路”。<br />
|
970
|
+
<br />
|
971
|
+
李宗盛“既然青春留不住” 北京演唱会(歌单)<br />
|
972
|
+
part1人生的梦醒时分<br />
|
973
|
+
1.《爱情有什么道理》(张艾嘉)<br />
|
974
|
+
2.《忙与盲》(张艾嘉)<br />
|
975
|
+
3.《阿宗的三件事》(李宗盛)<br />
|
976
|
+
4.《生命中的精灵》(李宗盛)<br />
|
977
|
+
5.《你像个孩子》(李宗盛)<br />
|
978
|
+
6.《因为寂寞》(张艾嘉)<br />
|
979
|
+
7.《梦醒时分》(陈淑桦)<br />
|
980
|
+
part2女性的爱的代价<br />
|
981
|
+
8.《漂洋过海来看你》(娃娃)<br />
|
982
|
+
9.《问》(陈淑桦)<br />
|
983
|
+
10.《领悟》(辛晓琪)<br />
|
984
|
+
11.《十二楼》(莫文蔚)<br />
|
985
|
+
12.《不必在乎我是谁》(林忆莲)<br />
|
986
|
+
13.《爱的代价》feat白安(张艾嘉)<br />
|
987
|
+
14.《寻找精灵》(白安未发行新歌)<br />
|
988
|
+
part3男性的爱欲浮世绘<br />
|
989
|
+
15.《因为单身的缘故》(杨宗纬)<br />
|
990
|
+
16.《寂寞难耐》(李宗盛)<br />
|
991
|
+
17.《我是真的爱你》(张信哲)<br />
|
992
|
+
18.《别怕我伤心》(张信哲)<br />
|
993
|
+
19.《听见有人叫你宝贝》(陈杰洲)<br />
|
994
|
+
20.《爱情少尉》(李宗盛)<br />
|
995
|
+
21.《爱如潮水》(张信哲)<br />
|
996
|
+
22.《让我欢喜让我忧》(周华健)<br />
|
997
|
+
23.《伤心地铁》(无印良品)<br />
|
998
|
+
<br />
|
999
|
+
24.《怀珠》feat李剑青(杨宗纬)<br />
|
1000
|
+
25.《匆匆》(李剑青未发行新歌)<br />
|
1001
|
+
26.《伐檀》(李剑青未发行新歌)<br />
|
1002
|
+
<br />
|
1003
|
+
part4见山又是山丘<br />
|
1004
|
+
27.《鬼迷心窍》(李宗盛)<br />
|
1005
|
+
28.《山丘》(李宗盛大陆首唱)<br />
|
1006
|
+
<br />
|
1007
|
+
Encore<br />
|
1008
|
+
29.《你们》(周华健)<br />
|
1009
|
+
30.《我是一只小小鸟》(赵传)<br />
|
1010
|
+
31.《给自己的歌》(李宗盛)<br />
|
1011
|
+
以上括号内标注为原唱。自己整理的,如有错误,欢迎指正。<a onclick="$('text_long').hide();$('text_short').show();Log.log(1,'');">隐藏</a></div>
|
1012
|
+
<div class="time">1年前 上传</div>
|
1013
|
+
<div class="relatedtags"><span class="tag"><a href="http://x.youku.com/tag/lists?t=10012" title="北京演唱会" target="_blank" _tagdata="pod=1&pos=1&type=2&id=159325444&ids=10012"><i class="ico-tag-blue"></i>北京演唱会</a></span><span class="tag"><a href="http://x.youku.com/tag/lists?t=234376" title="山丘" target="_blank" _tagdata="pod=1&pos=1&type=2&id=159325444&ids=234376"><i class="ico-tag-blue"></i>山丘</a></span><span class="tag"><a href="http://x.youku.com/tag/lists?t=27253" title="李宗盛" target="_blank" _tagdata="pod=1&pos=1&type=2&id=159325444&ids=27253"><i class="ico-tag-blue"></i>李宗盛</a></span><span class="tag"><a href="http://x.youku.com/tag/lists?t=153597" title="既然青春留不住" target="_blank" _tagdata="pod=1&pos=1&type=2&id=159325444&ids=153597"><i class="ico-tag-blue"></i>既然青春留不住</a></span></div>
|
1014
|
+
</div>
|
1015
|
+
</div>
|
1016
|
+
|
1017
|
+
<script>
|
1018
|
+
checkFollowStatus('user' , 'UMTMyMjU5ODMzNg==' ,'1');
|
1019
|
+
officialListFollowEvent.init('user','UMTMyMjU5ODMzNg==','videoinfo');
|
1020
|
+
</script>
|
1021
|
+
</div></div>
|
1022
|
+
<!--左侧中通广告位-->
|
1023
|
+
<div>
|
1024
|
+
<div id='ab_850'></div>
|
1025
|
+
|
1026
|
+
<div id='ab_v_323'></div>
|
1027
|
+
<script type="text/javascript">
|
1028
|
+
var ab_v_323=function(){
|
1029
|
+
Nova.addScript("http://v2html.atm.youku.com/vhtml?p=323" + adsParams + "&t="+(new Date).getTime());
|
1030
|
+
}
|
1031
|
+
setInterval(ab_v_323,15*60*1000);
|
1032
|
+
</script>
|
1033
|
+
<div class="clear"></div>
|
1034
|
+
</div>
|
1035
|
+
<script type="text/javascript">if (!window.Nova) Nova={};
|
1036
|
+
Nova.QComments = {
|
1037
|
+
_name : 'QComments',
|
1038
|
+
vpcommentContent : function(param, callback, id) { return nova_call('/QComments/~ajax/vpcommentContent', param, callback, id); },
|
1039
|
+
getPageBySid : function(param, callback, id) { return nova_call('/QComments/~ajax/getPageBySid', param, callback, id); },
|
1040
|
+
hotCommentContent : function(param, callback, id) { return nova_call('/QComments/~ajax/hotCommentContent', param, callback, id); },
|
1041
|
+
getStar : function(param, callback, id) { return nova_call('/QComments/~ajax/getStar', param, callback, id); },
|
1042
|
+
getReplyAndAt : function(param, callback, id) { return nova_call('/QComments/~ajax/getReplyAndAt', param, callback, id); },
|
1043
|
+
comment : function(param, callback, id) { return nova_call('/QComments/~ajax/comment', param, callback, id); },
|
1044
|
+
getUserIcon : function(param, callback, id) { return nova_call('/QComments/~ajax/getUserIcon', param, callback, id); },
|
1045
|
+
getStatus : function(param, callback, id) { return nova_call('/QComments/~ajax/getStatus', param, callback, id); },
|
1046
|
+
getUserStatus : function(param, callback, id) { return nova_call('/QComments/~ajax/getUserStatus', param, callback, id); },
|
1047
|
+
clearUserStatus : function(param, callback, id) { return nova_call('/QComments/~ajax/clearUserStatus', param, callback, id); },
|
1048
|
+
clearUserStatusNew : function(param, callback, id) { return nova_call('/QComments/~ajax/clearUserStatusNew', param, callback, id); },
|
1049
|
+
clearUcenterStatus : function(param, callback, id) { return nova_call('/QComments/~ajax/clearUcenterStatus', param, callback, id); },
|
1050
|
+
clearReset : function(param, callback, id) { return nova_call('/QComments/~ajax/clearReset', param, callback, id); },
|
1051
|
+
clearAllStatus : function(param, callback, id) { return nova_call('/QComments/~ajax/clearAllStatus', param, callback, id); },
|
1052
|
+
getSelf : function(param, callback, id) { return nova_call('/QComments/~ajax/getSelf', param, callback, id); },
|
1053
|
+
getUserSelf : function(param, callback, id) { return nova_call('/QComments/~ajax/getUserSelf', param, callback, id); },
|
1054
|
+
getReply : function(param, callback, id) { return nova_call('/QComments/~ajax/getReply', param, callback, id); },
|
1055
|
+
getVideoReply : function(param, callback, id) { return nova_call('/QComments/~ajax/getVideoReply', param, callback, id); },
|
1056
|
+
getRef : function(param, callback, id) { return nova_call('/QComments/~ajax/getRef', param, callback, id); },
|
1057
|
+
getMyListSize : function(param, callback, id) { return nova_call('/QComments/~ajax/getMyListSize', param, callback, id); },
|
1058
|
+
deleteComment : function(param, callback, id) { return nova_call('/QComments/~ajax/deleteComment', param, callback, id); },
|
1059
|
+
getFollowers : function(param, callback, id) { return nova_call('/QComments/~ajax/getFollowers', param, callback, id); },
|
1060
|
+
createFriend : function(param, callback, id) { return nova_call('/QComments/~ajax/createFriend', param, callback, id); },
|
1061
|
+
getCommentsNotice : function(param, callback, id) { return nova_call('/QComments/~ajax/getCommentsNotice', param, callback, id); },
|
1062
|
+
getTweetNotice : function(param, callback, id) { return nova_call('/QComments/~ajax/getTweetNotice', param, callback, id); },
|
1063
|
+
getMentionNotice : function(param, callback, id) { return nova_call('/QComments/~ajax/getMentionNotice', param, callback, id); },
|
1064
|
+
publishComment : function(param, callback, id) { return nova_call('/QComments/~ajax/publishComment', param, callback, id); },
|
1065
|
+
getServerUserId : function(param, callback, id) { return nova_call('/QComments/~ajax/getServerUserId', param, callback, id); },
|
1066
|
+
getVideoUserComments : function(param, callback, id) { return nova_call('/QComments/~ajax/getVideoUserComments', param, callback, id); },
|
1067
|
+
isNeedVerify : function(param, callback, id) { return nova_call('/QComments/~ajax/isNeedVerify', param, callback, id); },
|
1068
|
+
getSubCommentsContent : function(param, callback, id) { return nova_call('/QComments/~ajax/getSubCommentsContent', param, callback, id); },
|
1069
|
+
getCmts : function(param, callback, id) { return nova_call('/QComments/~ajax/getCmts', param, callback, id); },
|
1070
|
+
rmCmt : function(param, callback, id) { return nova_call('/QComments/~ajax/rmCmt', param, callback, id); },
|
1071
|
+
setTopCmt : function(param, callback, id) { return nova_call('/QComments/~ajax/setTopCmt', param, callback, id); },
|
1072
|
+
undoTopCmt : function(param, callback, id) { return nova_call('/QComments/~ajax/undoTopCmt', param, callback, id); }
|
1073
|
+
};</script>
|
1074
|
+
<div class="commentArea" id="commentArea">
|
1075
|
+
<div id="commentAreaBox" exclude="1">
|
1076
|
+
<span style="display:none" id="totalComment"></span>
|
1077
|
+
<!--评论区 start-->
|
1078
|
+
<a name="replyLocation" id="replyLocation"></a>
|
1079
|
+
<!--评论区 start-->
|
1080
|
+
<div class="commentAction loginBefore" id="commentAction" style="display:block">
|
1081
|
+
<div class="loginArea" id="loginArea"><a onclick="loginregGuide({'from':'comment','callBack':''});return false;" hzCharset="hz-4003764-1000494" charset="404-0-1">登录</a><span class="break">|</span><a href="http://hz.youku.com/red/click.php?tp=1&cp=4003765&cpp=1000494&url=http://www.youku.com/user/signup/from_comments" target="_blank">注册</a></div>
|
1082
|
+
<div class="wordlimit" id="wordlimit_new"><span id="maxinput" class="wordenter">0</span><span class="wordenter" id="maxvalue">/300</span></div>
|
1083
|
+
<div class="commentTextArea"><textarea class="form_input form_input_defaultvalue" id="content" name="content" onKeyDown="ctlentComments(event,'bt_comment');">有什么感想,您也来说说吧!</textarea></div>
|
1084
|
+
<div class="clear"></div>
|
1085
|
+
<div class="toolbar" id="toolbar">
|
1086
|
+
<div class="tool">
|
1087
|
+
<div class="insert_emoticon"><!--emoticon start-->
|
1088
|
+
<div index="0" class="dropmenu">
|
1089
|
+
<div class="handle">
|
1090
|
+
<a href="#" onclick="return false;" title="表情"><span class="icon"><em>表情</em></span>表情</a>
|
1091
|
+
</div>
|
1092
|
+
<div class="panel">
|
1093
|
+
<div class="faces">
|
1094
|
+
<div class="ico__faces_act">
|
1095
|
+
<a class="o1" href="#" title="赞" onclick="grinComments('[赞]'); DropMenus.hideall();return false;"><em>赞</em></a>
|
1096
|
+
<a class="o2" href="#" title="稀饭" onclick="grinComments('[稀饭]'); DropMenus.hideall();return false;"><em>稀饭</em></a>
|
1097
|
+
<a class="o3" href="#" title="愤怒" onclick="grinComments('[愤怒]'); DropMenus.hideall();return false;"><em>怒</em></a>
|
1098
|
+
<a class="o4" href="#" title="吐" onclick="grinComments('[吐]'); DropMenus.hideall();return false;"><em>吐</em></a>
|
1099
|
+
<a class="o5" href="#" title="无语" onclick="grinComments('[无语]');DropMenus.hideall(); return false;"><em>无语</em></a>
|
1100
|
+
<a class="o6" href="#" title="难过" onclick="grinComments('[难过]'); DropMenus.hideall();return false;"><em>难过</em></a>
|
1101
|
+
<a class="o7" href="#" title="汗" onclick="grinComments('[汗]'); DropMenus.hideall();return false;"><em>汗</em></a>
|
1102
|
+
<a class="o8" href="#" title="搞笑" onclick="grinComments('[搞笑]'); DropMenus.hideall();return false;"><em>搞笑</em></a>
|
1103
|
+
<a class="niu" href="#" title="牛" onclick="grinComments('[牛]'); DropMenus.hideall();return false;"><em>牛</em></a>
|
1104
|
+
<a class="qiang" href="#" title="强" onclick="grinComments('[强]'); DropMenus.hideall();return false;"><em>强</em></a>'+
|
1105
|
+
</div>
|
1106
|
+
</div>
|
1107
|
+
</div>
|
1108
|
+
</div>
|
1109
|
+
</div><!--emoticon end-->
|
1110
|
+
</div>
|
1111
|
+
<div class="splite" id="splite" style="display:none"></div>
|
1112
|
+
<div class="tool">
|
1113
|
+
<div class="insert_share" id="connect_div"> </div>
|
1114
|
+
</div>
|
1115
|
+
<div class="action">
|
1116
|
+
<div class="form_btn form_btn_m form_btnsub_m"><span class="form_btn_text" id="bt_comment" name="bt_comment" onclick="javascript:commentNew('','','',false);">发表评论</span></div>
|
1117
|
+
<div class="com_overlay" id="com_overlay" style="display:none">
|
1118
|
+
<div class="com_overlay_con">
|
1119
|
+
<div class="tips" id="tips"></div>
|
1120
|
+
</div>
|
1121
|
+
</div>
|
1122
|
+
</div>
|
1123
|
+
<div class="clear"></div>
|
1124
|
+
|
1125
|
+
<div class="validate" id="verify_code" style="display:none;">
|
1126
|
+
验证码: <input class="defaultext" type="text" onKeyDown="ctlentComments(event,'bt_comment');" name="verify_code_value" id="verify_code_value" value="输入右图的字符" />
|
1127
|
+
<span><img class="key" id="verify_code_img"/></span>
|
1128
|
+
<span>看不清, <a href="#" onclick="verify_code_comment(true);return false;">点此刷新</a></span>
|
1129
|
+
</div>
|
1130
|
+
|
1131
|
+
<div class="clear"></div>
|
1132
|
+
</div>
|
1133
|
+
</div>
|
1134
|
+
</div>
|
1135
|
+
<div id="musicOrz"></div>
|
1136
|
+
<div id="videocomment" class="videoComment">
|
1137
|
+
<div class="tab_inner" id="tab_inner">
|
1138
|
+
<div class="tabs">
|
1139
|
+
<ul id="CommentTab">
|
1140
|
+
<li _to="allcomment" id="allcomment" class="current"><a>全部评论<em class="num" id="allnum_cmt"></em></a></li>
|
1141
|
+
<li _to="hotcomment" id="hotcomment" name="hotcomment" style="display:none"><a>精华评论</a></li>
|
1142
|
+
<li _to="ownercomment" id="ownercomment" name="ownercomment" style="display:none"><a>上传者说</a></li>
|
1143
|
+
</ul>
|
1144
|
+
</div>
|
1145
|
+
</div>
|
1146
|
+
<div class="commentpop" id="comment_new" style="display:none"><a style="display:block;" charset="hz-4001208" href="javascript:loadCommentNew();">有新评论,刷新看看</a></div>
|
1147
|
+
<div class="commentpop" id="commentpop" style="display:none"><span onclick="this.parentNode.style.display='none';" class="close"></span>评论已提交,请等待审核通过。</div>
|
1148
|
+
<div id='videobodycommentlist'><div class="null"><img src=http://static.youku.com/v1.0.1013/v/img/loading_h8.gif /></div></div>
|
1149
|
+
<div class="returntop">
|
1150
|
+
<a href="javascript:;" onclick="javascript:window.scroll(0,760);VideoComments.focus();return true;" >发表评论</a>
|
1151
|
+
<div class="clear"></div>
|
1152
|
+
</div>
|
1153
|
+
<script type="text/javascript">
|
1154
|
+
window.COMMENT_DOMAIN='comments.youku.com';
|
1155
|
+
window.commentSid ='';
|
1156
|
+
var mainCateId = '95';
|
1157
|
+
|
1158
|
+
//是否使用联想词功能
|
1159
|
+
(function(){
|
1160
|
+
window.isShowMusicOrz = false;
|
1161
|
+
var cateIdForMusicOrz = [99];
|
1162
|
+
if (window.catId != undefined){
|
1163
|
+
window.isShowMusicOrz = cateIdForMusicOrz.join('-').indexOf(window.catId)>=0? true: false;
|
1164
|
+
}
|
1165
|
+
})();
|
1166
|
+
comments_tab();
|
1167
|
+
VideoComments.init(true);
|
1168
|
+
DropMenus.init('toolbar');
|
1169
|
+
//cateFlag = ([84,85,92,95,96,97,100].include(mainCateId)) ? true : false;
|
1170
|
+
cateFlag = true;
|
1171
|
+
|
1172
|
+
</script>
|
1173
|
+
</div>
|
1174
|
+
</div>
|
1175
|
+
|
1176
|
+
<!--左侧底通广告位-->
|
1177
|
+
<div>
|
1178
|
+
<div id='ab_747'></div>
|
1179
|
+
|
1180
|
+
<div id='ab_v_321'></div>
|
1181
|
+
<script type="text/javascript">
|
1182
|
+
var ab_v_321=function(){
|
1183
|
+
Nova.addScript("http://v2html.atm.youku.com/vhtml?p=321" + adsParams + "&t="+(new Date).getTime());
|
1184
|
+
}
|
1185
|
+
setInterval(ab_v_321,10*60*1000);
|
1186
|
+
</script>
|
1187
|
+
<div class="clear"></div>
|
1188
|
+
</div>
|
1189
|
+
|
1190
|
+
</div><!--mainCol end-->
|
1191
|
+
<div class="clear"></div>
|
1192
|
+
|
1193
|
+
<script type="text/javascript">
|
1194
|
+
window.nova_init_hook_ab_v = function(){
|
1195
|
+
Nova.addScript("http://v2html.atm.youku.com/vhtml?p=321,322,323,325,327" + adsParams);
|
1196
|
+
}
|
1197
|
+
</script>
|
1198
|
+
</div><!--end s_main-->
|
1199
|
+
</div><!--end s_body-->
|
1200
|
+
</div><!--end screen-->
|
1201
|
+
</div><!--end window-->
|
1202
|
+
|
1203
|
+
<!--toolbar-->
|
1204
|
+
<link rel="stylesheet" type="text/css" href="http://static.youku.com/v1.0.1013/index/css/sideTool.css"/>
|
1205
|
+
<script src="http://static.youku.com/v1.0.1013/index/js/sideTool.js"></script>
|
1206
|
+
|
1207
|
+
<link rel="stylesheet" type="text/css" href="http://static.youku.com/v1.0.1013/index/css/qfooter.css" />
|
1208
|
+
<div class="yk-footer" id="qfooter">
|
1209
|
+
<div class="yk-footer-con">
|
1210
|
+
<div class="footer-link">
|
1211
|
+
<ul>
|
1212
|
+
<li><label>资源</label></li>
|
1213
|
+
<li>
|
1214
|
+
<a href="http://tv.youku.com/">电视剧</a>
|
1215
|
+
<a href="http://movie.youku.com/">电影</a>
|
1216
|
+
<a href="http://zy.youku.com/">综艺</a>
|
1217
|
+
<a href="http://comic.youku.com/">动漫</a>
|
1218
|
+
<a href="http://music.youku.com/">音乐</a>
|
1219
|
+
<a href="http://www.youku.com/v/">全部</a>
|
1220
|
+
</li>
|
1221
|
+
<li><label>用户</label></li>
|
1222
|
+
<li>
|
1223
|
+
<a href="http://i.youku.com/i">个性化首页</a>
|
1224
|
+
<a href="http://i.youku.com/u/rz">优酷认证</a>
|
1225
|
+
<a href="http://share.youku.com/">分享计划</a>
|
1226
|
+
</li>
|
1227
|
+
</ul>
|
1228
|
+
<ul>
|
1229
|
+
<li><label>分类</label></li>
|
1230
|
+
<li>
|
1231
|
+
<a href="http://original.youku.com/">出品</a>
|
1232
|
+
<a href="http://news.youku.com/">资讯</a>
|
1233
|
+
<a href="http://mobile.youku.com/">拍客</a>
|
1234
|
+
<a href="http://sports.youku.com/">体育</a>
|
1235
|
+
<a href="http://auto.youku.com/">汽车</a>
|
1236
|
+
<a href="http://tech.youku.com/">科技</a>
|
1237
|
+
</li>
|
1238
|
+
<li>
|
1239
|
+
<a href="http://finance.youku.com/">财经</a>
|
1240
|
+
<a href="http://www.youku.com/v_showlist/t2d1c102.html">广告</a>
|
1241
|
+
<a href="http://ent.youku.com/">娱乐</a>
|
1242
|
+
<a href="http://dv.youku.com/">原创</a>
|
1243
|
+
<a href="http://game.youku.com/">游戏</a>
|
1244
|
+
<a href="http://gongyi.youku.com/">公益</a>
|
1245
|
+
</li>
|
1246
|
+
<li>
|
1247
|
+
<a href="http://life.youku.com">生活</a>
|
1248
|
+
<a href="http://fashion.youku.com/">时尚</a>
|
1249
|
+
<a href="http://edu.youku.com/">教育</a>
|
1250
|
+
<a href="http://travel.youku.com/">旅游</a>
|
1251
|
+
<a href="http://fun.youku.com/">搞笑</a>
|
1252
|
+
</li>
|
1253
|
+
</ul>
|
1254
|
+
<ul>
|
1255
|
+
<li><label>软件</label></li>
|
1256
|
+
<li><a href="http://mobile.youku.com/index/pc" target="_blank">PC客户端</a><a href="http://mobile.youku.com/index/assistant" target="_blank">助手</a></li>
|
1257
|
+
<li><a href="http://mobile.youku.com/index/wireless" target="_blank">手机客户端</a><a href="http://mobile.youku.com/index/paike" target="_blank">拍客</a></li>
|
1258
|
+
<li><a href="http://labs.youku.com/" target="_blank">实验室</a><a href="http://open.youku.com/" target="_blank">开放平台</a></li>
|
1259
|
+
</ul>
|
1260
|
+
<ul>
|
1261
|
+
<li><label>支持</label></li>
|
1262
|
+
<li><a id="sttrans" href="javascript:void(0);">繁体版</a></li>
|
1263
|
+
<li><a href="http://www.youku.com/service/feed/" target="_blank">在线反馈</a></li>
|
1264
|
+
<li><a href="http://www.youku.com/help/" target="_blank">帮助中心</a></li>
|
1265
|
+
</ul>
|
1266
|
+
<ul class="narrow">
|
1267
|
+
<li><label><a href="http://c.youku.com/aboutcn/youtu" target="_blank">优酷土豆集团</a></label></li>
|
1268
|
+
<li><label><a href="http://c.youku.com/abouteg/youtu" target="_blank">Youku Tudou Inc.</a></label></li>
|
1269
|
+
<li><a href="http://c.youku.com/aboutcn/youku" target="_blank">关于优酷</a></li>
|
1270
|
+
<li><a href="http://c.youku.com/link" target="_blank">友情链接</a></li>
|
1271
|
+
</ul>
|
1272
|
+
<ul class="narrow">
|
1273
|
+
<li><a href="http://c.youku.com/aboutcn/youku" target="_blank">优酷</a></li>
|
1274
|
+
<li><a href="http://c.youku.com/abouteg/youku" target="_blank">Youku.com</a></li>
|
1275
|
+
<li><a href="http://index.youku.com" target="_blank">优酷指数</a></li>
|
1276
|
+
<li><a href="http://special.zhaopin.com/bj/2013/hywl030666/jobs.htm" target="_blank">工作机会</a></li>
|
1277
|
+
</ul>
|
1278
|
+
<ul>
|
1279
|
+
<li><a href="http://www.tudou.com/about/cn/" target="_blank">土豆</a></li>
|
1280
|
+
<li><a href="http://www.tudou.com/about/en/" target="_blank">Tudou.com</a></li>
|
1281
|
+
<li><a href="http://i.youku.com/u/official/list/187" target="_blank">媒体合作</a></li>
|
1282
|
+
<li><a href="http://c.youku.com/aboutcn/adservice/" target="_blank">广告服务</a></li>
|
1283
|
+
</ul>
|
1284
|
+
</div>
|
1285
|
+
<div class="cert">
|
1286
|
+
<div class="cert-list">
|
1287
|
+
<p><span class="icon-footer-icp"></span> <a href="http://www.hd315.gov.cn/beian/view.asp?bianhao=010202006082400023" target="_blank">经营性网站备案信息</a></p>
|
1288
|
+
<p><span class="icon-footer-union"></span> <a href="http://www.itrust.org.cn/yz/pjwx.asp?wm=1786197705" target="_blank">中国互联网诚信联盟</a></p>
|
1289
|
+
<p><span class="icon-footer-report"></span> <a href="http://net.china.com.cn/" target="_blank">不良信息举报中心</a></p>
|
1290
|
+
<p><span class="icon-footer-icbu"></span> <a href="http://182.131.21.137/ccnt-apply/admin/business/preview/business-preview!lookUrlRFID.action?main_id=0D76560AE65141FF9FEFE3481D205C50 " target="_blank">网络文化经营单位</a></p>
|
1291
|
+
</div>
|
1292
|
+
<div class="cert-list">
|
1293
|
+
<p><a href="http://www.miibeian.gov.cn/" target="_blank">京ICP证060288号</a></p>
|
1294
|
+
<p><a href="http://c.youku.com/0108283" target="_blank">网络视听许可证0108283号</a></p>
|
1295
|
+
<p><a href="http://www.bjjubao.org/" target="_blank">北京互联网举报中心</a></p>
|
1296
|
+
<p><a href="http://www.bjwhzf.gov.cn/accuse.do" target="_blank">北京12318文化市场举报热线</a></p>
|
1297
|
+
</div>
|
1298
|
+
<div class="cert-list">
|
1299
|
+
<p><a href="http://c.youku.com/licence/" target="_blank">网络文化经营许可证 文网文[2011]0088-037号</a></p>
|
1300
|
+
<p><a href="http://c.youku.com/2012license/index" target="_blank">新出网证(京)字160号</a> 节目制作经营许可证京字670号</p>
|
1301
|
+
<p><a href="http://c.youku.com/20130209/" target="_blank">京卫网审[2013]第0209号</a> 京公网安备110000000017号</p>
|
1302
|
+
<p><a href="http://www.bj.cyberpolice.cn/index.htm" target="_blank">网络110报警服务</a> 药品服务许可证(京)-经营-2010-0048</p>
|
1303
|
+
</div>
|
1304
|
+
<div class="cert-list">
|
1305
|
+
<a class="qcode" target="_blank" href="http://hz.youku.com/red/click.php?tp=1&cp=4007955&cpp=1000703&url=http://mobile.youku.com/index/wireless">
|
1306
|
+
<span class="wrap"><span class="title">优酷App</span><br><span class="desc">扫描或点击下载</span></span>
|
1307
|
+
</a>
|
1308
|
+
</div>
|
1309
|
+
</div>
|
1310
|
+
<div class="copyright">
|
1311
|
+
请使用者仔细阅读优酷<a target="_blank" href="http://www.youku.com/pub/youku/service/agreement.shtml">使用协议</a>、<b><a target="_blank" href="http://c.youku.com/copyright/">版权声明</a></b>、<a target="_blank" href="http://c.youku.com/piracy/">反盗版盗链声明</a> Copyright©2014 优酷 youku.com 版权所有
|
1312
|
+
<span style="margin-left:20px;color:#555;">不良信息举报电话: 4008100580</span>
|
1313
|
+
</div>
|
1314
|
+
</div>
|
1315
|
+
</div>
|
1316
|
+
|
1317
|
+
<script type="text/javascript">
|
1318
|
+
var transjs = "http://static.youku.com/v1.0.1013/index/js/sttrans.js";
|
1319
|
+
|
1320
|
+
// 新个首与标准首页切换
|
1321
|
+
(function(){
|
1322
|
+
if (typeof window.yk_hpage_style != 'undefined' && document.getElementById('changeHomepageSwitch') &&
|
1323
|
+
typeof window.rollback_hpage != 'undefined' && window.rollback_hpage != true){
|
1324
|
+
if (window.yk_hpage_style == 'individual'){
|
1325
|
+
document.getElementById('changeHomepageSwitch').innerHTML = '去标准版';
|
1326
|
+
} else if (window.yk_hpage_style == 'standard'){
|
1327
|
+
document.getElementById('changeHomepageSwitch').innerHTML = '去个性版';
|
1328
|
+
}
|
1329
|
+
document.getElementById('changeHomepageSwitch').show();
|
1330
|
+
|
1331
|
+
if (window.yk_hpage_style == 'individual'){ //个性化首页,导航处出现定制抽屉的按钮
|
1332
|
+
document.getElementById('showNavCustomize').show();
|
1333
|
+
}
|
1334
|
+
// 注册事件
|
1335
|
+
document.getElementById('changeHomepageSwitch').onclick=function(){
|
1336
|
+
var setVal = window.yk_hpage_style == 'individual'?1 :0;
|
1337
|
+
Nova.Cookie.set('__hpage_style', setVal, 365, '/', 'youku.com');
|
1338
|
+
if (!islogin()){
|
1339
|
+
login({type:'individual1', callBack:''})
|
1340
|
+
} else {
|
1341
|
+
if (window.yk_hpage_style == 'individual'){ //当前个首,到标准首页
|
1342
|
+
window.location.href = 'http://www.youku.com/';
|
1343
|
+
}else {
|
1344
|
+
window.location.href = 'http://www.youku.com/i/';
|
1345
|
+
}
|
1346
|
+
}
|
1347
|
+
};
|
1348
|
+
}
|
1349
|
+
})(window)
|
1350
|
+
|
1351
|
+
window.nova_init_hook_sttrans = function() {
|
1352
|
+
var cstt = Nova.Cookie.get('stt'),handler = $('sttrans');
|
1353
|
+
var _trans = function() {
|
1354
|
+
var t = $A(arguments).shift();
|
1355
|
+
if(typeof(trans) == 'undefined') {
|
1356
|
+
var jselm = document.createElement('script');
|
1357
|
+
jselm = $$('head')[0].appendChild(jselm);
|
1358
|
+
if(typeof(jselm) != 'undefined') {
|
1359
|
+
jselm.onreadystatechange = function() {
|
1360
|
+
if(this.readyState == 'loaded' || this.readyState == 'complete') {
|
1361
|
+
try {trans(t)} catch(e){}
|
1362
|
+
}
|
1363
|
+
}
|
1364
|
+
jselm.onload = function() {trans(t);}
|
1365
|
+
}
|
1366
|
+
jselm.src = transjs;
|
1367
|
+
} else { trans(t); }
|
1368
|
+
}
|
1369
|
+
if(cstt) {
|
1370
|
+
_trans(); if(handler) handler.innerHTML = '简体版';
|
1371
|
+
}
|
1372
|
+
if(!handler) return;
|
1373
|
+
var _evth = function () {
|
1374
|
+
if(Nova.Cookie.get('stt')) {
|
1375
|
+
_trans(true);handler.innerHTML = '繁體版';
|
1376
|
+
Nova.Cookie.set('stt', '', -1);
|
1377
|
+
} else {
|
1378
|
+
_trans();handler.innerHTML = '简体版';
|
1379
|
+
Nova.Cookie.set('stt', 1, 10);
|
1380
|
+
}
|
1381
|
+
}.bind(handler);
|
1382
|
+
Event.observe(handler, 'click', _evth);
|
1383
|
+
}
|
1384
|
+
</script>
|
1385
|
+
|
1386
|
+
|
1387
|
+
<script src="http://static.youku.com/v1.0.1013/index/js/iresearch.js"></script>
|
1388
|
+
<script src="http://static.youku.com/v1.0.1013/paycenter/js/cps.js"></script>
|
1389
|
+
<!-- Begin comScore Tag -->
|
1390
|
+
<script>
|
1391
|
+
document.write(unescape("%3Cscript src='" + (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js' %3E%3C/script%3E"));
|
1392
|
+
</script>
|
1393
|
+
|
1394
|
+
<script>
|
1395
|
+
COMSCORE.beacon({
|
1396
|
+
c1:2,
|
1397
|
+
c2:7293931,
|
1398
|
+
c3:window.catId?window.catId:"",
|
1399
|
+
c4:"",
|
1400
|
+
c5:"",
|
1401
|
+
c6:"",
|
1402
|
+
c15:""
|
1403
|
+
});
|
1404
|
+
</script>
|
1405
|
+
<noscript>
|
1406
|
+
<img src="http://b.scorecardresearch.com/p?c1=2&c2=7293931&c3=&c4=&c5=&c6=&c15=&cj=1" />
|
1407
|
+
</noscript>
|
1408
|
+
<!-- End comScore Tag -->
|
1409
|
+
|
1410
|
+
|
1411
|
+
(function(){
|
1412
|
+
var checkFlash = function(){
|
1413
|
+
var hasFlash=0; //是否安装了flash
|
1414
|
+
var flashVersion=0; //flash版本
|
1415
|
+
try{
|
1416
|
+
if(document.all){
|
1417
|
+
var swf = new ActiveXObject('ShockwaveFlash.ShockwaveFlash');
|
1418
|
+
if(swf) {
|
1419
|
+
hasFlash=1;
|
1420
|
+
}
|
1421
|
+
}else{
|
1422
|
+
if (navigator.plugins && navigator.plugins.length > 0){
|
1423
|
+
var swf=navigator.plugins["Shockwave Flash"];
|
1424
|
+
if (swf){
|
1425
|
+
hasFlash=1;
|
1426
|
+
}
|
1427
|
+
}
|
1428
|
+
}
|
1429
|
+
}catch(ex){hasFlash=1;}
|
1430
|
+
return hasFlash;
|
1431
|
+
};
|
1432
|
+
var hasF = checkFlash();
|
1433
|
+
if(hasF == 0){
|
1434
|
+
var logUrl = "http://passport-log.youku.com/logsys/logstorage/append?project=uniplayer&log={error:9}"+"&"+Math.random();
|
1435
|
+
var img = new Image();
|
1436
|
+
img.src = logUrl;
|
1437
|
+
img.onload = function(){};
|
1438
|
+
}
|
1439
|
+
})();
|
1440
|
+
|
1441
|
+
</script>
|
1442
|
+
</body>
|
1443
|
+
</html>
|
1444
|
+
<script type="text/javascript" src="http://static.youku.com/v1.0.1013/index/js/tdstat.js"></script>
|