feedzirra-redis 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -9,5 +9,4 @@ group :development do
9
9
  gem "bundler", "~> 1.0.0"
10
10
  gem "jeweler", "~> 1.6.2"
11
11
  gem "rcov", ">= 0"
12
- gem "fakeweb"
13
12
  end
data/Gemfile.lock CHANGED
@@ -20,7 +20,6 @@ GEM
20
20
  json (~> 1.4.6)
21
21
  stringex (~> 1.2.0)
22
22
  uuidtools (~> 2.1.2)
23
- fakeweb (1.3.0)
24
23
  fastercsv (1.5.4)
25
24
  feedzirra (0.0.24)
26
25
  activesupport (>= 2.3.8)
@@ -55,7 +54,6 @@ PLATFORMS
55
54
  DEPENDENCIES
56
55
  bundler (~> 1.0.0)
57
56
  dm-redis-adapter
58
- fakeweb
59
57
  feedzirra
60
58
  i18n
61
59
  jeweler (~> 1.6.2)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{feedzirra-redis}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Logan Koester"]
@@ -27,6 +27,7 @@ Gem::Specification.new do |s|
27
27
  "VERSION",
28
28
  "feedzirra-redis.gemspec",
29
29
  "lib/feedzirra-redis.rb",
30
+ "test/fixtures/monkeys.atom",
30
31
  "test/fixtures/monkeys_new.atom",
31
32
  "test/fixtures/monkeys_old.atom",
32
33
  "test/helper.rb",
@@ -49,7 +50,6 @@ Gem::Specification.new do |s|
49
50
  s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
50
51
  s.add_development_dependency(%q<jeweler>, ["~> 1.6.2"])
51
52
  s.add_development_dependency(%q<rcov>, [">= 0"])
52
- s.add_development_dependency(%q<fakeweb>, [">= 0"])
53
53
  else
54
54
  s.add_dependency(%q<dm-redis-adapter>, [">= 0"])
55
55
  s.add_dependency(%q<feedzirra>, [">= 0"])
@@ -58,7 +58,6 @@ Gem::Specification.new do |s|
58
58
  s.add_dependency(%q<bundler>, ["~> 1.0.0"])
59
59
  s.add_dependency(%q<jeweler>, ["~> 1.6.2"])
60
60
  s.add_dependency(%q<rcov>, [">= 0"])
61
- s.add_dependency(%q<fakeweb>, [">= 0"])
62
61
  end
63
62
  else
64
63
  s.add_dependency(%q<dm-redis-adapter>, [">= 0"])
@@ -68,7 +67,6 @@ Gem::Specification.new do |s|
68
67
  s.add_dependency(%q<bundler>, ["~> 1.0.0"])
69
68
  s.add_dependency(%q<jeweler>, ["~> 1.6.2"])
70
69
  s.add_dependency(%q<rcov>, [">= 0"])
71
- s.add_dependency(%q<fakeweb>, [">= 0"])
72
70
  end
73
71
  end
74
72
 
@@ -29,7 +29,8 @@ module FeedzirraRedis
29
29
 
30
30
  def add_entries(entries)
31
31
  entries.each do |entry|
