feed-abstract 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -16,12 +16,16 @@ module FeedAbstract
16
16
  end
17
17
 
18
18
  def description
19
+ return '' if @feed.subtitle.nil?
19
20
  @feed.subtitle.content
20
21
  end
21
22
  alias :subtitle :description
22
23
 
23
24
  # A string representing the application that created this feed.
24
25
  def generator
26
+ if self.link.match(/zotero\.org/)
27
+ return 'Zotero'
28
+ end
25
29
  return '' if @feed.generator.nil?
26
30
  @feed.generator.content
27
31
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module FeedAbstract
4
4
 
5
- # You don't want this class. You want FeedAbstract::Item::Atom, FeedAbstract::Item::RSS or FeedAbstract::Item::RDF.
5
+ # You don't want this class. You want FeedAbstract::Item::Atom, FeedAbstract::Item::RSS or FeedAbstract::Item::RDF.
6
6
  class Item
7
7
 
8
8
  # See FeedAbstractMixins::Atom for more instance methods.
@@ -26,10 +26,10 @@ module FeedAbstract
26
26
  @item.contributors.collect{|c| c.name.content}
27
27
  end
28
28
 
29
- #The contributor list as a strong joined with a comma.
29
+ #The contributor list as a string joined with a comma.
30
30
  def contributor
31
- return '' if @item.contributors.empty?
32
- @item.contributors.collect{|c| c.name.content}.join(', ')
31
+ return '' if self.contributors.empty?
32
+ self.contributors.join(', ')
33
33
  end
34
34
 
35
35
  def summary
@@ -40,7 +40,6 @@ module FeedAbstract
40
40
  @item.about
41
41
  end
42
42
 
43
-
44
43
  end
45
44
  end
46
45
  end
@@ -1,5 +1,5 @@
1
1
  # encoding: UTF-8
2
2
 
3
3
  module FeedAbstract
4
- VERSION = "0.0.2"
4
+ VERSION = "0.0.3"
5
5
  end
@@ -10,11 +10,23 @@ module FeedAbstract
10
10
  @djcprss2 = Feed.new(File.read('spec/test_data/djcp.rss'))
11
11
  @oa = Feed.new(File.read('spec/test_data/oa.africa.rss'))
12
12
  @delicious = Feed.new(File.read('spec/test_data/djcp_delicious.rss'))
13
+ @zotero = Feed.new(File.read('spec/test_data/zotero.rss'))
13
14
  end
14
15
 
15
16
  [:title, :subtitle, :description, :link, :generator, :authors, :author, :categories, :category, :icon, :logo, :rights, :updated, :guid].each do|att|
16
17
  it { @docatom.channel.should respond_to att}
18
+ it { @kpgatom.channel.should respond_to att}
17
19
  it { @djcprss2.channel.should respond_to att}
20
+ it { @oa.channel.should respond_to att}
21
+ it { @delicious.channel.should respond_to att}
22
+ it { @zotero.channel.should respond_to att}
23
+
24
+ it { @docatom.channel.send(att).should_not == false}
25
+ it { @kpgatom.channel.send(att).should_not == false}
26
+ it { @djcprss2.channel.send(att).should_not == false}
27
+ it { @oa.channel.send(att).should_not == false}
28
+ it { @delicious.channel.send(att).should_not == false}
29
+ it { @zotero.channel.send(att).should_not == false}
18
30
  end
19
31
 
20
32
  it "should have the correct title" do
@@ -23,6 +35,7 @@ module FeedAbstract
23
35
  @djcprss2.channel.title.should == 'Dan Collis-Puro'
24
36
  @oa.channel.title.should == 'Connotea: petersuber\'s bookmarks matching tag oa.africa'
25
37
  @delicious.channel.title.should == 'Delicious/djcp'
38
+ @zotero.channel.title.should == 'Zotero / PROS Paper Group / Items'
26
39
  end
27
40
 
28
41
  it "should have the correct subtitle and description" do
@@ -40,6 +53,9 @@ module FeedAbstract
40
53
 
41
54
  @delicious.channel.description.should == 'bookmarks posted by djcp'
42
55
  @delicious.channel.subtitle.should == 'bookmarks posted by djcp'
56
+
57
+ @zotero.channel.subtitle.should == ''
58
+ @zotero.channel.description.should == ''
43
59
  end
44
60
 
45
61
  it "should have the correct link" do
@@ -49,6 +65,8 @@ module FeedAbstract
49
65
 
50
66
  @oa.channel.link.should == 'http://www.connotea.org/user/petersuber/tag/oa.africa'
51
67
  @delicious.channel.link.should == 'http://www.delicious.com/djcp'
68
+
69
+ @zotero.channel.link.should == 'https://api.zotero.org/groups/52650/items'
52
70
  end
53
71
 
54
72
  it "should have the correct generator" do
@@ -57,6 +75,7 @@ module FeedAbstract
57
75
  @djcprss2.channel.generator.should == 'WordPress'
58
76
  @oa.channel.generator.should == 'Connotea'
59
77
  @delicious.channel.generator.should == 'Delicious'
78
+ @zotero.channel.generator.should == 'Zotero'
60
79
  end
61
80
 
62
81
  it "should have the correct authors" do
@@ -65,12 +84,14 @@ module FeedAbstract
65
84
  @djcprss2.channel.authors.should == ['DJCP']
66
85
  @oa.channel.authors.should == []
67
86
  @delicious.channel.authors.should == []
87
+ @zotero.channel.authors.should == []
68
88
 
69
89
  @docatom.channel.author.should == 'Doc Searls'
70
90
  @kpgatom.channel.author.should == 'Nick Pappas'
71
91
  @djcprss2.channel.author.should == 'DJCP'
72
92
  @oa.channel.author.should == ''
73
93
  @delicious.channel.author.should == ''
94
+ @zotero.channel.author.should == ''
74
95
 
75
96
  end
76
97
 
@@ -80,12 +101,14 @@ module FeedAbstract
80
101
  @djcprss2.channel.categories.should == ['Tech','Open Source','oa.africa','oa.test']
81
102
  @oa.channel.categories.should == ['oa.africa','oa.test']
82
103
  @delicious.channel.categories.should == []
104
+ @zotero.channel.categories.should == []
83
105
 
84
106
  @docatom.channel.category.should == ''
85
107
  @kpgatom.channel.category.should == 'photos'
86
108
  @djcprss2.channel.category.should == 'Tech, Open Source'
87
109
  @oa.channel.category.should == 'oa.africa, oa.test'
88
110
  @delicious.channel.category.should == ''
111
+ @zotero.channel.category.should == ''
89
112
  end
90
113
 
91
114
  it "should have the correct icon" do
@@ -94,6 +117,7 @@ module FeedAbstract
94
117
  @djcprss2.channel.icon.should == '/foobar.gif'
95
118
  @oa.channel.icon.should == 'http://example.com/image.gif'
96
119
  @delicious.channel.icon.should == ''
120
+ @zotero.channel.icon.should == ''
97
121
  end
98
122
 
99
123
  it "should have the correct logo" do
