-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
feed-reader-lib | ||
=============== | ||
# feed-reader-lib | ||
Fast, thread-safe, extensible & platform independent feed reader library in C++, supports RSS, ATOM, RDF | ||
|
||
=============== | ||
Features: | ||
## Features | ||
|
||
In FeedReader, all feeds are transformed via XSL to a uniform schema before being parsed. | ||
This means that in order to extend FeedReader to support a new feed format, all that is needed is a new XSL file. | ||
|
@@ -18,28 +16,27 @@ The library comes with XSL files supporting for the following feed formats: | |
An iterator interface is provided to the feed elements parsed. | ||
|
||
Using the library is simple and sample client code is located in the examples directory. | ||
Dependencies: | ||
|
||
## Dependencies | ||
|
||
The FeedReader library is dependent on, and was tested with the following libraries/versions: | ||
|
||
* GCC >= 4.7 (tested with 4.8 on Ubuntu 12.04) | ||
* Boost >=1.55 (can be built using setup.py; tested on Ubuntu 12.04) | ||
* libcurl 7.18.1 | ||
* Xerces 2.8.0 | ||
* Xalan 1.10.1 | ||
* Zlib 1.23 (required by CURL) | ||
|
||
=============== | ||
FeedReader was created by Yoav Aviram (yoav.aviram AT gmail DOT com) | ||
|
||
FeedReader was migrated to GitHub by Michael Purcaro (purcaro AT gmail DOT com) | ||
|
||
=============== | ||
converted from https://code.google.com/p/feed-reader-lib/ by | ||
* git svn clone --stdlayout --no-metadata -A authors http://feed-reader-lib.googlecode.com/svn/ | ||
* git remote add origin [email protected]:purcaro/feed-reader-lib.git | ||
* git config branch.master.remote origin | ||
* git config branch.master.merge refs/heads/master | ||
|
||
authors.txt file: | ||
* (no author) = no_author <no_author@no_author> | ||
* yoav.aviram = Yoav Aviram <[email protected]> | ||
* libcurl > 7.18.1 | ||
* Xerces > 2.8.0 | ||
* Xalan > 1.10.1 | ||
* Zlib > 1.23 (required by CURL) | ||
|
||
## History | ||
* FeedReader was created by Yoav Aviram (yoav.aviram AT gmail DOT com) | ||
* FeedReader was migrated to GitHub by Michael Purcaro (purcaro AT gmail DOT com) | ||
|
||
converted from https://code.google.com/p/feed-reader-lib/ by | ||
* git svn clone --stdlayout --no-metadata -A authors http://feed-reader-lib.googlecode.com/svn/ | ||
* git remote add origin [email protected]:purcaro/feed-reader-lib.git | ||
* git config branch.master.remote origin | ||
* git config branch.master.merge refs/heads/master | ||
authors.txt file: | ||
* (no author) = no_author <no_author@no_author> | ||
* yoav.aviram = Yoav Aviram <[email protected]> |