Hi,
 
I am trying to make the raw HTML included as static content in src/documentation/content directory be indexed and searched by Lucene.
 
I have a directory src/documentation/content/javadocs which contains javadocs for some components as html/other files.
 
Pointers to changes that need to be made in search.xmap needed. I guess tweaking the following map should bring about desired output but I am unable to succeed in making Lucene index the raw content.
 
      <map:match pattern="**body-*.lucene">
        <map:select type="exists">
          <map:when test="{project:content.xdocs}{1}{2}.ehtml">
            <map:generate src="" content.xdocs}{1}{2}.ehtml" />
            <map:transform src="" />
          </map:when>
          <map:when test="cocoon://{1}{2}.xml">
            <map:generate src="">          </map:when>
        </map:select>
        <map:transform src=""
          <map:parameter name="document-url" value="{1}{2}.xml"/>
        </map:transform>
        <map:serialize type="xml"/>
      </map:match>
 
Thanks and regards,
Karthik.