onebox 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.rspec +1 -0
- data/.rubocop.yml +476 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +3 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +92 -0
- data/Rakefile +22 -0
- data/lib/onebox.rb +33 -0
- data/lib/onebox/engine.rb +93 -0
- data/lib/onebox/engine/amazon_onebox.rb +25 -0
- data/lib/onebox/engine/bliptv_onebox.rb +26 -0
- data/lib/onebox/engine/clikthrough_onebox.rb +23 -0
- data/lib/onebox/engine/college_humor_onebox.rb +26 -0
- data/lib/onebox/engine/dailymotion_onebox.rb +26 -0
- data/lib/onebox/engine/dotsub_onebox.rb +25 -0
- data/lib/onebox/engine/example_onebox.rb +25 -0
- data/lib/onebox/engine/flickr_onebox.rb +25 -0
- data/lib/onebox/engine/funny_or_die_onebox.rb +26 -0
- data/lib/onebox/engine/html.rb +11 -0
- data/lib/onebox/engine/hulu_onebox.rb +26 -0
- data/lib/onebox/engine/nfb_onebox.rb +25 -0
- data/lib/onebox/engine/open_graph.rb +11 -0
- data/lib/onebox/engine/qik_onebox.rb +23 -0
- data/lib/onebox/engine/revision3_onebox.rb +26 -0
- data/lib/onebox/engine/slideshare_onebox.rb +25 -0
- data/lib/onebox/engine/sound_cloud_onebox.rb +25 -0
- data/lib/onebox/engine/stack_exchange_onebox.rb +23 -0
- data/lib/onebox/engine/ted_onebox.rb +25 -0
- data/lib/onebox/engine/viddler_onebox.rb +26 -0
- data/lib/onebox/engine/vimeo_onebox.rb +26 -0
- data/lib/onebox/engine/wikipedia_onebox.rb +24 -0
- data/lib/onebox/engine/yfrog_onebox.rb +25 -0
- data/lib/onebox/matcher.rb +13 -0
- data/lib/onebox/preview.rb +31 -0
- data/lib/onebox/version.rb +3 -0
- data/onebox.gemspec +36 -0
- data/spec/fixtures/amazon.response +3098 -0
- data/spec/fixtures/android.response +138 -0
- data/spec/fixtures/apple.response +391 -0
- data/spec/fixtures/bliptv.response +724 -0
- data/spec/fixtures/clickthrough.response +1472 -0
- data/spec/fixtures/clikthrough.response +1472 -0
- data/spec/fixtures/collegehumor.response +1272 -0
- data/spec/fixtures/dailymotion.response +575 -0
- data/spec/fixtures/dotsub.response +1257 -0
- data/spec/fixtures/example.response +50 -0
- data/spec/fixtures/flickr.response +1292 -0
- data/spec/fixtures/funnyordie.response +2010 -0
- data/spec/fixtures/gist.response +282 -0
- data/spec/fixtures/github_blob.response +706 -0
- data/spec/fixtures/github_commit.response +881 -0
- data/spec/fixtures/github_pullrequest.response +1619 -0
- data/spec/fixtures/hulu.response +339 -0
- data/spec/fixtures/image.response +0 -0
- data/spec/fixtures/imgur.response +892 -0
- data/spec/fixtures/kinomap.response +299 -0
- data/spec/fixtures/nfb.response +810 -0
- data/spec/fixtures/opengraph.response +27 -0
- data/spec/fixtures/qik.response +371 -0
- data/spec/fixtures/revision3.response +985 -0
- data/spec/fixtures/rottentomatoes_fresh.response +3275 -0
- data/spec/fixtures/rottentomatoes_incomplete.response +2313 -0
- data/spec/fixtures/rottentomatoes_rotten.response +3549 -0
- data/spec/fixtures/slideshare.response +1745 -0
- data/spec/fixtures/soundcloud.response +1409 -0
- data/spec/fixtures/stackexchange.response +1889 -0
- data/spec/fixtures/ted.response +1341 -0
- data/spec/fixtures/twitter.response +1712 -0
- data/spec/fixtures/viddler.response +442 -0
- data/spec/fixtures/video.response +0 -0
- data/spec/fixtures/vimeo.response +571 -0
- data/spec/fixtures/wikipedia.response +1236 -0
- data/spec/fixtures/wikipedia_redirected.response +899 -0
- data/spec/fixtures/yfrog.response +464 -0
- data/spec/lib/onebox/engine/amazon_spec.rb +34 -0
- data/spec/lib/onebox/engine/bliptv_spec.rb +34 -0
- data/spec/lib/onebox/engine/clikthrough_spec.rb +26 -0
- data/spec/lib/onebox/engine/college_humor_spec.rb +34 -0
- data/spec/lib/onebox/engine/dailymotion_spec.rb +36 -0
- data/spec/lib/onebox/engine/dotsub_spec.rb +36 -0
- data/spec/lib/onebox/engine/example_spec.rb +18 -0
- data/spec/lib/onebox/engine/flickr_spec.rb +30 -0
- data/spec/lib/onebox/engine/funny_or_die_spec.rb +34 -0
- data/spec/lib/onebox/engine/hulu_spec.rb +34 -0
- data/spec/lib/onebox/engine/nfb_spec.rb +35 -0
- data/spec/lib/onebox/engine/qik_spec.rb +35 -0
- data/spec/lib/onebox/engine/revision3_spec.rb +36 -0
- data/spec/lib/onebox/engine/slideshare_spec.rb +30 -0
- data/spec/lib/onebox/engine/sound_cloud_spec.rb +36 -0
- data/spec/lib/onebox/engine/stack_exchange_spec.rb +27 -0
- data/spec/lib/onebox/engine/ted_spec.rb +30 -0
- data/spec/lib/onebox/engine/viddler_spec.rb +36 -0
- data/spec/lib/onebox/engine/vimeo_spec.rb +34 -0
- data/spec/lib/onebox/engine/wikipedia_spec.rb +30 -0
- data/spec/lib/onebox/engine/yfrog_spec.rb +30 -0
- data/spec/lib/onebox/engine_spec.rb +78 -0
- data/spec/lib/onebox/matcher_spec.rb +20 -0
- data/spec/lib/onebox/preview_spec.rb +21 -0
- data/spec/lib/onebox_spec.rb +49 -0
- data/spec/spec_helper.rb +26 -0
- data/spec/support/html_spec_helper.rb +17 -0
- data/templates/amazon.handlebars +9 -0
- data/templates/bliptv.handlebars +10 -0
- data/templates/clickthrough.handlebars +8 -0
- data/templates/clikthrough.handlebars +8 -0
- data/templates/collegehumor.handlebars +9 -0
- data/templates/dailymotion.handlebars +9 -0
- data/templates/dotsub.handlebars +9 -0
- data/templates/flickr.handlebars +8 -0
- data/templates/funnyordie.handlebars +9 -0
- data/templates/hulu.handlebars +9 -0
- data/templates/nfb.handlebars +8 -0
- data/templates/qik.handlebars +7 -0
- data/templates/revision3.handlebars +9 -0
- data/templates/slideshare.handlebars +8 -0
- data/templates/soundcloud.handlebars +9 -0
- data/templates/stackexchange.handlebars +7 -0
- data/templates/ted.handlebars +8 -0
- data/templates/viddler.handlebars +9 -0
- data/templates/vimeo.handlebars +9 -0
- data/templates/wikipedia.handlebars +8 -0
- data/templates/yfrog.handlebars +8 -0
- metadata +447 -0
@@ -0,0 +1,464 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml"
|
3
|
+
xmlns:og="http://ogp.me/ns#"
|
4
|
+
xmlns:fb="https://www.facebook.com/2008/fbml">
|
5
|
+
<head>
|
6
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
7
|
+
<title>
|
8
|
+
Celebrating @questlove Cook4Quest w/WyattCenac (doesn't Twitter fyi). Cereal Milk Popsicles FTW!
|
9
|
+
</title>
|
10
|
+
|
11
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
12
|
+
<meta name="copyright" content="Copyright 2011 "yfrog"" />
|
13
|
+
<meta name="description" content="Celebrating @questlove Cook4Quest w/WyattCenac (doesn't Twitter fyi). Cereal Milk Popsicles FTW! http://yfrog.com/h0jjdobj" />
|
14
|
+
<meta name="robots" content="all" />
|
15
|
+
<meta name="verify-v1" content="VJiX1IrDJHCHbxJQwyy8qiMsi9GPRmOfA+YvIB/BR8Y=" /> <link href='http://fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic' rel='stylesheet' type='text/css'>
|
16
|
+
<link href="/css/common.css?v=3657e7a0" rel="stylesheet" type="text/css">
|
17
|
+
<!--[if IE]>
|
18
|
+
<link href="/css/browser-ie.css" rel="stylesheet" type="text/css">
|
19
|
+
<![endif]-->
|
20
|
+
<!--[if IE 7]>
|
21
|
+
<link href="/css/browser-ie7.css" rel="stylesheet" type="text/css">
|
22
|
+
<![endif]-->
|
23
|
+
<!--[if IE 8]>
|
24
|
+
<link href="/css/browser-ie8.css" rel="stylesheet" type="text/css">
|
25
|
+
<![endif]-->
|
26
|
+
<link href="/favicon.ico" rel="shortcut icon" type="image/x-icon"/>
|
27
|
+
<link href="/apple-touch-icon.png" rel="apple-touch-icon" type="image/png"/>
|
28
|
+
<script type="text/javascript">
|
29
|
+
|
30
|
+
var _gaq = _gaq || [];
|
31
|
+
_gaq.push(['_setAccount', 'UA-6232220-2']);
|
32
|
+
_gaq.push(['_setDomainName', '.yfrog.com']);
|
33
|
+
|
34
|
+
(function() {
|
35
|
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
36
|
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
37
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
38
|
+
})();
|
39
|
+
|
40
|
+
</script>
|
41
|
+
<script type="text/javascript">
|
42
|
+
_gaq.push(['_setCustomVar',
|
43
|
+
1, // This custom var is set to slot #1. Required parameter.
|
44
|
+
'Logged In', // The name acts as a kind of category for the user activity. Required parameter.
|
45
|
+
'No', // This value of the custom variable. Required parameter.
|
46
|
+
2 // Sets the scope to session-level. Optional parameter.
|
47
|
+
]);
|
48
|
+
</script>
|
49
|
+
<script type="text/javascript" src="/js/EventLogger.js?v=3657e7a0"></script>
|
50
|
+
<!-- Start Quantcast tag -->
|
51
|
+
|
52
|
+
<script type="text/javascript">
|
53
|
+
_qoptions = {
|
54
|
+
qacct: "p-65DrxcUXjcWq6"
|
55
|
+
};
|
56
|
+
</script>
|
57
|
+
|
58
|
+
<script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
|
59
|
+
<noscript>
|
60
|
+
<img src="http://pixel.quantserve.com/pixel/p-65DrxcUXjcWq6.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/>
|
61
|
+
</noscript>
|
62
|
+
<!-- End Quantcast tag -->
|
63
|
+
<!-- Start Google Analytics Tag -->
|
64
|
+
<script type='text/javascript' src='http://partner.googleadservices.com/gampad/google_service.js'>
|
65
|
+
</script>
|
66
|
+
<script type='text/javascript'>
|
67
|
+
GS_googleAddAdSenseService("ca-pub-7137941865592088");
|
68
|
+
GS_googleEnableAllServices();
|
69
|
+
</script>
|
70
|
+
<!-- End Google Analytics tag -->
|
71
|
+
|
72
|
+
<!-- Popupcode -->
|
73
|
+
<!--<script type="text/javascript">
|
74
|
+
GA_googleAddSlot("ca-pub-7137941865592088", "Yfrog_LP_popunder_std");
|
75
|
+
</script>
|
76
|
+
-->
|
77
|
+
|
78
|
+
<script type="text/javascript">
|
79
|
+
quantSegs="";
|
80
|
+
function qc_results(result) {
|
81
|
+
for (var i = 0; i < result.segments.length; i++)
|
82
|
+
GA_googleAddAttr('qctarget', result.segments[i].id);
|
83
|
+
}
|
84
|
+
</script>
|
85
|
+
<script type="text/javascript" src="http://pixel.quantserve.com/api/segments.json?a=p-65DrxcUXjcWq6&callback=qc_results" ></script>
|
86
|
+
<script type="text/javascript">
|
87
|
+
var CUSTOM_SKIN_ACTIVATED = false;
|
88
|
+
</script>
|
89
|
+
|
90
|
+
<script type="text/javascript">
|
91
|
+
GA_googleAddSlot("ca-pub-7137941865592088", "Yfrog_Intermediate_LP");
|
92
|
+
</script>
|
93
|
+
<script type="text/javascript">
|
94
|
+
_e.section = _e.sections.landingPage;
|
95
|
+
_e.p();
|
96
|
+
_e.l({ action: _e.actions.view, label: 'h0jjdobj' });
|
97
|
+
</script>
|
98
|
+
<meta property="og:title" content="Celebrating @questlove Cook4Quest w/WyattCenac (doesn't Twitter fyi). Cereal Milk Popsicles FTW! http://yfrog.com/h0jjdobj" />
|
99
|
+
<meta property="og:description" content="Click on the photo to comment, share or view other great photos" />
|
100
|
+
<meta property="og:image" content="http://a.yfrog.com/img612/4100/jjdob.jpg" />
|
101
|
+
<meta property="og:type" content="photos and videos" />
|
102
|
+
<meta property="og:site_name" content="yfrog.com" />
|
103
|
+
<meta property="og:url" content="http://twitter.yfrog.com/h0jjdobj" />
|
104
|
+
<meta property="fb:admins" content="213637" />
|
105
|
+
<meta property="fb:app_id" content="253597964451" />
|
106
|
+
|
107
|
+
<!-- Twitter Cards -->
|
108
|
+
<meta name="twitter:card" value="photo" />
|
109
|
+
<meta name="twitter:title" value="" />
|
110
|
+
<meta name="twitter:url" value="http://twitter.yfrog.com/h0jjdobj" />
|
111
|
+
<meta name="twitter:image" value="http://a.yfrog.com/img612/4100/jjdob.jpg" />
|
112
|
+
<meta name="twitter:site" value="@imageshack" />
|
113
|
+
<meta name="twitter:creator" value="oliviamunn" />
|
114
|
+
|
115
|
+
<link href="/css/landing-page.css?v=3657e7a0" rel="stylesheet" type="text/css" />
|
116
|
+
<script type="text/javascript">
|
117
|
+
GA_googleAddSlot("ca-pub-7137941865592088", "yfrog2_landing");
|
118
|
+
GA_googleAddSlot("ca-pub-7137941865592088", "yfrog2_landing_left");
|
119
|
+
GA_googleAddSlot("ca-pub-7137941865592088", "yfrog2_Landing_Bottom");
|
120
|
+
GA_googleAddAttr("passback", "loggeduser");
|
121
|
+
GA_googleAddAttr("twitterid", "oliviamunn");
|
122
|
+
|
123
|
+
</script>
|
124
|
+
<script type="text/javascript">GA_googleAddAttr("category", "celebrity");</script>
|
125
|
+
<script type="text/javascript">
|
126
|
+
|
127
|
+
GA_googleAddAttr("category", "moderated");
|
128
|
+
</script>
|
129
|
+
<script type="text/javascript">
|
130
|
+
GA_googleFetchAds();
|
131
|
+
</script>
|
132
|
+
<script type='text/javascript'>
|
133
|
+
var CELEB_NAME = '';
|
134
|
+
var CELEB_SCREEN_NAME = '';
|
135
|
+
</script>
|
136
|
+
</head>
|
137
|
+
<body>
|
138
|
+
<div id="menu-search-wrapper-big-daddy" >
|
139
|
+
<div id="menu-search-wrapper" class="fixed">
|
140
|
+
<div id="menu-search" class="clearfix">
|
141
|
+
<a href="/" id="new-logo">logo</a>
|
142
|
+
<div id="global-fb-parent">
|
143
|
+
<iframe src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2Fpages%2FYfrog%2F125060927538976&send=false&layout=button_count&width=100&show_faces=false&action=like&colorscheme=light&font&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:21px;" allowTransparency="true"></iframe>
|
144
|
+
</div>
|
145
|
+
<div class="menu-search-wrapper">
|
146
|
+
<div class="search-box clearfix" id="global-search-box">
|
147
|
+
<div class="input"><input id="global-search-input" type="text" value="Find people" autocomplete="off" /></div>
|
148
|
+
<a href="/Search" id="global-search-button">Search</a>
|
149
|
+
</div>
|
150
|
+
<ul class="menu clearfix ">
|
151
|
+
<li id="post-upload-link"><a href="/" class="login-button-anchor">Upload</a></li>
|
152
|
+
<li id="signin-link">
|
153
|
+
<a class="logged menu-button" href="#!">Sign In</a>
|
154
|
+
</li>
|
155
|
+
<div class="vertical-border" id="vertical-bar-signin"> </div>
|
156
|
+
</ul>
|
157
|
+
</div>
|
158
|
+
<div class="drop-down-menu-signin" id="drop-down-menu-signin" style="display:none">
|
159
|
+
<div class="container">
|
160
|
+
<p id="login-random-error" style="display:none"></p>
|
161
|
+
<p>
|
162
|
+
<label>Email:</label>
|
163
|
+
<br/><input autocomplete="off" type="text" name="username" id="singin-username" class="input" />
|
164
|
+
</p>
|
165
|
+
<p id='login-email-error' style='display:none'></p>
|
166
|
+
<p>
|
167
|
+
<label>Password:</label>
|
168
|
+
<br/><input autocomplete="off" type="password" name="password" id="signin-password" class="input" />
|
169
|
+
</p>
|
170
|
+
<p id='login-password-error' style='display:none'></p>
|
171
|
+
<p>
|
172
|
+
<input type="checkbox" name="stay-logged-in" id="stay-logged-in"/>
|
173
|
+
Keep me logged in
|
174
|
+
</p>
|
175
|
+
<p>
|
176
|
+
<div class="medium-button-wrapper clearfix">
|
177
|
+
<a class="medium-button login-button-yfrog" id="global-signin-button"><span>Sign In</span></a>
|
178
|
+
</div>
|
179
|
+
</p>
|
180
|
+
</div>
|
181
|
+
<div class="or-header">or</div>
|
182
|
+
<div class="spacer"></div>
|
183
|
+
<div class="signin-with-twitter login-button-anchor-menu" rel="/" id="signin-with-twitter"></div>
|
184
|
+
<div class="spacer"></div>
|
185
|
+
<div class="forgot">I forgot my <a href="/" id="login-forgot-password">password</a></div>
|
186
|
+
</div>
|
187
|
+
<a href="/" class="login-button-anchor-menu" id="not-logged-banner" >Login</a>
|
188
|
+
</div>
|
189
|
+
</div>
|
190
|
+
</div> <div id="body">
|
191
|
+
<div id="main">
|
192
|
+
|
193
|
+
|
194
|
+
<div id="main-ad-container">
|
195
|
+
|
196
|
+
<!-- BEGIN left side -->
|
197
|
+
<div class="left-side">
|
198
|
+
<div id="main-refreshable-area">
|
199
|
+
|
200
|
+
<div id="continue-link"><a href="?sa=0">Continue to the media</a></div>
|
201
|
+
|
202
|
+
<div class="clearfix"></div>
|
203
|
+
|
204
|
+
<div id="main-ad">
|
205
|
+
|
206
|
+
<script type="text/javascript">
|
207
|
+
GA_googleFillSlot("Yfrog_Intermediate_LP");
|
208
|
+
</script>
|
209
|
+
|
210
|
+
</div>
|
211
|
+
</div>
|
212
|
+
</div>
|
213
|
+
</div>
|
214
|
+
|
215
|
+
</div>
|
216
|
+
|
217
|
+
<!-- END page content -->
|
218
|
+
<div id="image-controls" class="clearfix dont-hide" style="display:none">
|
219
|
+
<a href="/" class="rotate-right" title="Rotate Right">Right</a>
|
220
|
+
<a href="/" class="zoom" title="Zoom">Zoom</a>
|
221
|
+
<a href="/" class="rotate-left" title="Rotate Left">Left</a>
|
222
|
+
</div>
|
223
|
+
<div id="yfrog-autocomplete-results" style="display:none"></div>
|
224
|
+
<div id="global-informer" style="display:none">
|
225
|
+
<div class="wrapper clearfix">
|
226
|
+
<div class="text"></div>
|
227
|
+
<a class="yfrog-close-button close" href="/" title="Close">Close</a>
|
228
|
+
</div>
|
229
|
+
</div>
|
230
|
+
<div id="action-share" style="display:none"></div>
|
231
|
+
<div id="yfrog-popup" style="display:none">
|
232
|
+
<div id="yfrog-popup-wrapper">
|
233
|
+
<div id="yfrog-popup-main">
|
234
|
+
<a id="yfrog-popup-close" class="yfrog-close-button" title="Close">Close</a>
|
235
|
+
<div id="yfrog-popup-content"></div>
|
236
|
+
</div>
|
237
|
+
</div>
|
238
|
+
<div id="yfrog-popup-overlay"> </div>
|
239
|
+
</div>
|
240
|
+
<div id="yfrog-popup-dupe" style="display:none">
|
241
|
+
<div id="yfrog-popup-wrapper-dupe">
|
242
|
+
<div id="yfrog-popup-main-dupe">
|
243
|
+
<a id="yfrog-popup-close-dupe" class="yfrog-close-button" title="Close">Close</a>
|
244
|
+
<div id="yfrog-popup-content-dupe"></div>
|
245
|
+
</div>
|
246
|
+
</div>
|
247
|
+
<div id="yfrog-popup-overlay-dupe"> </div>
|
248
|
+
</div>
|
249
|
+
|
250
|
+
<div id="thumbnail-overlay" style="display:none">
|
251
|
+
<div id="thumbnail-overlay-content" class="clearfix">
|
252
|
+
<div class="left-side">
|
253
|
+
<div class="info-area clearfix">
|
254
|
+
<div class="image"><a href="/" class="user-mouse-over"><img src="/images/empty.png" /></a></div>
|
255
|
+
<div class="info">
|
256
|
+
<div class="user clearfix">
|
257
|
+
<a href="/" class="user-mouse-over"></a>
|
258
|
+
<span class="date"></span>
|
259
|
+
<a title="Twitter" class="media-overlay-source-twitter" target="_blank" href="http://twitter.com">Twitter</a>
|
260
|
+
</div>
|
261
|
+
<div class="text"></div>
|
262
|
+
<ul class="controls clearfix">
|
263
|
+
<a class="comment" title="Reply" href="/">Reply</a>
|
264
|
+
<a data-message-id="" class="share-button " href="/">Tweet</a>
|
265
|
+
<li id="thumbnail-overlay-like"></li>
|
266
|
+
</ul>
|
267
|
+
</div>
|
268
|
+
</div>
|
269
|
+
<div class="image-area">
|
270
|
+
<a href="/" class="prev-arrow" title="Previous">Prev</a>
|
271
|
+
<a href="/" class="image-link"><img src="/images/empty.png" onload="if(window.popupImageLoaded){popupImageLoaded(this);}" style="display:none" /></a>
|
272
|
+
<a href="/" class="next-arrow" title="Next">Next</a>
|
273
|
+
</div>
|
274
|
+
<div class="tagging-row clearfix"></div>
|
275
|
+
</div>
|
276
|
+
<div class="right-side">
|
277
|
+
<div class="popup-comment-box">
|
278
|
+
<div class="wrapper"></div>
|
279
|
+
<div class="threads"></div>
|
280
|
+
</div>
|
281
|
+
</div>
|
282
|
+
</div>
|
283
|
+
</div>
|
284
|
+
<div id="yfrog-share-options" class="share-menu-popup" style="display:none">
|
285
|
+
<div class="wrapper">
|
286
|
+
<div id="yfrog-share-header" class="clearfix">
|
287
|
+
<div class="title">SHARE</div>
|
288
|
+
<!--
|
289
|
+
<a href="/" title="Close" class="yfrog-close-button close">Close</a>
|
290
|
+
-->
|
291
|
+
</div>
|
292
|
+
<ul id="yfrog-share-sites" class="clearfix">
|
293
|
+
<a href="/" class="facebook" title="Facebook">Facebook</a>
|
294
|
+
<a href="/" class="twitter" title="Twitter">Twitter</a>
|
295
|
+
<a href="/" class="myspace" title="MySpace">MySpace</a>
|
296
|
+
<a href="/" class="email" title="Email">Email</a>
|
297
|
+
<a href="/" class="stumbleupon" title="Stumble Upon">Stumble Upon</a>
|
298
|
+
<a href="/" class="googlebuzz" title="Google Buzz">Google Buzz</a>
|
299
|
+
<a href="/" class="more" title="More">More</a>
|
300
|
+
</ul>
|
301
|
+
</div>
|
302
|
+
</div>
|
303
|
+
<div id="yfrog-global-upload" style="display:none">
|
304
|
+
<a name="globalArea_anchor"></a>
|
305
|
+
<div id="globalArea_flash" class="status-area">
|
306
|
+
<div id="status-header" class="clearfix">
|
307
|
+
<h3>What’s happening?</h3>
|
308
|
+
</div>
|
309
|
+
<div class="wrapper clearfix autogrow-textarea-parent">
|
310
|
+
<div class="textarea"><textarea data-string-width="95" data-min-height="57" data-height-inc="19" autocomplete="off" name="globalArea_message" id="globalArea_message" class="autocomplete-input autogrow-textarea large no-bg" rel="/"></textarea></div>
|
311
|
+
<div class="upload-button autogrow-textarea-related" data-origin="globalArea">
|
312
|
+
<div class="upflash hideable-flash">
|
313
|
+
<embed wmode="transparent" id="globalArea_uploader" width="60" height="54" class="flash-uploader" src="/flash/uploader_grey_v3.swf"
|
314
|
+
quality="high"
|
315
|
+
bgcolor="#ffffff"
|
316
|
+
name="uploader-flash"
|
317
|
+
id="uploader"
|
318
|
+
align="middle"
|
319
|
+
allowScriptAccess="always"
|
320
|
+
type="application/x-shockwave-flash"
|
321
|
+
pluginspage="http://www.macromedia.com/go/getflashplayer"
|
322
|
+
flashvars="blacklist=swf&prefix=yload&locale=en&maxAllowedFileSize=41943040&video=1&videoMaxAllowedFileSize=999999999&videostoragehosts=208.94.0.193,208.94.1.8,208.94.2.7&videoprocessinghosts=render.imageshack.us&videoextensions=avi,wmv,mkv,3gpp,mov,mp4,*&threadId=globalArea"/>
|
323
|
+
</div>
|
324
|
+
<!--
|
325
|
+
<div class="upload-loading" style="display:none"><img src="/images/loader_small.gif" /></div>
|
326
|
+
-->
|
327
|
+
</div>
|
328
|
+
</div>
|
329
|
+
<div id="upload-input-count" class="upload-input-count invisible"></div>
|
330
|
+
<ul class="uploaded-images clearfix">
|
331
|
+
<li class="list-start">list start</li>
|
332
|
+
</ul>
|
333
|
+
<div style="display:none" class="post-button clearfix faded-out" rel="globalArea"><a href="/" class="medium-button login-button-anchor"><span>Tweet</span></a></div>
|
334
|
+
</div></div>
|
335
|
+
<div id="footer">
|
336
|
+
|
337
|
+
<div class="body">
|
338
|
+
<div class="main">
|
339
|
+
<div class="top-area clearfix">
|
340
|
+
<div class="right-side">
|
341
|
+
<div class="clearfix first-row">
|
342
|
+
<h3 class="name">yfrog</h3>
|
343
|
+
<div class="text">
|
344
|
+
<h3>Join the Conversation</h3>
|
345
|
+
<div class="content">
|
346
|
+
Share photos and videos on Twitter.
|
347
|
+
</div>
|
348
|
+
</div>
|
349
|
+
<div class="social">
|
350
|
+
<h3>Find Us</h3>
|
351
|
+
<ul class="clearfix">
|
352
|
+
<a class="fb" target="_blank" href="http://www.facebook.com/pages/Yfrog/125060927538976">Facebook</a>
|
353
|
+
<a class="tw" target="_blank" href="http://twitter.com/imageshack">Twitter</a>
|
354
|
+
</ul>
|
355
|
+
</div>
|
356
|
+
</div>
|
357
|
+
<div class="boxed-area">
|
358
|
+
<ul class="clearfix">
|
359
|
+
<a rel="blog" class="trackable" href="http://blog.imageshack.us/" title="Blog">Blog</a>
|
360
|
+
<a rel="advertising" class="trackable" href="/page/advertising" title="Advertising">Advertising</a>
|
361
|
+
<a rel="faq" class="trackable" href="/page/faq" title="FAQ">FAQ</a>
|
362
|
+
</ul>
|
363
|
+
<ul class="clearfix">
|
364
|
+
<!-- <a rel="api" class="trackable" href="http://code.google.com/p/imageshackapi/wiki/YFrogAPI" title="API">API</a> -->
|
365
|
+
<a rel="press" class="trackable" href="/page/api" title="API">API</a>
|
366
|
+
<a rel="contact" class="trackable" href="http://imageshack.us/content.php?page=email" title="Contact">Contact</a>
|
367
|
+
<a rel="tAndC" class="trackable" href="/page/tos" title="Terms & Conditions">Terms & Conditions</a>
|
368
|
+
</ul>
|
369
|
+
<ul class="clearfix">
|
370
|
+
<a rel="press" class="trackable" href="/press/list" title="Press">Press</a>
|
371
|
+
<a rel="jobs" class="trackable" href="http://blog.yfrog.com/jobs/" title="Terms & Conditions">Jobs</a>
|
372
|
+
<a rel="help" class="trackable" href="#feedback" onclick="if(GSFN){GSFN.show();}; return false;" title="Help">Help</a>
|
373
|
+
<!-- see footer_lang.tpl for what used to be here -->
|
374
|
+
</ul>
|
375
|
+
</div>
|
376
|
+
</div>
|
377
|
+
</div>
|
378
|
+
<div class="bottom-area">
|
379
|
+
©2003-2011 ImageShack Corp. All rights reserved.
|
380
|
+
</div>
|
381
|
+
</div>
|
382
|
+
</div>
|
383
|
+
</div>
|
384
|
+
<!-- Footer -->
|
385
|
+
<script type="text/javascript" src="/js/jquery/jquery-1.6.2.min.js"></script>
|
386
|
+
<script type="text/javascript" src="/js/swfobject.js"></script>
|
387
|
+
<script type="text/javascript" src="/flash/jwplayer/jwplayer-5.7.js"></script>
|
388
|
+
<script type="text/javascript" src="/js/Utils.js?v=3657e7a0"></script>
|
389
|
+
<script type="text/javascript" src="/js/common.js?v=3657e7a0"></script>
|
390
|
+
<script type="text/javascript">
|
391
|
+
Site.uploaderSwfPath = '/flash/uploader_grey_v3.swf';
|
392
|
+
Site.publicCaptcha = '6Ler0MMSAAAAAH7CEH1MyoBdpJF1HKBBWCPOA-OV';
|
393
|
+
</script>
|
394
|
+
<!-- Start get Satisfaction -->
|
395
|
+
<style type='text/css'>@import url('http://s3.amazonaws.com/getsatisfaction.com/feedback/feedback.css');</style>
|
396
|
+
<script src='http://s3.amazonaws.com/getsatisfaction.com/feedback/feedback.js'type='text/javascript'></script>
|
397
|
+
<script type="text/javascript" charset="utf-8">
|
398
|
+
|
399
|
+
var tab_options = {}
|
400
|
+
tab_options.placement = "hidden"; // left, right, bottom, hidden
|
401
|
+
tab_options.color = "#999999"; // hex (#FF0000) or color (red)
|
402
|
+
|
403
|
+
GSFN.feedback('http://getsatisfaction.com/yfrog/feedback/topics/new?display=overlay&style=question', tab_options);
|
404
|
+
|
405
|
+
</script>
|
406
|
+
<!-- end Get Satisfaction-->
|
407
|
+
<!-- Begin comScore Tag -->
|
408
|
+
<script>
|
409
|
+
document.write(unescape("%3Cscript src='" + (document.location.protocol == "https:" ? " https://sb" : " http://b") + ".scorecardresearch.com/beacon.js' %3E%3C/script%3E"));
|
410
|
+
</script>
|
411
|
+
<script>
|
412
|
+
|
413
|
+
COMSCORE.beacon({
|
414
|
+
c1:2,
|
415
|
+
c2:7518627,
|
416
|
+
c3:"",
|
417
|
+
c4:"",
|
418
|
+
c5:"",
|
419
|
+
c6:"",
|
420
|
+
c15:""
|
421
|
+
});
|
422
|
+
|
423
|
+
</script>
|
424
|
+
<noscript>
|
425
|
+
<img src="http://b.scorecardresearch.com/p?c1=2&c2=7518627&c3=&c4=&c5=&c6=&c15=&cj=1" />
|
426
|
+
</noscript>
|
427
|
+
<!-- End comScore Tag -->
|
428
|
+
<iframe name="_rlcdn2" width=0 height=0 frameborder=0 src="http://rc.rlcdn.com/360987.html"></iframe>
|
429
|
+
<script src='http://i.po.st/static/script/post-widget.js#publisherKey=ul8rbt2mjackc60cq6pi' type='text/javascript'></script>
|
430
|
+
<script type="text/javascript" src="/js/jquery/jquery.rotate.1-1.js?v=3657e7a0"></script>
|
431
|
+
<script type="text/javascript" src="/js/jquery/jquery.cookie.js?v=3657e7a0"></script>
|
432
|
+
<script type="text/javascript" src="/js/DeleteHandler.js?v=3657e7a0"></script>
|
433
|
+
<script type="text/javascript" src="/js/ShareHandler.js?v=3657e7a0"></script>
|
434
|
+
<script type="text/javascript" src="/js/SharedCommentHandler.js?v=3657e7a0"></script>
|
435
|
+
<script type="text/javascript" src="/js/history.adapter.jquery.js?v=3657e7a0"></script>
|
436
|
+
<script type="text/javascript" src="/js/history.js?v=3657e7a0"></script>
|
437
|
+
<!--<script type="text/javascript" src="/js/popunder.js?v=3657e7a0"></script>-->
|
438
|
+
<script type="text/javascript">
|
439
|
+
var landingPageAdHidden = false;
|
440
|
+
</script>
|
441
|
+
<script type="text/javascript" src="/js/landing-page-v2.js?v=3657e7a0"></script>
|
442
|
+
<script type="text/javascript">
|
443
|
+
Site.targetUser = 'oliviamunn';
|
444
|
+
Site.LP.setMode('photo');
|
445
|
+
Site.LP.setServer('612');
|
446
|
+
Site.LP.setFilename('jjdob.jpg');
|
447
|
+
Site.LP.setBucket('4100');
|
448
|
+
Site.LP.setHash('h0jjdobj');
|
449
|
+
Site.LP.setText('Celebrating @questlove Cook4Quest w/WyattCenac (doesn\'t Twitter fyi). Cereal Milk Popsicles FTW! http://yfrog.com/h0jjdobj', 'h0jjdobj');
|
450
|
+
Site.LP.showText();
|
451
|
+
Site.LP.setScreenName('oliviamunn');
|
452
|
+
Site.LP.setWidth(640);
|
453
|
+
Site.LP.setHeight(480);
|
454
|
+
Site.LP.setCreatedTime(1321499194);
|
455
|
+
Site.LP.setAdVisible(true);
|
456
|
+
Site.SharedCommentHandler.setExcludedServer('612');
|
457
|
+
Site.SharedCommentHandler.setExcludedFileName('jjdob.jpg');
|
458
|
+
Site.SharedCommentHandler.setTypeId('h0jjdobj');
|
459
|
+
</script>
|
460
|
+
</div>
|
461
|
+
</div>
|
462
|
+
|
463
|
+
</body>
|
464
|
+
</html>
|