@@ -102,6 +126,7 @@ module FeedAbstract
102
126
  @djcprss2.channel.logo.should == '/foobar.gif'
103
127
  @oa.channel.logo.should == 'http://example.com/image.gif'
104
128
  @delicious.channel.logo.should == ''
129
+ @zotero.channel.logo.should == ''
105
130
  end
106
131
 
107
132
  it "should have the correct rights" do
@@ -110,6 +135,7 @@ module FeedAbstract
110
135
  @djcprss2.channel.rights.should == '2011 DJCP'
111
136
  @oa.channel.rights.should == 'Connotea 2011'
112
137
  @delicious.channel.rights.should == ''
138
+ @zotero.channel.rights.should == ''
113
139
  end
114
140
 
115
141
  it "should have the correct updated value" do
@@ -118,6 +144,7 @@ module FeedAbstract
118
144
  @djcprss2.channel.updated.should == Time.parse('Tue, 02 Aug 2011 01:05:26 +0000')
119
145
  @oa.channel.updated.should == Time.parse('2011-09-01T08:07:21Z')
120
146
  @delicious.channel.updated.should == ''
147
+ @zotero.channel.updated.should == Time.parse('2011-09-02T17:16:11Z')
121
148
  end
122
149
 
123
150
  it "should have the correct guid" do
@@ -127,6 +154,7 @@ module FeedAbstract
127
154
  @djcprss2.channel.guid.should == 'http://blogs.law.harvard.edu/djcp'
128
155
  @oa.channel.guid.should == 'http://www.connotea.org/user/petersuber/tag/oa.africa'
129
156
  @delicious.channel.guid.should == 'http://www.delicious.com/djcp'
157
+ @zotero.channel.guid.should == 'http://zotero.org/groups/52650/items'
130
158
  end
131
159
  end
132
160
  end
@@ -19,13 +19,25 @@ module FeedAbstract
19
19
 
20
20
  @delicious = Feed.new(File.read('spec/test_data/djcp_delicious.rss'))
21
21
  @deliciousitem = @delicious.items.first
22
+
23
+ @zotero = Feed.new(File.read('spec/test_data/zotero.rss'))
24
+ @zoteroitem = @zotero.items.first
22
25
  end
23
26
 
24
27
  [:title, :summary, :content, :link, :authors, :author, :contributor, :contributors, :categories, :category, :rights, :updated, :guid, :published].each do|att|
25
28
  it { @docatomitem.should respond_to att}
29
+ it { @kpgatomitem.should respond_to att}
26
30
  it { @djcprss2item.should respond_to att}
27
31
  it { @oaitem.should respond_to att}
28
32
  it { @deliciousitem.should respond_to att}
33
+ it { @zoteroitem.should respond_to att}
34
+
35
+ it { @docatomitem.send(att).should_not == false}
36
+ it { @kpgatomitem.send(att).should_not == false}
37
+ it { @djcprss2item.send(att).should_not == false}
38
+ it { @oaitem.send(att).should_not == false}
39
+ it { @deliciousitem.send(att).should_not == false}
40
+ it { @zoteroitem.send(att).should_not == false}
29
41
  end
30
42
 
31
43
  it "should have the correct title" do
@@ -34,6 +46,7 @@ module FeedAbstract
34
46
  @djcprss2item.title.should == 'S1:E7 – Justice'
35
47
  @oaitem.title.should == 'Mali doctoral students learn about access to e-resources | EIFL'
36
48
  @deliciousitem.title.should == 'aspic and other delights'
49
+ @zoteroitem.title.should == 'An experimental application of the Delphi method to the use of experts'
37
50
  end
38
51
 
39
52
  it "should have the correct summary" do
@@ -44,6 +57,7 @@ module FeedAbstract
44
57
 
45
58
  @oaitem.summary.should == %q|""On August 13, 2011, Consortium Malien des Bibliothèques (COMBI) organized a workshop on access and use of e-resources (both commercial and open access)....There was a special focus on resources made freely available through EIFL for Malian institutions and also on the various international initiatives working to improve access to scientific information in Mali. Digital libraries and portals for open access journals were also demonstrated...."" Posted by petersuber to oa.notes ru.no oa.event oa.africa oa.new on Thu Aug 18 2011|
46
59
  @deliciousitem.summary.should == ''
60
+ @zoteroitem.summary.should == ''
47
61
  end
48
62
 
49
63
  it "should have the correct content" do
@@ -65,6 +79,34 @@ module FeedAbstract
65
79
  @oaitem.content.should == %q|<link rel="stylesheet" href="http://www.connotea.org/global.css" type="text/css" title="styled"/><span class="internet"><div class="icons">&nbsp;</div></span><a rel="nofollow" href="http://www.eifl.net/news/mali-doctoral-students-learn-about-access-e-r" onclick="this.href='http'+'://www.connotea.org/click?src=http%3A%2F%2Fwww.connotea.org%2Frss%2Ftag%2Foa.new%3Fnum%3D1000&amp;dest=http%3A%2F%2Fwww.eifl.net%2Fnews%2Fmali-doctoral-students-learn-about-access-e-r'; return true;" title="Mali doctoral students learn about access to e-resources \| EIFL" class="rssitem">Mali doctoral students learn about access to e-resources \| EIFL</a><div class="actualurl">www.eifl.net</div><div class="description">&quot;On August 13, 2011, Consortium Malien des Biblioth&egrave;ques (COMBI) organized a workshop on access and use of e-resources (both commercial and open access)....There was a special focus on resources made freely available through EIFL for Malian institutions and also on the various international initiatives working to improve access to scientific information in Mali. Digital libraries and portals for open access journals were also demonstrated....&quot;</div><div class="posted"><span class="postedby">Posted by <a rel="nofollow" href="http://www.connotea.org/user/petersuber" title="petersuber" class="postedby">petersuber</a></span> <span class="postedtags">to <a rel="nofollow" href="http://www.connotea.org/tag/oa.notes" title="oa.notes" class="postedtag">oa.notes</a> <a rel="nofollow" href="http://www.connotea.org/tag/ru.no" title="ru.no" class="postedtag">ru.no</a> <a rel="nofollow" href="http://www.connotea.org/tag/oa.event" title="oa.event" class="postedtag">oa.event</a> <a rel="nofollow" href="http://www.connotea.org/tag/oa.africa" title="oa.africa" class="postedtag">oa.africa</a> <a rel="nofollow" href="http://www.connotea.org/tag/oa.new" title="oa.new" class="postedtag">oa.new</a></span> <span class="postedtime">on <a rel="nofollow" href="http://www.connotea.org/date/2011-08-18" title="Thu Aug 18 2011">Thu Aug 18 2011</a> at 21:14 UTC</span> \| <a href="http://www.connotea.org/article/924b97cee02e01888a93473ca6752213">info</a> \| <a title="Results powered by Proximic" onclick="return false;" id="proximic_proxit:aid=npg&channel_expand=MEDIA&query_url=http://www.eifl.net/news/mali-doctoral-students-learn-about-access-e-r">related</a></div>|
66
80
 
67
81
  @deliciousitem.content.should == ''
