]> gitweb.factorcode.org Git - factor.git/blob - extra/syndication/readme.txt
2e64b0d52ad1dda08d7e0ac5c63ee37fba57604d
[factor.git] / extra / syndication / readme.txt
1 This library is a simple RSS2 parser and RSS reader web
2 application. To run the web application you'll need to make sure you
3 have the sqlite library working. This can be tested with
4
5   "contrib/sqlite" require
6   "contrib/sqlite" test-module
7
8 Remember that to use "sqlite" you need to have done the following
9 somewhere:
10
11   USE: alien
12   "sqlite" "/usr/lib/libsqlite3.so" "cdecl" add-library
13
14 Replacing "libsqlite3.so" with the path to the sqlite shared library
15 or DLL. I put this in my ~/.factor-rc.
16
17 The RSS reader web application creates a database file called
18 'rss-reader.db' in the same directory as the Factor executable when
19 first started. This database contains all the feed information.
20
21 To load the web application use:
22
23   "contrib/rss" require
24
25 Fire up the web server and navigate to the URL:
26
27   http://localhost:8888/responder/maintain-feeds
28
29 Add any RSS2 compatible feed. Use 'Update Feeds' to retrieve them and
30 update the sqlite database with the feed contains. Use 'Database' to
31 view the entries from the database for that feed.
32