I wish to enable a special index, called Sectors, for a attribute ('sectors') of my Dexterity based custom content-type.

In my schema, inside types/mycontent.py I have:

class IMyContent(form.Schema):
    """
    My Content
    """
    sectors = schema.Set(
            title=_(u"Sectors"),
            description=_(u"Select some sectors"),
            value_type=schema.Choice(vocabulary=vocs.sectors),
            required=True,
        )

    (...)

I then define the index in this way, inside indexers.py

from plone.indexer.decorator import indexer
from zr.content.types.mycontent import IMyContent

@indexer(IMyContent)
def Sectors(obj):
    """Indexer for Sectors attribute.
    """
    d = getattr(obj, "sectors", u"")
    return d if d else None

Finally in the root package configure.zcml:

<adapter name="Sectors" factory=".indexers.Sectors"/>

However, it does not seem to work. Even after reinstalling the product, I don't see the index in portal_catalog and catalog brain object do not seem to have it either.

What am I doing wrong?

link|improve this question

feedback

1 Answer

up vote 8 down vote accepted

You aren't defining the catalogue index. This will just make the indexer available to be added. You require a catalog.xml in your GenericSetup profile with:

<?xml version="1.0"?>
<object name="portal_catalog" meta_type="Plone Catalog Tool">
 <index name="Sectors" meta_type="KeywordIndex">
  <indexed_attr value="Sectors"/>
 </index>
</object>
link|improve this answer
1  
Still, do not add new index with Generic Setup, because you will lose all your data if you reinstall it using quick_installer. – keul Jul 21 '11 at 7:40
1  
Reinstalling products in general is a sign you're doing it wrong. – MatthewWilkes Jul 26 '11 at 15:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.