refinerycms-vimeo-videos 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +0 -1
- data/Gemfile.lock +33 -0
- data/README.markdown +8 -0
- data/TODO +2 -1
- data/app/controllers/admin/vimeo_account_controller.rb +30 -7
- data/app/controllers/admin/vimeo_videos_controller.rb +10 -9
- data/app/models/vimeo_embed_cache.rb +6 -1
- data/app/models/vimeo_meta_cache.rb +25 -24
- data/lib/refinerycms-vimeo-videos.rb +4 -1
- data/lib/refinerycms_vimeo_videos/account.rb +31 -0
- data/lib/refinerycms_vimeo_videos/version.rb +1 -1
- data/refinerycms-vimeo-videos.gemspec +146 -4
- data/spec/controllers/admin/vimeo_account_controller_spec.rb +0 -0
- data/spec/fixtures/advanced/album/add_video.json +4 -0
- data/spec/fixtures/advanced/album/create.json +7 -0
- data/spec/fixtures/advanced/album/delete.json +4 -0
- data/spec/fixtures/advanced/album/get_all.json +111 -0
- data/spec/fixtures/advanced/album/get_videos.json +30 -0
- data/spec/fixtures/advanced/album/remove_video.json +4 -0
- data/spec/fixtures/advanced/album/set_description.json +4 -0
- data/spec/fixtures/advanced/album/set_password.json +4 -0
- data/spec/fixtures/advanced/album/set_title.json +4 -0
- data/spec/fixtures/advanced/auth/access_token.txt +1 -0
- data/spec/fixtures/advanced/auth/check_access_token.json +9 -0
- data/spec/fixtures/advanced/auth/check_token.json +13 -0
- data/spec/fixtures/advanced/auth/get_frob.json +5 -0
- data/spec/fixtures/advanced/auth/get_token.json +13 -0
- data/spec/fixtures/advanced/auth/request_token.txt +1 -0
- data/spec/fixtures/advanced/channel/add_video.json +4 -0
- data/spec/fixtures/advanced/channel/get_all.json +1357 -0
- data/spec/fixtures/advanced/channel/get_info.json +55 -0
- data/spec/fixtures/advanced/channel/get_moderators.json +45 -0
- data/spec/fixtures/advanced/channel/get_subscribers.json +44 -0
- data/spec/fixtures/advanced/channel/get_videos.json +19 -0
- data/spec/fixtures/advanced/channel/remove_video.json +4 -0
- data/spec/fixtures/advanced/channel/subscribe.json +4 -0
- data/spec/fixtures/advanced/channel/unsubscribe.json +4 -0
- data/spec/fixtures/advanced/contact/get_all.json +117 -0
- data/spec/fixtures/advanced/contact/get_mutual.json +80 -0
- data/spec/fixtures/advanced/contact/get_online.json +47 -0
- data/spec/fixtures/advanced/contact/get_who_added.json +117 -0
- data/spec/fixtures/advanced/group/add_video.json +4 -0
- data/spec/fixtures/advanced/group/get_all.json +1532 -0
- data/spec/fixtures/advanced/group/get_files.json +255 -0
- data/spec/fixtures/advanced/group/get_info.json +72 -0
- data/spec/fixtures/advanced/group/get_members.json +862 -0
- data/spec/fixtures/advanced/group/get_moderators.json +44 -0
- data/spec/fixtures/advanced/group/get_video_comments.json +96 -0
- data/spec/fixtures/advanced/group/get_videos.json +102 -0
- data/spec/fixtures/advanced/group/join.json +4 -0
- data/spec/fixtures/advanced/group/leave.json +4 -0
- data/spec/fixtures/advanced/group_events/get_month.json +141 -0
- data/spec/fixtures/advanced/group_events/get_past.json +141 -0
- data/spec/fixtures/advanced/group_events/get_upcoming.json +141 -0
- data/spec/fixtures/advanced/group_forums/get_topic_comments.json +222 -0
- data/spec/fixtures/advanced/group_forums/get_topics.json +504 -0
- data/spec/fixtures/advanced/person/add_contact.json +4 -0
- data/spec/fixtures/advanced/person/add_subscription.json +4 -0
- data/spec/fixtures/advanced/person/find_by_email.json +9 -0
- data/spec/fixtures/advanced/person/get_hd_embeds.json +8 -0
- data/spec/fixtures/advanced/person/get_info.json +20 -0
- data/spec/fixtures/advanced/person/get_portrait_urls.json +28 -0
- data/spec/fixtures/advanced/person/remove_contact.json +4 -0
- data/spec/fixtures/advanced/person/remove_subscription.json +4 -0
- data/spec/fixtures/advanced/test/echo.json +8 -0
- data/spec/fixtures/advanced/test/login.json +8 -0
- data/spec/fixtures/advanced/test/null.json +4 -0
- data/spec/fixtures/advanced/upload/get_quota.json +16 -0
- data/spec/fixtures/advanced/upload/get_ticket.json +8 -0
- data/spec/fixtures/advanced/upload/sample_iTunes.mov +0 -0
- data/spec/fixtures/advanced/video/add_cast.json +4 -0
- data/spec/fixtures/advanced/video/add_comment.json +7 -0
- data/spec/fixtures/advanced/video/add_photos.json +4 -0
- data/spec/fixtures/advanced/video/add_tags.json +4 -0
- data/spec/fixtures/advanced/video/clear_tags.json +4 -0
- data/spec/fixtures/advanced/video/delete.json +4 -0
- data/spec/fixtures/advanced/video/delete_comment.json +4 -0
- data/spec/fixtures/advanced/video/edit_comment.json +4 -0
- data/spec/fixtures/advanced/video/get_all.json +30 -0
- data/spec/fixtures/advanced/video/get_appears_in.json +10 -0
- data/spec/fixtures/advanced/video/get_by_tag.json +237 -0
- data/spec/fixtures/advanced/video/get_cast.json +42 -0
- data/spec/fixtures/advanced/video/get_comments_list.json +52 -0
- data/spec/fixtures/advanced/video/get_contacts_liked.json +48 -0
- data/spec/fixtures/advanced/video/get_contacts_uploaded.json +237 -0
- data/spec/fixtures/advanced/video/get_info.json +246 -0
- data/spec/fixtures/advanced/video/get_likes.json +32 -0
- data/spec/fixtures/advanced/video/get_subscriptions.json +237 -0
- data/spec/fixtures/advanced/video/get_thumbnail_urls.json +28 -0
- data/spec/fixtures/advanced/video/get_uploaded.json +30 -0
- data/spec/fixtures/advanced/video/remove_cast.json +4 -0
- data/spec/fixtures/advanced/video/remove_tag.json +4 -0
- data/spec/fixtures/advanced/video/search.json +237 -0
- data/spec/fixtures/advanced/video/set_description.json +4 -0
- data/spec/fixtures/advanced/video/set_like.json +4 -0
- data/spec/fixtures/advanced/video/set_privacy.json +4 -0
- data/spec/fixtures/advanced/video/set_title.json +4 -0
- data/spec/fixtures/advanced/video_embed/get_presets.json +8 -0
- data/spec/fixtures/advanced/video_embed/set_preset.json +4 -0
- data/spec/fixtures/oembed/oembed.json +5 -0
- data/spec/fixtures/simple/activity/contacts_did.json +1 -0
- data/spec/fixtures/simple/activity/everyone_did.json +1 -0
- data/spec/fixtures/simple/activity/happened_to_contacts.json +1 -0
- data/spec/fixtures/simple/activity/happened_to_user.json +1 -0
- data/spec/fixtures/simple/activity/user_did.json +1 -0
- data/spec/fixtures/simple/album/info.json +1 -0
- data/spec/fixtures/simple/album/videos.json +1 -0
- data/spec/fixtures/simple/channel/info.json +1 -0
- data/spec/fixtures/simple/channel/videos.json +1 -0
- data/spec/fixtures/simple/group/info.json +1 -0
- data/spec/fixtures/simple/group/users.json +1 -0
- data/spec/fixtures/simple/group/videos.json +1 -0
- data/spec/fixtures/simple/user/albums.json +1 -0
- data/spec/fixtures/simple/user/all_videos.json +1 -0
- data/spec/fixtures/simple/user/appears_in.json +1 -0
- data/spec/fixtures/simple/user/channels.json +1 -0
- data/spec/fixtures/simple/user/contacts_like.json +1 -0
- data/spec/fixtures/simple/user/contacts_videos.json +1 -0
- data/spec/fixtures/simple/user/groups.json +1 -0
- data/spec/fixtures/simple/user/info.json +1 -0
- data/spec/fixtures/simple/user/likes.json +1 -0
- data/spec/fixtures/simple/user/subscriptions.json +1 -0
- data/spec/fixtures/simple/user/videos.json +1 -0
- data/spec/fixtures/simple/video/info.json +1 -0
- data/spec/models/vimeo_embed_cache_spec.rb +65 -0
- data/spec/models/vimeo_meta_cache_spec.rb +24 -0
- data/spec/models/vimeo_video_spec.rb +0 -8
- data/spec/vimeo_helper.rb +54 -0
- metadata +131 -3
- data/app/controllers/admin/vimeo_base_controller.rb +0 -40
@@ -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,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
|
+
}
|