Changeset 66

Show
Ignore:
Timestamp:
05/17/07 01:55:31
Author:
krys
Message:

- Updated version to 0.2.2.
- Fixed bug in Wiki-20-TL.
- Changed start-wiki20.py to use python instead of python2.4 specifically.
- Backported trunk r56 bug fix (FreeBSD 5.4 bug).
- Updated CHANGELOG with the 0.2.2 changes.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • turbolucene/branches/0.2.2-dev/CHANGELOG

    r60 r66  
    11.. $Id$ 
     2 
     30.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. 
    210 
    3110.2.1 
  • turbolucene/branches/0.2.2-dev/TurboLucene.egg-info/PKG-INFO

    r61 r66  
    11Metadata-Version: 1.0 
    22Name: TurboLucene 
    3 Version: 0.2.1 
     3Version: 0.2.2 
    44Summary: TurboLucene is a TurboGears extension that allows applications to easily use the PyLucene full-text search engine. 
    55Home-page: http://dev.krys.ca/turbolucene 
  • turbolucene/branches/0.2.2-dev/TurboLucene.egg-info/SOURCES.txt

    r50 r66  
    1616TurboLucene.egg-info/top_level.txt 
    1717docs/migration_0.1_to_0.2.txt 
    18 docs/api/PyLucene.Document-class.html 
    19 docs/api/PyLucene.Field-class.html 
    20 docs/api/api-objects.txt 
    21 docs/api/class-tree.html 
    22 docs/api/crarr.png 
    23 docs/api/epydoc.css 
    24 docs/api/epydoc.js 
    25 docs/api/frames.html 
    26 docs/api/help.html 
    27 docs/api/identifier-index.html 
    28 docs/api/index.html 
    29 docs/api/module-tree.html 
    30 docs/api/redirect.html 
    31 docs/api/toc-everything.html 
    32 docs/api/toc-turbolucene-module.html 
    33 docs/api/toc.html 
    34 docs/api/turbolucene-module.html 
    35 docs/api/turbolucene-pysrc.html 
    36 docs/api/turbolucene._Indexer-class.html 
    37 docs/api/turbolucene._Searcher-class.html 
    38 docs/api/turbolucene._SearcherFactory-class.html 
    39 docs/api/uml_class_diagram_for_pylucene.gif 
    40 docs/api/uml_class_diagram_for_pylucene_2.gif 
    41 docs/api/uml_class_diagram_for_turboluc.gif 
    42 docs/api/uml_class_diagram_for_turboluc_2.gif 
    43 docs/api/uml_class_diagram_for_turboluc_3.gif 
    4418examples/Wiki-20-TL/README.txt 
    4519examples/Wiki-20-TL/dev.cfg 
  • turbolucene/branches/0.2.2-dev/examples/Wiki-20-TL/start-wiki20.py

    r26 r66  
    1 #!/usr/bin/env python2.4 
     1#!/usr/bin/env python 
    22import pkg_resources 
    33pkg_resources.require("TurboGears") 
     
    1515# probably installed 
    1616if len(sys.argv) > 1: 
    17     turbogears.update_config(configfile=sys.argv[1],  
     17    turbogears.update_config(configfile=sys.argv[1], 
    1818        modulename="wiki20.config") 
    1919elif exists(join(dirname(__file__), "setup.py")): 
  • turbolucene/branches/0.2.2-dev/examples/Wiki-20-TL/wiki20/controllers.py

    r45 r66  
    2121    """Return the pages that match the ids provided by TurboLucene""" 
    2222    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]))) 
    2424 
    2525turbolucene.start(make_document, results_formatter) 
  • turbolucene/branches/0.2.2-dev/setup.py

    r47 r66  
    1 #!/usr/bin/env python2.4 
     1#!/usr/bin/env python 
    22# -*- coding: utf-8 -*- 
    33 
     
    5656 
    5757setup( 
    58   name=u'TurboLucene', 
     58  name='TurboLucene', 
    5959  version=turbolucene.__version__, 
    6060  author=turbolucene.__author__, 
  • turbolucene/branches/0.2.2-dev/turbolucene/__init__.py

    r60 r66  
    123123__copyright__ = '(c) 2007 Krys Wilken' 
    124124__license__ = 'MIT' 
    125 __version__ = '0.2.1
     125__version__ = '0.2.2
    126126__api_version__ = '2.0' 
    127127__revision__ = '$Id$'