> Hi,
>
> We want to link together lucene and slide for our project - such that
> documents checked in through slide are indexed.
>
> Are there any standard hooks in the slide API to allow this?
>
>
> I can see the following options -
> . subclass webdavservlet and add our extra processing
> . do a custom version of webdavservlet with our extra processing
> . do a custom/extended store that has our extra processing.
>
> Where the extra processing involves taking the metatags of the document
and
> sticking that into a lucene document to get the document indexed based on
> its tags.
You can use the ContentInterceptor class. Extend it, and register the
interceptor by adding a <content-interceptor class="Foo"/> in the namespace
configuration element in Domain.xml.
It allows to easily access all the metadata.
I think here you would like to use the postStoreContent call and look at
what is in the RevisionDescriptor.
Remy