slainer68_vimeo 1.4.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (167) hide show
  1. data/CHANGELOG.rdoc +24 -0
  2. data/LICENSE +20 -0
  3. data/README.markdown +330 -0
  4. data/Rakefile +100 -0
  5. data/VERSION.yml +5 -0
  6. data/init.rb +2 -0
  7. data/lib/vimeo/advanced/album.rb +55 -0
  8. data/lib/vimeo/advanced/base.rb +126 -0
  9. data/lib/vimeo/advanced/channel.rb +55 -0
  10. data/lib/vimeo/advanced/contact.rb +30 -0
  11. data/lib/vimeo/advanced/group.rb +62 -0
  12. data/lib/vimeo/advanced/group_events.rb +25 -0
  13. data/lib/vimeo/advanced/group_forums.rb +19 -0
  14. data/lib/vimeo/advanced/person.rb +47 -0
  15. data/lib/vimeo/advanced/simple_upload/chunk.rb +50 -0
  16. data/lib/vimeo/advanced/simple_upload/task.rb +85 -0
  17. data/lib/vimeo/advanced/simple_upload.rb +46 -0
  18. data/lib/vimeo/advanced/test.rb +19 -0
  19. data/lib/vimeo/advanced/upload.rb +35 -0
  20. data/lib/vimeo/advanced/video.rb +141 -0
  21. data/lib/vimeo/advanced/video_embed.rb +17 -0
  22. data/lib/vimeo/advanced.rb +20 -0
  23. data/lib/vimeo/simple/activity.rb +42 -0
  24. data/lib/vimeo/simple/album.rb +21 -0
  25. data/lib/vimeo/simple/base.rb +10 -0
  26. data/lib/vimeo/simple/channel.rb +21 -0
  27. data/lib/vimeo/simple/group.rb +28 -0
  28. data/lib/vimeo/simple/user.rb +89 -0
  29. data/lib/vimeo/simple/video.rb +14 -0
  30. data/lib/vimeo/simple.rb +14 -0
  31. data/lib/vimeo.rb +12 -0
  32. data/slainer68_vimeo.gemspec +227 -0
  33. data/test/fixtures/advanced/album/add_video.json +4 -0
  34. data/test/fixtures/advanced/album/create.json +7 -0
  35. data/test/fixtures/advanced/album/delete.json +4 -0
  36. data/test/fixtures/advanced/album/get_all.json +111 -0
  37. data/test/fixtures/advanced/album/get_videos.json +30 -0
  38. data/test/fixtures/advanced/album/remove_video.json +4 -0
  39. data/test/fixtures/advanced/album/set_description.json +4 -0
  40. data/test/fixtures/advanced/album/set_password.json +4 -0
  41. data/test/fixtures/advanced/album/set_title.json +4 -0
  42. data/test/fixtures/advanced/auth/access_token.txt +1 -0
  43. data/test/fixtures/advanced/auth/check_access_token.json +9 -0
  44. data/test/fixtures/advanced/auth/check_token.json +13 -0
  45. data/test/fixtures/advanced/auth/get_frob.json +5 -0
  46. data/test/fixtures/advanced/auth/get_token.json +13 -0
  47. data/test/fixtures/advanced/auth/request_token.txt +1 -0
  48. data/test/fixtures/advanced/channel/add_video.json +4 -0
  49. data/test/fixtures/advanced/channel/get_all.json +1357 -0
  50. data/test/fixtures/advanced/channel/get_info.json +55 -0
  51. data/test/fixtures/advanced/channel/get_moderators.json +45 -0
  52. data/test/fixtures/advanced/channel/get_subscribers.json +44 -0
  53. data/test/fixtures/advanced/channel/get_videos.json +19 -0
  54. data/test/fixtures/advanced/channel/remove_video.json +4 -0
  55. data/test/fixtures/advanced/channel/subscribe.json +4 -0
  56. data/test/fixtures/advanced/channel/unsubscribe.json +4 -0
  57. data/test/fixtures/advanced/contact/get_all.json +117 -0
  58. data/test/fixtures/advanced/contact/get_mutual.json +80 -0
  59. data/test/fixtures/advanced/contact/get_online.json +47 -0
  60. data/test/fixtures/advanced/contact/get_who_added.json +117 -0
  61. data/test/fixtures/advanced/group/add_video.json +4 -0
  62. data/test/fixtures/advanced/group/get_all.json +1532 -0
  63. data/test/fixtures/advanced/group/get_files.json +255 -0
  64. data/test/fixtures/advanced/group/get_info.json +72 -0
  65. data/test/fixtures/advanced/group/get_members.json +862 -0
  66. data/test/fixtures/advanced/group/get_moderators.json +44 -0
  67. data/test/fixtures/advanced/group/get_video_comments.json +96 -0
  68. data/test/fixtures/advanced/group/get_videos.json +102 -0
  69. data/test/fixtures/advanced/group/join.json +4 -0
  70. data/test/fixtures/advanced/group/leave.json +4 -0
  71. data/test/fixtures/advanced/group_events/get_month.json +141 -0
  72. data/test/fixtures/advanced/group_events/get_past.json +141 -0
  73. data/test/fixtures/advanced/group_events/get_upcoming.json +141 -0
  74. data/test/fixtures/advanced/group_forums/get_topic_comments.json +222 -0
  75. data/test/fixtures/advanced/group_forums/get_topics.json +504 -0
  76. data/test/fixtures/advanced/person/add_contact.json +4 -0
  77. data/test/fixtures/advanced/person/add_subscription.json +4 -0
  78. data/test/fixtures/advanced/person/find_by_email.json +9 -0
  79. data/test/fixtures/advanced/person/get_hd_embeds.json +8 -0
  80. data/test/fixtures/advanced/person/get_info.json +20 -0
  81. data/test/fixtures/advanced/person/get_portrait_urls.json +28 -0
  82. data/test/fixtures/advanced/person/remove_contact.json +4 -0
  83. data/test/fixtures/advanced/person/remove_subscription.json +4 -0
  84. data/test/fixtures/advanced/test/echo.json +8 -0
  85. data/test/fixtures/advanced/test/login.json +8 -0
  86. data/test/fixtures/advanced/test/null.json +4 -0
  87. data/test/fixtures/advanced/upload/get_quota.json +16 -0
  88. data/test/fixtures/advanced/upload/get_ticket.json +8 -0
  89. data/test/fixtures/advanced/upload/sample_iTunes.mov +0 -0
  90. data/test/fixtures/advanced/video/add_cast.json +4 -0
  91. data/test/fixtures/advanced/video/add_comment.json +7 -0
  92. data/test/fixtures/advanced/video/add_photos.json +4 -0
  93. data/test/fixtures/advanced/video/add_tags.json +4 -0
  94. data/test/fixtures/advanced/video/clear_tags.json +4 -0
  95. data/test/fixtures/advanced/video/delete.json +4 -0
  96. data/test/fixtures/advanced/video/delete_comment.json +4 -0
  97. data/test/fixtures/advanced/video/edit_comment.json +4 -0
  98. data/test/fixtures/advanced/video/get_all.json +30 -0
  99. data/test/fixtures/advanced/video/get_appears_in.json +10 -0
  100. data/test/fixtures/advanced/video/get_by_tag.json +237 -0
  101. data/test/fixtures/advanced/video/get_cast.json +42 -0
  102. data/test/fixtures/advanced/video/get_comments_list.json +52 -0
  103. data/test/fixtures/advanced/video/get_contacts_liked.json +48 -0
  104. data/test/fixtures/advanced/video/get_contacts_uploaded.json +237 -0
  105. data/test/fixtures/advanced/video/get_info.json +246 -0
  106. data/test/fixtures/advanced/video/get_likes.json +32 -0
  107. data/test/fixtures/advanced/video/get_subscriptions.json +237 -0
  108. data/test/fixtures/advanced/video/get_thumbnail_urls.json +28 -0
  109. data/test/fixtures/advanced/video/get_uploaded.json +30 -0
  110. data/test/fixtures/advanced/video/remove_cast.json +4 -0
  111. data/test/fixtures/advanced/video/remove_tag.json +4 -0
  112. data/test/fixtures/advanced/video/search.json +237 -0
  113. data/test/fixtures/advanced/video/set_description.json +4 -0
  114. data/test/fixtures/advanced/video/set_like.json +4 -0
  115. data/test/fixtures/advanced/video/set_preset.json +4 -0
  116. data/test/fixtures/advanced/video/set_privacy.json +4 -0
  117. data/test/fixtures/advanced/video/set_title.json +4 -0
  118. data/test/fixtures/advanced/video_embed/get_presets.json +8 -0
  119. data/test/fixtures/advanced/video_embed/set_preset.json +4 -0
  120. data/test/fixtures/simple/activity/contacts_did.json +1 -0
  121. data/test/fixtures/simple/activity/everyone_did.json +1 -0
  122. data/test/fixtures/simple/activity/happened_to_contacts.json +1 -0
  123. data/test/fixtures/simple/activity/happened_to_user.json +1 -0
  124. data/test/fixtures/simple/activity/user_did.json +1 -0
  125. data/test/fixtures/simple/album/info.json +1 -0
  126. data/test/fixtures/simple/album/videos.json +1 -0
  127. data/test/fixtures/simple/channel/info.json +1 -0
  128. data/test/fixtures/simple/channel/videos.json +1 -0
  129. data/test/fixtures/simple/group/info.json +1 -0
  130. data/test/fixtures/simple/group/users.json +1 -0
  131. data/test/fixtures/simple/group/videos.json +1 -0
  132. data/test/fixtures/simple/user/albums.json +1 -0
  133. data/test/fixtures/simple/user/all_videos.json +1 -0
  134. data/test/fixtures/simple/user/appears_in.json +1 -0
  135. data/test/fixtures/simple/user/channels.json +1 -0
  136. data/test/fixtures/simple/user/contacts_like.json +1 -0
  137. data/test/fixtures/simple/user/contacts_videos.json +1 -0
  138. data/test/fixtures/simple/user/groups.json +1 -0
  139. data/test/fixtures/simple/user/info.json +1 -0
  140. data/test/fixtures/simple/user/likes.json +1 -0
  141. data/test/fixtures/simple/user/subscriptions.json +1 -0
  142. data/test/fixtures/simple/user/videos.json +1 -0
  143. data/test/fixtures/simple/video/info.json +1 -0
  144. data/test/test_helper.rb +64 -0
  145. data/test/vimeo/advanced/album_test.rb +75 -0
  146. data/test/vimeo/advanced/auth_test.rb +30 -0
  147. data/test/vimeo/advanced/base_test.rb +21 -0
  148. data/test/vimeo/advanced/channels_test.rb +79 -0
  149. data/test/vimeo/advanced/contacts_test.rb +40 -0
  150. data/test/vimeo/advanced/group_events_test.rb +33 -0
  151. data/test/vimeo/advanced/group_forums_test.rb +26 -0
  152. data/test/vimeo/advanced/groups_test.rb +82 -0
  153. data/test/vimeo/advanced/person_test.rb +69 -0
  154. data/test/vimeo/advanced/test_test.rb +33 -0
  155. data/test/vimeo/advanced/upload_test.rb +25 -0
  156. data/test/vimeo/advanced/videos_embed_test.rb +27 -0
  157. data/test/vimeo/advanced/videos_test.rb +212 -0
  158. data/test/vimeo/advanced_test.rb +0 -0
  159. data/test/vimeo/simple/activity_test.rb +60 -0
  160. data/test/vimeo/simple/album_test.rb +31 -0
  161. data/test/vimeo/simple/channel_test.rb +31 -0
  162. data/test/vimeo/simple/group_test.rb +41 -0
  163. data/test/vimeo/simple/user_test.rb +112 -0
  164. data/test/vimeo/simple/video_test.rb +22 -0
  165. data/test/vimeo/simple_test.rb +0 -0
  166. data/test/vimeo_test.rb +0 -0
  167. metadata +304 -0