82
+ @zoteroitem.content.should == %q|<div xmlns="http://www.w3.org/1999/xhtml" xmlns:zapi="http://zotero.org/ns/api">
83
+ <table>
84
+ <tr class="itemType">
85
+ <th style="text-align: right">Type</th>
86
+ <td>Journal Article</td>
87
+ </tr>
88
+ <tr class="creator">
89
+ <th style="text-align: right">Author</th>
90
+ <td>N Dalkey</td>
91
+ </tr>
92
+ <tr class="creator">
93
+ <th style="text-align: right">Author</th>
94
+ <td>O Helmer</td>
95
+ </tr>
96
+ <tr class="pages">
97
+ <th style="text-align: right">Pages</th>
98
+ <td>458-467</td>
99
+ </tr>
100
+ <tr class="publicationTitle">
101
+ <th style="text-align: right">Publication</th>
102
+ <td>Management science (JSTOR)</td>
103
+ </tr>
104
+ <tr class="date">
105
+ <th style="text-align: right">Date</th>
106
+ <td>1963</td>
107
+ </tr>
108
+ </table>
109
+ </div>|
68
110
  end
69
111
 
70
112
  it "should have the correct link" do
@@ -73,6 +115,7 @@ module FeedAbstract
73
115
  @djcprss2item.link.should == 'http://blogs.law.harvard.edu/djcp/2011/08/s1e7-justice/'
74
116
  @oaitem.link.should == 'http://www.eifl.net/news/mali-doctoral-students-learn-about-access-e-r'
75
117
  @deliciousitem.link.should == 'http://aspicandotherdelights.tumblr.com/'
118
+ @zoteroitem.link.should == 'https://api.zotero.org/groups/52650/items/FHDJ5PXZ'
76
119
  end
77
120
 
78
121
  it "should have the correct author" do
@@ -81,6 +124,7 @@ module FeedAbstract
81
124
  @djcprss2item.author.should == 'djcp'
82
125
  @oaitem.author.should == 'petersuber'
83
126
  @deliciousitem.author.should == 'djcp'
127
+ @zoteroitem.author.should == 'ingle.atul'
84
128
  end
85
129
 
86
130
  it "should have the correct authors" do
@@ -89,6 +133,7 @@ module FeedAbstract
89
133
  @djcprss2item.authors.should == ['djcp']
90
134
  @oaitem.authors.should == ['petersuber']
91
135
  @deliciousitem.authors.should == ['djcp']
136
+ @zoteroitem.authors.should == ['ingle.atul']
92
137
  end
93
138
 
94
139
  it "should have the correct contributor" do
@@ -97,6 +142,7 @@ module FeedAbstract
97
142
  @djcprss2item.contributor.should == ''
98
143
  @oaitem.contributor.should == ''
99
144
  @deliciousitem.contributor.should == ''
145
+ @zoteroitem.contributor.should == ''
100
146
  end
101
147
 
102
148
  it "should have the correct contributors" do
@@ -105,6 +151,7 @@ module FeedAbstract
105
151
  @djcprss2item.contributors.should == []
106
152
  @oaitem.contributors.should == []
107
153
  @deliciousitem.contributors.should == []
154
+ @zoteroitem.contributors.should == []
108
155
  end
109
156
 
110
157
  it "should have the correct category" do
@@ -113,6 +160,7 @@ module FeedAbstract
113
160
  @djcprss2item.category.should == 'Uncategorized, tngwatchestng'
114
161
  @oaitem.category.should == 'oa.notes, ru.no, oa.event, oa.africa, oa.new'
115
162
  @deliciousitem.category.should == 'cooking, oddness'
163
+ @zoteroitem.category.should == ''
116
164
  end
117
165
 
118
166
  it "should have the correct categories" do
@@ -121,6 +169,7 @@ module FeedAbstract
121
169
  @djcprss2item.categories.should == ['Uncategorized', 'tngwatchestng']
122
170
  @oaitem.categories.should == ["oa.notes", "ru.no", "oa.event", "oa.africa", "oa.new"]
123
171
  @deliciousitem.categories.should == ['cooking', 'oddness']
172
+ @zoteroitem.categories.should == []
124
173
  end
125
174
 
126
175
  it "should have the correct rights" do
@@ -129,6 +178,7 @@ module FeedAbstract
129
178
  @djcprss2item.rights.should == ''
130
179
  @oaitem.rights.should == ''
131
180
  @deliciousitem.rights.should == ''
181
+ @zoteroitem.rights.should == ''
132
182
  end
133
183
 
134
184
  it "should have been updated at the correct time" do
@@ -137,14 +187,7 @@ module FeedAbstract
137
187
  @djcprss2item.updated.should == Time.parse('Tue, 02 Aug 2011 01:05:26 +0000')
138
188
  @oaitem.updated.should == Time.parse('2011-08-18T21:14:38Z')
139
189
  @deliciousitem.updated.should == Time.parse('Fri, 19 Aug 2011 00:56:26 +0000')
140
- end
141
-
142
- it "should have the proper guid" do
143
- @docatomitem.guid.should == "http://blogs.law.harvard.edu/doc/?p=4195"
144
- @kpgatomitem.guid.should == 'urn:uuid:www.katanapg.com-group-2739'
145
- @djcprss2item.guid.should == 'http://blogs.law.harvard.edu/djcp/?p=227'
146
- @oaitem.guid.should == 'http://www.connotea.org/user/petersuber/uri/924b97cee02e01888a93473ca6752213'
147
- @deliciousitem.guid.should == 'http://www.delicious.com/url/6e0504ca698232809a0b5065e8b83031#djcp'
190
+ @zoteroitem.updated.should == Time.parse('2011-09-02T17:16:11Z')
148
191
  end
149
192
 
150
193
  it "should have been published at the proper time" do
@@ -153,6 +196,16 @@ module FeedAbstract
153
196
  @djcprss2item.published.should == Time.parse('Tue, 02 Aug 2011 01:05:26 +0000')
154
197
  @oaitem.published.should == Time.parse('2011-08-18T21:14:38Z')
155
198
  @deliciousitem.published.should == Time.parse('Fri, 19 Aug 2011 00:56:26 +0000')
199
+ @zoteroitem.published.should == Time.parse('2011-09-02T17:14:22Z')
200
+ end
201
+
202
+ it "should have the proper guid" do
203
+ @docatomitem.guid.should == "http://blogs.law.harvard.edu/doc/?p=4195"
204
+ @kpgatomitem.guid.should == 'urn:uuid:www.katanapg.com-group-2739'
205
+ @djcprss2item.guid.should == 'http://blogs.law.harvard.edu/djcp/?p=227'
206
+ @oaitem.guid.should == 'http://www.connotea.org/user/petersuber/uri/924b97cee02e01888a93473ca6752213'
207
+ @deliciousitem.guid.should == 'http://www.delicious.com/url/6e0504ca698232809a0b5065e8b83031#djcp'
208
+ @zoteroitem.guid.should == 'http://zotero.org/groups/pros_paper/items/FHDJ5PXZ'
156
209
  end
