flickr.rb 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ Sun, 16 May 2010 02:21:05 +0200
@@ -0,0 +1,209 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!DOCTYPE html
3
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
+
6
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
+ <head>
8
+ <title>File: README.txt</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
+ <link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
12
+ <script type="text/javascript">
13
+ // <![CDATA[
14
+
15
+ function popupCode( url ) {
16
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
+ }
18
+
19
+ function toggleCode( id ) {
20
+ if ( document.getElementById )
21
+ elem = document.getElementById( id );
22
+ else if ( document.all )
23
+ elem = eval( "document.all." + id );
24
+ else
25
+ return false;
26
+
27
+ elemStyle = elem.style;
28
+
29
+ if ( elemStyle.display != "block" ) {
30
+ elemStyle.display = "block"
31
+ } else {
32
+ elemStyle.display = "none"
33
+ }
34
+
35
+ return true;
36
+ }
37
+
38
+ // Make codeblocks hidden by default
39
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
+
41
+ // ]]>
42
+ </script>
43
+
44
+ </head>
45
+ <body>
46
+
47
+
48
+
49
+ <div id="fileHeader">
50
+ <h1>README.txt</h1>
51
+ <table class="header-table">
52
+ <tr class="top-aligned-row">
53
+ <td><strong>Path:</strong></td>
54
+ <td>README.txt
55
+ </td>
56
+ </tr>
57
+ <tr class="top-aligned-row">
58
+ <td><strong>Last Update:</strong></td>
59
+ <td>Sun May 16 02:06:47 +0200 2010</td>
60
+ </tr>
61
+ </table>
62
+ </div>
63
+ <!-- banner header -->
64
+
65
+ <div id="bodyContent">
66
+
67
+
68
+
69
+ <div id="contextContent">
70
+
71
+ <div id="description">
72
+ <h1>flickr</h1>
73
+ <p>
74
+ <a href="http://github.com/RaVbaker/flickr">github.com/RaVbaker/flickr</a>
75
+ </p>
76
+ <h2>DESCRIPTION:</h2>
77
+ <p>
78
+ An insanely easy interface to the <a
79
+ href="../classes/Flickr.html">Flickr</a> photo-sharing service. By Scott
80
+ Raymond. (&amp; updated May 2008 by Chris Taggart, <a
81
+ href="http://pushrod.wordpress.com">pushrod.wordpress.com</a> &amp; updated
82
+ May 2010 by Rafal Piekarski)
83
+ </p>
84
+ <h2>FEATURES/PROBLEMS:</h2>
85
+ <p>
86
+ The flickr gem (famously featured in a RubyonRails screencast) had broken
87
+ with <a href="../classes/Flickr.html">Flickr</a>&#8216;s new authentication
88
+ scheme and updated API. This has now been largely corrected, though not all
89
+ current API calls are supported yet.
90
+ </p>
91
+ <h2>SYNOPSIS:</h2>
92
+ <pre>
93
+ require 'flickr'
94
+ flickr = Flickr.new('some_flickr_api_key') # create a flickr client (get an API key from http://api.flickr.com/services/api/)
95
+ user = flickr.users('sco@scottraymond.net') # lookup a user
96
+ user.name # get the user's name
97
+ user.location # and location
98
+ user.photos # grab their collection of Photo objects...
99
+ user.groups # ...the groups they're in...
100
+ user.contacts # ...their contacts...
101
+ user.favorites # ...favorite photos...
102
+ user.photosets # ...their photo sets...
103
+ user.tags # ...their tags...
104
+ user.popular_tags # ...and their popular tags
105
+ recentphotos = flickr.photos # get the 100 most recent public photos
106
+ photo = recentphotos.first # or very most recent one
107
+ photo.url # see its URL,
108
+ photo.title # title,
109
+ photo.description # and description,
110
+ photo.owner # and its owner.
111
+ File.open(photo.filename, 'w') do |file|
112
+ file.puts p.file # save the photo to a local file
113
+ end
114
+ flickr.photos.each do |p| # get the last 100 public photos...
115
+ File.open(p.filename, 'w') do |f|
116
+ f.puts p.file('Square') # ...and save a local copy of their square thumbnail
117
+ end
118
+ end
119
+ </pre>
120
+ <h2>REQUIREMENTS:</h2>
121
+ <ul>
122
+ <li>Xmlsimple gem
123
+
124
+ </li>
125
+ </ul>
126
+ <h2>INSTALL:</h2>
127
+ <pre>
128
+ sudo gem install flickr
129
+ </pre>
130
+ <h2>CONFIGURING:</h2>
131
+ <p>
132
+ If you want to use this gem/plugin with Rails you can create configuration
133
+ file in /config directory with specified api connection settings. For
134
+ example:
135
+ </p>
136
+ <pre>
137
+ development:
138
+ api_key: SomeLongApiKey
139
+ shared_secret: secret!
140
+ auth_token: authSecretToken
141
+
142
+ beta:
143
+ api_key: SomeLongApiKeyBeta
144
+ shared_secret: secretBeta!
145
+ auth_token: authSecretTokenBeta
146
+ </pre>
147
+ <h2>LICENSE:</h2>
148
+ <p>
149
+ (The MIT License)
150
+ </p>
151
+ <p>
152
+ Copyright (c) 2005-2010 Scott Raymond, Patrick Plattes, Chris Taggart,
153
+ Rafal Piekarski
154
+ </p>
155
+ <p>
156
+ Permission is hereby granted, free of charge, to any person obtaining a
157
+ copy of this software and associated documentation files (the
158
+ &#8216;Software&#8217;), to deal in the Software without restriction,
159
+ including without limitation the rights to use, copy, modify, merge,
160
+ publish, distribute, sublicense, and/or sell copies of the Software, and to
161
+ permit persons to whom the Software is furnished to do so, subject to the
162
+ following conditions:
163
+ </p>
164
+ <p>
165
+ The above copyright notice and this permission notice shall be included in
166
+ all copies or substantial portions of the Software.
167
+ </p>
168
+ <p>
169
+ THE SOFTWARE IS PROVIDED &#8216;AS IS&#8217;, WITHOUT WARRANTY OF ANY KIND,
170
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
171
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
172
+ NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
173
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
174
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
175
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
176
+ </p>
177
+
178
+ </div>
179
+
180
+
181
+ </div>
182
+
183
+
184
+ </div>
185
+
186
+
187
+ <!-- if includes -->
188
+
189
+ <div id="section">
190
+
191
+
192
+
193
+
194
+
195
+
196
+
197
+
198
+ <!-- if method_list -->
199
+
200
+
201
+ </div>
202
+
203
+
204
+ <div id="validator-badges">
205
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
206
+ </div>
207
+
208
+ </body>
209
+ </html>
@@ -0,0 +1,162 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!DOCTYPE html
3
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
+
6
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
+ <head>
8
+ <title>File: flickr.rb</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
+ <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
12
+ <script type="text/javascript">
13
+ // <![CDATA[
14
+
15
+ function popupCode( url ) {
16
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
+ }
18
+
19
+ function toggleCode( id ) {
20
+ if ( document.getElementById )
21
+ elem = document.getElementById( id );
22
+ else if ( document.all )
23
+ elem = eval( "document.all." + id );
24
+ else
25
+ return false;
26
+
27
+ elemStyle = elem.style;
28
+
29
+ if ( elemStyle.display != "block" ) {
30
+ elemStyle.display = "block"
31
+ } else {
32
+ elemStyle.display = "none"
33
+ }
34
+
35
+ return true;
36
+ }
37
+
38
+ // Make codeblocks hidden by default
39
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
+
41
+ // ]]>
42
+ </script>
43
+
44
+ </head>
45
+ <body>
46
+
47
+
48
+
49
+ <div id="fileHeader">
50
+ <h1>flickr.rb</h1>
51
+ <table class="header-table">
52
+ <tr class="top-aligned-row">
53
+ <td><strong>Path:</strong></td>
54
+ <td>lib/flickr.rb
55
+ </td>
56
+ </tr>
57
+ <tr class="top-aligned-row">
58
+ <td><strong>Last Update:</strong></td>
59
+ <td>Sun May 16 02:03:49 +0200 2010</td>
60
+ </tr>
61
+ </table>
62
+ </div>
63
+ <!-- banner header -->
64
+
65
+ <div id="bodyContent">
66
+
67
+
68
+
69
+ <div id="contextContent">
70
+
71
+ <div id="description">
72
+ <h1><a href="../../classes/Flickr.html">Flickr</a></h1>
73
+ <pre>
74
+ An insanely easy interface to the Flickr photo-sharing service. By Scott Raymond.
75
+ </pre>
76
+ <table>
77
+ <tr><td valign="top">Author:</td><td>Scott Raymond &lt;sco@redgreenblu.com&gt;
78
+
79
+ </td></tr>
80
+ <tr><td valign="top">Copyright:</td><td>Copyright (c) 2005 Scott Raymond &lt;sco@redgreenblu.com&gt;. Additional
81
+ content by Patrick Plattes and Chris Taggart (<a
82
+ href="http://pushrod.wordpress.com">pushrod.wordpress.com</a>)
83
+
84
+ </td></tr>
85
+ <tr><td valign="top">License:</td><td>MIT &lt;<a
86
+ href="http://www.opensource.org/licenses/mit-license.php">www.opensource.org/licenses/mit-license.php</a>&gt;
87
+
88
+ </td></tr>
89
+ </table>
90
+ <p>
91
+ BASIC USAGE:
92
+ </p>
93
+ <pre>
94
+ require 'flickr'
95
+ flickr = Flickr.new('some_flickr_api_key') # create a flickr client (get an API key from http://api.flickr.com/services/api/)
96
+ user = flickr.users('sco@scottraymond.net') # lookup a user
97
+ user.name # get the user's name
98
+ user.location # and location
99
+ user.photos # grab their collection of Photo objects...
100
+ user.groups # ...the groups they're in...
101
+ user.contacts # ...their contacts...
102
+ user.favorites # ...favorite photos...
103
+ user.photosets # ...their photo sets...
104
+ user.tags # ...and their tags
105
+ recentphotos = flickr.photos # get the 100 most recent public photos
106
+ photo = recentphotos.first # or very most recent one
107
+ photo.url # see its URL,
108
+ photo.title # title,
109
+ photo.description # and description,
110
+ photo.owner # and its owner.
111
+ File.open(photo.filename, 'w') do |file|
112
+ file.puts p.file # save the photo to a local file
113
+ end
114
+ flickr.photos.each do |p| # get the last 100 public photos...
115
+ File.open(p.filename, 'w') do |f|
116
+ f.puts p.file('Square') # ...and save a local copy of their square thumbnail
117
+ end
118
+ end
119
+ </pre>
120
+
121
+ </div>
122
+
123
+ <div id="requires-list">
124
+ <h3 class="section-bar">Required files</h3>
125
+
126
+ <div class="name-list">
127
+ cgi&nbsp;&nbsp;
128
+ net/http&nbsp;&nbsp;
129
+ xmlsimple&nbsp;&nbsp;
130
+ digest/md5&nbsp;&nbsp;
131
+ </div>
132
+ </div>
133
+
134
+ </div>
135
+
136
+
137
+ </div>
138
+
139
+
140
+ <!-- if includes -->
141
+
142
+ <div id="section">
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+ <!-- if method_list -->
152
+
153
+
154
+ </div>
155
+
156
+
157
+ <div id="validator-badges">
158
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
159
+ </div>
160
+
161
+ </body>
162
+ </html>
@@ -0,0 +1,33 @@
1
+
2
+ <?xml version="1.0" encoding="iso-8859-1"?>
3
+ <!DOCTYPE html
4
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
+
7
+ <!--
8
+
9
+ Classes
10
+
11
+ -->
12
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
13
+ <head>
14
+ <title>Classes</title>
15
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
16
+ <link rel="stylesheet" href="rdoc-style.css" type="text/css" />
17
+ <base target="docwin" />
18
+ </head>
19
+ <body>
20
+ <div id="index">
21
+ <h1 class="section-bar">Classes</h1>
22
+ <div id="index-entries">
23
+ <a href="classes/Flickr.html">Flickr</a><br />
24
+ <a href="classes/Flickr/Config.html">Flickr::Config</a><br />
25
+ <a href="classes/Flickr/Group.html">Flickr::Group</a><br />
26
+ <a href="classes/Flickr/Photo.html">Flickr::Photo</a><br />
27
+ <a href="classes/Flickr/PhotoCollection.html">Flickr::PhotoCollection</a><br />
28
+ <a href="classes/Flickr/Photoset.html">Flickr::Photoset</a><br />
29
+ <a href="classes/Flickr/User.html">Flickr::User</a><br />
30
+ </div>
31
+ </div>
32
+ </body>
33
+ </html>
@@ -0,0 +1,28 @@
1
+
2
+ <?xml version="1.0" encoding="iso-8859-1"?>
3
+ <!DOCTYPE html
4
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
+
7
+ <!--
8
+
9
+ Files
10
+
11
+ -->
12
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
13
+ <head>
14
+ <title>Files</title>
15
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
16
+ <link rel="stylesheet" href="rdoc-style.css" type="text/css" />
17
+ <base target="docwin" />
18
+ </head>
19
+ <body>
20
+ <div id="index">
21
+ <h1 class="section-bar">Files</h1>
22
+ <div id="index-entries">
23
+ <a href="files/README_txt.html">README.txt</a><br />
24
+ <a href="files/lib/flickr_rb.html">lib/flickr.rb</a><br />
25
+ </div>
26
+ </div>
27
+ </body>
28
+ </html>
@@ -0,0 +1,112 @@
1
+
2
+ <?xml version="1.0" encoding="iso-8859-1"?>
3
+ <!DOCTYPE html
4
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
+
7
+ <!--
8
+
9
+ Methods
10
+
11
+ -->
12
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
13
+ <head>
14
+ <title>Methods</title>
15
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
16
+ <link rel="stylesheet" href="rdoc-style.css" type="text/css" />
17
+ <base target="docwin" />
18
+ </head>
19
+ <body>
20
+ <div id="index">
21
+ <h1 class="section-bar">Methods</h1>
22
+ <div id="index-entries">
23
+ <a href="classes/Flickr/Photo.html#M000053">[] (Flickr::Photo)</a><br />
24
+ <a href="classes/Flickr/Photo.html#M000074">add_note (Flickr::Photo)</a><br />
25
+ <a href="classes/Flickr/Photo.html#M000080">add_tag (Flickr::Photo)</a><br />
26
+ <a href="classes/Flickr/User.html#M000037">contacts (Flickr::User)</a><br />
27
+ <a href="classes/Flickr/User.html#M000042">contactsPhotos (Flickr::User)</a><br />
28
+ <a href="classes/Flickr/Photo.html#M000069">context (Flickr::Photo)</a><br />
29
+ <a href="classes/Flickr/User.html#M000028">count (Flickr::User)</a><br />
30
+ <a href="classes/Flickr/Photo.html#M000075">dates= (Flickr::Photo)</a><br />
31
+ <a href="classes/Flickr/Photo.html#M000084">deleteNote (Flickr::Photo)</a><br />
32
+ <a href="classes/Flickr/Photo.html#M000060">description (Flickr::Photo)</a><br />
33
+ <a href="classes/Flickr/Photo.html#M000079">description= (Flickr::Photo)</a><br />
34
+ <a href="classes/Flickr/Photo.html#M000085">editNote (Flickr::Photo)</a><br />
35
+ <a href="classes/Flickr/Photo.html#M000070">exif (Flickr::Photo)</a><br />
36
+ <a href="classes/Flickr/User.html#M000038">favorites (Flickr::User)</a><br />
37
+ <a href="classes/Flickr/Photo.html#M000067">file (Flickr::Photo)</a><br />
38
+ <a href="classes/Flickr/Photo.html#M000068">filename (Flickr::Photo)</a><br />
39
+ <a href="classes/Flickr.html#M000004">find_by_url (Flickr)</a><br />
40
+ <a href="classes/Flickr/User.html#M000029">firstdate (Flickr::User)</a><br />
41
+ <a href="classes/Flickr/User.html#M000030">firstdatetaken (Flickr::User)</a><br />
42
+ <a href="classes/Flickr/Config.html#M000046">get (Flickr::Config)</a><br />
43
+ <a href="classes/Flickr/Photoset.html#M000049">getInfo (Flickr::Photoset)</a><br />
44
+ <a href="classes/Flickr/Group.html#M000023">getInfo (Flickr::Group)</a><br />
45
+ <a href="classes/Flickr/Photoset.html#M000050">getPhotos (Flickr::Photoset)</a><br />
46
+ <a href="classes/Flickr.html#M000003">get_token_from (Flickr)</a><br />
47
+ <a href="classes/Flickr/User.html#M000034">groups (Flickr::User)</a><br />
48
+ <a href="classes/Flickr.html#M000011">groups (Flickr)</a><br />
49
+ <a href="classes/Flickr.html#M000017">http_get (Flickr)</a><br />
50
+ <a href="classes/Flickr/Photo.html#M000057">isfavorite (Flickr::Photo)</a><br />
51
+ <a href="classes/Flickr/Photo.html#M000058">license (Flickr::Photo)</a><br />
52
+ <a href="classes/Flickr.html#M000014">licenses (Flickr)</a><br />
53
+ <a href="classes/Flickr/Config.html#M000044">load_from_file (Flickr::Config)</a><br />
54
+ <a href="classes/Flickr/User.html#M000027">location (Flickr::User)</a><br />
55
+ <a href="classes/Flickr.html#M000015">login_url (Flickr)</a><br />
56
+ <a href="classes/Flickr.html#M000016">method_missing (Flickr)</a><br />
57
+ <a href="classes/Flickr/User.html#M000026">name (Flickr::User)</a><br />
58
+ <a href="classes/Flickr/Photoset.html#M000048">new (Flickr::Photoset)</a><br />
59
+ <a href="classes/Flickr/User.html#M000024">new (Flickr::User)</a><br />
60
+ <a href="classes/Flickr/PhotoCollection.html#M000051">new (Flickr::PhotoCollection)</a><br />
61
+ <a href="classes/Flickr/Photo.html#M000052">new (Flickr::Photo)</a><br />
62
+ <a href="classes/Flickr.html#M000001">new (Flickr)</a><br />
63
+ <a href="classes/Flickr/Group.html#M000022">new (Flickr::Group)</a><br />
64
+ <a href="classes/Flickr/Photo.html#M000063">normalize_size (Flickr::Photo)</a><br />
65
+ <a href="classes/Flickr/Photo.html#M000061">notes (Flickr::Photo)</a><br />
66
+ <a href="classes/Flickr/Photo.html#M000055">owner (Flickr::Photo)</a><br />
67
+ <a href="classes/Flickr/Config.html#M000045">parse_in_rails_env! (Flickr::Config)</a><br />
68
+ <a href="classes/Flickr/Config.html#M000047">parsed? (Flickr::Config)</a><br />
69
+ <a href="classes/Flickr/Photo.html#M000071">permissions (Flickr::Photo)</a><br />
70
+ <a href="classes/Flickr/Photo.html#M000076">perms= (Flickr::Photo)</a><br />
71
+ <a href="classes/Flickr/User.html#M000035">photos (Flickr::User)</a><br />
72
+ <a href="classes/Flickr.html#M000005">photos (Flickr)</a><br />
73
+ <a href="classes/Flickr.html#M000019">photos_request (Flickr)</a><br />
74
+ <a href="classes/Flickr.html#M000007">photos_search (Flickr)</a><br />
75
+ <a href="classes/Flickr/User.html#M000031">photos_url (Flickr::User)</a><br />
76
+ <a href="classes/Flickr.html#M000012">photoset (Flickr)</a><br />
77
+ <a href="classes/Flickr/User.html#M000039">photosets (Flickr::User)</a><br />
78
+ <a href="classes/Flickr/User.html#M000041">popular_tags (Flickr::User)</a><br />
79
+ <a href="classes/Flickr/Photo.html#M000083">postToBlog (Flickr::Photo)</a><br />
80
+ <a href="classes/Flickr/Photo.html#M000065">pretty_url (Flickr::Photo)</a><br />
81
+ <a href="classes/Flickr/User.html#M000033">pretty_url (Flickr::User)</a><br />
82
+ <a href="classes/Flickr.html#M000006">recent (Flickr)</a><br />
83
+ <a href="classes/Flickr.html#M000013">related_tags (Flickr)</a><br />
84
+ <a href="classes/Flickr/Photo.html#M000081">remove_tag (Flickr::Photo)</a><br />
85
+ <a href="classes/Flickr.html#M000018">request (Flickr)</a><br />
86
+ <a href="classes/Flickr.html#M000020">request_url (Flickr)</a><br />
87
+ <a href="classes/Flickr/Photo.html#M000082">rotate (Flickr::Photo)</a><br />
88
+ <a href="classes/Flickr/Photo.html#M000059">rotation (Flickr::Photo)</a><br />
89
+ <a href="classes/Flickr.html#M000008">search (Flickr)</a><br />
90
+ <a href="classes/Flickr/Photo.html#M000056">server (Flickr::Photo)</a><br />
91
+ <a href="classes/Flickr.html#M000002">set_up_configuration (Flickr)</a><br />
92
+ <a href="classes/Flickr.html#M000021">signature_from (Flickr)</a><br />
93
+ <a href="classes/Flickr/Photo.html#M000062">size_url (Flickr::Photo)</a><br />
94
+ <a href="classes/Flickr/Photo.html#M000072">sizes (Flickr::Photo)</a><br />
95
+ <a href="classes/Flickr/Photo.html#M000066">source (Flickr::Photo)</a><br />
96
+ <a href="classes/Flickr.html#M000009">tag (Flickr)</a><br />
97
+ <a href="classes/Flickr/User.html#M000036">tag (Flickr::User)</a><br />
98
+ <a href="classes/Flickr/Photo.html#M000073">tags (Flickr::Photo)</a><br />
99
+ <a href="classes/Flickr/User.html#M000040">tags (Flickr::User)</a><br />
100
+ <a href="classes/Flickr/Photo.html#M000077">tags= (Flickr::Photo)</a><br />
101
+ <a href="classes/Flickr/Photo.html#M000054">title (Flickr::Photo)</a><br />
102
+ <a href="classes/Flickr/Photo.html#M000078">title= (Flickr::Photo)</a><br />
103
+ <a href="classes/Flickr/User.html#M000043">to_s (Flickr::User)</a><br />
104
+ <a href="classes/Flickr/Photo.html#M000086">to_s (Flickr::Photo)</a><br />
105
+ <a href="classes/Flickr/Photo.html#M000064">url (Flickr::Photo)</a><br />
106
+ <a href="classes/Flickr/User.html#M000032">url (Flickr::User)</a><br />
107
+ <a href="classes/Flickr/User.html#M000025">username (Flickr::User)</a><br />
108
+ <a href="classes/Flickr.html#M000010">users (Flickr)</a><br />
109
+ </div>
110
+ </div>
111
+ </body>
112
+ </html>