simple-rss 1.3.1 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/Rakefile +1 -6
- data/install.rb +40 -0
- data/lib/simple-rss.rb +36 -38
- data/simple-rss.gemspec +16 -0
- data/test/base/base_test.rb +11 -0
- metadata +58 -16
- data/Gemfile +0 -4
- data/Gemfile.lock +0 -24
- data/test/data/media_rss.xml +0 -465
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 293089a52d4ba959203215f2647723c796b0cdc9aefaf41e796f108011c7b060
|
4
|
+
data.tar.gz: 4e4d491c4e35a839e7ddd8ff10e907ac86e1a8bb635e2355ba0d317f36fb3291
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3270f9d0de25a9feb94dd3450d92eaea17fad7199578c16eab3cfdfe6df3db74d7fb2270e3564c4cb2739983169706e39a60d83c2860ddcaea6cb066bc6405c6
|
7
|
+
data.tar.gz: 942648d931e196257fbf55dc50b14d0ef98b600d8610107a029c1a200f01cfeecf52d21b77c5146062af75cbc09b0f7a2aeec112a73b30f76467dd9d46793e49
|
data/Rakefile
CHANGED
@@ -4,7 +4,6 @@ require 'rake'
|
|
4
4
|
require 'rake/testtask'
|
5
5
|
require 'rdoc/task'
|
6
6
|
require 'rubygems/package_task'
|
7
|
-
require 'rake/contrib/rubyforgepublisher'
|
8
7
|
require './lib/simple-rss'
|
9
8
|
|
10
9
|
PKG_VERSION = SimpleRSS::VERSION
|
@@ -40,7 +39,7 @@ desc "Create documentation"
|
|
40
39
|
Rake::RDocTask.new("doc") { |rdoc|
|
41
40
|
rdoc.title = "Simple RSS - A Flexible RSS and Atom reader for Ruby"
|
42
41
|
rdoc.rdoc_dir = 'html'
|
43
|
-
rdoc.rdoc_files.include('README')
|
42
|
+
rdoc.rdoc_files.include('README.markdown')
|
44
43
|
rdoc.rdoc_files.include('lib/*.rb')
|
45
44
|
}
|
46
45
|
|
@@ -66,10 +65,6 @@ spec = Gem::Specification.new do |s|
|
|
66
65
|
|
67
66
|
s.require_path = 'lib'
|
68
67
|
|
69
|
-
#### Documentation and testing.
|
70
|
-
|
71
|
-
s.has_rdoc = true
|
72
|
-
|
73
68
|
#### Author and project details.
|
74
69
|
|
75
70
|
s.author = "Lucas Carlson"
|
data/install.rb
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
require 'rbconfig'
|
2
|
+
require 'find'
|
3
|
+
require 'ftools'
|
4
|
+
|
5
|
+
include Config
|
6
|
+
|
7
|
+
# this was adapted from rdoc's install.rb by ways of Log4r
|
8
|
+
|
9
|
+
$sitedir = CONFIG["sitelibdir"]
|
10
|
+
unless $sitedir
|
11
|
+
version = CONFIG["MAJOR"] + "." + CONFIG["MINOR"]
|
12
|
+
$libdir = File.join(CONFIG["libdir"], "ruby", version)
|
13
|
+
$sitedir = $:.find {|x| x =~ /site_ruby/ }
|
14
|
+
if !$sitedir
|
15
|
+
$sitedir = File.join($libdir, "site_ruby")
|
16
|
+
elsif $sitedir !~ Regexp.quote(version)
|
17
|
+
$sitedir = File.join($sitedir, version)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
makedirs = %w{ shipping }
|
22
|
+
makedirs.each {|f| File::makedirs(File.join($sitedir, *f.split(/\//)))}
|
23
|
+
|
24
|
+
Dir.chdir("lib")
|
25
|
+
begin
|
26
|
+
require 'rubygems'
|
27
|
+
require 'rake'
|
28
|
+
rescue LoadError
|
29
|
+
puts
|
30
|
+
puts "Please install Gem and Rake from http://rubyforge.org/projects/rubygems and http://rubyforge.org/projects/rake"
|
31
|
+
puts
|
32
|
+
exit(-1)
|
33
|
+
end
|
34
|
+
|
35
|
+
files = FileList["**/*"]
|
36
|
+
|
37
|
+
# File::safe_unlink *deprecated.collect{|f| File.join($sitedir, f.split(/\//))}
|
38
|
+
files.each {|f|
|
39
|
+
File::install(f, File.join($sitedir, *f.split(/\//)), 0644, true)
|
40
|
+
}
|
data/lib/simple-rss.rb
CHANGED
@@ -2,7 +2,7 @@ require 'cgi'
|
|
2
2
|
require 'time'
|
3
3
|
|
4
4
|
class SimpleRSS
|
5
|
-
VERSION = "1.3.
|
5
|
+
VERSION = "1.3.2"
|
6
6
|
|
7
7
|
attr_reader :items, :source
|
8
8
|
alias :entries :items
|
@@ -40,7 +40,7 @@ class SimpleRSS
|
|
40
40
|
def initialize(source, options={})
|
41
41
|
@source = source.respond_to?(:read) ? source.read : source.to_s
|
42
42
|
@items = Array.new
|
43
|
-
|
43
|
+
@options = Hash.new.update(options)
|
44
44
|
|
45
45
|
parse
|
46
46
|
end
|
@@ -89,9 +89,9 @@ class SimpleRSS
|
|
89
89
|
end
|
90
90
|
|
91
91
|
if $2 || $3
|
92
|
-
|
93
|
-
|
94
|
-
|
92
|
+
tag_cleaned = clean_tag(tag)
|
93
|
+
instance_variable_set("@#{ tag_cleaned }", clean_content(tag, $2, $3))
|
94
|
+
self.class.class_eval("attr_reader :#{ tag_cleaned }")
|
95
95
|
end
|
96
96
|
end
|
97
97
|
|
@@ -99,40 +99,38 @@ class SimpleRSS
|
|
99
99
|
@source.scan( %r{<(rss:|atom:)?(item|entry)([\s][^>]*)?>(.*?)</(rss:|atom:)?(item|entry)>}mi ) do |match|
|
100
100
|
item = Hash.new
|
101
101
|
@@item_tags.each do |tag|
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
item[clean_tag(tag)] = clean_content(tag, $2, $3) if $2 || $3
|
102
|
+
if tag.to_s.include?("+")
|
103
|
+
tag_data = tag.to_s.split("+")
|
104
|
+
tag = tag_data[0]
|
105
|
+
rel = tag_data[1]
|
106
|
+
if match[3] =~ %r{<(rss:|atom:)?#{tag}(.*?)rel=['"]#{rel}['"](.*?)>(.*?)</(rss:|atom:)?#{tag}>}mi
|
107
|
+
nil
|
108
|
+
elsif match[3] =~ %r{<(rss:|atom:)?#{tag}(.*?)rel=['"]#{rel}['"](.*?)/\s*>}mi
|
109
|
+
nil
|
110
|
+
end
|
111
|
+
item[clean_tag("#{tag}+#{rel}")] = clean_content(tag, $3, $4) if $3 || $4
|
112
|
+
elsif tag.to_s.include?("#")
|
113
|
+
tag_data = tag.to_s.split("#")
|
114
|
+
tag = tag_data[0]
|
115
|
+
attrib = tag_data[1]
|
116
|
+
if match[3] =~ %r{<(rss:|atom:)?#{tag}(.*?)#{attrib}=['"](.*?)['"](.*?)>(.*?)</(rss:|atom:)?#{tag}>}mi
|
117
|
+
nil
|
118
|
+
elsif match[3] =~ %r{<(rss:|atom:)?#{tag}(.*?)#{attrib}=['"](.*?)['"](.*?)/\s*>}mi
|
119
|
+
nil
|
120
|
+
end
|
121
|
+
item[clean_tag("#{tag}_#{attrib}")] = clean_content(tag, attrib, $3) if $3
|
122
|
+
else
|
123
|
+
if match[3] =~ %r{<(rss:|atom:)?#{tag}(.*?)>(.*?)</(rss:|atom:)?#{tag}>}mi
|
124
|
+
nil
|
125
|
+
elsif match[3] =~ %r{<(rss:|atom:)?#{tag}(.*?)/\s*>}mi
|
126
|
+
nil
|
127
|
+
end
|
128
|
+
item[clean_tag(tag)] = clean_content(tag, $2, $3) if $2 || $3
|
130
129
|
end
|
131
130
|
end
|
132
131
|
def item.method_missing(name, *args) self[name] end
|
133
132
|
@items << item
|
134
133
|
end
|
135
|
-
|
136
134
|
end
|
137
135
|
|
138
136
|
def clean_content(tag, attrs, content)
|
@@ -152,11 +150,11 @@ class SimpleRSS
|
|
152
150
|
end
|
153
151
|
|
154
152
|
def unescape(content)
|
155
|
-
if content
|
156
|
-
CGI.unescape(content)
|
153
|
+
if content =~ /([^-_.!~*'()a-zA-Z\d;\/?:@&=+$,\[\]]%)/ then
|
154
|
+
CGI.unescape(content)
|
157
155
|
else
|
158
|
-
content
|
159
|
-
end
|
156
|
+
content
|
157
|
+
end.gsub(/(<!\[CDATA\[|\]\]>)/,'').strip
|
160
158
|
end
|
161
159
|
end
|
162
160
|
|
data/simple-rss.gemspec
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = "simple-rss"
|
3
|
+
s.version = "1.3.2"
|
4
|
+
s.version = "#{s.version}-alpha-#{ENV['TRAVIS_BUILD_NUMBER']}" if ENV['TRAVIS']
|
5
|
+
s.date = "2015-08-17"
|
6
|
+
s.summary = "A simple, flexible, extensible, and liberal RSS and Atom reader for Ruby. It is designed to be backwards compatible with the standard RSS parser, but will never do RSS generation."
|
7
|
+
s.email = "lucas@rufy.com"
|
8
|
+
s.homepage = "http://github.com/cardmagic/simple-rss"
|
9
|
+
s.description = "A simple, flexible, extensible, and liberal RSS and Atom reader for Ruby. It is designed to be backwards compatible with the standard RSS parser, but will never do RSS generation."
|
10
|
+
s.authors = ["Lucas Carlson"]
|
11
|
+
s.files = ["install.rb", "lib", "lib/simple-rss.rb", "LICENSE", "Rakefile", "README.markdown", "simple-rss.gemspec", "test", "test/base", "test/base/base_test.rb", "test/data", "test/data/atom.xml", "test/data/not-rss.xml", "test/data/rss09.rdf", "test/data/rss20.xml", "test/test_helper.rb"]
|
12
|
+
s.rubyforge_project = 'simple-rss'
|
13
|
+
s.add_development_dependency "rake"
|
14
|
+
s.add_development_dependency "rdoc"
|
15
|
+
s.add_development_dependency "test-unit"
|
16
|
+
end
|
data/test/base/base_test.rb
CHANGED
@@ -1,8 +1,10 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
1
2
|
require 'test_helper'
|
2
3
|
class BaseTest < Test::Unit::TestCase
|
3
4
|
def setup
|
4
5
|
@rss09 = SimpleRSS.parse open(File.dirname(__FILE__) + '/../data/rss09.rdf')
|
5
6
|
@rss20 = SimpleRSS.parse open(File.dirname(__FILE__) + '/../data/rss20.xml')
|
7
|
+
@rss20_utf8 = SimpleRSS.parse open(File.dirname(__FILE__) + '/../data/rss20_utf8.xml')
|
6
8
|
@media_rss = SimpleRSS.parse open(File.dirname(__FILE__) + '/../data/media_rss.xml')
|
7
9
|
@atom = SimpleRSS.parse open(File.dirname(__FILE__) + '/../data/atom.xml')
|
8
10
|
end
|
@@ -69,4 +71,13 @@ class BaseTest < Test::Unit::TestCase
|
|
69
71
|
def test_bad_feed
|
70
72
|
assert_raise(SimpleRSSError) { SimpleRSS.parse(open(File.dirname(__FILE__) + '/../data/not-rss.xml')) }
|
71
73
|
end
|
74
|
+
|
75
|
+
def test_rss_utf8
|
76
|
+
assert_equal 2, @rss20_utf8.items.size
|
77
|
+
assert_equal "SC5 Blog", @rss20_utf8.title
|
78
|
+
assert_equal Encoding::UTF_8, @rss20_utf8.title.encoding
|
79
|
+
item = @rss20_utf8.items.first
|
80
|
+
assert_equal "Mitä asiakkaamme ajattelevat meistä?", item.title
|
81
|
+
assert_equal Encoding::UTF_8, item.title.encoding
|
82
|
+
end
|
72
83
|
end
|
metadata
CHANGED
@@ -1,36 +1,78 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simple-rss
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lucas Carlson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
12
|
-
dependencies:
|
13
|
-
|
14
|
-
|
11
|
+
date: 2015-08-17 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rdoc
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: test-unit
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
description: A simple, flexible, extensible, and liberal RSS and Atom reader for Ruby.
|
56
|
+
It is designed to be backwards compatible with the standard RSS parser, but will
|
57
|
+
never do RSS generation.
|
15
58
|
email: lucas@rufy.com
|
16
59
|
executables: []
|
17
60
|
extensions: []
|
18
61
|
extra_rdoc_files: []
|
19
62
|
files:
|
63
|
+
- LICENSE
|
64
|
+
- README.markdown
|
65
|
+
- Rakefile
|
66
|
+
- install.rb
|
20
67
|
- lib/simple-rss.rb
|
68
|
+
- simple-rss.gemspec
|
21
69
|
- test/base/base_test.rb
|
22
70
|
- test/data/atom.xml
|
23
|
-
- test/data/media_rss.xml
|
24
71
|
- test/data/not-rss.xml
|
25
72
|
- test/data/rss09.rdf
|
26
73
|
- test/data/rss20.xml
|
27
74
|
- test/test_helper.rb
|
28
|
-
-
|
29
|
-
- Gemfile.lock
|
30
|
-
- LICENSE
|
31
|
-
- README.markdown
|
32
|
-
- Rakefile
|
33
|
-
homepage: https://github.com/cardmagic/simple-rss
|
75
|
+
homepage: http://github.com/cardmagic/simple-rss
|
34
76
|
licenses: []
|
35
77
|
metadata: {}
|
36
78
|
post_install_message:
|
@@ -39,17 +81,17 @@ require_paths:
|
|
39
81
|
- lib
|
40
82
|
required_ruby_version: !ruby/object:Gem::Requirement
|
41
83
|
requirements:
|
42
|
-
- -
|
84
|
+
- - ">="
|
43
85
|
- !ruby/object:Gem::Version
|
44
86
|
version: '0'
|
45
87
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
46
88
|
requirements:
|
47
|
-
- -
|
89
|
+
- - ">="
|
48
90
|
- !ruby/object:Gem::Version
|
49
91
|
version: '0'
|
50
92
|
requirements: []
|
51
|
-
rubyforge_project:
|
52
|
-
rubygems_version: 2.
|
93
|
+
rubyforge_project: simple-rss
|
94
|
+
rubygems_version: 2.7.6
|
53
95
|
signing_key:
|
54
96
|
specification_version: 4
|
55
97
|
summary: A simple, flexible, extensible, and liberal RSS and Atom reader for Ruby.
|
data/Gemfile
DELETED
data/Gemfile.lock
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: https://rubygems.org/
|
3
|
-
specs:
|
4
|
-
diff-lcs (1.2.4)
|
5
|
-
json (1.8.1)
|
6
|
-
rake (10.1.0)
|
7
|
-
rdoc (4.0.1)
|
8
|
-
json (~> 1.4)
|
9
|
-
rspec (2.14.1)
|
10
|
-
rspec-core (~> 2.14.0)
|
11
|
-
rspec-expectations (~> 2.14.0)
|
12
|
-
rspec-mocks (~> 2.14.0)
|
13
|
-
rspec-core (2.14.5)
|
14
|
-
rspec-expectations (2.14.2)
|
15
|
-
diff-lcs (>= 1.1.3, < 2.0)
|
16
|
-
rspec-mocks (2.14.3)
|
17
|
-
|
18
|
-
PLATFORMS
|
19
|
-
ruby
|
20
|
-
|
21
|
-
DEPENDENCIES
|
22
|
-
rake
|
23
|
-
rdoc
|
24
|
-
rspec
|
data/test/data/media_rss.xml
DELETED
@@ -1,465 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<rss version="2.0"
|
3
|
-
xmlns:media="http://search.yahoo.com/mrss/"
|
4
|
-
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
5
|
-
xmlns:creativeCommons="http://cyber.law.harvard.edu/rss/creativeCommonsRssModule.html"
|
6
|
-
xmlns:flickr="urn:flickr:" >
|
7
|
-
<channel>
|
8
|
-
|
9
|
-
|
10
|
-
<title>Uploads from herval</title>
|
11
|
-
<link>http://www.flickr.com/photos/herval/</link>
|
12
|
-
<description></description>
|
13
|
-
<pubDate>Sat, 05 Jun 2010 07:41:10 -0700</pubDate>
|
14
|
-
<lastBuildDate>Sat, 05 Jun 2010 07:41:10 -0700</lastBuildDate>
|
15
|
-
<generator>http://www.flickr.com/</generator>
|
16
|
-
<image>
|
17
|
-
<url>http://farm1.static.flickr.com/10/buddyicons/38685293@N00.jpg?1163805574#38685293@N00</url>
|
18
|
-
<title>Uploads from herval</title>
|
19
|
-
<link>http://www.flickr.com/photos/herval/</link>
|
20
|
-
</image>
|
21
|
-
|
22
|
-
<item>
|
23
|
-
<title>Woof?</title>
|
24
|
-
<link>http://www.flickr.com/photos/herval/4671960608/</link>
|
25
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
26
|
-
|
27
|
-
<p><a href="http://www.flickr.com/photos/herval/4671960608/" title="Woof?"><img src="http://farm5.static.flickr.com/4040/4671960608_954d2297bc_m.jpg" width="240" height="160" alt="Woof?" /></a></p>
|
28
|
-
|
29
|
-
</description>
|
30
|
-
<pubDate>Sat, 05 Jun 2010 07:41:10 -0700</pubDate>
|
31
|
-
<dc:date.Taken>2010-05-14T12:50:22-08:00</dc:date.Taken>
|
32
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
33
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4671960608</guid>
|
34
|
-
<media:content url="http://farm5.static.flickr.com/4040/4671960608_10cb945d5c_o.jpg"
|
35
|
-
type="image/jpeg"
|
36
|
-
height="3168"
|
37
|
-
width="4752"/>
|
38
|
-
<media:title>Woof?</media:title>
|
39
|
-
<media:thumbnail url="http://farm5.static.flickr.com/4040/4671960608_954d2297bc_s.jpg" height="75" width="75" />
|
40
|
-
<media:credit role="photographer">herval</media:credit>
|
41
|
-
<media:category scheme="urn:flickr:tags">pets frodo</media:category>
|
42
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
43
|
-
</item>
|
44
|
-
|
45
|
-
<item>
|
46
|
-
<title>Nostalgia...</title>
|
47
|
-
<link>http://www.flickr.com/photos/herval/4671333397/</link>
|
48
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
49
|
-
|
50
|
-
<p><a href="http://www.flickr.com/photos/herval/4671333397/" title="Nostalgia..."><img src="http://farm5.static.flickr.com/4015/4671333397_168fc15434_m.jpg" width="240" height="180" alt="Nostalgia..." /></a></p>
|
51
|
-
|
52
|
-
</description>
|
53
|
-
<pubDate>Sat, 05 Jun 2010 07:40:01 -0700</pubDate>
|
54
|
-
<dc:date.Taken>2010-01-29T14:48:45-08:00</dc:date.Taken>
|
55
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
56
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4671333397</guid>
|
57
|
-
<media:content url="http://farm5.static.flickr.com/4015/4671333397_0cff01b08e_o.jpg"
|
58
|
-
type="image/jpeg"
|
59
|
-
height="1200"
|
60
|
-
width="1600"/>
|
61
|
-
<media:title>Nostalgia...</media:title>
|
62
|
-
<media:thumbnail url="http://farm5.static.flickr.com/4015/4671333397_168fc15434_s.jpg" height="75" width="75" />
|
63
|
-
<media:credit role="photographer">herval</media:credit>
|
64
|
-
<media:category scheme="urn:flickr:tags">atari gadgets</media:category>
|
65
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
66
|
-
</item>
|
67
|
-
<item>
|
68
|
-
<title>Priest vs Rat</title>
|
69
|
-
<link>http://www.flickr.com/photos/herval/4671957076/</link>
|
70
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
71
|
-
|
72
|
-
<p><a href="http://www.flickr.com/photos/herval/4671957076/" title="Priest vs Rat"><img src="http://farm5.static.flickr.com/4016/4671957076_d1c92be2fc_m.jpg" width="240" height="180" alt="Priest vs Rat" /></a></p>
|
73
|
-
|
74
|
-
</description>
|
75
|
-
<pubDate>Sat, 05 Jun 2010 07:39:36 -0700</pubDate>
|
76
|
-
<dc:date.Taken>2009-12-28T05:10:35-08:00</dc:date.Taken>
|
77
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
78
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4671957076</guid>
|
79
|
-
<media:content url="http://farm5.static.flickr.com/4016/4671957076_3bf7653933_o.jpg"
|
80
|
-
type="image/jpeg"
|
81
|
-
height="2736"
|
82
|
-
width="3648"/>
|
83
|
-
<media:title>Priest vs Rat</media:title>
|
84
|
-
<media:thumbnail url="http://farm5.static.flickr.com/4016/4671957076_d1c92be2fc_s.jpg" height="75" width="75" />
|
85
|
-
<media:credit role="photographer">herval</media:credit>
|
86
|
-
<media:category scheme="urn:flickr:tags">toys miniatures warhammer</media:category>
|
87
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
88
|
-
</item>
|
89
|
-
<item>
|
90
|
-
<title>Daily Grind</title>
|
91
|
-
<link>http://www.flickr.com/photos/herval/4671322569/</link>
|
92
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
93
|
-
|
94
|
-
<p><a href="http://www.flickr.com/photos/herval/4671322569/" title="Daily Grind"><img src="http://farm5.static.flickr.com/4030/4671322569_4db1dbd92c_m.jpg" width="180" height="240" alt="Daily Grind" /></a></p>
|
95
|
-
|
96
|
-
</description>
|
97
|
-
<pubDate>Sat, 05 Jun 2010 07:35:08 -0700</pubDate>
|
98
|
-
<dc:date.Taken>2009-03-21T16:14:26-08:00</dc:date.Taken>
|
99
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
100
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4671322569</guid>
|
101
|
-
<media:content url="http://farm5.static.flickr.com/4030/4671322569_02befef44a_o.jpg"
|
102
|
-
type="image/jpeg"
|
103
|
-
height="3648"
|
104
|
-
width="2736"/>
|
105
|
-
<media:title>Daily Grind</media:title>
|
106
|
-
<media:thumbnail url="http://farm5.static.flickr.com/4030/4671322569_4db1dbd92c_s.jpg" height="75" width="75" />
|
107
|
-
<media:credit role="photographer">herval</media:credit>
|
108
|
-
<media:category scheme="urn:flickr:tags">toys lausanne</media:category>
|
109
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
110
|
-
</item>
|
111
|
-
<item>
|
112
|
-
<title>2800 bucks for a... rocket?</title>
|
113
|
-
<link>http://www.flickr.com/photos/herval/4671944552/</link>
|
114
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
115
|
-
|
116
|
-
<p><a href="http://www.flickr.com/photos/herval/4671944552/" title="2800 bucks for a... rocket?"><img src="http://farm5.static.flickr.com/4062/4671944552_ab9ce00759_m.jpg" width="180" height="240" alt="2800 bucks for a... rocket?" /></a></p>
|
117
|
-
|
118
|
-
</description>
|
119
|
-
<pubDate>Sat, 05 Jun 2010 07:33:59 -0700</pubDate>
|
120
|
-
<dc:date.Taken>2009-03-21T16:09:37-08:00</dc:date.Taken>
|
121
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
122
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4671944552</guid>
|
123
|
-
<media:content url="http://farm5.static.flickr.com/4062/4671944552_5664dc1ae8_o.jpg"
|
124
|
-
type="image/jpeg"
|
125
|
-
height="3648"
|
126
|
-
width="2736"/>
|
127
|
-
<media:title>2800 bucks for a... rocket?</media:title>
|
128
|
-
<media:thumbnail url="http://farm5.static.flickr.com/4062/4671944552_ab9ce00759_s.jpg" height="75" width="75" />
|
129
|
-
<media:credit role="photographer">herval</media:credit>
|
130
|
-
<media:category scheme="urn:flickr:tags">toys lausanne</media:category>
|
131
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
132
|
-
</item>
|
133
|
-
<item>
|
134
|
-
<title>Era um pexão desss tamain, seu pádi!</title>
|
135
|
-
<link>http://www.flickr.com/photos/herval/4671942836/</link>
|
136
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
137
|
-
|
138
|
-
<p><a href="http://www.flickr.com/photos/herval/4671942836/" title="Era um pexão desss tamain, seu pádi!"><img src="http://farm5.static.flickr.com/4002/4671942836_a77fa26653_m.jpg" width="180" height="240" alt="Era um pexão desss tamain, seu pádi!" /></a></p>
|
139
|
-
|
140
|
-
</description>
|
141
|
-
<pubDate>Sat, 05 Jun 2010 07:33:10 -0700</pubDate>
|
142
|
-
<dc:date.Taken>2009-03-21T16:02:22-08:00</dc:date.Taken>
|
143
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
144
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4671942836</guid>
|
145
|
-
<media:content url="http://farm5.static.flickr.com/4002/4671942836_79421bb6fa_o.jpg"
|
146
|
-
type="image/jpeg"
|
147
|
-
height="3648"
|
148
|
-
width="2736"/>
|
149
|
-
<media:title>Era um pexão desss tamain, seu pádi!</media:title>
|
150
|
-
<media:thumbnail url="http://farm5.static.flickr.com/4002/4671942836_a77fa26653_s.jpg" height="75" width="75" />
|
151
|
-
<media:credit role="photographer">herval</media:credit>
|
152
|
-
<media:category scheme="urn:flickr:tags">toys lausanne</media:category>
|
153
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
154
|
-
</item>
|
155
|
-
<item>
|
156
|
-
<title>Jazz</title>
|
157
|
-
<link>http://www.flickr.com/photos/herval/4671941140/</link>
|
158
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
159
|
-
|
160
|
-
<p><a href="http://www.flickr.com/photos/herval/4671941140/" title="Jazz"><img src="http://farm5.static.flickr.com/4043/4671941140_3fdc1969c1_m.jpg" width="180" height="240" alt="Jazz" /></a></p>
|
161
|
-
|
162
|
-
</description>
|
163
|
-
<pubDate>Sat, 05 Jun 2010 07:32:19 -0700</pubDate>
|
164
|
-
<dc:date.Taken>2009-03-21T15:56:49-08:00</dc:date.Taken>
|
165
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
166
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4671941140</guid>
|
167
|
-
<media:content url="http://farm5.static.flickr.com/4043/4671941140_9251c74fe3_o.jpg"
|
168
|
-
type="image/jpeg"
|
169
|
-
height="3648"
|
170
|
-
width="2736"/>
|
171
|
-
<media:title>Jazz</media:title>
|
172
|
-
<media:thumbnail url="http://farm5.static.flickr.com/4043/4671941140_3fdc1969c1_s.jpg" height="75" width="75" />
|
173
|
-
<media:credit role="photographer">herval</media:credit>
|
174
|
-
<media:category scheme="urn:flickr:tags">toys lausanne</media:category>
|
175
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
176
|
-
</item>
|
177
|
-
<item>
|
178
|
-
<title>RIP</title>
|
179
|
-
<link>http://www.flickr.com/photos/herval/4671315019/</link>
|
180
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
181
|
-
|
182
|
-
<p><a href="http://www.flickr.com/photos/herval/4671315019/" title="RIP"><img src="http://farm2.static.flickr.com/1276/4671315019_4f76fd9d6b_m.jpg" width="180" height="240" alt="RIP" /></a></p>
|
183
|
-
|
184
|
-
</description>
|
185
|
-
<pubDate>Sat, 05 Jun 2010 07:31:29 -0700</pubDate>
|
186
|
-
<dc:date.Taken>2009-03-21T15:56:34-08:00</dc:date.Taken>
|
187
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
188
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4671315019</guid>
|
189
|
-
<media:content url="http://farm2.static.flickr.com/1276/4671315019_2ec5e9175b_o.jpg"
|
190
|
-
type="image/jpeg"
|
191
|
-
height="3648"
|
192
|
-
width="2736"/>
|
193
|
-
<media:title>RIP</media:title>
|
194
|
-
<media:thumbnail url="http://farm2.static.flickr.com/1276/4671315019_4f76fd9d6b_s.jpg" height="75" width="75" />
|
195
|
-
<media:credit role="photographer">herval</media:credit>
|
196
|
-
<media:category scheme="urn:flickr:tags">toys lausanne</media:category>
|
197
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
198
|
-
</item>
|
199
|
-
<item>
|
200
|
-
<title>Squirrel!</title>
|
201
|
-
<link>http://www.flickr.com/photos/herval/4671936958/</link>
|
202
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
203
|
-
|
204
|
-
<p><a href="http://www.flickr.com/photos/herval/4671936958/" title="Squirrel!"><img src="http://farm5.static.flickr.com/4062/4671936958_d0081a624e_m.jpg" width="180" height="240" alt="Squirrel!" /></a></p>
|
205
|
-
|
206
|
-
</description>
|
207
|
-
<pubDate>Sat, 05 Jun 2010 07:30:22 -0700</pubDate>
|
208
|
-
<dc:date.Taken>2009-03-21T15:56:18-08:00</dc:date.Taken>
|
209
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
210
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4671936958</guid>
|
211
|
-
<media:content url="http://farm5.static.flickr.com/4062/4671936958_596431f1b2_o.jpg"
|
212
|
-
type="image/jpeg"
|
213
|
-
height="3648"
|
214
|
-
width="2736"/>
|
215
|
-
<media:title>Squirrel!</media:title>
|
216
|
-
<media:thumbnail url="http://farm5.static.flickr.com/4062/4671936958_d0081a624e_s.jpg" height="75" width="75" />
|
217
|
-
<media:credit role="photographer">herval</media:credit>
|
218
|
-
<media:category scheme="urn:flickr:tags">toys lausanne</media:category>
|
219
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
220
|
-
</item>
|
221
|
-
<item>
|
222
|
-
<title>We didn't start the fire!</title>
|
223
|
-
<link>http://www.flickr.com/photos/herval/4671310347/</link>
|
224
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
225
|
-
|
226
|
-
<p><a href="http://www.flickr.com/photos/herval/4671310347/" title="We didn't start the fire!"><img src="http://farm5.static.flickr.com/4058/4671310347_6a9562ce7d_m.jpg" width="240" height="180" alt="We didn't start the fire!" /></a></p>
|
227
|
-
|
228
|
-
</description>
|
229
|
-
<pubDate>Sat, 05 Jun 2010 07:29:22 -0700</pubDate>
|
230
|
-
<dc:date.Taken>2009-03-21T15:54:11-08:00</dc:date.Taken>
|
231
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
232
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4671310347</guid>
|
233
|
-
<media:content url="http://farm5.static.flickr.com/4058/4671310347_c7bc22a014_o.jpg"
|
234
|
-
type="image/jpeg"
|
235
|
-
height="2736"
|
236
|
-
width="3648"/>
|
237
|
-
<media:title>We didn't start the fire!</media:title>
|
238
|
-
<media:thumbnail url="http://farm5.static.flickr.com/4058/4671310347_6a9562ce7d_s.jpg" height="75" width="75" />
|
239
|
-
<media:credit role="photographer">herval</media:credit>
|
240
|
-
<media:category scheme="urn:flickr:tags">toys lausanne</media:category>
|
241
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
242
|
-
</item>
|
243
|
-
<item>
|
244
|
-
<title>I can haz colorful buttons?</title>
|
245
|
-
<link>http://www.flickr.com/photos/herval/4629471316/</link>
|
246
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
247
|
-
|
248
|
-
<p><a href="http://www.flickr.com/photos/herval/4629471316/" title="I can haz colorful buttons?"><img src="http://farm5.static.flickr.com/4045/4629471316_9a930391d8_m.jpg" width="240" height="160" alt="I can haz colorful buttons?" /></a></p>
|
249
|
-
|
250
|
-
</description>
|
251
|
-
<pubDate>Sat, 22 May 2010 08:13:39 -0700</pubDate>
|
252
|
-
<dc:date.Taken>2010-04-27T20:15:23-08:00</dc:date.Taken>
|
253
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
254
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4629471316</guid>
|
255
|
-
<media:content url="http://farm5.static.flickr.com/4045/4629471316_da84443625_o.jpg"
|
256
|
-
type="image/jpeg"
|
257
|
-
height="3168"
|
258
|
-
width="4752"/>
|
259
|
-
<media:title>I can haz colorful buttons?</media:title>
|
260
|
-
<media:thumbnail url="http://farm5.static.flickr.com/4045/4629471316_9a930391d8_s.jpg" height="75" width="75" />
|
261
|
-
<media:credit role="photographer">herval</media:credit>
|
262
|
-
<media:category scheme="urn:flickr:tags">pets dogs frodo</media:category>
|
263
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
264
|
-
</item>
|
265
|
-
<item>
|
266
|
-
<title>Day Off</title>
|
267
|
-
<link>http://www.flickr.com/photos/herval/4629467180/</link>
|
268
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
269
|
-
|
270
|
-
<p><a href="http://www.flickr.com/photos/herval/4629467180/" title="Day Off"><img src="http://farm4.static.flickr.com/3350/4629467180_1e86e00d89_m.jpg" width="240" height="180" alt="Day Off" /></a></p>
|
271
|
-
|
272
|
-
</description>
|
273
|
-
<pubDate>Sat, 22 May 2010 08:11:38 -0700</pubDate>
|
274
|
-
<dc:date.Taken>2010-03-31T18:38:31-08:00</dc:date.Taken>
|
275
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
276
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4629467180</guid>
|
277
|
-
<media:content url="http://farm4.static.flickr.com/3350/4629467180_dcfe2e5bbc_o.jpg"
|
278
|
-
type="image/jpeg"
|
279
|
-
height="1200"
|
280
|
-
width="1600"/>
|
281
|
-
<media:title>Day Off</media:title>
|
282
|
-
<media:thumbnail url="http://farm4.static.flickr.com/3350/4629467180_1e86e00d89_s.jpg" height="75" width="75" />
|
283
|
-
<media:credit role="photographer">herval</media:credit>
|
284
|
-
<media:category scheme="urn:flickr:tags">pets dogs frodo</media:category>
|
285
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
286
|
-
</item>
|
287
|
-
<item>
|
288
|
-
<title>Skaven Mutant</title>
|
289
|
-
<link>http://www.flickr.com/photos/herval/4628865501/</link>
|
290
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
291
|
-
|
292
|
-
<p><a href="http://www.flickr.com/photos/herval/4628865501/" title="Skaven Mutant"><img src="http://farm5.static.flickr.com/4019/4628865501_9314a7f9bf_m.jpg" width="240" height="160" alt="Skaven Mutant" /></a></p>
|
293
|
-
|
294
|
-
</description>
|
295
|
-
<pubDate>Sat, 22 May 2010 08:11:15 -0700</pubDate>
|
296
|
-
<dc:date.Taken>2010-02-09T12:03:31-08:00</dc:date.Taken>
|
297
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
298
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4628865501</guid>
|
299
|
-
<media:content url="http://farm5.static.flickr.com/4019/4628865501_de763d3511_o.jpg"
|
300
|
-
type="image/jpeg"
|
301
|
-
height="3168"
|
302
|
-
width="4752"/>
|
303
|
-
<media:title>Skaven Mutant</media:title>
|
304
|
-
<media:thumbnail url="http://farm5.static.flickr.com/4019/4628865501_9314a7f9bf_s.jpg" height="75" width="75" />
|
305
|
-
<media:credit role="photographer">herval</media:credit>
|
306
|
-
<media:category scheme="urn:flickr:tags">toys miniatures warhammer</media:category>
|
307
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
308
|
-
</item>
|
309
|
-
<item>
|
310
|
-
<title>Treefolk</title>
|
311
|
-
<link>http://www.flickr.com/photos/herval/4628863247/</link>
|
312
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
313
|
-
|
314
|
-
<p><a href="http://www.flickr.com/photos/herval/4628863247/" title="Treefolk"><img src="http://farm5.static.flickr.com/4011/4628863247_fbecba8b95_m.jpg" width="160" height="240" alt="Treefolk" /></a></p>
|
315
|
-
|
316
|
-
</description>
|
317
|
-
<pubDate>Sat, 22 May 2010 08:10:15 -0700</pubDate>
|
318
|
-
<dc:date.Taken>2010-02-09T11:57:34-08:00</dc:date.Taken>
|
319
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
320
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4628863247</guid>
|
321
|
-
<media:content url="http://farm5.static.flickr.com/4011/4628863247_b0a2f267ae_o.jpg"
|
322
|
-
type="image/jpeg"
|
323
|
-
height="4752"
|
324
|
-
width="3168"/>
|
325
|
-
<media:title>Treefolk</media:title>
|
326
|
-
<media:thumbnail url="http://farm5.static.flickr.com/4011/4628863247_fbecba8b95_s.jpg" height="75" width="75" />
|
327
|
-
<media:credit role="photographer">herval</media:credit>
|
328
|
-
<media:category scheme="urn:flickr:tags">toys miniatures warhammer</media:category>
|
329
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
330
|
-
</item>
|
331
|
-
<item>
|
332
|
-
<title>Wag the Dog</title>
|
333
|
-
<link>http://www.flickr.com/photos/herval/4629462208/</link>
|
334
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
335
|
-
|
336
|
-
<p><a href="http://www.flickr.com/photos/herval/4629462208/" title="Wag the Dog"><img src="http://farm4.static.flickr.com/3183/4629462208_cac54ea81c_m.jpg" width="160" height="240" alt="Wag the Dog" /></a></p>
|
337
|
-
|
338
|
-
</description>
|
339
|
-
<pubDate>Sat, 22 May 2010 08:09:18 -0700</pubDate>
|
340
|
-
<dc:date.Taken>2010-02-09T09:31:59-08:00</dc:date.Taken>
|
341
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
342
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4629462208</guid>
|
343
|
-
<media:content url="http://farm4.static.flickr.com/3183/4629462208_942712c4c6_o.jpg"
|
344
|
-
type="image/jpeg"
|
345
|
-
height="4752"
|
346
|
-
width="3168"/>
|
347
|
-
<media:title>Wag the Dog</media:title>
|
348
|
-
<media:thumbnail url="http://farm4.static.flickr.com/3183/4629462208_cac54ea81c_s.jpg" height="75" width="75" />
|
349
|
-
<media:credit role="photographer">herval</media:credit>
|
350
|
-
<media:category scheme="urn:flickr:tags">pets dogs frodo</media:category>
|
351
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
352
|
-
</item>
|
353
|
-
<item>
|
354
|
-
<title>Salonu Flower</title>
|
355
|
-
<link>http://www.flickr.com/photos/herval/4629460214/</link>
|
356
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
357
|
-
|
358
|
-
<p><a href="http://www.flickr.com/photos/herval/4629460214/" title="Salonu Flower"><img src="http://farm4.static.flickr.com/3371/4629460214_b6652b15fb_m.jpg" width="180" height="240" alt="Salonu Flower" /></a></p>
|
359
|
-
|
360
|
-
</description>
|
361
|
-
<pubDate>Sat, 22 May 2010 08:08:27 -0700</pubDate>
|
362
|
-
<dc:date.Taken>2009-11-01T15:15:52-08:00</dc:date.Taken>
|
363
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
364
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4629460214</guid>
|
365
|
-
<media:content url="http://farm4.static.flickr.com/3371/4629460214_0d40d5bf30_o.jpg"
|
366
|
-
type="image/jpeg"
|
367
|
-
height="2592"
|
368
|
-
width="1944"/>
|
369
|
-
<media:title>Salonu Flower</media:title>
|
370
|
-
<media:thumbnail url="http://farm4.static.flickr.com/3371/4629460214_b6652b15fb_s.jpg" height="75" width="75" />
|
371
|
-
<media:credit role="photographer">herval</media:credit>
|
372
|
-
<media:category scheme="urn:flickr:tags">girls saopaulo michelle</media:category>
|
373
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
374
|
-
</item>
|
375
|
-
<item>
|
376
|
-
<title>Michelle Poppins</title>
|
377
|
-
<link>http://www.flickr.com/photos/herval/4629458716/</link>
|
378
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
379
|
-
|
380
|
-
<p><a href="http://www.flickr.com/photos/herval/4629458716/" title="Michelle Poppins"><img src="http://farm5.static.flickr.com/4001/4629458716_71b5fa1d06_m.jpg" width="180" height="240" alt="Michelle Poppins" /></a></p>
|
381
|
-
|
382
|
-
</description>
|
383
|
-
<pubDate>Sat, 22 May 2010 08:07:49 -0700</pubDate>
|
384
|
-
<dc:date.Taken>2009-03-29T22:22:49-08:00</dc:date.Taken>
|
385
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
386
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4629458716</guid>
|
387
|
-
<media:content url="http://farm5.static.flickr.com/4001/4629458716_d36319ace7_o.jpg"
|
388
|
-
type="image/jpeg"
|
389
|
-
height="3648"
|
390
|
-
width="2736"/>
|
391
|
-
<media:title>Michelle Poppins</media:title>
|
392
|
-
<media:thumbnail url="http://farm5.static.flickr.com/4001/4629458716_71b5fa1d06_s.jpg" height="75" width="75" />
|
393
|
-
<media:credit role="photographer">herval</media:credit>
|
394
|
-
<media:category scheme="urn:flickr:tags">girls salzburg michelle</media:category>
|
395
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
396
|
-
</item>
|
397
|
-
<item>
|
398
|
-
<title>Minancora</title>
|
399
|
-
<link>http://www.flickr.com/photos/herval/4629420374/</link>
|
400
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
401
|
-
|
402
|
-
<p><a href="http://www.flickr.com/photos/herval/4629420374/" title="Minancora"><img src="http://farm4.static.flickr.com/3396/4629420374_9425d896b3_m.jpg" width="180" height="240" alt="Minancora" /></a></p>
|
403
|
-
|
404
|
-
</description>
|
405
|
-
<pubDate>Sat, 22 May 2010 07:49:12 -0700</pubDate>
|
406
|
-
<dc:date.Taken>2010-04-24T14:30:56-08:00</dc:date.Taken>
|
407
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
408
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4629420374</guid>
|
409
|
-
<media:content url="http://farm4.static.flickr.com/3396/4629420374_c7e9d02277_o.jpg"
|
410
|
-
type="image/jpeg"
|
411
|
-
height="1600"
|
412
|
-
width="1200"/>
|
413
|
-
<media:title>Minancora</media:title>
|
414
|
-
<media:thumbnail url="http://farm4.static.flickr.com/3396/4629420374_9425d896b3_s.jpg" height="75" width="75" />
|
415
|
-
<media:credit role="photographer">herval</media:credit>
|
416
|
-
<media:category scheme="urn:flickr:tags">vintage posters</media:category>
|
417
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
418
|
-
</item>
|
419
|
-
<item>
|
420
|
-
<title>Biotônico Fontoura</title>
|
421
|
-
<link>http://www.flickr.com/photos/herval/4628818099/</link>
|
422
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
423
|
-
|
424
|
-
<p><a href="http://www.flickr.com/photos/herval/4628818099/" title="Biotônico Fontoura"><img src="http://farm4.static.flickr.com/3338/4628818099_8030072577_m.jpg" width="180" height="240" alt="Biotônico Fontoura" /></a></p>
|
425
|
-
|
426
|
-
</description>
|
427
|
-
<pubDate>Sat, 22 May 2010 07:48:51 -0700</pubDate>
|
428
|
-
<dc:date.Taken>2010-04-24T14:30:50-08:00</dc:date.Taken>
|
429
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
430
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4628818099</guid>
|
431
|
-
<media:content url="http://farm4.static.flickr.com/3338/4628818099_49673282f4_o.jpg"
|
432
|
-
type="image/jpeg"
|
433
|
-
height="1600"
|
434
|
-
width="1200"/>
|
435
|
-
<media:title>Biotônico Fontoura</media:title>
|
436
|
-
<media:thumbnail url="http://farm4.static.flickr.com/3338/4628818099_8030072577_s.jpg" height="75" width="75" />
|
437
|
-
<media:credit role="photographer">herval</media:credit>
|
438
|
-
<media:category scheme="urn:flickr:tags">vintage posters</media:category>
|
439
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
440
|
-
</item>
|
441
|
-
<item>
|
442
|
-
<title>Kodak</title>
|
443
|
-
<link>http://www.flickr.com/photos/herval/4629419090/</link>
|
444
|
-
<description> <p><a href="http://www.flickr.com/people/herval/">herval</a> posted a photo:</p>
|
445
|
-
|
446
|
-
<p><a href="http://www.flickr.com/photos/herval/4629419090/" title="Kodak"><img src="http://farm5.static.flickr.com/4056/4629419090_ced5e88c49_m.jpg" width="180" height="240" alt="Kodak" /></a></p>
|
447
|
-
|
448
|
-
</description>
|
449
|
-
<pubDate>Sat, 22 May 2010 07:48:31 -0700</pubDate>
|
450
|
-
<dc:date.Taken>2010-04-24T14:30:40-08:00</dc:date.Taken>
|
451
|
-
<author flickr:profile="http://www.flickr.com/people/herval/">nobody@flickr.com (herval)</author>
|
452
|
-
<guid isPermaLink="false">tag:flickr.com,2004:/photo/4629419090</guid>
|
453
|
-
<media:content url="http://farm5.static.flickr.com/4056/4629419090_4cf091f4b7_o.jpg"
|
454
|
-
type="image/jpeg"
|
455
|
-
height="1600"
|
456
|
-
width="1200"/>
|
457
|
-
<media:title>Kodak</media:title>
|
458
|
-
<media:thumbnail url="http://farm5.static.flickr.com/4056/4629419090_ced5e88c49_s.jpg" height="75" width="75" />
|
459
|
-
<media:credit role="photographer">herval</media:credit>
|
460
|
-
<media:category scheme="urn:flickr:tags">vintage posters</media:category>
|
461
|
-
<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/deed.en</creativeCommons:license>
|
462
|
-
</item>
|
463
|
-
|
464
|
-
</channel>
|
465
|
-
</rss>
|