1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
Developing irclog2html
======================
To play with the scripts without installing, use::
make
bin/irclog2html --help
bin/logs2html --help
To run the test suite, use::
make test
or (even better) ::
detox
The testcases directory contains some sample logs, so you can try ::
bin/logs2html testcases
and look at testcases/index.html afterwards.
To play with the CGI script, try ::
IRCLOG_LOCATION=testcases bin/irclogsearch q=query
But I don't have make!
======================
Don't worry, feel free to use buildout directly::
virtualenv python
python/bin/python bootstrap.py
bin/buildout
bin/test
bin/irclog2html --help
bin/logs2html --help
|