157
210
 
158
211
  end
@@ -0,0 +1,697 @@
1
+ <?xml version="1.0"?>
2
+ <feed xmlns="http://www.w3.org/2005/Atom" xmlns:zapi="http://zotero.org/ns/api">
3
+ <title>Zotero / PROS Paper Group / Items</title>
4
+ <id>http://zotero.org/groups/52650/items</id>
5
+ <link rel="self" type="application/atom+xml" href="https://api.zotero.org/groups/52650/items"/>
6
+ <link rel="first" type="application/atom+xml" href="https://api.zotero.org/groups/52650/items"/>
7
+ <link rel="last" type="application/atom+xml" href="https://api.zotero.org/groups/52650/items"/>
8
+ <link rel="alternate" type="text/html" href="http://zotero.org/groups/52650/items"/>
9
+ <zapi:totalResults>15</zapi:totalResults>
10
+ <zapi:apiVersion>1</zapi:apiVersion>
11
+ <updated>2011-09-02T17:16:11Z</updated>
12
+ <entry>
13
+ <title>An experimental application of the Delphi method to the use of experts</title>
14
+ <author>
15
+ <name>ingle.atul</name>
16
+ <uri>http://zotero.org/ingle.atul</uri>
17
+ </author>
18
+ <id>http://zotero.org/groups/pros_paper/items/FHDJ5PXZ</id>
19
+ <published>2011-09-02T17:14:22Z</published>
20
+ <updated>2011-09-02T17:16:11Z</updated>
21
+ <link rel="self" type="application/atom+xml" href="https://api.zotero.org/groups/52650/items/FHDJ5PXZ"/>
22
+ <link rel="alternate" type="text/html" href="http://zotero.org/groups/pros_paper/items/FHDJ5PXZ"/>
23
+ <zapi:key>FHDJ5PXZ</zapi:key>
24
+ <zapi:itemType>journalArticle</zapi:itemType>
25
+ <zapi:creatorSummary>Dalkey and Helmer</zapi:creatorSummary>
26
+ <zapi:numChildren>0</zapi:numChildren>
27
+ <zapi:numTags>0</zapi:numTags>
28
+ <content type="xhtml">
29
+ <div xmlns="http://www.w3.org/1999/xhtml">
30
+ <table>
31
+ <tr class="itemType">
32
+ <th style="text-align: right">Type</th>
33
+ <td>Journal Article</td>
34
+ </tr>
35
+ <tr class="creator">
36
+ <th style="text-align: right">Author</th>
37
+ <td>N Dalkey</td>
38
+ </tr>
39
+ <tr class="creator">
40
+ <th style="text-align: right">Author</th>
41
+ <td>O Helmer</td>
42
+ </tr>
43
+ <tr class="pages">
44
+ <th style="text-align: right">Pages</th>
45
+ <td>458-467</td>
46
+ </tr>
47
+ <tr class="publicationTitle">
48
+ <th style="text-align: right">Publication</th>
49
+ <td>Management science (JSTOR)</td>
50
+ </tr>
51
+ <tr class="date">
52
+ <th style="text-align: right">Date</th>
53
+ <td>1963</td>
54
+ </tr>
55
+ </table>
56
+ </div>
57
+ </content>
58
+ </entry>
59
+ <entry>
60
+ <title>A First Course in Probability</title>
61
+ <author>
62
+ <name>ingle.atul</name>
63
+ <uri>http://zotero.org/ingle.atul</uri>
64
+ </author>
65
+ <id>http://zotero.org/groups/pros_paper/items/8432WKUZ</id>
66
+ <published>2011-09-02T17:06:54Z</published>
67
+ <updated>2011-09-02T17:07:55Z</updated>
68
+ <link rel="self" type="application/atom+xml" href="https://api.zotero.org/groups/52650/items/8432WKUZ"/>
69
+ <link rel="alternate" type="text/html" href="http://zotero.org/groups/pros_paper/items/8432WKUZ"/>
70
+ <zapi:key>8432WKUZ</zapi:key>
71
+ <zapi:itemType>book</zapi:itemType>
72
+ <zapi:creatorSummary>Ross</zapi:creatorSummary>
73
+ <zapi:numChildren>0</zapi:numChildren>
74
+ <zapi:numTags>0</zapi:numTags>
75
+ <content type="xhtml">
76
+ <div xmlns="http://www.w3.org/1999/xhtml">
77
+ <table>
78
+ <tr class="itemType">
79
+ <th style="text-align: right">Type</th>
80
+ <td>Book</td>
81
+ </tr>
82
+ <tr class="creator">
83
+ <th style="text-align: right">Author</th>
84
+ <td>S M Ross</td>
85
+ </tr>
86
+ <tr class="edition">
87
+ <th style="text-align: right">Edition</th>
88
+ <td>7</td>
89
+ </tr>
90
+ <tr class="place">
91
+ <th style="text-align: right">Place</th>
92
+ <td>Englewood Cliffs, NJ</td>
93
+ </tr>
94
+ <tr class="publisher">
95
+ <th style="text-align: right">Publisher</th>
96
+ <td>Prentice Hall</td>
97
+ </tr>
98
+ <tr class="date">
99
+ <th style="text-align: right">Date</th>
100
+ <td>2005</td>
101
+ </tr>
102
+ </table>
103
+ </div>
104
+ </content>
105
+ </entry>
106
+ <entry>
107
+ <title>NHSN Manual: Biovigilance Component Protocol Hemovigilance Module</title>
108
+ <author>
109
+ <name>ingle.atul</name>
110
+ <uri>http://zotero.org/ingle.atul</uri>
111
+ </author>
112
+ <id>http://zotero.org/groups/pros_paper/items/KI2TT8DI</id>
113
+ <published>2011-09-02T17:03:50Z</published>
114
+ <updated>2011-09-02T17:05:03Z</updated>
115
+ <link rel="self" type="application/atom+xml" href="https://api.zotero.org/groups/52650/items/KI2TT8DI"/>
116
+ <link rel="alternate" type="text/html" href="http://zotero.org/groups/pros_paper/items/KI2TT8DI"/>
117
+ <zapi:key>KI2TT8DI</zapi:key>
118
+ <zapi:itemType>document</zapi:itemType>
119
+ <zapi:creatorSummary>Division of Healthcare Quality Promotion</zapi:creatorSummary>
120
+ <zapi:numChildren>0</zapi:numChildren>
121
+ <zapi:numTags>0</zapi:numTags>
122
+ <content type="xhtml">
123
+ <div xmlns="http://www.w3.org/1999/xhtml">
124
+ <table>
125
+ <tr class="itemType">
126
+ <th style="text-align: right">Type</th>
127
+ <td>Document</td>
128
+ </tr>
129
+ <tr class="creator">
130
+ <th style="text-align: right">Author</th>
131
+ <td>Division of Healthcare Quality Promotion</td>
132
+ </tr>
133
+ <tr class="url">
134
+ <th style="text-align: right">URL</th>
135
+ <td>http://www.cdc.gov/nhsn/PDFs/hemovigModuleProtocol_current.pdf</td>
136
+ </tr>
137
+ <tr class="publisher">
138
+ <th style="text-align: right">Publisher</th>
139
+ <td>Centers for Disease Control and Prevention</td>
140
+ </tr>
141
+ <tr class="date">
142
+ <th style="text-align: right">Date</th>
143
+ <td>July 2010</td>
144
+ </tr>
145
+ </table>
146
+ </div>
147
+ </content>
148
+ </entry>
149
+ <entry>
150
+ <title>RFID in the Blood Supply Chain</title>
151
+ <author>
152
+ <name>ingle.atul</name>
153
+ <uri>http://zotero.org/ingle.atul</uri>
154
+ </author>
155
+ <id>http://zotero.org/groups/pros_paper/items/5CZEF6CH</id>
156
+ <published>2011-09-02T17:01:25Z</published>
157
+ <updated>2011-09-02T17:03:03Z</updated>
158
+ <link rel="self" type="application/atom+xml" href="https://api.zotero.org/groups/52650/items/5CZEF6CH"/>
159
+ <link rel="alternate" type="text/html" href="http://zotero.org/groups/pros_paper/items/5CZEF6CH"/>
160
+ <zapi:key>5CZEF6CH</zapi:key>
161
+ <zapi:itemType>journalArticle</zapi:itemType>
162
+ <zapi:creatorSummary>Briggs et al.</zapi:creatorSummary>
163
+ <zapi:numChildren>0</zapi:numChildren>
164
+ <zapi:numTags>0</zapi:numTags>
165
+ <content type="xhtml">
166
+ <div xmlns="http://www.w3.org/1999/xhtml">
167
+ <table>
168
+ <tr class="itemType">
169
+ <th style="text-align: right">Type</th>
170
+ <td>Journal Article</td>
171
+ </tr>
172
+ <tr class="creator">
173
+ <th style="text-align: right">Author</th>
174
+ <td>L Briggs</td>
175
+ </tr>
176
+ <tr class="creator">
177
+ <th style="text-align: right">Author</th>
178
+ <td>A Gutierrez</td>
179
+ </tr>
180
+ <tr class="creator">
181
+ <th style="text-align: right">Author</th>
182
+ <td>M Kopetsky</td>
183
+ </tr>
184
+ <tr class="creator">
185
+ <th style="text-align: right">Author</th>
186
+ <td>K Young</td>
187
+ </tr>
188
+ <tr class="creator">
189
+ <th style="text-align: right">Author</th>
190
+ <td>R Veeramani</td>
191
+ </tr>
192
+ <tr class="volume">
193
+ <th style="text-align: right">Volume</th>
194
+ <td>Fall 2009</td>
195
+ </tr>
196
+ <tr class="issue">
197
+ <th style="text-align: right">Issue</th>
198
+ <td>23 (4)</td>
199
+ </tr>
200
+ <tr class="pages">
201
+ <th style="text-align: right">Pages</th>
202
+ <td>54-63</td>
203
+ </tr>
204
+ <tr class="publicationTitle">
205
+ <th style="text-align: right">Publication</th>
206
+ <td>Journal of Healthcare Information Management</td>
207
+ </tr>
208
+ </table>
209
+ </div>
210
+ </content>
211
+ </entry>
212
+ <entry>
213
+ <title>National Transfusion Transmitted Injury Surveillance System [database on the Internet]</title>
214
+ <author>
215
+ <name>ingle.atul</name>
216
+ <uri>http://zotero.org/ingle.atul</uri>
217
+ </author>
218
+ <id>http://zotero.org/groups/pros_paper/items/BP2PF5VK</id>
219
+ <published>2011-09-02T17:00:43Z</published>
220
+ <updated>2011-09-02T17:01:14Z</updated>
221
+ <link rel="self" type="application/atom+xml" href="https://api.zotero.org/groups/52650/items/BP2PF5VK"/>
222
+ <link rel="alternate" type="text/html" href="http://zotero.org/groups/pros_paper/items/BP2PF5VK"/>
223
+ <zapi:key>BP2PF5VK</zapi:key>
224
+ <zapi:itemType>webpage</zapi:itemType>
225
+ <zapi:creatorSummary>Public Health Agency of Canada</zapi:creatorSummary>
226
+ <zapi:numChildren>0</zapi:numChildren>
227
+ <zapi:numTags>0</zapi:numTags>
228
+ <content type="xhtml">
229
+ <div xmlns="http://www.w3.org/1999/xhtml">
230
+ <table>
231
+ <tr class="itemType">
232
+ <th style="text-align: right">Type</th>
233
+ <td>Web Page</td>
234
+ </tr>
235
+ <tr class="creator">
236
+ <th style="text-align: right">Author</th>
237
+ <td>Public Health Agency of Canada</td>
238
+ </tr>
239
+ <tr class="url">
240
+ <th style="text-align: right">URL</th>
241
+ <td>http://www.phac-aspc.gc.ca/hcai-iamss/tti-it/tti_report-eng.php</td>
242
+ </tr>
243
+ <tr class="accessDate">
244
+ <th style="text-align: right">Accessed</th>
245
+ <td>2009-01-16</td>
246
+ </tr>
247
+ </table>
248
+ </div>
249
+ </content>
250
+ </entry>
251
+ <entry>
252
+ <title>Serious Hazards of Transfusion [database on the Internet]</title>
253
+ <author>
254
+ <name>ingle.atul</name>
255
+ <uri>http://zotero.org/ingle.atul</uri>
256
+ </author>
257
+ <id>http://zotero.org/groups/pros_paper/items/APA7FVT2</id>
258
+ <published>2011-09-02T16:59:55Z</published>
259
+ <updated>2011-09-02T17:00:31Z</updated>
260
+ <link rel="self" type="application/atom+xml" href="https://api.zotero.org/groups/52650/items/APA7FVT2"/>
261
+ <link rel="alternate" type="text/html" href="http://zotero.org/groups/pros_paper/items/APA7FVT2"/>
262
+ <zapi:key>APA7FVT2</zapi:key>
263
+ <zapi:itemType>webpage</zapi:itemType>
264
+ <zapi:creatorSummary/>
265
+ <zapi:numChildren>0</zapi:numChildren>
266
+ <zapi:numTags>0</zapi:numTags>
267
+ <content type="xhtml">
268
+ <div xmlns="http://www.w3.org/1999/xhtml">
269
+ <table>
270
+ <tr class="itemType">
271
+ <th style="text-align: right">Type</th>
272
+ <td>Web Page</td>
273
+ </tr>
274
+ <tr class="url">
275
+ <th style="text-align: right">URL</th>
276
+ <td>http://www.shotuk.org/</td>
277
+ </tr>
278
+ <tr class="accessDate">
279
+ <th style="text-align: right">Accessed</th>
280
+ <td>2009-01-16</td>
281
+ </tr>
282
+ </table>
283
+ </div>
284
+ </content>
285
+ </entry>
286
+ <entry>
287
+ <title>Biological Product and HCT-P Deviation Reports [database on the Internet]</title>
288
+ <author>
289
+ <name>ingle.atul</name>
290
+ <uri>http://zotero.org/ingle.atul</uri>
291
+ </author>
292
+ <id>http://zotero.org/groups/pros_paper/items/R7HD82TX</id>
293
+ <published>2011-09-02T16:58:18Z</published>
294
+ <updated>2011-09-02T16:59:30Z</updated>
295
+ <link rel="self" type="application/atom+xml" href="https://api.zotero.org/groups/52650/items/R7HD82TX"/>
296
+ <link rel="alternate" type="text/html" href="http://zotero.org/groups/pros_paper/items/R7HD82TX"/>
297
+ <zapi:key>R7HD82TX</zapi:key>
298
+ <zapi:itemType>webpage</zapi:itemType>
299
+ <zapi:creatorSummary>FDA-Centers for Biological Evaluation and Research</zapi:creatorSummary>
300
+ <zapi:numChildren>0</zapi:numChildren>
301
+ <zapi:numTags>0</zapi:numTags>
302
+ <content type="xhtml">
303
+ <div xmlns="http://www.w3.org/1999/xhtml">
304
+ <table>
305
+ <tr class="itemType">
306
+ <th style="text-align: right">Type</th>
307
+ <td>Web Page</td>
308
+ </tr>
309
+ <tr class="creator">
310
+ <th style="text-align: right">Author</th>
311
+ <td>FDA-Centers for Biological Evaluation and Research</td>
312
+ </tr>
313
+ <tr class="url">
314
+ <th style="text-align: right">URL</th>
315
+ <td>http://www.fda.gov/BiologicsBloodVaccines/SafetyAvailability/ReportaProblem/BiologicalProductDeviations/ucm129757.htm</td>
316
+ </tr>
317
+ <tr class="accessDate">
318
+ <th style="text-align: right">Accessed</th>
319
+ <td>2008-08-05</td>
320
+ </tr>
321
+ <tr class="websiteTitle">
322
+ <th style="text-align: right">Website Title</th>
323
+ <td>U.S. Food and Drug Administration [homepage on the Internet]</td>
324
+ </tr>
325
+ </table>
326
+ </div>
327
+ </content>
328
+ </entry>
329
+ <entry>
330
+ <title>The 2007 Nation Wide Blood Service and Utilization Survey Report. American Association of Blood Banks</title>
331
+ <author>
332
+ <name>ingle.atul</name>
333
+ <uri>http://zotero.org/ingle.atul</uri>
334
+ </author>
335
+ <id>http://zotero.org/groups/pros_paper/items/DJ28V8SC</id>
336
+ <published>2011-09-02T16:57:29Z</published>
337
+ <updated>2011-09-02T16:58:07Z</updated>
338
+ <link rel="self" type="application/atom+xml" href="https://api.zotero.org/groups/52650/items/DJ28V8SC"/>
339
+ <link rel="alternate" type="text/html" href="http://zotero.org/groups/pros_paper/items/DJ28V8SC"/>
340
+ <zapi:key>DJ28V8SC</zapi:key>
341
+ <zapi:itemType>document</zapi:itemType>
342
+ <zapi:creatorSummary>Whitaker and Sullivan</zapi:creatorSummary>
343
+ <zapi:numChildren>0</zapi:numChildren>
344
+ <zapi:numTags>0</zapi:numTags>
345
+ <content type="xhtml">
346
+ <div xmlns="http://www.w3.org/1999/xhtml">
347
+ <table>
348
+ <tr class="itemType">
349
+ <th style="text-align: right">Type</th>
350
+ <td>Document</td>
351
+ </tr>
352
+ <tr class="creator">
353
+ <th style="text-align: right">Author</th>
354
+ <td>B L Whitaker</td>
355
+ </tr>
356
+ <tr class="creator">
357
+ <th style="text-align: right">Author</th>
358
+ <td>M Sullivan</td>
359
+ </tr>
360
+ <tr class="url">
361
+ <th style="text-align: right">URL</th>
362
+ <td>http://www.aabb.org/Content/Programs_and_Services/Data_Center/NBCUS/nbcus.htm</td>
363
+ </tr>
364
+ </table>
365
+ </div>
366
+ </content>
367
+ </entry>
368
+ <entry>
369
+ <title>Adoption of health information technology for medication safety in U.S. hospitals, 2006</title>
370
+ <author>
371
+ <name>ingle.atul</name>
372
+ <uri>http://zotero.org/ingle.atul</uri>
373
+ </author>
374
+ <id>http://zotero.org/groups/pros_paper/items/BK2828KB</id>
375
+ <published>2011-09-02T16:53:29Z</published>
376
+ <updated>2011-09-02T16:55:50Z</updated>
377
+ <link rel="self" type="application/atom+xml" href="https://api.zotero.org/groups/52650/items/BK2828KB"/>
378
+ <link rel="alternate" type="text/html" href="http://zotero.org/groups/pros_paper/items/BK2828KB"/>
379
+ <zapi:key>BK2828KB</zapi:key>
380
+ <zapi:itemType>journalArticle</zapi:itemType>
381
+ <zapi:creatorSummary>Furukawa et al.</zapi:creatorSummary>
382
+ <zapi:numChildren>0</zapi:numChildren>
383
+ <zapi:numTags>0</zapi:numTags>
384
+ <content type="xhtml">
385
+ <div xmlns="http://www.w3.org/1999/xhtml">
386
+ <table>
387
+ <tr class="itemType">
388
+ <th style="text-align: right">Type</th>
389
+ <td>Journal Article</td>
390
+ </tr>
391
+ <tr class="creator">
392
+ <th style="text-align: right">Author</th>
393
+ <td>M F Furukawa</td>
394
+ </tr>
395
+ <tr class="creator">
396
+ <th style="text-align: right">Author</th>
397
+ <td>T S Raghu</td>
398
+ </tr>
399
+ <tr class="creator">
400
+ <th style="text-align: right">Author</th>
401
+ <td>T J Spaulding</td>
402
+ </tr>
403
+ <tr class="creator">
404
+ <th style="text-align: right">Author</th>
405
+ <td>A Vinze</td>
406
+ </tr>
407
+ <tr class="issue">
408
+ <th style="text-align: right">Issue</th>
409
+ <td>27 (3)</td>
410
+ </tr>
411
+ <tr class="pages">
412
+ <th style="text-align: right">Pages</th>
413
+ <td>865-875</td>
414
+ </tr>
415
+ <tr class="publicationTitle">
416
+ <th style="text-align: right">Publication</th>
417
+ <td>Health Aff.</td>
418
+ </tr>
419
+ <tr class="date">
420
+ <th style="text-align: right">Date</th>
421
+ <td>2008</td>
422
+ </tr>
423
+ </table>
424
+ </div>
425
+ </content>
426
+ </entry>
427
+ <entry>
428
+ <title>FDA Rule Requires Bar Codes on Drugs and Blood to Help Reduce Errors: Improving Patient and Consumer Safety</title>
429
+ <author>
430
+ <name>ingle.atul</name>
431
+ <uri>http://zotero.org/ingle.atul</uri>
432
+ </author>
433
+ <id>http://zotero.org/groups/pros_paper/items/Z862NPX5</id>
434
+ <published>2011-09-02T16:51:12Z</published>
435
+ <updated>2011-09-02T16:52:48Z</updated>
436
+ <link rel="self" type="application/atom+xml" href="https://api.zotero.org/groups/52650/items/Z862NPX5"/>
437
+ <link rel="alternate" type="text/html" href="http://zotero.org/groups/pros_paper/items/Z862NPX5"/>
438
+ <zapi:key>Z862NPX5</zapi:key>
439
+ <zapi:itemType>webpage</zapi:itemType>
440
+ <zapi:creatorSummary>US-FDA</zapi:creatorSummary>
441
+ <zapi:numChildren>0</zapi:numChildren>
442
+ <zapi:numTags>0</zapi:numTags>
443
+ <content type="xhtml">
444
+ <div xmlns="http://www.w3.org/1999/xhtml">
445
+ <table>
446
+ <tr class="itemType">
447
+ <th style="text-align: right">Type</th>
448
+ <td>Web Page</td>
449
+ </tr>
450
+ <tr class="creator">
451
+ <th style="text-align: right">Author</th>
452
+ <td>US-FDA</td>
453
+ </tr>
454
+ <tr class="url">
455
+ <th style="text-align: right">URL</th>
456
+ <td>www.fda.gov/oc/initiatives/barcode-sadr/</td>
457
+ </tr>
458
+ <tr class="date">
459
+ <th style="text-align: right">Date</th>
460
+ <td>2008</td>
461
+ </tr>
462
+ <tr class="accessDate">
463
+ <th style="text-align: right">Accessed</th>
464
+ <td>2008-11-05</td>
465
+ </tr>
466
+ <tr class="websiteTitle">
467
+ <th style="text-align: right">Website Title</th>
468
+ <td>U.S. Food and Drug Administration [homepage on the Internet]</td>
469
+ </tr>
470
+ </table>
471
+ </div>
472
+ </content>
473
+ </entry>
474
+ <entry>
475
+ <title>Patient Safety with Blood Products Administration Using Wireless and Bar-Code Technology</title>
476
+ <author>
477
+ <name>ingle.atul</name>
478
+ <uri>http://zotero.org/ingle.atul</uri>
479
+ </author>
480
+ <id>http://zotero.org/groups/pros_paper/items/F5HCCT8G</id>
481
+ <published>2011-09-02T16:48:16Z</published>
482
+ <updated>2011-09-02T16:50:13Z</updated>
483
+ <link rel="self" type="application/atom+xml" href="https://api.zotero.org/groups/52650/items/F5HCCT8G"/>
484
+ <link rel="alternate" type="text/html" href="http://zotero.org/groups/pros_paper/items/F5HCCT8G"/>
485
+ <zapi:key>F5HCCT8G</zapi:key>
486
+ <zapi:itemType>journalArticle</zapi:itemType>
487
+ <zapi:creatorSummary>Porcella and Walker</zapi:creatorSummary>
488
+ <zapi:numChildren>0</zapi:numChildren>
489
+ <zapi:numTags>0</zapi:numTags>
490
+ <content type="xhtml">
491
+ <div xmlns="http://www.w3.org/1999/xhtml">
492
+ <table>
493
+ <tr class="itemType">
494
+ <th style="text-align: right">Type</th>
495
+ <td>Journal Article</td>
496
+ </tr>
497
+ <tr class="creator">
498
+ <th style="text-align: right">Author</th>
499
+ <td>A Porcella</td>
500
+ </tr>
501
+ <tr class="creator">
502
+ <th style="text-align: right">Author</th>
503
+ <td>K Walker</td>
504
+ </tr>
505
+ <tr class="url">
506
+ <th style="text-align: right">URL</th>
507
+ <td>http://www.ncbi.nlm.nih.gov/pmc/articles/PMC1560432/?report=abstract</td>
508
+ </tr>
509
+ <tr class="pages">
510
+ <th style="text-align: right">Pages</th>
511
+ <td>614&#x2013;618</td>
512
+ </tr>
513
+ <tr class="publicationTitle">
514
+ <th style="text-align: right">Publication</th>
515
+ <td>AMIA Annu Symp Proc. 2005</td>
516
+ </tr>
517
+ <tr class="date">
518
+ <th style="text-align: right">Date</th>
519
+ <td>2005</td>
520
+ </tr>
521
+ </table>
522
+ </div>
523
+ </content>
524
+ </entry>
525
+ <entry>
526
+ <title>Les incidents et accidents transfusionnels signal&#xE9;s au syst&#xE8;me d&#x2019;h&#xE9;movigilance du Qu&#xE9;bec en 2004</title>
527
+ <author>
528
+ <name>ingle.atul</name>
529
+ <uri>http://zotero.org/ingle.atul</uri>
530
+ </author>
531
+ <id>http://zotero.org/groups/pros_paper/items/UTKNVE7R</id>
532
+ <published>2011-09-02T16:47:26Z</published>
533
+ <updated>2011-09-02T16:48:07Z</updated>
534
+ <link rel="self" type="application/atom+xml" href="https://api.zotero.org/groups/52650/items/UTKNVE7R"/>
535
+ <link rel="alternate" type="text/html" href="http://zotero.org/groups/pros_paper/items/UTKNVE7R"/>
536
+ <zapi:key>UTKNVE7R</zapi:key>
537
+ <zapi:itemType>journalArticle</zapi:itemType>
538
+ <zapi:creatorSummary>Robiliard and Nawej</zapi:creatorSummary>
539
+ <zapi:numChildren>0</zapi:numChildren>
540
+ <zapi:numTags>0</zapi:numTags>
541
+ <content type="xhtml">
542
+ <div xmlns="http://www.w3.org/1999/xhtml">
543
+ <table>
544
+ <tr class="itemType">
545
+ <th style="text-align: right">Type</th>
546
+ <td>Journal Article</td>
547
+ </tr>
548
+ <tr class="creator">
549
+ <th style="text-align: right">Author</th>
550
+ <td>P Robiliard</td>
551
+ </tr>
552
+ <tr class="creator">
553
+ <th style="text-align: right">Author</th>
554
+ <td>K Nawej</td>
555
+ </tr>
556
+ <tr class="url">
557
+ <th style="text-align: right">URL</th>
558
+ <td>http://publications.msss.gouv.qc.ca/acrobat/f/documentation/2009/09-212-05.pdf</td>
559
+ </tr>
560
+ <tr class="date">
561
+ <th style="text-align: right">Date</th>
562
+ <td>2007</td>
563
+ </tr>
564
+ </table>
565
+ </div>
566
+ </content>
567
+ </entry>
568
+ <entry>
569
+ <title>Les incidents et accidents transfusionnels signal&#xE9;s au syst&#xE8;me d&#x2019;h&#xE9;movigilance du Qu&#xE9;bec en 2004</title>
570
+ <author>
571
+ <name>ingle.atul</name>
572
+ <uri>http://zotero.org/ingle.atul</uri>
573
+ </author>
574
+ <id>http://zotero.org/groups/pros_paper/items/5WXT7TM5</id>
575
+ <published>2011-09-02T16:47:15Z</published>
576
+ <updated>2011-09-02T16:47:22Z</updated>
577
+ <link rel="self" type="application/atom+xml" href="https://api.zotero.org/groups/52650/items/5WXT7TM5"/>
578
+ <link rel="alternate" type="text/html" href="http://zotero.org/groups/pros_paper/items/5WXT7TM5"/>
579
+ <zapi:key>5WXT7TM5</zapi:key>
580
+ <zapi:itemType>journalArticle</zapi:itemType>
581
+ <zapi:creatorSummary>Robiliard and Nawej</zapi:creatorSummary>
582
+ <zapi:numChildren>0</zapi:numChildren>
583
+ <zapi:numTags>0</zapi:numTags>
584
+ <content type="xhtml">
585
+ <div xmlns="http://www.w3.org/1999/xhtml">
586
+ <table>
587
+ <tr class="itemType">
588
+ <th style="text-align: right">Type</th>
589
+ <td>Journal Article</td>
590
+ </tr>
591
+ <tr class="creator">
592
+ <th style="text-align: right">Author</th>
593
+ <td>P Robiliard</td>
594
+ </tr>
595
+ <tr class="creator">
596
+ <th style="text-align: right">Author</th>
597
+ <td>K Nawej</td>
598
+ </tr>
599
+ <tr class="url">
600
+ <th style="text-align: right">URL</th>
601
+ <td>http://msssa4.msss.gouv.qc.ca/santpub/sang.nsf/f531ae8ac61d85e485256869005adcba/50561a37902dcbbf85256eb4006fc7c9?OpenDocument</td>
602
+ </tr>
603
+ <tr class="date">
604
+ <th style="text-align: right">Date</th>
605
+ <td>2006</td>
606
+ </tr>
607
+ </table>
608
+ </div>
609
+ </content>
610
+ </entry>
611
+ <entry>
612
+ <title>Les incidents et accidents transfusionnels signal&#xE9;s au syst&#xE8;me d&#x2019;h&#xE9;movigilance du Qu&#xE9;bec en 2004</title>
613
+ <author>
614
+ <name>ingle.atul</name>
615
+ <uri>http://zotero.org/ingle.atul</uri>
616
+ </author>
617
+ <id>http://zotero.org/groups/pros_paper/items/29PE528Q</id>
618
+ <published>2011-09-02T16:47:06Z</published>
619
+ <updated>2011-09-02T16:47:13Z</updated>
620
+ <link rel="self" type="application/atom+xml" href="https://api.zotero.org/groups/52650/items/29PE528Q"/>
621
+ <link rel="alternate" type="text/html" href="http://zotero.org/groups/pros_paper/items/29PE528Q"/>
622
+ <zapi:key>29PE528Q</zapi:key>
623
+ <zapi:itemType>journalArticle</zapi:itemType>
624
+ <zapi:creatorSummary>Robiliard and Nawej</zapi:creatorSummary>
625
+ <zapi:numChildren>0</zapi:numChildren>
626
+ <zapi:numTags>0</zapi:numTags>
627
+ <content type="xhtml">
628
+ <div xmlns="http://www.w3.org/1999/xhtml">
629
+ <table>
630
+ <tr class="itemType">
631
+ <th style="text-align: right">Type</th>
632
+ <td>Journal Article</td>
633
+ </tr>
634
+ <tr class="creator">
635
+ <th style="text-align: right">Author</th>
636
+ <td>P Robiliard</td>
637
+ </tr>
638
+ <tr class="creator">
639
+ <th style="text-align: right">Author</th>
640
+ <td>K Nawej</td>
641
+ </tr>
642
+ <tr class="url">
643
+ <th style="text-align: right">URL</th>
644
+ <td>http://msssa4.msss.gouv.qc.ca/santpub/sang.nsf/f531ae8ac61d85e485256869005adcba/50561a37902dcbbf85256eb4006fc7c9?OpenDocument</td>
645
+ </tr>
646
+ <tr class="date">
647
+ <th style="text-align: right">Date</th>
648
+ <td>2005</td>
649
+ </tr>
650
+ </table>
651
+ </div>
652
+ </content>
653
+ </entry>
654
+ <entry>
655
+ <title>Les incidents et accidents transfusionnels signal&#xE9;s au syst&#xE8;me d&#x2019;h&#xE9;movigilance du Qu&#xE9;bec en 2004</title>
656
+ <author>
657
+ <name>ingle.atul</name>
658
+ <uri>http://zotero.org/ingle.atul</uri>
659
+ </author>
660
+ <id>http://zotero.org/groups/pros_paper/items/374F4TK2</id>
661
+ <published>2011-09-02T16:45:40Z</published>
662
+ <updated>2011-09-02T16:46:57Z</updated>
663
+ <link rel="self" type="application/atom+xml" href="https://api.zotero.org/groups/52650/items/374F4TK2"/>
664
+ <link rel="alternate" type="text/html" href="http://zotero.org/groups/pros_paper/items/374F4TK2"/>
665
+ <zapi:key>374F4TK2</zapi:key>
666
+ <zapi:itemType>journalArticle</zapi:itemType>
667
+ <zapi:creatorSummary>Robiliard and Nawej</zapi:creatorSummary>
668
+ <zapi:numChildren>0</zapi:numChildren>
669
+ <zapi:numTags>0</zapi:numTags>
670
+ <content type="xhtml">
671
+ <div xmlns="http://www.w3.org/1999/xhtml">
672
+ <table>
673
+ <tr class="itemType">
674
+ <th style="text-align: right">Type</th>
675
+ <td>Journal Article</td>
676
+ </tr>
677
+ <tr class="creator">
678
+ <th style="text-align: right">Author</th>
679
+ <td>P Robiliard</td>
680
+ </tr>
681
+ <tr class="creator">
682
+ <th style="text-align: right">Author</th>
683
+ <td>K Nawej</td>
684
+ </tr>
685
+ <tr class="url">
686
+ <th style="text-align: right">URL</th>
687
+ <td>http://msssa4.msss.gouv.qc.ca/santpub/sang.nsf/f531ae8ac61d85e485256869005adcba/50561a37902dcbbf85256eb4006fc7c9?OpenDocument</td>
688
+ </tr>
689
+ <tr class="date">
690
+ <th style="text-align: right">Date</th>
691
+ <td>2004</td>
692
+ </tr>
693
+ </table>
694
+ </div>
695
+ </content>
696
+ </entry>
697
+ </feed>
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 2
9
- version: 0.0.2
8
+ - 3
9
+ version: 0.0.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Collis-Puro
@@ -69,6 +69,7 @@ files:
69
69
  - spec/test_data/doc.atom
70
70
  - spec/test_data/katanapg.atom
71
71
  - spec/test_data/oa.africa.rss
72
+ - spec/test_data/zotero.rss
72
73
  has_rdoc: true
73
74
  homepage: https://github.com/berkmancenter/feed-abstract
74
75
  licenses: []