annotate doc/Makefile @ 825:0779ea9f1f18

More indexer work: - all String properties may now be indexed too. Currently there's a bit of "issue" specific code in the actual searching which needs to be addressed. In a nutshell: + pass 'indexme="yes"' as a String() property initialisation arg, eg: file = FileClass(db, "file", name=String(), type=String(), comment=String(indexme="yes")) + the comment will then be indexed and be searchable, with the results related back to the issue that the file is linked to - as a result of this work, the FileClass has a default MIME type that may be overridden in a subclass, or by the use of a "type" property as is done in the default templates. - the regeneration of the indexes (if necessary) is done once the schema is set up in the dbinit.
author Richard Jones <richard@users.sourceforge.net>
date Tue, 09 Jul 2002 03:02:53 +0000
parents faf164ab8ed9
children b0d3d3535998
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
798
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
1 PYTHON = /usr/bin/python2
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
2 STXTOHTML = -c "from docutils.core import publish;publish(writer_name='html')"
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
3
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
4 SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
5 getting_started.txt glossary.txt implementation.txt index.txt \
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
6 installation.txt security.txt upgrading.txt user_guide.txt
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
7
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
8 COMPILED := $(SOURCE:.txt=.html)
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
9
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
10 all: ${COMPILED}
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
11
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
12 %.html: %.txt
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
13 ${PYTHON} ${STXTOHTML} -d -v $< $@
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
14

Roundup Issue Tracker: http://roundup-tracker.org/