urss 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +0 -1
- data/README.md +44 -0
- data/lib/urss/feed/atom.rb +3 -0
- data/lib/urss/feed/atom_entry.rb +2 -21
- data/lib/urss/media.rb +4 -4
- data/lib/urss/version.rb +1 -1
- data/spec/support/fixtures/flickr_atom.xml +459 -0
- data/spec/support/fixtures/flickr_geo.xml +590 -0
- data/spec/support/fixtures/flickr_rss_200.xml +367 -0
- data/spec/support/webmocks.rb +4 -1
- data/spec/urss_spec.rb +40 -12
- metadata +10 -4
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -18,6 +18,8 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
|
21
|
+
### Simple RSS
|
22
|
+
|
21
23
|
````ruby
|
22
24
|
rss = Urss.at("http://www.ruby-lang.org/en/feeds/news.rss")
|
23
25
|
rss.title
|
@@ -36,6 +38,48 @@ rss.entries.first.created_at
|
|
36
38
|
#=> "Fri, 20 Apr 2012 03:19:04 GMT"
|
37
39
|
rss.entries.first.url
|
38
40
|
#=> "http://www.ruby-lang.org/en/news/2012/04/20/ruby-1-9-3-p194-is-released/"
|
41
|
+
rss.entries.first.content.truncate(200)
|
42
|
+
#=> "<p>Ruby 1.9.2-p320 is released.</p><p>This release include Security Fix for RubyGems: SSL server verification failure for remote repository.\nAnd many bugs are fixed in this release.</p> <h2><a name..."
|
43
|
+
````
|
44
|
+
|
45
|
+
### RSS With medias
|
46
|
+
|
47
|
+
````ruby
|
48
|
+
rss = Urss.at("http://api.flickr.com/services/feeds/photos_public.gne?id=90313708@N00&lang=en-us&format=rss_200")
|
49
|
+
rss.title
|
50
|
+
#=> "Uploads from CoolbieRe"
|
51
|
+
rss.updated_at
|
52
|
+
#=> "Mon, 23 Apr 2012 09:48:57 -0700"
|
53
|
+
rss.entries.first.title
|
54
|
+
#=> "vertical panorama"
|
55
|
+
rss.entries.first.medias.size
|
56
|
+
#=> 1
|
57
|
+
rss.entries.first.medias.first.title
|
58
|
+
#=> "vertical panorama"
|
59
|
+
rss.entries.first.medias.first.thumbnail_url
|
60
|
+
#=> http://farm9.staticflickr.com/8159/6960539484_56665aba46_s.jpg
|
61
|
+
rss.entries.first.medias.first.content_url
|
62
|
+
#=> http://farm9.staticflickr.com/8159/6960539484_56665aba46_b.jpg
|
63
|
+
````
|
64
|
+
|
65
|
+
### Atom With medias
|
66
|
+
|
67
|
+
````ruby
|
68
|
+
rss = Urss.at("http://api.flickr.com/services/feeds/photos_public.gne?id=90313708@N00&lang=en-us&format=atom")
|
69
|
+
rss.title
|
70
|
+
#=> "Uploads from CoolbieRe"
|
71
|
+
rss.updated_at
|
72
|
+
#=> "2012-04-23T16:48:57Z"
|
73
|
+
rss.entries.first.title
|
74
|
+
#=> "vertical panorama"
|
75
|
+
rss.entries.first.medias.size
|
76
|
+
#=> 1
|
77
|
+
rss.entries.first.medias.first.title
|
78
|
+
#=> nil
|
79
|
+
rss.entries.first.medias.first.thumbnail_url
|
80
|
+
#=> nil
|
81
|
+
rss.entries.first.medias.first.content_url
|
82
|
+
#=> http://farm9.staticflickr.com/8159/6960539484_56665aba46_b.jpg
|
39
83
|
````
|
40
84
|
|
41
85
|
## Contributing
|
data/lib/urss/feed/atom.rb
CHANGED
@@ -7,6 +7,9 @@ class Urss::Feed::Atom < Urss::Feed
|
|
7
7
|
raise Urss::NotANokogiriInstance unless nokogiri_instance.is_a?(Nokogiri::XML::NodeSet)
|
8
8
|
feed_rss = self.new
|
9
9
|
feed_rss.title = nokogiri_instance.xpath("//#{namespace}#{root_node}/title").text
|
10
|
+
if (feed_rss.title.nil? || feed_rss.title.empty?)
|
11
|
+
feed_rss.title = nokogiri_instance.xpath("//#{namespace}#{root_node}/#{namespace}title").text
|
12
|
+
end
|
10
13
|
feed_rss.url = nokogiri_instance.xpath("//#{namespace}#{root_node}/#{namespace}link[@rel='self']").attr("href").value
|
11
14
|
feed_rss.description = nokogiri_instance.xpath("//#{namespace}#{root_node}/#{namespace}subtitle").text.strip
|
12
15
|
feed_rss.updated_at = nokogiri_instance.xpath("//#{namespace}#{root_node}/#{namespace}updated").text
|
data/lib/urss/feed/atom_entry.rb
CHANGED
@@ -13,27 +13,8 @@ class Urss::Feed::Atom::Entry < Urss::Feed::Entry
|
|
13
13
|
entry.author = nokogiri_instance.xpath("./#{namespace}author/#{namespace}name").text
|
14
14
|
entry.content = nokogiri_instance.xpath("./description").text
|
15
15
|
|
16
|
-
|
17
|
-
|
18
|
-
# Otherwise each media:* are different Urss::Media
|
19
|
-
single_media = nokogiri_instance.xpath("./media:content").size == 1
|
20
|
-
media = nil
|
21
|
-
nokogiri_instance.xpath("./media:*").each do |media_attributes|
|
22
|
-
if single_media
|
23
|
-
media = Urss::Media.new if media.nil?
|
24
|
-
media.update(media_attributes)
|
25
|
-
else
|
26
|
-
media = Urss::Media.new
|
27
|
-
media.update(media_attributes)
|
28
|
-
media_attributes.children.select{|child| child.class == Nokogiri::XML::Element}.each do |element|
|
29
|
-
media.update(element)
|
30
|
-
end
|
31
|
-
entry.medias << media
|
32
|
-
end
|
33
|
-
end
|
34
|
-
entry.medias << media if single_media
|
35
|
-
rescue Nokogiri::XML::XPath::SyntaxError
|
36
|
-
# No media element
|
16
|
+
if media_url = nokogiri_instance.xpath("./#{namespace}link[@rel='enclosure']").attr("href").value
|
17
|
+
entry.medias << Urss::Media.new(:content_url => media_url)
|
37
18
|
end
|
38
19
|
|
39
20
|
entry
|
data/lib/urss/media.rb
CHANGED
@@ -6,10 +6,10 @@ class Urss::Media
|
|
6
6
|
# ~~~~ Class methods ~~~~
|
7
7
|
|
8
8
|
# ~~~~ Instance methods ~~~~
|
9
|
-
def initialize
|
10
|
-
self.content_url = nil
|
11
|
-
self.title = nil
|
12
|
-
self.thumbnail_url = nil
|
9
|
+
def initialize(options={})
|
10
|
+
self.content_url = options[:content_url] || nil
|
11
|
+
self.title = options[:title] || nil
|
12
|
+
self.thumbnail_url = options[:thumbnail_url] || nil
|
13
13
|
end
|
14
14
|
|
15
15
|
def update(nokogiri_instance)
|
data/lib/urss/version.rb
CHANGED
@@ -0,0 +1,459 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
2
|
+
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:flickr="urn:flickr:user" xmlns:media="http://search.yahoo.com/mrss/">
|
3
|
+
<title>Uploads from CoolbieRe</title>
|
4
|
+
<link rel="self" href="http://api.flickr.com/services/feeds/photos_public.gne?id=90313708@N00&lang=en-us&format=atom"/>
|
5
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/"/>
|
6
|
+
<id>tag:flickr.com,2005:/photos/public/4301453</id>
|
7
|
+
<icon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</icon>
|
8
|
+
<subtitle/>
|
9
|
+
<updated>2012-04-23T16:48:57Z</updated>
|
10
|
+
<generator uri="http://www.flickr.com/">Flickr</generator>
|
11
|
+
<entry>
|
12
|
+
<title>vertical panorama</title>
|
13
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/6960539484/"/>
|
14
|
+
<id>tag:flickr.com,2005:/photo/6960539484</id>
|
15
|
+
<published>2012-04-23T16:48:57Z</published>
|
16
|
+
<updated>2012-04-23T16:48:57Z</updated>
|
17
|
+
<flickr:date_taken>2012-04-24T00:47:57-08:00</flickr:date_taken>
|
18
|
+
<dc:date.Taken>2012-04-24T00:47:57-08:00</dc:date.Taken>
|
19
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a photo:</p>
|
20
|
+
|
21
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/6960539484/" title="vertical panorama"><img src="http://farm9.staticflickr.com/8159/6960539484_56665aba46_m.jpg" width="133" height="240" alt="vertical panorama" /></a></p>
|
22
|
+
|
23
|
+
</content>
|
24
|
+
<author>
|
25
|
+
<name>CoolbieRe</name>
|
26
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
27
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
28
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
29
|
+
</author>
|
30
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm9.staticflickr.com/8159/6960539484_56665aba46_b.jpg"/>
|
31
|
+
<category term="" scheme="http://www.flickr.com/photos/tags/"/>
|
32
|
+
</entry>
|
33
|
+
<entry>
|
34
|
+
<title>TOP OF EUROPE</title>
|
35
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/7106303067/"/>
|
36
|
+
<id>tag:flickr.com,2005:/photo/7106303067</id>
|
37
|
+
<published>2012-04-23T15:11:48Z</published>
|
38
|
+
<updated>2012-04-23T15:11:48Z</updated>
|
39
|
+
<flickr:date_taken>2012-02-28T18:22:35-08:00</flickr:date_taken>
|
40
|
+
<dc:date.Taken>2012-02-28T18:22:35-08:00</dc:date.Taken>
|
41
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a photo:</p>
|
42
|
+
|
43
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/7106303067/" title="TOP OF EUROPE"><img src="http://farm8.staticflickr.com/7280/7106303067_36938a35f7_m.jpg" width="240" height="79" alt="TOP OF EUROPE" /></a></p>
|
44
|
+
|
45
|
+
</content>
|
46
|
+
<author>
|
47
|
+
<name>CoolbieRe</name>
|
48
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
49
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
50
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
51
|
+
</author>
|
52
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm8.staticflickr.com/7280/7106303067_36938a35f7_b.jpg"/>
|
53
|
+
<category term="" scheme="http://www.flickr.com/photos/tags/"/>
|
54
|
+
</entry>
|
55
|
+
<entry>
|
56
|
+
<title>Ski</title>
|
57
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/7106179831/"/>
|
58
|
+
<id>tag:flickr.com,2005:/photo/7106179831</id>
|
59
|
+
<published>2012-04-23T14:31:12Z</published>
|
60
|
+
<updated>2012-04-23T14:31:12Z</updated>
|
61
|
+
<flickr:date_taken>2012-02-26T23:35:09-08:00</flickr:date_taken>
|
62
|
+
<dc:date.Taken>2012-02-26T23:35:09-08:00</dc:date.Taken>
|
63
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a photo:</p>
|
64
|
+
|
65
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/7106179831/" title="Ski"><img src="http://farm9.staticflickr.com/8153/7106179831_63c34d7cf5_m.jpg" width="240" height="150" alt="Ski" /></a></p>
|
66
|
+
|
67
|
+
</content>
|
68
|
+
<author>
|
69
|
+
<name>CoolbieRe</name>
|
70
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
71
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
72
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
73
|
+
</author>
|
74
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm9.staticflickr.com/8153/7106179831_63c34d7cf5_b.jpg"/>
|
75
|
+
<category term="" scheme="http://www.flickr.com/photos/tags/"/>
|
76
|
+
</entry>
|
77
|
+
<entry>
|
78
|
+
<title>made in switzerland</title>
|
79
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/6960069022/"/>
|
80
|
+
<id>tag:flickr.com,2005:/photo/6960069022</id>
|
81
|
+
<published>2012-04-23T14:17:37Z</published>
|
82
|
+
<updated>2012-04-23T14:17:37Z</updated>
|
83
|
+
<flickr:date_taken>2012-02-28T17:03:25-08:00</flickr:date_taken>
|
84
|
+
<dc:date.Taken>2012-02-28T17:03:25-08:00</dc:date.Taken>
|
85
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a photo:</p>
|
86
|
+
|
87
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/6960069022/" title="made in switzerland"><img src="http://farm9.staticflickr.com/8143/6960069022_8fd05023c4_m.jpg" width="160" height="240" alt="made in switzerland" /></a></p>
|
88
|
+
|
89
|
+
</content>
|
90
|
+
<author>
|
91
|
+
<name>CoolbieRe</name>
|
92
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
93
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
94
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
95
|
+
</author>
|
96
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm9.staticflickr.com/8143/6960069022_8fd05023c4_b.jpg"/>
|
97
|
+
<category term="" scheme="http://www.flickr.com/photos/tags/"/>
|
98
|
+
</entry>
|
99
|
+
<entry>
|
100
|
+
<title>bird</title>
|
101
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/7106139217/"/>
|
102
|
+
<id>tag:flickr.com,2005:/photo/7106139217</id>
|
103
|
+
<published>2012-04-23T14:17:17Z</published>
|
104
|
+
<updated>2012-04-23T14:17:17Z</updated>
|
105
|
+
<flickr:date_taken>2012-02-28T16:51:42-08:00</flickr:date_taken>
|
106
|
+
<dc:date.Taken>2012-02-28T16:51:42-08:00</dc:date.Taken>
|
107
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a photo:</p>
|
108
|
+
|
109
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/7106139217/" title="bird"><img src="http://farm9.staticflickr.com/8150/7106139217_ddbaf53e27_m.jpg" width="240" height="150" alt="bird" /></a></p>
|
110
|
+
|
111
|
+
</content>
|
112
|
+
<author>
|
113
|
+
<name>CoolbieRe</name>
|
114
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
115
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
116
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
117
|
+
</author>
|
118
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm9.staticflickr.com/8150/7106139217_ddbaf53e27_b.jpg"/>
|
119
|
+
<category term="" scheme="http://www.flickr.com/photos/tags/"/>
|
120
|
+
</entry>
|
121
|
+
<entry>
|
122
|
+
<title>on the way to Jungfrau</title>
|
123
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/7106138171/"/>
|
124
|
+
<id>tag:flickr.com,2005:/photo/7106138171</id>
|
125
|
+
<published>2012-04-23T14:16:55Z</published>
|
126
|
+
<updated>2012-04-23T14:16:55Z</updated>
|
127
|
+
<flickr:date_taken>2012-02-28T14:44:27-08:00</flickr:date_taken>
|
128
|
+
<dc:date.Taken>2012-02-28T14:44:27-08:00</dc:date.Taken>
|
129
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a photo:</p>
|
130
|
+
|
131
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/7106138171/" title="on the way to Jungfrau"><img src="http://farm8.staticflickr.com/7235/7106138171_7c66d0c66b_m.jpg" width="240" height="135" alt="on the way to Jungfrau" /></a></p>
|
132
|
+
|
133
|
+
</content>
|
134
|
+
<author>
|
135
|
+
<name>CoolbieRe</name>
|
136
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
137
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
138
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
139
|
+
</author>
|
140
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm8.staticflickr.com/7235/7106138171_7c66d0c66b_b.jpg"/>
|
141
|
+
<category term="" scheme="http://www.flickr.com/photos/tags/"/>
|
142
|
+
</entry>
|
143
|
+
<entry>
|
144
|
+
<title>zermatt</title>
|
145
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/7106136859/"/>
|
146
|
+
<id>tag:flickr.com,2005:/photo/7106136859</id>
|
147
|
+
<published>2012-04-23T14:16:27Z</published>
|
148
|
+
<updated>2012-04-23T14:16:27Z</updated>
|
149
|
+
<flickr:date_taken>2012-02-27T19:10:35-08:00</flickr:date_taken>
|
150
|
+
<dc:date.Taken>2012-02-27T19:10:35-08:00</dc:date.Taken>
|
151
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a photo:</p>
|
152
|
+
|
153
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/7106136859/" title="zermatt"><img src="http://farm8.staticflickr.com/7201/7106136859_dc0c666b81_m.jpg" width="160" height="240" alt="zermatt" /></a></p>
|
154
|
+
|
155
|
+
</content>
|
156
|
+
<author>
|
157
|
+
<name>CoolbieRe</name>
|
158
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
159
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
160
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
161
|
+
</author>
|
162
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm8.staticflickr.com/7201/7106136859_dc0c666b81_b.jpg"/>
|
163
|
+
<category term="" scheme="http://www.flickr.com/photos/tags/"/>
|
164
|
+
</entry>
|
165
|
+
<entry>
|
166
|
+
<title>trekking</title>
|
167
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/7106135579/"/>
|
168
|
+
<id>tag:flickr.com,2005:/photo/7106135579</id>
|
169
|
+
<published>2012-04-23T14:16:00Z</published>
|
170
|
+
<updated>2012-04-23T14:16:00Z</updated>
|
171
|
+
<flickr:date_taken>2012-02-26T21:07:59-08:00</flickr:date_taken>
|
172
|
+
<dc:date.Taken>2012-02-26T21:07:59-08:00</dc:date.Taken>
|
173
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a photo:</p>
|
174
|
+
|
175
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/7106135579/" title="trekking"><img src="http://farm9.staticflickr.com/8159/7106135579_ca9e16bcdb_m.jpg" width="240" height="150" alt="trekking" /></a></p>
|
176
|
+
|
177
|
+
</content>
|
178
|
+
<author>
|
179
|
+
<name>CoolbieRe</name>
|
180
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
181
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
182
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
183
|
+
</author>
|
184
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm9.staticflickr.com/8159/7106135579_ca9e16bcdb_b.jpg"/>
|
185
|
+
<category term="" scheme="http://www.flickr.com/photos/tags/"/>
|
186
|
+
</entry>
|
187
|
+
<entry>
|
188
|
+
<title>zoom in</title>
|
189
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/6960057926/"/>
|
190
|
+
<id>tag:flickr.com,2005:/photo/6960057926</id>
|
191
|
+
<published>2012-04-23T14:13:41Z</published>
|
192
|
+
<updated>2012-04-23T14:13:41Z</updated>
|
193
|
+
<flickr:date_taken>2012-02-26T21:06:25-08:00</flickr:date_taken>
|
194
|
+
<dc:date.Taken>2012-02-26T21:06:25-08:00</dc:date.Taken>
|
195
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a photo:</p>
|
196
|
+
|
197
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/6960057926/" title="zoom in"><img src="http://farm8.staticflickr.com/7223/6960057926_142443e6c9_m.jpg" width="240" height="160" alt="zoom in" /></a></p>
|
198
|
+
|
199
|
+
</content>
|
200
|
+
<author>
|
201
|
+
<name>CoolbieRe</name>
|
202
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
203
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
204
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
205
|
+
</author>
|
206
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm8.staticflickr.com/7223/6960057926_142443e6c9_b.jpg"/>
|
207
|
+
<category term="" scheme="http://www.flickr.com/photos/tags/"/>
|
208
|
+
</entry>
|
209
|
+
<entry>
|
210
|
+
<title>snow dog</title>
|
211
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/6960055354/"/>
|
212
|
+
<id>tag:flickr.com,2005:/photo/6960055354</id>
|
213
|
+
<published>2012-04-23T14:12:49Z</published>
|
214
|
+
<updated>2012-04-23T14:12:49Z</updated>
|
215
|
+
<flickr:date_taken>2012-02-26T20:57:28-08:00</flickr:date_taken>
|
216
|
+
<dc:date.Taken>2012-02-26T20:57:28-08:00</dc:date.Taken>
|
217
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a photo:</p>
|
218
|
+
|
219
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/6960055354/" title="snow dog"><img src="http://farm8.staticflickr.com/7083/6960055354_2f6c198cfe_m.jpg" width="240" height="160" alt="snow dog" /></a></p>
|
220
|
+
|
221
|
+
</content>
|
222
|
+
<author>
|
223
|
+
<name>CoolbieRe</name>
|
224
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
225
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
226
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
227
|
+
</author>
|
228
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm8.staticflickr.com/7083/6960055354_2f6c198cfe_b.jpg"/>
|
229
|
+
<category term="" scheme="http://www.flickr.com/photos/tags/"/>
|
230
|
+
</entry>
|
231
|
+
<entry>
|
232
|
+
<title>SWISS</title>
|
233
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/7106124323/"/>
|
234
|
+
<id>tag:flickr.com,2005:/photo/7106124323</id>
|
235
|
+
<published>2012-04-23T14:12:09Z</published>
|
236
|
+
<updated>2012-04-23T14:12:09Z</updated>
|
237
|
+
<flickr:date_taken>2012-02-26T20:15:23-08:00</flickr:date_taken>
|
238
|
+
<dc:date.Taken>2012-02-26T20:15:23-08:00</dc:date.Taken>
|
239
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a photo:</p>
|
240
|
+
|
241
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/7106124323/" title="SWISS"><img src="http://farm8.staticflickr.com/7179/7106124323_8f69f6c9b6_m.jpg" width="160" height="240" alt="SWISS" /></a></p>
|
242
|
+
|
243
|
+
</content>
|
244
|
+
<author>
|
245
|
+
<name>CoolbieRe</name>
|
246
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
247
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
248
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
249
|
+
</author>
|
250
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm8.staticflickr.com/7179/7106124323_8f69f6c9b6_b.jpg"/>
|
251
|
+
<category term="" scheme="http://www.flickr.com/photos/tags/"/>
|
252
|
+
</entry>
|
253
|
+
<entry>
|
254
|
+
<title>Matthorn and the Alps</title>
|
255
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/6960011200/"/>
|
256
|
+
<id>tag:flickr.com,2005:/photo/6960011200</id>
|
257
|
+
<published>2012-04-23T13:57:32Z</published>
|
258
|
+
<updated>2012-04-23T13:57:32Z</updated>
|
259
|
+
<flickr:date_taken>2012-02-27T14:46:27-08:00</flickr:date_taken>
|
260
|
+
<dc:date.Taken>2012-02-27T14:46:27-08:00</dc:date.Taken>
|
261
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a photo:</p>
|
262
|
+
|
263
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/6960011200/" title="Matthorn and the Alps"><img src="http://farm8.staticflickr.com/7247/6960011200_c97b299503_m.jpg" width="240" height="84" alt="Matthorn and the Alps" /></a></p>
|
264
|
+
|
265
|
+
</content>
|
266
|
+
<author>
|
267
|
+
<name>CoolbieRe</name>
|
268
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
269
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
270
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
271
|
+
</author>
|
272
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm8.staticflickr.com/7247/6960011200_c97b299503_b.jpg"/>
|
273
|
+
<category term="" scheme="http://www.flickr.com/photos/tags/"/>
|
274
|
+
</entry>
|
275
|
+
<entry>
|
276
|
+
<title>can't remember the name... again</title>
|
277
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/6953153608/"/>
|
278
|
+
<id>tag:flickr.com,2005:/photo/6953153608</id>
|
279
|
+
<published>2012-04-21T16:15:58Z</published>
|
280
|
+
<updated>2012-04-21T16:15:58Z</updated>
|
281
|
+
<flickr:date_taken>2012-02-28T15:30:17-08:00</flickr:date_taken>
|
282
|
+
<dc:date.Taken>2012-02-28T15:30:17-08:00</dc:date.Taken>
|
283
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a photo:</p>
|
284
|
+
|
285
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/6953153608/" title="can't remember the name... again"><img src="http://farm8.staticflickr.com/7214/6953153608_9091300a98_m.jpg" width="240" height="150" alt="can't remember the name... again" /></a></p>
|
286
|
+
|
287
|
+
</content>
|
288
|
+
<author>
|
289
|
+
<name>CoolbieRe</name>
|
290
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
291
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
292
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
293
|
+
</author>
|
294
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm8.staticflickr.com/7214/6953153608_9091300a98_b.jpg"/>
|
295
|
+
<category term="" scheme="http://www.flickr.com/photos/tags/"/>
|
296
|
+
</entry>
|
297
|
+
<entry>
|
298
|
+
<title>a road to the Everest</title>
|
299
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/6944388510/"/>
|
300
|
+
<id>tag:flickr.com,2005:/photo/6944388510</id>
|
301
|
+
<published>2012-04-18T14:12:39Z</published>
|
302
|
+
<updated>2012-04-18T14:12:39Z</updated>
|
303
|
+
<flickr:date_taken>2010-06-14T18:31:54-08:00</flickr:date_taken>
|
304
|
+
<dc:date.Taken>2010-06-14T18:31:54-08:00</dc:date.Taken>
|
305
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a photo:</p>
|
306
|
+
|
307
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/6944388510/" title="a road to the Everest"><img src="http://farm8.staticflickr.com/7187/6944388510_bfaacd8db4_m.jpg" width="240" height="150" alt="a road to the Everest" /></a></p>
|
308
|
+
|
309
|
+
</content>
|
310
|
+
<author>
|
311
|
+
<name>CoolbieRe</name>
|
312
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
313
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
314
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
315
|
+
</author>
|
316
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm8.staticflickr.com/7187/6944388510_bfaacd8db4_b.jpg"/>
|
317
|
+
<category term="" scheme="http://www.flickr.com/photos/tags/"/>
|
318
|
+
</entry>
|
319
|
+
<entry>
|
320
|
+
<title>himalayan range</title>
|
321
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/6941613748/"/>
|
322
|
+
<id>tag:flickr.com,2005:/photo/6941613748</id>
|
323
|
+
<published>2012-04-17T16:18:44Z</published>
|
324
|
+
<updated>2012-04-17T16:18:44Z</updated>
|
325
|
+
<flickr:date_taken>2010-06-16T10:57:23-08:00</flickr:date_taken>
|
326
|
+
<dc:date.Taken>2010-06-16T10:57:23-08:00</dc:date.Taken>
|
327
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a photo:</p>
|
328
|
+
|
329
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/6941613748/" title="himalayan range"><img src="http://farm8.staticflickr.com/7262/6941613748_c09bd50c6e_m.jpg" width="240" height="67" alt="himalayan range" /></a></p>
|
330
|
+
|
331
|
+
</content>
|
332
|
+
<author>
|
333
|
+
<name>CoolbieRe</name>
|
334
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
335
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
336
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
337
|
+
</author>
|
338
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm8.staticflickr.com/7262/6941613748_c09bd50c6e_b.jpg"/>
|
339
|
+
<category term="" scheme="http://www.flickr.com/photos/tags/"/>
|
340
|
+
</entry>
|
341
|
+
<entry>
|
342
|
+
<title>Osaka bay from Rokkosan</title>
|
343
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/6937951500/"/>
|
344
|
+
<id>tag:flickr.com,2005:/photo/6937951500</id>
|
345
|
+
<published>2012-04-16T14:42:15Z</published>
|
346
|
+
<updated>2012-04-16T14:42:15Z</updated>
|
347
|
+
<flickr:date_taken>2009-11-14T16:10:28-08:00</flickr:date_taken>
|
348
|
+
<dc:date.Taken>2009-11-14T16:10:28-08:00</dc:date.Taken>
|
349
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a photo:</p>
|
350
|
+
|
351
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/6937951500/" title="Osaka bay from Rokkosan"><img src="http://farm8.staticflickr.com/7128/6937951500_c073fb0d4d_m.jpg" width="240" height="64" alt="Osaka bay from Rokkosan" /></a></p>
|
352
|
+
|
353
|
+
</content>
|
354
|
+
<author>
|
355
|
+
<name>CoolbieRe</name>
|
356
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
357
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
358
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
359
|
+
</author>
|
360
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm8.staticflickr.com/7128/6937951500_c073fb0d4d_b.jpg"/>
|
361
|
+
<category term="" scheme="http://www.flickr.com/photos/tags/"/>
|
362
|
+
</entry>
|
363
|
+
<entry>
|
364
|
+
<title>a long milky way at Namtso lake,Tibet</title>
|
365
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/6922033550/"/>
|
366
|
+
<id>tag:flickr.com,2005:/photo/6922033550</id>
|
367
|
+
<published>2012-04-11T16:43:34Z</published>
|
368
|
+
<updated>2012-04-11T16:43:34Z</updated>
|
369
|
+
<flickr:date_taken>2010-06-17T22:47:39-08:00</flickr:date_taken>
|
370
|
+
<dc:date.Taken>2010-06-17T22:47:39-08:00</dc:date.Taken>
|
371
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a photo:</p>
|
372
|
+
|
373
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/6922033550/" title="a long milky way at Namtso lake,Tibet"><img src="http://farm8.staticflickr.com/7244/6922033550_cdde7e62b8_m.jpg" width="240" height="109" alt="a long milky way at Namtso lake,Tibet" /></a></p>
|
374
|
+
|
375
|
+
<p>i'm so surprise..<br />
|
376
|
+
<br />
|
377
|
+
after 2 years pass... i just found out that i have these photos that can merge to panorama w/ full body of milky way!</p></content>
|
378
|
+
<author>
|
379
|
+
<name>CoolbieRe</name>
|
380
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
381
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
382
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
383
|
+
</author>
|
384
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm8.staticflickr.com/7244/6922033550_cdde7e62b8_b.jpg"/>
|
385
|
+
<category term="" scheme="http://www.flickr.com/photos/tags/"/>
|
386
|
+
</entry>
|
387
|
+
<entry>
|
388
|
+
<title>Junction</title>
|
389
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/7067684923/"/>
|
390
|
+
<id>tag:flickr.com,2005:/photo/7067684923</id>
|
391
|
+
<published>2012-04-11T14:01:07Z</published>
|
392
|
+
<updated>2012-04-11T14:01:07Z</updated>
|
393
|
+
<flickr:date_taken>2012-04-11T07:01:07-08:00</flickr:date_taken>
|
394
|
+
<dc:date.Taken>2012-04-11T07:01:07-08:00</dc:date.Taken>
|
395
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a video:</p>
|
396
|
+
|
397
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/7067684923/" title="Junction"><img src="http://farm6.staticflickr.com/5339/7067684923_b4fe0a428c_m.jpg" width="240" height="135" alt="Junction" /></a></p>
|
398
|
+
|
399
|
+
</content>
|
400
|
+
<author>
|
401
|
+
<name>CoolbieRe</name>
|
402
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
403
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
404
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
405
|
+
</author>
|
406
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm6.staticflickr.com/5339/7067684923_b4fe0a428c_b.jpg"/>
|
407
|
+
<link rel="enclosure" type="application/x-shockwave-flash" href="http://www.flickr.com/apps/video/stewart.swf?v=109786&photo_id=7067684923"/>
|
408
|
+
<category term="hongkong" scheme="http://www.flickr.com/photos/tags/"/>
|
409
|
+
<category term="timelapse" scheme="http://www.flickr.com/photos/tags/"/>
|
410
|
+
</entry>
|
411
|
+
<entry>
|
412
|
+
<title>Roundabout</title>
|
413
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/6921596536/"/>
|
414
|
+
<id>tag:flickr.com,2005:/photo/6921596536</id>
|
415
|
+
<published>2012-04-11T13:57:46Z</published>
|
416
|
+
<updated>2012-04-11T13:57:46Z</updated>
|
417
|
+
<flickr:date_taken>2012-04-11T06:57:46-08:00</flickr:date_taken>
|
418
|
+
<dc:date.Taken>2012-04-11T06:57:46-08:00</dc:date.Taken>
|
419
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a video:</p>
|
420
|
+
|
421
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/6921596536/" title="Roundabout"><img src="http://farm6.staticflickr.com/5195/6921596536_13a9f0d2f0_m.jpg" width="240" height="135" alt="Roundabout" /></a></p>
|
422
|
+
|
423
|
+
</content>
|
424
|
+
<author>
|
425
|
+
<name>CoolbieRe</name>
|
426
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
427
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
428
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
429
|
+
</author>
|
430
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm6.staticflickr.com/5195/6921596536_13a9f0d2f0_b.jpg"/>
|
431
|
+
<link rel="enclosure" type="application/x-shockwave-flash" href="http://www.flickr.com/apps/video/stewart.swf?v=109786&photo_id=6921596536"/>
|
432
|
+
<category term="hongkong" scheme="http://www.flickr.com/photos/tags/"/>
|
433
|
+
<category term="timelapse" scheme="http://www.flickr.com/photos/tags/"/>
|
434
|
+
</entry>
|
435
|
+
<entry>
|
436
|
+
<title>Tram-lapse</title>
|
437
|
+
<link rel="alternate" type="text/html" href="http://www.flickr.com/photos/coolbiere/6917978614/"/>
|
438
|
+
<id>tag:flickr.com,2005:/photo/6917978614</id>
|
439
|
+
<published>2012-04-10T11:01:13Z</published>
|
440
|
+
<updated>2012-04-10T11:01:13Z</updated>
|
441
|
+
<flickr:date_taken>2012-04-10T04:01:13-08:00</flickr:date_taken>
|
442
|
+
<dc:date.Taken>2012-04-10T04:01:13-08:00</dc:date.Taken>
|
443
|
+
<content type="html"> <p><a href="http://www.flickr.com/people/coolbiere/">CoolbieRe</a> posted a video:</p>
|
444
|
+
|
445
|
+
<p><a href="http://www.flickr.com/photos/coolbiere/6917978614/" title="Tram-lapse"><img src="http://farm6.staticflickr.com/5238/6917978614_1e4936b508_m.jpg" width="240" height="135" alt="Tram-lapse" /></a></p>
|
446
|
+
|
447
|
+
</content>
|
448
|
+
<author>
|
449
|
+
<name>CoolbieRe</name>
|
450
|
+
<uri>http://www.flickr.com/people/coolbiere/</uri>
|
451
|
+
<flickr:nsid>90313708@N00</flickr:nsid>
|
452
|
+
<flickr:buddyicon>http://farm4.staticflickr.com/3378/buddyicons/90313708@N00.jpg?1327052857#90313708@N00</flickr:buddyicon>
|
453
|
+
</author>
|
454
|
+
<link rel="enclosure" type="image/jpeg" href="http://farm6.staticflickr.com/5238/6917978614_1e4936b508_b.jpg"/>
|
455
|
+
<link rel="enclosure" type="application/x-shockwave-flash" href="http://www.flickr.com/apps/video/stewart.swf?v=109786&photo_id=6917978614"/>
|
456
|
+
<category term="hongkong" scheme="http://www.flickr.com/photos/tags/"/>
|
457
|
+
<category term="timelapse" scheme="http://www.flickr.com/photos/tags/"/>
|
458
|
+
</entry>
|
459
|
+
</feed>
|