feed-abstract 0.0.11 → 0.0.12

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "feed-abstract"
8
- s.version = "0.0.11"
8
+ s.version = "0.0.12"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Daniel Collis-Puro"]
12
- s.date = "2012-03-20"
12
+ s.date = "2012-04-17"
13
13
  s.description = "This library creates a common object graph for the RSS/Atom/RDF parsing classes in the ruby standard library. This allows you parse different feed formats and get back the same (or at least a very similar) set of results - item authors are accessible under an \"author(s)\" attribute, categories/tags/subjects are accessible under \"category(ies)\" attributes, etc. We do our best to make sure the data makes sense, too - RSS items lack an \"updated\" attribute, so we use \"pubDate\" to populate it. "
14
14
  s.email = ["djcp@cyber.law.harvard.edu"]
15
15
  s.extra_rdoc_files = [
@@ -34,10 +34,12 @@ Gem::Specification.new do |s|
34
34
  "lib/feed-abstract/items/rss.rb",
35
35
  "lib/feed-abstract/mixins.rb",
36
36
  "lib/feed-abstract/version.rb",
37
+ "lib/rss_atom_monkeypatches.rb",
37
38
  "spec/feed_abstract_channel_spec.rb",
38
39
  "spec/feed_abstract_item_spec.rb",
39
40
  "spec/feed_abstract_spec.rb",
40
41
  "spec/spec_helper.rb",
42
+ "spec/test_data/LawLibrarianBlog.atom",
41
43
  "spec/test_data/chillingeffects.xml",
42
44
  "spec/test_data/djcp.rss",
43
45
  "spec/test_data/djcp.rss92",
@@ -5,7 +5,9 @@ $LOAD_PATH.unshift(File.dirname(__FILE__)) unless $LOAD_PATH.include?(File.dirna
5
5
  require 'rss'
6
6
  require 'iconv'
7
7
 
8
- require "feed-abstract/version"
8
+ require 'rss_atom_monkeypatches'
9
+
10
+ require 'feed-abstract/version'
9
11
  require 'feed-abstract/mixins'
10
12
 
11
13
  require 'feed-abstract/channel/atom'
@@ -21,8 +21,8 @@ module FeedAbstract
21
21
  end
22
22
 
23
23
  def description
24
- return '' if @feed.subtitle.nil?
25
- @feed.subtitle.content
24
+ return '' if @feed.subtitle.nil? && @feed.tagline.nil?
25
+ (@feed.subtitle.nil?) ? @feed.tagline.content : @feed.subtitle.content
26
26
  end
27
27
  alias :subtitle :description
28
28
 
@@ -43,8 +43,8 @@ module FeedAbstract
43
43
 
44
44
  # A Time object
45
45
  def published
46
- return '' if @item.published.nil?
47
- @item.published.content
46
+ return '' if @item.published.nil? && @item.created.nil?
47
+ (@item.published.nil?) ? @item.created.content : @item.published.content
48
48
  end
49
49
 
50
50
  end
@@ -25,8 +25,8 @@ module FeedAbstractMixins
25
25
 
26
26
  # A Time object representing when resource was updated.
27
27
  def updated
28
- return '' if @source.updated.nil?
29
- @source.updated.content
28
+ return '' if @source.updated.nil? && @source.modified.nil?
29
+ (@source.updated.nil?) ? @source.modified.content : @source.updated.content
30
30
  end
31
31
 
32
32
  # Copyright info.
@@ -55,8 +55,12 @@ module FeedAbstractMixins
55
55
  if self.respond_to?(:channel) && self.channel.generator == 'Twitter'
56
56
  return @source.title.content.scan(/#([^#\s]+)/).flatten
57
57
  end
58
- return [] if @source.categories.empty?
59
- @source.categories.collect{|c| c.term}.reject{|c| c == '' || c.match(/^\s+$/)}
58
+ return [] if @source.categories.empty? && @source.dc_subjects.empty?
59
+ tmp_cats = []
60
+ tmp_cats << @source.categories.collect{|c| c.term}
61
+ tmp_cats << @source.dc_subjects.collect{|c| c.content}
62
+
63
+ tmp_cats.flatten.reject{|c| c == '' || c.match(/^\s+$/)}
60
64
  end
61
65
 
62
66
  # The categories list as a string joined with a comma.
@@ -1,5 +1,5 @@
1
1
  # encoding: UTF-8
2
2
 
3
3
  module FeedAbstract
4
- VERSION = "0.0.11"
4
+ VERSION = "0.0.12"
5
5
  end
@@ -0,0 +1,28 @@
1
+ module RSS
2
+ module Atom
3
+ class Feed
4
+ class Modified < RSS::Element
5
+ include CommonModel
6
+ include DateConstruct
7
+ end
8
+ class Created < RSS::Element
9
+ include CommonModel
10
+ include DateConstruct
11
+ end
12
+ class Tagline < RSS::Element
13
+ include CommonModel
14
+ include TextConstruct
15
+ end
16
+ install_get_attribute('created', '?', :child, :content)
17
+ install_get_attribute('modified', '?', :child, :content)
18
+ install_get_attribute('tagline', nil, nil, :content)
19
+
20
+ class Entry
21
+ install_get_attribute('created', '?', :child, :content)
22
+ install_get_attribute('modified', '?', :child, :content)
23
+ Modified = RSS::Atom::Feed::Modified
24
+ Created = RSS::Atom::Feed::Created
25
+ end
26
+ end
27
+ end
28
+ end
@@ -21,6 +21,7 @@ module FeedAbstract
21
21
  it { @chill.channel.should respond_to att}
22
22
  it { @twitter.channel.should respond_to att}
23
23
  it { @twitter_atom.channel.should respond_to att}
24
+ it { @feedburner_atom.channel.should respond_to att}
24
25
 
25
26
  it { @docatom.channel.send(att).should_not == false}
26
27
  it { @kpgatom.channel.send(att).should_not == false}
@@ -34,6 +35,7 @@ module FeedAbstract
34
35
  it { @chill.channel.send(att).should_not == false}
35
36
  it { @twitter.channel.send(att).should_not == false}
36
37
  it { @twitter_atom.channel.send(att).should_not == false}
38
+ it { @feedburner_atom.channel.send(att).should_not == false}
37
39
  end
38
40
 
39
41
  it "should have the correct title" do
@@ -49,6 +51,7 @@ module FeedAbstract
49
51
  @chill.channel.title.should == 'Chilling Effects Clearinghouse Weather Reports'
50
52
  @twitter.channel.title.should == 'Twitter / djcp'
51
53
  @twitter_atom.channel.title.should == '#rails - Twitter Search'
54
+ @feedburner_atom.channel.title.should == 'Law Librarian Blog'
52
55
  end
53
56
 
54
57
  it "should have the correct subtitle and description" do
@@ -87,6 +90,9 @@ module FeedAbstract
87
90
 
88
91
  @twitter_atom.channel.description.should == ''
89
92
  @twitter_atom.channel.subtitle.should == ''
93
+
94
+ @feedburner_atom.channel.description.should == 'A Member of the Law Professor Blogs Network'
95
+ @feedburner_atom.channel.subtitle.should == 'A Member of the Law Professor Blogs Network'
90
96
  end
91
97
 
92
98
  it "should have the correct link" do
@@ -102,6 +108,7 @@ module FeedAbstract
102
108
  @chill.channel.link.should == 'http://www.chillingeffects.org'
103
109
  @twitter.channel.link.should == 'http://twitter.com/djcp'
104
110
  @twitter_atom.channel.link.should == 'http://search.twitter.com/search?q=%23rails'
111
+ @feedburner_atom.channel.link.should == 'http://lawprofessors.typepad.com/law_librarian_blog/'
105
112
  end
106
113
 
107
114
  it "should have the correct generator" do
@@ -117,6 +124,7 @@ module FeedAbstract
117
124
  @chill.channel.generator.should == ''
118
125
  @twitter.channel.generator.should == 'Twitter'
119
126
  @twitter_atom.channel.generator.should == 'Twitter'
127
+ @feedburner_atom.channel.generator.should == 'TypePad'
120
128
  end
121
129
 
122
130
  it "should have the correct language" do
@@ -132,6 +140,7 @@ module FeedAbstract
132
140
  @chill.channel.language.should == 'en-us'
133
141
  @twitter.channel.language.should == 'en-us'
134
142
  @twitter_atom.channel.language.should == 'en-US'
143
+ @feedburner_atom.channel.language.should == ''
135
144
  end
136
145
 
137
146
  it "should have the correct authors" do
@@ -147,6 +156,7 @@ module FeedAbstract
147
156
  @chill.channel.authors.should == ['Wendy Seltzer, wseltzer@chillingeffects.org']
148
157
  @twitter.channel.authors.should == []
149
158
  @twitter_atom.channel.authors.should == []
159
+ @feedburner_atom.channel.authors.should == []
150
160
 
151
161
  @docatom.channel.author.should == 'Doc Searls'
152
162
  @kpgatom.channel.author.should == 'Nick Pappas'
@@ -160,6 +170,7 @@ module FeedAbstract
160
170
  @chill.channel.author.should == 'Wendy Seltzer, wseltzer@chillingeffects.org'
161
171
  @twitter.channel.author.should == ''
162
172
  @twitter_atom.channel.author.should == ''
173
+ @feedburner_atom.channel.author.should == ''
163
174
 
164
175
  end
165
176
 
@@ -176,6 +187,7 @@ module FeedAbstract
176
187
  @chill.channel.categories.should == ['Your rights online']
177
188
  @twitter.channel.categories.should == []
178
189
  @twitter_atom.channel.categories.should == []
190
+ @feedburner_atom.channel.categories.should == []
179
191
 
180
192
  @docatom.channel.category.should == ''
181
193
  @kpgatom.channel.category.should == 'photos'
@@ -189,6 +201,7 @@ module FeedAbstract
189
201
  @chill.channel.category.should == 'Your rights online'
190
202
  @twitter.channel.category.should == ''
191
203
  @twitter_atom.channel.category.should == ''
204
+ @feedburner_atom.channel.category.should == ''
192
205
  end
193
206
 
194
207
  it "should have the correct icon" do
@@ -204,6 +217,7 @@ module FeedAbstract
204
217
  @chill.channel.icon.should == 'http://images.chillingeffects.org/chilling_effects.gif'
205
218
  @twitter.channel.icon.should == ''
206
219
  @twitter_atom.channel.icon.should == ''
220
+ @feedburner_atom.channel.icon.should == ''
207
221
  end
208
222
 
209
223
  it "should have the correct logo" do
@@ -219,6 +233,7 @@ module FeedAbstract
219
233
  @chill.channel.logo.should == 'http://images.chillingeffects.org/chilling_effects.gif'
220
234
  @twitter.channel.logo.should == ''
221
235
  @twitter_atom.channel.logo.should == ''
236
+ @feedburner_atom.channel.logo.should == ''
222
237
  end
223
238
 
224
239
  it "should have the correct rights" do
@@ -234,6 +249,7 @@ module FeedAbstract
234
249
  @chill.channel.rights.should == ''
235
250
  @twitter.channel.rights.should == ''
236
251
  @twitter_atom.channel.rights.should == ''
252
+ @feedburner_atom.channel.rights.should == ''
237
253
  end
238
254
 
239
255
  it "should have the correct updated value" do
@@ -249,6 +265,7 @@ module FeedAbstract
249
265
  @chill.channel.updated.should == Time.parse('2002-02-25T12:00+00:00')
250
266
  @twitter.channel.updated.should == ''
251
267
  @twitter_atom.channel.updated.should == Time.parse('2012-03-19 21:56:03 UTC')
268
+ @feedburner_atom.channel.updated.should == Time.parse('2012-04-16 16:25:05 UTC')
252
269
  end
253
270
 
254
271
  it "should have the correct guid" do
@@ -264,6 +281,7 @@ module FeedAbstract
264
281
  @chill.channel.guid.should == 'http://www.chillingeffects.org'
265
282
  @twitter.channel.guid.should == 'http://twitter.com/djcp'
266
283
  @twitter_atom.channel.guid.should == 'tag:search.twitter.com,2005:search/#rails'
284
+ @feedburner_atom.channel.guid.should == 'tag:typepad.com,2003:weblog-93063'
267
285
  end
268
286
  end
269
287
  end
@@ -34,6 +34,7 @@ module FeedAbstract
34
34
  @chillitem.title.should == "Takedown Complaints in the Android Marketplace"
35
35
  @twitteritem.title.should == "djcp: @csoghoian @BrookingsInst and the clipboard as well, presumably. #security #keylogging"
36
36
  @twitteratomitem.title.should == "Senior #Ruby on #Rails developer(s) http://t.co/rvqsIK0h #jobs"
37
+ @feedburner_atom_item.title.should == "Google's Latest CAPTCHA Codes Draws Criticism"
37
38
 
38
39
  end
39
40
 
@@ -55,6 +56,7 @@ module FeedAbstract
55
56
 
56
57
  @twitteritem.summary.should == "djcp: @csoghoian @BrookingsInst and the clipboard as well, presumably. #security #keylogging"
57
58
  @twitteratomitem.summary.should == 'Senior #Ruby on #Rails developer(s) http://t.co/rvqsIK0h #jobs'
59
+ @feedburner_atom_item.summary.should == 'Here’s a little bit more from the technology front. Google has been accused of another privacy violation. Any tech company that owns a user base numbering in the billions can make a move that draws criticism. Sometimes that criticism is...'
58
60
  end
59
61
 
60
62
  it "should have the correct content" do
@@ -108,6 +110,8 @@ module FeedAbstract
108
110
  @chillitem.content.should == ''
109
111
  @twitteritem.content.should == ""
110
112
  @twitteratomitem.content.should == %Q|Senior <a href="http://search.twitter.com/search?q=%23Ruby" title="#Ruby" class=" ">#Ruby</a> on <em><a href="http://search.twitter.com/search?q=%23Rails" title="#Rails" class=" ">#Rails</a></em> developer(s) <a href="http://t.co/rvqsIK0h">http://t.co/rvqsIK0h</a> <a href="http://search.twitter.com/search?q=%23jobs" title="#jobs" class=" ">#jobs</a>|
113
+
114
+ @feedburner_atom_item.content.should == ''
111
115
  end
112
116
 
113
117
  it "should have the correct link" do
@@ -122,6 +126,7 @@ module FeedAbstract
122
126
  @chillitem.link.should == 'https://www.chillingeffects.org/weather.cgi?WeatherID=648'
123
127
  @twitteritem.link.should == 'http://twitter.com/djcp/statuses/168381896559046656'
124
128
  @twitteratomitem.link.should == 'http://twitter.com/pelaphptutor/statuses/181861618911690752'
129
+ @feedburner_atom_item.link.should == 'http://feedproxy.google.com/~r/LawLibrarianBlog/~3/CgraB_He5jQ/googles-latest-captcha-codes-draws-criticism.html'
125
130
  end
126
131
 
127
132
  it "should have the correct author" do
@@ -136,6 +141,7 @@ module FeedAbstract
136
141
  @chillitem.author.should == ''
137
142
  @twitteritem.author.should == 'djcp'
138
143
  @twitteratomitem.author.should == 'pelaphptutor'
144
+ @feedburner_atom_item.author.should == 'Joe Hodnicki'
139
145
  end
140
146
 
141
147
  it "should have the correct authors" do
@@ -150,6 +156,7 @@ module FeedAbstract
150
156
  @chillitem.authors.should == []
151
157
  @twitteritem.authors.should == ['djcp']
152
158
  @twitteratomitem.authors.should == ['pelaphptutor']
159
+ @feedburner_atom_item.authors.should == ['Joe Hodnicki']
153
160
  end
154
161
 
155
162
  it "should have the correct contributor" do
@@ -164,6 +171,7 @@ module FeedAbstract
164
171
  @chillitem.contributor.should == ''
165
172
  @twitteritem.contributor.should == ''
166
173
  @twitteratomitem.contributor.should == ''
174
+ @feedburner_atom_item.contributor.should == ''
167
175
  end
168
176
 
169
177
  it "should have the correct contributors" do
@@ -178,6 +186,7 @@ module FeedAbstract
178
186
  @chillitem.contributors.should == []
179
187
  @twitteritem.contributors.should == []
180
188
  @twitteratomitem.contributors.should == []
189
+ @feedburner_atom_item.contributors.should == []
181
190
  end
182
191
 
183
192
  it "should have the correct category" do
@@ -192,6 +201,7 @@ module FeedAbstract
192
201
  @chillitem.category.should == ''
193
202
  @twitteritem.category.should == 'security, keylogging'
194
203
  @twitteratomitem.category.should == 'Ruby, Rails, jobs'
204
+ @feedburner_atom_item.category.should == 'Web/Tech'
195
205
  end
196
206
 
197
207
  it "should have the correct categories" do
@@ -206,6 +216,7 @@ module FeedAbstract
206
216
  @chillitem.categories.should == []
207
217
  @twitteritem.categories.should == ['security', 'keylogging']
208
218
  @twitteratomitem.categories.should == ['Ruby', 'Rails', 'jobs']
219
+ @feedburner_atom_item.categories.should == ['Web/Tech']
209
220
  end
210
221
 
211
222
  it "should have the correct rights" do
@@ -220,6 +231,7 @@ module FeedAbstract
220
231
  @chillitem.rights.should == ''
221
232
  @twitteritem.rights.should == ''
222
233
  @twitteratomitem.rights.should == ''
234
+ @feedburner_atom_item.rights.should == ''
223
235
  end
224
236
 
225
237
  it "should have been updated at the correct time" do
@@ -234,6 +246,7 @@ module FeedAbstract
234
246
  @chillitem.updated.should == ""
235
247
  @twitteritem.updated.should == Time.parse('2012-02-11 12:12:27 -0500')
236
248
  @twitteratomitem.updated.should == Time.parse('2012-03-19 21:56:03 UTC')
249
+ @feedburner_atom_item.updated.should == Time.parse('2012-04-16T16:25:05Z')
237
250
  end
238
251
 
239
252
  it "should have been published at the proper time" do
@@ -248,6 +261,7 @@ module FeedAbstract
248
261
  @chillitem.published.should == ''
249
262
  @twitteritem.published.should == Time.parse('2012-02-11 12:12:27 -0500')
250
263
  @twitteratomitem.published.should == Time.parse('2012-03-19 21:56:03 UTC')
264
+ @feedburner_atom_item.published.should == Time.parse('2012-04-16T16:25:05Z')
251
265
  end
252
266
 
253
267
  it "should have the proper guid" do
@@ -262,6 +276,7 @@ module FeedAbstract
262
276
  @chillitem.guid.should == 'https://www.chillingeffects.org/weather.cgi?WeatherID=648'
263
277
  @twitteritem.guid.should == 'http://twitter.com/djcp/statuses/168381896559046656'
264
278
  @twitteratomitem.guid.should == 'tag:search.twitter.com,2005:181861618911690752'
279
+ @feedburner_atom_item.guid.should == 'tag:typepad.com,2003:post-6a00d8341bfae553ef016304421f87970d'
265
280
  end
266
281
 
267
282
  end
@@ -18,8 +18,9 @@ def instantiate_feeds
18
18
  @chill = FeedAbstract::Feed.new(File.open('spec/test_data/chillingeffects.xml'))
19
19
  @twitter = FeedAbstract::Feed.new(File.open('spec/test_data/djcp_twitter.rss'))
20
20
  @twitter_atom = FeedAbstract::Feed.new(File.open('spec/test_data/twitter_hashtag.atom'))
21
+ @feedburner_atom = FeedAbstract::Feed.new(File.open('spec/test_data/LawLibrarianBlog.atom'))
21
22
 
22
- @all_feeds = [@docatom, @kpgatom, @djcprss2, @djcprss92, @oa, @delicious, @zotero, @feedburner, @pyblosxom, @chill, @twitter, @twitter_atom]
23
+ @all_feeds = [@docatom, @kpgatom, @djcprss2, @djcprss92, @oa, @delicious, @zotero, @feedburner, @pyblosxom, @chill, @twitter, @twitter_atom, @feedburner_atom]
23
24
  end
24
25
 
25
26
  def instantiate_example_items
@@ -34,4 +35,5 @@ def instantiate_example_items
34
35
  @chillitem = @chill.items.first
35
36
  @twitteritem = @twitter.items.first
36
37
  @twitteratomitem = @twitter_atom.items.first
38
+ @feedburner_atom_item = @feedburner_atom.items.first
37
39
  end
@@ -0,0 +1,356 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atomfull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="0.3">
3
+ <title>Law Librarian Blog</title>
4
+ <link rel="alternate" type="text/html" href="http://lawprofessors.typepad.com/law_librarian_blog/" />
5
+ <id>tag:typepad.com,2003:weblog-93063</id>
6
+ <link rel="service.post" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063" title="Law Librarian Blog" />
7
+ <modified>2012-04-16T16:25:05Z</modified>
8
+ <tagline>A Member of the Law Professor Blogs Network</tagline>
9
+
10
+ <generator url="http://www.typepad.com/" version="1.0">TypePad</generator>
11
+ <info type="application/xhtml+xml">
12
+ <div xmlns="http://www.w3.org/1999/xhtml">This is an Atom formatted XML site feed. It is intended to be viewed in a Newsreader or syndicated to another site. Please visit <a href="http://lawprofessors.typepad.com/law_librarian_blog/">Law Librarian Blog</a> for more info.</div>
13
+ </info>
14
+ <link rel="start" type="application/atom+xml" href="http://feeds.feedburner.com/LawLibrarianBlog" /><feedburner:info uri="lawlibrarianblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>LawLibrarianBlog</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><entry>
15
+ <title>Google's Latest CAPTCHA Codes Draws Criticism</title>
16
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/CgraB_He5jQ/googles-latest-captcha-codes-draws-criticism.html" />
17
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef016304421f87970d" title="Google's Latest CAPTCHA Codes Draws Criticism" />
18
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef016304421f87970d</id>
19
+ <issued>2012-04-16T12:25:05-04:00</issued>
20
+ <modified>2012-04-16T16:25:05Z</modified>
21
+ <created>2012-04-16T16:25:05Z</created>
22
+ <summary>Here’s a little bit more from the technology front. Google has been accused of another privacy violation. Any tech company that owns a user base numbering in the billions can make a move that draws criticism. Sometimes that criticism is...</summary>
23
+ <author>
24
+ <name>Joe Hodnicki</name>
25
+ </author>
26
+ <dc:subject>Web/Tech</dc:subject>
27
+
28
+
29
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/googles-latest-captcha-codes-draws-criticism.html</feedburner:origLink></entry>
30
+ <entry>
31
+ <title>Managing a Library's Electronic Collection: The Long March to an Integrated Discovery and Access Platform</title>
32
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/oKqMQQ-1E1Y/managing-a-librarys-electronic-collection-the-long-march-to-an-integrated-discovery-and-access-platf.html" />
33
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef01676527fe4b970b" title="Managing a Library's Electronic Collection: The Long March to an Integrated Discovery and Access Platform" />
34
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef01676527fe4b970b</id>
35
+ <issued>2012-04-16T03:48:00-04:00</issued>
36
+ <modified>2012-04-16T11:40:35Z</modified>
37
+ <created>2012-04-16T07:48:00Z</created>
38
+ <summary>The Douglas County (Colorado) public library system has developed a solution for discovering and lending eBooks. Monique Sendze, Associate Director of Information Technology at Douglas County Libraries, describes the project in detail in her article The E-Book Experiment, Public Libraries...</summary>
39
+ <author>
40
+ <name>Joe Hodnicki</name>
41
+ </author>
42
+ <dc:subject>Collection Development</dc:subject>
43
+ <dc:subject>Digital Collections</dc:subject>
44
+ <dc:subject>Electronic Resource</dc:subject>
45
+ <dc:subject>Tech Services</dc:subject>
46
+
47
+
48
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/managing-a-librarys-electronic-collection-the-long-march-to-an-integrated-discovery-and-access-platf.html</feedburner:origLink></entry>
49
+ <entry>
50
+ <title>Some Thoughts on the DOJ Lawsuit Against Apple and the Publishers</title>
51
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/4tzLc1JlPJI/some-thoughts-on-the-doj-lawsuit-against-apple-and-the-publishers.html" />
52
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef0168ea2e2d09970c" title="Some Thoughts on the DOJ Lawsuit Against Apple and the Publishers" />
53
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef0168ea2e2d09970c</id>
54
+ <issued>2012-04-15T20:01:22-04:00</issued>
55
+ <modified>2012-04-16T00:01:22Z</modified>
56
+ <created>2012-04-16T00:01:22Z</created>
57
+ <summary>Now that the dust has settled on the lawsuit filed against Apple and five of the major publishers, the commentators have come out in force. The line-up of opinions seem to be, on one side, that the suit is ill-advised...</summary>
58
+ <author>
59
+ <name>Joe Hodnicki</name>
60
+ </author>
61
+ <dc:subject>Books</dc:subject>
62
+ <dc:subject>Litigation in the News</dc:subject>
63
+
64
+
65
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/some-thoughts-on-the-doj-lawsuit-against-apple-and-the-publishers.html</feedburner:origLink></entry>
66
+ <entry>
67
+ <title>Round-Up of Law Practitioner Blogs</title>
68
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/JQsaq_b2vDQ/round-up-of-law-practitioner-blogs-2.html" />
69
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef0168e8a1de5b970c" title="Round-Up of Law Practitioner Blogs" />
70
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef0168e8a1de5b970c</id>
71
+ <issued>2012-04-15T03:35:00-04:00</issued>
72
+ <modified>2012-04-15T07:35:00Z</modified>
73
+ <created>2012-04-15T07:35:00Z</created>
74
+ <summary>California Police Brutality Lawyer Blog http://www.californiapolicebrutalitylawyerblog.com/ http://www.californiapolicebrutalitylawyerblog.com/index.xml Examines police brutality cases, news, and related topics in California. Published by Okorie Okorocha Immigration Las Vegas Blog http://www.immigrationlasvegas.com/ http://www.immigrationlasvegas.com/index.xml Discusses immigration cases, news, and related topics in Nevada. Published by Goodin Law...</summary>
75
+ <author>
76
+ <name>Joe Hodnicki</name>
77
+ </author>
78
+ <dc:subject>Web Communications</dc:subject>
79
+
80
+
81
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/round-up-of-law-practitioner-blogs-2.html</feedburner:origLink></entry>
82
+ <entry>
83
+ <title>Hein Adds Congressional Hearings Back to 1927 To HeinOnline</title>
84
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/SY2KLsV_VZw/hein-adds-congressional-hearings-back-to-1927-to-hein-online.html" />
85
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef0167651f3430970b" title="Hein Adds Congressional Hearings Back to 1927 To HeinOnline" />
86
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef0167651f3430970b</id>
87
+ <issued>2012-04-14T17:20:46-04:00</issued>
88
+ <modified>2012-04-14T21:23:33Z</modified>
89
+ <created>2012-04-14T21:20:46Z</created>
90
+ <summary>As everyone knows, it's hard to keep track these days of the comings and goings of information on databases. In case anyone missed it, Hein is adding congressional hearings to its database. Here's the announcement: Access more than 3,000 of...</summary>
91
+ <author>
92
+ <name>Joe Hodnicki</name>
93
+ </author>
94
+ <dc:subject>Congress</dc:subject>
95
+ <dc:subject>Digital Collections</dc:subject>
96
+
97
+
98
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/hein-adds-congressional-hearings-back-to-1927-to-hein-online.html</feedburner:origLink></entry>
99
+ <entry>
100
+ <title>Best and Worst Jobs of 2012</title>
101
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/T2lmJAX77Rc/best-and-worst-jobs-of-2012.html" />
102
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef016304157f93970d" title="Best and Worst Jobs of 2012" />
103
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef016304157f93970d</id>
104
+ <issued>2012-04-14T07:13:00-04:00</issued>
105
+ <modified>2012-04-14T11:13:00Z</modified>
106
+ <created>2012-04-14T11:13:00Z</created>
107
+ <summary>CareerCast.com ranked 200 jobs from best to worst based on five criteria: physical demands, work environment, income, stress and hiring outlook. Ranked in first place is Software Enginer and last place is Lumberjack. Librarian is ranked 61st, just ahead of...</summary>
108
+ <author>
109
+ <name>Joe Hodnicki</name>
110
+ </author>
111
+ <dc:subject>Info - Antics or Metrics?</dc:subject>
112
+
113
+
114
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/best-and-worst-jobs-of-2012.html</feedburner:origLink></entry>
115
+ <entry>
116
+ <title>What Can You Find By Rummaging in the Federal Government's Attic?</title>
117
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/QL4nAMs6t6c/what-can-you-find-by-rummaging-in-the-federal-governments-attic.html" />
118
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef016303e67468970d" title="What Can You Find By Rummaging in the Federal Government's Attic?" />
119
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef016303e67468970d</id>
120
+ <issued>2012-04-13T03:55:00-04:00</issued>
121
+ <modified>2012-04-13T07:55:00Z</modified>
122
+ <created>2012-04-13T07:55:00Z</created>
123
+ <summary>Certainly, some interesting electronic copies of federal documents provided by Governmentattic.org via FOIA requests. For example, Collection of US Supreme Court Legal Maxims, Compiled by the Department of Justice (DOJ) Civil Division Appellate Staff, [1993 through 1998 Terms] is a...</summary>
124
+ <author>
125
+ <name>Joe Hodnicki</name>
126
+ </author>
127
+ <dc:subject>Gov Docs</dc:subject>
128
+ <dc:subject>Legal Research Instruction</dc:subject>
129
+ <dc:subject>Web Communications</dc:subject>
130
+
131
+
132
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/what-can-you-find-by-rummaging-in-the-federal-governments-attic.html</feedburner:origLink></entry>
133
+ <entry>
134
+ <title>Friday Fun: All I do is skim</title>
135
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/DgQHXsdTPoU/friday-fun-all-i-do-is-skim.html" />
136
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef016303d71f1c970d" title="Friday Fun: All I do is skim" />
137
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef016303d71f1c970d</id>
138
+ <issued>2012-04-13T03:50:00-04:00</issued>
139
+ <modified>2012-04-13T07:50:00Z</modified>
140
+ <created>2012-04-13T07:50:00Z</created>
141
+ <summary />
142
+ <author>
143
+ <name>Joe Hodnicki</name>
144
+ </author>
145
+ <dc:subject>Friday Fun</dc:subject>
146
+
147
+
148
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/friday-fun-all-i-do-is-skim.html</feedburner:origLink></entry>
149
+ <entry>
150
+ <title>Federal District Court Says OK To Library Blocking Internet Content To Adults</title>
151
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/sDuyEvWWveM/federal-district-court-says-ok-to-library-blocking-internet-content-to-adults.html" />
152
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef0168ea042e0c970c" title="Federal District Court Says OK To Library Blocking Internet Content To Adults" />
153
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef0168ea042e0c970c</id>
154
+ <issued>2012-04-12T21:06:16-04:00</issued>
155
+ <modified>2012-04-14T19:39:29Z</modified>
156
+ <created>2012-04-13T01:06:16Z</created>
157
+ <summary>Judge Edward Shea of the Eastern District of Washington issued an opinion on Tuesday in the long simmering case of Bradburn v. North Central Library Regional Library District (NCLR) (NO. CV-06-0327-EFS, via a link to PACER). The case involves the...</summary>
158
+ <author>
159
+ <name>Joe Hodnicki</name>
160
+ </author>
161
+ <dc:subject>Collection Development</dc:subject>
162
+ <dc:subject>Court Opinions</dc:subject>
163
+ <dc:subject>Web Communications</dc:subject>
164
+
165
+
166
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/federal-district-court-says-ok-to-library-blocking-internet-content-to-adults.html</feedburner:origLink></entry>
167
+ <entry>
168
+ <title>Compete to Win the First Dewey B Strategic Legal Research Genius Award</title>
169
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/ZNc8wA6thz8/compete-to-win-the-first-dewey-b-strategic-legal-research-genius-award.html" />
170
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef016304057786970d" title="Compete to Win the First Dewey B Strategic Legal Research Genius Award" />
171
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef016304057786970d</id>
172
+ <issued>2012-04-12T09:23:00-04:00</issued>
173
+ <modified>2012-04-12T13:23:00Z</modified>
174
+ <created>2012-04-12T13:23:00Z</created>
175
+ <summary>By entering the Dewey B Strategic research crossword challenge! [JH]</summary>
176
+ <author>
177
+ <name>Joe Hodnicki</name>
178
+ </author>
179
+ <dc:subject>Legal Research</dc:subject>
180
+
181
+
182
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/compete-to-win-the-first-dewey-b-strategic-legal-research-genius-award.html</feedburner:origLink></entry>
183
+ <entry>
184
+ <title>ALA's 2012 State of America's Libraries Report</title>
185
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/zxdlejtqlrY/alas-2012-state-of-americas-libraries-report.html" />
186
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef0168e9f048ba970c" title="ALA's 2012 State of America's Libraries Report" />
187
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef0168e9f048ba970c</id>
188
+ <issued>2012-04-12T03:40:00-04:00</issued>
189
+ <modified>2012-04-12T12:42:43Z</modified>
190
+ <created>2012-04-12T07:40:00Z</created>
191
+ <summary>The State of America's Libraries Report (view online or download PDF) documents trends in library usage and details the impact of library budget cuts, technology use, and the various other challenges facing U.S. libraries. The "New focus of ebooks" section...</summary>
192
+ <author>
193
+ <name>Joe Hodnicki</name>
194
+ </author>
195
+ <dc:subject>Library Associations</dc:subject>
196
+ <dc:subject>New Publications</dc:subject>
197
+
198
+
199
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/alas-2012-state-of-americas-libraries-report.html</feedburner:origLink></entry>
200
+ <entry>
201
+ <title>Some Publishers Settle With The DOJ, Apple and Others To Litigate</title>
202
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/T-u6d5K37Js/some-publishers-settle-with-the-doj-apple-and-others-to-litigate.html" />
203
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef0168e9f2be30970c" title="Some Publishers Settle With The DOJ, Apple and Others To Litigate" />
204
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef0168e9f2be30970c</id>
205
+ <issued>2012-04-11T13:35:59-04:00</issued>
206
+ <modified>2012-04-11T17:35:59Z</modified>
207
+ <created>2012-04-11T17:35:59Z</created>
208
+ <summary>From Eric Holder's prepared remarks: As part of this commitment, the Department has reached a settlement with three of the nation’s largest book publishers – and will continue to litigate against Apple, and two additional leading publishers – for conspiring...</summary>
209
+ <author>
210
+ <name>Joe Hodnicki</name>
211
+ </author>
212
+ <dc:subject>Books</dc:subject>
213
+ <dc:subject>Litigation in the News</dc:subject>
214
+
215
+
216
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/some-publishers-settle-with-the-doj-apple-and-others-to-litigate.html</feedburner:origLink></entry>
217
+ <entry>
218
+ <title>Justice Department Sues Apple, Publishers on e-Book Pricing</title>
219
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/5GfgWIhJXjs/justice-department-sues-apple-publishers-on-e-book-pricing.html" />
220
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef016303fbc90d970d" title="Justice Department Sues Apple, Publishers on e-Book Pricing" />
221
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef016303fbc90d970d</id>
222
+ <issued>2012-04-11T11:03:09-04:00</issued>
223
+ <modified>2012-04-11T17:00:30Z</modified>
224
+ <created>2012-04-11T15:03:09Z</created>
225
+ <summary>The breaking news is that the United States Justice Department is suing Apple and several publishers in a New York federal court today. There are also reports that Attorney General Eric Holder will speak later on today on an “unspecified...</summary>
226
+ <author>
227
+ <name>Joe Hodnicki</name>
228
+ </author>
229
+ <dc:subject>Books</dc:subject>
230
+ <dc:subject>Litigation in the News</dc:subject>
231
+
232
+
233
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/justice-department-sues-apple-publishers-on-e-book-pricing.html</feedburner:origLink></entry>
234
+ <entry>
235
+ <title>Lately We've Seen Some Criticism of Bloomberg Law by an Anonymous Author over at 3 Greeks. Any Response to that?</title>
236
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/QNmkVr6YCf4/lately-weve-seen-some-criticism-of-bloomberg-law-by-an-anonymous-author-over-at-3-greeks-any-respons.html" />
237
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef0168e9e3bf95970c" title="Lately We've Seen Some Criticism of Bloomberg Law by an Anonymous Author over at 3 Greeks. Any Response to that?" />
238
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef0168e9e3bf95970c</id>
239
+ <issued>2012-04-11T03:54:00-04:00</issued>
240
+ <modified>2012-04-11T07:54:00Z</modified>
241
+ <created>2012-04-11T07:54:00Z</created>
242
+ <summary>The title of this post is a take-off from an interview question to TR Legal's Mike Dahn in the context of a two-part LLB anonymous post published on LLB titled The WestSearch Straitjacket For Legal Research - Thinking Beyond The...</summary>
243
+ <author>
244
+ <name>Joe Hodnicki</name>
245
+ </author>
246
+ <dc:subject>Legal Research</dc:subject>
247
+ <dc:subject>Products &amp; Services</dc:subject>
248
+ <dc:subject>Publishing Industry</dc:subject>
249
+
250
+
251
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/lately-weve-seen-some-criticism-of-bloomberg-law-by-an-anonymous-author-over-at-3-greeks-any-respons.html</feedburner:origLink></entry>
252
+ <entry>
253
+ <title>Today is National Library Workers Day</title>
254
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/0-cCw8e98RI/today-is-national-library-workers-day.html" />
255
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef016303eda425970d" title="Today is National Library Workers Day" />
256
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef016303eda425970d</id>
257
+ <issued>2012-04-10T10:44:00-04:00</issued>
258
+ <modified>2012-04-10T14:44:00Z</modified>
259
+ <created>2012-04-10T14:44:00Z</created>
260
+ <summary>It is one the events celebrating National Library Week. [JH]</summary>
261
+ <author>
262
+ <name>Joe Hodnicki</name>
263
+ </author>
264
+ <dc:subject>Library Associations</dc:subject>
265
+
266
+
267
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/today-is-national-library-workers-day.html</feedburner:origLink></entry>
268
+ <entry>
269
+ <title>Pew Interent to Research the Changing Landscape of Library Services in First Comprehensive Examination of Reading Habits Since the Rise of eBooks</title>
270
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/-LVN5qzvZmA/pew-interent-to-research-the-changing-landscape-of-library-services-in-first-comprehensive-examinati.html" />
271
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef016303d81c1c970d" title="Pew Interent to Research the Changing Landscape of Library Services in First Comprehensive Examination of Reading Habits Since the Rise of eBooks" />
272
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef016303d81c1c970d</id>
273
+ <issued>2012-04-10T03:50:00-04:00</issued>
274
+ <modified>2012-04-10T07:50:00Z</modified>
275
+ <created>2012-04-10T07:50:00Z</created>
276
+ <summary>Pew Research Center’s Internet &amp; American Life Project is conducting the frist comprehensive examination of the reading habits of the general population in the digital era since eBooks came into prominence. The first installment in this Gates Foundation-funded research was...</summary>
277
+ <author>
278
+ <name>Joe Hodnicki</name>
279
+ </author>
280
+ <dc:subject>Administration</dc:subject>
281
+ <dc:subject>Collection Development</dc:subject>
282
+ <dc:subject>Electronic Resource</dc:subject>
283
+ <dc:subject>Library Associations</dc:subject>
284
+ <dc:subject>Meetings</dc:subject>
285
+ <dc:subject>Publishing Industry</dc:subject>
286
+ <dc:subject>Think Tank Reports</dc:subject>
287
+
288
+
289
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/pew-interent-to-research-the-changing-landscape-of-library-services-in-first-comprehensive-examinati.html</feedburner:origLink></entry>
290
+ <entry>
291
+ <title>It's National Library Week, Time To Ban the Books</title>
292
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/qUT_LscTIaQ/its-national-library-week-time-to-ban-the-books.html" />
293
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef0168e9dcb591970c" title="It's National Library Week, Time To Ban the Books" />
294
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef0168e9dcb591970c</id>
295
+ <issued>2012-04-09T16:41:17-04:00</issued>
296
+ <modified>2012-04-09T20:41:17Z</modified>
297
+ <created>2012-04-09T20:41:17Z</created>
298
+ <summary>The American Library Association publishes its list of most challenged books in 2011 coinciding with National Library Week: ttyl; ttfn; l8r, g8r (series), by Lauren Myracle The Color of Earth (series), by Kim Dong Hwa The Hunger Games trilogy, by...</summary>
299
+ <author>
300
+ <name>Joe Hodnicki</name>
301
+ </author>
302
+ <dc:subject>Books</dc:subject>
303
+
304
+
305
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/its-national-library-week-time-to-ban-the-books.html</feedburner:origLink></entry>
306
+ <entry>
307
+ <title>Another Glimpse Into How We Are Tracked Online</title>
308
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/lYafWQ8OaAE/another-glimpse-into-how-we-are-tracked-online.html" />
309
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef016764db4eee970b" title="Another Glimpse Into How We Are Tracked Online" />
310
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef016764db4eee970b</id>
311
+ <issued>2012-04-09T16:29:28-04:00</issued>
312
+ <modified>2012-04-09T20:29:28Z</modified>
313
+ <created>2012-04-09T20:29:28Z</created>
314
+ <summary>It’s no secret that living online brings a level of scrutiny by a host of companies and web sites. They either want to sell something to the consumer, or just as likely sell the consumer information to someone who wants...</summary>
315
+ <author>
316
+ <name>Joe Hodnicki</name>
317
+ </author>
318
+ <dc:subject>Web/Tech</dc:subject>
319
+
320
+
321
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/another-glimpse-into-how-we-are-tracked-online.html</feedburner:origLink></entry>
322
+ <entry>
323
+ <title>New Editions of the Statistical Abstract To Be Published Commercially</title>
324
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/v48vKgXNCBA/new-editions-of-the-statistical-abstract-to-be-published-commercially.html" />
325
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef016764da08e6970b" title="New Editions of the Statistical Abstract To Be Published Commercially" />
326
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef016764da08e6970b</id>
327
+ <issued>2012-04-09T13:52:37-04:00</issued>
328
+ <modified>2012-04-09T17:52:37Z</modified>
329
+ <created>2012-04-09T17:52:37Z</created>
330
+ <summary>If anyone has visited the page for the Statistical Abstract of the United States, that person would see this message: The U.S. Census Bureau is terminating the collection of data for the Statistical Compendia program effective October 1, 2011. The...</summary>
331
+ <author>
332
+ <name>Joe Hodnicki</name>
333
+ </author>
334
+ <dc:subject>Books</dc:subject>
335
+
336
+
337
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/new-editions-of-the-statistical-abstract-to-be-published-commercially.html</feedburner:origLink></entry>
338
+ <entry>
339
+ <title>The New Poster Boy of AALL!</title>
340
+ <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LawLibrarianBlog/~3/7tedaJWrFVE/the-new-poster-boy-of-aall.html" />
341
+ <link rel="service.edit" type="application/x.atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=93063/entry_id=6a00d8341bfae553ef016303bd5475970d" title="The New Poster Boy of AALL!" />
342
+ <id>tag:typepad.com,2003:post-6a00d8341bfae553ef016303bd5475970d</id>
343
+ <issued>2012-04-09T07:40:00-04:00</issued>
344
+ <modified>2012-04-09T12:30:53Z</modified>
345
+ <created>2012-04-09T11:40:00Z</created>
346
+ <summary>I recently saw AALL's new poster boy in the latest issue of Spectrum. It's found in an ad for Boston 2012 (foreground image below, click to enlarge if you have the stomach for that). OMG, I'm thinking for AALL ad...</summary>
347
+ <author>
348
+ <name>Joe Hodnicki</name>
349
+ </author>
350
+ <dc:subject>Library Associations</dc:subject>
351
+ <dc:subject>Meetings</dc:subject>
352
+
353
+
354
+ <feedburner:origLink>http://lawprofessors.typepad.com/law_librarian_blog/2012/04/the-new-poster-boy-of-aall.html</feedburner:origLink></entry>
355
+
356
+ </feed><!-- ph=1 -->
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: feed-abstract
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.11
4
+ version: 0.0.12
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-03-20 00:00:00.000000000 Z
12
+ date: 2012-04-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
16
- requirement: &18101880 !ruby/object:Gem::Requirement
16
+ requirement: &16962420 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *18101880
24
+ version_requirements: *16962420
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: rdoc
27
- requirement: &18967240 !ruby/object:Gem::Requirement
27
+ requirement: &16959840 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: '0'
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *18967240
35
+ version_requirements: *16959840
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: bundler
38
- requirement: &18965100 !ruby/object:Gem::Requirement
38
+ requirement: &16174820 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: '0'
44
44
  type: :development
45
45
  prerelease: false
46
- version_requirements: *18965100
46
+ version_requirements: *16174820
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: jeweler
49
- requirement: &18962900 !ruby/object:Gem::Requirement
49
+ requirement: &16172960 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ! '>='
@@ -54,10 +54,10 @@ dependencies:
54
54
  version: '0'
55
55
  type: :development
56
56
  prerelease: false
57
- version_requirements: *18962900
57
+ version_requirements: *16172960
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: simplecov
60
- requirement: &18960860 !ruby/object:Gem::Requirement
60
+ requirement: &16170480 !ruby/object:Gem::Requirement
61
61
  none: false
62
62
  requirements:
63
63
  - - ! '>='
@@ -65,7 +65,7 @@ dependencies:
65
65
  version: '0'
66
66
  type: :development
67
67
  prerelease: false
68
- version_requirements: *18960860
68
+ version_requirements: *16170480
69
69
  description: ! 'This library creates a common object graph for the RSS/Atom/RDF parsing
70
70
  classes in the ruby standard library. This allows you parse different feed formats
71
71
  and get back the same (or at least a very similar) set of results - item authors
@@ -98,10 +98,12 @@ files:
98
98
  - lib/feed-abstract/items/rss.rb
99
99
  - lib/feed-abstract/mixins.rb
100
100
  - lib/feed-abstract/version.rb
101
+ - lib/rss_atom_monkeypatches.rb
101
102
  - spec/feed_abstract_channel_spec.rb
102
103
  - spec/feed_abstract_item_spec.rb
103
104
  - spec/feed_abstract_spec.rb
104
105
  - spec/spec_helper.rb
106
+ - spec/test_data/LawLibrarianBlog.atom
105
107
  - spec/test_data/chillingeffects.xml
106
108
  - spec/test_data/djcp.rss
107
109
  - spec/test_data/djcp.rss92