onebox 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (153) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec +4 -0
  3. data/.travis.yml +4 -0
  4. data/README.md +154 -113
  5. data/lib/onebox.rb +6 -3
  6. data/lib/onebox/engine.rb +28 -26
  7. data/lib/onebox/engine/amazon_onebox.rb +4 -2
  8. data/lib/onebox/engine/bliptv_onebox.rb +4 -2
  9. data/lib/onebox/engine/clikthrough_onebox.rb +4 -2
  10. data/lib/onebox/engine/college_humor_onebox.rb +3 -2
  11. data/lib/onebox/engine/dailymotion_onebox.rb +4 -2
  12. data/lib/onebox/engine/dotsub_onebox.rb +4 -2
  13. data/lib/onebox/engine/example_onebox.rb +4 -5
  14. data/lib/onebox/engine/flickr_onebox.rb +3 -2
  15. data/lib/onebox/engine/funny_or_die_onebox.rb +4 -2
  16. data/lib/onebox/engine/github_blob_onebox.rb +28 -0
  17. data/lib/onebox/engine/github_commit_onebox.rb +43 -0
  18. data/lib/onebox/engine/github_gist_onebox.rb +33 -0
  19. data/lib/onebox/engine/github_pullrequest_onebox.rb +43 -0
  20. data/lib/onebox/engine/html.rb +1 -1
  21. data/lib/onebox/engine/hulu_onebox.rb +5 -2
  22. data/lib/onebox/engine/imgur_image_onebox.rb +26 -0
  23. data/lib/onebox/engine/itunes_onebox.rb +28 -0
  24. data/lib/onebox/engine/json.rb +11 -0
  25. data/lib/onebox/engine/kinomap_onebox.rb +27 -0
  26. data/lib/onebox/engine/nfb_onebox.rb +5 -2
  27. data/lib/onebox/engine/open_graph.rb +1 -1
  28. data/lib/onebox/engine/qik_onebox.rb +4 -2
  29. data/lib/onebox/engine/revision3_onebox.rb +3 -2
  30. data/lib/onebox/engine/slideshare_onebox.rb +4 -2
  31. data/lib/onebox/engine/sound_cloud_onebox.rb +4 -2
  32. data/lib/onebox/engine/spotify_onebox.rb +27 -0
  33. data/lib/onebox/engine/stack_exchange_onebox.rb +4 -2
  34. data/lib/onebox/engine/ted_onebox.rb +5 -2
  35. data/lib/onebox/engine/twitter_onebox.rb +31 -0
  36. data/lib/onebox/engine/viddler_onebox.rb +5 -3
  37. data/lib/onebox/engine/vimeo_onebox.rb +3 -2
  38. data/lib/onebox/engine/wikipedia_onebox.rb +4 -2
  39. data/lib/onebox/engine/yfrog_onebox.rb +5 -2
  40. data/lib/onebox/version.rb +1 -1
  41. data/lib/onebox/view.rb +21 -0
  42. data/onebox.gemspec +1 -1
  43. data/spec/fixtures/githubblob.response +922 -0
  44. data/spec/fixtures/githubcommit.response +87 -0
  45. data/spec/fixtures/githubgist.response +468 -0
  46. data/spec/fixtures/githubpullrequest.response +216 -0
  47. data/spec/fixtures/imguralbum.response +941 -0
  48. data/spec/fixtures/{imgur.response → imgurimage.response} +870 -890
  49. data/spec/fixtures/itunes.response +402 -0
  50. data/spec/fixtures/{rottentomatoes_fresh.response → rottentomatoesfresh.response} +0 -0
  51. data/spec/fixtures/{rottentomatoes_incomplete.response → rottentomatoesincomplete.response} +0 -0
  52. data/spec/fixtures/{rottentomatoes_rotten.response → rottentomatoesrotten.response} +0 -0
  53. data/spec/fixtures/spotify.response +250 -0
  54. data/spec/fixtures/{wikipedia_redirected.response → wikipediaredirected.response} +0 -0
  55. data/spec/lib/onebox/engine/{amazon_spec.rb → amazon_onebox_spec.rb} +7 -4
  56. data/spec/lib/onebox/engine/{bliptv_spec.rb → bliptv_onebox_spec.rb} +7 -4
  57. data/spec/lib/onebox/engine/{clikthrough_spec.rb → clikthrough_onebox_spec.rb} +7 -4
  58. data/spec/lib/onebox/engine/{college_humor_spec.rb → college_humor_onebox_spec.rb} +7 -4
  59. data/spec/lib/onebox/engine/{dailymotion_spec.rb → dailymotion_onebox_spec.rb} +7 -4
  60. data/spec/lib/onebox/engine/{dotsub_spec.rb → dotsub_onebox_spec.rb} +7 -4
  61. data/spec/lib/onebox/engine/example_onebox_spec.rb +21 -0
  62. data/spec/lib/onebox/engine/{flickr_spec.rb → flickr_onebox_spec.rb} +7 -4
  63. data/spec/lib/onebox/engine/{funny_or_die_spec.rb → funny_or_die_onebox_spec.rb} +7 -4
  64. data/spec/lib/onebox/engine/github_blob_onebox_spec.rb +30 -0
  65. data/spec/lib/onebox/engine/github_commit_onebox_spec.rb +61 -0
  66. data/spec/lib/onebox/engine/github_gist_onebox_spec.rb +29 -0
  67. data/spec/lib/onebox/engine/github_pullrequest_onebox_spec.rb +58 -0
  68. data/spec/lib/onebox/engine/html_spec.rb +27 -0
  69. data/spec/lib/onebox/engine/{hulu_spec.rb → hulu_onebox_spec.rb} +7 -4
  70. data/spec/lib/onebox/engine/imgur_image_onebox_spec.rb +29 -0
  71. data/spec/lib/onebox/engine/itunes_onebox_spec.rb +29 -0
  72. data/spec/lib/onebox/engine/json_spec.rb +27 -0
  73. data/spec/lib/onebox/engine/kinomap_onebox_spec.rb +37 -0
  74. data/spec/lib/onebox/engine/{nfb_spec.rb → nfb_onebox_spec.rb} +7 -4
  75. data/spec/lib/onebox/engine/open_graph_spec.rb +27 -0
  76. data/spec/lib/onebox/engine/{qik_spec.rb → qik_onebox_spec.rb} +7 -4
  77. data/spec/lib/onebox/engine/{revision3_spec.rb → revision3_onebox_spec.rb} +7 -4
  78. data/spec/lib/onebox/engine/{slideshare_spec.rb → slideshare_onebox_spec.rb} +7 -4
  79. data/spec/lib/onebox/engine/{sound_cloud_spec.rb → sound_cloud_onebox_spec.rb} +7 -4
  80. data/spec/lib/onebox/engine/spotify_onebox_spec.rb +36 -0
  81. data/spec/lib/onebox/engine/{stack_exchange_spec.rb → stack_exchange_onebox_spec.rb} +7 -4
  82. data/spec/lib/onebox/engine/{ted_spec.rb → ted_onebox_spec.rb} +7 -4
  83. data/spec/lib/onebox/engine/twitter_onebox_spec.rb +47 -0
  84. data/spec/lib/onebox/engine/{viddler_spec.rb → viddler_onebox_spec.rb} +7 -4
  85. data/spec/lib/onebox/engine/{vimeo_spec.rb → vimeo_onebox_spec.rb} +7 -4
  86. data/spec/lib/onebox/engine/{wikipedia_spec.rb → wikipedia_onebox_spec.rb} +7 -4
  87. data/spec/lib/onebox/engine/{yfrog_spec.rb → yfrog_onebox_spec.rb} +7 -4
  88. data/spec/lib/onebox/engine_spec.rb +38 -27
  89. data/spec/lib/onebox/preview_spec.rb +3 -1
  90. data/spec/lib/onebox/view_spec.rb +16 -0
  91. data/spec/lib/onebox_spec.rb +1 -1
  92. data/spec/spec_helper.rb +8 -3
  93. data/spec/support/html_spec_helper.rb +1 -1
  94. data/templates/_layout.mustache +4 -0
  95. data/templates/amazon.mustache +5 -0
  96. data/templates/bliptv.mustache +5 -0
  97. data/templates/clikthrough.mustache +4 -0
  98. data/templates/collegehumor.mustache +5 -0
  99. data/templates/dailymotion.mustache +5 -0
  100. data/templates/dotsub.mustache +5 -0
  101. data/templates/example.mustache +2 -0
  102. data/templates/flickr.mustache +4 -0
  103. data/templates/funnyordie.mustache +6 -0
  104. data/templates/githubblob.mustache +5 -0
  105. data/templates/githubcommit.mustache +11 -0
  106. data/templates/githubgist.mustache +3 -0
  107. data/templates/githubpullrequest.mustache +14 -0
  108. data/templates/hulu.mustache +6 -0
  109. data/templates/imgurimage.mustache +3 -0
  110. data/templates/itunes.mustache +4 -0
  111. data/templates/kinomap.mustache +5 -0
  112. data/templates/nfb.mustache +5 -0
  113. data/templates/qik.mustache +4 -0
  114. data/templates/revision3.mustache +5 -0
  115. data/templates/slideshare.mustache +4 -0
  116. data/templates/soundcloud.mustache +5 -0
  117. data/templates/spotify.mustache +4 -0
  118. data/templates/stackexchange.mustache +3 -0
  119. data/templates/ted.mustache +5 -0
  120. data/templates/twitter.mustache +7 -0
  121. data/templates/viddler.mustache +5 -0
  122. data/templates/vimeo.mustache +5 -0
  123. data/templates/wikipedia.mustache +4 -0
  124. data/templates/yfrog.mustache +4 -0
  125. metadata +139 -90
  126. data/spec/fixtures/apple.response +0 -391
  127. data/spec/fixtures/clickthrough.response +0 -1472
  128. data/spec/fixtures/gist.response +0 -282
  129. data/spec/fixtures/github_blob.response +0 -706
  130. data/spec/fixtures/github_commit.response +0 -881
  131. data/spec/fixtures/github_pullrequest.response +0 -1619
  132. data/spec/lib/onebox/engine/example_spec.rb +0 -18
  133. data/templates/amazon.handlebars +0 -9
  134. data/templates/bliptv.handlebars +0 -10
  135. data/templates/clickthrough.handlebars +0 -8
  136. data/templates/clikthrough.handlebars +0 -8
  137. data/templates/collegehumor.handlebars +0 -9
  138. data/templates/dailymotion.handlebars +0 -9
  139. data/templates/dotsub.handlebars +0 -9
  140. data/templates/flickr.handlebars +0 -8
  141. data/templates/funnyordie.handlebars +0 -9
  142. data/templates/hulu.handlebars +0 -9
  143. data/templates/nfb.handlebars +0 -8
  144. data/templates/qik.handlebars +0 -7
  145. data/templates/revision3.handlebars +0 -9
  146. data/templates/slideshare.handlebars +0 -8
  147. data/templates/soundcloud.handlebars +0 -9
  148. data/templates/stackexchange.handlebars +0 -7
  149. data/templates/ted.handlebars +0 -8
  150. data/templates/viddler.handlebars +0 -9
  151. data/templates/vimeo.handlebars +0 -9
  152. data/templates/wikipedia.handlebars +0 -8
  153. data/templates/yfrog.handlebars +0 -8
