vimeo 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (164) hide show
  1. data/.gitignore +3 -0
  2. data/CHANGELOG.rdoc +24 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +322 -0
  5. data/Rakefile +68 -0
  6. data/VERSION.yml +4 -0
  7. data/lib/vimeo/advanced/album.rb +57 -0
  8. data/lib/vimeo/advanced/auth.rb +22 -0
  9. data/lib/vimeo/advanced/base.rb +105 -0
  10. data/lib/vimeo/advanced/channel.rb +58 -0
  11. data/lib/vimeo/advanced/contact.rb +31 -0
  12. data/lib/vimeo/advanced/group.rb +68 -0
  13. data/lib/vimeo/advanced/group_events.rb +25 -0
  14. data/lib/vimeo/advanced/group_forums.rb +19 -0
  15. data/lib/vimeo/advanced/person.rb +48 -0
  16. data/lib/vimeo/advanced/test.rb +36 -0
  17. data/lib/vimeo/advanced/upload.rb +62 -0
  18. data/lib/vimeo/advanced/video.rb +131 -0
  19. data/lib/vimeo/advanced/video_embed.rb +19 -0
  20. data/lib/vimeo/advanced.rb +20 -0
  21. data/lib/vimeo/simple/activity.rb +42 -0
  22. data/lib/vimeo/simple/album.rb +21 -0
  23. data/lib/vimeo/simple/base.rb +10 -0
  24. data/lib/vimeo/simple/channel.rb +21 -0
  25. data/lib/vimeo/simple/group.rb +28 -0
  26. data/lib/vimeo/simple/user.rb +84 -0
  27. data/lib/vimeo/simple/video.rb +14 -0
  28. data/lib/vimeo/simple.rb +14 -0
  29. data/lib/vimeo.rb +10 -0
  30. data/test/fixtures/advanced/album/add_video.json +4 -0
  31. data/test/fixtures/advanced/album/create.json +7 -0
  32. data/test/fixtures/advanced/album/delete.json +4 -0
  33. data/test/fixtures/advanced/album/get_all.json +111 -0
  34. data/test/fixtures/advanced/album/get_videos.json +30 -0
  35. data/test/fixtures/advanced/album/remove_video.json +4 -0
  36. data/test/fixtures/advanced/album/set_description.json +4 -0
  37. data/test/fixtures/advanced/album/set_password.json +4 -0
  38. data/test/fixtures/advanced/album/set_title.json +4 -0
  39. data/test/fixtures/advanced/auth/check_token.json +13 -0
  40. data/test/fixtures/advanced/auth/get_frob.json +5 -0
  41. data/test/fixtures/advanced/auth/get_token.json +13 -0
  42. data/test/fixtures/advanced/channel/add_video.json +4 -0
  43. data/test/fixtures/advanced/channel/get_all.json +1395 -0
  44. data/test/fixtures/advanced/channel/get_info.json +55 -0
  45. data/test/fixtures/advanced/channel/get_moderators.json +45 -0
  46. data/test/fixtures/advanced/channel/get_subscribers.json +44 -0
  47. data/test/fixtures/advanced/channel/get_videos.json +19 -0
  48. data/test/fixtures/advanced/channel/remove_video.json +4 -0
  49. data/test/fixtures/advanced/channel/subscribe.json +4 -0
  50. data/test/fixtures/advanced/channel/unsubscribe.json +4 -0
  51. data/test/fixtures/advanced/contact/get_all.json +117 -0
  52. data/test/fixtures/advanced/contact/get_mutual.json +80 -0
  53. data/test/fixtures/advanced/contact/get_online.json +47 -0
  54. data/test/fixtures/advanced/contact/get_who_added.json +117 -0
  55. data/test/fixtures/advanced/group/add_video.json +4 -0
  56. data/test/fixtures/advanced/group/get_all.json +1556 -0
  57. data/test/fixtures/advanced/group/get_files.json +255 -0
  58. data/test/fixtures/advanced/group/get_info.json +73 -0
  59. data/test/fixtures/advanced/group/get_members.json +862 -0
  60. data/test/fixtures/advanced/group/get_moderators.json +44 -0
  61. data/test/fixtures/advanced/group/get_video_comments.json +96 -0
  62. data/test/fixtures/advanced/group/get_videos.json +102 -0
  63. data/test/fixtures/advanced/group/join.json +4 -0
  64. data/test/fixtures/advanced/group/leave.json +4 -0
  65. data/test/fixtures/advanced/group_events/get_month.json +146 -0
  66. data/test/fixtures/advanced/group_events/get_past.json +146 -0
  67. data/test/fixtures/advanced/group_events/get_upcoming.json +146 -0
  68. data/test/fixtures/advanced/group_forums/get_topic_comments.json +224 -0
  69. data/test/fixtures/advanced/group_forums/get_topics.json +504 -0
  70. data/test/fixtures/advanced/person/add_contact.json +4 -0
  71. data/test/fixtures/advanced/person/add_subscription.json +4 -0
  72. data/test/fixtures/advanced/person/find_by_email.json +9 -0
  73. data/test/fixtures/advanced/person/get_hd_embeds.json +8 -0
  74. data/test/fixtures/advanced/person/get_info.json +21 -0
  75. data/test/fixtures/advanced/person/get_portrait_urls.json +28 -0
  76. data/test/fixtures/advanced/person/remove_contact.json +4 -0
  77. data/test/fixtures/advanced/person/remove_subscription.json +4 -0
  78. data/test/fixtures/advanced/test/echo.json +8 -0
  79. data/test/fixtures/advanced/test/login.json +8 -0
  80. data/test/fixtures/advanced/test/null.json +4 -0
  81. data/test/fixtures/advanced/upload/confirm.json +9 -0
  82. data/test/fixtures/advanced/upload/get_quota.json +16 -0
  83. data/test/fixtures/advanced/upload/get_ticket.json +8 -0
  84. data/test/fixtures/advanced/upload/manifest_to_upload.json +6 -0
  85. data/test/fixtures/advanced/upload/sample_iTunes.mov +0 -0
  86. data/test/fixtures/advanced/upload/verify_manifest.json +11 -0
  87. data/test/fixtures/advanced/video/add_cast.json +4 -0
  88. data/test/fixtures/advanced/video/add_comment.json +7 -0
  89. data/test/fixtures/advanced/video/add_photos.json +4 -0
  90. data/test/fixtures/advanced/video/add_tags.json +4 -0
  91. data/test/fixtures/advanced/video/clear_tags.json +4 -0
  92. data/test/fixtures/advanced/video/delete.json +4 -0
  93. data/test/fixtures/advanced/video/delete_comment.json +4 -0
  94. data/test/fixtures/advanced/video/edit_comment.json +4 -0
  95. data/test/fixtures/advanced/video/get_all.json +30 -0
  96. data/test/fixtures/advanced/video/get_appears_in.json +10 -0
  97. data/test/fixtures/advanced/video/get_by_tag.json +239 -0
  98. data/test/fixtures/advanced/video/get_cast.json +42 -0
  99. data/test/fixtures/advanced/video/get_comments_list.json +52 -0
  100. data/test/fixtures/advanced/video/get_contacts_liked.json +48 -0
  101. data/test/fixtures/advanced/video/get_contacts_uploaded.json +237 -0
  102. data/test/fixtures/advanced/video/get_info.json +246 -0
  103. data/test/fixtures/advanced/video/get_likes.json +32 -0
  104. data/test/fixtures/advanced/video/get_subscriptions.json +241 -0
  105. data/test/fixtures/advanced/video/get_thumbnail_urls.json +28 -0
  106. data/test/fixtures/advanced/video/get_uploaded.json +30 -0
  107. data/test/fixtures/advanced/video/remove_cast.json +4 -0
  108. data/test/fixtures/advanced/video/remove_tag.json +4 -0
  109. data/test/fixtures/advanced/video/search.json +238 -0
  110. data/test/fixtures/advanced/video/set_description.json +4 -0
  111. data/test/fixtures/advanced/video/set_like.json +4 -0
  112. data/test/fixtures/advanced/video/set_privacy.json +4 -0
  113. data/test/fixtures/advanced/video/set_title.json +4 -0
  114. data/test/fixtures/advanced/video_embed/get_presets.json +8 -0
  115. data/test/fixtures/advanced/video_embed/set_preset.json +4 -0
  116. data/test/fixtures/simple/activity/contacts_did.json +1 -0
  117. data/test/fixtures/simple/activity/everyone_did.json +1 -0
  118. data/test/fixtures/simple/activity/happened_to_contacts.json +1 -0
  119. data/test/fixtures/simple/activity/happened_to_user.json +1 -0
  120. data/test/fixtures/simple/activity/user_did.json +1 -0
  121. data/test/fixtures/simple/album/info.json +1 -0
  122. data/test/fixtures/simple/album/videos.json +1 -0
  123. data/test/fixtures/simple/channel/info.json +1 -0
  124. data/test/fixtures/simple/channel/videos.json +1 -0
  125. data/test/fixtures/simple/group/info.json +1 -0
  126. data/test/fixtures/simple/group/users.json +1 -0
  127. data/test/fixtures/simple/group/videos.json +1 -0
  128. data/test/fixtures/simple/user/albums.json +1 -0
  129. data/test/fixtures/simple/user/all_videos.json +1 -0
  130. data/test/fixtures/simple/user/appears_in.json +1 -0
  131. data/test/fixtures/simple/user/channels.json +1 -0
  132. data/test/fixtures/simple/user/contacts_like.json +1 -0
  133. data/test/fixtures/simple/user/contacts_videos.json +1 -0
  134. data/test/fixtures/simple/user/groups.json +1 -0
  135. data/test/fixtures/simple/user/info.json +1 -0
  136. data/test/fixtures/simple/user/likes.json +1 -0
  137. data/test/fixtures/simple/user/subscriptions.json +1 -0
  138. data/test/fixtures/simple/user/videos.json +1 -0
  139. data/test/fixtures/simple/video/info.json +1 -0
  140. data/test/test_helper.rb +50 -0
  141. data/test/vimeo/advanced/album_test.rb +88 -0
  142. data/test/vimeo/advanced/auth_test.rb +37 -0
  143. data/test/vimeo/advanced/base_test.rb +24 -0
  144. data/test/vimeo/advanced/channels_test.rb +79 -0
  145. data/test/vimeo/advanced/contacts_test.rb +40 -0
  146. data/test/vimeo/advanced/group_events_test.rb +33 -0
  147. data/test/vimeo/advanced/group_forums_test.rb +26 -0
  148. data/test/vimeo/advanced/groups_test.rb +82 -0
  149. data/test/vimeo/advanced/person_test.rb +68 -0
  150. data/test/vimeo/advanced/test_test.rb +33 -0
  151. data/test/vimeo/advanced/upload_test.rb +50 -0
  152. data/test/vimeo/advanced/videos_embed_test.rb +26 -0
  153. data/test/vimeo/advanced/videos_test.rb +203 -0
  154. data/test/vimeo/advanced_test.rb +0 -0
  155. data/test/vimeo/simple/activity_test.rb +60 -0
  156. data/test/vimeo/simple/album_test.rb +31 -0
  157. data/test/vimeo/simple/channel_test.rb +31 -0
  158. data/test/vimeo/simple/group_test.rb +41 -0
  159. data/test/vimeo/simple/user_test.rb +112 -0
  160. data/test/vimeo/simple/video_test.rb +22 -0
  161. data/test/vimeo/simple_test.rb +0 -0
  162. data/test/vimeo_test.rb +0 -0
  163. data/vimeo.gemspec +244 -0
  164. metadata +303 -0
