onebox 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/.rspec +1 -0
  4. data/.rubocop.yml +476 -0
  5. data/.ruby-gemset +1 -0
  6. data/.ruby-version +1 -0
  7. data/.travis.yml +3 -0
  8. data/Gemfile +4 -0
  9. data/LICENSE.txt +22 -0
  10. data/README.md +92 -0
  11. data/Rakefile +22 -0
  12. data/lib/onebox.rb +33 -0
  13. data/lib/onebox/engine.rb +93 -0
  14. data/lib/onebox/engine/amazon_onebox.rb +25 -0
  15. data/lib/onebox/engine/bliptv_onebox.rb +26 -0
  16. data/lib/onebox/engine/clikthrough_onebox.rb +23 -0
  17. data/lib/onebox/engine/college_humor_onebox.rb +26 -0
  18. data/lib/onebox/engine/dailymotion_onebox.rb +26 -0
  19. data/lib/onebox/engine/dotsub_onebox.rb +25 -0
  20. data/lib/onebox/engine/example_onebox.rb +25 -0
  21. data/lib/onebox/engine/flickr_onebox.rb +25 -0
  22. data/lib/onebox/engine/funny_or_die_onebox.rb +26 -0
  23. data/lib/onebox/engine/html.rb +11 -0
  24. data/lib/onebox/engine/hulu_onebox.rb +26 -0
  25. data/lib/onebox/engine/nfb_onebox.rb +25 -0
  26. data/lib/onebox/engine/open_graph.rb +11 -0
  27. data/lib/onebox/engine/qik_onebox.rb +23 -0
  28. data/lib/onebox/engine/revision3_onebox.rb +26 -0
  29. data/lib/onebox/engine/slideshare_onebox.rb +25 -0
  30. data/lib/onebox/engine/sound_cloud_onebox.rb +25 -0
  31. data/lib/onebox/engine/stack_exchange_onebox.rb +23 -0
  32. data/lib/onebox/engine/ted_onebox.rb +25 -0
  33. data/lib/onebox/engine/viddler_onebox.rb +26 -0
  34. data/lib/onebox/engine/vimeo_onebox.rb +26 -0
  35. data/lib/onebox/engine/wikipedia_onebox.rb +24 -0
  36. data/lib/onebox/engine/yfrog_onebox.rb +25 -0
  37. data/lib/onebox/matcher.rb +13 -0
  38. data/lib/onebox/preview.rb +31 -0
  39. data/lib/onebox/version.rb +3 -0
  40. data/onebox.gemspec +36 -0
  41. data/spec/fixtures/amazon.response +3098 -0
  42. data/spec/fixtures/android.response +138 -0
  43. data/spec/fixtures/apple.response +391 -0
  44. data/spec/fixtures/bliptv.response +724 -0
  45. data/spec/fixtures/clickthrough.response +1472 -0
  46. data/spec/fixtures/clikthrough.response +1472 -0
  47. data/spec/fixtures/collegehumor.response +1272 -0
  48. data/spec/fixtures/dailymotion.response +575 -0
  49. data/spec/fixtures/dotsub.response +1257 -0
  50. data/spec/fixtures/example.response +50 -0
  51. data/spec/fixtures/flickr.response +1292 -0
  52. data/spec/fixtures/funnyordie.response +2010 -0
  53. data/spec/fixtures/gist.response +282 -0
  54. data/spec/fixtures/github_blob.response +706 -0
  55. data/spec/fixtures/github_commit.response +881 -0
  56. data/spec/fixtures/github_pullrequest.response +1619 -0
  57. data/spec/fixtures/hulu.response +339 -0
  58. data/spec/fixtures/image.response +0 -0
  59. data/spec/fixtures/imgur.response +892 -0
  60. data/spec/fixtures/kinomap.response +299 -0
  61. data/spec/fixtures/nfb.response +810 -0
  62. data/spec/fixtures/opengraph.response +27 -0
  63. data/spec/fixtures/qik.response +371 -0
  64. data/spec/fixtures/revision3.response +985 -0
  65. data/spec/fixtures/rottentomatoes_fresh.response +3275 -0
  66. data/spec/fixtures/rottentomatoes_incomplete.response +2313 -0
  67. data/spec/fixtures/rottentomatoes_rotten.response +3549 -0
  68. data/spec/fixtures/slideshare.response +1745 -0
  69. data/spec/fixtures/soundcloud.response +1409 -0
  70. data/spec/fixtures/stackexchange.response +1889 -0
  71. data/spec/fixtures/ted.response +1341 -0
  72. data/spec/fixtures/twitter.response +1712 -0
  73. data/spec/fixtures/viddler.response +442 -0
  74. data/spec/fixtures/video.response +0 -0
  75. data/spec/fixtures/vimeo.response +571 -0
  76. data/spec/fixtures/wikipedia.response +1236 -0
  77. data/spec/fixtures/wikipedia_redirected.response +899 -0
  78. data/spec/fixtures/yfrog.response +464 -0
  79. data/spec/lib/onebox/engine/amazon_spec.rb +34 -0
  80. data/spec/lib/onebox/engine/bliptv_spec.rb +34 -0
  81. data/spec/lib/onebox/engine/clikthrough_spec.rb +26 -0
  82. data/spec/lib/onebox/engine/college_humor_spec.rb +34 -0
  83. data/spec/lib/onebox/engine/dailymotion_spec.rb +36 -0
  84. data/spec/lib/onebox/engine/dotsub_spec.rb +36 -0
  85. data/spec/lib/onebox/engine/example_spec.rb +18 -0
  86. data/spec/lib/onebox/engine/flickr_spec.rb +30 -0
  87. data/spec/lib/onebox/engine/funny_or_die_spec.rb +34 -0
  88. data/spec/lib/onebox/engine/hulu_spec.rb +34 -0
  89. data/spec/lib/onebox/engine/nfb_spec.rb +35 -0
  90. data/spec/lib/onebox/engine/qik_spec.rb +35 -0
  91. data/spec/lib/onebox/engine/revision3_spec.rb +36 -0
  92. data/spec/lib/onebox/engine/slideshare_spec.rb +30 -0
  93. data/spec/lib/onebox/engine/sound_cloud_spec.rb +36 -0
  94. data/spec/lib/onebox/engine/stack_exchange_spec.rb +27 -0
  95. data/spec/lib/onebox/engine/ted_spec.rb +30 -0
  96. data/spec/lib/onebox/engine/viddler_spec.rb +36 -0
  97. data/spec/lib/onebox/engine/vimeo_spec.rb +34 -0
  98. data/spec/lib/onebox/engine/wikipedia_spec.rb +30 -0
  99. data/spec/lib/onebox/engine/yfrog_spec.rb +30 -0
  100. data/spec/lib/onebox/engine_spec.rb +78 -0
  101. data/spec/lib/onebox/matcher_spec.rb +20 -0
  102. data/spec/lib/onebox/preview_spec.rb +21 -0
  103. data/spec/lib/onebox_spec.rb +49 -0
  104. data/spec/spec_helper.rb +26 -0
  105. data/spec/support/html_spec_helper.rb +17 -0
  106. data/templates/amazon.handlebars +9 -0
  107. data/templates/bliptv.handlebars +10 -0
  108. data/templates/clickthrough.handlebars +8 -0
  109. data/templates/clikthrough.handlebars +8 -0
  110. data/templates/collegehumor.handlebars +9 -0
  111. data/templates/dailymotion.handlebars +9 -0
  112. data/templates/dotsub.handlebars +9 -0
  113. data/templates/flickr.handlebars +8 -0
  114. data/templates/funnyordie.handlebars +9 -0
  115. data/templates/hulu.handlebars +9 -0
  116. data/templates/nfb.handlebars +8 -0
  117. data/templates/qik.handlebars +7 -0
  118. data/templates/revision3.handlebars +9 -0
  119. data/templates/slideshare.handlebars +8 -0
  120. data/templates/soundcloud.handlebars +9 -0
  121. data/templates/stackexchange.handlebars +7 -0
  122. data/templates/ted.handlebars +8 -0
  123. data/templates/viddler.handlebars +9 -0
  124. data/templates/vimeo.handlebars +9 -0
  125. data/templates/wikipedia.handlebars +8 -0
  126. data/templates/yfrog.handlebars +8 -0
  127. metadata +447 -0
