[Checkins] SVN: z3ext.lucene/tags/1.1.4/ release tag

Nikolay Kim fafhrd at datacom.kz
Thu Oct 9 01:31:30 EDT 2008


Log message for revision 91914:
  release tag

Changed:
  A   z3ext.lucene/tags/1.1.4/
  D   z3ext.lucene/tags/1.1.4/CHANGES.txt
  A   z3ext.lucene/tags/1.1.4/CHANGES.txt
  U   z3ext.lucene/tags/1.1.4/setup.py
  D   z3ext.lucene/tags/1.1.4/src/z3ext/lucene/utils.py
  A   z3ext.lucene/tags/1.1.4/src/z3ext/lucene/utils.py

-=-
Copied: z3ext.lucene/tags/1.1.4 (from rev 91912, z3ext.lucene/trunk)

Deleted: z3ext.lucene/tags/1.1.4/CHANGES.txt
===================================================================
--- z3ext.lucene/trunk/CHANGES.txt	2008-10-08 23:47:28 UTC (rev 91912)
+++ z3ext.lucene/tags/1.1.4/CHANGES.txt	2008-10-09 05:31:29 UTC (rev 91914)
@@ -1,36 +0,0 @@
-=======
-CHANGES
-=======
-
-1.1.3 (2008-09-18)
-------------------
-
-- Fixed LookupError
-
-
-1.1.2 (2008-03-25)
-------------------
-
-- fix: don't split query if it is string
-
-- code moved to svn.zope.org
-
-
-1.1.1 (2008-02-21)
-------------------
-
-- Use z3ext.layoutform for product configuration
-
-- Catch exception during server startup and indexing
-
-
-1.1.0 (2008-02-01)
-------------------
-
-- Added support for z3ext.product
-
-
-1.0.0 (2007-12-08)
-------------------
-
-- Initial release.

Copied: z3ext.lucene/tags/1.1.4/CHANGES.txt (from rev 91913, z3ext.lucene/trunk/CHANGES.txt)
===================================================================
--- z3ext.lucene/tags/1.1.4/CHANGES.txt	                        (rev 0)
+++ z3ext.lucene/tags/1.1.4/CHANGES.txt	2008-10-09 05:31:29 UTC (rev 91914)
@@ -0,0 +1,42 @@
+=======
+CHANGES
+=======
+
+1.1.4 (2008-10-09)
+------------------
+
+- Fixed error in unindexObject
+
+
+1.1.3 (2008-09-18)
+------------------
+
+- Fixed LookupError
+
+
+1.1.2 (2008-03-25)
+------------------
+
+- fix: don't split query if it is string
+
+- code moved to svn.zope.org
+
+
+1.1.1 (2008-02-21)
+------------------
+
+- Use z3ext.layoutform for product configuration
+
+- Catch exception during server startup and indexing
+
+
+1.1.0 (2008-02-01)
+------------------
+
+- Added support for z3ext.product
+
+
+1.0.0 (2007-12-08)
+------------------
+
+- Initial release.

Modified: z3ext.lucene/tags/1.1.4/setup.py
===================================================================
--- z3ext.lucene/trunk/setup.py	2008-10-08 23:47:28 UTC (rev 91912)
+++ z3ext.lucene/tags/1.1.4/setup.py	2008-10-09 05:31:29 UTC (rev 91914)
@@ -21,7 +21,7 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-version = '1.1.4dev'
+version = '1.1.4'
 
 
 setup(name='z3ext.lucene',

Deleted: z3ext.lucene/tags/1.1.4/src/z3ext/lucene/utils.py
===================================================================
--- z3ext.lucene/trunk/src/z3ext/lucene/utils.py	2008-10-08 23:47:28 UTC (rev 91912)
+++ z3ext.lucene/tags/1.1.4/src/z3ext/lucene/utils.py	2008-10-09 05:31:29 UTC (rev 91914)
@@ -1,51 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2007 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""
-
-$Id: utils.py 1828 2008-03-21 12:51:56Z fafhrd91 $
-"""
-from zope.component import queryUtility
-from zope.app.intid.interfaces import IIntIds
-
-from interfaces import ILuceneIndex
-
-
-def indexObject(object, index=None, intids=None):
-    if index is None:
-        index = queryUtility(ILuceneIndex)
-
-    if index is not None:
-        if intids is None:
-            intids = queryUtility(IIntIds)
-            
-        if intids is not None:
-            id = intids.queryId(object)
-
-            if id is not None:
-                index.index_doc(id, object)
-
-
-def unindexObject(object, index=None, intids=None):
-    if index is None:
-        index = queryUtility(ILuceneIndex)
-
-    if index is not None:
-        if intids is None:
-            intids = queryUtility(IIntIds)
-
-        if intids is not None:
-            id = intids.getId(object)
-            
-            if id is not None:
-                index.unindex_doc(id)

Copied: z3ext.lucene/tags/1.1.4/src/z3ext/lucene/utils.py (from rev 91913, z3ext.lucene/trunk/src/z3ext/lucene/utils.py)
===================================================================
--- z3ext.lucene/tags/1.1.4/src/z3ext/lucene/utils.py	                        (rev 0)
+++ z3ext.lucene/tags/1.1.4/src/z3ext/lucene/utils.py	2008-10-09 05:31:29 UTC (rev 91914)
@@ -0,0 +1,51 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""
+
+$Id: utils.py 1828 2008-03-21 12:51:56Z fafhrd91 $
+"""
+from zope.component import queryUtility
+from zope.app.intid.interfaces import IIntIds
+
+from interfaces import ILuceneIndex
+
+
+def indexObject(object, index=None, intids=None):
+    if index is None:
+        index = queryUtility(ILuceneIndex)
+
+    if index is not None:
+        if intids is None:
+            intids = queryUtility(IIntIds)
+            
+        if intids is not None:
+            id = intids.queryId(object)
+
+            if id is not None:
+                index.index_doc(id, object)
+
+
+def unindexObject(object, index=None, intids=None):
+    if index is None:
+        index = queryUtility(ILuceneIndex)
+
+    if index is not None:
+        if intids is None:
+            intids = queryUtility(IIntIds)
+
+        if intids is not None:
+            id = intids.queryId(object)
+
+            if id is not None:
+                index.unindex_doc(id)



More information about the Checkins mailing list