vimeo 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +3 -0
- data/CHANGELOG.rdoc +24 -0
- data/LICENSE +20 -0
- data/README.rdoc +322 -0
- data/Rakefile +68 -0
- data/VERSION.yml +4 -0
- data/lib/vimeo/advanced/album.rb +57 -0
- data/lib/vimeo/advanced/auth.rb +22 -0
- data/lib/vimeo/advanced/base.rb +105 -0
- data/lib/vimeo/advanced/channel.rb +58 -0
- data/lib/vimeo/advanced/contact.rb +31 -0
- data/lib/vimeo/advanced/group.rb +68 -0
- data/lib/vimeo/advanced/group_events.rb +25 -0
- data/lib/vimeo/advanced/group_forums.rb +19 -0
- data/lib/vimeo/advanced/person.rb +48 -0
- data/lib/vimeo/advanced/test.rb +36 -0
- data/lib/vimeo/advanced/upload.rb +62 -0
- data/lib/vimeo/advanced/video.rb +131 -0
- data/lib/vimeo/advanced/video_embed.rb +19 -0
- data/lib/vimeo/advanced.rb +20 -0
- data/lib/vimeo/simple/activity.rb +42 -0
- data/lib/vimeo/simple/album.rb +21 -0
- data/lib/vimeo/simple/base.rb +10 -0
- data/lib/vimeo/simple/channel.rb +21 -0
- data/lib/vimeo/simple/group.rb +28 -0
- data/lib/vimeo/simple/user.rb +84 -0
- data/lib/vimeo/simple/video.rb +14 -0
- data/lib/vimeo/simple.rb +14 -0
- data/lib/vimeo.rb +10 -0
- data/test/fixtures/advanced/album/add_video.json +4 -0
- data/test/fixtures/advanced/album/create.json +7 -0
- data/test/fixtures/advanced/album/delete.json +4 -0
- data/test/fixtures/advanced/album/get_all.json +111 -0
- data/test/fixtures/advanced/album/get_videos.json +30 -0
- data/test/fixtures/advanced/album/remove_video.json +4 -0
- data/test/fixtures/advanced/album/set_description.json +4 -0
- data/test/fixtures/advanced/album/set_password.json +4 -0
- data/test/fixtures/advanced/album/set_title.json +4 -0
- data/test/fixtures/advanced/auth/check_token.json +13 -0
- data/test/fixtures/advanced/auth/get_frob.json +5 -0
- data/test/fixtures/advanced/auth/get_token.json +13 -0
- data/test/fixtures/advanced/channel/add_video.json +4 -0
- data/test/fixtures/advanced/channel/get_all.json +1395 -0
- data/test/fixtures/advanced/channel/get_info.json +55 -0
- data/test/fixtures/advanced/channel/get_moderators.json +45 -0
- data/test/fixtures/advanced/channel/get_subscribers.json +44 -0
- data/test/fixtures/advanced/channel/get_videos.json +19 -0
- data/test/fixtures/advanced/channel/remove_video.json +4 -0
- data/test/fixtures/advanced/channel/subscribe.json +4 -0
- data/test/fixtures/advanced/channel/unsubscribe.json +4 -0
- data/test/fixtures/advanced/contact/get_all.json +117 -0
- data/test/fixtures/advanced/contact/get_mutual.json +80 -0
- data/test/fixtures/advanced/contact/get_online.json +47 -0
- data/test/fixtures/advanced/contact/get_who_added.json +117 -0
- data/test/fixtures/advanced/group/add_video.json +4 -0
- data/test/fixtures/advanced/group/get_all.json +1556 -0
- data/test/fixtures/advanced/group/get_files.json +255 -0
- data/test/fixtures/advanced/group/get_info.json +73 -0
- data/test/fixtures/advanced/group/get_members.json +862 -0
- data/test/fixtures/advanced/group/get_moderators.json +44 -0
- data/test/fixtures/advanced/group/get_video_comments.json +96 -0
- data/test/fixtures/advanced/group/get_videos.json +102 -0
- data/test/fixtures/advanced/group/join.json +4 -0
- data/test/fixtures/advanced/group/leave.json +4 -0
- data/test/fixtures/advanced/group_events/get_month.json +146 -0
- data/test/fixtures/advanced/group_events/get_past.json +146 -0
- data/test/fixtures/advanced/group_events/get_upcoming.json +146 -0
- data/test/fixtures/advanced/group_forums/get_topic_comments.json +224 -0
- data/test/fixtures/advanced/group_forums/get_topics.json +504 -0
- data/test/fixtures/advanced/person/add_contact.json +4 -0
- data/test/fixtures/advanced/person/add_subscription.json +4 -0
- data/test/fixtures/advanced/person/find_by_email.json +9 -0
- data/test/fixtures/advanced/person/get_hd_embeds.json +8 -0
- data/test/fixtures/advanced/person/get_info.json +21 -0
- data/test/fixtures/advanced/person/get_portrait_urls.json +28 -0
- data/test/fixtures/advanced/person/remove_contact.json +4 -0
- data/test/fixtures/advanced/person/remove_subscription.json +4 -0
- data/test/fixtures/advanced/test/echo.json +8 -0
- data/test/fixtures/advanced/test/login.json +8 -0
- data/test/fixtures/advanced/test/null.json +4 -0
- data/test/fixtures/advanced/upload/confirm.json +9 -0
- data/test/fixtures/advanced/upload/get_quota.json +16 -0
- data/test/fixtures/advanced/upload/get_ticket.json +8 -0
- data/test/fixtures/advanced/upload/manifest_to_upload.json +6 -0
- data/test/fixtures/advanced/upload/sample_iTunes.mov +0 -0
- data/test/fixtures/advanced/upload/verify_manifest.json +11 -0
- data/test/fixtures/advanced/video/add_cast.json +4 -0
- data/test/fixtures/advanced/video/add_comment.json +7 -0
- data/test/fixtures/advanced/video/add_photos.json +4 -0
- data/test/fixtures/advanced/video/add_tags.json +4 -0
- data/test/fixtures/advanced/video/clear_tags.json +4 -0
- data/test/fixtures/advanced/video/delete.json +4 -0
- data/test/fixtures/advanced/video/delete_comment.json +4 -0
- data/test/fixtures/advanced/video/edit_comment.json +4 -0
- data/test/fixtures/advanced/video/get_all.json +30 -0
- data/test/fixtures/advanced/video/get_appears_in.json +10 -0
- data/test/fixtures/advanced/video/get_by_tag.json +239 -0
- data/test/fixtures/advanced/video/get_cast.json +42 -0
- data/test/fixtures/advanced/video/get_comments_list.json +52 -0
- data/test/fixtures/advanced/video/get_contacts_liked.json +48 -0
- data/test/fixtures/advanced/video/get_contacts_uploaded.json +237 -0
- data/test/fixtures/advanced/video/get_info.json +246 -0
- data/test/fixtures/advanced/video/get_likes.json +32 -0
- data/test/fixtures/advanced/video/get_subscriptions.json +241 -0
- data/test/fixtures/advanced/video/get_thumbnail_urls.json +28 -0
- data/test/fixtures/advanced/video/get_uploaded.json +30 -0
- data/test/fixtures/advanced/video/remove_cast.json +4 -0
- data/test/fixtures/advanced/video/remove_tag.json +4 -0
- data/test/fixtures/advanced/video/search.json +238 -0
- data/test/fixtures/advanced/video/set_description.json +4 -0
- data/test/fixtures/advanced/video/set_like.json +4 -0
- data/test/fixtures/advanced/video/set_privacy.json +4 -0
- data/test/fixtures/advanced/video/set_title.json +4 -0
- data/test/fixtures/advanced/video_embed/get_presets.json +8 -0
- data/test/fixtures/advanced/video_embed/set_preset.json +4 -0
- data/test/fixtures/simple/activity/contacts_did.json +1 -0
- data/test/fixtures/simple/activity/everyone_did.json +1 -0
- data/test/fixtures/simple/activity/happened_to_contacts.json +1 -0
- data/test/fixtures/simple/activity/happened_to_user.json +1 -0
- data/test/fixtures/simple/activity/user_did.json +1 -0
- data/test/fixtures/simple/album/info.json +1 -0
- data/test/fixtures/simple/album/videos.json +1 -0
- data/test/fixtures/simple/channel/info.json +1 -0
- data/test/fixtures/simple/channel/videos.json +1 -0
- data/test/fixtures/simple/group/info.json +1 -0
- data/test/fixtures/simple/group/users.json +1 -0
- data/test/fixtures/simple/group/videos.json +1 -0
- data/test/fixtures/simple/user/albums.json +1 -0
- data/test/fixtures/simple/user/all_videos.json +1 -0
- data/test/fixtures/simple/user/appears_in.json +1 -0
- data/test/fixtures/simple/user/channels.json +1 -0
- data/test/fixtures/simple/user/contacts_like.json +1 -0
- data/test/fixtures/simple/user/contacts_videos.json +1 -0
- data/test/fixtures/simple/user/groups.json +1 -0
- data/test/fixtures/simple/user/info.json +1 -0
- data/test/fixtures/simple/user/likes.json +1 -0
- data/test/fixtures/simple/user/subscriptions.json +1 -0
- data/test/fixtures/simple/user/videos.json +1 -0
- data/test/fixtures/simple/video/info.json +1 -0
- data/test/test_helper.rb +50 -0
- data/test/vimeo/advanced/album_test.rb +88 -0
- data/test/vimeo/advanced/auth_test.rb +37 -0
- data/test/vimeo/advanced/base_test.rb +24 -0
- data/test/vimeo/advanced/channels_test.rb +79 -0
- data/test/vimeo/advanced/contacts_test.rb +40 -0
- data/test/vimeo/advanced/group_events_test.rb +33 -0
- data/test/vimeo/advanced/group_forums_test.rb +26 -0
- data/test/vimeo/advanced/groups_test.rb +82 -0
- data/test/vimeo/advanced/person_test.rb +68 -0
- data/test/vimeo/advanced/test_test.rb +33 -0
- data/test/vimeo/advanced/upload_test.rb +50 -0
- data/test/vimeo/advanced/videos_embed_test.rb +26 -0
- data/test/vimeo/advanced/videos_test.rb +203 -0
- data/test/vimeo/advanced_test.rb +0 -0
- data/test/vimeo/simple/activity_test.rb +60 -0
- data/test/vimeo/simple/album_test.rb +31 -0
- data/test/vimeo/simple/channel_test.rb +31 -0
- data/test/vimeo/simple/group_test.rb +41 -0
- data/test/vimeo/simple/user_test.rb +112 -0
- data/test/vimeo/simple/video_test.rb +22 -0
- data/test/vimeo/simple_test.rb +0 -0
- data/test/vimeo_test.rb +0 -0
- data/vimeo.gemspec +244 -0
- metadata +303 -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,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,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
|
+
}
|