RSS Personal Reader as the name suggests is an RSS aggreagtor, that is it fetches headlines from RSS files of web sites and presents them as one, comfortable to read page.
The project is currently in alpha state. It meens that, the basic functionality is working, but there are many not finished parts.
RPR is writen mainly in PHP (4.x) and uses PostgreSQL database (with stored procedures in PL/PgSQL). Updates are done by a small Perl script that uses DBI to comminicat with the database, XML::RSS module to parse RSS files, and LWP module for download.
You can download the alpha release here, and use it under the terms of GPL.
There is no installation or usage manual for now! In short: just copy thr rpr directory somewhere in web visible directory, create postgres tables and functions using files db.sql and func.sql, configure database acces in file includes/db.sql.
After that, point your browser to the index.php file and create an
account. For accounts that you want to have administrator rights
(adding RSS), do an SQL query:
UPDATE accounts SET admin = TRUE WHERE login = 'YOUR_LOGIN'
Run the rssupdate.pl script (prefered with the screen utility), it will update headlines from time to time.
Damian Pietras (daper (at) daper (dot) net)