@@ -0,0 +1,216 @@
1
+ {
2
+ "url": "https://api.github.com/repos/discourse/discourse/pulls/1253",
3
+ "id": 7186071,
4
+ "html_url": "https://github.com/discourse/discourse/pull/1253",
5
+ "diff_url": "https://github.com/discourse/discourse/pull/1253.diff",
6
+ "patch_url": "https://github.com/discourse/discourse/pull/1253.patch",
7
+ "issue_url": "https://github.com/discourse/discourse/pull/1253",
8
+ "number": 1253,
9
+ "state": "closed",
10
+ "title": "Add audio onebox",
11
+ "user": {
12
+ "login": "jamesaanderson",
13
+ "id": 2722987,
14
+ "avatar_url": "https://0.gravatar.com/avatar/b3e9977094ce189bbb493cf7f9adea21?d=https%3A%2F%2Fidenticons.github.com%2Fb4a68f5d10a482ee680e30f88540942a.png",
15
+ "gravatar_id": "b3e9977094ce189bbb493cf7f9adea21",
16
+ "url": "https://api.github.com/users/jamesaanderson",
17
+ "html_url": "https://github.com/jamesaanderson",
18
+ "followers_url": "https://api.github.com/users/jamesaanderson/followers",
19
+ "following_url": "https://api.github.com/users/jamesaanderson/following{/other_user}",
20
+ "gists_url": "https://api.github.com/users/jamesaanderson/gists{/gist_id}",
21
+ "starred_url": "https://api.github.com/users/jamesaanderson/starred{/owner}{/repo}",
22
+ "subscriptions_url": "https://api.github.com/users/jamesaanderson/subscriptions",
23
+ "organizations_url": "https://api.github.com/users/jamesaanderson/orgs",
24
+ "repos_url": "https://api.github.com/users/jamesaanderson/repos",
25
+ "events_url": "https://api.github.com/users/jamesaanderson/events{/privacy}",
26
+ "received_events_url": "https://api.github.com/users/jamesaanderson/received_events",
27
+ "type": "User"
28
+ },
29
+ "body": "http://meta.discourse.org/t/audio-html5-tag/8168",
30
+ "created_at": "2013-07-26T02:05:53Z",
31
+ "updated_at": "2013-07-26T15:31:57Z",
32
+ "closed_at": "2013-07-26T15:30:57Z",
33
+ "merged_at": "2013-07-26T15:30:57Z",
34
+ "merge_commit_sha": null,
35
+ "assignee": null,
36
+ "milestone": null,
37
+ "commits_url": "https://github.com/discourse/discourse/pull/1253/commits",
38
+ "review_comments_url": "https://github.com/discourse/discourse/pull/1253/comments",
39
+ "review_comment_url": "/repos/discourse/discourse/pulls/comments/{number}",
40
+ "comments_url": "https://api.github.com/repos/discourse/discourse/issues/1253/comments",
41
+ "head": {
42
+ "label": "jamesaanderson:add-audio-onebox",
43
+ "ref": "add-audio-onebox",
44
+ "sha": "d7d3be1130c665cc7fab9f05dbf32335229137a6",
45
+ "user": {
46
+ "login": "jamesaanderson",
47
+ "id": 2722987,
48
+ "avatar_url": "https://0.gravatar.com/avatar/b3e9977094ce189bbb493cf7f9adea21?d=https%3A%2F%2Fidenticons.github.com%2Fb4a68f5d10a482ee680e30f88540942a.png",
49
+ "gravatar_id": "b3e9977094ce189bbb493cf7f9adea21",
50
+ "url": "https://api.github.com/users/jamesaanderson",
51
+ "html_url": "https://github.com/jamesaanderson",
52
+ "followers_url": "https://api.github.com/users/jamesaanderson/followers",
53
+ "following_url": "https://api.github.com/users/jamesaanderson/following{/other_user}",
54
+ "gists_url": "https://api.github.com/users/jamesaanderson/gists{/gist_id}",
55
+ "starred_url": "https://api.github.com/users/jamesaanderson/starred{/owner}{/repo}",
56
+ "subscriptions_url": "https://api.github.com/users/jamesaanderson/subscriptions",
57
+ "organizations_url": "https://api.github.com/users/jamesaanderson/orgs",
58
+ "repos_url": "https://api.github.com/users/jamesaanderson/repos",
59
+ "events_url": "https://api.github.com/users/jamesaanderson/events{/privacy}",
60
+ "received_events_url": "https://api.github.com/users/jamesaanderson/received_events",
61
+ "type": "User"
62
+ },
63
+ "repo": null
64
+ },
65
+ "base": {
66
+ "label": "discourse:master",
67
+ "ref": "master",
68
+ "sha": "cc79d22f82ede170dd86a05274eb3c2c5eb02912",
69
+ "user": {
70
+ "login": "discourse",
71
+ "id": 3220138,
72
+ "avatar_url": "https://0.gravatar.com/avatar/b30fff48d257cdd17c4437afac19fd30?d=https%3A%2F%2Fidenticons.github.com%2Fa42d8d01d12f7137e49e7c1ee1b2b3f0.png",
73
+ "gravatar_id": "b30fff48d257cdd17c4437afac19fd30",
74
+ "url": "https://api.github.com/users/discourse",
75
+ "html_url": "https://github.com/discourse",
76
+ "followers_url": "https://api.github.com/users/discourse/followers",
77
+ "following_url": "https://api.github.com/users/discourse/following{/other_user}",
78
+ "gists_url": "https://api.github.com/users/discourse/gists{/gist_id}",
79
+ "starred_url": "https://api.github.com/users/discourse/starred{/owner}{/repo}",
80
+ "subscriptions_url": "https://api.github.com/users/discourse/subscriptions",
81
+ "organizations_url": "https://api.github.com/users/discourse/orgs",
82
+ "repos_url": "https://api.github.com/users/discourse/repos",
83
+ "events_url": "https://api.github.com/users/discourse/events{/privacy}",
84
+ "received_events_url": "https://api.github.com/users/discourse/received_events",
85
+ "type": "Organization"
86
+ },
87
+ "repo": {
88
+ "id": 7569578,
89
+ "name": "discourse",
90
+ "full_name": "discourse/discourse",
91
+ "owner": {
92
+ "login": "discourse",
93
+ "id": 3220138,
94
+ "avatar_url": "https://0.gravatar.com/avatar/b30fff48d257cdd17c4437afac19fd30?d=https%3A%2F%2Fidenticons.github.com%2Fa42d8d01d12f7137e49e7c1ee1b2b3f0.png",
95
+ "gravatar_id": "b30fff48d257cdd17c4437afac19fd30",
96
+ "url": "https://api.github.com/users/discourse",
97
+ "html_url": "https://github.com/discourse",
98
+ "followers_url": "https://api.github.com/users/discourse/followers",
99
+ "following_url": "https://api.github.com/users/discourse/following{/other_user}",
100
+ "gists_url": "https://api.github.com/users/discourse/gists{/gist_id}",
101
+ "starred_url": "https://api.github.com/users/discourse/starred{/owner}{/repo}",
102
+ "subscriptions_url": "https://api.github.com/users/discourse/subscriptions",
103
+ "organizations_url": "https://api.github.com/users/discourse/orgs",
104
+ "repos_url": "https://api.github.com/users/discourse/repos",
105
+ "events_url": "https://api.github.com/users/discourse/events{/privacy}",
106
+ "received_events_url": "https://api.github.com/users/discourse/received_events",
107
+ "type": "Organization"
108
+ },
109
+ "private": false,
110
+ "html_url": "https://github.com/discourse/discourse",
111
+ "description": "A platform for community discussion. Free, open, simple.",
112
+ "fork": false,
113
+ "url": "https://api.github.com/repos/discourse/discourse",
114
+ "forks_url": "https://api.github.com/repos/discourse/discourse/forks",
115
+ "keys_url": "https://api.github.com/repos/discourse/discourse/keys{/key_id}",
116
+ "collaborators_url": "https://api.github.com/repos/discourse/discourse/collaborators{/collaborator}",
117
+ "teams_url": "https://api.github.com/repos/discourse/discourse/teams",
118
+ "hooks_url": "https://api.github.com/repos/discourse/discourse/hooks",
119
+ "issue_events_url": "https://api.github.com/repos/discourse/discourse/issues/events{/number}",
120
+ "events_url": "https://api.github.com/repos/discourse/discourse/events",
121
+ "assignees_url": "https://api.github.com/repos/discourse/discourse/assignees{/user}",
122
+ "branches_url": "https://api.github.com/repos/discourse/discourse/branches{/branch}",
123
+ "tags_url": "https://api.github.com/repos/discourse/discourse/tags",
124
+ "blobs_url": "https://api.github.com/repos/discourse/discourse/git/blobs{/sha}",
125
+ "git_tags_url": "https://api.github.com/repos/discourse/discourse/git/tags{/sha}",
126
+ "git_refs_url": "https://api.github.com/repos/discourse/discourse/git/refs{/sha}",
127
+ "trees_url": "https://api.github.com/repos/discourse/discourse/git/trees{/sha}",
128
+ "statuses_url": "https://api.github.com/repos/discourse/discourse/statuses/{sha}",
129
+ "languages_url": "https://api.github.com/repos/discourse/discourse/languages",
130
+ "stargazers_url": "https://api.github.com/repos/discourse/discourse/stargazers",
131
+ "contributors_url": "https://api.github.com/repos/discourse/discourse/contributors",
132
+ "subscribers_url": "https://api.github.com/repos/discourse/discourse/subscribers",
133
+ "subscription_url": "https://api.github.com/repos/discourse/discourse/subscription",
134
+ "commits_url": "https://api.github.com/repos/discourse/discourse/commits{/sha}",
135
+ "git_commits_url": "https://api.github.com/repos/discourse/discourse/git/commits{/sha}",
136
+ "comments_url": "https://api.github.com/repos/discourse/discourse/comments{/number}",
137
+ "issue_comment_url": "https://api.github.com/repos/discourse/discourse/issues/comments/{number}",
138
+ "contents_url": "https://api.github.com/repos/discourse/discourse/contents/{+path}",
139
+ "compare_url": "https://api.github.com/repos/discourse/discourse/compare/{base}...{head}",
140
+ "merges_url": "https://api.github.com/repos/discourse/discourse/merges",
141
+ "archive_url": "https://api.github.com/repos/discourse/discourse/{archive_format}{/ref}",
142
+ "downloads_url": "https://api.github.com/repos/discourse/discourse/downloads",
143
+ "issues_url": "https://api.github.com/repos/discourse/discourse/issues{/number}",
144
+ "pulls_url": "https://api.github.com/repos/discourse/discourse/pulls{/number}",
145
+ "milestones_url": "https://api.github.com/repos/discourse/discourse/milestones{/number}",
146
+ "notifications_url": "https://api.github.com/repos/discourse/discourse/notifications{?since,all,participating}",
147
+ "labels_url": "https://api.github.com/repos/discourse/discourse/labels{/name}",
148
+ "created_at": "2013-01-12T00:25:55Z",
149
+ "updated_at": "2013-09-28T16:44:54Z",
150
+ "pushed_at": "2013-09-27T19:08:59Z",
151
+ "git_url": "git://github.com/discourse/discourse.git",
152
+ "ssh_url": "git@github.com:discourse/discourse.git",
153
+ "clone_url": "https://github.com/discourse/discourse.git",
154
+ "svn_url": "https://github.com/discourse/discourse",
155
+ "homepage": "http://www.discourse.org",
156
+ "size": 48020,
157
+ "watchers_count": 7857,
158
+ "language": "JavaScript",
159
+ "has_issues": true,
160
+ "has_downloads": true,
161
+ "has_wiki": true,
162
+ "forks_count": 1876,
163
+ "mirror_url": null,
164
+ "open_issues_count": 38,
165
+ "forks": 1876,
166
+ "open_issues": 38,
167
+ "watchers": 7857,
168
+ "master_branch": "master",
169
+ "default_branch": "master"
170
+ }
171
+ },
172
+ "_links": {
173
+ "self": {
174
+ "href": "https://api.github.com/repos/discourse/discourse/pulls/1253"
175
+ },
176
+ "html": {
177
+ "href": "https://github.com/discourse/discourse/pull/1253"
178
+ },
179
+ "issue": {
180
+ "href": "https://api.github.com/repos/discourse/discourse/issues/1253"
181
+ },
182
+ "comments": {
183
+ "href": "https://api.github.com/repos/discourse/discourse/issues/1253/comments"
184
+ },
185
+ "review_comments": {
186
+ "href": "https://api.github.com/repos/discourse/discourse/pulls/1253/comments"
187
+ }
188
+ },
189
+ "merged": true,
190
+ "mergeable": null,
191
+ "mergeable_state": "unknown",
192
+ "merged_by": {
193
+ "login": "eviltrout",
194
+ "id": 17538,
195
+ "avatar_url": "https://0.gravatar.com/avatar/c6e17f2ae2a215e87ff9e878a4e63cd9?d=https%3A%2F%2Fidenticons.github.com%2Fba01baa4856d494a66a0d5eca39f5418.png",
196
+ "gravatar_id": "c6e17f2ae2a215e87ff9e878a4e63cd9",
197
+ "url": "https://api.github.com/users/eviltrout",
198
+ "html_url": "https://github.com/eviltrout",
199
+ "followers_url": "https://api.github.com/users/eviltrout/followers",
200
+ "following_url": "https://api.github.com/users/eviltrout/following{/other_user}",
201
+ "gists_url": "https://api.github.com/users/eviltrout/gists{/gist_id}",
202
+ "starred_url": "https://api.github.com/users/eviltrout/starred{/owner}{/repo}",
203
+ "subscriptions_url": "https://api.github.com/users/eviltrout/subscriptions",
204
+ "organizations_url": "https://api.github.com/users/eviltrout/orgs",
205
+ "repos_url": "https://api.github.com/users/eviltrout/repos",
206
+ "events_url": "https://api.github.com/users/eviltrout/events{/privacy}",
207
+ "received_events_url": "https://api.github.com/users/eviltrout/received_events",
208
+ "type": "User"
209
+ },
210
+ "comments": 2,
211
+ "review_comments": 0,
212
+ "commits": 1,
213
+ "additions": 19,
214
+ "deletions": 1,
215
+ "changed_files": 4
216
+ }
@@ -0,0 +1,941 @@
1
+
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
4
+ <head>
5
+ <title> Do she got a booty? [Fixed] - Imgur
6
+ </title>
7
+ <meta http-equiv="content-type" content="text/html;charset=utf-8" />
8
+ <meta name="robots" content="index,nofollow"/>
9
+
10
+ <meta name="keywords" content="images, funny pictures, image host, image upload, image sharing, image resize" />
11
+ <meta name="description" content="Imgur is home to the web's most popular image content, curated in real time by a dedicated community through commenting, voting and sharing." />
12
+ <meta http-equiv="X-UA-Compatible" content="IE=Edge;" />
13
+
14
+ <link rel="alternate" type="application/rss+xml" title="Imgur Gallery" href="http://feeds.feedburner.com/ImgurGallery?format=xml" />
15
+ <link rel="stylesheet" type="text/css" href="http://s.imgur.com/min/global.css?1379624102" />
16
+ <meta name="twitter:card" value="photo"/>
17
+ <meta name="twitter:site" value="@imgur"/>
18
+ <meta name="twitter:url" value="http://imgur.com/a/Ib8IT"/>
19
+
20
+ <meta name="twitter:title" value="Do she got a booty? [Fixed]"/>
21
+
22
+
23
+ <link rel="image_src" href="http://i.imgur.com/jBlIuta.jpg"/>
24
+ <meta name="twitter:image" value="http://i.imgur.com/jBlIuta.jpg"/>
25
+
26
+
27
+ <link rel="stylesheet" href="http://s.imgur.com/min/album.css?1379624102" type="text/css"/>
28
+ <!--[if IE 9]><link rel="stylesheet" href="http://s.imgur.com/include/css/ie-sucks.css?0" type="text/css" /><![endif]-->
29
+
30
+ <noscript>
31
+ <meta http-equiv="refresh" content="0; url=/a/Ib8IT/noscript"/>
32
+ </noscript>
33
+
34
+
35
+ </head>
36
+ <body>
37
+ <div id="topbar" >
38
+ <div class="header-center">
39
+ <div id="header-logo">
40
+ <a href="//imgur.com"></a>
41
+ </div>
42
+
43
+ <div id="location-nav">
44
+ <ul>
45
+ <li>
46
+ <a class="active" href="//MikeMacAllanIV.imgur.com">
47
+
48
+ albums
49
+
50
+ </a>
51
+ </li>
52
+ </ul>
53
+ </div>
54
+
55
+
56
+ <div id="main-nav">
57
+ <ul>
58
+
59
+ <li class="random-button title-n " title="random mode"><span class="button-outline"><a href="http://imgur.com/random"><span class="random-icon"></span></a></span></li>
60
+ <li class="upload-button disabled title-n" title="upload images"><div id="upload-global-top-bar-mini-progress"></div><span class="button-outline"><a href="javascript:void(0);"><span class="upload-icon"></span><span class="upload-queue-length">23</span></a></span></li>
61
+ </ul>
62
+ </div>
63
+
64
+ <div id="secondary-nav">
65
+ <ul class="user-nav">
66
+ <li class="signin-link"><a class="" href="https://imgur.com/signin"><span class="dot"></span>sign in</a>
67
+ <div class="signin-dropdown">
68
+ <form method="post" action="https://imgur.com/signin" id="dropdown-signin-form">
69
+ <span class='tiptext'>Use an Imgur account</span>
70
+ <div>
71
+ <input type="text" tabindex="11" name="username" maxlength="255" id="dd-username" title="username or email address" class="placeholder-onkeydown required" value="">
72
+ </div>
73
+
74
+ <div>
75
+ <div class="recover">
76
+ <a class="forgot" href="http://imgur.com/signin/forgotpassword">
77
+ forgot?
78
+ </a>
79
+ </div>
80
+ <div class="clear"></div>
81
+ <input type="password" tabindex="12" name="password" title="password" maxlength="255" id="dd-password" placeholder="password" class="placeholder required" value="">
82
+ </div>
83
+
84
+ <div class="remember-box">
85
+ <input type="checkbox" tabindex="13" name="remember" id="dd-remember" value="remember" checked="checked">
86
+ <label for="dd-remember"> Stay signed in on this computer</label>
87
+ </div>
88
+
89
+ <div class="signin-button">
90
+ <input type="submit" class="button-medium" name="submit_form" value="Sign in" id="dd-submit" tabindex="14">
91
+ <label class="imgur signin-icon" for="dd-submit"></label>
92
+ </div>
93
+ </form>
94
+
95
+ <div class="other-accounts">
96
+ <span class='tiptext'>Use another account</span>
97
+
98
+ <ul>
99
+ <li>
100
+ <a href="https://imgur.com/signin/google">
101
+ Google
102
+ <span class="signin-icon google"></span>
103
+ </a>
104
+ </li>
105
+ <li><a href="https://imgur.com/signin/facebook">
106
+ Facebook
107
+ <span class="signin-icon facebook"></span>
108
+ </a>
109
+ </li>
110
+ <li>
111
+ <a href="https://imgur.com/signin/twitter">
112
+ Twitter
113
+ <span class="signin-icon twitter"></span>
114
+ </a>
115
+ </li>
116
+ <li>
117
+ <a href="https://imgur.com/signin/yahoo">
118
+ Yahoo
119
+ <span class="signin-icon yahoo"></span>
120
+ </a>
121
+ </li>
122
+ </ul>
123
+ </div>
124
+ </div>
125
+ </li>
126
+ <li><a href="https://imgur.com/register">register</a></li>
127
+ </ul>
128
+
129
+ </div>
130
+
131
+ </div>
132
+
133
+ </div>
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+ <a href="javascript:;" id="upload-global-album-tipsy" class="title-nw nodisplay" title="You can't create an album with just one image"></a>
142
+
143
+ <div id="upload-global" class="popup">
144
+ <form method="post" id="upload-global-form" enctype="multipart/form-data" action="http://imgur.com/upload">
145
+ <h1>
146
+ <span id="upload-global-title">Upload images</span>
147
+
148
+ </h1>
149
+
150
+ <div id="upload-global-buttons">
151
+ <div id="upload-global-upload-loader" class="textbox">
152
+ Loading...
153
+ </div>
154
+
155
+ <div id="upload-global-file-wrapper">
156
+ <span class="computerIcon"></span>
157
+ <span class="green">browse</span> your computer
158
+
159
+ <input type="file" name="Filedata" multiple="multiple" id="upload-global-file">
160
+ </div>
161
+
162
+ <div class="left">
163
+ <div id="upload-global-url">
164
+ <span class="webIcon"></span>
165
+ <textarea id="upload-global-link-input" class="placeholder-onkeydown" title="enter URLs to upload from web" placeholder="enter URLs to upload from web" rows="1"></textarea>
166
+ </div>
167
+ </div>
168
+
169
+ <div class="clear"></div>
170
+
171
+ <div id="upload-global-dragdrop">
172
+ <span class="dragdropIcon"></span>
173
+ <span class="green">drag and drop</span> here
174
+ </div>
175
+
176
+ <div class="left">
177
+ <div id="upload-global-clipboard">
178
+ <div style="text-align: center"><span class="clipboardIcons">Ctrl + V</span></div>
179
+ <span class="green">paste</span> from your clipboard
180
+ </div>
181
+ </div>
182
+
183
+ <div class="clear"></div>
184
+ </div>
185
+
186
+ <div class="textbox center" id="upload-global-instructions"></div>
187
+
188
+ <!-- gallery submit vars -->
189
+ <input type="hidden" name="current_upload" value="0"/>
190
+ <input type="hidden" name="total_uploads" value="0"/>
191
+ <input type="hidden" name="terms" value="0"/>
192
+ <input type="hidden" name="gallery_type" value=""/>
193
+
194
+
195
+ <div id="upload-global-errors" class="textbox error" style="display: none;"></div>
196
+
197
+ <div id="upload-global-queue-description" class="textbox nodisplay"></div>
198
+
199
+ <div id="upload-global-start-upload">
200
+ <div class="panel">
201
+ <div>
202
+
203
+ <table id="upload-global-actions">
204
+ <tbody>
205
+ <tr>
206
+
207
+ <td width="50.1%">
208
+
209
+ <div id="upload-global-album-checkbox-div">
210
+ <input type="hidden" name="gallery_submit" value="0"/>
211
+
212
+ <button id="upload-global-gallery-checkbox" type="button">
213
+ <span class="gallery-icon"></span>add to gallery
214
+ </button>
215
+
216
+ <div id="upload-global-gallery-checkbox-overlay"></div>
217
+
218
+ <input type="hidden" name="create_album" value="0"/>
219
+
220
+ <button id="upload-global-album-checkbox" type="button">
221
+ <span class="createAlbum-icon"></span>create album
222
+ </button>
223
+
224
+ </div>
225
+
226
+ </td>
227
+ <td width="49.9%">
228
+ <button type="button" id="upload-global-start-button" class="button-big green" type="submit">
229
+ <span class="start-btn-icon"></span>
230
+ Start Upload
231
+ </button>
232
+ </td>
233
+ </tr>
234
+ </tbody>
235
+ </table>
236
+
237
+ </div>
238
+
239
+ <div id="upload-global-album-options">
240
+
241
+
242
+
243
+
244
+
245
+
246
+
247
+
248
+
249
+
250
+ <table id="upload-global-album-layout">
251
+ <tr>
252
+ <td id="upload-global-album-td">
253
+ <input name="album_title" type="text" title="Optional Album Title" class="placeholder-onkeydown" id="upload-global-album-title" maxlength="55" />
254
+ </td>
255
+
256
+ <td class="center title" title="<table><tr><td style='vertical-align: middle'>&lt;img src=&#039;http://s.imgur.com/images/album-layout-blog.png&#039; style=&#039;padding-right: 2px;&#039;/&gt;</td><td>&lt;h1&gt;Blog Layout&lt;/h1&gt;Shows all the images on one page in a blog post style layout. Best for albums with a small to medium amount of images.</td></tr></table>">
257
+ <input id="blog" type="radio" name="layout" value="b" checked="checked"/>
258
+ <label for="blog">Blog</label>
259
+ </td>
260
+
261
+ <td class="center title" title="<table><tr><td style='vertical-align: middle'>&lt;img src=&#039;http://s.imgur.com/images/album-layout-vertical.png&#039; style=&#039;padding-right: 6px;&#039;/&gt;</td><td>&lt;h1&gt;Vertical Layout&lt;/h1&gt;Shows one image at a time in a traditional style, with thumbnails to the right. Good for almost any album.</td></tr></table>">
262
+ <input id="vertical" type="radio" name="layout" value="v"/>
263
+ <label for="vertical">Vertical</label>
264
+ </td>
265
+
266
+ <td class="center title" title="<table><tr><td style='vertical-align: middle'>&lt;img src=&#039;http://s.imgur.com/images/album-layout-horizontal.png&#039; style=&#039;padding-right: 6px;&#039;/&gt;</td><td>&lt;h1&gt;Horizontal Layout&lt;/h1&gt;Shows one image at a time in a traditional style, with thumbnails on top. Best for albums that have high resolution photos.</td></tr></table>">
267
+ <input id="horizontal" type="radio" name="layout" value="h"/>
268
+ <label for="horizontal">Horizontal</label>
269
+ </td>
270
+
271
+ <td class="center title" title="<table><tr><td style='vertical-align: middle'>&lt;img src=&#039;http://s.imgur.com/images/album-layout-grid.png&#039; style=&#039;padding-right: 6px;&#039;/&gt;</td><td>&lt;h1&gt;Grid Layout&lt;/h1&gt;Shows all the images on one page as thumbnails that expand when clicked on. Best for albums with lots of images.</td></tr></table>">
272
+ <input id="grid" type="radio" name="layout" value="g"/>
273
+ <label for="grid">Grid</label>
274
+ </td>
275
+
276
+ <td width="15"></td>
277
+ </tr>
278
+ </table>
279
+
280
+ </div>
281
+ <div id="upload-global-image-options">
282
+ <table id="upload-global-submission-title">
283
+ <tr>
284
+ <td>
285
+ <input name="gallery_title" type="text" class="placeholder-onkeydown" title="Gallery submission title (required)" id="upload-global-gallery-submission-title" maxlength="255" />
286
+ </td>
287
+ </tr>
288
+ </table>
289
+ </div>
290
+
291
+ <div class="textbox list">
292
+ <table id="upload-global-file-list-header">
293
+ <tr class="top-tr">
294
+ <td width="40"></td>
295
+ <td><h2>Images <span class="upload-queue-length">(0)</span></h2></td>
296
+ <td width="45" class="edit-td"><h2>Edit</h2></td>
297
+ </tr>
298
+ </table>
299
+
300
+ <table id="upload-global-file-list">
301
+ </table>
302
+ <div class="agreement-notice">By uploading, you agree to our <a href="//imgur.com/tos" target="_blank">terms of service</a></div>
303
+
304
+ </div>
305
+ </div>
306
+ </div>
307
+
308
+ <div id="upload-global-progress-wrapper">
309
+ <div id="upload-global-progressbar">
310
+ <div class="progressBarBG">
311
+ <div class="progressBar"></div>
312
+ </div>
313
+ </div>
314
+ <div id="upload-global-upload-queue"></div>
315
+ </div>
316
+ </form>
317
+ </div>
318
+
319
+ <div id="upload-global-FF-paste-box"></div>
320
+
321
+ <div id="hiddenDropZone" class="nodisplay"></div>
322
+
323
+ <div class="nodisplay">
324
+ <div id="upload-global-image-formats">
325
+ That file type is not supported!
326
+
327
+ <div class="textbox supported-formats">
328
+ Supported formats: JPEG, GIF, PNG, APNG, TIFF, BMP, PDF, XCF
329
+ </div>
330
+ </div>
331
+ </div>
332
+
333
+ <div id="upload-global-flash-container" title="upload images from your computer">
334
+ <div id="upload-global-flash-browse"></div>
335
+ </div>
336
+
337
+
338
+
339
+ <div class="nodisplay">
340
+ Imgur is home to the web's most popular image content, curated in real time by a dedicated community through commenting, voting and sharing.
341
+ </div>
342
+
343
+
344
+
345
+ <div id="content" class="two-column blog">
346
+ <div id="top-message"></div>
347
+
348
+
349
+
350
+ <div class="left main">
351
+ <div class="panel">
352
+ <div id="image-container">
353
+ <a name="jBlIuta"></a>
354
+ <div class="image" id="jBlIuta">
355
+
356
+
357
+
358
+ <div class="wrapper" style="min-height: 404px">
359
+ <div class="image-hover action-button combobox left" title="Actions">
360
+ <div class="options">
361
+ <div class="item view album-view-image-link">
362
+ <a href="http://i.imgur.com/jBlIuta.jpg" target="_blank">View full resolution</a>
363
+ </div>
364
+
365
+ <div class="item download album-download-full-resolution">
366
+ <a href="/download/jBlIuta">Download full resolution</a>
367
+ </div>
368
+
369
+
370
+ </div>
371
+ </div>
372
+
373
+
374
+ <a class="zoom" href="http://i.imgur.com/jBlIuta.jpg">
375
+ <img class="unloaded" data-src="http://i.imgur.com/jBlIuta.jpg" alt="" />
376
+ </a>
377
+ </div>
378
+
379
+
380
+ </div>
381
+ <a name="H2Z2O0d"></a>
382
+ <div class="image" id="H2Z2O0d">
383
+
384
+
385
+
386
+ <div class="wrapper" style="min-height: 404px">
387
+ <div class="image-hover action-button combobox left" title="Actions">
388
+ <div class="options">
389
+ <div class="item view album-view-image-link">
390
+ <a href="http://i.imgur.com/H2Z2O0d.jpg" target="_blank">View full resolution</a>
391
+ </div>
392
+
393
+ <div class="item download album-download-full-resolution">
394
+ <a href="/download/H2Z2O0d">Download full resolution</a>
395
+ </div>
396
+
397
+
398
+ </div>
399
+ </div>
400
+
401
+
402
+ <a class="zoom" href="http://i.imgur.com/H2Z2O0dh.jpg">
403
+ <img class="unloaded" data-src="http://i.imgur.com/H2Z2O0dh.jpg" alt="" />
404
+ </a>
405
+ </div>
406
+
407
+
408
+ </div>
409
+ <a name="cllCiIx"></a>
410
+ <div class="image" id="cllCiIx">
411
+
412
+
413
+
414
+ <div class="wrapper" style="min-height: 404px">
415
+ <div class="image-hover action-button combobox left" title="Actions">
416
+ <div class="options">
417
+ <div class="item view album-view-image-link">
418
+ <a href="http://i.imgur.com/cllCiIx.png" target="_blank">View full resolution</a>
419
+ </div>
420
+
421
+ <div class="item download album-download-full-resolution">
422
+ <a href="/download/cllCiIx">Download full resolution</a>
423
+ </div>
424
+
425
+
426
+ </div>
427
+ </div>
428
+
429
+
430
+ <a class="zoom" href="http://i.imgur.com/cllCiIx.png">
431
+ <img class="unloaded" data-src="http://i.imgur.com/cllCiIx.png" alt="" />
432
+ </a>
433
+ </div>
434
+
435
+
436
+ </div>
437
+ <a name="xo1CxmN"></a>
438
+ <div class="image" id="xo1CxmN">
439
+
440
+
441
+
442
+ <div class="wrapper" style="min-height: 406px">
443
+ <div class="image-hover action-button combobox left" title="Actions">
444
+ <div class="options">
445
+ <div class="item view album-view-image-link">
446
+ <a href="http://i.imgur.com/xo1CxmN.jpg" target="_blank">View full resolution</a>
447
+ </div>
448
+
449
+ <div class="item download album-download-full-resolution">
450
+ <a href="/download/xo1CxmN">Download full resolution</a>
451
+ </div>
452
+
453
+
454
+ </div>
455
+ </div>
456
+
457
+
458
+ <a class="zoom" href="http://i.imgur.com/xo1CxmN.jpg">
459
+ <img class="unloaded" data-src="http://i.imgur.com/xo1CxmN.jpg" alt="" />
460
+ </a>
461
+ </div>
462
+
463
+
464
+ </div>
465
+
466
+ </div>
467
+
468
+ </div>
469
+
470
+ <div id="footer">
471
+ <div id="copyright">© 2013 Imgur, LLC.</div>
472
+
473
+
474
+ <div id="footer-links">
475
+ <a href="http://store.imgur.com" class="title green" title="the official imgur store">store</a>
476
+ <a href="http://imgur.com/blog" class="title" title="the simple imgur blog">blog</a>
477
+ <a href="http://imgur.com/help" class="title" title="answers to your questions">help</a>
478
+ <a href="http://imgur.com/apps" class="title" title="uploading apps">apps</a>
479
+ <a href="http://imgur.com/removalrequest" class="title" title="submit an image removal request">request deletion</a>
480
+ <a href="http://imgur.com/tos" class="title" title="terms of service">terms</a>
481
+ <a href="http://imgur.com/register/upgrade" class="title" title="imgur pro">go pro</a>
482
+
483
+ <a href="http://api.imgur.com" class="title" title="the imgur API">api</a>
484
+ </div>
485
+
486
+ <div class="clear"></div>
487
+
488
+ </div>
489
+ </div>
490
+
491
+ <div class="right">
492
+ <div id="scrollpanel">
493
+ <div class="panel">
494
+ <div class="panel-header">
495
+ <h2 class="textbox left">Album: 4 images</h2>
496
+
497
+ <div class="right">
498
+ <input type="button" class="button-medium" value="browse" onclick="javascript:window.location='//imgur.com/a/Ib8IT/all'" />
499
+ </div>
500
+
501
+ <div class="clear"></div>
502
+ </div>
503
+
504
+ <div class="thumbs-carousel">
505
+ <div class="carousel-button prev disabled">
506
+ <div></div>
507
+ </div>
508
+
509
+ <div class="left">
510
+ <div id="thumbs-top" class="jcarousel">
511
+ <ul>
512
+
513
+ <li>
514
+ <img id="thumb-jBlIuta" class="unloaded thumb-title" title="" alt="" data-src="http://i.imgur.com/jBlIutas.jpg" data-index="0" />
515
+ </li>
516
+
517
+
518
+
519
+
520
+
521
+
522
+ <li>
523
+ <img id="thumb-H2Z2O0d" class="unloaded thumb-title" title="" alt="" data-src="http://i.imgur.com/H2Z2O0ds.jpg" data-index="1" />
524
+ </li>
525
+
526
+
527
+
528
+
529
+
530
+
531
+ <li>
532
+ <img id="thumb-cllCiIx" class="unloaded thumb-title" title="" alt="" data-src="http://i.imgur.com/cllCiIxs.jpg" data-index="2" />
533
+ </li>
534
+
535
+
536
+
537
+
538
+
539
+
540
+
541
+
542
+
543
+
544
+
545
+
546
+
547
+ </ul>
548
+ </div>
549
+
550
+ <div id="thumbs-bottom" class="jcarousel">
551
+ <ul>
552
+
553
+
554
+
555
+
556
+
557
+
558
+
559
+
560
+
561
+
562
+
563
+
564
+
565
+
566
+
567
+
568
+
569
+
570
+
571
+ <li>
572
+ <img id="thumb-xo1CxmN" class="unloaded thumb-title" title="" alt="" data-src="http://i.imgur.com/xo1CxmNs.jpg" data-index="3" />
573
+ </li>
574
+
575
+
576
+
577
+
578
+
579
+
580
+
581
+
582
+
583
+
584
+
585
+
586
+
587
+
588
+
589
+ <li></li>
590
+
591
+
592
+
593
+
594
+
595
+
596
+ <li></li>
597
+
598
+
599
+
600
+
601
+
602
+
603
+
604
+
605
+
606
+
607
+
608
+
609
+
610
+ </ul>
611
+ </div>
612
+
613
+ </div>
614
+
615
+ <div class="carousel-button next">
616
+ <div></div>
617
+ </div>
618
+
619
+ <div class="clear"></div>
620
+ </div>
621
+ </div>
622
+
623
+
624
+
625
+ <div class="panel">
626
+ <div class="description textbox">
627
+ <h1>Do she got a booty? [Fixed]</h1>
628
+
629
+ </div>
630
+
631
+
632
+ <div class="description textbox center">
633
+ <a href="http://imgur.com/gallery/Ib8IT">View comments in the Gallery.</a>
634
+ </div>
635
+
636
+
637
+ <div class="textbox stats">
638
+ By <a href="//MikeMacAllanIV.imgur.com">MikeMacAllanIV</a> &middot;
639
+
640
+
641
+ <span title="Thu Aug 1 23:21:20 2013 GMT">2 months ago</span><br />
642
+ <span class="stat">460</span> views
643
+ </div>
644
+
645
+ <div class="textbox userActionLinks vertical">
646
+ <a class="album-embed-link" href="javascript:;">Embed</a> &middot;
647
+ <a href="javascript:;" class="album-download-link">Download</a> <img id="download-loader" class="nodisplay" src="/images/index-loader.gif"/> &middot;
648
+ <a href="javascript:;" class="album-settings-link">Switch layout</a>
649
+ <span class="fullscreenBox">
650
+ &middot; <a href="javascript:;" class="album-fullscreen-link">Fullscreen</a>
651
+ </span>
652
+ </div>
653
+
654
+
655
+
656
+ <div class="favorite-icon inline" >
657
+ <div id="favorite-image" title="Favorite" class="title " href="javascript:;"></div>
658
+ </div>
659
+ <div class="textbox icons inline">
660
+ <div id="social" class="social">
661
+ <ul>
662
+ <li class="title" title="Share on Twitter">
663
+ <span class="twitter_custom"></span>
664
+ </li>
665
+ <li class="title" title="Share on Facebook">
666
+ <span class="facebook_custom"></span>
667
+ </li>
668
+ <li class="title" title="Share on Reddit">
669
+ <span class="reddit_custom"></span>
670
+ </li>
671
+ <li class="title" title="Share on Tumblr">
672
+ <span class="tumblr_custom"></span>
673
+ </li>
674
+ <li class="title" title="Share on Stumble Upon">
675
+ <span class="stumbleupon_custom"></span>
676
+ </li>
677
+ <li class="title" title="Share over email">
678
+ <a href="javascript:;" class="addthis_button_email"><span class="st_email_custom"></span></a>
679
+ </li>
680
+ <li class="title" title="More sharing options">
681
+ <span class="addthis_button st_sharethis_custom"><span></span></span>
682
+ </li>
683
+ </ul>
684
+ </div>
685
+
686
+ </div>
687
+ <div class="clear"></div>
688
+ </div>
689
+
690
+
691
+
692
+
693
+
694
+ </div>
695
+ </div>
696
+
697
+ <div class="clear"></div>
698
+ </div>
699
+ <iframe id="fullscreenEmbed" style="display:none" mozallowfullscreen allowfullscreen webkitallowfullscreen></iframe>
700
+
701
+
702
+ <div id="album-Ib8IT" class="nodisplay" data-title="Do she got a booty? [Fixed]" data-cover="jBlIuta" data-layout="b" data-privacy="0" data-description=""></div>
703
+ <img class="nodisplay" src="http://i.imgur.com/albumview.gif?a=Ib8IT" alt=""/>
704
+ <div class="nodisplay">
705
+ <div id="embed-album-form" class="popup">
706
+ <h1>Embed this album</h1>
707
+
708
+ <div class="textbox">
709
+ Copy and paste the HTML below into your website:
710
+ </div>
711
+
712
+ <div>
713
+ <div class="clipboard-container" id="embedcode-container" title="copy">
714
+ <div class="clipboard" id="embedcode-clipboard"></div>
715
+ </div>
716
+ <input id="embedcode" type="text" value="" />
717
+ </div>
718
+ </div>
719
+ </div>
720
+ <div class="nodisplay">
721
+ <div id="download-album-form" class="popup">
722
+ <h1>Download this album</h1>
723
+
724
+ <div class="textbox">
725
+ This album is really big! It's going to take us a bit to get your download ready for you. Enter your email and we will notify you when it's ready.
726
+ </div>
727
+ <form id="download-form" onsubmit="return false;">
728
+
729
+ <div>
730
+ <div><input id="email" type="text" class="placeholder-onkeydown placeholder" title="Email" value="" class="required email" /></div>
731
+ <div id="message" class="right"></div>
732
+ <div class="left">
733
+ <input name="zip-album-submit-5356d2e58e23b5a4c11dfae7791a91ef" type="submit" class="button-medium" value="Save" id="save">
734
+ </div>
735
+ <div class="clear"></div>
736
+ </div>
737
+ </form>
738
+ </div>
739
+ </div>
740
+
741
+ <div class="nodisplay">
742
+ <div id="colorbox-confirm" class="popup">
743
+ <h1 id="colorbox-confirm-title"></h1>
744
+
745
+ <div class="textbox" id="colorbox-confirm-message"></div>
746
+
747
+ <div class="margin-top">
748
+ <div class="left">
749
+ <a href="javascript:;" class="colorbox-no-confirm" id="colorbox-confirm-no">No way!</a>
750
+ </div>
751
+
752
+ <div class="right">
753
+ <div class="small-loader"></div>
754
+ <a href="javascript:;" class="colorbox-confirm" id="colorbox-confirm-yes">I'm sure</a>
755
+ </div>
756
+
757
+ <div class="clear"></div>
758
+ </div>
759
+ </div>
760
+ </div>
761
+
762
+
763
+
764
+ <div class="nodisplay">
765
+ <div id="create-album-form" class="popup">
766
+ <form id='userLayoutForm'>
767
+ <h1></h1>
768
+ <div class="textbox">
769
+ <table id="album-layout">
770
+ <tr>
771
+ <td class="center" width="10%">
772
+ <label for="blog">
773
+ <img class="title" src="http://s.imgur.com/images/album-layout-blog.png" alt="Blog Layout" title="<h1>Blog Layout</h1>Shows all the images on one page in a blog post style layout. Best for albums with a small to medium amount of images." />
774
+ </label>
775
+ </td>
776
+
777
+ <td class="center" width="30%">
778
+ <label for="vertical">
779
+ <img class="title" src="http://s.imgur.com/images/album-layout-vertical.png" alt="Vertical Layout" title="<h1>Vertical Layout</h1>Shows one image at a time in a traditional style, with thumbnails to the right. Good for almost any album." />
780
+ </label>
781
+ </td>
782
+
783
+ <td class="center" width="30%">
784
+ <label for="horizontal">
785
+ <img class="title" src="http://s.imgur.com/images/album-layout-horizontal.png" alt="Horizontal Layout" title="<h1>Horizontal Layout</h1>Shows one image in high resolution at a time, with thumbnails on top. Best for albums that have high resolution photos." />
786
+ </label>
787
+ </td>
788
+
789
+ <td class="center" width="30%">
790
+ <label for="grid">
791
+ <img class="title" src="http://s.imgur.com/images/album-layout-grid.png" alt="Grid Layout" title="<h1>Grid Layout</h1>Shows all the images on one page as thumbnails that expand when clicked on. Best for albums with lots of images." />
792
+ </label>
793
+ </td>
794
+ </tr>
795
+
796
+ <tr>
797
+ <td class="center">
798
+ <input class="title" id="blog" type="radio" name="layout" value="b" title="<h1>Blog Layout</h1>Shows all the images on one page in a blog post style layout. Best for albums with a small to medium amount of images." />
799
+ </td>
800
+
801
+ <td class="center">
802
+ <input class="title" id="vertical" type="radio" name="layout" value="v" title="<h1>Vertical Layout</h1>Shows one image at a time in a traditional style, with thumbnails to the right. Good for almost any album." />
803
+ </td>
804
+
805
+ <td class="center">
806
+ <input class="title" id="horizontal" type="radio" name="layout" value="h" title="<h1>Horizontal Layout</h1>Shows one image in high resolution at a time, with thumbnails on top. Best for albums that have high resolution photos." />
807
+ </td>
808
+
809
+ <td class="center">
810
+ <input class="title" id="grid" type="radio" name="layout" value="g" title="<h1>Grid Layout</h1>Shows all the images on one page as thumbnails that expand when clicked on. Best for albums with lots of images." />
811
+ </td>
812
+ </tr>
813
+ </table>
814
+
815
+ </div>
816
+ <div>
817
+ <div class="left">
818
+ <input type="submit" tabindex="4" class="button-medium userSessionLayout" value="Save" />
819
+ </div>
820
+
821
+ <div class="left">
822
+ <div class="small-loader" id="create-album-loader"></div>
823
+ </div>
824
+
825
+ <div class="clear"></div>
826
+ </div>
827
+ </form>
828
+ </div>
829
+ </div>
830
+
831
+
832
+
833
+
834
+
835
+
836
+
837
+
838
+ <script type="text/javascript">
839
+ (function() {
840
+ var roll = Math.random();
841
+ if(roll < 0.05) {
842
+
843
+ (function(_,e,rr,s){
844
+ _errs=[s];var c=_.onerror;_.onerror=function(){var a=arguments;_errs.push(a);
845
+ c&&c.apply(this,a)};var b=function(){var c=e.createElement(rr),b=e.getElementsByTagName(rr)[0];
846
+ c.src="//beacon.errorception.com/"+s+".js";c.async=!0;b.parentNode.insertBefore(c,b)};
847
+ _.addEventListener?_.addEventListener("load",b,!1):_.attachEvent("onload",b)
848
+ })(window,document,"script","51d1e360b05ccb10310000d2");
849
+
850
+ }
851
+ })();
852
+ </script>
853
+
854
+ <script type="text/javascript" src="http://s.imgur.com/min/global.js?1379709744"></script>
855
+ <script type="text/javascript">
856
+ var imgur = Imgur.getInstance();
857
+ imgur.init({
858
+
859
+ isDev : 0,
860
+ host : 'imgur.com',
861
+ cdnUrl : 'http://i.imgur.com',
862
+ signed : false
863
+ });
864
+
865
+ imgur.initTopBarUploadButton();
866
+ imgur.generalInit();
867
+ </script>
868
+
869
+
870
+
871
+ <script type="text/javascript" src="http://s.imgur.com/min/album.js?1379624102"></script>
872
+ <script type="text/javascript">
873
+ var album = Imgur.Album.getInstance({
874
+ id : 'Ib8IT',
875
+ images : {"count":4,"items":[{"hash":"jBlIuta","title":"","description":"","width":960,"height":636,"size":81380,"ext":".jpg","animated":0,"datetime":"2013-08-01 23:20:18","ip":"35197940"},{"hash":"H2Z2O0d","title":"","description":"","width":2956,"height":1958,"size":331586,"ext":".jpg","animated":0,"datetime":"2013-08-01 23:20:19","ip":"35197940"},{"hash":"cllCiIx","title":"","description":"","width":720,"height":477,"size":413816,"ext":".png","animated":0,"datetime":"2013-08-01 23:20:20","ip":"35197940"},{"hash":"xo1CxmN","title":"","description":"","width":640,"height":427,"size":62266,"ext":".jpg","animated":0,"datetime":"2013-08-01 23:20:21","ip":"35197940"}]},
876
+ cover : '',
877
+ layout : 'b',
878
+ operation : ''
879
+ });
880
+
881
+ $(document).ready(function(){
882
+ var imgurFavorite = Imgur.Favorite.getInstance({
883
+ hash: 'Ib8IT',
884
+ method: null
885
+ });
886
+
887
+ imgurFavorite._init();
888
+ imgurFavorite._init_click_handler();
889
+ });
890
+ </script>
891
+
892
+
893
+
894
+ <script type="text/javascript">
895
+ var _gaq = _gaq || [];
896
+ _gaq.push(['_setAccount', 'UA-6671908-2']);
897
+ _gaq.push(['_setDomainName', 'none']);
898
+ _gaq.push(['_trackPageview']);
899
+ _gaq.push(['_trackPageLoadTime']);
900
+
901
+
902
+
903
+ (function() {
904
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
905
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : '//www') + '.google-analytics.com/ga.js';
906
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
907
+ })();
908
+ </script>
909
+
910
+ <script type='text/javascript'>
911
+ var _qevents = _qevents || [];
912
+ (function() {
913
+ var elem = document.createElement('script');
914
+ elem.src = (document.location.protocol == "https:" ? "https://secure" : "//edge") + ".quantserve.com/quant.js";
915
+ elem.async = true;
916
+ elem.type = "text/javascript";
917
+ var scpt = document.getElementsByTagName('script')[0];
918
+ scpt.parentNode.insertBefore(elem, scpt);
919
+ })();
920
+
921
+ _qevents.push({
922
+ qacct:"p-f8oruOqDFlMeI"
923
+ });
924
+ </script>
925
+
926
+ <noscript>
927
+ <div class="nodisplay">
928
+ <img src="//pixel.quantserve.com/pixel/p-f8oruOqDFlMeI.gif" border="0" height="1" width="1" alt="Quantcast"/>
929
+ </div>
930
+ </noscript>
931
+
932
+
933
+
934
+ <script type="text/javascript" src="http://tap-cdn.rubiconproject.com/partner/scripts/rubicon/alice.js?pc=8526/13802"></script>
935
+ <script type='text/javascript' src='http://static.fmpub.net/site/imgur'></script>
936
+
937
+
938
+
939
+
940
+ </body>
941
+ </html>