@@ -0,0 +1,1712 @@
1
+
2
+ <!DOCTYPE html>
3
+ <!--[if IE 8]><html class="lt-ie10 ie8 " lang="en"
4
+ data-fouc-class-names="swift-loading"><![endif]-->
5
+ <!--[if IE 9]><html class="lt-ie10 ie9 " lang="en"
6
+ data-fouc-class-names="swift-loading"><![endif]-->
7
+ <!--[if gt IE 9]><!--><html lang="en"
8
+ data-fouc-class-names="swift-loading"><!--<![endif]-->
9
+ <head>
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+ <meta charset="utf-8">
18
+ <title>Twitter / toastergrrl: I&#39;m a sucker for pledges. ...</title>
19
+ <meta name="description" content="Instantly connect to what&#39;s most important to you. Follow your friends, experts, favorite celebrities, and breaking news.">
20
+
21
+
22
+
23
+ <meta name="msapplication-TileImage" content="//abs.twimg.com/favicons/win8-tile-144.png"/>
24
+ <meta name="msapplication-TileColor" content="#00aced"/>
25
+
26
+ <link href="//abs.twimg.com/favicons/favicon.ico" rel="shortcut icon" type="image/x-icon">
27
+
28
+
29
+ <meta name="swift-page-name" id="swift-page-name" content="permalink">
30
+
31
+ <link rel="canonical" href="https://twitter.com/toastergrrl/status/363116819147538433">
32
+
33
+ <link rel="alternate" type="application/json+oembed" href="https://api.twitter.com/1/statuses/oembed.json?id=363116819147538433" title="Twitter / toastergrrl: I&#39;m a sucker for pledges. ...">
34
+ <link rel="alternate" type="text/xml+oembed" href="https://api.twitter.com/1/statuses/oembed.xml?id=363116819147538433" title="Twitter / toastergrrl: I&#39;m a sucker for pledges. ...">
35
+
36
+
37
+
38
+ <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="Twitter">
39
+
40
+ <link rel="stylesheet" href="https://abs.twimg.com/a/1375391966/t1/css/t1_core_logged_out.bundle.css" type="text/css">
41
+
42
+ <link rel="stylesheet" href="https://abs.twimg.com/a/1375391966/t1/css/t1_more.bundle.css" type="text/css">
43
+
44
+
45
+
46
+ <script id="swift_loading_indicator">
47
+ document.documentElement.className=document.documentElement.className+" "+document.documentElement.getAttribute("data-fouc-class-names");
48
+ </script>
49
+ <script id="swift_action_queue">
50
+ (function(){function f(a){a=a||window.event;if(!a)return;!a.target&&a.srcElement&&(a.target=a.srcElement);if(!j(a))return;if(!document.addEventListener){var b={};for(var c in a)b[c]=a[c];a=b}a.preventDefault=a.stopPropagation=a.stopImmediatePropagation=function(
51
+ ){};d.push(a);return!1}function g($){i();for(var b=0,c;c=d[b];b++){var e=$(c.target);if(c.type=="click"&&c.target.tagName.toLowerCase()=="a"){var f=$.data(e.get(0),"events"),g=f&&f.click,j=!c.target.hostname.match(a)||!c.target.href.match(/#$/);if(!g&&j){window
52
+ .location=c.target.href;continue}}e.trigger(c)}window.swiftActionQueue.wasFlushed=!0}function i(){e&&clearTimeout(e);for(var a=0;a<c.length;a++)document["on"+c[a]]=null}function j(c){var d=c.target.tagName.toLowerCase();if(d=="label")if(c.target.getAttribute
53
+ ("for")){var e=document.getElementById(c.target.getAttribute("for"));if(e.getAttribute("type")=="checkbox")return!1}else for(var f=0;f<c.target.childNodes.length;f++)if((c.target.childNodes[f].tagName||"").toLowerCase()=="input"&&c.target.childNodes[f].getAttribute
54
+ ("type")=="checkbox")return!1;if(d=="textarea"||d=="input"&&c.target.getAttribute("type")=="text"||c.target.getAttribute("contenteditable")=="true")if(c.type.match(b))return!1;return c.metaKey?!1:c.clientX&&c.shiftKey&&d=="a"?!1:c.target&&c.target.hostname&&!
55
+ c.target.hostname.match(a)?!1:!0}var a=/^([^\.]+\.)*twitter.com$/,b=/^key/,c=["click","keydown","keypress","keyup"],d=[],e=null;for(var k=0;k<c.length;k++)document["on"+c[k]]=f;setTimeout(i,1e4);window.swiftActionQueue={flush:g,wasFlushed:!1}})();
56
+ </script>
57
+ <script id="composition_state">
58
+ (function(){function a(a){a.target.setAttribute("data-in-composition","true")}function b(a){a.target.removeAttribute("data-in-composition")}if(document.addEventListener){document.addEventListener("compositionstart",a,!1);document.addEventListener("compositionend"
59
+ ,b,!1)}})();
60
+ </script>
61
+
62
+ </head>
63
+ <body class="t1 logged-out user-style-toastergrrl" dir="ltr">
64
+ <div id="doc" class="route-permalink">
65
+ <div class="topbar js-topbar">
66
+ <div id="banners" class="js-banners">
67
+ </div>
68
+ <div class="global-nav" data-section-term="top_nav">
69
+ <div class="global-nav-inner">
70
+ <div class="container">
71
+
72
+
73
+ <ul class="nav js-global-actions">
74
+ <li class="home" data-global-action="t1home">
75
+ <a class="nav-logo-link" href="/" data-nav="front">
76
+ <span class="icon bird-topbar-blue"><span class="visuallyhidden">Twitter</span></span>
77
+ </a>
78
+ </li>
79
+ </ul>
80
+
81
+ <div class="pull-right">
82
+ <div role="search">
83
+ <form class="form-search js-search-form" action="/search" id="global-nav-search">
84
+ <label class="visuallyhidden" for="search-query">Search query</label>
85
+ <input class="search-input" type="text" id="search-query" placeholder="Search" name="q" autocomplete="off" spellcheck="false">
86
+ <span class="search-icon js-search-action">
87
+ <button type="submit" class="icon nav-search">
88
+ <span class="visuallyhidden">
89
+
90
+ Search
91
+ </span>
92
+ </button>
93
+ </span>
94
+ <input disabled="disabled" class="search-input search-hinting-input" type="text" id="search-query-hint" autocomplete="off" spellcheck="false">
95
+
96
+
97
+
98
+ <div class="dropdown-menu typeahead">
99
+ <div class="dropdown-caret">
100
+ <div class="caret-outer"></div>
101
+ <div class="caret-inner"></div>
102
+ </div>
103
+ <div class="dropdown-inner js-typeahead-results">
104
+ <div class="typeahead-saved-searches">
105
+ <ul class="typeahead-items saved-searches-list">
106
+
107
+ <li class="typeahead-item typeahead-saved-search-item"><a class="js-nav" href="" data-search-query="" data-query-source="" data-ds="saved_search" tabindex="-1"><span class="icon generic-search"></span></a></li>
108
+ </ul>
109
+ </div>
110
+
111
+ <ul class="typeahead-items typeahead-topics">
112
+
113
+ <li class="typeahead-item typeahead-topic-item">
114
+ <a class="js-nav" href="" data-search-query="" data-query-source="typeahead_click" data-ds="topics" tabindex="-1">
115
+ <i class="generic-search"></i>
116
+ </a>
117
+ </li>
118
+ </ul>
119
+
120
+
121
+
122
+
123
+
124
+ <ul class="typeahead-items typeahead-accounts js-typeahead-accounts">
125
+
126
+ <li data-user-id="" data-user-screenname="" data-remote="true" data-score="" class="typeahead-item typeahead-account-item js-selectable">
127
+
128
+ <a class="js-nav" data-query-source="typeahead_click" data-search-query="" data-ds="account">
129
+ <img class="avatar size24">
130
+ <div class="typeahead-user-item-info">
131
+ <span class="fullname"></span>
132
+ <span class="js-verified hidden"><span class="icon verified"><span class="visuallyhidden">Verified account</span></span></span>
133
+ <span class="username"><s>@</s><b></b></span>
134
+ </div>
135
+ </a>
136
+ </li>
137
+ <li class="js-selectable typeahead-accounts-shortcut js-shortcut"><a class="js-nav" href="" data-search-query="" data-query-source="typeahead_click" data-shortcut="true" data-ds="account_search"></a></li>
138
+ </ul>
139
+
140
+ <ul class="typeahead-items typeahead-trend-locations-list">
141
+
142
+ <li class="typeahead-item typeahead-trend-locations-item"><a class="js-nav" href="" data-ds="trend_location" data-search-query="" tabindex="-1"></a></li>
143
+ </ul>
144
+ <ul class="typeahead-items typeahead-context-list">
145
+
146
+ <li class="typeahead-item typeahead-context-item"><a class="js-nav" href="" data-ds="context_helper" data-search-query="" tabindex="-1"></a></li>
147
+ </ul>
148
+ </div>
149
+ </div>
150
+
151
+ </form>
152
+ </div>
153
+
154
+ <ul class="nav secondary-nav language-dropdown">
155
+ <li class="dropdown js-language-dropdown">
156
+ <a class="dropdown-toggle" href="javascript:;">
157
+ <small>Language:</small>
158
+ <span class="js-current-language">English</span>
159
+ <b class="caret"></b>
160
+ </a>
161
+ <ul class="dropdown-menu">
162
+ <li class="dropdown-caret right">
163
+ <span class="caret-outer"></span>
164
+ <span class="caret-inner"></span>
165
+ </li>
166
+ <li><a href="?lang=id" data-lang-code="id" title="Indonesian" class="js-language-link">Bahasa Indonesia</a></li>
167
+ <li><a href="?lang=msa" data-lang-code="msa" title="Malay" class="js-language-link">Bahasa Melayu</a></li>
168
+ <li><a href="?lang=da" data-lang-code="da" title="Danish" class="js-language-link">Dansk</a></li>
169
+ <li><a href="?lang=de" data-lang-code="de" title="German" class="js-language-link">Deutsch</a></li>
170
+ <li><a href="?lang=en-gb" data-lang-code="en-gb" title="English UK" class="js-language-link">EnglishUK</a></li>
171
+ <li><a href="?lang=es" data-lang-code="es" title="Spanish" class="js-language-link">Español</a></li>
172
+ <li><a href="?lang=eu" data-lang-code="eu" title="Basque" class="js-language-link">Euskara</a></li>
173
+ <li><a href="?lang=fil" data-lang-code="fil" title="Filipino" class="js-language-link">Filipino</a></li>
174
+ <li><a href="?lang=gl" data-lang-code="gl" title="Galician" class="js-language-link">Galego</a></li>
175
+ <li><a href="?lang=it" data-lang-code="it" title="Italian" class="js-language-link">Italiano</a></li>
176
+ <li><a href="?lang=xx-lc" data-lang-code="xx-lc" title="Lolcat" class="js-language-link">LOLCATZ</a></li>
177
+ <li><a href="?lang=hu" data-lang-code="hu" title="Hungarian" class="js-language-link">Magyar</a></li>
178
+ <li><a href="?lang=nl" data-lang-code="nl" title="Dutch" class="js-language-link">Nederlands</a></li>
179
+ <li><a href="?lang=no" data-lang-code="no" title="Norwegian" class="js-language-link">Norsk</a></li>
180
+ <li><a href="?lang=pl" data-lang-code="pl" title="Polish" class="js-language-link">Polski</a></li>
181
+ <li><a href="?lang=pt" data-lang-code="pt" title="Portuguese" class="js-language-link">Português</a></li>
182
+ <li><a href="?lang=fi" data-lang-code="fi" title="Finnish" class="js-language-link">Suomi</a></li>
183
+ <li><a href="?lang=sv" data-lang-code="sv" title="Swedish" class="js-language-link">Svenska</a></li>
184
+ <li><a href="?lang=tr" data-lang-code="tr" title="Turkish" class="js-language-link">Türkçe</a></li>
185
+ <li><a href="?lang=ca" data-lang-code="ca" title="Catalan" class="js-language-link">català</a></li>
186
+ <li><a href="?lang=fr" data-lang-code="fr" title="French" class="js-language-link">français</a></li>
187
+ <li><a href="?lang=ro" data-lang-code="ro" title="Romanian" class="js-language-link">română</a></li>
188
+ <li><a href="?lang=cs" data-lang-code="cs" title="Czech" class="js-language-link">Čeština</a></li>
189
+ <li><a href="?lang=el" data-lang-code="el" title="Greek" class="js-language-link">Ελληνικά</a></li>
190
+ <li><a href="?lang=ru" data-lang-code="ru" title="Russian" class="js-language-link">Русский</a></li>
191
+ <li><a href="?lang=uk" data-lang-code="uk" title="Ukrainian" class="js-language-link">Українська мова</a></li>
192
+ <li><a href="?lang=he" data-lang-code="he" title="Hebrew" class="js-language-link">עִבְרִית</a></li>
193
+ <li><a href="?lang=ur" data-lang-code="ur" title="Urdu" class="js-language-link">اردو</a></li>
194
+ <li><a href="?lang=ar" data-lang-code="ar" title="Arabic" class="js-language-link">العربية</a></li>
195
+ <li><a href="?lang=fa" data-lang-code="fa" title="Farsi" class="js-language-link">فارسی</a></li>
196
+ <li><a href="?lang=hi" data-lang-code="hi" title="Hindi" class="js-language-link">हिन्दी</a></li>
197
+ <li><a href="?lang=th" data-lang-code="th" title="Thai" class="js-language-link">ภาษาไทย</a></li>
198
+ <li><a href="?lang=ja" data-lang-code="ja" title="Japanese" class="js-language-link">日本語</a></li>
199
+ <li><a href="?lang=zh-cn" data-lang-code="zh-cn" title="Simplified Chinese" class="js-language-link">简体中文</a></li>
200
+ <li><a href="?lang=zh-tw" data-lang-code="zh-tw" title="Traditional Chinese" class="js-language-link">繁體中文</a></li>
201
+ <li><a href="?lang=ko" data-lang-code="ko" title="Korean" class="js-language-link">한국어</a></li>
202
+ </ul>
203
+ <div class="js-front-language">
204
+ <form action="/sessions/change_locale" class="language" method="POST">
205
+ <input type="hidden" name="lang">
206
+ <input type="hidden" name="redirect">
207
+ <input type="hidden" name="authenticity_token" value="536b1e457fdfecf08c6c16794af6a3bb794a626d">
208
+ </form>
209
+ </div>
210
+ </li>
211
+ </ul>
212
+
213
+ <ul class="nav secondary-nav session-dropdown" id="session">
214
+ <li class="dropdown js-session">
215
+ <a class="dropdown-toggle dropdown-signin" id="signin-link" href="#" data-nav="login">
216
+ <small>Have an account?</small> Sign in<span class="caret"></span>
217
+ </a>
218
+ <a class="dropdown-signup" id="signup-link" href="https://twitter.com/signup?context=login" data-nav="signup">
219
+ <small>New to Twitter?</small><span class="emphasize"> Join Today &raquo;</span>
220
+ </a>
221
+ <ul class="dropdown-menu dropdown-form" id="signin-dropdown">
222
+ <li class="dropdown-caret right">
223
+ <span class="caret-outer"></span>
224
+ <span class="caret-inner"></span>
225
+ </li>
226
+ <li>
227
+ <form action="https://twitter.com/sessions" class="js-signin signin" method="post">
228
+ <fieldset class="textbox">
229
+ <label class="username js-username">
230
+ <span>Username or email</span>
231
+ <input class="js-username-field email-input js-initial-focus" type="text" name="session[username_or_email]" autocomplete="on">
232
+ </label>
233
+ <label class="password js-password">
234
+ <span>Password</span>
235
+ <input class="js-password-field" type="password" value="" name="session[password]">
236
+ </label>
237
+ </fieldset>
238
+
239
+ <fieldset class="subchck">
240
+ <label class="remember">
241
+ <input type="checkbox" value="1" name="remember_me" >
242
+ <span>Remember me</span>
243
+ </label>
244
+ <button type="submit" class="btn submit">Sign in</button>
245
+ </fieldset>
246
+
247
+ <input type="hidden" name="scribe_log">
248
+ <input type="hidden" name="redirect_after_login" value="/toastergrrl/statuses/363116819147538433">
249
+ <input type="hidden" value="536b1e457fdfecf08c6c16794af6a3bb794a626d" name="authenticity_token"/>
250
+
251
+ <div class="divider"></div>
252
+ <p class="footer-links">
253
+
254
+ <a class="forgot" href="/account/resend_password">Forgot password?</a><br />
255
+ <a class="mobile has-sms" href="/account/complete">Already using Twitter via text message?</a>
256
+ </p>
257
+ </form>
258
+
259
+ </li>
260
+ </ul>
261
+ </li>
262
+ </ul>
263
+
264
+ </div>
265
+
266
+
267
+ <a id="close-all-button" class="close-all-tweets js-close-all-tweets" href="#" title="Close all open Tweets">
268
+ <i class="nav-breaker"></i>
269
+ </a>
270
+ </div>
271
+ </div>
272
+ </div>
273
+
274
+ </div>
275
+
276
+ <div id="page-outer">
277
+ <div id="page-container" class="wrapper wrapper-permalink white">
278
+
279
+ <style id="user-style-toastergrrl" class="js-user-style">
280
+
281
+
282
+
283
+
284
+
285
+
286
+
287
+
288
+
289
+ a,
290
+
291
+
292
+
293
+ .btn-link,
294
+ .btn-link:focus,
295
+
296
+
297
+
298
+
299
+ .pretty-link b,
300
+ .pretty-link:hover s,
301
+ .pretty-link:hover b,
302
+ .pretty-link:focus s,
303
+ .pretty-link:focus b,
304
+ /* Account Group */
305
+ .metadata a:hover,
306
+ .metadata a:focus,
307
+
308
+ .account-group:hover .fullname,
309
+ .account-group:focus .fullname,
310
+ .account-summary:focus .fullname,
311
+
312
+ .stats a:hover,
313
+ .stats a:hover strong,
314
+ .stats a:focus,
315
+ .stats a:focus strong,
316
+
317
+ .profile-modal-header .fullname a:hover,
318
+ .profile-modal-header .username a:hover,
319
+ .profile-modal-header .fullname a:focus,
320
+ .profile-modal-header .username a:focus,
321
+
322
+ .story-article:hover .metadata,
323
+ .story-article .metadata a:focus,
324
+
325
+ .find-friends-sources li:hover .source,
326
+
327
+
328
+
329
+
330
+
331
+ .stream-item a:hover .fullname,
332
+ .stream-item a:focus .fullname,
333
+
334
+ .stream-item .view-all-supplements:hover,
335
+ .stream-item .view-all-supplements:focus,
336
+
337
+ .tweet .time a:hover,
338
+ .tweet .time a:focus,
339
+ .tweet-actions a,
340
+ .tweet .details.with-icn b,
341
+
342
+ .stream-item:hover .original-tweet .expand-action-wrapper,
343
+ .stream-item .original-tweet.focus .expand-action-wrapper,
344
+ .opened-tweet.original-tweet .expand-action-wrapper,
345
+
346
+ .stream-item:hover .original-tweet .details b,
347
+ .stream-item .original-tweet.focus .details b,
348
+ .stream-item.open .original-tweet .details b,
349
+
350
+ .simple-tweet:hover .details b,
351
+ .simple-tweet.focus .details b,
352
+ .simple-tweet.open .details b,
353
+ .simple-tweet:hover .details .expand-action-wrapper,
354
+ .simple-tweet.focus .details .expand-action-wrapper,
355
+ .simple-tweet.open .details .collapse-action-wrapper,
356
+ .simple-tweet:hover .details .simple-details-link,
357
+ .simple-tweet.focus .details .simple-details-link,
358
+
359
+ .client-and-actions a:hover,
360
+ .client-and-actions a:focus,
361
+
362
+ .dismiss-promoted:hover b,
363
+
364
+ .tweet .context .pretty-link:hover s,
365
+ .tweet .context .pretty-link:hover b,
366
+ .tweet .context .pretty-link:focus s,
367
+ .tweet .context .pretty-link:focus b,
368
+
369
+ .list .username a:hover,
370
+ .list .username a:focus,
371
+ .list-membership-container .create-a-list,
372
+ .list-membership-container .create-a-list:hover,
373
+
374
+
375
+
376
+ .story-header:hover .view-tweets,
377
+ .card .list-details a:hover,
378
+ .card .list-details a:focus,
379
+ .card .card-body:hover .attribution,
380
+ .card .card-body .attribution:focus,
381
+ .events-card .card-body:hover .attribution,
382
+ .events-card .card-body .attribution:focus,
383
+ .new-tweets-bar,
384
+ .onebox .soccer ul.ticker a:hover,
385
+ .onebox .soccer ul.ticker a:focus,
386
+
387
+
388
+
389
+ .discover-item-actions a,
390
+
391
+
392
+
393
+ .disco-stream-item.disco_exp_actions_on_btm .more-tweet-actions .btn-link,
394
+ .disco-stream-item.disco_exp_actions_on_btm_without_stats .more-tweet-actions .btn-link,
395
+
396
+
397
+
398
+ .remove-background-btn,
399
+
400
+
401
+
402
+ .stream-item-activity-me .latest-tweet .tweet-row a:hover,
403
+ .stream-item-activity-me .latest-tweet .tweet-row a:focus,
404
+ .stream-item-activity-me .latest-tweet .tweet-row a:hover b,
405
+ .stream-item-activity-me .latest-tweet .tweet-row a:focus b {
406
+ color: #038543;
407
+ }
408
+
409
+
410
+
411
+
412
+
413
+
414
+ s,
415
+ .pretty-link:hover s,
416
+ .pretty-link:focus s,
417
+ .stream-item-activity-me .latest-tweet .tweet-row a:hover s,
418
+ .stream-item-activity-me .latest-tweet .tweet-row a:focus s {
419
+ color: #67B58E;
420
+ }
421
+
422
+
423
+
424
+ .vellip,
425
+ .vellip:before,
426
+ .vellip:after,
427
+ .conversation-module > li:after,
428
+ .conversation-module > li:before {
429
+ background-color: #67B58E;
430
+ }
431
+
432
+
433
+
434
+
435
+
436
+ .tweet .sm-reply,
437
+ .tweet .sm-rt,
438
+ .tweet .sm-fav,
439
+ .tweet .sm-image,
440
+ .tweet .sm-video,
441
+ .tweet .sm-audio,
442
+ .tweet .sm-geo,
443
+ .tweet .sm-in,
444
+ .tweet .sm-trash,
445
+ .tweet .sm-more,
446
+ .tweet .sm-page,
447
+ .tweet .sm-embed,
448
+ .tweet .sm-summary,
449
+ .tweet .sm-chat,
450
+
451
+ .timelines-navigation .active .profile-nav-icon,
452
+ .timelines-navigation .profile-nav-icon:hover,
453
+ .timelines-navigation .profile-nav-link:focus .profile-nav-icon,
454
+
455
+ .sm-top-tweet,
456
+
457
+ .metadata a.tweet-geo-text:hover .sm-geo,
458
+
459
+
460
+ .discover-item .js-action-card-search:hover .sm-search,
461
+ .discover-item .js-action-card-search:focus .sm-search {
462
+ background-color: #038543;
463
+ }
464
+
465
+ .wrapper.black {
466
+ background: url(https://abs.twimg.com/a/1375391966/t1/img/wash-black-30.png);
467
+ }
468
+
469
+ .wrapper.white {
470
+ background: url(https://abs.twimg.com/a/1375391966/t1/img/wash-white-30.png);
471
+ }
472
+
473
+
474
+
475
+ body {
476
+ background-position: left 40px;
477
+ background-attachment: fixed;
478
+ background-repeat: repeat;
479
+ background-repeat: no-repeat;
480
+ background-color: #ACDED6;
481
+ }
482
+ </style>
483
+
484
+
485
+ <style id="user-style-toastergrrl-bg-img" class="js-user-style-bg-img">
486
+ body.user-style-toastergrrl {
487
+ background-image: url(https://si0.twimg.com/images/themes/theme18/bg.gif);
488
+ }
489
+ </style>
490
+
491
+ <div role="main" class="permalink ">
492
+
493
+
494
+
495
+ <div class="permalink-inner permalink-tweet-container">
496
+
497
+
498
+ <div class="tweet permalink-tweet js-actionable-user js-actionable-tweet js-original-tweet
499
+ opened-tweet
500
+
501
+
502
+
503
+
504
+
505
+
506
+
507
+
508
+
509
+
510
+
511
+
512
+
513
+ preexpanded" data-associated-tweet-id="363116819147538433"
514
+ data-feedback-key="stream_status_363116819147538433"
515
+ data-tweet-id="363116819147538433"
516
+
517
+
518
+ data-item-id="363116819147538433"
519
+
520
+
521
+ data-screen-name="toastergrrl" data-name="Vyki Englert" data-user-id="1087064150"
522
+
523
+
524
+
525
+
526
+
527
+
528
+
529
+
530
+
531
+
532
+ data-mentions="peers"
533
+
534
+
535
+
536
+
537
+ >
538
+
539
+
540
+ <i class="dogear"></i>
541
+
542
+
543
+ <div class="content clearfix">
544
+ <div class="permalink-header">
545
+
546
+
547
+
548
+ <div class="follow-bar">
549
+ <div class="user-actions btn-group not-following " data-user-id="1087064150"
550
+ data-screen-name="toastergrrl" data-name="Vyki Englert" data-protected="false">
551
+
552
+
553
+
554
+
555
+
556
+
557
+
558
+
559
+
560
+ <button class="js-follow-btn follow-button btn" type="button">
561
+ <span class="button-text follow-text">
562
+ <i class="follow"></i> Follow
563
+
564
+ </span>
565
+ <span class="button-text following-text">
566
+ Following
567
+
568
+ </span>
569
+ <span class="button-text unfollow-text">
570
+ Unfollow
571
+
572
+ </span>
573
+ <span class="button-text blocked-text">Blocked</span>
574
+ <span class="button-text unblock-text">Unblock</span>
575
+ <span class="button-text pending-text">Pending</span>
576
+ <span class="button-text cancel-text">Cancel</span>
577
+ </button>
578
+
579
+
580
+
581
+
582
+ </div>
583
+
584
+ </div>
585
+
586
+
587
+ <a class="account-group js-account-group js-action-profile js-user-profile-link js-nav" href="/toastergrrl" data-user-id="1087064150">
588
+ <img class="avatar js-action-profile-avatar" src="https://si0.twimg.com/profile_images/3518892092/39b969d32a10b2437563e246708c8f9d_normal.jpeg" alt="">
589
+ <strong class="fullname js-action-profile-name show-popup-with-id">Vyki Englert</strong>
590
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>toastergrrl</b></span>
591
+
592
+ </a>
593
+
594
+
595
+ <small class="time">
596
+ <a href="/toastergrrl/status/363116819147538433" class="tweet-timestamp js-permalink js-nav" title="6:59 PM - 1 Aug 13" ><span class="_timestamp js-short-timestamp js-relative-timestamp" data-time="1375408770" data-long-form="true">3h</span></a>
597
+ </small>
598
+
599
+ </div>
600
+ </div>
601
+
602
+
603
+ <p class="js-tweet-text tweet-text">I&#39;m a sucker for pledges. <a href="/peers" class="twitter-atreply pretty-link" dir="ltr" ><s>@</s><b>Peers</b></a> Pledge <a href="/search?q=%23sharingeconomy&amp;src=hash" data-query-source="hashtag_click" class="twitter-hashtag pretty-link js-nav" dir="ltr" ><s>#</s><b>sharingeconomy</b></a> <a href="http://t.co/T4Sc47KAzh" rel="nofollow" dir="ltr" data-expanded-url="http://www.peers.org/action/peers-pledgea/" class="twitter-timeline-link" target="_blank" title="http://www.peers.org/action/peers-pledgea/" ><span class="invisible">http://www.</span><span class="tco-ellipsis"></span><span class="js-display-url">peers.org/action/peers-p</span><span class="invisible">ledgea/</span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span>…</span></a></p>
604
+
605
+
606
+
607
+
608
+ <div class="stream-item-footer">
609
+
610
+
611
+
612
+ <div class="context">
613
+ </div>
614
+
615
+
616
+
617
+
618
+
619
+ <ul class="tweet-actions js-actions">
620
+ <li class="action-reply-container">
621
+ <a role="button" class="with-icn js-action-reply" data-modal="tweet-reply" href="#">
622
+ <span class="icon sm-reply"></span>
623
+ <b>Reply</b>
624
+ </a>
625
+ </li>
626
+ <li class="action-rt-container js-toggle-state js-toggle-rt">
627
+ <a role="button" class="with-icn retweet" data-modal="tweet-retweet" href="#">
628
+ <span class="icon sm-rt"></span>
629
+ <b>Retweet</b>
630
+ </a>
631
+ <a role="button" class="with-icn undo-retweet" data-modal="tweet-retweet" href="#" title="Undo retweet">
632
+ <span class="icon sm-rt"></span>
633
+ <b>Retweeted</b>
634
+ </a>
635
+ </li>
636
+ <li class="action-del-container">
637
+ <a role="button" class="with-icn js-action-del" href="#">
638
+ <span class="icon sm-trash"></span>
639
+ <b>Delete</b>
640
+ </a>
641
+ </li>
642
+ <li class="action-fav-container js-toggle-state js-toggle-fav">
643
+ <a role="button" class="with-icn favorite" href="#">
644
+ <span class="icon sm-fav"></span>
645
+ <b>Favorite</b>
646
+ </a>
647
+ <a role="button" class="with-icn unfavorite" href="#" title="Undo favorite">
648
+ <span class="icon sm-fav"></span>
649
+ <b>Favorited</b>
650
+ </a>
651
+ </li>
652
+
653
+ <li class="more-tweet-actions">
654
+ <div class="action-more-container">
655
+ <div class="dropdown">
656
+ <button type="button" class="btn-link with-icn dropdown-toggle">
657
+ <i class="sm-more"></i>
658
+ <b>More</b>
659
+ </button>
660
+ <ul class="dropdown-menu">
661
+ <li class="dropdown-caret">
662
+ <span class="caret-outer"></span>
663
+ <span class="caret-inner"></span>
664
+ </li>
665
+ <li class="embed-link">
666
+ <a class="js-embed-tweet" href="#" data-nav="embed_tweet">Embed Tweet</a>
667
+ </li>
668
+ </ul>
669
+ </div>
670
+ </div>
671
+ </li>
672
+
673
+
674
+
675
+
676
+
677
+ </ul>
678
+
679
+ </div>
680
+
681
+ <div class="permalink-footer">
682
+
683
+
684
+ <div class="expanded-content js-tweet-details-dropdown">
685
+ </div>
686
+
687
+ <div class="js-tweet-details-fixer tweet-details-fixer">
688
+
689
+
690
+
691
+
692
+ <div class="js-tweet-media-container "></div>
693
+ <div class="entities-media-container " style="min-height:0px">
694
+ </div>
695
+
696
+ <div class="js-machine-translated-tweet-container"></div>
697
+ <div class="js-tweet-stats-container tweet-stats-container ">
698
+ </div>
699
+ <div class="client-and-actions">
700
+ <span class="metadata">
701
+ <span title="6:59 PM - 1 Aug 13">6:59 PM - 1 Aug 13</span>
702
+
703
+
704
+
705
+
706
+
707
+
708
+
709
+
710
+
711
+ </span>
712
+ </div>
713
+ </div>
714
+
715
+
716
+ <div class="proxy-tweet-container">
717
+
718
+
719
+
720
+
721
+
722
+
723
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable js-original-tweet
724
+ opened-tweet
725
+
726
+
727
+
728
+
729
+
730
+
731
+
732
+
733
+
734
+
735
+
736
+
737
+
738
+ "
739
+ data-feedback-key="stream_status_363116819147538433"
740
+ data-tweet-id="363116819147538433"
741
+
742
+
743
+ data-item-id="363116819147538433"
744
+
745
+
746
+ data-screen-name="toastergrrl" data-name="Vyki Englert" data-user-id="1087064150"
747
+
748
+
749
+
750
+
751
+
752
+
753
+
754
+
755
+
756
+
757
+ data-mentions="peers"
758
+
759
+
760
+
761
+
762
+ >
763
+
764
+
765
+ <span class="icon dogear"></span>
766
+
767
+
768
+ <div class="content">
769
+
770
+
771
+
772
+
773
+
774
+ <div class="stream-item-header">
775
+ <a class="account-group js-account-group js-action-profile js-user-profile-link js-nav" href="/toastergrrl" data-user-id="1087064150">
776
+ <img class="avatar js-action-profile-avatar" src="https://si0.twimg.com/profile_images/3518892092/39b969d32a10b2437563e246708c8f9d_normal.jpeg" alt="">
777
+ <strong class="fullname js-action-profile-name show-popup-with-id">Vyki Englert</strong>
778
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>toastergrrl</b></span>
779
+
780
+ </a>
781
+
782
+ <small class="time">
783
+ <a href="/toastergrrl/status/363116819147538433" class="tweet-timestamp js-permalink js-nav" title="6:59 PM - 1 Aug 13" ><span class="_timestamp js-short-timestamp js-relative-timestamp" data-time="1375408770" data-long-form="true">3h</span></a>
784
+ </small>
785
+
786
+ </div>
787
+
788
+
789
+
790
+ <p class="js-tweet-text tweet-text">I&#39;m a sucker for pledges. <a href="/peers" class="twitter-atreply pretty-link" dir="ltr" ><s>@</s><b>Peers</b></a> Pledge <a href="/search?q=%23sharingeconomy&amp;src=hash" data-query-source="hashtag_click" class="twitter-hashtag pretty-link js-nav" dir="ltr" ><s>#</s><b>sharingeconomy</b></a> <a href="http://t.co/T4Sc47KAzh" rel="nofollow" dir="ltr" data-expanded-url="http://www.peers.org/action/peers-pledgea/" class="twitter-timeline-link" target="_blank" title="http://www.peers.org/action/peers-pledgea/" ><span class="invisible">http://www.</span><span class="tco-ellipsis"></span><span class="js-display-url">peers.org/action/peers-p</span><span class="invisible">ledgea/</span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span>…</span></a></p>
791
+
792
+
793
+
794
+ <div class="stream-item-footer">
795
+
796
+
797
+
798
+ <div class="context">
799
+ </div>
800
+
801
+
802
+
803
+ <a class="details with-icn js-details" href="/toastergrrl/status/363116819147538433">
804
+ <span class="details-icon js-icon-container">
805
+
806
+ </span>
807
+ <b>
808
+ <span class="expand-stream-item js-view-details">
809
+
810
+ <span class="expand-action-wrapper">
811
+ Expand
812
+ </span>
813
+ </span>
814
+ <span class="collapse-stream-item js-hide-details">
815
+ Collapse
816
+ </span>
817
+ </b>
818
+ </a>
819
+
820
+
821
+
822
+
823
+ <ul class="tweet-actions js-actions">
824
+ <li class="action-reply-container">
825
+ <a role="button" class="with-icn js-action-reply" data-modal="tweet-reply" href="#">
826
+ <span class="icon sm-reply"></span>
827
+ <b>Reply</b>
828
+ </a>
829
+ </li>
830
+ <li class="action-rt-container js-toggle-state js-toggle-rt">
831
+ <a role="button" class="with-icn retweet" data-modal="tweet-retweet" href="#">
832
+ <span class="icon sm-rt"></span>
833
+ <b>Retweet</b>
834
+ </a>
835
+ <a role="button" class="with-icn undo-retweet" data-modal="tweet-retweet" href="#" title="Undo retweet">
836
+ <span class="icon sm-rt"></span>
837
+ <b>Retweeted</b>
838
+ </a>
839
+ </li>
840
+ <li class="action-del-container">
841
+ <a role="button" class="with-icn js-action-del" href="#">
842
+ <span class="icon sm-trash"></span>
843
+ <b>Delete</b>
844
+ </a>
845
+ </li>
846
+ <li class="action-fav-container js-toggle-state js-toggle-fav">
847
+ <a role="button" class="with-icn favorite" href="#">
848
+ <span class="icon sm-fav"></span>
849
+ <b>Favorite</b>
850
+ </a>
851
+ <a role="button" class="with-icn unfavorite" href="#" title="Undo favorite">
852
+ <span class="icon sm-fav"></span>
853
+ <b>Favorited</b>
854
+ </a>
855
+ </li>
856
+
857
+ <li class="more-tweet-actions">
858
+ <div class="action-more-container">
859
+ <div class="dropdown">
860
+ <button type="button" class="btn-link with-icn dropdown-toggle">
861
+ <i class="sm-more"></i>
862
+ <b>More</b>
863
+ </button>
864
+ <ul class="dropdown-menu">
865
+ <li class="dropdown-caret">
866
+ <span class="caret-outer"></span>
867
+ <span class="caret-inner"></span>
868
+ </li>
869
+ <li class="embed-link">
870
+ <a class="js-embed-tweet" href="#" data-nav="embed_tweet">Embed Tweet</a>
871
+ </li>
872
+ </ul>
873
+ </div>
874
+ </div>
875
+ </li>
876
+
877
+
878
+
879
+
880
+
881
+ </ul>
882
+
883
+ </div>
884
+
885
+
886
+
887
+
888
+ <div class="expanded-content js-tweet-details-dropdown">
889
+ </div>
890
+
891
+
892
+ </div>
893
+ </div>
894
+
895
+
896
+
897
+ </div>
898
+ </div>
899
+ </div>
900
+
901
+ </div>
902
+
903
+
904
+
905
+
906
+
907
+ <div class="replies-to hidden permalink-inner permalink-replies" data-component-context="replies">
908
+ <div class="tweets-wrapper">
909
+ <div id="descendants">
910
+ <div class="stream-container "
911
+
912
+ data-cursor=""
913
+
914
+ >
915
+ <div class="stream permalink-stream">
916
+ <ol class="stream-items js-navigable-stream" id="stream-items-id">
917
+
918
+
919
+
920
+
921
+
922
+
923
+
924
+
925
+
926
+
927
+
928
+
929
+ </ol>
930
+ <ol class="hidden-replies-container"></ol>
931
+ <div class="stream-autoplay-marker">
932
+ <i class="arrow"></i>
933
+ <span class="text"></span>
934
+ </div>
935
+ </div>
936
+ </div>
937
+
938
+ </div>
939
+ </div>
940
+ </div>
941
+
942
+
943
+
944
+
945
+ </div>
946
+
947
+ <div class="permalink-footer">
948
+ <div class="module signup-call-out">
949
+ <div class="flex-module">
950
+ <div class="flex-module-header">
951
+ <h2>Don’t miss any updates from Vyki Englert <small>Join Twitter today and follow what interests you!</small></h2>
952
+ </div>
953
+ <form action="https://twitter.com/signup" class="clearfix signup" method="post">
954
+ <div class="holding name">
955
+ <input type="text" autocomplete="off" name="user[name]" maxlength="20" class="js-initial-focus">
956
+ <span class="holder">Full name</span>
957
+ </div>
958
+ <div class="holding email">
959
+ <input class="email-input" type="text" autocomplete="off" name="user[email]">
960
+ <span class="holder">Email</span>
961
+ </div>
962
+ <div class="holding password">
963
+ <input type="password" name="user[user_password]">
964
+ <span class="holder">Password</span>
965
+ </div>
966
+ <input name="follow" type="hidden" value="toastergrrl">
967
+ <input type="hidden" value="permalink" name="context">
968
+ <input type="hidden" value="536b1e457fdfecf08c6c16794af6a3bb794a626d" name="authenticity_token"/>
969
+ <input name="follows" type="hidden" value="">
970
+ <input type="submit" class="btn signup-btn js-submit js-signup-btn" value="Sign up">
971
+ </form>
972
+
973
+ <div class="sms-follow">
974
+ <span class="icon"></span>
975
+ Text <strong>follow toastergrrl</strong> to <strong>40404</strong> in <a href="http://support.twitter.com/articles/14226-how-to-find-your-twitter-short-code-or-long-code" class="sms-codes-link">the United States</a>
976
+ </div>
977
+
978
+ </div>
979
+ </div>
980
+ <div class="module site-footer slim-site-footer">
981
+ <div class="flex-module">
982
+ <div class="flex-module-inner js-items-container">
983
+ <ul class="clearfix">
984
+ <li class="copyright">&copy; 2013 Twitter</li>
985
+ <li><a href="/about">About</a></li>
986
+ <li><a href="//support.twitter.com">Help</a></li>
987
+ </ul>
988
+ </div>
989
+ </div>
990
+ </div>
991
+
992
+ </div>
993
+ <div id="sensitive_flag_dialog" class="modal-container">
994
+ <div class="close-modal-background-target"></div>
995
+ <div class="modal modal-small draggable">
996
+ <div class="modal-content">
997
+ <button type="button" class="modal-btn modal-close js-close"><span class="icon close-medium"><span class="visuallyhidden">Close</span></span></button>
998
+ <div class="modal-header">
999
+ <h3 class="modal-title">Flag this media</h3>
1000
+ </div>
1001
+ <div class="modal-body">
1002
+ <p class="sensitive-title">This has already been marked as containing sensitive content.</p>
1003
+ <label class="checkbox" for="sensitive-settings-checkbox">
1004
+ <input type="checkbox" id="sensitive-settings-checkbox" value="settings">
1005
+ Change my settings to warn me before displaying media that may contain sensitive content.
1006
+ </label>
1007
+ <label class="checkbox" for="sensitive-illegal-checkbox">
1008
+ <input type="checkbox" id="sensitive-illegal-checkbox" value="illegal">
1009
+ Flag this as containing illegal content.
1010
+ </label>
1011
+ </div>
1012
+ <div class="modal-footer">
1013
+ <button id="submit_flag_confirmation" type="button" class="btn">Submit</button>
1014
+ <button id="cancel_flag_confirmation" type="button" class="btn primary-btn js-close">Cancel</button>
1015
+
1016
+ <div class="sensitive-confirmation">
1017
+ <a class="sensitive-learn-more" target="_blank" href="//support.twitter.com/articles/20069937">Learn more about flagging media</a>
1018
+ </div>
1019
+ </div>
1020
+ </div>
1021
+ </div>
1022
+ <div class="modal-overlay"></div>
1023
+ </div>
1024
+
1025
+
1026
+
1027
+ </div>
1028
+ </div>
1029
+
1030
+ </div>
1031
+ <div class="alert-messages hidden" id="message-drawer">
1032
+ <div class="message ">
1033
+ <div class="message-inside">
1034
+ <span class="message-text"></span><a class="dismiss" href="#">&times;</a>
1035
+ </div>
1036
+ </div>
1037
+ </div>
1038
+
1039
+ <div class="grid hidden">
1040
+ <div class="grid-overlay"></div>
1041
+ <div class="grid-container">
1042
+ <div class="swift-media-grid">
1043
+ <div class="grid-header-content">
1044
+ <div class="header-pic"><img class="avatar"/></div>
1045
+ <h2><a class="header-title js-nav"></a></h2>
1046
+ <h3><a class="header-subtitle js-nav"></a></h3>
1047
+ </div>
1048
+ <div class="grid-media ratio">
1049
+ <div class="grid-footer">
1050
+ <i class="bird-etched"></i>
1051
+ </div>
1052
+ <div class="grid-loading">
1053
+ <span class="spinner" title="Loading..."></span>
1054
+ </div>
1055
+ </div>
1056
+ </div>
1057
+ </div>
1058
+ </div>
1059
+
1060
+ <div class="gallery-overlay"></div>
1061
+ <div class="gallery-container">
1062
+ <div class="gallery-close-target"></div>
1063
+ <div class="swift-media-gallery">
1064
+ <div class="modal-header">
1065
+ <button type="button" class="modal-btn modal-close js-close"><span class="icon close-medium"><span class="visuallyhidden">Close</span></span></button>
1066
+ <a class="gridview grid-action" href="#"><span class="icon grid-icon"><span class="visuallyhidden"></span></span></a>
1067
+ <h2 class="modal-title"></h2>
1068
+ </div>
1069
+ <div class="gallery-media"></div>
1070
+ <div class="gallery-nav nav-prev">
1071
+ <span class="nav-prev-handle"></span>
1072
+ </div>
1073
+ <div class="gallery-nav nav-next">
1074
+ <span class="nav-next-handle"></span>
1075
+ </div>
1076
+ <div class="tweet-inverted gallery-tweet"></div>
1077
+ </div>
1078
+ </div>
1079
+
1080
+
1081
+ <div class="modal-overlay"></div>
1082
+
1083
+
1084
+
1085
+ <div id="goto-user-dialog" class="modal-container">
1086
+ <div class="modal modal-small draggable">
1087
+ <div class="modal-content">
1088
+ <button type="button" class="modal-btn modal-close js-close"><span class="icon close-medium"><span class="visuallyhidden">Close</span></span></button>
1089
+
1090
+ <div class="modal-header">
1091
+ <h3 class="modal-title">Go to a person's profile</h3>
1092
+ </div>
1093
+
1094
+ <div class="modal-body">
1095
+ <div class="modal-inner">
1096
+ <form class="goto-user-form">
1097
+ <input class="input-block username-input" type="text" placeholder="Start typing a name to jump to a profile">
1098
+
1099
+
1100
+
1101
+ <div class="dropdown-menu typeahead">
1102
+ <div class="dropdown-caret">
1103
+ <div class="caret-outer"></div>
1104
+ <div class="caret-inner"></div>
1105
+ </div>
1106
+ <div class="dropdown-inner js-typeahead-results">
1107
+ <div class="typeahead-saved-searches">
1108
+ <ul class="typeahead-items saved-searches-list">
1109
+
1110
+ <li class="typeahead-item typeahead-saved-search-item"><a class="js-nav" href="" data-search-query="" data-query-source="" data-ds="saved_search" tabindex="-1"><span class="icon generic-search"></span></a></li>
1111
+ </ul>
1112
+ </div>
1113
+
1114
+ <ul class="typeahead-items typeahead-topics">
1115
+
1116
+ <li class="typeahead-item typeahead-topic-item">
1117
+ <a class="js-nav" href="" data-search-query="" data-query-source="typeahead_click" data-ds="topics" tabindex="-1">
1118
+ <i class="generic-search"></i>
1119
+ </a>
1120
+ </li>
1121
+ </ul>
1122
+
1123
+
1124
+
1125
+
1126
+
1127
+ <ul class="typeahead-items typeahead-accounts js-typeahead-accounts">
1128
+
1129
+ <li data-user-id="" data-user-screenname="" data-remote="true" data-score="" class="typeahead-item typeahead-account-item js-selectable">
1130
+
1131
+ <a class="js-nav" data-query-source="typeahead_click" data-search-query="" data-ds="account">
1132
+ <img class="avatar size24">
1133
+ <div class="typeahead-user-item-info">
1134
+ <span class="fullname"></span>
1135
+ <span class="js-verified hidden"><span class="icon verified"><span class="visuallyhidden">Verified account</span></span></span>
1136
+ <span class="username"><s>@</s><b></b></span>
1137
+ </div>
1138
+ </a>
1139
+ </li>
1140
+ <li class="js-selectable typeahead-accounts-shortcut js-shortcut"><a class="js-nav" href="" data-search-query="" data-query-source="typeahead_click" data-shortcut="true" data-ds="account_search"></a></li>
1141
+ </ul>
1142
+
1143
+ <ul class="typeahead-items typeahead-trend-locations-list">
1144
+
1145
+ <li class="typeahead-item typeahead-trend-locations-item"><a class="js-nav" href="" data-ds="trend_location" data-search-query="" tabindex="-1"></a></li>
1146
+ </ul>
1147
+ <ul class="typeahead-items typeahead-context-list">
1148
+
1149
+ <li class="typeahead-item typeahead-context-item"><a class="js-nav" href="" data-ds="context_helper" data-search-query="" tabindex="-1"></a></li>
1150
+ </ul>
1151
+ </div>
1152
+ </div>
1153
+
1154
+ </form>
1155
+ </div>
1156
+ </div>
1157
+
1158
+ </div>
1159
+ </div>
1160
+ </div>
1161
+
1162
+
1163
+ <div id="retweet-tweet-dialog" class="modal-container">
1164
+ <div class="close-modal-background-target"></div>
1165
+ <div class="modal draggable">
1166
+ <div class="modal-content">
1167
+ <button type="button" class="modal-btn modal-close js-close"><span class="icon close-medium"><span class="visuallyhidden">Close</span></span></button>
1168
+
1169
+ <div class="modal-header">
1170
+ <h3 class="modal-title">Retweet this to your followers?</h3>
1171
+ </div>
1172
+
1173
+ <div class="modal-body modal-tweet"></div>
1174
+
1175
+ <div class="modal-footer">
1176
+ <button class="btn cancel-action js-close">Cancel</button>
1177
+ <button class="btn primary-btn retweet-action">Retweet</button>
1178
+ </div>
1179
+ </div>
1180
+ </div>
1181
+ </div>
1182
+ <div id="delete-tweet-dialog" class="modal-container">
1183
+ <div class="close-modal-background-target"></div>
1184
+ <div class="modal draggable">
1185
+ <div class="modal-content">
1186
+ <button type="button" class="modal-btn modal-close js-close"><span class="icon close-medium"><span class="visuallyhidden">Close</span></span></button>
1187
+
1188
+ <div class="modal-header">
1189
+ <h3 class="modal-title">Are you sure you want to delete this Tweet?</h3>
1190
+ </div>
1191
+
1192
+ <div class="modal-body modal-tweet"></div>
1193
+
1194
+ <div class="modal-footer">
1195
+ <button class="btn cancel-action js-close">Cancel</button>
1196
+ <button class="btn primary-btn delete-action">Delete</button>
1197
+ </div>
1198
+ </div>
1199
+ </div>
1200
+ </div>
1201
+
1202
+
1203
+
1204
+ <div id="keyboard-shortcut-dialog" class="modal-container">
1205
+ <div class="close-modal-background-target"></div>
1206
+ <div class="modal modal-large draggable">
1207
+ <div class="modal-content">
1208
+ <button type="button" class="modal-btn modal-close js-close"><span class="icon close-medium"><span class="visuallyhidden">Close</span></span></button>
1209
+
1210
+
1211
+ <div class="modal-header">
1212
+ <h3 class="modal-title">Keyboard shortcuts</h3>
1213
+ </div>
1214
+
1215
+
1216
+ <div class="modal-body">
1217
+
1218
+ <div class="keyboard-shortcuts clearfix" id="keyboard-shortcut-menu">
1219
+
1220
+ <table class="modal-table">
1221
+ <tbody>
1222
+ <tr>
1223
+ <td class="shortcut">
1224
+ <b class="sc-key">Enter</b>
1225
+ </td>
1226
+ <td class="shortcut-label">Open Tweet details</td>
1227
+ </tr>
1228
+ <tr>
1229
+ <td class="shortcut">
1230
+ <b class="sc-key">G</b> <b class="sc-key">F</b>
1231
+ </td>
1232
+ <td class="shortcut-label">Go to user...</td>
1233
+ </tr>
1234
+ <tr>
1235
+ <td class="shortcut">
1236
+ <b class="sc-key">?</b>
1237
+ </td>
1238
+ <td class="shortcut-label">This menu</td>
1239
+ </tr>
1240
+ <tr>
1241
+ <td class="shortcut">
1242
+ <b class="sc-key">J</b>
1243
+ </td>
1244
+ <td class="shortcut-label">Next Tweet</td>
1245
+ </tr>
1246
+ <tr>
1247
+ <td class="shortcut">
1248
+ <b class="sc-key">K</b>
1249
+ </td>
1250
+ <td class="shortcut-label">Previous Tweet</td>
1251
+ </tr>
1252
+ <tr>
1253
+ <td class="shortcut">
1254
+ <b class="sc-key">Space</b>
1255
+ </td>
1256
+ <td class="shortcut-label">Page down</td>
1257
+ </tr>
1258
+ <tr>
1259
+ <td class="shortcut">
1260
+ <b class="sc-key">/</b>
1261
+ </td>
1262
+ <td class="shortcut-label">Search</td>
1263
+ </tr>
1264
+ <tr>
1265
+ <td class="shortcut">
1266
+ <b class="sc-key">.</b>
1267
+ </td>
1268
+ <td class="shortcut-label">Load new Tweets</td>
1269
+ </tr>
1270
+ </tbody>
1271
+ </table>
1272
+ </div>
1273
+ </div>
1274
+ </div>
1275
+ </div>
1276
+ </div>
1277
+
1278
+
1279
+
1280
+
1281
+ <div id="block-user-dialog" class="modal-container">
1282
+ <div class="close-modal-background-target"></div>
1283
+ <div class="modal draggable">
1284
+ <div class="modal-content">
1285
+ <button type="button" class="modal-btn modal-close js-close"><span class="icon close-medium"><span class="visuallyhidden">Close</span></span></button>
1286
+
1287
+ <div class="modal-header">
1288
+ <h3 class="modal-title">Are you sure you want to block this user?</h3>
1289
+ </div>
1290
+
1291
+ <div class="modal-body modal-tweet"></div>
1292
+
1293
+ <div class="modal-footer">
1294
+ <button class="btn cancel-action js-close">Cancel</button>
1295
+ <button class="btn primary-btn block-action">Block</button>
1296
+ </div>
1297
+ </div>
1298
+ </div>
1299
+ </div>
1300
+
1301
+
1302
+
1303
+
1304
+
1305
+
1306
+ <div id="geo-disabled-dropdown">
1307
+ <ul class="dropdown-menu" tabindex="-1">
1308
+ <li class="dropdown-caret">
1309
+ <span class="caret-outer"></span>
1310
+ <span class="caret-inner"></span>
1311
+ </li>
1312
+ <li class="geo-not-enabled-yet">
1313
+ <h2>Add a location to your Tweets</h2>
1314
+ <p>
1315
+ When you tweet with a location, Twitter stores that location.&#32;
1316
+ You can switch location on/off before each Tweet and always have the option to delete your location history.
1317
+ <a href="http://support.twitter.com/forums/26810/entries/78525" target="_blank">Learn more</a>
1318
+ </p>
1319
+ <div>
1320
+ <button type="button" class="geo-turn-on btn primary-btn">Turn location on</button>
1321
+ <button type="button" class="geo-not-now btn-link">Not now</button>
1322
+ </div>
1323
+ </li>
1324
+ </ul>
1325
+
1326
+ </div>
1327
+
1328
+ <div id="geo-enabled-dropdown">
1329
+ <ul class="dropdown-menu" tabindex="-1">
1330
+ <li class="dropdown-caret">
1331
+ <span class="caret-outer"></span>
1332
+ <span class="caret-inner"></span>
1333
+ </li>
1334
+ <li class="geo-query-location">
1335
+ <input type="text" autocomplete="off" placeholder="Search for a neighborhood or city">
1336
+ <i class="generic-search"></i>
1337
+ </li>
1338
+ <li class="geo-dropdown-status"></li>
1339
+ <li class="dropdown-link geo-turn-off-item geo-focusable">
1340
+ <i class="close"></i>Turn off location
1341
+ </li>
1342
+ </ul>
1343
+
1344
+ </div>
1345
+
1346
+
1347
+ <div id="profile_popup" class="modal-container">
1348
+ <div class="close-modal-background-target"></div>
1349
+ <div class="modal modal-small draggable">
1350
+ <div class="modal-content clearfix">
1351
+ <button type="button" class="modal-btn modal-close js-close"><span class="icon close-medium"><span class="visuallyhidden">Close</span></span></button>
1352
+ <div class="modal-header">
1353
+ <h3 class="modal-title">Profile summary</h3>
1354
+ </div>
1355
+
1356
+ <div class="modal-body profile-modal">
1357
+
1358
+ </div>
1359
+
1360
+ <div class="loading">
1361
+ <span class="spinner-bigger"></span>
1362
+ </div>
1363
+ </div>
1364
+ </div>
1365
+ </div>
1366
+ <div id="list-membership-dialog" class="modal-container">
1367
+ <div class="close-modal-background-target"></div>
1368
+ <div class="modal modal-small draggable">
1369
+ <div class="modal-content">
1370
+ <button type="button" class="modal-btn modal-close js-close"><span class="icon close-medium"><span class="visuallyhidden">Close</span></span></button>
1371
+ <div class="modal-header">
1372
+ <h3 class="modal-title">Your lists</h3>
1373
+ </div>
1374
+ <div class="modal-body">
1375
+ <div class="list-membership-content"></div>
1376
+ <span class="spinner lists-spinner" title="Loading&hellip;"></span>
1377
+ </div>
1378
+ </div>
1379
+ </div>
1380
+ </div>
1381
+ <div id="list-operations-dialog" class="modal-container">
1382
+ <div class="close-modal-background-target"></div>
1383
+ <div class="modal modal-medium draggable">
1384
+ <div class="modal-content">
1385
+ <button type="button" class="modal-btn modal-close js-close"><span class="icon close-medium"><span class="visuallyhidden">Close</span></span></button>
1386
+ <div class="modal-header">
1387
+ <h3 class="modal-title">Create a new list</h3>
1388
+ </div>
1389
+ <div class="modal-body">
1390
+
1391
+ <div class="list-editor">
1392
+ <div class="field">
1393
+ <label for="list-name">List name</label>
1394
+ <input type="text" class="text" name="name" value="" />
1395
+ </div>
1396
+ <div class="field" style="display:none">
1397
+ <label for="list-link">List link</label>
1398
+ <span></span>
1399
+ </div>
1400
+ <hr/>
1401
+
1402
+ <div class="field">
1403
+ <label for="description">Description</label>
1404
+ <textarea name="description"></textarea>
1405
+ <span class="help-text">Under 100 characters, optional</span>
1406
+ </div>
1407
+ <hr/>
1408
+
1409
+ <div class="field">
1410
+ <label for="mode">Privacy</label>
1411
+ <div class="options">
1412
+ <label for="list-public-radio">
1413
+ <input class="radio" type="radio" name="mode" id="list-public-radio" value="public" checked="checked" />
1414
+ <b>Public</b> &middot; Anyone can follow this list
1415
+ </label>
1416
+ <label for="list-private-radio">
1417
+ <input class="radio" type="radio" name="mode" id="list-private-radio" value="private" />
1418
+ <b>Private</b> &middot; Only you can access this list
1419
+ </label>
1420
+ </div>
1421
+ </div>
1422
+ <hr/>
1423
+
1424
+ <div class="list-editor-save">
1425
+ <button type="button" class="btn btn-primary update-list-button" data-list-id="">Save list</button>
1426
+ </div>
1427
+
1428
+ </div>
1429
+ </div>
1430
+ </div>
1431
+ </div>
1432
+ </div>
1433
+
1434
+ <div id="activity-popup-dialog" class="modal-container">
1435
+ <div class="close-modal-background-target"></div>
1436
+ <div class="modal draggable">
1437
+ <div class="modal-content clearfix">
1438
+ <button type="button" class="modal-btn modal-close js-close"><span class="icon close-medium"><span class="visuallyhidden">Close</span></span></button>
1439
+
1440
+ <div class="modal-header">
1441
+ <h3 class="modal-title"></h3>
1442
+ </div>
1443
+
1444
+ <div class="modal-body">
1445
+ <div class="activity-tweet clearfix"></div>
1446
+ <div class="loading">
1447
+ <span class="spinner-bigger"></span>
1448
+ </div>
1449
+ <div class="activity-content clearfix"></div>
1450
+ </div>
1451
+ </div>
1452
+ </div>
1453
+ </div>
1454
+
1455
+
1456
+ <div id="confirm_dialog" class="modal-container">
1457
+ <div class="close-modal-background-target"></div>
1458
+ <div class="modal draggable">
1459
+ <div class="modal-content">
1460
+ <button type="button" class="modal-btn modal-close js-close"><span class="icon close-medium"><span class="visuallyhidden">Close</span></span></button>
1461
+ <div class="modal-header">
1462
+ <h3 class="modal-title"></h3>
1463
+ </div>
1464
+ <div class="modal-body">
1465
+ <p class="modal-body-text"></p>
1466
+ </div>
1467
+ <div class="modal-footer">
1468
+ <button class="btn js-close" id="confirm_dialog_cancel_button"></button>
1469
+ <button id="confirm_dialog_submit_button" class="btn primary-btn modal-submit"></button>
1470
+ </div>
1471
+ </div>
1472
+ </div>
1473
+ </div>
1474
+
1475
+
1476
+
1477
+
1478
+ <div id="embed-tweet-dialog" class="modal-container">
1479
+ <div class="close-modal-background-target"></div>
1480
+ <div class="modal modal-medium draggable">
1481
+ <div class="modal-content">
1482
+ <button type="button" class="modal-btn modal-close js-close"><span class="icon close-medium"><span class="visuallyhidden">Close</span></span></button>
1483
+ <div class="modal-header">
1484
+ <h3 class="modal-title">Embed this Tweet</h3>
1485
+ </div>
1486
+ <div class="modal-body">
1487
+ <div class="embed-code-container">
1488
+ <p>Add this Tweet to your website by copying the code below. <a href="//dev.twitter.com/docs/embedded-tweets">Learn more</a></p>
1489
+ <form>
1490
+
1491
+ <div class="embed-destination-wrapper">
1492
+ <div class="embed-overlay embed-overlay-spinner"><div class="embed-overlay-content"></div></div>
1493
+ <div class="embed-overlay embed-overlay-error">
1494
+ <p class="embed-overlay-content">Hmm, there was a problem reaching the server. <a href="javascript:;">Try again?</a></p>
1495
+ </div>
1496
+ <textarea class="embed-destination js-initial-focus"></textarea>
1497
+ <div class="embed-options">
1498
+ <div class="embed-include-parent-tweet">
1499
+ <label for="include-parent-tweet">
1500
+ <input type="checkbox" id="include-parent-tweet" class="include-parent-tweet" checked>
1501
+ Include parent Tweet
1502
+ </label>
1503
+ </div>
1504
+ <div class="embed-include-card">
1505
+ <label for="include-card">
1506
+ <input type="checkbox" id="include-card" class="include-card" checked>
1507
+ Include media
1508
+ </label>
1509
+ </div>
1510
+ </div>
1511
+ </div>
1512
+ </form>
1513
+ <div class="embed-preview">
1514
+ <h3>Preview</h3>
1515
+ </div>
1516
+ </div>
1517
+
1518
+ </div>
1519
+ </div>
1520
+ </div>
1521
+ </div>
1522
+
1523
+
1524
+
1525
+
1526
+
1527
+ <div id="signin-or-signup-dialog">
1528
+ <div id="signin-or-signup" class="modal-container">
1529
+ <div class="close-modal-background-target"></div>
1530
+ <div class="modal modal-medium draggable">
1531
+ <div class="modal-content">
1532
+ <button type="button" class="modal-btn modal-close js-close"><span class="icon close-medium"><span class="visuallyhidden">Close</span></span></button>
1533
+ <div class="modal-header">
1534
+ <h3 class="modal-title modal-long-title signup-only">Sign up for Twitter &amp; follow @<span>toastergrrl</span></h3>
1535
+ <h3 class="modal-title not-signup-only">Sign in to Twitter</h3>
1536
+ </div>
1537
+ <div class="modal-body signup-only">
1538
+ <form action="https://twitter.com/signup" class="clearfix signup" method="post">
1539
+ <div class="holding name">
1540
+ <input type="text" autocomplete="off" name="user[name]" maxlength="20" class="js-initial-focus">
1541
+ <span class="holder">Full name</span>
1542
+ </div>
1543
+ <div class="holding email">
1544
+ <input class="email-input" type="text" autocomplete="off" name="user[email]">
1545
+ <span class="holder">Email</span>
1546
+ </div>
1547
+ <div class="holding password">
1548
+ <input type="password" name="user[user_password]">
1549
+ <span class="holder">Password</span>
1550
+ </div>
1551
+ <input name="follow" type="hidden" value="toastergrrl">
1552
+ <input type="hidden" value="permalink" name="context">
1553
+ <input type="hidden" value="536b1e457fdfecf08c6c16794af6a3bb794a626d" name="authenticity_token"/>
1554
+ <input name="follows" type="hidden" value="">
1555
+ <input type="submit" class="btn signup-btn js-submit js-signup-btn" value="Sign up">
1556
+ </form>
1557
+
1558
+ </div>
1559
+ <div class="modal-body not-signup-only">
1560
+ <form action="https://twitter.com/sessions" class="signin" method="post">
1561
+ <fieldset>
1562
+
1563
+ <div class="clearfix holding">
1564
+ <span class="username js-username holder">Username or email</span>
1565
+ <input class="js-username-field email-input js-initial-focus" type="text" name="session[username_or_email]" autocomplete="on" value="">
1566
+ <p class="help-text-inline">Forgot your <a href="/account/resend_password">username</a>?</p>
1567
+ </div>
1568
+
1569
+ <div class="clearfix holding">
1570
+ <span class="password holder">Password</span>
1571
+ <input class="js-password-field" type="password" name="session[password]">
1572
+ <p class="help-text-inline">Forgot your <a href="/account/resend_password">password</a>?</p>
1573
+ </div>
1574
+
1575
+ <input type="hidden" value="536b1e457fdfecf08c6c16794af6a3bb794a626d" name="authenticity_token"/>
1576
+
1577
+ </fieldset>
1578
+
1579
+ <div class="clearfix">
1580
+
1581
+ <input type="hidden" name="scribe_log">
1582
+ <input type="hidden" name="redirect_after_login" value="/toastergrrl/statuses/363116819147538433">
1583
+ <input type="hidden" value="536b1e457fdfecf08c6c16794af6a3bb794a626d" name="authenticity_token"/>
1584
+ <button type="submit" class="submit btn primary-btn">Sign in</button>
1585
+
1586
+ <fieldset class="subchck">
1587
+ <label class="remember">
1588
+ <input type="checkbox" value="1" name="remember_me" >
1589
+ Remember me
1590
+ </label>
1591
+ </fieldset>
1592
+
1593
+ </div>
1594
+
1595
+ <div class="divider"></div>
1596
+ <p>
1597
+ <a class="forgot" href="/account/resend_password">Forgot password?</a><br />
1598
+ <a class="mobile has-sms" href="/account/complete">Already using Twitter via text message?</a>
1599
+ </p>
1600
+ </form>
1601
+
1602
+ <div class="signup">
1603
+ <h2>Not on Twitter? Sign up, tune into the things you care about, and get updates as they happen.</h2>
1604
+ <form action="https://twitter.com/signup" class="signup" method="get">
1605
+ <input name="follow" type="hidden" value="toastergrrl">
1606
+ <input type="hidden" name="context" value="permalink">
1607
+ <input type="hidden" value="536b1e457fdfecf08c6c16794af6a3bb794a626d" name="authenticity_token"/>
1608
+ <button class="btn promotional signup-btn" type="submit">Sign up &raquo;</button>
1609
+ </form>
1610
+
1611
+ </div>
1612
+ </div>
1613
+ </div>
1614
+ </div>
1615
+ </div>
1616
+ </div>
1617
+
1618
+ <div id="sms-codes-dialog" class="modal-container">
1619
+ <div class="close-modal-background-target"></div>
1620
+ <div class="modal modal-medium draggable">
1621
+ <div class="modal-content">
1622
+ <button type="button" class="modal-btn modal-close js-close"><span class="icon close-medium"><span class="visuallyhidden">Close</span></span></button>
1623
+ <div class="modal-header">
1624
+ <h3 class="modal-title">Two-way (sending and receiving) short codes:</h3>
1625
+ </div>
1626
+ <div class="modal-body">
1627
+
1628
+ <table id="sms_codes" cellpadding="0" cellspacing="0">
1629
+ <thead>
1630
+ <tr>
1631
+ <th>Country</th>
1632
+ <th>Code</th>
1633
+ <th>For customers of</th>
1634
+ </tr>
1635
+ </thead>
1636
+ <tbody>
1637
+ <tr>
1638
+ <td>United States</td>
1639
+ <td>40404</td>
1640
+ <td>(any)</td>
1641
+ </tr>
1642
+ <tr>
1643
+ <td>Canada</td>
1644
+ <td>21212</td>
1645
+ <td>(any)</td>
1646
+ </tr>
1647
+ <tr>
1648
+ <td>United Kingdom</td>
1649
+ <td>86444</td>
1650
+ <td>Vodafone, Orange, 3, O2</td>
1651
+ </tr>
1652
+ <tr>
1653
+ <td>Brazil</td>
1654
+ <td>40404</td>
1655
+ <td>Nextel, TIM</td>
1656
+ </tr>
1657
+ <tr>
1658
+ <td>Haiti</td>
1659
+ <td>40404</td>
1660
+ <td>Digicel, Voila</td>
1661
+ </tr>
1662
+ <tr>
1663
+ <td>Ireland</td>
1664
+ <td>51210</td>
1665
+ <td>Vodafone, O2</td>
1666
+ </tr>
1667
+ <tr>
1668
+ <td>India</td>
1669
+ <td>53000</td>
1670
+ <td>Bharti Airtel, Videocon, Reliance</td>
1671
+ </tr>
1672
+ <tr>
1673
+ <td>Indonesia</td>
1674
+ <td>89887</td>
1675
+ <td>AXIS, 3, Telkomsel, Indosat, XL Axiata</td>
1676
+ </tr>
1677
+ <tr>
1678
+ <td rowspan="2">Italy</td>
1679
+ <td>4880804</td>
1680
+ <td>Wind</td>
1681
+ </tr>
1682
+ <tr>
1683
+ <td>3424486444</td>
1684
+ <td>Vodafone</td>
1685
+ </tr>
1686
+ </tbody>
1687
+ <tfoot>
1688
+ <tr>
1689
+ <td colspan="3">
1690
+ &raquo; <a class="js-initial-focus" target="_blank" href="http://support.twitter.com/articles/14226-how-to-find-your-twitter-short-code-or-long-code">See SMS short codes for other countries</a>
1691
+ </td>
1692
+ </tr>
1693
+ </tfoot>
1694
+ </table>
1695
+ </div>
1696
+ </div>
1697
+ </div>
1698
+ </div>
1699
+
1700
+ <div class="hidden">
1701
+ <iframe class="tweet-post-iframe" name="tweet-post-iframe"></iframe>
1702
+
1703
+ </div>
1704
+ </body>
1705
+ </html>
1706
+ <input type="hidden" id="init-data" class="json-data" value="{&quot;baseFoucClass&quot;:&quot;swift-loading&quot;,&quot;htmlFoucClassNames&quot;:&quot;swift-loading&quot;,&quot;htmlClassNames&quot;:&quot;&quot;,&quot;macawSwift&quot;:true,&quot;assetsBasePath&quot;:&quot;https:\/\/abs.twimg.com\/a\/1375391966\/&quot;,&quot;environment&quot;:&quot;production&quot;,&quot;sandboxes&quot;:{&quot;jsonp&quot;:&quot;https:\/\/abs.twimg.com\/a\/1375391966\/jsonp_sandbox.html&quot;,&quot;detailsPane&quot;:&quot;https:\/\/abs.twimg.com\/a\/1375391966\/details_pane_content_sandbox.html&quot;},&quot;formAuthenticityToken&quot;:&quot;536b1e457fdfecf08c6c16794af6a3bb794a626d&quot;,&quot;loggedIn&quot;:false,&quot;screenName&quot;:null,&quot;userId&quot;:null,&quot;scribeBufferSize&quot;:3,&quot;pageName&quot;:&quot;permalink&quot;,&quot;sectionName&quot;:&quot;permalink&quot;,&quot;scribeParameters&quot;:{},&quot;internalReferer&quot;:null,&quot;experiments&quot;:{},&quot;geoEnabled&quot;:false,&quot;typeaheadData&quot;:{&quot;accounts&quot;:{&quot;localQueriesEnabled&quot;:false,&quot;remoteQueriesEnabled&quot;:false,&quot;enabled&quot;:false,&quot;limit&quot;:6},&quot;trendLocations&quot;:{&quot;enabled&quot;:false},&quot;savedSearches&quot;:{&quot;enabled&quot;:false,&quot;items&quot;:[]},&quot;dmAccounts&quot;:{&quot;enabled&quot;:false,&quot;localQueriesEnabled&quot;:false,&quot;onlyDMable&quot;:true,&quot;remoteQueriesEnabled&quot;:false},&quot;topics&quot;:{&quot;enabled&quot;:false,&quot;localQueriesEnabled&quot;:false,&quot;prefetchLimit&quot;:500,&quot;remoteQueriesEnabled&quot;:false,&quot;remoteQueriesOverrideLocal&quot;:false,&quot;limit&quot;:4},&quot;recentSearches&quot;:{&quot;enabled&quot;:false},&quot;contextHelpers&quot;:{&quot;enabled&quot;:false,&quot;page_name&quot;:&quot;permalink&quot;,&quot;section_name&quot;:&quot;permalink&quot;,&quot;screen_name&quot;:&quot;toastergrrl&quot;},&quot;hashtags&quot;:{&quot;enabled&quot;:false,&quot;localQueriesEnabled&quot;:false,&quot;prefetchLimit&quot;:500,&quot;remoteQueriesEnabled&quot;:false},&quot;showSearchAccountSocialContext&quot;:false,&quot;showTypeaheadTopicSocialContext&quot;:false,&quot;showDebugInfo&quot;:false,&quot;useThrottle&quot;:true,&quot;accountsOnTop&quot;:false,&quot;remoteDebounceInterval&quot;:300,&quot;remoteThrottleInterval&quot;:300,&quot;tweetContextEnabled&quot;:false,&quot;fullNameMatchingInCompose&quot;:false,&quot;fullNameMatchingInComposeRequiresFollow&quot;:false},&quot;pushStatePageLimit&quot;:500000,&quot;routes&quot;:{&quot;profile&quot;:&quot;\/&quot;},&quot;pushState&quot;:true,&quot;viewContainer&quot;:&quot;#page-container&quot;,&quot;asyncSocialProof&quot;:true,&quot;dragAndDropPhotoUpload&quot;:true,&quot;href&quot;:&quot;\/toastergrrl\/statuses\/363116819147538433&quot;,&quot;searchPathWithQuery&quot;:&quot;\/search?q=query&amp;src=typd&quot;,&quot;timelineCardsGallery&quot;:true,&quot;mediaGrid&quot;:true,&quot;deciders&quot;:{&quot;oembed_use_macaw_syndication&quot;:true,&quot;preserve_scroll_position&quot;:false,&quot;pushState&quot;:true,&quot;hqImageUploads&quot;:false,&quot;mqImageUploads&quot;:false,&quot;unscaledImageUploads&quot;:true,&quot;cropToFit&quot;:true},&quot;permalinkCardsGallery&quot;:false,&quot;notifications_dm&quot;:false,&quot;notifications_spoonbill&quot;:false,&quot;notifications_timeline&quot;:false,&quot;notifications_dm_poll_scale&quot;:60,&quot;tweetId&quot;:&quot;363116819147538433&quot;,&quot;endpoint&quot;:&quot;\/i\/toastergrrl\/conversation\/363116819147538433&quot;,&quot;permalinkCardsGallery&quot;:true,&quot;initialState&quot;:{&quot;title&quot;:&quot;Twitter \/ toastergrrl: I&#39;m a sucker for pledges. ...&quot;,&quot;section&quot;:null,&quot;module&quot;:&quot;app\/pages\/permalink&quot;,&quot;cache_ttl&quot;:300,&quot;body_class_names&quot;:&quot;t1 logged-out user-style-toastergrrl&quot;,&quot;doc_class_names&quot;:&quot;route-permalink&quot;,&quot;route_name&quot;:&quot;permalink&quot;,&quot;page_container_class_names&quot;:&quot;wrapper wrapper-permalink white&quot;,&quot;ttft_navigation&quot;:false}}">
1707
+ <input type="hidden" class="swift-boot-module" value="app/pages/permalink">
1708
+ <input type="hidden" id="swift-module-path" value="https://abs.twimg.com/c/swift/en">
1709
+
1710
+
1711
+ <script src="https://abs.twimg.com/c/swift/en/init.f37a5d8f16965ab055b8fb7351b559fcbd06909a.js" async></script>
1712
+