bnet_scraper 0.3.1 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.md +9 -0
- data/Gemfile +1 -1
- data/LICENSE +1 -1
- data/README.md +51 -31
- data/bnet_scraper.gemspec +3 -1
- data/fixtures/vcr_cassettes/demon_achievements.yml +246 -0
- data/fixtures/vcr_cassettes/demon_leagues.yml +359 -0
- data/fixtures/vcr_cassettes/demon_match_history.yml +241 -0
- data/fixtures/vcr_cassettes/demon_matches.yml +240 -0
- data/fixtures/vcr_cassettes/demon_profile.yml +1428 -0
- data/fixtures/vcr_cassettes/demon_profile_leagues.yml +1291 -0
- data/fixtures/vcr_cassettes/full_demon_scrape.yml +5449 -0
- data/fixtures/vcr_cassettes/invalid_achievement.yml +199 -0
- data/fixtures/vcr_cassettes/invalid_leagues.yml +199 -0
- data/fixtures/vcr_cassettes/invalid_matches.yml +199 -0
- data/fixtures/vcr_cassettes/invalid_profile.yml +199 -0
- data/fixtures/vcr_cassettes/new_league.yml +595 -0
- data/fixtures/vcr_cassettes/profile_invalid.yml +199 -0
- data/fixtures/vcr_cassettes/profile_not_laddered.yml +443 -0
- data/fixtures/vcr_cassettes/realm_status.yml +578 -0
- data/lib/bnet_scraper/starcraft2.rb +7 -8
- data/lib/bnet_scraper/starcraft2/achievement_scraper.rb +5 -5
- data/lib/bnet_scraper/starcraft2/league.rb +54 -0
- data/lib/bnet_scraper/starcraft2/league_scraper.rb +3 -1
- data/lib/bnet_scraper/starcraft2/match.rb +15 -0
- data/lib/bnet_scraper/starcraft2/match_history_scraper.rb +9 -18
- data/lib/bnet_scraper/starcraft2/profile.rb +45 -0
- data/lib/bnet_scraper/starcraft2/profile_scraper.rb +68 -44
- data/spec/spec_helper.rb +14 -0
- data/spec/starcraft2/achievement_scraper_spec.rb +67 -83
- data/spec/starcraft2/league_scraper_spec.rb +25 -59
- data/spec/starcraft2/league_spec.rb +43 -0
- data/spec/starcraft2/match_history_scraper_spec.rb +19 -39
- data/spec/starcraft2/profile_scraper_spec.rb +36 -141
- data/spec/starcraft2/profile_spec.rb +46 -0
- data/spec/starcraft2/status_scraper_spec.rb +12 -5
- data/spec/starcraft2_spec.rb +19 -36
- data/spec/support/shared/sc2_scraper.rb +28 -13
- metadata +57 -42
- data/spec/support/achievements.html +0 -1156
- data/spec/support/failure.html +0 -565
- data/spec/support/initial_league.html +0 -1082
- data/spec/support/initial_leagues.html +0 -3598
- data/spec/support/league.html +0 -8310
- data/spec/support/leagues.html +0 -3810
- data/spec/support/load_fakeweb.rb +0 -42
- data/spec/support/matches.html +0 -1228
- data/spec/support/no_ladder.html +0 -967
- data/spec/support/no_ladder_leagues.html +0 -664
- data/spec/support/profile.html +0 -1074
- data/spec/support/status.html +0 -1
@@ -1,42 +0,0 @@
|
|
1
|
-
require 'fakeweb'
|
2
|
-
|
3
|
-
profile_html = File.read File.dirname(__FILE__) + '/profile.html'
|
4
|
-
leagues_html = File.read File.dirname(__FILE__) + '/leagues.html'
|
5
|
-
league_html = File.read File.dirname(__FILE__) + '/league.html'
|
6
|
-
achievements_html = File.read File.dirname(__FILE__) + '/achievements.html'
|
7
|
-
matches_html = File.read File.dirname(__FILE__) + '/matches.html'
|
8
|
-
status_html = File.read File.dirname(__FILE__) + '/status.html'
|
9
|
-
failure_html = File.read File.dirname(__FILE__) + '/failure.html'
|
10
|
-
no_ladder_html = File.read File.dirname(__FILE__) + '/no_ladder.html'
|
11
|
-
no_leagues_html = File.read File.dirname(__FILE__) + '/no_ladder_leagues.html'
|
12
|
-
first_league_html = File.read File.dirname(__FILE__) + '/initial_league.html'
|
13
|
-
first_leagues_html= File.read File.dirname(__FILE__) + '/initial_leagues.html'
|
14
|
-
|
15
|
-
|
16
|
-
FakeWeb.allow_net_connect = false
|
17
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/SomeDude/', body: failure_html, status: 404, content_type: 'text/html'
|
18
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/SomeDude/achievements/', body: failure_html, status: 404, content_type: 'text/html'
|
19
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/SomeDude/leagues/12345', body: failure_html, status: 404, content_type: 'text/html'
|
20
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/SomeDude/matches', body: failure_html, status: 404, content_type: 'text/html'
|
21
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/Demon/', body: profile_html, status: 200, content_type: 'text/html'
|
22
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/Demon/ladder/leagues', body: leagues_html, status: 200, content_type: 'text/html'
|
23
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/Demon/ladder/12345', body: league_html, status: 200, content_type: 'text/html'
|
24
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/Demon/ladder/96905', body: league_html, status: 200, content_type: 'text/html'
|
25
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/Demon/ladder/96716', body: league_html, status: 200, content_type: 'text/html'
|
26
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/Demon/ladder/98162', body: league_html, status: 200, content_type: 'text/html'
|
27
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/Demon/ladder/97369', body: league_html, status: 200, content_type: 'text/html'
|
28
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/Demon/ladder/96828', body: league_html, status: 200, content_type: 'text/html'
|
29
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/Demon/ladder/97985', body: league_html, status: 200, content_type: 'text/html'
|
30
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/Demon/ladder/98523', body: league_html, status: 200, content_type: 'text/html'
|
31
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/Demon/ladder/96863', body: league_html, status: 200, content_type: 'text/html'
|
32
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/Demon/ladder/97250', body: league_html, status: 200, content_type: 'text/html'
|
33
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/Demon/ladder/96830', body: league_html, status: 200, content_type: 'text/html'
|
34
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/Demon/ladder/98336', body: league_html, status: 200, content_type: 'text/html'
|
35
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/Demon/ladder/98936', body: league_html, status: 200, content_type: 'text/html'
|
36
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/Demon/achievements/', body: achievements_html, status: 200, content_type: 'text/html'
|
37
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/2377239/1/Demon/matches', body: matches_html, status: 200, content_type: 'text/html'
|
38
|
-
FakeWeb.register_uri :get, 'http://www.teamliquid.net/forum/viewmessage.php?topic_id=138846', body: status_html, status: 200, content_type: 'text/html'
|
39
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/3354437/1/ClarkeKent/', body: no_ladder_html, status: 200, content_type: 'text/html'
|
40
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/3354437/1/ClarkeKent/ladder/leagues', body: no_leagues_html, status: 200, content_type: 'text/html'
|
41
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/3513522/1/Heritic/', body: first_league_html, status: 200, content_type: 'text/html'
|
42
|
-
FakeWeb.register_uri :get, 'http://us.battle.net/sc2/en/profile/3513522/1/Heritic/ladder/leagues', body: first_leagues_html, status: 200, content_type: 'text/html'
|
data/spec/support/matches.html
DELETED
@@ -1,1228 +0,0 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
5
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us">
|
6
|
-
<head xmlns:og="http://ogp.me/ns#" xmlns:fb="http://ogp.me/ns/fb#">
|
7
|
-
<title>Match History - Demon - StarCraft II</title>
|
8
|
-
<meta content="false" http-equiv="imagetoolbar" />
|
9
|
-
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
|
10
|
-
<link rel="shortcut icon" href="/sc2/static/local-common/images/favicons/sc2.ico" type="image/x-icon"/>
|
11
|
-
<link rel="search" type="application/opensearchdescription+xml" href="http://us.battle.net/en-us/data/opensearch" title="Battle.net Search" />
|
12
|
-
<link rel="stylesheet" type="text/css" media="all" href="/sc2/static/local-common/css/common.css?v39" />
|
13
|
-
<!--[if IE]> <link rel="stylesheet" type="text/css" media="all" href="/sc2/static/local-common/css/common-ie.css?v39" />
|
14
|
-
<![endif]-->
|
15
|
-
<!--[if IE 6]> <link rel="stylesheet" type="text/css" media="all" href="/sc2/static/local-common/css/common-ie6.css?v39" />
|
16
|
-
<![endif]-->
|
17
|
-
<!--[if IE 7]> <link rel="stylesheet" type="text/css" media="all" href="/sc2/static/local-common/css/common-ie7.css?v39" />
|
18
|
-
<![endif]-->
|
19
|
-
<link title="StarCraft II - News" href="/sc2/en/feed/news" type="application/atom+xml" rel="alternate"/>
|
20
|
-
<link rel="stylesheet" type="text/css" media="all" href="/sc2/static/css/sc2.css?v19" />
|
21
|
-
<link rel="stylesheet" type="text/css" media="all" href="/sc2/static/css/profile/profile.css?v19" />
|
22
|
-
<!--[if IE 6]> <link rel="stylesheet" type="text/css" media="all" href="/sc2/static/css/profile/profile-ie6.css?v19" />
|
23
|
-
<![endif]-->
|
24
|
-
<!--[if IE]> <link rel="stylesheet" type="text/css" media="all" href="/sc2/static/css/sc2-ie.css?v19" />
|
25
|
-
<![endif]-->
|
26
|
-
<!--[if IE 6]> <link rel="stylesheet" type="text/css" media="all" href="/sc2/static/css/sc2-ie6.css?v19" />
|
27
|
-
<![endif]-->
|
28
|
-
<!--[if IE 7]> <link rel="stylesheet" type="text/css" media="all" href="/sc2/static/css/sc2-ie7.css?v19" />
|
29
|
-
<![endif]-->
|
30
|
-
<script type="text/javascript" src="/sc2/static/local-common/js/third-party/jquery.js?v39"></script>
|
31
|
-
<script type="text/javascript" src="/sc2/static/local-common/js/core.js?v39"></script>
|
32
|
-
<script type="text/javascript" src="/sc2/static/local-common/js/tooltip.js?v39"></script>
|
33
|
-
<!--[if IE 6]> <script type="text/javascript">
|
34
|
-
//<![CDATA[
|
35
|
-
try { document.execCommand('BackgroundImageCache', false, true) } catch(e) {}
|
36
|
-
//]]>
|
37
|
-
</script>
|
38
|
-
<![endif]-->
|
39
|
-
<script type="text/javascript">
|
40
|
-
//<![CDATA[
|
41
|
-
Core.staticUrl = '/sc2/static';
|
42
|
-
Core.sharedStaticUrl= '/sc2/static/local-common';
|
43
|
-
Core.baseUrl = '/sc2/en';
|
44
|
-
Core.projectUrl = '/sc2';
|
45
|
-
Core.cdnUrl = 'http://us.media.blizzard.com';
|
46
|
-
Core.supportUrl = 'http://us.battle.net/support/';
|
47
|
-
Core.secureSupportUrl= 'https://us.battle.net/support/';
|
48
|
-
Core.project = 'sc2';
|
49
|
-
Core.locale = 'en-us';
|
50
|
-
Core.language = 'en';
|
51
|
-
Core.buildRegion = 'us';
|
52
|
-
Core.region = 'us';
|
53
|
-
Core.shortDateFormat= 'MM/dd/yyyy';
|
54
|
-
Core.dateTimeFormat = 'MM/dd/yyyy hh:mm a';
|
55
|
-
Core.loggedIn = false;
|
56
|
-
Flash.videoPlayer = 'http://us.media.blizzard.com/global-video-player/themes/sc2/video-player.swf';
|
57
|
-
Flash.videoBase = 'http://us.media.blizzard.com/sc2/media/videos';
|
58
|
-
Flash.ratingImage = 'http://us.media.blizzard.com/global-video-player/ratings/sc2/en-us.jpg';
|
59
|
-
Flash.expressInstall= 'http://us.media.blizzard.com/global-video-player/expressInstall.swf';
|
60
|
-
var _gaq = _gaq || [];
|
61
|
-
_gaq.push(['_setAccount', 'UA-544112-16']);
|
62
|
-
_gaq.push(['_setDomainName', '.battle.net']);
|
63
|
-
_gaq.push(['_setAllowLinker', true]);
|
64
|
-
_gaq.push(['_trackPageview']);
|
65
|
-
_gaq.push(['_trackPageLoadTime']);
|
66
|
-
//]]>
|
67
|
-
</script>
|
68
|
-
<meta property="og:site_name" content="StarCraft II" />
|
69
|
-
<meta property="og:title" content="Match History - Demon - StarCraft II" />
|
70
|
-
<meta property="og:image" content="http://us.media.blizzard.com/battle.net/logos/og-sc2.png" />
|
71
|
-
<meta property="og:url" content="http://us.battle.net/sc2/en/profile/2377239/1/Demon/matches" />
|
72
|
-
<meta property="og:type" content="website" />
|
73
|
-
<meta property="og:locale" content="en_US" />
|
74
|
-
<meta property="fb:admins" content="470332842321,433163104416"/>
|
75
|
-
</head>
|
76
|
-
<body class="en-us"><div id="wrapper">
|
77
|
-
<div id="header">
|
78
|
-
<div class="search-bar">
|
79
|
-
<form action="/sc2/en/search" method="get" autocomplete="off">
|
80
|
-
<div>
|
81
|
-
<input type="text" class="search-field input" name="q" id="search-field" maxlength="200" tabindex="40" alt="Search StarCraft II" value="Search StarCraft II" />
|
82
|
-
<input type="submit" class="search-button" value="" tabindex="41" />
|
83
|
-
</div>
|
84
|
-
</form>
|
85
|
-
</div>
|
86
|
-
<h1 id="logo"><a href="/sc2/en/">Battle.net</a></h1>
|
87
|
-
<div id="header-plate">
|
88
|
-
<ul class="menu" id="menu">
|
89
|
-
<li class="menu-home">
|
90
|
-
<a href="/sc2/en/">
|
91
|
-
<span>Home</span>
|
92
|
-
</a>
|
93
|
-
</li>
|
94
|
-
<li class="menu-game">
|
95
|
-
<a href="/sc2/en/game/">
|
96
|
-
<span>Game Guide</span>
|
97
|
-
</a>
|
98
|
-
</li>
|
99
|
-
<li class="menu-community">
|
100
|
-
<a href="/sc2/en/community/">
|
101
|
-
<span>Community</span>
|
102
|
-
</a>
|
103
|
-
</li>
|
104
|
-
<li class="menu-media">
|
105
|
-
<a href="/sc2/en/media/">
|
106
|
-
<span>Media</span>
|
107
|
-
</a>
|
108
|
-
</li>
|
109
|
-
<li class="menu-forums">
|
110
|
-
<a href="/sc2/en/forum/">
|
111
|
-
<span>Forums</span>
|
112
|
-
</a>
|
113
|
-
</li>
|
114
|
-
<li class="menu-services">
|
115
|
-
<a href="/sc2/en/services/">
|
116
|
-
<span>Services</span>
|
117
|
-
</a>
|
118
|
-
</li>
|
119
|
-
</ul>
|
120
|
-
<div id="user-plate" class="ajax-update">
|
121
|
-
<div id="user-empty">
|
122
|
-
<a href="?login" onclick="return Login.open('https://us.battle.net/login/login.frag')"><strong>Log in</strong></a> with your Battle.net account to post comments and personalize your site content.
|
123
|
-
</div>
|
124
|
-
</div>
|
125
|
-
<ol class="ui-breadcrumb">
|
126
|
-
<li>
|
127
|
-
<a href="/sc2/en/" rel="np">
|
128
|
-
StarCraft II
|
129
|
-
</a>
|
130
|
-
</li>
|
131
|
-
<li>
|
132
|
-
<a href="/sc2/en/profile/2377239/1/Demon/" rel="np">
|
133
|
-
Demon
|
134
|
-
</a>
|
135
|
-
</li>
|
136
|
-
<li class="last">
|
137
|
-
<a href="/sc2/en/profile/2377239/1/Demon/matches" rel="np">
|
138
|
-
Match History
|
139
|
-
</a>
|
140
|
-
</li>
|
141
|
-
</ol>
|
142
|
-
</div>
|
143
|
-
</div>
|
144
|
-
<div id="content">
|
145
|
-
<div id="content-top">
|
146
|
-
<div id="content-bot"> <div id="profile-wrapper">
|
147
|
-
<div id="profile-header">
|
148
|
-
<div id="portrait" onclick="Core.goTo('/sc2/en/profile/2377239/1/Demon/');">
|
149
|
-
|
150
|
-
|
151
|
-
<span class="icon-frame "
|
152
|
-
style="background: url('/sc2/static/local-common/images/sc2/portraits/1-90.jpg?v39') -270px -90px no-repeat; width: 90px; height: 90px;">
|
153
|
-
|
154
|
-
</span>
|
155
|
-
|
156
|
-
<div id="portrait-frame"> </div>
|
157
|
-
</div>
|
158
|
-
|
159
|
-
<div id="current-decals">
|
160
|
-
<div class="current-decal" data-tooltip="Zerg Decal">
|
161
|
-
|
162
|
-
|
163
|
-
<span class="icon-frame "
|
164
|
-
style="background: url('/sc2/static/local-common/images/sc2/decals/0-45.jpg?v39') -90px -270px no-repeat; width: 45px; height: 45px;">
|
165
|
-
|
166
|
-
<a href="/sc2/en/profile/2377239/1/Demon/rewards/zerg-decals#reward-2359737029" style="height: 45px"> </a>
|
167
|
-
</span>
|
168
|
-
</div>
|
169
|
-
|
170
|
-
<div class="current-decal" data-tooltip="Protoss Decal">
|
171
|
-
|
172
|
-
|
173
|
-
<span class="icon-frame "
|
174
|
-
style="background: url('/sc2/static/local-common/images/sc2/decals/0-45.jpg?v39') -270px -225px no-repeat; width: 45px; height: 45px;">
|
175
|
-
|
176
|
-
<a href="/sc2/en/profile/2377239/1/Demon/rewards/protoss-decals#reward-979617312" style="height: 45px"> </a>
|
177
|
-
</span>
|
178
|
-
</div>
|
179
|
-
|
180
|
-
<div class="current-decal" data-tooltip="Terran Decal">
|
181
|
-
|
182
|
-
|
183
|
-
<span class="icon-frame "
|
184
|
-
style="background: url('/sc2/static/local-common/images/sc2/decals/0-45.jpg?v39') 0px 0px no-repeat; width: 45px; height: 45px;">
|
185
|
-
|
186
|
-
<a href="/sc2/en/profile/2377239/1/Demon/rewards/terran-decals#reward-18730036" style="height: 45px"> </a>
|
187
|
-
</span>
|
188
|
-
</div>
|
189
|
-
</div>
|
190
|
-
|
191
|
-
<h2><a href="/sc2/en/profile/2377239/1/Demon/">Demon</a></h2>
|
192
|
-
<h3>3630</h3>
|
193
|
-
</div>
|
194
|
-
|
195
|
-
<div id="profile-left">
|
196
|
-
<ul id="profile-menu">
|
197
|
-
<li>
|
198
|
-
<a href="/sc2/en/profile/2377239/1/Demon/">
|
199
|
-
|
200
|
-
|
201
|
-
Profile
|
202
|
-
</a>
|
203
|
-
</li>
|
204
|
-
<li>
|
205
|
-
<a href="achievements/">
|
206
|
-
<span class="forward"></span>
|
207
|
-
|
208
|
-
Achievements
|
209
|
-
</a>
|
210
|
-
</li>
|
211
|
-
<li class="active">
|
212
|
-
<a href="matches">
|
213
|
-
|
214
|
-
|
215
|
-
Match History
|
216
|
-
</a>
|
217
|
-
</li>
|
218
|
-
<li>
|
219
|
-
<a href="rewards/">
|
220
|
-
<span class="forward"></span>
|
221
|
-
|
222
|
-
Rewards
|
223
|
-
</a>
|
224
|
-
</li>
|
225
|
-
<li>
|
226
|
-
<a href="ladder/">
|
227
|
-
<span class="forward"></span>
|
228
|
-
|
229
|
-
Leagues & Ladders
|
230
|
-
</a>
|
231
|
-
</li>
|
232
|
-
</ul>
|
233
|
-
|
234
|
-
|
235
|
-
</div>
|
236
|
-
|
237
|
-
<div id="profile-right">
|
238
|
-
|
239
|
-
<div id="match-history">
|
240
|
-
<div class="data-title">
|
241
|
-
<div class="data-options">
|
242
|
-
<div class="ui-dropdown" id="type-filter">
|
243
|
-
<select>
|
244
|
-
<option value="">All</option>
|
245
|
-
<option value="SOLO">1v1</option>
|
246
|
-
<option value="TWOS">2v2</option>
|
247
|
-
<option value="THREES">3v3</option>
|
248
|
-
<option value="FOURS">4v4</option>
|
249
|
-
<option value="FFA">FFA</option>
|
250
|
-
<option value="CO_OP">Co-Op</option>
|
251
|
-
<option value="CUSTOM">Custom</option>
|
252
|
-
</select>
|
253
|
-
</div>
|
254
|
-
</div>
|
255
|
-
|
256
|
-
<div class="data-label">
|
257
|
-
<h3 class="title-ladder">Match History</h3>
|
258
|
-
</div>
|
259
|
-
|
260
|
-
<script type="text/javascript">
|
261
|
-
$(function() {
|
262
|
-
Filter.initialize(function(params) {
|
263
|
-
if (params.filter) {
|
264
|
-
Sc2.filterContent('#match-history', 'match-row', params.filter);
|
265
|
-
$("#type-filter select").val(params.filter);
|
266
|
-
}
|
267
|
-
});
|
268
|
-
|
269
|
-
$('.ui-dropdown').dropdown({
|
270
|
-
callback: function(dropdown, value) {
|
271
|
-
value = value.toLowerCase();
|
272
|
-
|
273
|
-
Filter.addParam('filter', value);
|
274
|
-
Filter.applyQuery();
|
275
|
-
|
276
|
-
Sc2.filterContent('#match-history', 'match-row', value);
|
277
|
-
}
|
278
|
-
});
|
279
|
-
});
|
280
|
-
</script>
|
281
|
-
</div>
|
282
|
-
|
283
|
-
|
284
|
-
<table class="data-table">
|
285
|
-
<thead>
|
286
|
-
<tr>
|
287
|
-
<th> </th>
|
288
|
-
<th>Map</th>
|
289
|
-
<th>Type</th>
|
290
|
-
<th>Outcome</th>
|
291
|
-
<th>Date</th>
|
292
|
-
</tr>
|
293
|
-
</thead>
|
294
|
-
<tbody>
|
295
|
-
|
296
|
-
<tr class="match-row custom">
|
297
|
-
<td style="width: 15px" data-tooltip="#match-mode-0">
|
298
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
299
|
-
|
300
|
-
<div id="match-mode-0" style="display: none">
|
301
|
-
<strong>Type:</strong> Custom<br />
|
302
|
-
<strong>Speed:</strong> Faster
|
303
|
-
</div>
|
304
|
-
</td>
|
305
|
-
<td>Bx Monobattle - Sand Canyon (Fix)</td>
|
306
|
-
<td class="align-center">Custom</td>
|
307
|
-
<td>
|
308
|
-
<span class="match-win">Win</span>
|
309
|
-
</td>
|
310
|
-
<td class="align-right">
|
311
|
-
3/12/2012
|
312
|
-
</td>
|
313
|
-
</tr>
|
314
|
-
<tr class="match-row custom">
|
315
|
-
<td style="width: 15px" data-tooltip="#match-mode-1">
|
316
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
317
|
-
|
318
|
-
<div id="match-mode-1" style="display: none">
|
319
|
-
<strong>Type:</strong> Custom<br />
|
320
|
-
<strong>Speed:</strong> Faster
|
321
|
-
</div>
|
322
|
-
</td>
|
323
|
-
<td>Bx Monobattle - Sand Canyon (Fix)</td>
|
324
|
-
<td class="align-center">Custom</td>
|
325
|
-
<td>
|
326
|
-
<span class="match-win">Win</span>
|
327
|
-
</td>
|
328
|
-
<td class="align-right">
|
329
|
-
3/12/2012
|
330
|
-
</td>
|
331
|
-
</tr>
|
332
|
-
<tr class="match-row fours">
|
333
|
-
<td style="width: 15px" data-tooltip="#match-mode-2">
|
334
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
335
|
-
|
336
|
-
<div id="match-mode-2" style="display: none">
|
337
|
-
<strong>Type:</strong> 4v4<br />
|
338
|
-
<strong>Speed:</strong> Faster
|
339
|
-
</div>
|
340
|
-
</td>
|
341
|
-
<td>Deadlock Ridge</td>
|
342
|
-
<td class="align-center">4v4</td>
|
343
|
-
<td>
|
344
|
-
<span class="match-loss">Loss</span>
|
345
|
-
</td>
|
346
|
-
<td class="align-right">
|
347
|
-
3/12/2012
|
348
|
-
</td>
|
349
|
-
</tr>
|
350
|
-
<tr class="match-row fours">
|
351
|
-
<td style="width: 15px" data-tooltip="#match-mode-3">
|
352
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
353
|
-
|
354
|
-
<div id="match-mode-3" style="display: none">
|
355
|
-
<strong>Type:</strong> 4v4<br />
|
356
|
-
<strong>Speed:</strong> Faster
|
357
|
-
</div>
|
358
|
-
</td>
|
359
|
-
<td>Deadlock Ridge</td>
|
360
|
-
<td class="align-center">4v4</td>
|
361
|
-
<td>
|
362
|
-
<span class="match-win">Win</span>
|
363
|
-
</td>
|
364
|
-
<td class="align-right">
|
365
|
-
3/12/2012
|
366
|
-
</td>
|
367
|
-
</tr>
|
368
|
-
<tr class="match-row fours">
|
369
|
-
<td style="width: 15px" data-tooltip="#match-mode-4">
|
370
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
371
|
-
|
372
|
-
<div id="match-mode-4" style="display: none">
|
373
|
-
<strong>Type:</strong> 4v4<br />
|
374
|
-
<strong>Speed:</strong> Faster
|
375
|
-
</div>
|
376
|
-
</td>
|
377
|
-
<td>District 10</td>
|
378
|
-
<td class="align-center">4v4</td>
|
379
|
-
<td>
|
380
|
-
<span class="match-win">Win</span>
|
381
|
-
</td>
|
382
|
-
<td class="align-right">
|
383
|
-
3/12/2012
|
384
|
-
</td>
|
385
|
-
</tr>
|
386
|
-
<tr class="match-row fours">
|
387
|
-
<td style="width: 15px" data-tooltip="#match-mode-5">
|
388
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
389
|
-
|
390
|
-
<div id="match-mode-5" style="display: none">
|
391
|
-
<strong>Type:</strong> 4v4<br />
|
392
|
-
<strong>Speed:</strong> Faster
|
393
|
-
</div>
|
394
|
-
</td>
|
395
|
-
<td>Fossil Quarry</td>
|
396
|
-
<td class="align-center">4v4</td>
|
397
|
-
<td>
|
398
|
-
<span class="match-loss">Loss</span>
|
399
|
-
</td>
|
400
|
-
<td class="align-right">
|
401
|
-
3/12/2012
|
402
|
-
</td>
|
403
|
-
</tr>
|
404
|
-
<tr class="match-row fours">
|
405
|
-
<td style="width: 15px" data-tooltip="#match-mode-6">
|
406
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
407
|
-
|
408
|
-
<div id="match-mode-6" style="display: none">
|
409
|
-
<strong>Type:</strong> 4v4<br />
|
410
|
-
<strong>Speed:</strong> Faster
|
411
|
-
</div>
|
412
|
-
</td>
|
413
|
-
<td>Fossil Quarry</td>
|
414
|
-
<td class="align-center">4v4</td>
|
415
|
-
<td>
|
416
|
-
<span class="match-win">Win</span>
|
417
|
-
</td>
|
418
|
-
<td class="align-right">
|
419
|
-
3/12/2012
|
420
|
-
</td>
|
421
|
-
</tr>
|
422
|
-
<tr class="match-row custom">
|
423
|
-
<td style="width: 15px" data-tooltip="#match-mode-7">
|
424
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
425
|
-
|
426
|
-
<div id="match-mode-7" style="display: none">
|
427
|
-
<strong>Type:</strong> Custom<br />
|
428
|
-
<strong>Speed:</strong> Faster
|
429
|
-
</div>
|
430
|
-
</td>
|
431
|
-
<td>Bx Monobattle - Sand Canyon (Fix)</td>
|
432
|
-
<td class="align-center">Custom</td>
|
433
|
-
<td>
|
434
|
-
<span class="match-win">Win</span>
|
435
|
-
</td>
|
436
|
-
<td class="align-right">
|
437
|
-
3/11/2012
|
438
|
-
</td>
|
439
|
-
</tr>
|
440
|
-
<tr class="match-row custom">
|
441
|
-
<td style="width: 15px" data-tooltip="#match-mode-8">
|
442
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
443
|
-
|
444
|
-
<div id="match-mode-8" style="display: none">
|
445
|
-
<strong>Type:</strong> Custom<br />
|
446
|
-
<strong>Speed:</strong> Faster
|
447
|
-
</div>
|
448
|
-
</td>
|
449
|
-
<td>Bx Monobattle - Sand Canyon (Fix)</td>
|
450
|
-
<td class="align-center">Custom</td>
|
451
|
-
<td>
|
452
|
-
<span class="match-win">Win</span>
|
453
|
-
</td>
|
454
|
-
<td class="align-right">
|
455
|
-
3/11/2012
|
456
|
-
</td>
|
457
|
-
</tr>
|
458
|
-
<tr class="match-row custom">
|
459
|
-
<td style="width: 15px" data-tooltip="#match-mode-9">
|
460
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
461
|
-
|
462
|
-
<div id="match-mode-9" style="display: none">
|
463
|
-
<strong>Type:</strong> Custom<br />
|
464
|
-
<strong>Speed:</strong> Faster
|
465
|
-
</div>
|
466
|
-
</td>
|
467
|
-
<td>Bx Monobattle - Sand Canyon (Fix)</td>
|
468
|
-
<td class="align-center">Custom</td>
|
469
|
-
<td>
|
470
|
-
<span class="match-win">Win</span>
|
471
|
-
</td>
|
472
|
-
<td class="align-right">
|
473
|
-
3/11/2012
|
474
|
-
</td>
|
475
|
-
</tr>
|
476
|
-
<tr class="match-row custom">
|
477
|
-
<td style="width: 15px" data-tooltip="#match-mode-10">
|
478
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
479
|
-
|
480
|
-
<div id="match-mode-10" style="display: none">
|
481
|
-
<strong>Type:</strong> Custom<br />
|
482
|
-
<strong>Speed:</strong> Faster
|
483
|
-
</div>
|
484
|
-
</td>
|
485
|
-
<td>Bx Monobattle - Sand Canyon (Fix)</td>
|
486
|
-
<td class="align-center">Custom</td>
|
487
|
-
<td>
|
488
|
-
<span class="match-loss">Loss</span>
|
489
|
-
</td>
|
490
|
-
<td class="align-right">
|
491
|
-
3/11/2012
|
492
|
-
</td>
|
493
|
-
</tr>
|
494
|
-
<tr class="match-row custom">
|
495
|
-
<td style="width: 15px" data-tooltip="#match-mode-11">
|
496
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
497
|
-
|
498
|
-
<div id="match-mode-11" style="display: none">
|
499
|
-
<strong>Type:</strong> Custom<br />
|
500
|
-
<strong>Speed:</strong> Faster
|
501
|
-
</div>
|
502
|
-
</td>
|
503
|
-
<td>Megaton (Team Monobattles)</td>
|
504
|
-
<td class="align-center">Custom</td>
|
505
|
-
<td>
|
506
|
-
<span class="match-loss">Loss</span>
|
507
|
-
</td>
|
508
|
-
<td class="align-right">
|
509
|
-
3/11/2012
|
510
|
-
</td>
|
511
|
-
</tr>
|
512
|
-
<tr class="match-row custom">
|
513
|
-
<td style="width: 15px" data-tooltip="#match-mode-12">
|
514
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
515
|
-
|
516
|
-
<div id="match-mode-12" style="display: none">
|
517
|
-
<strong>Type:</strong> Custom<br />
|
518
|
-
<strong>Speed:</strong> Faster
|
519
|
-
</div>
|
520
|
-
</td>
|
521
|
-
<td>Megaton (Team Monobattles)</td>
|
522
|
-
<td class="align-center">Custom</td>
|
523
|
-
<td>
|
524
|
-
<span class="match-loss">Loss</span>
|
525
|
-
</td>
|
526
|
-
<td class="align-right">
|
527
|
-
3/11/2012
|
528
|
-
</td>
|
529
|
-
</tr>
|
530
|
-
<tr class="match-row threes">
|
531
|
-
<td style="width: 15px" data-tooltip="#match-mode-13">
|
532
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
533
|
-
|
534
|
-
<div id="match-mode-13" style="display: none">
|
535
|
-
<strong>Type:</strong> 3v3<br />
|
536
|
-
<strong>Speed:</strong> Faster
|
537
|
-
</div>
|
538
|
-
</td>
|
539
|
-
<td>The Bio Lab</td>
|
540
|
-
<td class="align-center">3v3</td>
|
541
|
-
<td>
|
542
|
-
<span class="match-win">Win</span>
|
543
|
-
(<span class="text-green">+32</span>)
|
544
|
-
</td>
|
545
|
-
<td class="align-right">
|
546
|
-
3/11/2012
|
547
|
-
</td>
|
548
|
-
</tr>
|
549
|
-
<tr class="match-row threes">
|
550
|
-
<td style="width: 15px" data-tooltip="#match-mode-14">
|
551
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
552
|
-
|
553
|
-
<div id="match-mode-14" style="display: none">
|
554
|
-
<strong>Type:</strong> 3v3<br />
|
555
|
-
<strong>Speed:</strong> Faster
|
556
|
-
</div>
|
557
|
-
</td>
|
558
|
-
<td>Cinder Fortress</td>
|
559
|
-
<td class="align-center">3v3</td>
|
560
|
-
<td>
|
561
|
-
<span class="match-loss">Loss</span>
|
562
|
-
(<span class="text-red">-4</span>)
|
563
|
-
</td>
|
564
|
-
<td class="align-right">
|
565
|
-
3/11/2012
|
566
|
-
</td>
|
567
|
-
</tr>
|
568
|
-
<tr class="match-row threes">
|
569
|
-
<td style="width: 15px" data-tooltip="#match-mode-15">
|
570
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
571
|
-
|
572
|
-
<div id="match-mode-15" style="display: none">
|
573
|
-
<strong>Type:</strong> 3v3<br />
|
574
|
-
<strong>Speed:</strong> Faster
|
575
|
-
</div>
|
576
|
-
</td>
|
577
|
-
<td>The Bio Lab</td>
|
578
|
-
<td class="align-center">3v3</td>
|
579
|
-
<td>
|
580
|
-
<span class="match-win">Win</span>
|
581
|
-
(<span class="text-green">+26</span>)
|
582
|
-
</td>
|
583
|
-
<td class="align-right">
|
584
|
-
3/11/2012
|
585
|
-
</td>
|
586
|
-
</tr>
|
587
|
-
<tr class="match-row custom">
|
588
|
-
<td style="width: 15px" data-tooltip="#match-mode-16">
|
589
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
590
|
-
|
591
|
-
<div id="match-mode-16" style="display: none">
|
592
|
-
<strong>Type:</strong> Custom<br />
|
593
|
-
<strong>Speed:</strong> Faster
|
594
|
-
</div>
|
595
|
-
</td>
|
596
|
-
<td>Invaders Must Die</td>
|
597
|
-
<td class="align-center">Custom</td>
|
598
|
-
<td>
|
599
|
-
<span class="match-loss">Loss</span>
|
600
|
-
</td>
|
601
|
-
<td class="align-right">
|
602
|
-
3/10/2012
|
603
|
-
</td>
|
604
|
-
</tr>
|
605
|
-
<tr class="match-row threes">
|
606
|
-
<td style="width: 15px" data-tooltip="#match-mode-17">
|
607
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
608
|
-
|
609
|
-
<div id="match-mode-17" style="display: none">
|
610
|
-
<strong>Type:</strong> 3v3<br />
|
611
|
-
<strong>Speed:</strong> Faster
|
612
|
-
</div>
|
613
|
-
</td>
|
614
|
-
<td>Ulaan Deeps</td>
|
615
|
-
<td class="align-center">3v3</td>
|
616
|
-
<td>
|
617
|
-
<span class="match-win">Win</span>
|
618
|
-
(<span class="text-green">+26</span>)
|
619
|
-
</td>
|
620
|
-
<td class="align-right">
|
621
|
-
3/10/2012
|
622
|
-
</td>
|
623
|
-
</tr>
|
624
|
-
<tr class="match-row threes">
|
625
|
-
<td style="width: 15px" data-tooltip="#match-mode-18">
|
626
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
627
|
-
|
628
|
-
<div id="match-mode-18" style="display: none">
|
629
|
-
<strong>Type:</strong> 3v3<br />
|
630
|
-
<strong>Speed:</strong> Faster
|
631
|
-
</div>
|
632
|
-
</td>
|
633
|
-
<td>Dig Site</td>
|
634
|
-
<td class="align-center">3v3</td>
|
635
|
-
<td>
|
636
|
-
<span class="match-loss">Loss</span>
|
637
|
-
(<span class="text-red">-10</span>)
|
638
|
-
</td>
|
639
|
-
<td class="align-right">
|
640
|
-
3/10/2012
|
641
|
-
</td>
|
642
|
-
</tr>
|
643
|
-
<tr class="match-row custom">
|
644
|
-
<td style="width: 15px" data-tooltip="#match-mode-19">
|
645
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
646
|
-
|
647
|
-
<div id="match-mode-19" style="display: none">
|
648
|
-
<strong>Type:</strong> Custom<br />
|
649
|
-
<strong>Speed:</strong> Faster
|
650
|
-
</div>
|
651
|
-
</td>
|
652
|
-
<td>Nexus Wars</td>
|
653
|
-
<td class="align-center">Custom</td>
|
654
|
-
<td>
|
655
|
-
<span class="match-win">Win</span>
|
656
|
-
</td>
|
657
|
-
<td class="align-right">
|
658
|
-
3/10/2012
|
659
|
-
</td>
|
660
|
-
</tr>
|
661
|
-
<tr class="match-row custom">
|
662
|
-
<td style="width: 15px" data-tooltip="#match-mode-20">
|
663
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
664
|
-
|
665
|
-
<div id="match-mode-20" style="display: none">
|
666
|
-
<strong>Type:</strong> Custom<br />
|
667
|
-
<strong>Speed:</strong> Faster
|
668
|
-
</div>
|
669
|
-
</td>
|
670
|
-
<td>Megaton (Random Team Monobattles)</td>
|
671
|
-
<td class="align-center">Custom</td>
|
672
|
-
<td>
|
673
|
-
<span class="match-loss">Loss</span>
|
674
|
-
</td>
|
675
|
-
<td class="align-right">
|
676
|
-
3/10/2012
|
677
|
-
</td>
|
678
|
-
</tr>
|
679
|
-
<tr class="match-row custom">
|
680
|
-
<td style="width: 15px" data-tooltip="#match-mode-21">
|
681
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
682
|
-
|
683
|
-
<div id="match-mode-21" style="display: none">
|
684
|
-
<strong>Type:</strong> Custom<br />
|
685
|
-
<strong>Speed:</strong> Faster
|
686
|
-
</div>
|
687
|
-
</td>
|
688
|
-
<td>Megaton (Random Team Monobattles)</td>
|
689
|
-
<td class="align-center">Custom</td>
|
690
|
-
<td>
|
691
|
-
<span class="match-loss">Loss</span>
|
692
|
-
</td>
|
693
|
-
<td class="align-right">
|
694
|
-
3/10/2012
|
695
|
-
</td>
|
696
|
-
</tr>
|
697
|
-
<tr class="match-row threes">
|
698
|
-
<td style="width: 15px" data-tooltip="#match-mode-22">
|
699
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
700
|
-
|
701
|
-
<div id="match-mode-22" style="display: none">
|
702
|
-
<strong>Type:</strong> 3v3<br />
|
703
|
-
<strong>Speed:</strong> Faster
|
704
|
-
</div>
|
705
|
-
</td>
|
706
|
-
<td>Arakan Citadel</td>
|
707
|
-
<td class="align-center">3v3</td>
|
708
|
-
<td>
|
709
|
-
<span class="match-win">Win</span>
|
710
|
-
(<span class="text-green">+30</span>)
|
711
|
-
</td>
|
712
|
-
<td class="align-right">
|
713
|
-
3/7/2012
|
714
|
-
</td>
|
715
|
-
</tr>
|
716
|
-
<tr class="match-row threes">
|
717
|
-
<td style="width: 15px" data-tooltip="#match-mode-23">
|
718
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
719
|
-
|
720
|
-
<div id="match-mode-23" style="display: none">
|
721
|
-
<strong>Type:</strong> 3v3<br />
|
722
|
-
<strong>Speed:</strong> Faster
|
723
|
-
</div>
|
724
|
-
</td>
|
725
|
-
<td>Arakan Citadel</td>
|
726
|
-
<td class="align-center">3v3</td>
|
727
|
-
<td>
|
728
|
-
<span class="match-loss">Loss</span>
|
729
|
-
(<span class="text-red">-4</span>)
|
730
|
-
</td>
|
731
|
-
<td class="align-right">
|
732
|
-
3/7/2012
|
733
|
-
</td>
|
734
|
-
</tr>
|
735
|
-
<tr class="match-row threes">
|
736
|
-
<td style="width: 15px" data-tooltip="#match-mode-24">
|
737
|
-
<img src="/sc2/static/images/icons/ladder/view-more.gif" alt="+" />
|
738
|
-
|
739
|
-
<div id="match-mode-24" style="display: none">
|
740
|
-
<strong>Type:</strong> 3v3<br />
|
741
|
-
<strong>Speed:</strong> Faster
|
742
|
-
</div>
|
743
|
-
</td>
|
744
|
-
<td>Dig Site</td>
|
745
|
-
<td class="align-center">3v3</td>
|
746
|
-
<td>
|
747
|
-
<span class="match-loss">Loss</span>
|
748
|
-
(<span class="text-red">-11</span>)
|
749
|
-
</td>
|
750
|
-
<td class="align-right">
|
751
|
-
3/7/2012
|
752
|
-
</td>
|
753
|
-
</tr>
|
754
|
-
|
755
|
-
</tbody>
|
756
|
-
</table>
|
757
|
-
|
758
|
-
</div>
|
759
|
-
|
760
|
-
</div>
|
761
|
-
|
762
|
-
<span class="clear"><!-- --></span>
|
763
|
-
</div>
|
764
|
-
</div>
|
765
|
-
</div>
|
766
|
-
</div>
|
767
|
-
<div id="footer">
|
768
|
-
<div id="sitemap" class="promotions">
|
769
|
-
<div class="column">
|
770
|
-
<h3 class="bnet">
|
771
|
-
<a href="http://us.battle.net/" tabindex="100">Battle.net Home</a>
|
772
|
-
</h3>
|
773
|
-
<ul>
|
774
|
-
<li><a href="http://us.battle.net/what-is/">What is Battle.net?</a></li>
|
775
|
-
<li><a href="https://us.battle.net/account/management/get-a-game.html">Buy Games</a></li>
|
776
|
-
<li><a href="https://us.battle.net/account/management/">Account</a></li>
|
777
|
-
<li><a href="http://us.battle.net/support/">Support</a></li>
|
778
|
-
<li><a href="http://us.battle.net/realid/">Real ID</a></li>
|
779
|
-
</ul>
|
780
|
-
</div>
|
781
|
-
<div class="column">
|
782
|
-
<h3 class="games">
|
783
|
-
<a href="http://us.battle.net/" tabindex="100">Games</a>
|
784
|
-
</h3>
|
785
|
-
<ul>
|
786
|
-
<li><a href="http://us.battle.net/sc2/">StarCraft II</a></li>
|
787
|
-
<li><a href="http://us.battle.net/wow/">World of Warcraft</a></li>
|
788
|
-
<li><a href="http://us.battle.net/d3/">Diablo III</a></li>
|
789
|
-
<li><a href="http://us.battle.net/games/classic">Classic Games</a></li>
|
790
|
-
<li><a href="https://us.battle.net/account/download/">Game Client Downloads</a></li>
|
791
|
-
</ul>
|
792
|
-
</div>
|
793
|
-
<div class="column">
|
794
|
-
<h3 class="account">
|
795
|
-
<a href="https://us.battle.net/account/management/" tabindex="100">Account</a>
|
796
|
-
</h3>
|
797
|
-
<ul>
|
798
|
-
<li><a href="https://us.battle.net/account/support/login-support.html">Can’t log in?</a></li>
|
799
|
-
<li><a href="https://us.battle.net/account/creation/tos.html">Create Account</a></li>
|
800
|
-
<li><a href="https://us.battle.net/account/management/">Account Summary</a></li>
|
801
|
-
<li><a href="https://us.battle.net/account/management/authenticator.html">Account Security</a></li>
|
802
|
-
<li><a href="https://us.battle.net/account/management/add-game.html">Add a Game</a></li>
|
803
|
-
<li><a href="https://us.battle.net/account/management/redemption/redeem.html">Redeem Promo Codes</a></li>
|
804
|
-
</ul>
|
805
|
-
</div>
|
806
|
-
<div class="column">
|
807
|
-
<h3 class="support">
|
808
|
-
<a href="http://us.battle.net/support/" tabindex="100">Support</a>
|
809
|
-
</h3>
|
810
|
-
<ul>
|
811
|
-
<li><a href="http://us.battle.net/support/">Support Articles</a></li>
|
812
|
-
<li><a href="https://us.battle.net/account/parental-controls/index.html">Parental Controls</a></li>
|
813
|
-
<li><a href="http://us.battle.net/security/">Protect Your Account</a></li>
|
814
|
-
<li><a href="http://us.battle.net/security/help">Help! I got hacked!</a></li>
|
815
|
-
</ul>
|
816
|
-
</div>
|
817
|
-
<div id="footer-promotions">
|
818
|
-
<div class="sidebar-content"></div>
|
819
|
-
<div id="sidebar-marketing" class="sidebar-module">
|
820
|
-
<div class="bnet-offer">
|
821
|
-
<!-- -->
|
822
|
-
<div class="bnet-offer-bg">
|
823
|
-
<a href="https://us.battle.net/account/sc2/starter-edition/" target="_blank" id="ad3985896" class="bnet-offer-image" onclick="BnetAds.trackEvent('3985896', 'TrySCII', 'sc2', true);">
|
824
|
-
<img src="http://us.media2.battle.net/cms/ad_300x100/ZNB918LXVJ251309281567042.jpg" width="300" height="100" alt=""/>
|
825
|
-
</a>
|
826
|
-
</div>
|
827
|
-
<script type="text/javascript">
|
828
|
-
//<![CDATA[
|
829
|
-
if(typeof (BnetAds.addEvent) != "undefined" )
|
830
|
-
BnetAds.addEvent(window, 'load', function(){ BnetAds.trackEvent('3985896', 'TrySCII', 'sc2'); } );
|
831
|
-
else
|
832
|
-
BnetAds.trackEvent('3985896', 'TrySCII', 'sc2');
|
833
|
-
//]]>
|
834
|
-
</script>
|
835
|
-
</div>
|
836
|
-
</div>
|
837
|
-
</div>
|
838
|
-
<span class="clear"><!-- --></span>
|
839
|
-
</div>
|
840
|
-
<div id="copyright">
|
841
|
-
<a href="javascript:;" tabindex="100" id="change-language">
|
842
|
-
<span>Americas - English (US)</span>
|
843
|
-
</a>
|
844
|
-
©2012 Blizzard Entertainment, Inc. All rights reserved
|
845
|
-
<a onclick="return Core.open(this);" href="http://us.blizzard.com/company/about/termsofuse.html" tabindex="100">Terms of Use</a>
|
846
|
-
<a onclick="return Core.open(this);" href="http://us.blizzard.com/company/legal/" tabindex="100">Legal</a>
|
847
|
-
<a onclick="return Core.open(this);" href="http://us.blizzard.com/company/about/privacy.html" tabindex="100">Privacy Policy</a>
|
848
|
-
<a onclick="return Core.open(this);" href="http://us.blizzard.com/company/about/infringementnotice.html" tabindex="100">Copyright Infringement</a>
|
849
|
-
</div>
|
850
|
-
<div id="international"></div>
|
851
|
-
<div id="legal">
|
852
|
-
<div id="legal-ratings" class="png-fix">
|
853
|
-
<a class="truste-link" href="//privacy-policy.truste.com/click-with-confidence/ctv/en/us.battle.net/seal_m" title="Validate TRUSTe privacy certification" onclick="return Core.open(this);">
|
854
|
-
<img class="legal-image" src="//privacy-policy.truste.com/certified-seal/wps/en/us.battle.net/seal_m.png" alt="Validate TRUSTe privacy certification"/>
|
855
|
-
</a>
|
856
|
-
<a href="http://www.esrb.org/ratings/ratings_guide.jsp" onclick="return Core.open(this);">
|
857
|
-
<img class="legal-image" alt="" src="/sc2/static/local-common/images/legal/us/esrb-teen-sc2.png" />
|
858
|
-
</a>
|
859
|
-
</div>
|
860
|
-
<div id="blizzard" class="png-fix">
|
861
|
-
<a href="http://blizzard.com" tabindex="100"><img src="/sc2/static/local-common/images/logos/blizz-sc2.png" alt="" /></a>
|
862
|
-
</div>
|
863
|
-
<span class="clear"><!-- --></span>
|
864
|
-
</div>
|
865
|
-
</div>
|
866
|
-
<div id="service">
|
867
|
-
<ul class="service-bar">
|
868
|
-
<li class="service-cell service-home"><a href="http://us.battle.net/" tabindex="50" accesskey="1" title="Battle.net Home"> </a></li>
|
869
|
-
<li class="service-cell service-welcome">
|
870
|
-
<a href="?login" onclick="return Login.open()">Log in</a> or <a href="https://us.battle.net/account/creation/tos.html">Create an Account</a>
|
871
|
-
</li>
|
872
|
-
<li class="service-cell service-account"><a href="https://us.battle.net/account/management/" class="service-link" tabindex="50" accesskey="3">Account</a></li>
|
873
|
-
<li class="service-cell service-support service-support-enhanced">
|
874
|
-
<a href="#support" class="service-link service-link-dropdown" tabindex="50" accesskey="4" id="support-link" onclick="return false" style="cursor: progress" rel="javascript">Support<span class="no-support-tickets" id="support-ticket-count"></span></a>
|
875
|
-
<div class="support-menu" id="support-menu" style="display:none;">
|
876
|
-
<div class="support-primary">
|
877
|
-
<ul class="support-nav">
|
878
|
-
<li>
|
879
|
-
<a href="http://us.battle.net/support/" tabindex="55" class="support-category">
|
880
|
-
<strong class="support-caption">Knowledge Center</strong>
|
881
|
-
Browse our support articles
|
882
|
-
</a>
|
883
|
-
</li>
|
884
|
-
<li>
|
885
|
-
<a href="https://us.battle.net/support/ticket/status" tabindex="55" class="support-category">
|
886
|
-
<strong class="support-caption">Your Support Tickets</strong>
|
887
|
-
View your active tickets (login required).
|
888
|
-
</a>
|
889
|
-
</li>
|
890
|
-
</ul>
|
891
|
-
<span class="clear"><!-- --></span>
|
892
|
-
</div>
|
893
|
-
<div class="support-secondary"></div>
|
894
|
-
<!--[if IE 6]> <iframe id="support-shim" src="javascript:false;" frameborder="0" scrolling="no" style="display: block; position: absolute; top: 0; left: 9px; width: 297px; height: 400px; z-index: -1;"></iframe>
|
895
|
-
<script type="text/javascript">
|
896
|
-
//<![CDATA[
|
897
|
-
(function(){
|
898
|
-
var doc = document;
|
899
|
-
var shim = doc.getElementById('support-shim');
|
900
|
-
shim.style.filter = 'progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)';
|
901
|
-
shim.style.display = 'block';
|
902
|
-
})();
|
903
|
-
//]]>
|
904
|
-
</script>
|
905
|
-
<![endif]-->
|
906
|
-
</div>
|
907
|
-
</li>
|
908
|
-
<li class="service-cell service-explore">
|
909
|
-
<a href="#explore" tabindex="50" accesskey="5" class="dropdown" id="explore-link" onclick="return false" style="cursor: progress" rel="javascript">Explore</a>
|
910
|
-
<div class="explore-menu" id="explore-menu" style="display:none;">
|
911
|
-
<div class="explore-primary">
|
912
|
-
<ul class="explore-nav">
|
913
|
-
<li>
|
914
|
-
<a href="http://us.battle.net/" tabindex="55" data-label="Home">
|
915
|
-
<strong class="explore-caption">Battle.net Home</strong>
|
916
|
-
Connect. Play. Unite.
|
917
|
-
</a>
|
918
|
-
</li>
|
919
|
-
<li>
|
920
|
-
<a href="https://us.battle.net/account/management/" tabindex="55" data-label="Account">
|
921
|
-
<strong class="explore-caption">Account</strong>
|
922
|
-
Manage your Account
|
923
|
-
</a>
|
924
|
-
</li>
|
925
|
-
<li>
|
926
|
-
<a href="http://us.battle.net/support/" tabindex="55" data-label="Support">
|
927
|
-
<strong class="explore-caption">Support</strong>
|
928
|
-
Get Support and explore the knowledgebase.
|
929
|
-
</a>
|
930
|
-
</li>
|
931
|
-
<li>
|
932
|
-
<a href="https://us.battle.net/account/management/get-a-game.html" tabindex="55" data-label="Buy Games">
|
933
|
-
<strong class="explore-caption">Buy Games</strong>
|
934
|
-
Digital Games for Download
|
935
|
-
</a>
|
936
|
-
</li>
|
937
|
-
</ul>
|
938
|
-
<div class="explore-links">
|
939
|
-
<h2 class="explore-caption">More</h2>
|
940
|
-
<ul>
|
941
|
-
<li><a href="http://us.battle.net/what-is/" tabindex="55" data-label="More">What is Battle.net?</a></li>
|
942
|
-
<li><a href="https://us.battle.net/account/parental-controls/index.html" tabindex="55" data-label="More">Parental Controls</a></li>
|
943
|
-
<li><a href="http://us.battle.net/security/" tabindex="55" data-label="More">Account Security</a></li>
|
944
|
-
<li><a href="https://us.battle.net/account/management/add-game.html" tabindex="55" data-label="More">Add a Game</a></li>
|
945
|
-
<li><a href="https://us.battle.net/account/support/password-reset.html" tabindex="55" data-label="More">Can’t log in?</a></li>
|
946
|
-
<li><a href="https://us.battle.net/account/download/" tabindex="55" data-label="More">Game Client Downloads</a></li>
|
947
|
-
<li><a href="https://us.battle.net/account/management/redemption/redeem.html" tabindex="55" data-label="More">Redeem Promo Codes</a></li>
|
948
|
-
<li><a href="http://us.battle.net/games/classic" tabindex="55" data-label="More">Classic Games</a></li>
|
949
|
-
</ul>
|
950
|
-
</div>
|
951
|
-
<span class="clear"><!-- --></span>
|
952
|
-
<!--[if IE 6]> <iframe id="explore-shim" src="javascript:false;" frameborder="0" scrolling="no" style="display: block; position: absolute; top: 0; left: 9px; width: 409px; height: 400px; z-index: -1;"></iframe>
|
953
|
-
<script type="text/javascript">
|
954
|
-
//<![CDATA[
|
955
|
-
(function(){
|
956
|
-
var doc = document;
|
957
|
-
var shim = doc.getElementById('explore-shim');
|
958
|
-
shim.style.filter = 'progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)';
|
959
|
-
shim.style.display = 'block';
|
960
|
-
})();
|
961
|
-
//]]>
|
962
|
-
</script>
|
963
|
-
<![endif]-->
|
964
|
-
</div>
|
965
|
-
<ul class="explore-secondary">
|
966
|
-
<li class="explore-game explore-game-sc2">
|
967
|
-
<a href="http://us.battle.net/sc2/" tabindex="55" data-label="Game - sc2">
|
968
|
-
<span class="explore-game-inner">
|
969
|
-
<strong class="explore-caption">StarCraft II</strong>
|
970
|
-
<span>News & Forums</span> <span>Beginner’s Guide</span> <span>Player Profiles</span>
|
971
|
-
</span>
|
972
|
-
</a>
|
973
|
-
</li>
|
974
|
-
<li class="explore-game explore-game-wow">
|
975
|
-
<a href="http://us.battle.net/wow/" tabindex="55" data-label="Game - wow">
|
976
|
-
<span class="explore-game-inner">
|
977
|
-
<strong class="explore-caption">World of Warcraft</strong>
|
978
|
-
<span>Character Profiles</span> <span>News & Forums</span> <span>Game Guide</span>
|
979
|
-
</span>
|
980
|
-
</a>
|
981
|
-
</li>
|
982
|
-
<li class="explore-game explore-game-d3">
|
983
|
-
<a href="http://us.battle.net/d3/" tabindex="55" data-label="Game - d3">
|
984
|
-
<span class="explore-game-inner">
|
985
|
-
<strong class="explore-caption">Diablo III</strong>
|
986
|
-
<span>Game Guide</span> <span>Beta News</span> <span>Forums</span>
|
987
|
-
</span>
|
988
|
-
</a>
|
989
|
-
</li>
|
990
|
-
</ul>
|
991
|
-
</div>
|
992
|
-
</li>
|
993
|
-
</ul>
|
994
|
-
<div id="warnings-wrapper">
|
995
|
-
<script type="text/javascript">
|
996
|
-
//<![CDATA[
|
997
|
-
$(function() {
|
998
|
-
App.saveCookie('html5Warning');
|
999
|
-
App.resetCookie('browserWarning');
|
1000
|
-
});
|
1001
|
-
//]]>
|
1002
|
-
</script>
|
1003
|
-
<!--[if lt IE 8]> <div id="browser-warning" class="warning warning-red">
|
1004
|
-
<div class="warning-inner2">
|
1005
|
-
You are using an outdated web browser.<br />
|
1006
|
-
<a href="http://us.blizzard.com/support/article/browserupdate">Upgrade</a> or <a href="http://www.google.com/chromeframe/?hl=en-US" id="chrome-frame-link">install Google Chrome Frame</a>.
|
1007
|
-
<a href="#close" class="warning-close" onclick="App.closeWarning('#browser-warning', 'browserWarning'); return false;"></a>
|
1008
|
-
</div>
|
1009
|
-
</div>
|
1010
|
-
<![endif]-->
|
1011
|
-
<!--[if lt IE 8]> <script type="text/javascript" src="/sc2/static/local-common/js/third-party/CFInstall.min.js?v39"></script>
|
1012
|
-
<script type="text/javascript">
|
1013
|
-
//<![CDATA[
|
1014
|
-
$(function() {
|
1015
|
-
var age = 365 * 24 * 60 * 60 * 1000;
|
1016
|
-
var src = 'https://www.google.com/chromeframe/?hl=en-US';
|
1017
|
-
if ('http:' == document.location.protocol) {
|
1018
|
-
src = 'http://www.google.com/chromeframe/?hl=en-US';
|
1019
|
-
}
|
1020
|
-
document.cookie = "disableGCFCheck=0;path=/;max-age="+age;
|
1021
|
-
$('#chrome-frame-link').bind({
|
1022
|
-
'click': function() {
|
1023
|
-
App.closeWarning('#browser-warning');
|
1024
|
-
CFInstall.check({
|
1025
|
-
mode: 'overlay',
|
1026
|
-
url: src
|
1027
|
-
});
|
1028
|
-
return false;
|
1029
|
-
}
|
1030
|
-
});
|
1031
|
-
});
|
1032
|
-
//]]>
|
1033
|
-
</script>
|
1034
|
-
<![endif]-->
|
1035
|
-
<noscript>
|
1036
|
-
<div id="javascript-warning" class="warning warning-red">
|
1037
|
-
<div class="warning-inner2">
|
1038
|
-
JavaScript must be enabled to use this site.
|
1039
|
-
</div>
|
1040
|
-
</div>
|
1041
|
-
</noscript>
|
1042
|
-
</div>
|
1043
|
-
</div>
|
1044
|
-
<div class="new-feature-tip" id="new-feature-tip" style="display: none">
|
1045
|
-
<div class="inner">
|
1046
|
-
<a href="javascript:;" rel="close" class="close"></a>
|
1047
|
-
<h3 class="category">
|
1048
|
-
Video Teasers
|
1049
|
-
<span>New</span>
|
1050
|
-
</h3>
|
1051
|
-
<a href="/sc2/en/game/heart-of-the-swarm-preview/#teaser" class="row hots" data-label="Heart of the Swarm">
|
1052
|
-
<span class="image">
|
1053
|
-
<span class="view"></span>
|
1054
|
-
</span>
|
1055
|
-
<span class="title">
|
1056
|
-
<strong>Heart of the Swarm</strong>
|
1057
|
-
Watch now!
|
1058
|
-
</span>
|
1059
|
-
</a>
|
1060
|
-
<a href="/sc2/en/game/maps-and-mods/mods/dota" class="row dota" data-label="Blizzard DOTA">
|
1061
|
-
<span class="image">
|
1062
|
-
<span class="view"></span>
|
1063
|
-
</span>
|
1064
|
-
<span class="title">
|
1065
|
-
<strong>Blizzard DOTA</strong>
|
1066
|
-
Watch now!
|
1067
|
-
</span>
|
1068
|
-
</a>
|
1069
|
-
</div>
|
1070
|
-
</div>
|
1071
|
-
<script type="text/javascript">
|
1072
|
-
//<![CDATA[
|
1073
|
-
$(document).ready(function() {
|
1074
|
-
Core.showUntilClosed('#new-feature-tip', 'sc2-feature-videos', {
|
1075
|
-
endDate: '2011/11/02',
|
1076
|
-
fadeIn: 333,
|
1077
|
-
trackingCategory: 'New Feature Tip',
|
1078
|
-
trackingAction: 'Video Teasers'
|
1079
|
-
});
|
1080
|
-
});
|
1081
|
-
//]]>
|
1082
|
-
</script>
|
1083
|
-
</div><script type="text/javascript" src="/sc2/static/local-common/js/search.js?v39"></script>
|
1084
|
-
<script type="text/javascript">
|
1085
|
-
//<![CDATA[
|
1086
|
-
var xsToken = '';
|
1087
|
-
var supportToken = '';
|
1088
|
-
var Msg = {
|
1089
|
-
support: {
|
1090
|
-
ticketNew: 'Ticket {0} was created.',
|
1091
|
-
ticketStatus: 'Ticket {0}’s status changed to {1}.',
|
1092
|
-
ticketOpen: 'Open',
|
1093
|
-
ticketAnswered: 'Answered',
|
1094
|
-
ticketResolved: 'Resolved',
|
1095
|
-
ticketCanceled: 'Canceled',
|
1096
|
-
ticketArchived: 'Archived',
|
1097
|
-
ticketInfo: 'Need Info',
|
1098
|
-
ticketAll: 'View All Tickets'
|
1099
|
-
},
|
1100
|
-
cms: {
|
1101
|
-
requestError: 'Your request cannot be completed.',
|
1102
|
-
ignoreNot: 'Not ignoring this user',
|
1103
|
-
ignoreAlready: 'Already ignoring this user',
|
1104
|
-
stickyRequested: 'Sticky requested',
|
1105
|
-
stickyHasBeenRequested: 'You have already sent a sticky request for this topic.',
|
1106
|
-
postAdded: 'Post added to tracker',
|
1107
|
-
postRemoved: 'Post removed from tracker',
|
1108
|
-
userAdded: 'User added to tracker',
|
1109
|
-
userRemoved: 'User removed from tracker',
|
1110
|
-
validationError: 'A required field is incomplete',
|
1111
|
-
characterExceed: 'The post body exceeds XXXXXX characters.',
|
1112
|
-
searchFor: "Search for",
|
1113
|
-
searchTags: "Articles tagged:",
|
1114
|
-
characterAjaxError: "You may have become logged out. Please refresh the page and try again.",
|
1115
|
-
ilvl: "Level {0}",
|
1116
|
-
shortQuery: "Search requests must be at least three characters long."
|
1117
|
-
},
|
1118
|
-
bml: {
|
1119
|
-
bold: 'Bold',
|
1120
|
-
italics: 'Italics',
|
1121
|
-
underline: 'Underline',
|
1122
|
-
list: 'Unordered List',
|
1123
|
-
listItem: 'List Item',
|
1124
|
-
quote: 'Quote',
|
1125
|
-
quoteBy: 'Posted by {0}',
|
1126
|
-
unformat: 'Remove Formating',
|
1127
|
-
cleanup: 'Fix Linebreaks',
|
1128
|
-
code: 'Code Blocks',
|
1129
|
-
item: 'WoW Item',
|
1130
|
-
itemPrompt: 'Item ID:',
|
1131
|
-
url: 'URL',
|
1132
|
-
urlPrompt: 'URL Address:'
|
1133
|
-
},
|
1134
|
-
ui: {
|
1135
|
-
submit: 'Submit',
|
1136
|
-
cancel: 'Cancel',
|
1137
|
-
reset: 'Reset',
|
1138
|
-
viewInGallery: 'View in gallery',
|
1139
|
-
loading: 'Loading…',
|
1140
|
-
unexpectedError: 'An error has occurred',
|
1141
|
-
fansiteFind: 'Find this on…',
|
1142
|
-
fansiteFindType: 'Find {0} on…',
|
1143
|
-
fansiteNone: 'No fansites available.'
|
1144
|
-
},
|
1145
|
-
grammar: {
|
1146
|
-
colon: '{0}:',
|
1147
|
-
first: 'First',
|
1148
|
-
last: 'Last'
|
1149
|
-
},
|
1150
|
-
fansite: {
|
1151
|
-
achievement: 'achievement',
|
1152
|
-
character: 'character',
|
1153
|
-
faction: 'faction',
|
1154
|
-
'class': 'class',
|
1155
|
-
object: 'object',
|
1156
|
-
talentcalc: 'talents',
|
1157
|
-
skill: 'profession',
|
1158
|
-
quest: 'quest',
|
1159
|
-
spell: 'spell',
|
1160
|
-
event: 'event',
|
1161
|
-
title: 'title',
|
1162
|
-
arena: 'arena team',
|
1163
|
-
guild: 'guild',
|
1164
|
-
zone: 'zone',
|
1165
|
-
item: 'item',
|
1166
|
-
race: 'race',
|
1167
|
-
npc: 'NPC',
|
1168
|
-
pet: 'pet'
|
1169
|
-
},
|
1170
|
-
search: {
|
1171
|
-
kb: 'Support',
|
1172
|
-
post: 'Forums',
|
1173
|
-
article: 'Blog Articles',
|
1174
|
-
static: 'General Content',
|
1175
|
-
wowcharacter: 'Characters',
|
1176
|
-
wowitem: 'Items',
|
1177
|
-
wowguild: 'Guilds',
|
1178
|
-
wowarenateam: 'Arena Teams',
|
1179
|
-
other: 'Other'
|
1180
|
-
}
|
1181
|
-
};
|
1182
|
-
//]]>
|
1183
|
-
</script>
|
1184
|
-
<script type="text/javascript">
|
1185
|
-
//<![CDATA[
|
1186
|
-
Core.load("/sc2/static/local-common/js/third-party/jquery-ui-1.8.6.custom.min.js?v39");
|
1187
|
-
Core.load("/sc2/static/local-common/js/login.js?v39", false, function() {
|
1188
|
-
Login.embeddedUrl = 'https://us.battle.net/login/login.frag';
|
1189
|
-
});
|
1190
|
-
//]]>
|
1191
|
-
</script>
|
1192
|
-
<script type="text/javascript" src="/sc2/static/local-common/js/menu.js?v39"></script>
|
1193
|
-
<script type="text/javascript" src="/sc2/static/js/sc2.js?v19"></script>
|
1194
|
-
<script type="text/javascript">
|
1195
|
-
//<![CDATA[
|
1196
|
-
$(function(){
|
1197
|
-
Menu.initialize('/data/menu.json?v39');
|
1198
|
-
Tooltip.options.useTable = true;
|
1199
|
-
});
|
1200
|
-
//]]>
|
1201
|
-
</script>
|
1202
|
-
<script type="text/javascript" src="/sc2/static/local-common/js/dropdown.js?v39"></script>
|
1203
|
-
<script type="text/javascript" src="/sc2/static/local-common/js/filter.js?v39"></script>
|
1204
|
-
<!--[if lt IE 8]> <script type="text/javascript" src="/sc2/static/local-common/js/third-party/jquery.pngFix.pack.js?v39"></script>
|
1205
|
-
<script type="text/javascript">
|
1206
|
-
//<![CDATA[
|
1207
|
-
$('.png-fix').pngFix(); //]]>
|
1208
|
-
</script>
|
1209
|
-
<![endif]-->
|
1210
|
-
<script type="text/javascript">
|
1211
|
-
//<![CDATA[
|
1212
|
-
(function() {
|
1213
|
-
var ga = document.createElement('script');
|
1214
|
-
var src = "https://ssl.google-analytics.com/ga.js";
|
1215
|
-
if ('http:' == document.location.protocol) {
|
1216
|
-
src = "http://www.google-analytics.com/ga.js";
|
1217
|
-
}
|
1218
|
-
ga.type = 'text/javascript';
|
1219
|
-
ga.setAttribute('async', 'true');
|
1220
|
-
ga.src = src;
|
1221
|
-
var s = document.getElementsByTagName('script');
|
1222
|
-
s = s[s.length-1];
|
1223
|
-
s.parentNode.insertBefore(ga, s.nextSibling);
|
1224
|
-
})();
|
1225
|
-
//]]>
|
1226
|
-
</script>
|
1227
|
-
</body>
|
1228
|
-
</html>
|