Code

More indexer work:
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 9 Jul 2002 03:02:53 +0000 (03:02 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 9 Jul 2002 03:02:53 +0000 (03:02 +0000)
commit657d984178aa961818013d2ac0ab89dc81778a37
treea916c68fe0d531f9f0512fa7e75e30ba9f5b06e2
parent03ce43ae10ded08c841bf9e85500de0a277fd7ed
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.

git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@839 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt
doc/upgrading.txt
roundup/backends/back_anydbm.py
roundup/backends/blobfiles.py
roundup/hyperdb.py
roundup/indexer.py
roundup/roundupdb.py
roundup/templates/classic/dbinit.py
roundup/templates/extended/dbinit.py
test/test_db.py