32
- Entry.first_or_create( {:guid => entry.guid}, {
32
+ unique_id = entry.id || entry.url
33
+ redis_entry = Entry.first_or_create( {:guid => unique_id}, {
33
34
  :title => entry.title,
34
35
  :summary => entry.summary,
35
36
  :url => entry.url,
@@ -43,19 +44,22 @@ module FeedzirraRedis
43
44
  if urls.is_a?(String)
44
45
  feed = Feedzirra::Feed.fetch_and_parse(urls, options)
45
46
  update_redis_from feed
46
- else
47
+ elsif urls.is_a?(Array)
47
48
  feeds = Feedzirra::Feed.fetch_and_parse(urls, options)
48
49
  redis_feeds = {}
49
50
  feeds.map do |feed|
50
51
  redis_feed = update_redis_from feed
51
52
  redis_feeds.merge!(redis_feed.feed_url => redis_feed)
52
53
  end
54
+ else
55
+ raise "Unexpected urls class #{urls.class}"
53
56
  end
54
57
  end
55
58
 
56
59
  # Delegate for compatibility
57
60
  def self.update(feeds, options = {})
58
- self.fetch_and_parse(feeds, options)
61
+ feeds.is_a?(Array) ? urls = feeds.map { |f| f.feed_url } : urls = feeds.feed_url
62
+ self.fetch_and_parse(urls, options)
59
63
  end
60
64
 
61
65
  private
@@ -67,11 +71,8 @@ module FeedzirraRedis
67
71
  :etag => feed.etag,
68
72
  :last_modified => feed.last_modified
69
73
  })
70
- feed.entries.each do |feed_entry|
71
- redis_feed.entries.first_or_create({ :id => feed_entry.id }, {
72
- })
73
-
74
- end
74
+ redis_feed.add_entries(feed.entries)
75
+ redis_feed.save
75
76
  return redis_feed
76
77
  end
77
78
  end
@@ -0,0 +1,313 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <feed xmlns:google="http://base.google.com/ns/1.0" xml:lang="en-US" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns="http://www.w3.org/2005/Atom" xmlns:twitter="http://api.twitter.com/">
3
+ <id>tag:search.twitter.com,2005:search/monkeys</id>
4
+ <link type="text/html" href="http://search.twitter.com/search?q=monkeys" rel="alternate"/>
5
+ <link type="application/atom+xml" href="http://search.twitter.com/search.atom?q=monkeys" rel="self"/>
6
+ <title>monkeys - Twitter Search</title>
7
+ <link type="application/opensearchdescription+xml" href="http://search.twitter.com/opensearch.xml" rel="search"/>
8
+ <link type="application/atom+xml" href="http://search.twitter.com/search.atom?q=monkeys&amp;since_id=93416858476232704" rel="refresh"/>
9
+ <twitter:warning>since_id removed for pagination.</twitter:warning>
10
+ <updated>2011-07-19T20:28:09Z</updated>
11
+ <openSearch:itemsPerPage>15</openSearch:itemsPerPage>
12
+ <link type="application/atom+xml" href="http://search.twitter.com/search.atom?max_id=93416858476232704&amp;page=2&amp;q=monkeys" rel="next"/>
13
+ <entry>
14
+ <id>tag:search.twitter.com,2005:93416858476232704</id>
15
+ <published>2011-07-19T20:28:09Z</published>
16
+ <link type="text/html" href="http://twitter.com/Toots_90/statuses/93416858476232704" rel="alternate"/>
17
+ <title>Can't beat a bit of old school Arctic Monkeys.</title>
18
+ <content type="html">Can&amp;apos;t beat a bit of old school Arctic &lt;b&gt;Monkeys&lt;/b&gt;.</content>
19
+ <updated>2011-07-19T20:28:09Z</updated>
20
+ <link type="image/png" href="http://a1.twimg.com/profile_images/1371302215/016w_normal.jpg" rel="image"/>
21
+ <twitter:geo>
22
+ </twitter:geo>
23
+ <twitter:metadata>
24
+ <twitter:result_type>recent</twitter:result_type>
25
+ </twitter:metadata>
26
+ <twitter:source>&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;</twitter:source>
27
+ <twitter:lang>en</twitter:lang>
28
+ <author>
29
+ <name>Toots_90 (Tabi Jones)</name>
30
+ <uri>http://twitter.com/Toots_90</uri>
31
+ </author>
32
+ </entry>
33
+ <entry>
34
+ <id>tag:search.twitter.com,2005:93416857209552896</id>
35
+ <published>2011-07-19T20:28:09Z</published>
36
+ <link type="text/html" href="http://twitter.com/MinnetonkaTwin/statuses/93416857209552896" rel="alternate"/>
37
+ <title>RT @MrBill01: You asked, and yes its true! - http://bit.ly/iyaqwl - I am a #Monkey's #Uncle!!!</title>
38
+ <content type="html">RT &lt;a href=&quot;http://twitter.com/MrBill01&quot;&gt;@MrBill01&lt;/a&gt;: You asked, and yes its true! - &lt;a href=&quot;http://bit.ly/iyaqwl&quot;&gt;http://bit.ly/iyaqwl&lt;/a&gt; - I am a &lt;a href=&quot;http://search.twitter.com/search?q=%23Monkey&quot; onclick=&quot;pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#Monkey');&quot;&gt;#Monkey&lt;/a&gt;&amp;apos;s &lt;a href=&quot;http://search.twitter.com/search?q=%23Uncle&quot; onclick=&quot;pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#Uncle');&quot;&gt;#Uncle&lt;/a&gt;!!!</content>
39
+ <updated>2011-07-19T20:28:09Z</updated>
40
+ <link type="image/png" href="http://a0.twimg.com/profile_images/1286228873/Laura___Linda_004_normal.JPG" rel="image"/>
41
+ <twitter:geo>
42
+ </twitter:geo>
43
+ <twitter:metadata>
44
+ <twitter:result_type>recent</twitter:result_type>
45
+ </twitter:metadata>
46
+ <twitter:source>&lt;a href=&quot;http://www.twaitter.com&quot; rel=&quot;nofollow&quot;&gt;Twaitter&lt;/a&gt;</twitter:source>
47
+ <twitter:lang>en</twitter:lang>
48
+ <author>
49
+ <name>MinnetonkaTwin (Linda Rogers)</name>
50
+ <uri>http://twitter.com/MinnetonkaTwin</uri>
51
+ </author>
52
+ </entry>
53
+ <entry>
54
+ <id>tag:search.twitter.com,2005:93416797512024065</id>
55
+ <published>2011-07-19T20:27:54Z</published>
56
+ <link type="text/html" href="http://twitter.com/wizkhalifeh/statuses/93416797512024065" rel="alternate"/>
57
+ <title>RT @iFucked_Jbarbie: I no longer call girls hoes or bitches. I call them monkeys.</title>
58
+ <content type="html">RT &lt;a href=&quot;http://twitter.com/iFucked_Jbarbie&quot;&gt;@iFucked_Jbarbie&lt;/a&gt;: I no longer call girls hoes or bitches. I call them &lt;b&gt;monkeys&lt;/b&gt;.</content>
59
+ <updated>2011-07-19T20:27:54Z</updated>
60
+ <link type="image/png" href="http://a3.twimg.com/profile_images/1380264334/40547_415279834666_768024666_4671457_3435242_n_normal.jpg" rel="image"/>
61
+ <twitter:geo>
62
+ </twitter:geo>
63
+ <twitter:metadata>
64
+ <twitter:result_type>recent</twitter:result_type>
65
+ </twitter:metadata>
66
+ <twitter:source>&lt;a href=&quot;http://ubersocial.com&quot; rel=&quot;nofollow&quot;&gt;&#220;berSocial for BlackBerry&lt;/a&gt;</twitter:source>
67
+ <twitter:lang>en</twitter:lang>
68
+ <author>
69
+ <name>wizkhalifeh (Michael Khalifeh)</name>
70
+ <uri>http://twitter.com/wizkhalifeh</uri>
71
+ </author>
72
+ </entry>
73
+ <entry>
74
+ <id>tag:search.twitter.com,2005:93416771427635200</id>
75
+ <published>2011-07-19T20:27:48Z</published>
76
+ <link type="text/html" href="http://twitter.com/Wonderland_ESA/statuses/93416771427635200" rel="alternate"/>
77
+ <title>RT @JodiWonderland: Yay!!! Birthday week starts today with rescue Monkeys!!! All my little monkeys taking me to see real little monkeys! Love it!!! Xxxx</title>
78
+ <content type="html">RT &lt;a href=&quot;http://twitter.com/JodiWonderland&quot;&gt;@JodiWonderland&lt;/a&gt;: Yay!!! Birthday week starts today with rescue &lt;b&gt;Monkeys&lt;/b&gt;!!! All my little &lt;b&gt;monkeys&lt;/b&gt; taking me to see real little &lt;b&gt;monkeys&lt;/b&gt;! Love it!!! Xxxx</content>
79
+ <updated>2011-07-19T20:27:48Z</updated>
80
+ <link type="image/png" href="http://a2.twimg.com/profile_images/1434781989/nuevo_avatar_normal.jpg" rel="image"/>
81
+ <twitter:geo>
82
+ </twitter:geo>
83
+ <twitter:metadata>
84
+ <twitter:result_type>recent</twitter:result_type>
85
+ </twitter:metadata>
86
+ <twitter:source>&lt;a href=&quot;http://www.echofon.com/&quot; rel=&quot;nofollow&quot;&gt;Echofon&lt;/a&gt;</twitter:source>
87
+ <twitter:lang>en</twitter:lang>
88
+ <author>
89
+ <name>Wonderland_ESA (Wondies El Salvador)</name>
90
+ <uri>http://twitter.com/Wonderland_ESA</uri>
91
+ </author>
92
+ </entry>
93
+ <entry>
94
+ <id>tag:search.twitter.com,2005:93416728360534020</id>
95
+ <published>2011-07-19T20:27:38Z</published>
96
+ <link type="text/html" href="http://twitter.com/KlrTwiLuver/statuses/93416728360534020" rel="alternate"/>
97
+ <title>@SunnySnark @quantumfizzx Just heard from @foundmyedward that 100 Monkeys is inKCMO on Aug 11. What ya say??</title>
98
+ <content type="html">&lt;a href=&quot;http://twitter.com/SunnySnark&quot;&gt;@SunnySnark&lt;/a&gt; &lt;a href=&quot;http://twitter.com/quantumfizzx&quot;&gt;@quantumfizzx&lt;/a&gt; Just heard from &lt;a href=&quot;http://twitter.com/foundmyedward&quot;&gt;@foundmyedward&lt;/a&gt; that 100 &lt;b&gt;Monkeys&lt;/b&gt; is inKCMO on Aug 11. What ya say??</content>
99
+ <updated>2011-07-19T20:27:38Z</updated>
100
+ <link type="image/png" href="http://a2.twimg.com/profile_images/1448216508/image_normal.jpg" rel="image"/>
101
+ <twitter:geo>
102
+ </twitter:geo>
103
+ <twitter:metadata>
104
+ <twitter:result_type>recent</twitter:result_type>
105
+ </twitter:metadata>
106
+ <twitter:source>&lt;a href=&quot;http://twitter.com/#!/download/iphone&quot; rel=&quot;nofollow&quot;&gt;Twitter for iPhone&lt;/a&gt;</twitter:source>
107
+ <twitter:lang>en</twitter:lang>
108
+ <author>
109
+ <name>KlrTwiLuver (KlrTwiLuver)</name>
110
+ <uri>http://twitter.com/KlrTwiLuver</uri>
111
+ </author>
112
+ </entry>
113
+ <entry>
114
+ <id>tag:search.twitter.com,2005:93416711990165505</id>
115
+ <published>2011-07-19T20:27:34Z</published>
116
+ <link type="text/html" href="http://twitter.com/poxamario/statuses/93416711990165505" rel="alternate"/>
117
+ <title>Arctic Monkeys diz: SHALALALALAAAAAAAA</title>
118
+ <content type="html">Arctic &lt;b&gt;Monkeys&lt;/b&gt; diz: SHALALALALAAAAAAAA</content>
119
+ <updated>2011-07-19T20:27:34Z</updated>
120
+ <link type="image/png" href="http://a1.twimg.com/profile_images/1445779110/100_7524tt_normal.jpg" rel="image"/>
121
+ <twitter:geo>
122
+ </twitter:geo>
123
+ <twitter:metadata>
124
+ <twitter:result_type>recent</twitter:result_type>
125
+ </twitter:metadata>
126
+ <twitter:source>&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;</twitter:source>
127
+ <twitter:lang>in</twitter:lang>
128
+ <author>
129
+ <name>poxamario (M. San)</name>
130
+ <uri>http://twitter.com/poxamario</uri>
131
+ </author>
132
+ </entry>
133
+ <entry>
134
+ <id>tag:search.twitter.com,2005:93416678913884161</id>
135
+ <published>2011-07-19T20:27:26Z</published>
136
+ <link type="text/html" href="http://twitter.com/CrapSandviche/statuses/93416678913884161" rel="alternate"/>
137
+ <title>@travisrodgers So NO MOVIES WITH MONKEYS. what about Cowboys vs Aliens. Thanks.</title>
138
+ <content type="html">&lt;a href=&quot;http://twitter.com/travisrodgers&quot;&gt;@travisrodgers&lt;/a&gt; So NO MOVIES WITH &lt;b&gt;MONKEYS&lt;/b&gt;. what about Cowboys vs Aliens. Thanks.</content>
139
+ <updated>2011-07-19T20:27:26Z</updated>
140
+ <link type="image/png" href="http://a1.twimg.com/profile_images/1431201706/RobertCrap2_normal.jpg" rel="image"/>
141
+ <twitter:geo>
142
+ </twitter:geo>
143
+ <twitter:metadata>
144
+ <twitter:result_type>recent</twitter:result_type>
145
+ </twitter:metadata>
146
+ <twitter:source>&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;</twitter:source>
147
+ <twitter:lang>en</twitter:lang>
148
+ <author>
149
+ <name>CrapSandviche (#1 Fan of Neagli)</name>
150
+ <uri>http://twitter.com/CrapSandviche</uri>
151
+ </author>
152
+ </entry>
153
+ <entry>
154
+ <id>tag:search.twitter.com,2005:93416625633632256</id>
155
+ <published>2011-07-19T20:27:13Z</published>
156
+ <link type="text/html" href="http://twitter.com/cocteaulab/statuses/93416625633632256" rel="alternate"/>
157
+ <title>RT @juangallagher: Muchas bandas quisieran un Baterista como Matt Helders de los Arctic Monkeys, que bueno es ese cabron.</title>
158
+ <content type="html">RT &lt;a href=&quot;http://twitter.com/juangallagher&quot;&gt;@juangallagher&lt;/a&gt;: Muchas bandas quisieran un Baterista como Matt Helders de los Arctic &lt;b&gt;Monkeys&lt;/b&gt;, que bueno es ese cabron.</content>
159
+ <updated>2011-07-19T20:27:13Z</updated>
160
+ <link type="image/png" href="http://a1.twimg.com/profile_images/1241377562/Copia_de__DSC0028Total_normal.jpg" rel="image"/>
161
+ <twitter:geo>
162
+ </twitter:geo>
163
+ <twitter:metadata>
164
+ <twitter:result_type>recent</twitter:result_type>
165
+ </twitter:metadata>
166
+ <twitter:source>&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;</twitter:source>
167
+ <twitter:lang>es</twitter:lang>
168
+ <author>
169
+ <name>cocteaulab (Jean C. Rivadeneira)</name>
170
+ <uri>http://twitter.com/cocteaulab</uri>
171
+ </author>
172
+ </entry>
173
+ <entry>
174
+ <id>tag:search.twitter.com,2005:93416617517662208</id>
175
+ <published>2011-07-19T20:27:11Z</published>
176
+ <link type="text/html" href="http://twitter.com/perceptionalize/statuses/93416617517662208" rel="alternate"/>
177
+ <title>monkeys and copyright... http://huff.to/o6ySUs</title>
178
+ <content type="html">&lt;b&gt;monkeys&lt;/b&gt; and copyright... &lt;a href=&quot;http://huff.to/o6ySUs&quot;&gt;http://huff.to/o6ySUs&lt;/a&gt;</content>
179
+ <updated>2011-07-19T20:27:11Z</updated>
180
+ <link type="image/png" href="http://a2.twimg.com/profile_images/1184639208/Unbenannt-1_normal.jpg" rel="image"/>
181
+ <twitter:geo>
182
+ </twitter:geo>
183
+ <twitter:metadata>
184
+ <twitter:result_type>recent</twitter:result_type>
185
+ </twitter:metadata>
186
+ <twitter:source>&lt;a href=&quot;http://www.tweetdeck.com&quot; rel=&quot;nofollow&quot;&gt;TweetDeck&lt;/a&gt;</twitter:source>
187
+ <twitter:lang>en</twitter:lang>
188
+ <author>
189
+ <name>perceptionalize (Maria Schreiber)</name>
190
+ <uri>http://twitter.com/perceptionalize</uri>
191
+ </author>
192
+ </entry>
193
+ <entry>
194
+ <id>tag:search.twitter.com,2005:93416611993747456</id>
195
+ <published>2011-07-19T20:27:10Z</published>
196
+ <link type="text/html" href="http://twitter.com/EvaEvsEva/statuses/93416611993747456" rel="alternate"/>
197
+ <title>Photoset: fuckyeaharcticmonkeys: http://tumblr.com/xjz3l8gju8</title>
198
+ <content type="html">Photoset: fuckyeaharcticmonkeys: &lt;a href=&quot;http://tumblr.com/xjz3l8gju8&quot;&gt;http://tumblr.com/xjz3l8gju8&lt;/a&gt;</content>
199
+ <updated>2011-07-19T20:27:10Z</updated>
200
+ <link type="image/png" href="http://a3.twimg.com/profile_images/1440117754/DSC02724__479x640__normal.jpg" rel="image"/>
201
+ <twitter:geo>
202
+ </twitter:geo>
203
+ <twitter:metadata>
204
+ <twitter:result_type>recent</twitter:result_type>
205
+ </twitter:metadata>
206
+ <twitter:source>&lt;a href=&quot;http://www.tumblr.com/&quot; rel=&quot;nofollow&quot;&gt;Tumblr&lt;/a&gt;</twitter:source>
207
+ <twitter:lang>fr</twitter:lang>
208
+ <author>
209
+ <name>EvaEvsEva (Eva Paula )</name>
210
+ <uri>http://twitter.com/EvaEvsEva</uri>
211
+ </author>
212
+ </entry>
213
+ <entry>
214
+ <id>tag:search.twitter.com,2005:93416597934456832</id>
215
+ <published>2011-07-19T20:27:07Z</published>
216
+ <link type="text/html" href="http://twitter.com/rachelleannee/statuses/93416597934456832" rel="alternate"/>
217
+ <title>LOL Kathleen's dream about monkeys</title>
218
+ <content type="html">LOL Kathleen&amp;apos;s dream about &lt;b&gt;monkeys&lt;/b&gt;</content>
219
+ <updated>2011-07-19T20:27:07Z</updated>
220
+ <link type="image/png" href="http://a1.twimg.com/profile_images/1432495459/Picture0222_normal.jpg" rel="image"/>
221
+ <twitter:geo>
222
+ </twitter:geo>
223
+ <twitter:metadata>
224
+ <twitter:result_type>recent</twitter:result_type>
225
+ </twitter:metadata>
226
+ <twitter:source>&lt;a href=&quot;http://twitter.com/devices&quot; rel=&quot;nofollow&quot;&gt;txt&lt;/a&gt;</twitter:source>
227
+ <twitter:lang>en</twitter:lang>
228
+ <author>
229
+ <name>rachelleannee (Rachelle A. Rivera)</name>
230
+ <uri>http://twitter.com/rachelleannee</uri>
231
+ </author>
232
+ </entry>
233
+ <entry>
234
+ <id>tag:search.twitter.com,2005:93416567165026304</id>
235
+ <published>2011-07-19T20:26:59Z</published>
236
+ <link type="text/html" href="http://twitter.com/tfalls13/statuses/93416567165026304" rel="alternate"/>
237
+ <title>@Cubanaaa_ @bigwilli69 You may act white..but just know that between the both of yall #mixedpeople on us &quot;porch monkeys&quot;.</title>
238
+ <content type="html">&lt;a href=&quot;http://twitter.com/Cubanaaa_&quot;&gt;@Cubanaaa_&lt;/a&gt; &lt;a href=&quot;http://twitter.com/bigwilli69&quot;&gt;@bigwilli69&lt;/a&gt; You may act white..but just know that between the both of yall &lt;a href=&quot;http://search.twitter.com/search?q=%23mixedpeople&quot; onclick=&quot;pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#mixedpeople');&quot;&gt;#mixedpeople&lt;/a&gt; on us &amp;quot;porch &lt;b&gt;monkeys&lt;/b&gt;&amp;quot;.</content>
239
+ <updated>2011-07-19T20:26:59Z</updated>
240
+ <link type="image/png" href="http://a1.twimg.com/profile_images/1433774027/2SVCbC4R_normal" rel="image"/>
241
+ <twitter:geo>
242
+ </twitter:geo>
243
+ <twitter:metadata>
244
+ <twitter:result_type>recent</twitter:result_type>
245
+ </twitter:metadata>
246
+ <twitter:source>&lt;a href=&quot;http://twitter.com/download/android&quot; rel=&quot;nofollow&quot;&gt;Twitter for Android&lt;/a&gt;</twitter:source>
247
+ <twitter:lang>en</twitter:lang>
248
+ <author>
249
+ <name>tfalls13 (Trent Falls )</name>
250
+ <uri>http://twitter.com/tfalls13</uri>
251
+ </author>
252
+ </entry>
253
+ <entry>
254
+ <id>tag:search.twitter.com,2005:93416537817485312</id>
255
+ <published>2011-07-19T20:26:52Z</published>
256
+ <link type="text/html" href="http://twitter.com/andyohara52/statuses/93416537817485312" rel="alternate"/>
257
+ <title>The three wise monkeys. Not me. Not me and Not me. Cant see Cant hear Cant speak</title>
258
+ <content type="html">The three wise &lt;b&gt;monkeys&lt;/b&gt;. Not me. Not me and Not me. Cant see Cant hear Cant speak</content>
259
+ <updated>2011-07-19T20:26:52Z</updated>
260
+ <link type="image/png" href="http://a1.twimg.com/profile_images/1368528953/63474592352032250_normal.jpg" rel="image"/>
261
+ <twitter:geo>
262
+ </twitter:geo>
263
+ <twitter:metadata>
264
+ <twitter:result_type>recent</twitter:result_type>
265
+ </twitter:metadata>
266
+ <twitter:source>&lt;a href=&quot;http://www.snaptu.com&quot; rel=&quot;nofollow&quot;&gt;Snaptu&lt;/a&gt;</twitter:source>
267
+ <twitter:lang>en</twitter:lang>
268
+ <author>
269
+ <name>andyohara52 (andrew ohara)</name>
270
+ <uri>http://twitter.com/andyohara52</uri>
271
+ </author>
272
+ </entry>
273
+ <entry>
274
+ <id>tag:search.twitter.com,2005:93416516598505472</id>
275
+ <published>2011-07-19T20:26:47Z</published>
276
+ <link type="text/html" href="http://twitter.com/Mr_Blackett/statuses/93416516598505472" rel="alternate"/>
277
+ <title>Monkeys are the coolest animals.</title>
278
+ <content type="html">&lt;b&gt;Monkeys&lt;/b&gt; are the coolest animals.</content>
279
+ <updated>2011-07-19T20:26:47Z</updated>
280
+ <link type="image/png" href="http://a1.twimg.com/profile_images/1449526393/b4_normal.jpg" rel="image"/>
281
+ <twitter:geo>
282
+ </twitter:geo>
283
+ <twitter:metadata>
284
+ <twitter:result_type>recent</twitter:result_type>
285
+ </twitter:metadata>
286
+ <twitter:source>&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;</twitter:source>
287
+ <twitter:lang>en</twitter:lang>
288
+ <author>
289
+ <name>Mr_Blackett (Brennon Blackett)</name>
290
+ <uri>http://twitter.com/Mr_Blackett</uri>
291
+ </author>
292
+ </entry>
293
+ <entry>
294
+ <id>tag:search.twitter.com,2005:93416506418925568</id>
295
+ <published>2011-07-19T20:26:45Z</published>
296
+ <link type="text/html" href="http://twitter.com/muzza299/statuses/93416506418925568" rel="alternate"/>
297
+ <title>@chiefie @bebe33 @ronindotca timing is everything. NZ's always last on the list. Unless it's in beta. Then we're the test-monkeys.</title>
298
+ <content type="html">&lt;a href=&quot;http://twitter.com/chiefie&quot;&gt;@chiefie&lt;/a&gt; &lt;a href=&quot;http://twitter.com/bebe33&quot;&gt;@bebe33&lt;/a&gt; &lt;a href=&quot;http://twitter.com/ronindotca&quot;&gt;@ronindotca&lt;/a&gt; timing is everything. NZ&amp;apos;s always last on the list. Unless it&amp;apos;s in beta. Then we&amp;apos;re the test-&lt;b&gt;monkeys&lt;/b&gt;.</content>
299
+ <updated>2011-07-19T20:26:45Z</updated>
300
+ <link type="image/png" href="http://a3.twimg.com/profile_images/1282082203/muzza299_normal.jpeg" rel="image"/>
301
+ <twitter:geo>
302
+ </twitter:geo>
303
+ <twitter:metadata>
304
+ <twitter:result_type>recent</twitter:result_type>
305
+ </twitter:metadata>
306
+ <twitter:source>&lt;a href=&quot;http://www.osfoora.com&quot; rel=&quot;nofollow&quot;&gt;Osfoora for iPhone&lt;/a&gt;</twitter:source>
307
+ <twitter:lang>en</twitter:lang>
308
+ <author>
309
+ <name>muzza299 (Hugh McCracken)</name>
310
+ <uri>http://twitter.com/muzza299</uri>
311
+ </author>
312
+ </entry>
313
+ </feed>
@@ -5,19 +5,19 @@
5
5
  <link type="application/atom+xml" href="http://search.twitter.com/search.atom?q=monkeys" rel="self"/>
6
6
  <title>monkeys - Twitter Search</title>
7
7
  <link type="application/opensearchdescription+xml" href="http://search.twitter.com/opensearch.xml" rel="search"/>
8
- <link type="application/atom+xml" href="http://search.twitter.com/search.atom?q=monkeys&amp;since_id=93342804146790400" rel="refresh"/>
8
+ <link type="application/atom+xml" href="http://search.twitter.com/search.atom?q=monkeys&amp;since_id=93416858476232704" rel="refresh"/>
9
9
  <twitter:warning>since_id removed for pagination.</twitter:warning>
10
- <updated>2011-07-19T15:33:53Z</updated>
10
+ <updated>2011-07-19T20:28:09Z</updated>
11
11
  <openSearch:itemsPerPage>15</openSearch:itemsPerPage>
12
- <link type="application/atom+xml" href="http://search.twitter.com/search.atom?max_id=93342804146790400&amp;page=2&amp;q=monkeys" rel="next"/>
12
+ <link type="application/atom+xml" href="http://search.twitter.com/search.atom?max_id=93416858476232704&amp;page=2&amp;q=monkeys" rel="next"/>
13
13
  <entry>
14
- <id>tag:search.twitter.com,2005:93342804146790400</id>
15
- <published>2011-07-19T15:33:53Z</published>
16
- <link type="text/html" href="http://twitter.com/garyboyce/statuses/93342804146790400" rel="alternate"/>
17
- <title>RT @Aledeiinion: I hope it turns out a room full of monkeys have infact been running News International all along. #hackgate</title>
18
- <content type="html">RT &lt;a href=&quot;http://twitter.com/Aledeiinion&quot;&gt;@Aledeiinion&lt;/a&gt;: I hope it turns out a room full of &lt;b&gt;monkeys&lt;/b&gt; have infact been running News International all along. &lt;a href=&quot;http://search.twitter.com/search?q=%23hackgate&quot; onclick=&quot;pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#hackgate');&quot;&gt;#hackgate&lt;/a&gt;</content>
19
- <updated>2011-07-19T15:33:53Z</updated>
20
- <link type="image/png" href="http://a1.twimg.com/profile_images/1445220030/qtrBsf_normal.jpg" rel="image"/>
14
+ <id>tag:search.twitter.com,2005:93416858476232704</id>
15
+ <published>2011-07-19T20:28:09Z</published>
16
+ <link type="text/html" href="http://twitter.com/Toots_90/statuses/93416858476232704" rel="alternate"/>
17
+ <title>Can't beat a bit of old school Arctic Monkeys.</title>
18
+ <content type="html">Can&amp;apos;t beat a bit of old school Arctic &lt;b&gt;Monkeys&lt;/b&gt;.</content>
19
+ <updated>2011-07-19T20:28:09Z</updated>
20
+ <link type="image/png" href="http://a1.twimg.com/profile_images/1371302215/016w_normal.jpg" rel="image"/>
21
21
  <twitter:geo>
22
22
  </twitter:geo>
23
23
  <twitter:metadata>
@@ -26,258 +26,258 @@
26
26
  <twitter:source>&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;</twitter:source>
27
27
  <twitter:lang>en</twitter:lang>
28
28
  <author>
29
- <name>garyboyce (Gary Boyce)</name>
30
- <uri>http://twitter.com/garyboyce</uri>
29
+ <name>Toots_90 (Tabi Jones)</name>
30
+ <uri>http://twitter.com/Toots_90</uri>
31
31
  </author>
32
32
  </entry>
33
33
  <entry>
34
- <id>tag:search.twitter.com,2005:93342753160826881</id>
35
- <published>2011-07-19T15:33:41Z</published>
36
- <link type="text/html" href="http://twitter.com/_3lion/statuses/93342753160826881" rel="alternate"/>
37
- <title>Nat Geo is showing some jungle natives hunting monkeys. For God sake remove those mosaic please. It's so unnecessary.</title>
38
- <content type="html">Nat Geo is showing some jungle natives hunting &lt;b&gt;monkeys&lt;/b&gt;. For God sake remove those mosaic please. It&amp;apos;s so unnecessary.</content>
39
- <updated>2011-07-19T15:33:41Z</updated>
40
- <link type="image/png" href="http://a1.twimg.com/profile_images/1242179161/me_normal.jpg" rel="image"/>
34
+ <id>tag:search.twitter.com,2005:93416857209552896</id>
35
+ <published>2011-07-19T20:28:09Z</published>
36
+ <link type="text/html" href="http://twitter.com/MinnetonkaTwin/statuses/93416857209552896" rel="alternate"/>
37
+ <title>RT @MrBill01: You asked, and yes its true! - http://bit.ly/iyaqwl - I am a #Monkey's #Uncle!!!</title>
38
+ <content type="html">RT &lt;a href=&quot;http://twitter.com/MrBill01&quot;&gt;@MrBill01&lt;/a&gt;: You asked, and yes its true! - &lt;a href=&quot;http://bit.ly/iyaqwl&quot;&gt;http://bit.ly/iyaqwl&lt;/a&gt; - I am a &lt;a href=&quot;http://search.twitter.com/search?q=%23Monkey&quot; onclick=&quot;pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#Monkey');&quot;&gt;#Monkey&lt;/a&gt;&amp;apos;s &lt;a href=&quot;http://search.twitter.com/search?q=%23Uncle&quot; onclick=&quot;pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#Uncle');&quot;&gt;#Uncle&lt;/a&gt;!!!</content>
39
+ <updated>2011-07-19T20:28:09Z</updated>
40
+ <link type="image/png" href="http://a0.twimg.com/profile_images/1286228873/Laura___Linda_004_normal.JPG" rel="image"/>
41
41
  <twitter:geo>
42
42
  </twitter:geo>
43
43
  <twitter:metadata>
44
44
  <twitter:result_type>recent</twitter:result_type>
45
45
  </twitter:metadata>
46
- <twitter:source>&lt;a href=&quot;http://www.tweetdeck.com&quot; rel=&quot;nofollow&quot;&gt;TweetDeck&lt;/a&gt;</twitter:source>
46
+ <twitter:source>&lt;a href=&quot;http://www.twaitter.com&quot; rel=&quot;nofollow&quot;&gt;Twaitter&lt;/a&gt;</twitter:source>
47
47
  <twitter:lang>en</twitter:lang>
48
48
  <author>
49
- <name>_3lion (Lionel Chan)</name>
50
- <uri>http://twitter.com/_3lion</uri>
49
+ <name>MinnetonkaTwin (Linda Rogers)</name>
50
+ <uri>http://twitter.com/MinnetonkaTwin</uri>
51
51
  </author>
52
52
  </entry>
53
53
  <entry>
54
- <id>tag:search.twitter.com,2005:93342638845067264</id>
55
- <published>2011-07-19T15:33:13Z</published>
56
- <link type="text/html" href="http://twitter.com/mvlmoraes/statuses/93342638845067264" rel="alternate"/>
57
- <title>Clipe em espanhol do Jota Quest ultrapassa Foo Fighters, Arctic Monkeys, Rihanna&#8230; e &#233; 1&#186; lugar na Argentina.</title>
58
- <content type="html">Clipe em espanhol do Jota Quest ultrapassa Foo Fighters, Arctic &lt;b&gt;Monkeys&lt;/b&gt;, Rihanna&#8230; e &#233; 1&#186; lugar na Argentina.</content>
59
- <updated>2011-07-19T15:33:13Z</updated>
60
- <link type="image/png" href="http://a1.twimg.com/profile_images/1256709905/Sem_T_tulo-2_normal.jpg" rel="image"/>
54
+ <id>tag:search.twitter.com,2005:93416797512024065</id>
55
+ <published>2011-07-19T20:27:54Z</published>
56
+ <link type="text/html" href="http://twitter.com/wizkhalifeh/statuses/93416797512024065" rel="alternate"/>
57
+ <title>RT @iFucked_Jbarbie: I no longer call girls hoes or bitches. I call them monkeys.</title>
58
+ <content type="html">RT &lt;a href=&quot;http://twitter.com/iFucked_Jbarbie&quot;&gt;@iFucked_Jbarbie&lt;/a&gt;: I no longer call girls hoes or bitches. I call them &lt;b&gt;monkeys&lt;/b&gt;.</content>
59
+ <updated>2011-07-19T20:27:54Z</updated>
60
+ <link type="image/png" href="http://a3.twimg.com/profile_images/1380264334/40547_415279834666_768024666_4671457_3435242_n_normal.jpg" rel="image"/>
61
61
  <twitter:geo>
62
62
  </twitter:geo>
63
63
  <twitter:metadata>
64
64
  <twitter:result_type>recent</twitter:result_type>
65
65
  </twitter:metadata>
66
- <twitter:source>&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;</twitter:source>
67
- <twitter:lang>pt</twitter:lang>
66
+ <twitter:source>&lt;a href=&quot;http://ubersocial.com&quot; rel=&quot;nofollow&quot;&gt;&#220;berSocial for BlackBerry&lt;/a&gt;</twitter:source>
67
+ <twitter:lang>en</twitter:lang>
68
68
  <author>
69
- <name>mvlmoraes (Marcos Moraes)</name>
70
- <uri>http://twitter.com/mvlmoraes</uri>
69
+ <name>wizkhalifeh (Michael Khalifeh)</name>
70
+ <uri>http://twitter.com/wizkhalifeh</uri>
71
71
  </author>
72
72
  </entry>
73
73
  <entry>
74
- <id>tag:search.twitter.com,2005:93342567369936896</id>
75
- <published>2011-07-19T15:32:56Z</published>
76
- <link type="text/html" href="http://twitter.com/SophiaIgnatidou/statuses/93342567369936896" rel="alternate"/>
77
- <title>@iankatz1000 #notw inquiry looks like the 3 wise monkeys. The son speaks no evil, #murdoch hears no evil and rebekah sees no evil.#hacking</title>
78
- <content type="html">&lt;a href=&quot;http://twitter.com/iankatz1000&quot;&gt;@iankatz1000&lt;/a&gt; &lt;a href=&quot;http://search.twitter.com/search?q=%23notw&quot; onclick=&quot;pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#notw');&quot;&gt;#notw&lt;/a&gt; inquiry looks like the 3 wise &lt;b&gt;monkeys&lt;/b&gt;. The son speaks no evil, &lt;a href=&quot;http://search.twitter.com/search?q=%23murdoch&quot; onclick=&quot;pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#murdoch');&quot;&gt;#murdoch&lt;/a&gt; hears no evil and rebekah sees no evil.&lt;a href=&quot;http://search.twitter.com/search?q=%23hacking&quot; onclick=&quot;pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#hacking');&quot;&gt;#hacking&lt;/a&gt;</content>
79
- <updated>2011-07-19T15:32:56Z</updated>
80
- <link type="image/png" href="http://a3.twimg.com/profile_images/1258571627/sof_normal.jpg" rel="image"/>
74
+ <id>tag:search.twitter.com,2005:93416771427635200</id>
75
+ <published>2011-07-19T20:27:48Z</published>
76
+ <link type="text/html" href="http://twitter.com/Wonderland_ESA/statuses/93416771427635200" rel="alternate"/>
77
+ <title>RT @JodiWonderland: Yay!!! Birthday week starts today with rescue Monkeys!!! All my little monkeys taking me to see real little monkeys! Love it!!! Xxxx</title>
78
+ <content type="html">RT &lt;a href=&quot;http://twitter.com/JodiWonderland&quot;&gt;@JodiWonderland&lt;/a&gt;: Yay!!! Birthday week starts today with rescue &lt;b&gt;Monkeys&lt;/b&gt;!!! All my little &lt;b&gt;monkeys&lt;/b&gt; taking me to see real little &lt;b&gt;monkeys&lt;/b&gt;! Love it!!! Xxxx</content>
79
+ <updated>2011-07-19T20:27:48Z</updated>
80
+ <link type="image/png" href="http://a2.twimg.com/profile_images/1434781989/nuevo_avatar_normal.jpg" rel="image"/>
81
81
  <twitter:geo>
82
82
  </twitter:geo>
83
83
  <twitter:metadata>
84
84
  <twitter:result_type>recent</twitter:result_type>
85
85
  </twitter:metadata>
86
- <twitter:source>&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;</twitter:source>
86
+ <twitter:source>&lt;a href=&quot;http://www.echofon.com/&quot; rel=&quot;nofollow&quot;&gt;Echofon&lt;/a&gt;</twitter:source>
87
87
  <twitter:lang>en</twitter:lang>
88
88
  <author>
89
- <name>SophiaIgnatidou (Sophia Ignatidou)</name>
90
- <uri>http://twitter.com/SophiaIgnatidou</uri>
89
+ <name>Wonderland_ESA (Wondies El Salvador)</name>
90
+ <uri>http://twitter.com/Wonderland_ESA</uri>
91
91
  </author>
92
92
  </entry>
93
93
  <entry>
94
- <id>tag:search.twitter.com,2005:93342529260503041</id>
95
- <published>2011-07-19T15:32:47Z</published>
96
- <link type="text/html" href="http://twitter.com/CokeArayaT/statuses/93342529260503041" rel="alternate"/>
97
- <title>RT @Cynthiaiss: @CokeArayaT andai con los monkeys?///nooooooo por que???? jajajajajaja</title>
98
- <content type="html">RT &lt;a href=&quot;http://twitter.com/Cynthiaiss&quot;&gt;@Cynthiaiss&lt;/a&gt;: &lt;a href=&quot;http://twitter.com/CokeArayaT&quot;&gt;@CokeArayaT&lt;/a&gt; andai con los &lt;b&gt;monkeys&lt;/b&gt;?///nooooooo por que???? jajajajajaja</content>
99
- <updated>2011-07-19T15:32:47Z</updated>
100
- <link type="image/png" href="http://a3.twimg.com/profile_images/1414439196/YO_EN_LA_PLAYA_normal.jpg" rel="image"/>
94
+ <id>tag:search.twitter.com,2005:93416728360534020</id>
95
+ <published>2011-07-19T20:27:38Z</published>
96
+ <link type="text/html" href="http://twitter.com/KlrTwiLuver/statuses/93416728360534020" rel="alternate"/>
97
+ <title>@SunnySnark @quantumfizzx Just heard from @foundmyedward that 100 Monkeys is inKCMO on Aug 11. What ya say??</title>
98
+ <content type="html">&lt;a href=&quot;http://twitter.com/SunnySnark&quot;&gt;@SunnySnark&lt;/a&gt; &lt;a href=&quot;http://twitter.com/quantumfizzx&quot;&gt;@quantumfizzx&lt;/a&gt; Just heard from &lt;a href=&quot;http://twitter.com/foundmyedward&quot;&gt;@foundmyedward&lt;/a&gt; that 100 &lt;b&gt;Monkeys&lt;/b&gt; is inKCMO on Aug 11. What ya say??</content>
99
+ <updated>2011-07-19T20:27:38Z</updated>
100
+ <link type="image/png" href="http://a2.twimg.com/profile_images/1448216508/image_normal.jpg" rel="image"/>
101
101
  <twitter:geo>
102
102
  </twitter:geo>
103
103
  <twitter:metadata>
104
104
  <twitter:result_type>recent</twitter:result_type>
105
105
  </twitter:metadata>
106
- <twitter:source>&lt;a href=&quot;http://www.tweetdeck.com&quot; rel=&quot;nofollow&quot;&gt;TweetDeck&lt;/a&gt;</twitter:source>
107
- <twitter:lang>es</twitter:lang>
106
+ <twitter:source>&lt;a href=&quot;http://twitter.com/#!/download/iphone&quot; rel=&quot;nofollow&quot;&gt;Twitter for iPhone&lt;/a&gt;</twitter:source>
107
+ <twitter:lang>en</twitter:lang>
108
108
  <author>
109
- <name>CokeArayaT (jorge araya toloza)</name>
110
- <uri>http://twitter.com/CokeArayaT</uri>
109
+ <name>KlrTwiLuver (KlrTwiLuver)</name>
110
+ <uri>http://twitter.com/KlrTwiLuver</uri>
111
111
  </author>
112
112
  </entry>
113
113
  <entry>
114
- <id>tag:search.twitter.com,2005:93342524063752192</id>
115
- <published>2011-07-19T15:32:46Z</published>
116
- <link type="text/html" href="http://twitter.com/Salz_FCB/statuses/93342524063752192" rel="alternate"/>
117
- <title>Lolz nah! RT @yaw7fold: u wud b no1 #okbye RT @Salz_FCB: If money grew on trees girls wouldn't mind dating monkeys. :D</title>
118
- <content type="html">Lolz nah! RT &lt;a href=&quot;http://twitter.com/yaw7fold&quot;&gt;@yaw7fold&lt;/a&gt;: u wud b no1 &lt;a href=&quot;http://search.twitter.com/search?q=%23okbye&quot; onclick=&quot;pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#okbye');&quot;&gt;#okbye&lt;/a&gt; RT &lt;a href=&quot;http://twitter.com/Salz_FCB&quot;&gt;@Salz_FCB&lt;/a&gt;: If money grew on trees girls wouldn&amp;apos;t mind dating &lt;b&gt;monkeys&lt;/b&gt;. :D</content>
119
- <updated>2011-07-19T15:32:46Z</updated>
120
- <link type="image/png" href="http://a2.twimg.com/profile_images/1438285841/Salz_FCB_2418038463819262988_normal.jpg" rel="image"/>
114
+ <id>tag:search.twitter.com,2005:93416711990165505</id>
115
+ <published>2011-07-19T20:27:34Z</published>
116
+ <link type="text/html" href="http://twitter.com/poxamario/statuses/93416711990165505" rel="alternate"/>
117
+ <title>Arctic Monkeys diz: SHALALALALAAAAAAAA</title>
118
+ <content type="html">Arctic &lt;b&gt;Monkeys&lt;/b&gt; diz: SHALALALALAAAAAAAA</content>
119
+ <updated>2011-07-19T20:27:34Z</updated>
120
+ <link type="image/png" href="http://a1.twimg.com/profile_images/1445779110/100_7524tt_normal.jpg" rel="image"/>
121
121
  <twitter:geo>
122
122
  </twitter:geo>
123
123
  <twitter:metadata>
124
124
  <twitter:result_type>recent</twitter:result_type>
125
125
  </twitter:metadata>
126
- <twitter:source>&lt;a href=&quot;http://www.snaptu.com&quot; rel=&quot;nofollow&quot;&gt;Snaptu&lt;/a&gt;</twitter:source>
127
- <twitter:lang>en</twitter:lang>
126
+ <twitter:source>&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;</twitter:source>
127
+ <twitter:lang>in</twitter:lang>
128
128
  <author>
129
- <name>Salz_FCB (sally Mafia(lyfsuxx))</name>
130
- <uri>http://twitter.com/Salz_FCB</uri>
129
+ <name>poxamario (M. San)</name>
130
+ <uri>http://twitter.com/poxamario</uri>
131
131
  </author>
132
132
  </entry>
133
133
  <entry>
134
- <id>tag:search.twitter.com,2005:93342495911575552</id>
135
- <published>2011-07-19T15:32:39Z</published>
136
- <link type="text/html" href="http://twitter.com/KishaLynnT3/statuses/93342495911575552" rel="alternate"/>
137
- <title>Animal Kingdom 2day :) yay hopefully i see the adorable lil monkeys hahaha</title>
138
- <content type="html">Animal Kingdom 2day :) yay hopefully i see the adorable lil &lt;b&gt;monkeys&lt;/b&gt; hahaha</content>
139
- <updated>2011-07-19T15:32:39Z</updated>
140
- <link type="image/png" href="http://a2.twimg.com/profile_images/1445091088/image_normal.jpg" rel="image"/>
134
+ <id>tag:search.twitter.com,2005:93416678913884161</id>
135
+ <published>2011-07-19T20:27:26Z</published>
136
+ <link type="text/html" href="http://twitter.com/CrapSandviche/statuses/93416678913884161" rel="alternate"/>
137
+ <title>@travisrodgers So NO MOVIES WITH MONKEYS. what about Cowboys vs Aliens. Thanks.</title>
138
+ <content type="html">&lt;a href=&quot;http://twitter.com/travisrodgers&quot;&gt;@travisrodgers&lt;/a&gt; So NO MOVIES WITH &lt;b&gt;MONKEYS&lt;/b&gt;. what about Cowboys vs Aliens. Thanks.</content>
139
+ <updated>2011-07-19T20:27:26Z</updated>
140
+ <link type="image/png" href="http://a1.twimg.com/profile_images/1431201706/RobertCrap2_normal.jpg" rel="image"/>
141
141
  <twitter:geo>
142
142
  </twitter:geo>
143
143
  <twitter:metadata>
144
144
  <twitter:result_type>recent</twitter:result_type>
145
145
  </twitter:metadata>
146
- <twitter:source>&lt;a href=&quot;http://twitter.com/#!/download/iphone&quot; rel=&quot;nofollow&quot;&gt;Twitter for iPhone&lt;/a&gt;</twitter:source>
146
+ <twitter:source>&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;</twitter:source>
147
147
  <twitter:lang>en</twitter:lang>
148
148
  <author>
149
- <name>KishaLynnT3 (CaNdY rEdD)</name>
150
- <uri>http://twitter.com/KishaLynnT3</uri>
149
+ <name>CrapSandviche (#1 Fan of Neagli)</name>
150
+ <uri>http://twitter.com/CrapSandviche</uri>
151
151
  </author>
152
152
  </entry>
153
153
  <entry>
154
- <id>tag:search.twitter.com,2005:93342459043651584</id>
155
- <published>2011-07-19T15:32:31Z</published>
156
- <link type="text/html" href="http://twitter.com/CokeArayaT/statuses/93342459043651584" rel="alternate"/>
157
- <title>RT @Cynthiaiss: @CokeArayaT andai con los monkeys?</title>
158
- <content type="html">RT &lt;a href=&quot;http://twitter.com/Cynthiaiss&quot;&gt;@Cynthiaiss&lt;/a&gt;: &lt;a href=&quot;http://twitter.com/CokeArayaT&quot;&gt;@CokeArayaT&lt;/a&gt; andai con los &lt;b&gt;monkeys&lt;/b&gt;?</content>
159
- <updated>2011-07-19T15:32:31Z</updated>
160
- <link type="image/png" href="http://a3.twimg.com/profile_images/1414439196/YO_EN_LA_PLAYA_normal.jpg" rel="image"/>
154
+ <id>tag:search.twitter.com,2005:93416625633632256</id>
155
+ <published>2011-07-19T20:27:13Z</published>
156
+ <link type="text/html" href="http://twitter.com/cocteaulab/statuses/93416625633632256" rel="alternate"/>
157
+ <title>RT @juangallagher: Muchas bandas quisieran un Baterista como Matt Helders de los Arctic Monkeys, que bueno es ese cabron.</title>
158
+ <content type="html">RT &lt;a href=&quot;http://twitter.com/juangallagher&quot;&gt;@juangallagher&lt;/a&gt;: Muchas bandas quisieran un Baterista como Matt Helders de los Arctic &lt;b&gt;Monkeys&lt;/b&gt;, que bueno es ese cabron.</content>
159
+ <updated>2011-07-19T20:27:13Z</updated>
160
+ <link type="image/png" href="http://a1.twimg.com/profile_images/1241377562/Copia_de__DSC0028Total_normal.jpg" rel="image"/>
161
161
  <twitter:geo>
162
162
  </twitter:geo>
163
163
  <twitter:metadata>
164
164
  <twitter:result_type>recent</twitter:result_type>
165
165
  </twitter:metadata>
166
166
  <twitter:source>&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;</twitter:source>
167
- <twitter:lang>fr</twitter:lang>
167
+ <twitter:lang>es</twitter:lang>
168
168
  <author>
169
- <name>CokeArayaT (jorge araya toloza)</name>
170
- <uri>http://twitter.com/CokeArayaT</uri>
169
+ <name>cocteaulab (Jean C. Rivadeneira)</name>
170
+ <uri>http://twitter.com/cocteaulab</uri>
171
171
  </author>
172
172
  </entry>
173
173
  <entry>
174
- <id>tag:search.twitter.com,2005:93342417830420482</id>
175
- <published>2011-07-19T15:32:21Z</published>
176
- <link type="text/html" href="http://twitter.com/Cynthiaiss/statuses/93342417830420482" rel="alternate"/>
177
- <title>@CokeArayaT andai con los monkeys?</title>
178
- <content type="html">&lt;a href=&quot;http://twitter.com/CokeArayaT&quot;&gt;@CokeArayaT&lt;/a&gt; andai con los &lt;b&gt;monkeys&lt;/b&gt;?</content>
179
- <updated>2011-07-19T15:32:21Z</updated>
180
- <link type="image/png" href="http://a3.twimg.com/profile_images/1436769001/sanpedro_normal.jpg" rel="image"/>
174
+ <id>tag:search.twitter.com,2005:93416617517662208</id>
175
+ <published>2011-07-19T20:27:11Z</published>
176
+ <link type="text/html" href="http://twitter.com/perceptionalize/statuses/93416617517662208" rel="alternate"/>
177
+ <title>monkeys and copyright... http://huff.to/o6ySUs</title>
178
+ <content type="html">&lt;b&gt;monkeys&lt;/b&gt; and copyright... &lt;a href=&quot;http://huff.to/o6ySUs&quot;&gt;http://huff.to/o6ySUs&lt;/a&gt;</content>
179
+ <updated>2011-07-19T20:27:11Z</updated>
180
+ <link type="image/png" href="http://a2.twimg.com/profile_images/1184639208/Unbenannt-1_normal.jpg" rel="image"/>
181
181
  <twitter:geo>
182
182
  </twitter:geo>
183
183
  <twitter:metadata>
184
184
  <twitter:result_type>recent</twitter:result_type>
185
185
  </twitter:metadata>
186
- <twitter:source>&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;</twitter:source>
187
- <twitter:lang>fr</twitter:lang>
186
+ <twitter:source>&lt;a href=&quot;http://www.tweetdeck.com&quot; rel=&quot;nofollow&quot;&gt;TweetDeck&lt;/a&gt;</twitter:source>
187
+ <twitter:lang>en</twitter:lang>
188
188
  <author>
189
- <name>Cynthiaiss (Cynthia)</name>
190
- <uri>http://twitter.com/Cynthiaiss</uri>
189
+ <name>perceptionalize (Maria Schreiber)</name>
190
+ <uri>http://twitter.com/perceptionalize</uri>
191
191
  </author>
192
192
  </entry>
193
193
  <entry>
194
- <id>tag:search.twitter.com,2005:93342363107336192</id>
195
- <published>2011-07-19T15:32:08Z</published>
196
- <link type="text/html" href="http://twitter.com/CraxyHouston/statuses/93342363107336192" rel="alternate"/>
197
- <title>OMG! Jeg er HELT OPPE OG K&#216;RE!! 100 Monkeys tickets are BOUGHT!!!! Can't wait!</title>
198
- <content type="html">OMG! Jeg er HELT OPPE OG K&#216;RE!! 100 &lt;b&gt;Monkeys&lt;/b&gt; tickets are BOUGHT!!!! Can&amp;apos;t wait!</content>
199
- <updated>2011-07-19T15:32:08Z</updated>
200
- <link type="image/png" href="http://a0.twimg.com/profile_images/1444587301/DSC00106_normal.JPG" rel="image"/>
194
+ <id>tag:search.twitter.com,2005:93416611993747456</id>
195
+ <published>2011-07-19T20:27:10Z</published>
196
+ <link type="text/html" href="http://twitter.com/EvaEvsEva/statuses/93416611993747456" rel="alternate"/>
197
+ <title>Photoset: fuckyeaharcticmonkeys: http://tumblr.com/xjz3l8gju8</title>
198
+ <content type="html">Photoset: fuckyeaharcticmonkeys: &lt;a href=&quot;http://tumblr.com/xjz3l8gju8&quot;&gt;http://tumblr.com/xjz3l8gju8&lt;/a&gt;</content>
199
+ <updated>2011-07-19T20:27:10Z</updated>
200
+ <link type="image/png" href="http://a3.twimg.com/profile_images/1440117754/DSC02724__479x640__normal.jpg" rel="image"/>
201
201
  <twitter:geo>
202
202
  </twitter:geo>
203
203
  <twitter:metadata>
204
204
  <twitter:result_type>recent</twitter:result_type>
205
205
  </twitter:metadata>
206
- <twitter:source>&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;</twitter:source>
207
- <twitter:lang>da</twitter:lang>
206
+ <twitter:source>&lt;a href=&quot;http://www.tumblr.com/&quot; rel=&quot;nofollow&quot;&gt;Tumblr&lt;/a&gt;</twitter:source>
207
+ <twitter:lang>fr</twitter:lang>
208
208
  <author>
209
- <name>CraxyHouston (Christine Houston)</name>
210
- <uri>http://twitter.com/CraxyHouston</uri>
209
+ <name>EvaEvsEva (Eva Paula )</name>
210
+ <uri>http://twitter.com/EvaEvsEva</uri>
211
211
  </author>
212
212
  </entry>
213
213
  <entry>
214
- <id>tag:search.twitter.com,2005:93342145041268737</id>
215
- <published>2011-07-19T15:31:16Z</published>
216
- <link type="text/html" href="http://twitter.com/trevisj/statuses/93342145041268737" rel="alternate"/>
217
- <title>playing with monkeys (@ Barefoot N Motion) http://4sq.com/paCwAv</title>
218
- <content type="html">playing with &lt;b&gt;monkeys&lt;/b&gt; (@ Barefoot N Motion) &lt;a href=&quot;http://4sq.com/paCwAv&quot;&gt;http://4sq.com/paCwAv&lt;/a&gt;</content>
219
- <updated>2011-07-19T15:31:16Z</updated>
220
- <link type="image/png" href="http://a0.twimg.com/profile_images/1429886917/CamAvi_normal.jpg" rel="image"/>
214
+ <id>tag:search.twitter.com,2005:93416597934456832</id>
215
+ <published>2011-07-19T20:27:07Z</published>
216
+ <link type="text/html" href="http://twitter.com/rachelleannee/statuses/93416597934456832" rel="alternate"/>
217
+ <title>LOL Kathleen's dream about monkeys</title>
218
+ <content type="html">LOL Kathleen&amp;apos;s dream about &lt;b&gt;monkeys&lt;/b&gt;</content>
219
+ <updated>2011-07-19T20:27:07Z</updated>
220
+ <link type="image/png" href="http://a1.twimg.com/profile_images/1432495459/Picture0222_normal.jpg" rel="image"/>
221
221
  <twitter:geo>
222
222
  </twitter:geo>
223
223
  <twitter:metadata>
224
224
  <twitter:result_type>recent</twitter:result_type>
225
225
  </twitter:metadata>
226
- <twitter:source>&lt;a href=&quot;http://foursquare.com&quot; rel=&quot;nofollow&quot;&gt;foursquare&lt;/a&gt;</twitter:source>
226
+ <twitter:source>&lt;a href=&quot;http://twitter.com/devices&quot; rel=&quot;nofollow&quot;&gt;txt&lt;/a&gt;</twitter:source>
227
227
  <twitter:lang>en</twitter:lang>
228
228
  <author>
229
- <name>trevisj (Trevis J. Thompson)</name>
230
- <uri>http://twitter.com/trevisj</uri>
229
+ <name>rachelleannee (Rachelle A. Rivera)</name>
230
+ <uri>http://twitter.com/rachelleannee</uri>
231
231
  </author>
232
232
  </entry>
233
233
  <entry>
234
- <id>tag:search.twitter.com,2005:93342071338958848</id>
235
- <published>2011-07-19T15:30:58Z</published>
236
- <link type="text/html" href="http://twitter.com/lizsoldtheworld/statuses/93342071338958848" rel="alternate"/>
237
- <title>Tireia dor de n&#227;o terem falado &quot;ARCTIC MONKEYS ESTAR&#193; NO SWU&quot; reclamando no Facebook. Juventude Rebelde &#233; isso.</title>
238
- <content type="html">Tireia dor de n&#227;o terem falado &amp;quot;ARCTIC &lt;b&gt;MONKEYS&lt;/b&gt; ESTAR&#193; NO SWU&amp;quot; reclamando no Facebook. Juventude Rebelde &#233; isso.</content>
239
- <updated>2011-07-19T15:30:58Z</updated>
240
- <link type="image/png" href="http://a3.twimg.com/profile_images/1430042751/4646_normal.JPG" rel="image"/>
234
+ <id>tag:search.twitter.com,2005:93416567165026304</id>
235
+ <published>2011-07-19T20:26:59Z</published>
236
+ <link type="text/html" href="http://twitter.com/tfalls13/statuses/93416567165026304" rel="alternate"/>
237
+ <title>@Cubanaaa_ @bigwilli69 You may act white..but just know that between the both of yall #mixedpeople on us &quot;porch monkeys&quot;.</title>
238
+ <content type="html">&lt;a href=&quot;http://twitter.com/Cubanaaa_&quot;&gt;@Cubanaaa_&lt;/a&gt; &lt;a href=&quot;http://twitter.com/bigwilli69&quot;&gt;@bigwilli69&lt;/a&gt; You may act white..but just know that between the both of yall &lt;a href=&quot;http://search.twitter.com/search?q=%23mixedpeople&quot; onclick=&quot;pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#mixedpeople');&quot;&gt;#mixedpeople&lt;/a&gt; on us &amp;quot;porch &lt;b&gt;monkeys&lt;/b&gt;&amp;quot;.</content>
239
+ <updated>2011-07-19T20:26:59Z</updated>
240
+ <link type="image/png" href="http://a1.twimg.com/profile_images/1433774027/2SVCbC4R_normal" rel="image"/>
241
241
  <twitter:geo>
242
242
  </twitter:geo>
243
243
  <twitter:metadata>
244
244
  <twitter:result_type>recent</twitter:result_type>
245
245
  </twitter:metadata>
246
- <twitter:source>&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;</twitter:source>
247
- <twitter:lang>pt</twitter:lang>
246
+ <twitter:source>&lt;a href=&quot;http://twitter.com/download/android&quot; rel=&quot;nofollow&quot;&gt;Twitter for Android&lt;/a&gt;</twitter:source>
247
+ <twitter:lang>en</twitter:lang>
248
248
  <author>
249
- <name>lizsoldtheworld (Lizandra Tarsilla)</name>
250
- <uri>http://twitter.com/lizsoldtheworld</uri>
249
+ <name>tfalls13 (Trent Falls )</name>
250
+ <uri>http://twitter.com/tfalls13</uri>
251
251
  </author>
252
252
  </entry>
253
253
  <entry>
254
- <id>tag:search.twitter.com,2005:93341983296331777</id>
255
- <published>2011-07-19T15:30:37Z</published>
256
- <link type="text/html" href="http://twitter.com/iKarley/statuses/93341983296331777" rel="alternate"/>
257
- <title>these lil monkeys on angry birds be cheating</title>
258
- <content type="html">these lil &lt;b&gt;monkeys&lt;/b&gt; on angry birds be cheating</content>
259
- <updated>2011-07-19T15:30:37Z</updated>
260
- <link type="image/png" href="http://a0.twimg.com/profile_images/1444033404/230352_10150593503575501_605185500_18633497_1762883_n_normal.jpg" rel="image"/>
254
+ <id>tag:search.twitter.com,2005:93416537817485312</id>
255
+ <published>2011-07-19T20:26:52Z</published>
256
+ <link type="text/html" href="http://twitter.com/andyohara52/statuses/93416537817485312" rel="alternate"/>
257
+ <title>The three wise monkeys. Not me. Not me and Not me. Cant see Cant hear Cant speak</title>
258
+ <content type="html">The three wise &lt;b&gt;monkeys&lt;/b&gt;. Not me. Not me and Not me. Cant see Cant hear Cant speak</content>
259
+ <updated>2011-07-19T20:26:52Z</updated>
260
+ <link type="image/png" href="http://a1.twimg.com/profile_images/1368528953/63474592352032250_normal.jpg" rel="image"/>
261
261
  <twitter:geo>
262
262
  </twitter:geo>
263
263
  <twitter:metadata>
264
264
  <twitter:result_type>recent</twitter:result_type>
265
265
  </twitter:metadata>
266
- <twitter:source>&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;</twitter:source>
266
+ <twitter:source>&lt;a href=&quot;http://www.snaptu.com&quot; rel=&quot;nofollow&quot;&gt;Snaptu&lt;/a&gt;</twitter:source>
267
267
  <twitter:lang>en</twitter:lang>
268
268
  <author>
269
- <name>iKarley (Ambitious Girl &#175;\_(&#12484;)</name>
270
- <uri>http://twitter.com/iKarley</uri>
269
+ <name>andyohara52 (andrew ohara)</name>
270
+ <uri>http://twitter.com/andyohara52</uri>
271
271
  </author>
272
272
  </entry>
273
273
  <entry>
274
- <id>tag:search.twitter.com,2005:93341968255565824</id>
275
- <published>2011-07-19T15:30:34Z</published>
276
- <link type="text/html" href="http://twitter.com/hussain_info/statuses/93341968255565824" rel="alternate"/>
277
- <title>@khalidalkhalifa #bahrain Defense Forced calls the oppositions monkeys! what a civilized country! is this allowed?! #BDFmonkey #shame</title>
278
- <content type="html">&lt;a href=&quot;http://twitter.com/khalidalkhalifa&quot;&gt;@khalidalkhalifa&lt;/a&gt; &lt;a href=&quot;http://search.twitter.com/search?q=%23bahrain&quot; onclick=&quot;pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#bahrain');&quot;&gt;#bahrain&lt;/a&gt; Defense Forced calls the oppositions &lt;b&gt;monkeys&lt;/b&gt;! what a civilized country! is this allowed?! &lt;a href=&quot;http://search.twitter.com/search?q=%23BDFmonkey&quot; onclick=&quot;pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#BDFmonkey');&quot;&gt;#BDFmonkey&lt;/a&gt; &lt;a href=&quot;http://search.twitter.com/search?q=%23shame&quot; onclick=&quot;pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#shame');&quot;&gt;#shame&lt;/a&gt;</content>
279
- <updated>2011-07-19T15:30:34Z</updated>
280
- <link type="image/png" href="http://a2.twimg.com/profile_images/1362190046/180021_1887317301249_1190928841_32320916_7660912_n_normal.jpg" rel="image"/>
274
+ <id>tag:search.twitter.com,2005:93416516598505472</id>
275
+ <published>2011-07-19T20:26:47Z</published>
276
+ <link type="text/html" href="http://twitter.com/Mr_Blackett/statuses/93416516598505472" rel="alternate"/>
277
+ <title>Monkeys are the coolest animals.</title>
278
+ <content type="html">&lt;b&gt;Monkeys&lt;/b&gt; are the coolest animals.</content>
279
+ <updated>2011-07-19T20:26:47Z</updated>
280
+ <link type="image/png" href="http://a1.twimg.com/profile_images/1449526393/b4_normal.jpg" rel="image"/>
281
281
  <twitter:geo>
282
282
  </twitter:geo>
283
283
  <twitter:metadata>
@@ -286,28 +286,28 @@
286
286
  <twitter:source>&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;</twitter:source>
287
287
  <twitter:lang>en</twitter:lang>
288
288
  <author>
289
- <name>hussain_info (Hussain Yousif)</name>
290
- <uri>http://twitter.com/hussain_info</uri>
289
+ <name>Mr_Blackett (Brennon Blackett)</name>
290
+ <uri>http://twitter.com/Mr_Blackett</uri>
291
291
  </author>
292
292
  </entry>
293
293
  <entry>
294
- <id>tag:search.twitter.com,2005:93341960458350593</id>
295
- <published>2011-07-19T15:30:32Z</published>
296
- <link type="text/html" href="http://twitter.com/captainpiccard/statuses/93341960458350593" rel="alternate"/>
297
- <title>hey @spotify your service is ok, but your client software was coded by a horde of blind zombie monkeys...</title>
298
- <content type="html">hey &lt;a href=&quot;http://twitter.com/spotify&quot;&gt;@spotify&lt;/a&gt; your service is ok, but your client software was coded by a horde of blind zombie &lt;b&gt;monkeys&lt;/b&gt;...</content>
299
- <updated>2011-07-19T15:30:32Z</updated>
300
- <link type="image/png" href="http://a2.twimg.com/profile_images/1431735553/Mobile_Photo_May_12__2010_10_33_04_AM_normal.jpg" rel="image"/>
294
+ <id>tag:search.twitter.com,2005:93416506418925568</id>
295
+ <published>2011-07-19T20:26:45Z</published>
296
+ <link type="text/html" href="http://twitter.com/muzza299/statuses/93416506418925568" rel="alternate"/>
297
+ <title>@chiefie @bebe33 @ronindotca timing is everything. NZ's always last on the list. Unless it's in beta. Then we're the test-monkeys.</title>
298
+ <content type="html">&lt;a href=&quot;http://twitter.com/chiefie&quot;&gt;@chiefie&lt;/a&gt; &lt;a href=&quot;http://twitter.com/bebe33&quot;&gt;@bebe33&lt;/a&gt; &lt;a href=&quot;http://twitter.com/ronindotca&quot;&gt;@ronindotca&lt;/a&gt; timing is everything. NZ&amp;apos;s always last on the list. Unless it&amp;apos;s in beta. Then we&amp;apos;re the test-&lt;b&gt;monkeys&lt;/b&gt;.</content>
299
+ <updated>2011-07-19T20:26:45Z</updated>
300
+ <link type="image/png" href="http://a3.twimg.com/profile_images/1282082203/muzza299_normal.jpeg" rel="image"/>
301
301
  <twitter:geo>
302
302
  </twitter:geo>
303
303
  <twitter:metadata>
304
304
  <twitter:result_type>recent</twitter:result_type>
305
305
  </twitter:metadata>
306
- <twitter:source>&lt;a href=&quot;http://www.nibirutech.com&quot; rel=&quot;nofollow&quot;&gt;TwitBird&lt;/a&gt;</twitter:source>
306
+ <twitter:source>&lt;a href=&quot;http://www.osfoora.com&quot; rel=&quot;nofollow&quot;&gt;Osfoora for iPhone&lt;/a&gt;</twitter:source>
307
307
  <twitter:lang>en</twitter:lang>
308
308
  <author>
309
- <name>captainpiccard (Quase)</name>
310
- <uri>http://twitter.com/captainpiccard</uri>
309
+ <name>muzza299 (Hugh McCracken)</name>
310
+ <uri>http://twitter.com/muzza299</uri>
311
311
  </author>
312
312
  </entry>
313
313
  </feed>
data/test/helper.rb CHANGED
@@ -15,11 +15,6 @@ $LOAD_PATH.unshift(File.dirname(__FILE__))
15
15
  require 'feedzirra-redis'
16
16
 
17
17
  DataMapper.setup(:default, {:adapter => 'redis'})
18
- FEED_URL = 'http://search.twitter.com/search.atom?q=monkeys'
19
-
20
- require 'fakeweb'
21
- FakeWeb.register_uri( :get, FEED_URL,
22
- :body => File.read('test/fixtures/monkeys_old.atom') )
23
18
 
24
19
  class Test::Unit::TestCase
25
20
  end
@@ -3,9 +3,19 @@ require 'helper'
3
3
  class TestFeedzirraRedis < Test::Unit::TestCase
4
4
  include FeedzirraRedis
5
5
 
6
+ # Fakeweb reimplemented with symlinks! :-(
7
+ def use_feed(feed)
8
+ real_file = File.join(File.dirname(__FILE__), 'fixtures', "monkeys_#{feed.to_s}.atom")
9
+ symlink = File.join(File.dirname(__FILE__), 'fixtures', 'monkeys.atom')
10
+ File.delete symlink if File.symlink? symlink
11
+ File.symlink real_file, symlink
12
+ $feed_url = "file://#{symlink}"
13
+ end
14
+
6
15
  def setup
7
16
  Feed.all.destroy
8
17
  Entry.all.destroy
18
+ use_feed(:old)
9
19
  end
10
20
 
11
21
  context 'A feed' do
@@ -19,34 +29,45 @@ class TestFeedzirraRedis < Test::Unit::TestCase
19
29
 
20
30
  context 'fetch_and_parse' do
21
31
  should 'create a feed' do
22
- Feed.fetch_and_parse(FEED_URL)
32
+ Feed.fetch_and_parse($feed_url)
23
33
  assert Feed.count == 1
24
34
  end
25
35
 
26
36
  should 'return a feed object' do
27
- feed = Feed.fetch_and_parse(FEED_URL)
37
+ feed = Feed.fetch_and_parse($feed_url)
28
38
  assert feed.kind_of? Feed
29
39
  end
30
40
 
31
41
  should 'create some entries' do
32
- Feed.fetch_and_parse(FEED_URL)
42
+ Feed.fetch_and_parse($feed_url)
33
43
  assert Feed.first.entries.size >= 0
34
44
  end
35
45
 
36
46
  should 'not create a second feed if an existing feed has identical feed_url' do
37
- Feed.fetch_and_parse(FEED_URL)
47
+ Feed.fetch_and_parse($feed_url)
38
48
  assert Feed.count == 1
39
- Feed.fetch_and_parse(FEED_URL)
49
+ Feed.fetch_and_parse($feed_url)
40
50
  assert Feed.count == 1
41
51
  end
42
52
 
43
53
  should 'add more entries for the same feed url' do
44
- feed = Feed.fetch_and_parse(FEED_URL)
54
+ feed = Feed.fetch_and_parse($feed_url)
55
+ puts feed.entries.last.title
56
+ count_entries = feed.entries.count
57
+ use_feed(:new)
58
+ feed = Feed.fetch_and_parse($feed_url)
59
+ puts feed.entries.last.title
60
+ assert count_entries < feed.entries.count, "Expected increase from #{count_entries} to #{feed.entries.count} (total entries: #{Entry.count})"
61
+ end
62
+ end
63
+
64
+ context 'update' do
65
+ should 'update a single feed' do
66
+ feed = Feed.fetch_and_parse($feed_url)
45
67
  count_entries = feed.entries.count
46
- FakeWeb.register_uri( :get, FEED_URL,
47
- :body => File.read('test/fixtures/monkeys_new.atom') )
48
- Feed.fetch_and_parse(FEED_URL)
49
- assert count_entries < Feed.entries.count
68
+ use_feed(:new)
69
+ feed = Feed.update(feed)
70
+ assert count_entries < feed.entries.count, "Expected increase from #{count_entries} to #{feed.entries.count} (total entries: #{Entry.count})"
50
71
  end
51
72
  end
52
73
 
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: feedzirra-redis
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.0
5
+ version: 0.1.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Logan Koester
@@ -90,17 +90,6 @@ dependencies:
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: *id007
93
- - !ruby/object:Gem::Dependency
94
- name: fakeweb
95
- requirement: &id008 !ruby/object:Gem::Requirement
96
- none: false
97
- requirements:
98
- - - ">="
99
- - !ruby/object:Gem::Version
100
- version: "0"
101
- type: :development
102
- prerelease: false
103
- version_requirements: *id008
104
93
  description: Dead simple feed persistance... because you shouldn't need a MySQL server just to include a few RSS items on a page
105
94
  email: lkoester@agoragames.com
106
95
  executables: []
@@ -121,6 +110,7 @@ files:
121
110
  - VERSION
122
111
  - feedzirra-redis.gemspec
123
112
  - lib/feedzirra-redis.rb
113
+ - test/fixtures/monkeys.atom
124
114
  - test/fixtures/monkeys_new.atom
125
115
  - test/fixtures/monkeys_old.atom
126
116
  - test/helper.rb
@@ -139,7 +129,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
139
129
  requirements:
140
130
  - - ">="
141
131
  - !ruby/object:Gem::Version
142
- hash: 4300112489055779125
132
+ hash: 2747245717037483256
143
133
  segments:
144
134
  - 0
145
135
  version: "0"