picasa 0.5.4 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +2 -0
- data/.travis.yml +4 -9
- data/Gemfile +4 -4
- data/README.md +4 -12
- data/extra/Thorfile +0 -3
- data/lib/picasa.rb +1 -8
- data/lib/picasa/api/album.rb +11 -11
- data/lib/picasa/api/base.rb +0 -3
- data/lib/picasa/api/comment.rb +6 -8
- data/lib/picasa/api/photo.rb +9 -9
- data/lib/picasa/api/tag.rb +6 -8
- data/lib/picasa/client.rb +2 -2
- data/lib/picasa/connection.rb +14 -51
- data/lib/picasa/exceptions.rb +1 -0
- data/lib/picasa/file.rb +8 -0
- data/lib/picasa/http.rb +28 -0
- data/lib/picasa/presenter/album.rb +15 -15
- data/lib/picasa/presenter/album_list.rb +10 -10
- data/lib/picasa/presenter/comment.rb +6 -6
- data/lib/picasa/presenter/comment_list.rb +10 -10
- data/lib/picasa/presenter/media.rb +5 -5
- data/lib/picasa/presenter/photo.rb +15 -15
- data/lib/picasa/presenter/tag.rb +3 -3
- data/lib/picasa/presenter/tag_list.rb +10 -10
- data/lib/picasa/utils.rb +11 -13
- data/lib/picasa/version.rb +1 -1
- data/picasa.gemspec +2 -1
- data/test/api/album_test.rb +163 -20
- data/test/api/comment_test.rb +95 -10
- data/test/api/photo_test.rb +27 -11
- data/test/api/tag_test.rb +84 -13
- data/test/cassettes/album-404.yml +52 -0
- data/test/cassettes/album-create.yml +107 -0
- data/test/cassettes/album-destroy.yml +55 -0
- data/test/cassettes/album-list.yml +85 -0
- data/test/cassettes/album-show.yml +123 -0
- data/test/cassettes/auth-failed.yml +50 -0
- data/test/cassettes/auth-success.yml +64 -0
- data/test/cassettes/comment-400.yml +56 -0
- data/test/cassettes/comment-create.yml +88 -0
- data/test/cassettes/comment-destroy.yml +53 -0
- data/test/cassettes/comment-list.yml +87 -0
- data/test/cassettes/photo-412.yml +58 -0
- data/test/cassettes/photo-create.yml +1908 -0
- data/test/cassettes/photo-destroy.yml +55 -0
- data/test/cassettes/tag-create.yml +85 -0
- data/test/cassettes/tag-destroy.yml +53 -0
- data/test/cassettes/tag-list.yml +79 -0
- data/test/client_test.rb +10 -10
- data/test/connection_test.rb +0 -35
- data/test/helper.rb +21 -7
- data/test/utils_test.rb +0 -6
- metadata +37 -40
- data/test/fixtures/album/album-create.txt +0 -21
- data/test/fixtures/album/album-list-with-tag.txt +0 -105
- data/test/fixtures/album/album-list.txt +0 -105
- data/test/fixtures/album/album-show-with-max-results.txt +0 -131
- data/test/fixtures/album/album-show-with-tag-and-many-photos.txt +0 -156
- data/test/fixtures/album/album-show-with-tag-and-one-photo.txt +0 -105
- data/test/fixtures/album/album-show.txt +0 -169
- data/test/fixtures/auth/success.txt +0 -14
- data/test/fixtures/comment/comment-list.txt +0 -65
- data/test/fixtures/exceptions/forbidden.txt +0 -12
- data/test/fixtures/exceptions/not_found.txt +0 -14
- data/test/fixtures/exceptions/precondition_failed.txt +0 -14
- data/test/fixtures/json.txt +0 -435
- data/test/fixtures/photo/photo-created.txt +0 -21
- data/test/fixtures/photo/photo-list-all-with-q.txt +0 -556
- data/test/fixtures/photo/photo-list-all.txt +0 -623
- data/test/fixtures/photo/photo-list-user.txt +0 -388
- data/test/fixtures/presenters/album_list.xml +0 -88
- data/test/fixtures/presenters/album_show.xml +0 -152
- data/test/fixtures/presenters/album_show_with_one_photo.xml +0 -88
- data/test/fixtures/presenters/comment_list.xml +0 -48
- data/test/fixtures/presenters/tag_list.xml +0 -51
- data/test/fixtures/tag/tag-list.txt +0 -68
- data/test/presenter/album_list_test.rb +0 -67
- data/test/presenter/album_test.rb +0 -189
- data/test/presenter/author_test.rb +0 -17
- data/test/presenter/base_test.rb +0 -50
- data/test/presenter/comment_list_test.rb +0 -67
- data/test/presenter/comment_test.rb +0 -56
- data/test/presenter/content_test.rb +0 -18
- data/test/presenter/link_test.rb +0 -21
- data/test/presenter/media_test.rb +0 -29
- data/test/presenter/photo_test.rb +0 -90
- data/test/presenter/tag_list_test.rb +0 -67
- data/test/presenter/tag_test.rb +0 -48
- data/test/presenter/thumbnail_test.rb +0 -24
@@ -1,21 +0,0 @@
|
|
1
|
-
HTTP/1.1 201 Created
|
2
|
-
Gdata-version: 2.0
|
3
|
-
Content-length: 2988
|
4
|
-
Via: HTTP/1.1 GWA
|
5
|
-
Content-location: https://picasaweb.google.com/data/entry/api/user/106136347770555028022/albumid/5783214424453412737
|
6
|
-
X-content-type-options: nosniff
|
7
|
-
Etag: "YD0qeyI."
|
8
|
-
Set-cookie: _rtok=v2BIV10GEHe2; Path=/; Secure; HttpOnly, S=photos_html=TyVjxRd5Em09qzhPl6Kjsw; Domain=.google.com; Path=/; Secure; HttpOnly
|
9
|
-
Expires: Sat, 01 Sep 2012 14:25:36 GMT
|
10
|
-
Vary: Accept, X-GData-Authorization, GData-Version
|
11
|
-
X-google-cache-control: remote-fetch
|
12
|
-
Server: GSE
|
13
|
-
X-xss-protection: 1; mode=block
|
14
|
-
Location: https://picasaweb.google.com/data/entry/api/user/106136347770555028022/albumid/5783214424453412737
|
15
|
-
Cache-control: private, max-age=0, must-revalidate, no-transform
|
16
|
-
Date: Sat, 01 Sep 2012 14:25:36 GMT
|
17
|
-
X-frame-options: SAMEORIGIN
|
18
|
-
Content-type: application/atom+xml; charset=UTF-8; type=entry
|
19
|
-
-content-encoding: gzip
|
20
|
-
|
21
|
-
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' xmlns:gml='http://www.opengis.net/gml' xmlns:georss='http://www.georss.org/georss' gd:etag='"YD0qeyI."'><id>https://picasaweb.google.com/data/entry/user/106136347770555028022/albumid/5783214424453412737</id><published>1970-01-16T14:01:49.000Z</published><updated>2012-09-01T14:25:36.447Z</updated><app:edited>2012-09-01T14:25:36.447Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/><title>Trip To Poland</title><summary>This was the recent trip I took to Poland.</summary><rights>protected</rights><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/106136347770555028022/albumid/5783214424453412737'/><link rel='alternate' type='text/html' href='https://picasaweb.google.com/106136347770555028022/TripToPoland'/><link rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/106136347770555028022/albumid/5783214424453412737'/><link rel='edit' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/106136347770555028022/albumid/5783214424453412737'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/106136347770555028022/albumid/5783214424453412737/acl'/><author><name>Wojciech Wnętrzak</name><uri>https://picasaweb.google.com/106136347770555028022</uri></author><gphoto:id>5783214424453412737</gphoto:id><gphoto:name>TripToPoland</gphoto:name><gphoto:location>Poland</gphoto:location><gphoto:access>protected</gphoto:access><gphoto:timestamp>1346509000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>106136347770555028022</gphoto:user><gphoto:nickname>Wojciech Wnętrzak</gphoto:nickname><media:group><media:content url='https://lh3.googleusercontent.com/-8od2ksbQgT0/UEIa4NV194E/AAAAAAAAAqI/XIYGNrflH9A/TripToPoland.jpg' type='image/jpeg' medium='image'/><media:credit>Wojciech Wnętrzak</media:credit><media:description type='plain'>This was the recent trip I took to Poland.</media:description><media:keywords/><media:thumbnail url='https://lh3.googleusercontent.com/-8od2ksbQgT0/UEIa4NV194E/AAAAAAAAAqI/XIYGNrflH9A/s160-c/TripToPoland.jpg' height='160' width='160'/><media:title type='plain'>Trip To Poland</media:title></media:group><georss:where><gml:Envelope><gml:lowerCorner>49.0025444 14.1336215</gml:lowerCorner><gml:upperCorner>54.8363315 24.1566505</gml:upperCorner></gml:Envelope><gml:Point><gml:pos>51.919438 19.145136</gml:pos></gml:Point></georss:where></entry>
|
@@ -1,105 +0,0 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Expires: Mon, 05 Dec 2011 19:18:21 GMT
|
3
|
-
Date: Mon, 05 Dec 2011 19:18:21 GMT
|
4
|
-
Cache-Control: private, max-age=0, must-revalidate, no-transform
|
5
|
-
Set-Cookie: _rtok=JfOWbv9ilfmB; Path=/; Secure; HttpOnly
|
6
|
-
Set-Cookie: S=photos_html=gA8kpkA3OJJn4_tnnq1H7w; Domain=.google.com; Path=/; Secure; HttpOnly
|
7
|
-
Content-Type: application/atom+xml; charset=UTF-8; type=feed
|
8
|
-
Vary: Accept, X-GData-Authorization, GData-Version, Cookie
|
9
|
-
GData-Version: 2.0
|
10
|
-
ETag: W/"CEIFQngzeSp7ImA9WhRQEUw."
|
11
|
-
Last-Modified: Mon, 05 Dec 2011 19:15:13 GMT
|
12
|
-
X-Content-Type-Options: nosniff
|
13
|
-
X-Frame-Options: SAMEORIGIN
|
14
|
-
X-XSS-Protection: 1; mode=block
|
15
|
-
Server: GSE
|
16
|
-
Transfer-Encoding: chunked
|
17
|
-
|
18
|
-
<?xml version='1.0' encoding='UTF-8'?>
|
19
|
-
<feed xmlns='http://www.w3.org/2005/Atom' xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/"CEIFQngzeSp7ImA9WhRQEUw."'>
|
20
|
-
<id>https://picasaweb.google.com/data/feed/user/106136347770555028022</id>
|
21
|
-
<updated>2011-12-05T19:15:13.681Z</updated>
|
22
|
-
<category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#user'/>
|
23
|
-
<title>106136347770555028022</title>
|
24
|
-
<subtitle/>
|
25
|
-
<icon>https://lh3.googleusercontent.com/-6ezHc54U8x0/AAAAAAAAAAI/AAAAAAAAAAA/PBuxm7Ehn6E/s64-c/106136347770555028022.jpg</icon>
|
26
|
-
<link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/106136347770555028022'/>
|
27
|
-
<link rel='alternate' type='text/html' href='https://picasaweb.google.com/106136347770555028022'/>
|
28
|
-
<link rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' href='https://picasaweb.google.com/s/c/bin/slideshow.swf?host=picasaweb.google.com&RGB=0x000000&feed=https%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2F106136347770555028022%3Falt%3Drss'/>
|
29
|
-
<link rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/106136347770555028022?start-index=1&max-results=1000&tag=ziemniaki'/>
|
30
|
-
<author>
|
31
|
-
<name>Wojciech Wnętrzak</name>
|
32
|
-
<uri>https://picasaweb.google.com/106136347770555028022</uri>
|
33
|
-
</author>
|
34
|
-
<generator version='1.00' uri='http://picasaweb.google.com/'>Picasaweb</generator>
|
35
|
-
<openSearch:totalResults>2</openSearch:totalResults>
|
36
|
-
<openSearch:startIndex>1</openSearch:startIndex>
|
37
|
-
<openSearch:itemsPerPage>1000</openSearch:itemsPerPage>
|
38
|
-
<gphoto:user>106136347770555028022</gphoto:user>
|
39
|
-
<gphoto:nickname>Wojciech Wnętrzak</gphoto:nickname>
|
40
|
-
<gphoto:thumbnail>https://lh3.googleusercontent.com/-6ezHc54U8x0/AAAAAAAAAAI/AAAAAAAAAAA/PBuxm7Ehn6E/s64-c/106136347770555028022.jpg</gphoto:thumbnail>
|
41
|
-
<entry gd:etag='"YDsqeyI."'>
|
42
|
-
<id>https://picasaweb.google.com/data/entry/user/106136347770555028022/albumid/5243667126168669553</id>
|
43
|
-
<published>2008-09-08T07:00:00.000Z</published>
|
44
|
-
<updated>2011-12-05T19:12:04.255Z</updated>
|
45
|
-
<category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/>
|
46
|
-
<title>test2</title>
|
47
|
-
<summary/>
|
48
|
-
<rights>public</rights>
|
49
|
-
<link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/106136347770555028022/albumid/5243667126168669553'/>
|
50
|
-
<link rel='alternate' type='text/html' href='https://picasaweb.google.com/106136347770555028022/Test2'/>
|
51
|
-
<link rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/106136347770555028022/albumid/5243667126168669553'/>
|
52
|
-
<author>
|
53
|
-
<name>Wojciech Wnętrzak</name>
|
54
|
-
<uri>https://picasaweb.google.com/106136347770555028022</uri>
|
55
|
-
</author>
|
56
|
-
<gphoto:id>5243667126168669553</gphoto:id>
|
57
|
-
<gphoto:name>Test2</gphoto:name>
|
58
|
-
<gphoto:location/>
|
59
|
-
<gphoto:access>public</gphoto:access>
|
60
|
-
<gphoto:timestamp>1220857200000</gphoto:timestamp>
|
61
|
-
<gphoto:numphotos>3</gphoto:numphotos>
|
62
|
-
<gphoto:user>106136347770555028022</gphoto:user>
|
63
|
-
<gphoto:nickname>Wojciech Wnętrzak</gphoto:nickname>
|
64
|
-
<media:group>
|
65
|
-
<media:content url='https://lh6.googleusercontent.com/-u_2FJXbbliU/SMU_eBetTXE/AAAAAAAAAkU/3XThNVnAM-4/Test2.jpg' type='image/jpeg' medium='image'/>
|
66
|
-
<media:credit>Wojciech Wnętrzak</media:credit>
|
67
|
-
<media:description type='plain'/>
|
68
|
-
<media:keywords/>
|
69
|
-
<media:thumbnail url='https://lh6.googleusercontent.com/-u_2FJXbbliU/SMU_eBetTXE/AAAAAAAAAkU/3XThNVnAM-4/s160-c/Test2.jpg' height='160' width='160'/>
|
70
|
-
<media:title type='plain'>test2</media:title>
|
71
|
-
</media:group>
|
72
|
-
</entry>
|
73
|
-
<entry gd:etag='"YDUqeyI."'>
|
74
|
-
<id>https://picasaweb.google.com/data/entry/user/106136347770555028022/albumid/5239555770355467953</id>
|
75
|
-
<published>2008-08-28T07:00:00.000Z</published>
|
76
|
-
<updated>2011-07-30T07:16:41.444Z</updated>
|
77
|
-
<category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/>
|
78
|
-
<title>test</title>
|
79
|
-
<summary>Opis albumu</summary>
|
80
|
-
<rights>public</rights>
|
81
|
-
<link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/106136347770555028022/albumid/5239555770355467953'/>
|
82
|
-
<link rel='alternate' type='text/html' href='https://picasaweb.google.com/106136347770555028022/Test'/>
|
83
|
-
<link rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/106136347770555028022/albumid/5239555770355467953'/>
|
84
|
-
<author>
|
85
|
-
<name>Wojciech Wnętrzak</name>
|
86
|
-
<uri>https://picasaweb.google.com/106136347770555028022</uri>
|
87
|
-
</author>
|
88
|
-
<gphoto:id>5239555770355467953</gphoto:id>
|
89
|
-
<gphoto:name>Test</gphoto:name>
|
90
|
-
<gphoto:location>gdzieś</gphoto:location>
|
91
|
-
<gphoto:access>public</gphoto:access>
|
92
|
-
<gphoto:timestamp>1219906800000</gphoto:timestamp>
|
93
|
-
<gphoto:numphotos>6</gphoto:numphotos>
|
94
|
-
<gphoto:user>106136347770555028022</gphoto:user>
|
95
|
-
<gphoto:nickname>Wojciech Wnętrzak</gphoto:nickname>
|
96
|
-
<media:group>
|
97
|
-
<media:content url='https://lh6.googleusercontent.com/-ZqXRf3HicvI/SLakNnjixrE/AAAAAAAAAkc/3EAZ0eF3-CQ/Test.jpg' type='image/jpeg' medium='image'/>
|
98
|
-
<media:credit>Wojciech Wnętrzak</media:credit>
|
99
|
-
<media:description type='plain'>Opis albumu</media:description>
|
100
|
-
<media:keywords/>
|
101
|
-
<media:thumbnail url='https://lh6.googleusercontent.com/-ZqXRf3HicvI/SLakNnjixrE/AAAAAAAAAkc/3EAZ0eF3-CQ/s160-c/Test.jpg' height='160' width='160'/>
|
102
|
-
<media:title type='plain'>test</media:title>
|
103
|
-
</media:group>
|
104
|
-
</entry>
|
105
|
-
</feed>
|
@@ -1,105 +0,0 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Expires: Mon, 05 Dec 2011 19:07:36 GMT
|
3
|
-
Date: Mon, 05 Dec 2011 19:07:36 GMT
|
4
|
-
Cache-Control: private, max-age=0, must-revalidate, no-transform
|
5
|
-
Set-Cookie: _rtok=mFxareK2vMyv; Path=/; Secure; HttpOnly
|
6
|
-
Set-Cookie: S=photos_html=ntlkjH91dEk6kCZyF-Yg5g; Domain=.google.com; Path=/; Secure; HttpOnly
|
7
|
-
Content-Type: application/atom+xml; charset=UTF-8; type=feed
|
8
|
-
Vary: Accept, X-GData-Authorization, GData-Version, Cookie
|
9
|
-
GData-Version: 2.0
|
10
|
-
ETag: W/"Ak8BQnczfCp7ImA9WhRSFkU."
|
11
|
-
Last-Modified: Sat, 19 Nov 2011 07:47:33 GMT
|
12
|
-
X-Content-Type-Options: nosniff
|
13
|
-
X-Frame-Options: SAMEORIGIN
|
14
|
-
X-XSS-Protection: 1; mode=block
|
15
|
-
Server: GSE
|
16
|
-
Transfer-Encoding: chunked
|
17
|
-
|
18
|
-
<?xml version='1.0' encoding='UTF-8'?>
|
19
|
-
<feed xmlns='http://www.w3.org/2005/Atom' xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/"Ak8BQnczfCp7ImA9WhRSFkU."'>
|
20
|
-
<id>https://picasaweb.google.com/data/feed/user/106136347770555028022</id>
|
21
|
-
<updated>2011-11-19T07:47:33.984Z</updated>
|
22
|
-
<category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#user'/>
|
23
|
-
<title>106136347770555028022</title>
|
24
|
-
<subtitle/>
|
25
|
-
<icon>https://lh3.googleusercontent.com/-6ezHc54U8x0/AAAAAAAAAAI/AAAAAAAAAAA/PBuxm7Ehn6E/s64-c/106136347770555028022.jpg</icon>
|
26
|
-
<link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/106136347770555028022'/>
|
27
|
-
<link rel='alternate' type='text/html' href='https://picasaweb.google.com/106136347770555028022'/>
|
28
|
-
<link rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' href='https://picasaweb.google.com/s/c/bin/slideshow.swf?host=picasaweb.google.com&RGB=0x000000&feed=https%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2F106136347770555028022%3Falt%3Drss'/>
|
29
|
-
<link rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/106136347770555028022?start-index=1&max-results=1000'/>
|
30
|
-
<author>
|
31
|
-
<name>Wojciech Wnętrzak</name>
|
32
|
-
<uri>https://picasaweb.google.com/106136347770555028022</uri>
|
33
|
-
</author>
|
34
|
-
<generator version='1.00' uri='http://picasaweb.google.com/'>Picasaweb</generator>
|
35
|
-
<openSearch:totalResults>2</openSearch:totalResults>
|
36
|
-
<openSearch:startIndex>1</openSearch:startIndex>
|
37
|
-
<openSearch:itemsPerPage>1000</openSearch:itemsPerPage>
|
38
|
-
<gphoto:user>106136347770555028022</gphoto:user>
|
39
|
-
<gphoto:nickname>Wojciech Wnętrzak</gphoto:nickname>
|
40
|
-
<gphoto:thumbnail>https://lh3.googleusercontent.com/-6ezHc54U8x0/AAAAAAAAAAI/AAAAAAAAAAA/PBuxm7Ehn6E/s64-c/106136347770555028022.jpg</gphoto:thumbnail>
|
41
|
-
<entry gd:etag='"YDkqeyI."'>
|
42
|
-
<id>https://picasaweb.google.com/data/entry/user/106136347770555028022/albumid/5243667126168669553</id>
|
43
|
-
<published>2008-09-08T07:00:00.000Z</published>
|
44
|
-
<updated>2011-07-28T18:26:00.345Z</updated>
|
45
|
-
<category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/>
|
46
|
-
<title>test2</title>
|
47
|
-
<summary/>
|
48
|
-
<rights>public</rights>
|
49
|
-
<link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/106136347770555028022/albumid/5243667126168669553'/>
|
50
|
-
<link rel='alternate' type='text/html' href='https://picasaweb.google.com/106136347770555028022/Test2'/>
|
51
|
-
<link rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/106136347770555028022/albumid/5243667126168669553'/>
|
52
|
-
<author>
|
53
|
-
<name>Wojciech Wnętrzak</name>
|
54
|
-
<uri>https://picasaweb.google.com/106136347770555028022</uri>
|
55
|
-
</author>
|
56
|
-
<gphoto:id>5243667126168669553</gphoto:id>
|
57
|
-
<gphoto:name>Test2</gphoto:name>
|
58
|
-
<gphoto:location/>
|
59
|
-
<gphoto:access>public</gphoto:access>
|
60
|
-
<gphoto:timestamp>1220857200000</gphoto:timestamp>
|
61
|
-
<gphoto:numphotos>3</gphoto:numphotos>
|
62
|
-
<gphoto:user>106136347770555028022</gphoto:user>
|
63
|
-
<gphoto:nickname>Wojciech Wnętrzak</gphoto:nickname>
|
64
|
-
<media:group>
|
65
|
-
<media:content url='https://lh6.googleusercontent.com/-u_2FJXbbliU/SMU_eBetTXE/AAAAAAAAAkU/3XThNVnAM-4/Test2.jpg' type='image/jpeg' medium='image'/>
|
66
|
-
<media:credit>Wojciech Wnętrzak</media:credit>
|
67
|
-
<media:description type='plain'/>
|
68
|
-
<media:keywords/>
|
69
|
-
<media:thumbnail url='https://lh6.googleusercontent.com/-u_2FJXbbliU/SMU_eBetTXE/AAAAAAAAAkU/3XThNVnAM-4/s160-c/Test2.jpg' height='160' width='160'/>
|
70
|
-
<media:title type='plain'>test2</media:title>
|
71
|
-
</media:group>
|
72
|
-
</entry>
|
73
|
-
<entry gd:etag='"YDUqeyI."'>
|
74
|
-
<id>https://picasaweb.google.com/data/entry/user/106136347770555028022/albumid/5239555770355467953</id>
|
75
|
-
<published>2008-08-28T07:00:00.000Z</published>
|
76
|
-
<updated>2011-07-30T07:16:41.444Z</updated>
|
77
|
-
<category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/>
|
78
|
-
<title>test</title>
|
79
|
-
<summary>Opis albumu</summary>
|
80
|
-
<rights>public</rights>
|
81
|
-
<link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/106136347770555028022/albumid/5239555770355467953'/>
|
82
|
-
<link rel='alternate' type='text/html' href='https://picasaweb.google.com/106136347770555028022/Test'/>
|
83
|
-
<link rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/106136347770555028022/albumid/5239555770355467953'/>
|
84
|
-
<author>
|
85
|
-
<name>Wojciech Wnętrzak</name>
|
86
|
-
<uri>https://picasaweb.google.com/106136347770555028022</uri>
|
87
|
-
</author>
|
88
|
-
<gphoto:id>5239555770355467953</gphoto:id>
|
89
|
-
<gphoto:name>Test</gphoto:name>
|
90
|
-
<gphoto:location>gdzieś</gphoto:location>
|
91
|
-
<gphoto:access>public</gphoto:access>
|
92
|
-
<gphoto:timestamp>1219906800000</gphoto:timestamp>
|
93
|
-
<gphoto:numphotos>6</gphoto:numphotos>
|
94
|
-
<gphoto:user>106136347770555028022</gphoto:user>
|
95
|
-
<gphoto:nickname>Wojciech Wnętrzak</gphoto:nickname>
|
96
|
-
<media:group>
|
97
|
-
<media:content url='https://lh6.googleusercontent.com/-ZqXRf3HicvI/SLakNnjixrE/AAAAAAAAAkc/3EAZ0eF3-CQ/Test.jpg' type='image/jpeg' medium='image'/>
|
98
|
-
<media:credit>Wojciech Wnętrzak</media:credit>
|
99
|
-
<media:description type='plain'>Opis albumu</media:description>
|
100
|
-
<media:keywords/>
|
101
|
-
<media:thumbnail url='https://lh6.googleusercontent.com/-ZqXRf3HicvI/SLakNnjixrE/AAAAAAAAAkc/3EAZ0eF3-CQ/s160-c/Test.jpg' height='160' width='160'/>
|
102
|
-
<media:title type='plain'>test</media:title>
|
103
|
-
</media:group>
|
104
|
-
</entry>
|
105
|
-
</feed>
|
@@ -1,131 +0,0 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Expires: Mon, 05 Dec 2011 20:20:06 GMT
|
3
|
-
Date: Mon, 05 Dec 2011 20:20:06 GMT
|
4
|
-
Cache-Control: private, max-age=0, must-revalidate, no-transform
|
5
|
-
Set-Cookie: _rtok=Ztl7KBskuIuk; Path=/; Secure; HttpOnly
|
6
|
-
Set-Cookie: S=photos_html=8nrl3bjqFLEw889yUvS2uQ; Domain=.google.com; Path=/; Secure; HttpOnly
|
7
|
-
Content-Type: application/atom+xml; charset=UTF-8; type=feed
|
8
|
-
Vary: Accept, X-GData-Authorization, GData-Version, Cookie
|
9
|
-
GData-Version: 2.0
|
10
|
-
ETag: W/"CUUGRXc9cCp7ImA9WhRQEUw."
|
11
|
-
Last-Modified: Mon, 05 Dec 2011 19:27:04 GMT
|
12
|
-
X-Content-Type-Options: nosniff
|
13
|
-
X-Frame-Options: SAMEORIGIN
|
14
|
-
X-XSS-Protection: 1; mode=block
|
15
|
-
Server: GSE
|
16
|
-
Transfer-Encoding: chunked
|
17
|
-
|
18
|
-
<?xml version='1.0' encoding='UTF-8'?>
|
19
|
-
<feed xmlns='http://www.w3.org/2005/Atom' xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/"CUUGRXc9cCp7ImA9WhRQEUw."'>
|
20
|
-
<id>https://picasaweb.google.com/data/feed/user/106136347770555028022/albumid/5243667126168669553</id>
|
21
|
-
<updated>2011-12-05T19:27:04.968Z</updated>
|
22
|
-
<category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/>
|
23
|
-
<title>test2</title>
|
24
|
-
<subtitle/>
|
25
|
-
<rights>public</rights>
|
26
|
-
<icon>https://lh6.googleusercontent.com/-u_2FJXbbliU/SMU_eBetTXE/AAAAAAAAAkU/3XThNVnAM-4/s160-c/Test2.jpg</icon>
|
27
|
-
<link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/106136347770555028022/albumid/5243667126168669553'/>
|
28
|
-
<link rel='alternate' type='text/html' href='https://picasaweb.google.com/106136347770555028022/Test2'/>
|
29
|
-
<link rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' href='https://picasaweb.google.com/s/c/bin/slideshow.swf?host=picasaweb.google.com&RGB=0x000000&feed=https%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2F106136347770555028022%2Falbumid%2F5243667126168669553%3Falt%3Drss'/>
|
30
|
-
<link rel='http://schemas.google.com/photos/2007#report' type='text/html' href='https://picasaweb.google.com/lh/reportAbuse?uname=106136347770555028022&aid=5243667126168669553'/>
|
31
|
-
<link rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/106136347770555028022/albumid/5243667126168669553?start-index=1&max-results=2'/>
|
32
|
-
<link rel='next' type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/106136347770555028022/albumid/5243667126168669553?start-index=3&max-results=2'/>
|
33
|
-
<author>
|
34
|
-
<name>Wojciech Wnętrzak</name>
|
35
|
-
<uri>https://picasaweb.google.com/106136347770555028022</uri>
|
36
|
-
</author>
|
37
|
-
<generator version='1.00' uri='http://picasaweb.google.com/'>Picasaweb</generator>
|
38
|
-
<openSearch:totalResults>3</openSearch:totalResults>
|
39
|
-
<openSearch:startIndex>1</openSearch:startIndex>
|
40
|
-
<openSearch:itemsPerPage>2</openSearch:itemsPerPage>
|
41
|
-
<gphoto:id>5243667126168669553</gphoto:id>
|
42
|
-
<gphoto:name>Test2</gphoto:name>
|
43
|
-
<gphoto:location/>
|
44
|
-
<gphoto:access>public</gphoto:access>
|
45
|
-
<gphoto:timestamp>1220857200000</gphoto:timestamp>
|
46
|
-
<gphoto:numphotos>3</gphoto:numphotos>
|
47
|
-
<gphoto:user>106136347770555028022</gphoto:user>
|
48
|
-
<gphoto:nickname>Wojciech Wnętrzak</gphoto:nickname>
|
49
|
-
<gphoto:allowPrints>true</gphoto:allowPrints>
|
50
|
-
<gphoto:allowDownloads>true</gphoto:allowDownloads>
|
51
|
-
<entry gd:etag='"YD8qeyI."'>
|
52
|
-
<id>https://picasaweb.google.com/data/entry/user/106136347770555028022/albumid/5243667126168669553/photoid/5243667226703402962</id>
|
53
|
-
<published>2008-09-08T15:06:55.000Z</published>
|
54
|
-
<updated>2011-12-05T19:27:04.968Z</updated>
|
55
|
-
<category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#photo'/>
|
56
|
-
<title>Kashmir range.jpg</title>
|
57
|
-
<summary/>
|
58
|
-
<content type='image/jpeg' src='https://lh4.googleusercontent.com/-O0AOpTAPGBQ/SMU_j4ADl9I/AAAAAAAAAFs/DRnmROPuRVU/Kashmir%252520range.jpg'/>
|
59
|
-
<link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/106136347770555028022/albumid/5243667126168669553/photoid/5243667226703402962'/>
|
60
|
-
<link rel='alternate' type='text/html' href='https://picasaweb.google.com/106136347770555028022/Test2#5243667226703402962'/>
|
61
|
-
<link rel='http://schemas.google.com/photos/2007#canonical' type='text/html' href='https://picasaweb.google.com/lh/photo/FowxCXojZeLQRA2W3Hq2wtMTjNZETYmyPJy0liipFm0'/>
|
62
|
-
<link rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/106136347770555028022/albumid/5243667126168669553/photoid/5243667226703402962'/>
|
63
|
-
<link rel='http://schemas.google.com/photos/2007#report' type='text/html' href='https://picasaweb.google.com/lh/reportAbuse?uname=106136347770555028022&aid=5243667126168669553&iid=5243667226703402962'/>
|
64
|
-
<gphoto:id>5243667226703402962</gphoto:id>
|
65
|
-
<gphoto:albumid>5243667126168669553</gphoto:albumid>
|
66
|
-
<gphoto:access>public</gphoto:access>
|
67
|
-
<gphoto:width>717</gphoto:width>
|
68
|
-
<gphoto:height>468</gphoto:height>
|
69
|
-
<gphoto:size>79465</gphoto:size>
|
70
|
-
<gphoto:checksum/>
|
71
|
-
<gphoto:timestamp>1220886415000</gphoto:timestamp>
|
72
|
-
<gphoto:imageVersion>91</gphoto:imageVersion>
|
73
|
-
<gphoto:commentingEnabled>true</gphoto:commentingEnabled>
|
74
|
-
<gphoto:commentCount>0</gphoto:commentCount>
|
75
|
-
<gphoto:license id='0' name='All Rights Reserved' url=''>ALL_RIGHTS_RESERVED</gphoto:license>
|
76
|
-
<exif:tags>
|
77
|
-
<exif:imageUniqueID>875bf5220bc6e4d8f57cfa31c48d8406</exif:imageUniqueID>
|
78
|
-
</exif:tags>
|
79
|
-
<media:group>
|
80
|
-
<media:content url='https://lh4.googleusercontent.com/-O0AOpTAPGBQ/SMU_j4ADl9I/AAAAAAAAAFs/DRnmROPuRVU/Kashmir%252520range.jpg' height='468' width='717' type='image/jpeg' medium='image'/>
|
81
|
-
<media:credit>Wojciech Wnętrzak</media:credit>
|
82
|
-
<media:description type='plain'/>
|
83
|
-
<media:keywords>nice</media:keywords>
|
84
|
-
<media:thumbnail url='https://lh4.googleusercontent.com/-O0AOpTAPGBQ/SMU_j4ADl9I/AAAAAAAAAFs/DRnmROPuRVU/s72/Kashmir%252520range.jpg' height='47' width='72'/>
|
85
|
-
<media:thumbnail url='https://lh4.googleusercontent.com/-O0AOpTAPGBQ/SMU_j4ADl9I/AAAAAAAAAFs/DRnmROPuRVU/s144/Kashmir%252520range.jpg' height='94' width='144'/>
|
86
|
-
<media:thumbnail url='https://lh4.googleusercontent.com/-O0AOpTAPGBQ/SMU_j4ADl9I/AAAAAAAAAFs/DRnmROPuRVU/s288/Kashmir%252520range.jpg' height='188' width='288'/>
|
87
|
-
<media:title type='plain'>Kashmir range.jpg</media:title>
|
88
|
-
</media:group>
|
89
|
-
</entry>
|
90
|
-
<entry gd:etag='"YD8qeyI."'>
|
91
|
-
<id>https://picasaweb.google.com/data/entry/user/106136347770555028022/albumid/5243667126168669553/photoid/5634470191836365426</id>
|
92
|
-
<published>2011-07-28T18:22:01.000Z</published>
|
93
|
-
<updated>2011-12-05T19:14:13.707Z</updated>
|
94
|
-
<category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#photo'/>
|
95
|
-
<title>pączki.jpg</title>
|
96
|
-
<summary>pączki</summary>
|
97
|
-
<content type='image/jpeg' src='https://lh6.googleusercontent.com/-CW7znxKv9Vg/TjGoyWnvAnI/AAAAAAAAAkM/Z2YE2j-U98s/p%2525C4%252585czki.jpg'/>
|
98
|
-
<link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/106136347770555028022/albumid/5243667126168669553/photoid/5634470191836365426'/>
|
99
|
-
<link rel='alternate' type='text/html' href='https://picasaweb.google.com/106136347770555028022/Test2#5634470191836365426'/>
|
100
|
-
<link rel='http://schemas.google.com/photos/2007#canonical' type='text/html' href='https://picasaweb.google.com/lh/photo/8SrPwdA4Qs3CK3wjK24_otMTjNZETYmyPJy0liipFm0'/>
|
101
|
-
<link rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/106136347770555028022/albumid/5243667126168669553/photoid/5634470191836365426'/>
|
102
|
-
<link rel='http://schemas.google.com/photos/2007#report' type='text/html' href='https://picasaweb.google.com/lh/reportAbuse?uname=106136347770555028022&aid=5243667126168669553&iid=5634470191836365426'/>
|
103
|
-
<gphoto:id>5634470191836365426</gphoto:id>
|
104
|
-
<gphoto:albumid>5243667126168669553</gphoto:albumid>
|
105
|
-
<gphoto:access>public</gphoto:access>
|
106
|
-
<gphoto:width>1600</gphoto:width>
|
107
|
-
<gphoto:height>1200</gphoto:height>
|
108
|
-
<gphoto:size>208223</gphoto:size>
|
109
|
-
<gphoto:checksum/>
|
110
|
-
<gphoto:timestamp>1311877321000</gphoto:timestamp>
|
111
|
-
<gphoto:imageVersion>579</gphoto:imageVersion>
|
112
|
-
<gphoto:commentingEnabled>true</gphoto:commentingEnabled>
|
113
|
-
<gphoto:commentCount>0</gphoto:commentCount>
|
114
|
-
<gphoto:license id='0' name='All Rights Reserved' url=''>ALL_RIGHTS_RESERVED</gphoto:license>
|
115
|
-
<exif:tags>
|
116
|
-
<exif:make>Nokia</exif:make>
|
117
|
-
<exif:model>6300</exif:model>
|
118
|
-
<exif:imageUniqueID>e9d6f547640f4536518b716ab2ac58f5</exif:imageUniqueID>
|
119
|
-
</exif:tags>
|
120
|
-
<media:group>
|
121
|
-
<media:content url='https://lh6.googleusercontent.com/-CW7znxKv9Vg/TjGoyWnvAnI/AAAAAAAAAkM/Z2YE2j-U98s/p%2525C4%252585czki.jpg' height='1200' width='1600' type='image/jpeg' medium='image'/>
|
122
|
-
<media:credit>Wojciech Wnętrzak</media:credit>
|
123
|
-
<media:description type='plain'>pączki</media:description>
|
124
|
-
<media:keywords>ziemniaki</media:keywords>
|
125
|
-
<media:thumbnail url='https://lh6.googleusercontent.com/-CW7znxKv9Vg/TjGoyWnvAnI/AAAAAAAAAkM/Z2YE2j-U98s/s72/p%2525C4%252585czki.jpg' height='54' width='72'/>
|
126
|
-
<media:thumbnail url='https://lh6.googleusercontent.com/-CW7znxKv9Vg/TjGoyWnvAnI/AAAAAAAAAkM/Z2YE2j-U98s/s144/p%2525C4%252585czki.jpg' height='108' width='144'/>
|
127
|
-
<media:thumbnail url='https://lh6.googleusercontent.com/-CW7znxKv9Vg/TjGoyWnvAnI/AAAAAAAAAkM/Z2YE2j-U98s/s288/p%2525C4%252585czki.jpg' height='216' width='288'/>
|
128
|
-
<media:title type='plain'>pączki.jpg</media:title>
|
129
|
-
</media:group>
|
130
|
-
</entry>
|
131
|
-
</feed>
|
@@ -1,156 +0,0 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Expires: Mon, 05 Dec 2011 19:49:23 GMT
|
3
|
-
Date: Mon, 05 Dec 2011 19:49:23 GMT
|
4
|
-
Cache-Control: private, max-age=0, must-revalidate, no-transform
|
5
|
-
Set-Cookie: _rtok=0ycPeqODDGEp; Path=/; Secure; HttpOnly
|
6
|
-
Set-Cookie: S=photos_html=Lek6Aa_9vdpgQEZHCuACOg; Domain=.google.com; Path=/; Secure; HttpOnly
|
7
|
-
Content-Type: application/atom+xml; charset=UTF-8; type=feed
|
8
|
-
Vary: Accept, X-GData-Authorization, GData-Version, Cookie
|
9
|
-
GData-Version: 2.0
|
10
|
-
ETag: W/"CUUGRXc9cCp7ImA9WhRQEUw."
|
11
|
-
Last-Modified: Mon, 05 Dec 2011 19:27:04 GMT
|
12
|
-
X-Content-Type-Options: nosniff
|
13
|
-
X-Frame-Options: SAMEORIGIN
|
14
|
-
X-XSS-Protection: 1; mode=block
|
15
|
-
Server: GSE
|
16
|
-
Transfer-Encoding: chunked
|
17
|
-
|
18
|
-
<?xml version='1.0' encoding='UTF-8'?>
|
19
|
-
<feed xmlns='http://www.w3.org/2005/Atom' xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/"CUUGRXc9cCp7ImA9WhRQEUw."'>
|
20
|
-
<id>https://picasaweb.google.com/data/feed/user/106136347770555028022/albumid/5243667126168669553</id>
|
21
|
-
<updated>2011-12-05T19:27:04.968Z</updated>
|
22
|
-
<category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/>
|
23
|
-
<title>test2</title>
|
24
|
-
<subtitle/>
|
25
|
-
<rights>public</rights>
|
26
|
-
<icon>https://lh6.googleusercontent.com/-u_2FJXbbliU/SMU_eBetTXE/AAAAAAAAAkU/3XThNVnAM-4/s160-c/Test2.jpg</icon>
|
27
|
-
<link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/106136347770555028022/albumid/5243667126168669553'/>
|
28
|
-
<link rel='alternate' type='text/html' href='https://picasaweb.google.com/106136347770555028022/Test2'/>
|
29
|
-
<link rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' href='https://picasaweb.google.com/s/c/bin/slideshow.swf?host=picasaweb.google.com&RGB=0x000000&feed=https%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2F106136347770555028022%2Falbumid%2F5243667126168669553%3Falt%3Drss'/>
|
30
|
-
<link rel='http://schemas.google.com/photos/2007#report' type='text/html' href='https://picasaweb.google.com/lh/reportAbuse?uname=106136347770555028022&aid=5243667126168669553'/>
|
31
|
-
<link rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/106136347770555028022/albumid/5243667126168669553?start-index=1&max-results=1000&tag=nice'/>
|
32
|
-
<author>
|
33
|
-
<name>Wojciech Wnętrzak</name>
|
34
|
-
<uri>https://picasaweb.google.com/106136347770555028022</uri>
|
35
|
-
</author>
|
36
|
-
<generator version='1.00' uri='http://picasaweb.google.com/'>Picasaweb</generator>
|
37
|
-
<openSearch:totalResults>2</openSearch:totalResults>
|
38
|
-
<openSearch:startIndex>1</openSearch:startIndex>
|
39
|
-
<openSearch:itemsPerPage>1000</openSearch:itemsPerPage>
|
40
|
-
<gphoto:id>5243667126168669553</gphoto:id>
|
41
|
-
<gphoto:name>Test2</gphoto:name>
|
42
|
-
<gphoto:location/>
|
43
|
-
<gphoto:access>public</gphoto:access>
|
44
|
-
<gphoto:timestamp>1220857200000</gphoto:timestamp>
|
45
|
-
<gphoto:numphotos>3</gphoto:numphotos>
|
46
|
-
<gphoto:user>106136347770555028022</gphoto:user>
|
47
|
-
<gphoto:nickname>Wojciech Wnętrzak</gphoto:nickname>
|
48
|
-
<gphoto:allowPrints>true</gphoto:allowPrints>
|
49
|
-
<gphoto:allowDownloads>true</gphoto:allowDownloads>
|
50
|
-
<entry gd:etag='"YD8qeyI."'>
|
51
|
-
<id>https://picasaweb.google.com/data/entry/user/106136347770555028022/albumid/5243667126168669553/photoid/5243667226703402962</id>
|
52
|
-
<published>2008-09-08T15:06:55.000Z</published>
|
53
|
-
<updated>2011-12-05T19:27:04.968Z</updated>
|
54
|
-
<category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#photo'/>
|
55
|
-
<title>Kashmir range.jpg</title>
|
56
|
-
<summary/>
|
57
|
-
<content type='image/jpeg' src='https://lh4.googleusercontent.com/-O0AOpTAPGBQ/SMU_j4ADl9I/AAAAAAAAAFs/DRnmROPuRVU/Kashmir%252520range.jpg'/>
|
58
|
-
<link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/106136347770555028022/albumid/5243667126168669553/photoid/5243667226703402962'/>
|
59
|
-
<link rel='alternate' type='text/html' href='https://picasaweb.google.com/106136347770555028022/Test2#5243667226703402962'/>
|
60
|
-
<link rel='http://schemas.google.com/photos/2007#canonical' type='text/html' href='https://picasaweb.google.com/lh/photo/FowxCXojZeLQRA2W3Hq2wtMTjNZETYmyPJy0liipFm0'/>
|
61
|
-
<link rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/106136347770555028022/albumid/5243667126168669553/photoid/5243667226703402962'/>
|
62
|
-
<link rel='http://schemas.google.com/photos/2007#report' type='text/html' href='https://picasaweb.google.com/lh/reportAbuse?uname=106136347770555028022&aid=5243667126168669553&iid=5243667226703402962'/>
|
63
|
-
<author type='owner'>
|
64
|
-
<name>Wojciech Wnętrzak</name>
|
65
|
-
<uri>https://picasaweb.google.com/106136347770555028022</uri>
|
66
|
-
<email>106136347770555028022</email>
|
67
|
-
<gphoto:nickname>Wojciech Wnętrzak</gphoto:nickname>
|
68
|
-
<gphoto:thumbnail>https://lh3.googleusercontent.com/-6ezHc54U8x0/AAAAAAAAAAI/AAAAAAAAAAA/PBuxm7Ehn6E/s32-c/106136347770555028022.jpg</gphoto:thumbnail>
|
69
|
-
<gphoto:user>106136347770555028022</gphoto:user>
|
70
|
-
</author>
|
71
|
-
<gphoto:id>5243667226703402962</gphoto:id>
|
72
|
-
<gphoto:albumid>5243667126168669553</gphoto:albumid>
|
73
|
-
<gphoto:access>public</gphoto:access>
|
74
|
-
<gphoto:width>717</gphoto:width>
|
75
|
-
<gphoto:height>468</gphoto:height>
|
76
|
-
<gphoto:size>79465</gphoto:size>
|
77
|
-
<gphoto:timestamp>1220886415000</gphoto:timestamp>
|
78
|
-
<gphoto:imageVersion>91</gphoto:imageVersion>
|
79
|
-
<gphoto:commentingEnabled>true</gphoto:commentingEnabled>
|
80
|
-
<gphoto:commentCount>0</gphoto:commentCount>
|
81
|
-
<gphoto:license id='0' name='All Rights Reserved' url=''>ALL_RIGHTS_RESERVED</gphoto:license>
|
82
|
-
<exif:tags>
|
83
|
-
<exif:time>1220886415000</exif:time>
|
84
|
-
<exif:imageUniqueID>875bf5220bc6e4d8f57cfa31c48d8406</exif:imageUniqueID>
|
85
|
-
</exif:tags>
|
86
|
-
<media:group>
|
87
|
-
<media:content url='https://lh4.googleusercontent.com/-O0AOpTAPGBQ/SMU_j4ADl9I/AAAAAAAAAFs/DRnmROPuRVU/Kashmir%252520range.jpg' height='468' width='717' type='image/jpeg' medium='image'/>
|
88
|
-
<media:credit>Wojciech Wnętrzak</media:credit>
|
89
|
-
<media:description type='plain'/>
|
90
|
-
<media:keywords>nice</media:keywords>
|
91
|
-
<media:thumbnail url='https://lh4.googleusercontent.com/-O0AOpTAPGBQ/SMU_j4ADl9I/AAAAAAAAAFs/DRnmROPuRVU/s72/Kashmir%252520range.jpg' height='47' width='72'/>
|
92
|
-
<media:thumbnail url='https://lh4.googleusercontent.com/-O0AOpTAPGBQ/SMU_j4ADl9I/AAAAAAAAAFs/DRnmROPuRVU/s144/Kashmir%252520range.jpg' height='94' width='144'/>
|
93
|
-
<media:thumbnail url='https://lh4.googleusercontent.com/-O0AOpTAPGBQ/SMU_j4ADl9I/AAAAAAAAAFs/DRnmROPuRVU/s288/Kashmir%252520range.jpg' height='188' width='288'/>
|
94
|
-
<media:title type='plain'>Kashmir range.jpg</media:title>
|
95
|
-
</media:group>
|
96
|
-
<gphoto:albumtitle>test2</gphoto:albumtitle>
|
97
|
-
<gphoto:albumdesc/>
|
98
|
-
<gphoto:location/>
|
99
|
-
<gphoto:snippet/>
|
100
|
-
<gphoto:snippettype>PHOTO_DESCRIPTION</gphoto:snippettype>
|
101
|
-
<gphoto:truncated>0</gphoto:truncated>
|
102
|
-
</entry>
|
103
|
-
<entry gd:etag='"YDgqeyI."'>
|
104
|
-
<id>https://picasaweb.google.com/data/entry/user/106136347770555028022/albumid/5243667126168669553/photoid/5634470303146876834</id>
|
105
|
-
<published>2011-07-28T18:22:27.000Z</published>
|
106
|
-
<updated>2011-12-05T19:26:45.489Z</updated>
|
107
|
-
<category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#photo'/>
|
108
|
-
<title>pink_floyd_ladies.jpg</title>
|
109
|
-
<summary/>
|
110
|
-
<content type='image/jpeg' src='https://lh3.googleusercontent.com/-k2SAcZgBGQc/TjGo41SOn6I/AAAAAAAAAkU/bgLxZj7rW0E/pink_floyd_ladies.jpg'/>
|
111
|
-
<link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/106136347770555028022/albumid/5243667126168669553/photoid/5634470303146876834'/>
|
112
|
-
<link rel='alternate' type='text/html' href='https://picasaweb.google.com/106136347770555028022/Test2#5634470303146876834'/>
|
113
|
-
<link rel='http://schemas.google.com/photos/2007#canonical' type='text/html' href='https://picasaweb.google.com/lh/photo/gipEdejdx4mYdBP57zti6dMTjNZETYmyPJy0liipFm0'/>
|
114
|
-
<link rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/106136347770555028022/albumid/5243667126168669553/photoid/5634470303146876834'/>
|
115
|
-
<link rel='http://schemas.google.com/photos/2007#report' type='text/html' href='https://picasaweb.google.com/lh/reportAbuse?uname=106136347770555028022&aid=5243667126168669553&iid=5634470303146876834'/>
|
116
|
-
<author type='owner'>
|
117
|
-
<name>Wojciech Wnętrzak</name>
|
118
|
-
<uri>https://picasaweb.google.com/106136347770555028022</uri>
|
119
|
-
<email>106136347770555028022</email>
|
120
|
-
<gphoto:nickname>Wojciech Wnętrzak</gphoto:nickname>
|
121
|
-
<gphoto:thumbnail>https://lh3.googleusercontent.com/-6ezHc54U8x0/AAAAAAAAAAI/AAAAAAAAAAA/PBuxm7Ehn6E/s32-c/106136347770555028022.jpg</gphoto:thumbnail>
|
122
|
-
<gphoto:user>106136347770555028022</gphoto:user>
|
123
|
-
</author>
|
124
|
-
<gphoto:id>5634470303146876834</gphoto:id>
|
125
|
-
<gphoto:albumid>5243667126168669553</gphoto:albumid>
|
126
|
-
<gphoto:access>public</gphoto:access>
|
127
|
-
<gphoto:width>1024</gphoto:width>
|
128
|
-
<gphoto:height>768</gphoto:height>
|
129
|
-
<gphoto:size>140724</gphoto:size>
|
130
|
-
<gphoto:timestamp>1311877347000</gphoto:timestamp>
|
131
|
-
<gphoto:imageVersion>581</gphoto:imageVersion>
|
132
|
-
<gphoto:commentingEnabled>true</gphoto:commentingEnabled>
|
133
|
-
<gphoto:commentCount>0</gphoto:commentCount>
|
134
|
-
<gphoto:license id='0' name='All Rights Reserved' url=''>ALL_RIGHTS_RESERVED</gphoto:license>
|
135
|
-
<exif:tags>
|
136
|
-
<exif:time>1311877347000</exif:time>
|
137
|
-
<exif:imageUniqueID>26875afdfa1eb82ab62d6ef7ccea95ab</exif:imageUniqueID>
|
138
|
-
</exif:tags>
|
139
|
-
<media:group>
|
140
|
-
<media:content url='https://lh3.googleusercontent.com/-k2SAcZgBGQc/TjGo41SOn6I/AAAAAAAAAkU/bgLxZj7rW0E/pink_floyd_ladies.jpg' height='768' width='1024' type='image/jpeg' medium='image'/>
|
141
|
-
<media:credit>Wojciech Wnętrzak</media:credit>
|
142
|
-
<media:description type='plain'/>
|
143
|
-
<media:keywords>nice</media:keywords>
|
144
|
-
<media:thumbnail url='https://lh3.googleusercontent.com/-k2SAcZgBGQc/TjGo41SOn6I/AAAAAAAAAkU/bgLxZj7rW0E/s72/pink_floyd_ladies.jpg' height='54' width='72'/>
|
145
|
-
<media:thumbnail url='https://lh3.googleusercontent.com/-k2SAcZgBGQc/TjGo41SOn6I/AAAAAAAAAkU/bgLxZj7rW0E/s144/pink_floyd_ladies.jpg' height='108' width='144'/>
|
146
|
-
<media:thumbnail url='https://lh3.googleusercontent.com/-k2SAcZgBGQc/TjGo41SOn6I/AAAAAAAAAkU/bgLxZj7rW0E/s288/pink_floyd_ladies.jpg' height='216' width='288'/>
|
147
|
-
<media:title type='plain'>pink_floyd_ladies.jpg</media:title>
|
148
|
-
</media:group>
|
149
|
-
<gphoto:albumtitle>test2</gphoto:albumtitle>
|
150
|
-
<gphoto:albumdesc/>
|
151
|
-
<gphoto:location/>
|
152
|
-
<gphoto:snippet/>
|
153
|
-
<gphoto:snippettype>PHOTO_DESCRIPTION</gphoto:snippettype>
|
154
|
-
<gphoto:truncated>0</gphoto:truncated>
|
155
|
-
</entry>
|
156
|
-
</feed>
|