@@ -0,0 +1,44 @@
1
+ {
2
+ "generated_in":"0.1224",
3
+ "stat":"ok",
4
+ "moderators":{
5
+ "on_this_page":"1",
6
+ "page":"1",
7
+ "perpage":"25",
8
+ "total":"1",
9
+ "moderator":{
10
+ "display_name":"Blake Whitman",
11
+ "id":"151382",
12
+ "is_plus":"1",
13
+ "is_staff":"1",
14
+ "profileurl":"http:\/\/vimeo.com\/blakewhitman",
15
+ "realname":"Blake Whitman",
16
+ "username":"blakewhitman",
17
+ "videosurl":"http:\/\/vimeo.com\/blakewhitman\/videos",
18
+ "portraits":{
19
+ "portrait":[
20
+ {
21
+ "height":"30",
22
+ "width":"30",
23
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_30.jpg"
24
+ },
25
+ {
26
+ "height":"75",
27
+ "width":"75",
28
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_75.jpg"
29
+ },
30
+ {
31
+ "height":"100",
32
+ "width":"100",
33
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_100.jpg"
34
+ },
35
+ {
36
+ "height":"300",
37
+ "width":"300",
38
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_300.jpg"
39
+ }
40
+ ]
41
+ }
42
+ }
43
+ }
44
+ }
@@ -0,0 +1,96 @@
1
+ {
2
+ "generated_in":"0.2040",
3
+ "stat":"ok",
4
+ "comments":{
5
+ "on_this_page":"2",
6
+ "page":"1",
7
+ "perpage":"25",
8
+ "total":"2",
9
+ "comment":[
10
+ {
11
+ "datecreate":"2009-07-24 07:34:10",
12
+ "id":"1750558",
13
+ "permalink":"http:\/\/vimeo.com\/groups\/worldtour\/videos\/5686991#comment_1750558",
14
+ "reply_to_comment_id":"1750558",
15
+ "type":"group_clip",
16
+ "text":"y\u00e9h!",
17
+ "author":{
18
+ "display_name":"JUL & MAT",
19
+ "id":"496508",
20
+ "is_plus":"1",
21
+ "is_staff":"0",
22
+ "profileurl":"http:\/\/vimeo.com\/juletmat",
23
+ "realname":"JUL & MAT",
24
+ "username":"juletmat",
25
+ "videosurl":"http:\/\/vimeo.com\/juletmat\/videos",
26
+ "portraits":{
27
+ "portrait":[
28
+ {
29
+ "height":"30",
30
+ "width":"30",
31
+ "_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/614\/61436_30.jpg"
32
+ },
33
+ {
34
+ "height":"75",
35
+ "width":"75",
36
+ "_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/614\/61436_75.jpg"
37
+ },
38
+ {
39
+ "height":"100",
40
+ "width":"100",
41
+ "_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/614\/61436_100.jpg"
42
+ },
43
+ {
44
+ "height":"300",
45
+ "width":"300",
46
+ "_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/614\/61436_300.jpg"
47
+ }
48
+ ]
49
+ }
50
+ }
51
+ },
52
+ {
53
+ "datecreate":"2009-08-17 17:01:11",
54
+ "id":"1833038",
55
+ "permalink":"http:\/\/vimeo.com\/groups\/worldtour\/videos\/5686991#comment_1833038",
56
+ "reply_to_comment_id":"1833038",
57
+ "type":"group_clip",
58
+ "text":"?",
59
+ "author":{
60
+ "display_name":"DVJ Million",
61
+ "id":"1248214",
62
+ "is_plus":"0",
63
+ "is_staff":"0",
64
+ "profileurl":"http:\/\/vimeo.com\/million",
65
+ "realname":"DVJ Million",
66
+ "username":"million",
67
+ "videosurl":"http:\/\/vimeo.com\/million\/videos",
68
+ "portraits":{
69
+ "portrait":[
70
+ {
71
+ "height":"30",
72
+ "width":"30",
73
+ "_content":"http:\/\/images.vimeo.com\/11\/51\/35\/115135008\/115135008_30.jpg"
74
+ },
75
+ {
76
+ "height":"75",
77
+ "width":"75",
78
+ "_content":"http:\/\/images.vimeo.com\/11\/51\/35\/115135008\/115135008_75.jpg"
79
+ },
80
+ {
81
+ "height":"100",
82
+ "width":"100",
83
+ "_content":"http:\/\/images.vimeo.com\/11\/51\/35\/115135008\/115135008_100.jpg"
84
+ },
85
+ {
86
+ "height":"300",
87
+ "width":"300",
88
+ "_content":"http:\/\/images.vimeo.com\/11\/51\/35\/115135008\/115135008_300.jpg"
89
+ }
90
+ ]
91
+ }
92
+ }
93
+ }
94
+ ]
95
+ }
96
+ }
@@ -0,0 +1,102 @@
1
+ {
2
+ "generated_in":"0.1960",
3
+ "stat":"ok",
4
+ "videos":{
5
+ "on_this_page":"10",
6
+ "page":"1",
7
+ "perpage":"25",
8
+ "total":"10",
9
+ "video":[
10
+ {
11
+ "embed_privacy":"anywhere",
12
+ "id":"6715049",
13
+ "is_hd":"1",
14
+ "owner":"266269",
15
+ "privacy":"anybody",
16
+ "title":"Vimeo Offline Party: London",
17
+ "upload_date":"2009-09-23 03:25:10"
18
+ },
19
+ {
20
+ "embed_privacy":"anywhere",
21
+ "id":"6619406",
22
+ "is_hd":"1",
23
+ "owner":"266269",
24
+ "privacy":"anybody",
25
+ "title":"Vimeo World Tour: LONDON",
26
+ "upload_date":"2009-09-16 22:56:35"
27
+ },
28
+ {
29
+ "embed_privacy":"anywhere",
30
+ "id":"6477525",
31
+ "is_hd":"1",
32
+ "owner":"266269",
33
+ "privacy":"anybody",
34
+ "title":"Vimeo Offline Party: Paris",
35
+ "upload_date":"2009-09-07 21:44:42"
36
+ },
37
+ {
38
+ "embed_privacy":"anywhere",
39
+ "id":"6380589",
40
+ "is_hd":"1",
41
+ "owner":"151382",
42
+ "privacy":"anybody",
43
+ "title":"Vimeo World Tour: PARIS",
44
+ "upload_date":"2009-09-01 10:42:07"
45
+ },
46
+ {
47
+ "embed_privacy":"anywhere",
48
+ "id":"6346021",
49
+ "is_hd":"1",
50
+ "owner":"266269",
51
+ "privacy":"anybody",
52
+ "title":"Vimeo Offline Party: Berlin",
53
+ "upload_date":"2009-08-30 14:51:57"
54
+ },
55
+ {
56
+ "embed_privacy":"anywhere",
57
+ "id":"6248704",
58
+ "is_hd":"1",
59
+ "owner":"151382",
60
+ "privacy":"anybody",
61
+ "title":"Vimeo World Tour: BERLIN",
62
+ "upload_date":"2009-08-24 11:44:44"
63
+ },
64
+ {
65
+ "embed_privacy":"anywhere",
66
+ "id":"6206822",
67
+ "is_hd":"1",
68
+ "owner":"266269",
69
+ "privacy":"anybody",
70
+ "title":"Vimeo World Tour: To Europe!",
71
+ "upload_date":"2009-08-21 06:15:38"
72
+ },
73
+ {
74
+ "embed_privacy":"anywhere",
75
+ "id":"6193064",
76
+ "is_hd":"1",
77
+ "owner":"266269",
78
+ "privacy":"anybody",
79
+ "title":"Intro Video - Vimeo Offline: Berlin",
80
+ "upload_date":"2009-08-20 09:22:03"
81
+ },
82
+ {
83
+ "embed_privacy":"anywhere",
84
+ "id":"6146343",
85
+ "is_hd":"0",
86
+ "owner":"151382",
87
+ "privacy":"anybody",
88
+ "title":"Vimeo World Tour kick off!",
89
+ "upload_date":"2009-08-17 12:34:51"
90
+ },
91
+ {
92
+ "embed_privacy":"anywhere",
93
+ "id":"5686991",
94
+ "is_hd":"0",
95
+ "owner":"1857840",
96
+ "privacy":"anybody",
97
+ "title":"Vimeo World Tour!",
98
+ "upload_date":"2009-07-20 18:42:44"
99
+ }
100
+ ]
101
+ }
102
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "generated_in":"0.4800",
3
+ "stat":"ok"
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "generated_in":"0.4800",
3
+ "stat":"ok"
4
+ }
@@ -0,0 +1,141 @@
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,\n NW1 - 8PM Screening followed by A\/V insanity by Eclectic Method. Come one,\n come all,\n and bring your friends!",
13
+ "event_start":"2009-08-25 20:00:00",
14
+ "external_url":"http:\/\/www.lock-tavern.co.uk\/index.php",
15
+ "id":"1575",
16
+ "title":"Vimeo Offline: London",
17
+ "url":"http:\/\/vimeo.com\/groups\/worldtour\/calendar\/event:1575",
18
+ "creator":{
19
+ "display_name":"Blake Whitman",
20
+ "id":"151382",
21
+ "is_plus":"1",
22
+ "is_staff":"1",
23
+ "profileurl":"http:\/\/vimeo.com\/blakewhitman",
24
+ "realname":"Blake Whitman",
25
+ "username":"blakewhitman",
26
+ "videosurl":"http:\/\/vimeo.com\/blakewhitman\/videos",
27
+ "portraits":{
28
+ "portrait":[
29
+ {
30
+ "height":"30",
31
+ "width":"30",
32
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_30.jpg"
33
+ },
34
+ {
35
+ "height":"75",
36
+ "width":"75",
37
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_75.jpg"
38
+ },
39
+ {
40
+ "height":"100",
41
+ "width":"100",
42
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_100.jpg"
43
+ },
44
+ {
45
+ "height":"300",
46
+ "width":"300",
47
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_300.jpg"
48
+ }
49
+ ]
50
+ }
51
+ }
52
+ },
53
+ {
54
+ "added_on":"2009-07-20 18:21:56",
55
+ "details":"Vimeo Offline: Paris Dune 18,\n 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 ",
56
+ "event_start":"2009-08-22 20:00:00",
57
+ "external_url":"http:\/\/www.e-dune.fr\/blog\/index.php\/General",
58
+ "id":"1574",
59
+ "title":"Vimeo Offline: Paris",
60
+ "url":"http:\/\/vimeo.com\/groups\/worldtour\/calendar\/event:1574",
61
+ "creator":{
62
+ "display_name":"Blake Whitman",
63
+ "id":"151382",
64
+ "is_plus":"1",
65
+ "is_staff":"1",
66
+ "profileurl":"http:\/\/vimeo.com\/blakewhitman",
67
+ "realname":"Blake Whitman",
68
+ "username":"blakewhitman",
69
+ "videosurl":"http:\/\/vimeo.com\/blakewhitman\/videos",
70
+ "portraits":{
71
+ "portrait":[
72
+ {
73
+ "height":"30",
74
+ "width":"30",
75
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_30.jpg"
76
+ },
77
+ {
78
+ "height":"75",
79
+ "width":"75",
80
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_75.jpg"
81
+ },
82
+ {
83
+ "height":"100",
84
+ "width":"100",
85
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_100.jpg"
86
+ },
87
+ {
88
+ "height":"300",
89
+ "width":"300",
90
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_300.jpg"
91
+ }
92
+ ]
93
+ }
94
+ }
95
+ },
96
+ {
97
+ "added_on":"2009-07-20 18:21:03",
98
+ "details":"Venue: Stattbad Gallery - Gerichtstr 65 13347 Berlin,\n Germany +49 30 86383155 - 9pm screening followed by a kick ass dance party with VJ performances by Raquel Meyers (www.raquelmeyers.com)",
99
+ "event_start":"2009-08-19 21:00:00",
100
+ "external_url":"http:\/\/www.urbanaffairs.de\/stattbad.html",
101
+ "id":"1573",
102
+ "title":"Vimeo Offline: Berlin",
103
+ "url":"http:\/\/vimeo.com\/groups\/worldtour\/calendar\/event:1573",
104
+ "creator":{
105
+ "display_name":"Blake Whitman",
106
+ "id":"151382",
107
+ "is_plus":"1",
108
+ "is_staff":"1",
109
+ "profileurl":"http:\/\/vimeo.com\/blakewhitman",
110
+ "realname":"Blake Whitman",
111
+ "username":"blakewhitman",
112
+ "videosurl":"http:\/\/vimeo.com\/blakewhitman\/videos",
113
+ "portraits":{
114
+ "portrait":[
115
+ {
116
+ "height":"30",
117
+ "width":"30",
118
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_30.jpg"
119
+ },
120
+ {
121
+ "height":"75",
122
+ "width":"75",
123
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_75.jpg"
124
+ },
125
+ {
126
+ "height":"100",
127
+ "width":"100",
128
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_100.jpg"
129
+ },
130
+ {
131
+ "height":"300",
132
+ "width":"300",
133
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_300.jpg"
134
+ }
135
+ ]
136
+ }
137
+ }
138
+ }
139
+ ]
140
+ }
141
+ }
@@ -0,0 +1,141 @@
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,\n NW1 - 8PM Screening followed by A\/V insanity by Eclectic Method. Come one,\n come all,\n and bring your friends!",
13
+ "event_start":"2009-08-25 20:00:00",
14
+ "external_url":"http:\/\/www.lock-tavern.co.uk\/index.php",
15
+ "id":"1575",
16
+ "title":"Vimeo Offline: London",
17
+ "url":"http:\/\/vimeo.com\/groups\/worldtour\/calendar\/event:1575",
18
+ "creator":{
19
+ "display_name":"Blake Whitman",
20
+ "id":"151382",
21
+ "is_plus":"1",
22
+ "is_staff":"1",
23
+ "profileurl":"http:\/\/vimeo.com\/blakewhitman",
24
+ "realname":"Blake Whitman",
25
+ "username":"blakewhitman",
26
+ "videosurl":"http:\/\/vimeo.com\/blakewhitman\/videos",
27
+ "portraits":{
28
+ "portrait":[
29
+ {
30
+ "height":"30",
31
+ "width":"30",
32
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_30.jpg"
33
+ },
34
+ {
35
+ "height":"75",
36
+ "width":"75",
37
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_75.jpg"
38
+ },
39
+ {
40
+ "height":"100",
41
+ "width":"100",
42
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_100.jpg"
43
+ },
44
+ {
45
+ "height":"300",
46
+ "width":"300",
47
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_300.jpg"
48
+ }
49
+ ]
50
+ }
51
+ }
52
+ },
53
+ {
54
+ "added_on":"2009-07-20 18:21:56",
55
+ "details":"Vimeo Offline: Paris Dune 18,\n 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 ",
56
+ "event_start":"2009-08-22 20:00:00",
57
+ "external_url":"http:\/\/www.e-dune.fr\/blog\/index.php\/General",
58
+ "id":"1574",
59
+ "title":"Vimeo Offline: Paris",
60
+ "url":"http:\/\/vimeo.com\/groups\/worldtour\/calendar\/event:1574",
61
+ "creator":{
62
+ "display_name":"Blake Whitman",
63
+ "id":"151382",
64
+ "is_plus":"1",
65
+ "is_staff":"1",
66
+ "profileurl":"http:\/\/vimeo.com\/blakewhitman",
67
+ "realname":"Blake Whitman",
68
+ "username":"blakewhitman",
69
+ "videosurl":"http:\/\/vimeo.com\/blakewhitman\/videos",
70
+ "portraits":{
71
+ "portrait":[
72
+ {
73
+ "height":"30",
74
+ "width":"30",
75
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_30.jpg"
76
+ },
77
+ {
78
+ "height":"75",
79
+ "width":"75",
80
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_75.jpg"
81
+ },
82
+ {
83
+ "height":"100",
84
+ "width":"100",
85
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_100.jpg"
86
+ },
87
+ {
88
+ "height":"300",
89
+ "width":"300",
90
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_300.jpg"
91
+ }
92
+ ]
93
+ }
94
+ }
95
+ },
96
+ {
97
+ "added_on":"2009-07-20 18:21:03",
98
+ "details":"Venue: Stattbad Gallery - Gerichtstr 65 13347 Berlin,\n Germany +49 30 86383155 - 9pm screening followed by a kick ass dance party with VJ performances by Raquel Meyers (www.raquelmeyers.com)",
99
+ "event_start":"2009-08-19 21:00:00",
100
+ "external_url":"http:\/\/www.urbanaffairs.de\/stattbad.html",
101
+ "id":"1573",
102
+ "title":"Vimeo Offline: Berlin",
103
+ "url":"http:\/\/vimeo.com\/groups\/worldtour\/calendar\/event:1573",
104
+ "creator":{
105
+ "display_name":"Blake Whitman",
106
+ "id":"151382",
107
+ "is_plus":"1",
108
+ "is_staff":"1",
109
+ "profileurl":"http:\/\/vimeo.com\/blakewhitman",
110
+ "realname":"Blake Whitman",
111
+ "username":"blakewhitman",
112
+ "videosurl":"http:\/\/vimeo.com\/blakewhitman\/videos",
113
+ "portraits":{
114
+ "portrait":[
115
+ {
116
+ "height":"30",
117
+ "width":"30",
118
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_30.jpg"
119
+ },
120
+ {
121
+ "height":"75",
122
+ "width":"75",
123
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_75.jpg"
124
+ },
125
+ {
126
+ "height":"100",
127
+ "width":"100",
128
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_100.jpg"
129
+ },
130
+ {
131
+ "height":"300",
132
+ "width":"300",
133
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_300.jpg"
134
+ }
135
+ ]
136
+ }
137
+ }
138
+ }
139
+ ]
140
+ }
141
+ }