diff --git a/src/feed.go b/src/feed.go index 2011d8a..4196621 100644 --- a/src/feed.go +++ b/src/feed.go @@ -78,6 +78,10 @@ func New(cachetimeout int, enforcecachelimit bool, ch ChannelHandler, ih ItemHan return v } +// This returns a timestamp of the last time the feed was updated. +// The value is in seconds. +func (this *Feed) LastUpdate() int64 { return this.lastupdate } + func (this *Feed) Fetch(uri string) (err os.Error) { if !this.CanUpdate() { return diff --git a/src/feed_test.go b/src/feed_test.go index ae96c09..cf060ca 100644 --- a/src/feed_test.go +++ b/src/feed_test.go @@ -21,18 +21,18 @@ func TestFeed(t *testing.T) { t.Errorf("%s >>> %s", uri, err) } } - - /* -Output of handlers: -6 new item(s) in WriteTheWeb of http://cyber.law.harvard.edu/rss/examples/sampleRss091.xml -1 new channel(s) in http://cyber.law.harvard.edu/rss/examples/sampleRss091.xml -21 new item(s) in Dave Winer: Grateful Dead of http://cyber.law.harvard.edu/rss/examples/sampleRss092.xml -1 new channel(s) in http://cyber.law.harvard.edu/rss/examples/sampleRss092.xml -4 new item(s) in Liftoff News of http://cyber.law.harvard.edu/rss/examples/rss2sample.xml -1 new channel(s) in http://cyber.law.harvard.edu/rss/examples/rss2sample.xml -15 new item(s) in Blog@Case of http://blog.case.edu/news/feed.atom -1 new channel(s) in http://blog.case.edu/news/feed.atom + /* + Output of handlers: + + 6 new item(s) in WriteTheWeb of http://cyber.law.harvard.edu/rss/examples/sampleRss091.xml + 1 new channel(s) in http://cyber.law.harvard.edu/rss/examples/sampleRss091.xml + 21 new item(s) in Dave Winer: Grateful Dead of http://cyber.law.harvard.edu/rss/examples/sampleRss092.xml + 1 new channel(s) in http://cyber.law.harvard.edu/rss/examples/sampleRss092.xml + 4 new item(s) in Liftoff News of http://cyber.law.harvard.edu/rss/examples/rss2sample.xml + 1 new channel(s) in http://cyber.law.harvard.edu/rss/examples/rss2sample.xml + 15 new item(s) in Blog@Case of http://blog.case.edu/news/feed.atom + 1 new channel(s) in http://blog.case.edu/news/feed.atom */ }