commit
6a889e3276
|
@ -25,7 +25,7 @@ The Feed object supports notifications of new channels and items.
|
||||||
This is achieved by passing 2 function handlers to the feeder.New() function.
|
This is achieved by passing 2 function handlers to the feeder.New() function.
|
||||||
They will be called whenever a feed is updated from the remote source and
|
They will be called whenever a feed is updated from the remote source and
|
||||||
either a new channel or a new item is found that previously did not exist.
|
either a new channel or a new item is found that previously did not exist.
|
||||||
This allows you to easily monitor a feed for changes. See src/feed_test.go for
|
This allows you to easily monitor a feed for changes. See feed_test.go for
|
||||||
an example of how this works.
|
an example of how this works.
|
||||||
|
|
||||||
## DEPENDENCIES
|
## DEPENDENCIES
|
||||||
|
|
2
feed.go
2
feed.go
|
@ -3,7 +3,7 @@
|
||||||
Dependencies: go-pkg-xmlx (http://github.com/jteeuwen/go-pkg-xmlx)
|
Dependencies: go-pkg-xmlx (http://github.com/jteeuwen/go-pkg-xmlx)
|
||||||
|
|
||||||
This package allows us to fetch Rss and Atom feeds from the internet.
|
This package allows us to fetch Rss and Atom feeds from the internet.
|
||||||
They are parsed into an object tree which is a hyvrid of both the RSS and Atom
|
They are parsed into an object tree which is a hybrid of both the RSS and Atom
|
||||||
standards.
|
standards.
|
||||||
|
|
||||||
Supported feeds are:
|
Supported feeds are:
|
||||||
|
|
Loading…
Reference in New Issue