Changeset 66
- Timestamp:
- 05/17/07 01:55:31
- Files:
-
- turbolucene/branches/0.2.2-dev/CHANGELOG (modified) (1 diff)
- turbolucene/branches/0.2.2-dev/TurboLucene.egg-info/PKG-INFO (modified) (1 diff)
- turbolucene/branches/0.2.2-dev/TurboLucene.egg-info/SOURCES.txt (modified) (1 diff)
- turbolucene/branches/0.2.2-dev/examples/Wiki-20-TL/start-wiki20.py (modified) (2 diffs)
- turbolucene/branches/0.2.2-dev/examples/Wiki-20-TL/wiki20/controllers.py (modified) (1 diff)
- turbolucene/branches/0.2.2-dev/setup.py (modified) (2 diffs)
- turbolucene/branches/0.2.2-dev/turbolucene/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
turbolucene/branches/0.2.2-dev/CHANGELOG
r60 r66 1 1 .. $Id$ 2 3 0.2.2 4 ===== 5 6 * Fixed a bug in the Wiki-20-TL example and made it not require python 2.4. 7 * Tested with TurboGears 1.0.2.2, PyLucene 2.1.0-2 and Python 2.5. 8 * Released Python 2.5 egg. 9 * Backported a bug fix to make TurboLucene install on FreeBSD 5.4. 2 10 3 11 0.2.1 turbolucene/branches/0.2.2-dev/TurboLucene.egg-info/PKG-INFO
r61 r66 1 1 Metadata-Version: 1.0 2 2 Name: TurboLucene 3 Version: 0.2. 13 Version: 0.2.2 4 4 Summary: TurboLucene is a TurboGears extension that allows applications to easily use the PyLucene full-text search engine. 5 5 Home-page: http://dev.krys.ca/turbolucene turbolucene/branches/0.2.2-dev/TurboLucene.egg-info/SOURCES.txt
r50 r66 16 16 TurboLucene.egg-info/top_level.txt 17 17 docs/migration_0.1_to_0.2.txt 18 docs/api/PyLucene.Document-class.html19 docs/api/PyLucene.Field-class.html20 docs/api/api-objects.txt21 docs/api/class-tree.html22 docs/api/crarr.png23 docs/api/epydoc.css24 docs/api/epydoc.js25 docs/api/frames.html26 docs/api/help.html27 docs/api/identifier-index.html28 docs/api/index.html29 docs/api/module-tree.html30 docs/api/redirect.html31 docs/api/toc-everything.html32 docs/api/toc-turbolucene-module.html33 docs/api/toc.html34 docs/api/turbolucene-module.html35 docs/api/turbolucene-pysrc.html36 docs/api/turbolucene._Indexer-class.html37 docs/api/turbolucene._Searcher-class.html38 docs/api/turbolucene._SearcherFactory-class.html39 docs/api/uml_class_diagram_for_pylucene.gif40 docs/api/uml_class_diagram_for_pylucene_2.gif41 docs/api/uml_class_diagram_for_turboluc.gif42 docs/api/uml_class_diagram_for_turboluc_2.gif43 docs/api/uml_class_diagram_for_turboluc_3.gif44 18 examples/Wiki-20-TL/README.txt 45 19 examples/Wiki-20-TL/dev.cfg turbolucene/branches/0.2.2-dev/examples/Wiki-20-TL/start-wiki20.py
r26 r66 1 #!/usr/bin/env python 2.41 #!/usr/bin/env python 2 2 import pkg_resources 3 3 pkg_resources.require("TurboGears") … … 15 15 # probably installed 16 16 if len(sys.argv) > 1: 17 turbogears.update_config(configfile=sys.argv[1], 17 turbogears.update_config(configfile=sys.argv[1], 18 18 modulename="wiki20.config") 19 19 elif exists(join(dirname(__file__), "setup.py")): turbolucene/branches/0.2.2-dev/examples/Wiki-20-TL/wiki20/controllers.py
r45 r66 21 21 """Return the pages that match the ids provided by TurboLucene""" 22 22 if results: 23 return Page.select(IN(Page.q.id, [int(id) for id in results]))23 return list(Page.select(IN(Page.q.id, [int(id) for id in results]))) 24 24 25 25 turbolucene.start(make_document, results_formatter) turbolucene/branches/0.2.2-dev/setup.py
r47 r66 1 #!/usr/bin/env python 2.41 #!/usr/bin/env python 2 2 # -*- coding: utf-8 -*- 3 3 … … 56 56 57 57 setup( 58 name= u'TurboLucene',58 name='TurboLucene', 59 59 version=turbolucene.__version__, 60 60 author=turbolucene.__author__, turbolucene/branches/0.2.2-dev/turbolucene/__init__.py
r60 r66 123 123 __copyright__ = '(c) 2007 Krys Wilken' 124 124 __license__ = 'MIT' 125 __version__ = '0.2. 1'125 __version__ = '0.2.2' 126 126 __api_version__ = '2.0' 127 127 __revision__ = '$Id$'
