Author: jablko
Date: Wed Aug 26 16:11:59 2009
New Revision: 3081
Log:
Oops, rollback last commit - parent field should not be tokenized,
http://framework.zend.com/manual/en/zend.search.lucene.html#zend.search.lucene.index-creation.understanding-field-types
Modified:
trunk/apps/qubit/lib/SearchIndex.class.php
trunk/apps/qubit/modules/informationobject/templates/_termNameAutoComplete.php
(props changed)
trunk/apps/qubit/modules/term/actions/contextMenuComponent.class.php
(props changed)
trunk/apps/qubit/modules/term/actions/treeViewAction.class.php (props
changed)
trunk/apps/qubit/modules/term/actions/treeViewComponent.class.php (props
changed)
trunk/apps/qubit/modules/term/templates/_contextMenu.php (props changed)
trunk/apps/qubit/modules/term/templates/_termNameAutoComplete.php (props
changed)
trunk/apps/qubit/modules/term/templates/_treeView.php (props changed)
trunk/apps/qubit/modules/term/templates/listSuccess.php (props changed)
Modified: trunk/apps/qubit/lib/SearchIndex.class.php
==============================================================================
--- trunk/apps/qubit/lib/SearchIndex.class.php Wed Aug 26 16:02:38 2009
(r3080)
+++ trunk/apps/qubit/lib/SearchIndex.class.php Wed Aug 26 16:11:59 2009
(r3081)
@@ -213,7 +213,7 @@
if (isset($informationObject->parent))
{
- $doc->addField(Zend_Search_Lucene_Field::UnStored('parentId',
$informationObject->parent->id));
+ $doc->addField(Zend_Search_Lucene_Field::Keyword('parentId',
$informationObject->parent->id));
}
// ID
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.ca/group/qubit-commits?hl=en
-~----------~----~----~----~------~----~------~--~---