Mercurial > p > roundup > code
view doc/Makefile @ 818:254b8d112eec
cleaned up the indexer code:
- it splits more words out (much simpler, faster splitter)
- removed code we'll never use (roundup.roundup_indexer has the full
implementation, and replaces roundup.indexer)
- only index text/plain and rfc822/message (ideas for other text formats to
index are welcome)
- added simple unit test for indexer. Needs more tests for regression.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 08 Jul 2002 06:58:15 +0000 |
| parents | faf164ab8ed9 |
| children | b0d3d3535998 |
line wrap: on
line source
PYTHON = /usr/bin/python2 STXTOHTML = -c "from docutils.core import publish;publish(writer_name='html')" SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \ getting_started.txt glossary.txt implementation.txt index.txt \ installation.txt security.txt upgrading.txt user_guide.txt COMPILED := $(SOURCE:.txt=.html) all: ${COMPILED} %.html: %.txt ${PYTHON} ${STXTOHTML} -d -v $< $@
