-
Notifications
You must be signed in to change notification settings - Fork 44
/
index.html
273 lines (234 loc) · 9.99 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title></title>
<meta name="description" content="A Different Engine"/>
<meta name="author" content="A Different Engine LLC" />
<link rel="stylesheet" href="css/style.css" />
<script type="text/javascript">
// This is stupid, I can just let them fail but I don't like the errors.
if( navigator.userAgent.search(/Maple/) > -1) {
document.write('<script type="text/javascript" language="javascript" src="$MANAGER_WIDGET/Common/API/TVKeyValue.js"></scri'+'pt>');
document.write('<script type="text/javascript" language="javascript" src="$MANAGER_WIDGET/Common/API/Plugin.js"></scri'+'pt>');
document.write('<script type="text/javascript" language="javascript" src="$MANAGER_WIDGET/Common/API/Widget.js"></scri'+'pt>');
document.write('<script type="text/javascript" language="javascript" src="$MANAGER_WIDGET/Common/Plugin/Define.js"></scri'+'pt>');
document.write('<script type="text/javascript" language="javascript" src="$MANAGER_WIDGET/Common/API/Widget.js"></scri'+'pt>');
document.write('<script type="text/javascript" language="javascript" src="$MANAGER_WIDGET/Common/Util/Include.js"></scri'+'pt>');
document.write('<script type="text/javascript" language="javascript" src="$MANAGER_WIDGET/Common/Util/Language.js"></scri'+'pt>');
document.write('<script type="text/javascript" language="javascript" src="$MANAGER_WIDGET/Common/jquery.js"></scri'+'pt>');
}
</script>
<script type="text/javascript">
// Have to use the Samsung JQuery for cross domain AJAX
if(typeof($) == "undefined" ) {
document.write("<script src=\"js/Common/vendor/jquery-1.6.2.min.js\"></sc" + "ript>");
}
</script>
<!-- VENDOR -->
<script src="js/Common/vendor/underscore-min.js" type="text/javascript"></script>
<script src="js/Common/vendor/backbone-min.js" type="text/javascript"></script>
<script src="js/Common/vendor/jquery-ui-1.8.14.effects.min.js" type="text/javascript"></script>
<script src="js/Common/vendor/jqplugins/jLog.min.js" type="text/javascript"></script>
<script src="js/Common/vendor/jqplugins/jquery.waitforimages.js" type="text/javascript"></script>
<!-- Application Config -->
<script src="js/Common/enginelite/TVEngine.js" type="text/javascript"></script>
<script src="js/Common/enginelite/enginelite.keyhandler.js" type="text/javascript"></script>
<script src="js/Common/enginelite/enginelite.navigation.js" type="text/javascript"></script>
<script src="js/Common/enginelite/enginelite.platforms.js" type="text/javascript"></script>
<script src="js/Common/enginelite/enginelite.data.js" type="text/javascript"></script>
<script src="js/Common/enginelite/enginelite.mediaplayer.js" type="text/javascript"></script>
<!-- Supported Platforms -->
<script src="js/Common/enginelite/platforms/enginelite.platform.samsung.js" type="text/javascript"></script>
<script src="js/Common/enginelite/platforms/enginelite.platform.samsung.low.js" type="text/javascript"></script>
<script type="text/javascript">
// Should be safe to run before page load.
TVEngine.Platforms.init();
if(typeof(Common) != 'undefined' ) {
window.$W = new Common.API.Widget();
}
$(document).ready(function() {
if( typeof($W) != 'undefined' && _.isFunction($W.sendReadyEvent)) {
$W.sendReadyEvent();
}
});
</script>
<script src="js/application.js"></script>
<script src="js/menus/brightcove.mainmenu.js" type="text/javascript"></script>
<script src="js/menus/brightcove.popupmenu.js" type="text/javascript"></script>
<script src="js/menus/enginelite.samplemenus.js" type="text/javascript"></script>
<!-- Tracking, and Ad Vending -->
<script src="js/Common/enginelite/trackers/enginelite.tracking.google.js" type="text/javascript"></script>
<script src="js/Common/enginelite/trackers/enginelite.tracking.omniture.js" type="text/javascript"></script>
<script src="js/Common/enginelite/trackers/enginelite.tracking.brightcove.js" type="text/javascript"></script>
<script src="js/Common/enginelite/advendors/enginelite.advendors.vast.js" type="text/javascript"></script>
<!-- REPLACE THIS WITH YOUR CODE -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXX-X']); //Replace with your tracking ID.
_gaq.push(['_trackPageview']);
_gaq.push(['_setDomainName', 'brightcove.adifferentengine.com']);
_gaq.push(['_trackEvent', "LOADED", "SOMETHING"]);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<object id="pluginPlayer" border=0 classid="clsid:SAMSUNG-INFOLINK-PLAYER"></object>
<object id="pluginAudio" border=0 classid="clsid:SAMSUNG-INFOLINK-AUDIO"></object>
<object id="pluginTVMW" border=0 classid="clsid:SAMSUNG-INFOLINK-TVMW"></object>
</head>
<body>
<script type="text/javascript">
$i("loading.png", {id: "backgroundImage"});
</script>
<div id="wrapper">
<div id="content">
<div id="videoPage">
<script type="text/javascript">
// $i is a shortcut, basically just grabs an image for the correct
// resolution. default path is images/[width]x[height]/[image name]
// adding more paths should work fine. Associative Array items,
// are translated into attributes
// $i("backgroundImage.jpg", {id: "backgroundImage"});
$i("videoheader.png", { id: "videoheader" });
</script>
<div id="progressWrapper">
<div id="indicator" class="buffering"> </div>
</div>
<div id="currentProgressTime">
</div>
<h3 id="nowPlayingText">Now Playing:</h3>
<h2 id="nowPlayingTitle">Somethign with Fish</h2>
<div id="videoNavbar" class="navbar">
<div class="controlHints">
<img src="images/navbar/white/help_pause.png" />
<img src="images/navbar/white/help_ff_rew.png" />
</div>
<div class="buttonOptions">
<div class="navbutton backButton">
Back
</div>
</div>
</div>
</div>
<div id="landingPage">
<script type="text/javascript">
// $i is a shortcut, basically just grabs an image for the correct
// resolution. default path is images/[width]x[height]/[image name]
// adding more paths should work fine. Associative Array items,
// are translated into attributes
// $i("backgroundImage.jpg", {id: "backgroundImage"});
$i("overlay.png", { id: "overlay" });
</script>
<div id="innerContent">
<div id="pager">
<span id="paging">1 of 5</span>
</div>
<div id="videoInfo">
<h1 id="focusVideoTitle">This is the current Video</h1>
<div class="h2" id="focusVideoDescription">
This is the current video description here its a whole lot of text
</div>
</div>
<script type="text/javascript">
// $i is a shortcut, basically just grabs an image for the correct
// resolution. default path is images/[width]x[height]/[image name]
// adding more paths should work fine. Associative Array items,
// are translated into attributes
$i("left_arrow.png", {id: "leftArrow"});
$i("right_arrow.png", { id: "rightArrow" });
$i("up_arrow.png", {id: "upArrow"});
$i("down_arrow.png", {id: 'downArrow'});
$i("playicon.png", {id: 'playicon'});
</script>
<div id="playlistsWrapper">
<div id="playlists"></div>
</div>
<div id="playlistsNavWrapper">
<ul id="playlistsNav">
</ul>
</div>
</div>
<script type="text/javascript">
// $i is a shortcut, basically just grabs an image for the correct
// resolution. default path is images/[width]x[height]/[image name]
// adding more paths should work fine. Associative Array items,
// are translated into attributes
// $i("backgroundImage.jpg", {id: "backgroundImage"});
$i("logo.png", { id: "logo" });
</script>
<div id="landingNavbar" class="navbar">
<div class="buttonOptions">
<div class="navbutton aButton">
More Info
</div>
<div class="navbutton backButton">
Exit
</div>
</div>
</div>
</div>
</div>
<div id="videoInfoWrapper">
<div id="videoInfoBox">
<img />
<h1></h1>
<p>
</p>
<p>
</p>
<div id="detailTags">
</div>
<div class="infoNavBar">
<div class="buttonOptions">
<div class="navbutton backButton">
Close
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Omniture Tracking -->
<!-- SiteCatalyst code version: H.24.2.
Copyright 1996-2012 Adobe, Inc. All Rights Reserved
More info available at http://www.omniture.com
You need to generate your own "s_code.js" file in the SiteCatalyst tools.
See
https://developer.omniture.com/en_US/get-started/sitecatalyst-tagging#step-1
-->
<script language="JavaScript" type="text/javascript" src="js/Common/vendor/Omniture/s_code.js"></script>
<script language="JavaScript" type="text/javascript">
s.pageName="Brightcove Samsung Starter Main Page"
s.server=""
s.channel=""
s.pageType=""
s.prop1=""
s.prop2=""
s.prop3=""
s.prop4=""
s.prop5=""
/* Conversion Variables */
s.campaign=""
s.state=""
s.zip=""
s.events="videoPlay"
s.linkTrackEvents="videoPlay"
s.products=""
s.purchaseID=""
s.eVar1=""
s.eVar2=""
s.eVar3=""
s.eVar4=""
s.eVar5=""
/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
var s_code=s.t();if(s_code)document.write(s_code)//--></script>
<script language="JavaScript" type="text/javascript"><!--
if(navigator.appVersion.indexOf('MSIE')>=0)document.write(unescape('%3C')+'\!-'+'-')
//--></script><noscript><img src="http://partnercjohnstondev.sbx1.2o7.net/b/ss/cjohnstest2/1/H.24.2--NS/0"
height="1" width="1" border="0" alt="" /></noscript><!--/DO NOT REMOVE/-->
<!-- End SiteCatalyst code version: H.24.2. -->
<!-- Brightcove Goku Event Tracking Image -->
<img id="brightcoveTracker" />
</body>