Mercurial > p > roundup > code
diff roundup/backends/back_anydbm.py @ 3544:5cd1c83dea50
Features and fixes.
Feature:
- trackers may configure custom stop-words for the full-text indexer
Fixed:
- fixes in scripts/import_sf.py
- fix some unicode bugs in roundup-admin import
- Xapian indexer wasn't actually being used
- fix indexing of message content on roundup-admin import
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 06 Feb 2006 21:00:47 +0000 |
| parents | 87e512f87bae |
| children | f47bddab5a49 |
line wrap: on
line diff
--- a/roundup/backends/back_anydbm.py Mon Feb 06 02:35:47 2006 +0000 +++ b/roundup/backends/back_anydbm.py Mon Feb 06 21:00:47 2006 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -#$Id: back_anydbm.py,v 1.194 2006-01-24 08:26:09 a1s Exp $ +#$Id: back_anydbm.py,v 1.195 2006-02-06 21:00:46 richard Exp $ '''This module defines a backend that saves the hyperdatabase in a database chosen by anydbm. It is guaranteed to always be available in python versions >2.1.1 (the dumbdbm fallback in 2.1.1 and earlier has several @@ -43,8 +43,7 @@ from sessions_dbm import Sessions, OneTimeKeys try: - # re-enable once Xapian is fixed - from indexer_xapian import Indexer_disabled + from indexer_xapian import Indexer except ImportError: from indexer_dbm import Indexer
