-
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
3 changed files
with
3 additions
and
9 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,10 +1,7 @@ | ||
feed-reader-lib | ||
=============== | ||
|
||
Fast, thread-safe, extensible & platform independent feed reader library in C++, supports RSS, ATOM, RDF | ||
|
||
=============== | ||
FeedReader is a C++ library designed to retrieve and parse web feeds such as RSS, ATOM and RDF. | ||
Features: | ||
|
||
FeedReader was designed to scale: it is fast, thread-safe, extensible and platform-independent. | ||
|
@@ -26,14 +23,15 @@ Dependencies: | |
|
||
The FeedReader library is dependent on, and was tested with the following libraries/versions: | ||
|
||
* Boost 1.36 (was also tested with 1.33_1) | ||
* 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 | ||
|
@@ -42,6 +40,6 @@ 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: | ||
authors.txt file: | ||
(no author) = no_author <no_author@no_author> | ||
yoav.aviram = Yoav Aviram <[email protected]> |
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,7 +1,5 @@ | ||
#!/usr/bin/python | ||
|
||
"[email protected]" | ||
|
||
import urllib, os, shutil, tarfile, multiprocessing, subprocess, sys | ||
|
||
class Utils: | ||
|
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,7 +1,5 @@ | ||
#!/usr/bin/python | ||
|
||
# by [email protected] | ||
|
||
import subprocess, sys, os, argparse | ||
from scripts.utils import Utils | ||
from collections import namedtuple | ||
|