Hi!

 

I am indexing my website with the LuceneIndexTransformer like this:

 

      <map:match pattern="site/indexAll">

            <map:aggregate element="page">

                  <map:part src="">

                  <map:part src="">

                  <map:part src=""            

            </map:aggregate>

            <map:transform src="">

            <map:transform type="index"/>

            <map:serialize type="xml"/>

      </map:match>

 

The content pipeline is:

 

      <map:match pattern="content/*">

            <map:generate src="" type="serverpages">

                  <map:parameter name="location" value="{request:contextPath}/web/site/{1}"/>

            </map:generate>

            <map:transform src="">

            <map:serialize/>            

      </map:match>

 

Can (or how can) I achieve the following:

 

      <map:match pattern="site/indexAll">

            <map:part src=""

            <map:transform src="">

            <map:transform type="index"/>

            <map:serialize type="xml"/>

      </map:match>

 

to  eliminate the writing of all possible src’s that can call the content pipeline.

 

Right now I think it is impossible, but am I wrong?