@@ -0,0 +1,146 @@
1
+ {
2
+ "generated_in":"0.2291",
3
+ "stat":"ok",
4
+ "events":{
5
+ "on_this_page":"3",
6
+ "page":"1",
7
+ "perpage":"25",
8
+ "total":"3",
9
+ "event":[
10
+ {
11
+ "added_on":"2009-07-20 18:22:20",
12
+ "details":"The Lock Tavern - 35 Chalk Farm Road,
13
+ NW1 - 8PM Screening followed by A\/V insanity by Eclectic Method. Come one,
14
+ come all,
15
+ and bring your friends!",
16
+ "event_start":"2009-08-25 20:00:00",
17
+ "external_url":"http:\/\/www.lock-tavern.co.uk\/index.php",
18
+ "id":"1575",
19
+ "title":"Vimeo Offline: London",
20
+ "url":"http:\/\/vimeo.com\/groups\/worldtour\/calendar\/event:1575",
21
+ "creator":{
22
+ "display_name":"Blake Whitman",
23
+ "id":"151382",
24
+ "is_plus":"1",
25
+ "is_staff":"1",
26
+ "profileurl":"http:\/\/vimeo.com\/blakewhitman",
27
+ "realname":"Blake Whitman",
28
+ "username":"blakewhitman",
29
+ "videosurl":"http:\/\/vimeo.com\/blakewhitman\/videos",
30
+ "portraits":{
31
+ "portrait":[
32
+ {
33
+ "height":"30",
34
+ "width":"30",
35
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_30.jpg"
36
+ },
37
+ {
38
+ "height":"75",
39
+ "width":"75",
40
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_75.jpg"
41
+ },
42
+ {
43
+ "height":"100",
44
+ "width":"100",
45
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_100.jpg"
46
+ },
47
+ {
48
+ "height":"300",
49
+ "width":"300",
50
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_300.jpg"
51
+ }
52
+ ]
53
+ }
54
+ }
55
+ },
56
+ {
57
+ "added_on":"2009-07-20 18:21:56",
58
+ "details":"Vimeo Offline: Paris Dune 18,
59
+ AV. CLAUDE VELLEFAUX 75010 PARIS - The event will begin at 8pm with a screening of videos by Vimeo members followed by dance party and VJ performances by Charlie Mars - Vimeo.com\/charlimars ",
60
+ "event_start":"2009-08-22 20:00:00",
61
+ "external_url":"http:\/\/www.e-dune.fr\/blog\/index.php\/General",
62
+ "id":"1574",
63
+ "title":"Vimeo Offline: Paris",
64
+ "url":"http:\/\/vimeo.com\/groups\/worldtour\/calendar\/event:1574",
65
+ "creator":{
66
+ "display_name":"Blake Whitman",
67
+ "id":"151382",
68
+ "is_plus":"1",
69
+ "is_staff":"1",
70
+ "profileurl":"http:\/\/vimeo.com\/blakewhitman",
71
+ "realname":"Blake Whitman",
72
+ "username":"blakewhitman",
73
+ "videosurl":"http:\/\/vimeo.com\/blakewhitman\/videos",
74
+ "portraits":{
75
+ "portrait":[
76
+ {
77
+ "height":"30",
78
+ "width":"30",
79
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_30.jpg"
80
+ },
81
+ {
82
+ "height":"75",
83
+ "width":"75",
84
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_75.jpg"
85
+ },
86
+ {
87
+ "height":"100",
88
+ "width":"100",
89
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_100.jpg"
90
+ },
91
+ {
92
+ "height":"300",
93
+ "width":"300",
94
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_300.jpg"
95
+ }
96
+ ]
97
+ }
98
+ }
99
+ },
100
+ {
101
+ "added_on":"2009-07-20 18:21:03",
102
+ "details":"Venue: Stattbad Gallery - Gerichtstr 65 13347 Berlin,
103
+ Germany +49 30 86383155 - 9pm screening followed by a kick ass dance party with VJ performances by Raquel Meyers (www.raquelmeyers.com)",
104
+ "event_start":"2009-08-19 21:00:00",
105
+ "external_url":"http:\/\/www.urbanaffairs.de\/stattbad.html",
106
+ "id":"1573",
107
+ "title":"Vimeo Offline: Berlin",
108
+ "url":"http:\/\/vimeo.com\/groups\/worldtour\/calendar\/event:1573",
109
+ "creator":{
110
+ "display_name":"Blake Whitman",
111
+ "id":"151382",
112
+ "is_plus":"1",
113
+ "is_staff":"1",
114
+ "profileurl":"http:\/\/vimeo.com\/blakewhitman",
115
+ "realname":"Blake Whitman",
116
+ "username":"blakewhitman",
117
+ "videosurl":"http:\/\/vimeo.com\/blakewhitman\/videos",
118
+ "portraits":{
119
+ "portrait":[
120
+ {
121
+ "height":"30",
122
+ "width":"30",
123
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_30.jpg"
124
+ },
125
+ {
126
+ "height":"75",
127
+ "width":"75",
128
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_75.jpg"
129
+ },
130
+ {
131
+ "height":"100",
132
+ "width":"100",
133
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_100.jpg"
134
+ },
135
+ {
136
+ "height":"300",
137
+ "width":"300",
138
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_300.jpg"
139
+ }
140
+ ]
141
+ }
142
+ }
143
+ }
144
+ ]
145
+ }
146
+ }
@@ -0,0 +1,224 @@
1
+ {
2
+ "generated_in":"0.9180",
3
+ "stat":"ok",
4
+ "comments":{
5
+ "on_this_page":"5",
6
+ "page":"1",
7
+ "perpage":"25",
8
+ "total":"5",
9
+ "comment":[
10
+ {
11
+ "datecreate":"2009-08-27 20:15:20",
12
+ "id":"1867454",
13
+ "permalink":"http:\/\/vimeo.com\/groups\/worldtour\/forumthread:7953#comment_1867454",
14
+ "reply_to_comment_id":"1867454",
15
+ "type":"group_forum_topic",
16
+ "text":"Post them in this thread. Here are some photos:\n\nhttp:\/\/www.flickr.com\/photos\/karenabad\/sets\/72157622148722738\/",
17
+ "author":{
18
+ "display_name":"Karen Abad \u2665s Dinosaurs.",
19
+ "id":"266269",
20
+ "is_plus":"1",
21
+ "is_staff":"1",
22
+ "profileurl":"http:\/\/vimeo.com\/karenabad",
23
+ "realname":"Karen Abad \u2665s Dinosaurs.",
24
+ "username":"karenabad",
25
+ "videosurl":"http:\/\/vimeo.com\/karenabad\/videos",
26
+ "portraits":{
27
+ "portrait":[
28
+ {
29
+ "height":"30",
30
+ "width":"30",
31
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/29\/39\/17\/portrait-29391761.jpg"
32
+ },
33
+ {
34
+ "height":"75",
35
+ "width":"75",
36
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/29\/39\/23\/portrait-29392351.jpg"
37
+ },
38
+ {
39
+ "height":"100",
40
+ "width":"100",
41
+ "_content":"http:\/\/00.media.vimeo.com\/d1\/5\/29\/41\/82\/portrait-29418290.jpg"
42
+ },
43
+ {
44
+ "height":"300",
45
+ "width":"300",
46
+ "_content":"http:\/\/50.media.vimeo.com\/d1\/5\/29\/41\/26\/portrait-29412655.jpg"
47
+ }
48
+ ]
49
+ }
50
+ }
51
+ },
52
+ {
53
+ "datecreate":"2009-09-02 18:12:49",
54
+ "id":"1886294",
55
+ "permalink":"http:\/\/vimeo.com\/groups\/worldtour\/forumthread:7953#comment_1886294",
56
+ "reply_to_comment_id":"1886294",
57
+ "type":"group_forum_topic",
58
+ "text":"Any chance of someone posting the playlist?\n\nI'm particulalrly interested in that weird animation about the alien invasion...?",
59
+ "author":{
60
+ "display_name":"Karel Bata",
61
+ "id":"680699",
62
+ "is_plus":"0",
63
+ "is_staff":"0",
64
+ "profileurl":"http:\/\/vimeo.com\/karelbata",
65
+ "realname":"Karel Bata",
66
+ "username":"karelbata",
67
+ "videosurl":"http:\/\/vimeo.com\/karelbata\/videos",
68
+ "portraits":{
69
+ "portrait":[
70
+ {
71
+ "height":"30",
72
+ "width":"30",
73
+ "_content":"http:\/\/images.vimeo.com\/11\/31\/43\/113143358\/113143358_30.jpg"
74
+ },
75
+ {
76
+ "height":"75",
77
+ "width":"75",
78
+ "_content":"http:\/\/images.vimeo.com\/11\/31\/43\/113143358\/113143358_75.jpg"
79
+ },
80
+ {
81
+ "height":"100",
82
+ "width":"100",
83
+ "_content":"http:\/\/images.vimeo.com\/11\/31\/43\/113143358\/113143358_100.jpg"
84
+ },
85
+ {
86
+ "height":"300",
87
+ "width":"300",
88
+ "_content":"http:\/\/images.vimeo.com\/11\/31\/43\/113143358\/113143358_300.jpg"
89
+ }
90
+ ]
91
+ }
92
+ }
93
+ },
94
+ {
95
+ "datecreate":"2009-09-08 10:52:25",
96
+ "id":"1904872",
97
+ "permalink":"http:\/\/vimeo.com\/groups\/worldtour\/forumthread:7953#comment_1904872",
98
+ "reply_to_comment_id":"1904872",
99
+ "type":"group_forum_topic",
100
+ "text":"taadaa! : http:\/\/www.vimeo.com\/6484009",
101
+ "author":{
102
+ "display_name":"Mike Hutcherson",
103
+ "id":"497687",
104
+ "is_plus":"1",
105
+ "is_staff":"0",
106
+ "profileurl":"http:\/\/vimeo.com\/mikehutcherson",
107
+ "realname":"Mike Hutcherson",
108
+ "username":"mikehutcherson",
109
+ "videosurl":"http:\/\/vimeo.com\/mikehutcherson\/videos",
110
+ "portraits":{
111
+ "portrait":[
112
+ {
113
+ "height":"30",
114
+ "width":"30",
115
+ "_content":"http:\/\/images.vimeo.com\/11\/39\/16\/113916960\/113916960_30.jpg"
116
+ },
117
+ {
118
+ "height":"75",
119
+ "width":"75",
120
+ "_content":"http:\/\/images.vimeo.com\/11\/39\/16\/113916960\/113916960_75.jpg"
121
+ },
122
+ {
123
+ "height":"100",
124
+ "width":"100",
125
+ "_content":"http:\/\/images.vimeo.com\/11\/39\/16\/113916960\/113916960_100.jpg"
126
+ },
127
+ {
128
+ "height":"300",
129
+ "width":"300",
130
+ "_content":"http:\/\/images.vimeo.com\/11\/39\/16\/113916960\/113916960_300.jpg"
131
+ }
132
+ ]
133
+ }
134
+ }
135
+ },
136
+ {
137
+ "datecreate":"2009-09-09 08:12:22",
138
+ "id":"1908406",
139
+ "permalink":"http:\/\/vimeo.com\/groups\/worldtour\/forumthread:7953#comment_1908406",
140
+ "reply_to_comment_id":"1908406",
141
+ "type":"group_forum_topic",
142
+ "text":"my ridiculously small amount of photos...\nhttp:\/\/www.flickr.com\/photos\/agsystems\/sets\/72157622157510964\/",
143
+ "author":{
144
+ "display_name":"Andy Galletly",
145
+ "id":"126630",
146
+ "is_plus":"1",
147
+ "is_staff":"0",
148
+ "profileurl":"http:\/\/vimeo.com\/andygalletly",
149
+ "realname":"Andy Galletly",
150
+ "username":"andygalletly",
151
+ "videosurl":"http:\/\/vimeo.com\/andygalletly\/videos",
152
+ "portraits":{
153
+ "portrait":[
154
+ {
155
+ "height":"30",
156
+ "width":"30",
157
+ "_content":"http:\/\/images.vimeo.com\/11\/64\/74\/116474238\/116474238_30.jpg"
158
+ },
159
+ {
160
+ "height":"75",
161
+ "width":"75",
162
+ "_content":"http:\/\/images.vimeo.com\/11\/64\/74\/116474238\/116474238_75.jpg"
163
+ },
164
+ {
165
+ "height":"100",
166
+ "width":"100",
167
+ "_content":"http:\/\/images.vimeo.com\/11\/64\/74\/116474238\/116474238_100.jpg"
168
+ },
169
+ {
170
+ "height":"300",
171
+ "width":"300",
172
+ "_content":"http:\/\/images.vimeo.com\/11\/64\/74\/116474238\/116474238_300.jpg"
173
+ }
174
+ ]
175
+ }
176
+ }
177
+ },
178
+ {
179
+ "datecreate":"2009-09-09 08:18:12",
180
+ "id":"1908418",
181
+ "permalink":"http:\/\/vimeo.com\/groups\/worldtour\/forumthread:7953#comment_1908418",
182
+ "reply_to_comment_id":"1908418",
183
+ "type":"group_forum_topic",
184
+ "text":"Also,
185
+ I only just noticed,
186
+ my video is in the London album?!\nhttp:\/\/vimeo.com\/album\/117909\nDid you show it? I totally missed it!\nmust have been when I went to the loo...\n:\/",
187
+ "author":{
188
+ "display_name":"Andy Galletly",
189
+ "id":"126630",
190
+ "is_plus":"1",
191
+ "is_staff":"0",
192
+ "profileurl":"http:\/\/vimeo.com\/andygalletly",
193
+ "realname":"Andy Galletly",
194
+ "username":"andygalletly",
195
+ "videosurl":"http:\/\/vimeo.com\/andygalletly\/videos",
196
+ "portraits":{
197
+ "portrait":[
198
+ {
199
+ "height":"30",
200
+ "width":"30",
201
+ "_content":"http:\/\/images.vimeo.com\/11\/64\/74\/116474238\/116474238_30.jpg"
202
+ },
203
+ {
204
+ "height":"75",
205
+ "width":"75",
206
+ "_content":"http:\/\/images.vimeo.com\/11\/64\/74\/116474238\/116474238_75.jpg"
207
+ },
208
+ {
209
+ "height":"100",
210
+ "width":"100",
211
+ "_content":"http:\/\/images.vimeo.com\/11\/64\/74\/116474238\/116474238_100.jpg"
212
+ },
213
+ {
214
+ "height":"300",
215
+ "width":"300",
216
+ "_content":"http:\/\/images.vimeo.com\/11\/64\/74\/116474238\/116474238_300.jpg"
217
+ }
218
+ ]
219
+ }
220
+ }
221
+ }
222
+ ]
223
+ }
224
+ }