flickr.rb 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +7 -0
  2. data/Changelog.txt +7 -2
  3. data/Gemfile +4 -0
  4. data/Gemfile.lock +24 -0
  5. data/LICENSE +16 -17
  6. data/Manifest.txt +2 -2
  7. data/README.txt +3 -1
  8. data/Rakefile +3 -24
  9. data/flickr.gemspec +22 -17
  10. data/lib/flickr.rb +104 -104
  11. data/rdoc/Flickr.html +1003 -0
  12. data/rdoc/Flickr/Config.html +267 -0
  13. data/rdoc/Flickr/Group.html +343 -0
  14. data/rdoc/Flickr/Photo.html +1396 -0
  15. data/rdoc/Flickr/PhotoCollection.html +229 -0
  16. data/rdoc/Flickr/Photoset.html +359 -0
  17. data/rdoc/Flickr/User.html +745 -0
  18. data/rdoc/README_txt.html +199 -0
  19. data/rdoc/created.rid +3 -1
  20. data/rdoc/fonts.css +167 -0
  21. data/rdoc/fonts/Lato-Light.ttf +0 -0
  22. data/rdoc/fonts/Lato-LightItalic.ttf +0 -0
  23. data/rdoc/fonts/Lato-Regular.ttf +0 -0
  24. data/rdoc/fonts/Lato-RegularItalic.ttf +0 -0
  25. data/rdoc/fonts/SourceCodePro-Bold.ttf +0 -0
  26. data/rdoc/fonts/SourceCodePro-Regular.ttf +0 -0
  27. data/rdoc/images/add.png +0 -0
  28. data/rdoc/images/arrow_up.png +0 -0
  29. data/rdoc/images/brick.png +0 -0
  30. data/rdoc/images/brick_link.png +0 -0
  31. data/rdoc/images/bug.png +0 -0
  32. data/rdoc/images/bullet_black.png +0 -0
  33. data/rdoc/images/bullet_toggle_minus.png +0 -0
  34. data/rdoc/images/bullet_toggle_plus.png +0 -0
  35. data/rdoc/images/date.png +0 -0
  36. data/rdoc/images/delete.png +0 -0
  37. data/rdoc/images/find.png +0 -0
  38. data/rdoc/images/loadingAnimation.gif +0 -0
  39. data/rdoc/images/macFFBgHack.png +0 -0
  40. data/rdoc/images/package.png +0 -0
  41. data/rdoc/images/page_green.png +0 -0
  42. data/rdoc/images/page_white_text.png +0 -0
  43. data/rdoc/images/page_white_width.png +0 -0
  44. data/rdoc/images/plugin.png +0 -0
  45. data/rdoc/images/ruby.png +0 -0
  46. data/rdoc/images/tag_blue.png +0 -0
  47. data/rdoc/images/tag_green.png +0 -0
  48. data/rdoc/images/transparent.png +0 -0
  49. data/rdoc/images/wrench.png +0 -0
  50. data/rdoc/images/wrench_orange.png +0 -0
  51. data/rdoc/images/zoom.png +0 -0
  52. data/rdoc/index.html +101 -21
  53. data/rdoc/js/darkfish.js +140 -0
  54. data/rdoc/js/jquery.js +18 -0
  55. data/rdoc/js/navigation.js +142 -0
  56. data/rdoc/js/search.js +109 -0
  57. data/rdoc/js/search_index.js +1 -0
  58. data/rdoc/js/searcher.js +228 -0
  59. data/rdoc/rdoc.css +580 -0
  60. data/rdoc/table_of_contents.html +473 -0
  61. data/test/flickr_test.rb +229 -227
  62. metadata +132 -68
  63. data/rdoc/classes/Flickr.html +0 -807
  64. data/rdoc/classes/Flickr/Config.html +0 -240
  65. data/rdoc/classes/Flickr/Group.html +0 -251
  66. data/rdoc/classes/Flickr/Photo.html +0 -1101
  67. data/rdoc/classes/Flickr/PhotoCollection.html +0 -194
  68. data/rdoc/classes/Flickr/Photoset.html +0 -266
  69. data/rdoc/classes/Flickr/User.html +0 -738
  70. data/rdoc/files/README_txt.html +0 -209
  71. data/rdoc/files/lib/flickr_rb.html +0 -162
  72. data/rdoc/fr_class_index.html +0 -33
  73. data/rdoc/fr_file_index.html +0 -28
  74. data/rdoc/fr_method_index.html +0 -112
  75. data/rdoc/rdoc-style.css +0 -208
@@ -1,209 +0,0 @@
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>
@@ -1,162 +0,0 @@
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>
@@ -1,33 +0,0 @@
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>
@@ -1,28 +0,0 @@
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>
@@ -1,112 +0,0 @@
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>