You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@forrest.apache.org by "Stephan E. Schlierf" <st...@vsa.de> on 2004/10/27 14:16:42 UTC

java.lang.NullPointerException

I'm still working on the creation of a pdf-file that is aggregated from a 
group of documents.
With forrest 0.5.1 it works like a charm.

With forrest 0.6 I get the following error message during a "forrest site":

---snip---
X [0]  linkmap.pdf   BROKEN: java.lang.NullPointerException
---snip---

With forrest 0.6 I use a minimalized sitemap.xmap:

<map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
  <map:pipelines>
    <map:pipeline internal-only="false">
      <map:match pattern="**.xml">
        <map:match pattern="workflow_doku.xml">
          <map:mount uri-prefix="" src="workflow_doku.xmap" 
check-reload="yes" />
        </map:match>
      </map:match>
    </map:pipeline>
  </map:pipelines>
</map:sitemap>

My workflow_doku.xmap looks like:

<?xml version="1.0"?>
<map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
  <map:components>
    <map:generators default="file"/>
    <map:serializers default="html"/>
    <map:transformers default="xslt">
      <map:transformer name="cinclude" 
src="org.apache.cocoon.transformation.CIncludeTransformer"/>
    </map:transformers>
    <map:matchers default="wildcard"/>
  </map:components>

  <map:pipelines>
    <map:pipeline>
        <map:match pattern="*.xml">
            <map:generate src="cocoon://abs-linkmap"/>
            <map:transform type="xpath">
                <map:parameter name="include" 
value="/*[name()='site']/*[name()='wflow']"/>
            </map:transform>
            <map:transform src="resources/stylesheets/site2book.xsl" />
            <map:transform 
src="resources/stylesheets/aggregates/book2cinclude.xsl">
              <map:parameter name="title" value="{conf:project-name}: 
Workflows"/>
            </map:transform>
            <map:transform type="cinclude"/>
            <map:transform 
src="resources/stylesheets/aggregates/doc2doc-uniqueids.xsl"/>
            <map:transform 
src="resources/stylesheets/aggregates/docs2document.xsl"/>
            <map:serialize type="xml"/>
        </map:match>

      <map:match pattern="linkmap-*.*">
        <map:generate src="cocoon://abs-linkmap" />
        <map:transform 
src="resources/stylesheets/aggregates/relativize-split-linkmap.xsl">
          <map:parameter name="path" value="{1}.{2}" />
        </map:transform>
        <map:serialize type="xml"/>
      </map:match>
    </map:pipeline>
  </map:pipelines>
</map:sitemap>

Any ideas?
TIA,
Stephan

Re: java.lang.NullPointerException

Posted by "Stephan E. Schlierf" <st...@vsa.de>.
Am Donnerstag, 28. Oktober 2004 17:20 schrieb Scherler, Thorsten:
> El jue, 28-10-2004 a las 16:16, Stephan E. Schlierf escribió:
> > but the NullPointerException is still there.
> >
> > hm, I'm quite stumped....
> > Stephan
>
> Please provide the full exeption and I will have a look.
>
> thorsten
OK, here it comes (see attached file).
Thanks!
Stephan

Re: java.lang.NullPointerException

Posted by "Scherler, Thorsten" <th...@apache.org>.
El jue, 28-10-2004 a las 16:16, Stephan E. Schlierf escribió:
> but the NullPointerException is still there.
> 
> hm, I'm quite stumped....
> Stephan

Please provide the full exeption and I will have a look.

thorsten


Re: java.lang.NullPointerException

Posted by "Stephan E. Schlierf" <st...@vsa.de>.
Am Donnerstag, 28. Oktober 2004 12:11 schrieb Scherler, Thorsten:
> El jue, 28-10-2004 a las 11:29, Stephan E. Schlierf escribió:
> > > try:
> > > <linkmap label="linkmap" href="linkmap.html"
> > >    description="linkmap" wholesite='false'/>
> >
> > Unfortunately this does not work. As far as I can see I can't use the
> > "wholesite" attribute because I do not want to generate one pdf-file for
> > the whole project but different pdf-files for different groups of
> > documents. Therefore I used to define something like
> > ...
> > <map:parameter name="include"
> > value="/*[name()='site']/*[name()='wflow']"/> ...
> > in my special xmap-file. So only the element <wflow>...</wflow> and its
> > children of site.xml are included.
> > Any other way to deactivate linkmap.html ?
>
> Sorry, I do not know how to desactivate the whole linkmap (IMO it is not
> possible). Maybe Nicola knows I think he introduced that feature. ;-)
>
> ...but maybe another idea for a work-around.
> Just introduce something like (I reckon you have to adjust that to your
> use case):
>  <map:parameter name="exclude" value="/*[name()='site']/*[name()='wflow'
> AND @exclude='true']]"/>
>
> Then just add the linkmap.html as child of <wflow/> with
> @exclude='true'. That may do the trick.

What I now did was in site.xml:
<all label="All" wholesite="false">
 <m_linkmap label="Sitemap" href="linkmap.html"/>
</all>
but the NullPointerException is still there.

hm, I'm quite stumped....
Stephan

Re: java.lang.NullPointerException

Posted by Nicola Ken Barozzi <ni...@apache.org>.
Scherler, Thorsten wrote:
> El jue, 28-10-2004 a las 11:29, Stephan E. Schlierf escribió:
> 
>>>try:
>>><linkmap label="linkmap" href="linkmap.html"
>>>   description="linkmap" wholesite='false'/>
>>
>>Unfortunately this does not work. As far as I can see I can't use the 
>>"wholesite" attribute because I do not want to generate one pdf-file for the 
>>whole project but different pdf-files for different groups of documents.
>>Therefore I used to define something like
>>...
>><map:parameter name="include" value="/*[name()='site']/*[name()='wflow']"/>
>>...
>>in my special xmap-file. So only the element <wflow>...</wflow> and its 
>>children of site.xml are included.
>>Any other way to deactivate linkmap.html ?
> 
> Sorry, I do not know how to desactivate the whole linkmap (IMO it is not
> possible). Maybe Nicola knows I think he introduced that feature. ;-)

It's not removable, as the whole 'forrest site' generation is done 
starting from that file.

> ...but maybe another idea for a work-around.
> Just introduce something like (I reckon you have to adjust that to your
> use case):
>  <map:parameter name="exclude" value="/*[name()='site']/*[name()='wflow'
> AND @exclude='true']]"/>
> 
> Then just add the linkmap.html as child of <wflow/> with
> @exclude='true'. That may do the trick.

-- 
Nicola Ken Barozzi                   nicolaken@apache.org
             - verba volant, scripta manent -
    (discussions get forgotten, just code remains)
---------------------------------------------------------------------


Re: java.lang.NullPointerException

Posted by "Scherler, Thorsten" <th...@apache.org>.
El jue, 28-10-2004 a las 11:29, Stephan E. Schlierf escribió:
> > try:
> > <linkmap label="linkmap" href="linkmap.html"
> >    description="linkmap" wholesite='false'/>
> 
> Unfortunately this does not work. As far as I can see I can't use the 
> "wholesite" attribute because I do not want to generate one pdf-file for the 
> whole project but different pdf-files for different groups of documents.
> Therefore I used to define something like
> ...
> <map:parameter name="include" value="/*[name()='site']/*[name()='wflow']"/>
> ...
> in my special xmap-file. So only the element <wflow>...</wflow> and its 
> children of site.xml are included.
> Any other way to deactivate linkmap.html ?

Sorry, I do not know how to desactivate the whole linkmap (IMO it is not
possible). Maybe Nicola knows I think he introduced that feature. ;-)

...but maybe another idea for a work-around.
Just introduce something like (I reckon you have to adjust that to your
use case):
 <map:parameter name="exclude" value="/*[name()='site']/*[name()='wflow'
AND @exclude='true']]"/>

Then just add the linkmap.html as child of <wflow/> with
@exclude='true'. That may do the trick.

HTH
thorsten


Re: java.lang.NullPointerException

Posted by "Stephan E. Schlierf" <st...@vsa.de>.
Am Donnerstag, 28. Oktober 2004 10:04 schrieb Scherler, Thorsten:
> El jue, 28-10-2004 a las 09:52, Stephan E. Schlierf escribió:
> > Am Donnerstag, 28. Oktober 2004 06:24 schrieb David Crossley:
> > > Stephan E. Schlierf wrote:
> > > > schrieb Ross Gardler:
> > > > > Stephan E. Schlierf wrote:
> > > > > > I'm still working on the creation of a pdf-file that is
> > > > > > aggregated from a group of documents.
> > > > > > With forrest 0.5.1 it works like a charm.
> > > > > >
> > > > > > With forrest 0.6 I get the following error message during a
> > > > > > "forrest site":
> > > > > >
> > > > > > ---snip---
> > > > > > X [0]  linkmap.pdf   BROKEN: java.lang.NullPointerException
> > > > > > ---snip---
> > > > >
> > > > > is there anything of significance in your logs?
> > > > >
> > > > > See build/webapp/WEB-INF/logs
> > > >
> > > > Hm, in core.log you can find:
> > > > FATAL_E (2004-10-27) 15:22.31:668   [core.xslt-processor]
> > > > (Unknown-URI) Unknown-thread/TraxErrorHandler: Error in
> > > > TraxTransformer:
> > > > file:/home/stephan/apache-forrest-0.6/src/core/context/skins/pelt/xsl
> > > >t/fo /../../../common/xslt/fo/document2fo.xsl; Line 162; Column 59; ;
> > > > SystemID:
> > > > file:/home/stephan/apache-forrest-0.6/src/core/context/skins/pelt/xsl
> > > >t/fo /../../../common/xslt/fo/document2fo.xsl; Line#: 162; Column#: 59
> > > > javax.xml.transform.TransformerException:
> > > > java.lang.NullPointerException
> > > >
> > > > Line 162 in document2fo.xsl is
> > > > <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
> > > >
> > > > Just an idea:
> > > > Is it possible that Forrest tries to generate a pdf-file for the
> > > > linkmap.html ? In apache-forrest-0.6/status.xml I found an entry by
> > > > NKB: "Requesting linkmap.html Forrest now renders the site.xml file
> > > > as a table of contents."
> > >
> > > Forrest does generate linkmap.pdf by default, and the local
> > > core Forrest docs do build okay for me. The difference
> > > is that you are doing an aggregated group of docs.
> > >
> > > Perhaps the inclusion of this "linkmap" document into
> > > the aggregation is one cause.
> >
> > o.k., so my question is now: Is it possible to prevent Forrest from
> > generating linkmap.html and linkmap.pdf ?
>
> try:
> <linkmap label="linkmap" href="linkmap.html"
>    description="linkmap" wholesite='false'/>

Unfortunately this does not work. As far as I can see I can't use the 
"wholesite" attribute because I do not want to generate one pdf-file for the 
whole project but different pdf-files for different groups of documents.
Therefore I used to define something like
...
<map:parameter name="include" value="/*[name()='site']/*[name()='wflow']"/>
...
in my special xmap-file. So only the element <wflow>...</wflow> and its 
children of site.xml are included.
Any other way to deactivate linkmap.html ?

TIA,
Stephan

Re: java.lang.NullPointerException

Posted by "Scherler, Thorsten" <th...@apache.org>.
El jue, 28-10-2004 a las 09:52, Stephan E. Schlierf escribió:
> Am Donnerstag, 28. Oktober 2004 06:24 schrieb David Crossley:
> > Stephan E. Schlierf wrote:
> > > schrieb Ross Gardler:
> > > > Stephan E. Schlierf wrote:
> > > > > I'm still working on the creation of a pdf-file that is aggregated
> > > > > from a group of documents.
> > > > > With forrest 0.5.1 it works like a charm.
> > > > >
> > > > > With forrest 0.6 I get the following error message during a "forrest
> > > > > site":
> > > > >
> > > > > ---snip---
> > > > > X [0]  linkmap.pdf   BROKEN: java.lang.NullPointerException
> > > > > ---snip---
> > > >
> > > > is there anything of significance in your logs?
> > > >
> > > > See build/webapp/WEB-INF/logs
> > >
> > > Hm, in core.log you can find:
> > > FATAL_E (2004-10-27) 15:22.31:668   [core.xslt-processor] (Unknown-URI)
> > > Unknown-thread/TraxErrorHandler: Error in TraxTransformer:
> > > file:/home/stephan/apache-forrest-0.6/src/core/context/skins/pelt/xslt/fo
> > >/../../../common/xslt/fo/document2fo.xsl; Line 162; Column 59;
> > > ; SystemID:
> > > file:/home/stephan/apache-forrest-0.6/src/core/context/skins/pelt/xslt/fo
> > >/../../../common/xslt/fo/document2fo.xsl; Line#: 162; Column#: 59
> > > javax.xml.transform.TransformerException: java.lang.NullPointerException
> > >
> > > Line 162 in document2fo.xsl is
> > > <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
> > >
> > > Just an idea:
> > > Is it possible that Forrest tries to generate a pdf-file for the
> > > linkmap.html ? In apache-forrest-0.6/status.xml I found an entry by NKB:
> > > "Requesting linkmap.html Forrest now renders the site.xml file as a table
> > > of contents."
> >
> > Forrest does generate linkmap.pdf by default, and the local
> > core Forrest docs do build okay for me. The difference
> > is that you are doing an aggregated group of docs.
> >
> > Perhaps the inclusion of this "linkmap" document into
> > the aggregation is one cause.
> 
> o.k., so my question is now: Is it possible to prevent Forrest from generating 
> linkmap.html and linkmap.pdf ?
> 

try:
<linkmap label="linkmap" href="linkmap.html"      
   description="linkmap" wholesite='false'/>

HTH
thorsten


Re: java.lang.NullPointerException

Posted by "Stephan E. Schlierf" <st...@vsa.de>.
Am Donnerstag, 28. Oktober 2004 06:24 schrieb David Crossley:
> Stephan E. Schlierf wrote:
> > schrieb Ross Gardler:
> > > Stephan E. Schlierf wrote:
> > > > I'm still working on the creation of a pdf-file that is aggregated
> > > > from a group of documents.
> > > > With forrest 0.5.1 it works like a charm.
> > > >
> > > > With forrest 0.6 I get the following error message during a "forrest
> > > > site":
> > > >
> > > > ---snip---
> > > > X [0]  linkmap.pdf   BROKEN: java.lang.NullPointerException
> > > > ---snip---
> > >
> > > is there anything of significance in your logs?
> > >
> > > See build/webapp/WEB-INF/logs
> >
> > Hm, in core.log you can find:
> > FATAL_E (2004-10-27) 15:22.31:668   [core.xslt-processor] (Unknown-URI)
> > Unknown-thread/TraxErrorHandler: Error in TraxTransformer:
> > file:/home/stephan/apache-forrest-0.6/src/core/context/skins/pelt/xslt/fo
> >/../../../common/xslt/fo/document2fo.xsl; Line 162; Column 59;
> > ; SystemID:
> > file:/home/stephan/apache-forrest-0.6/src/core/context/skins/pelt/xslt/fo
> >/../../../common/xslt/fo/document2fo.xsl; Line#: 162; Column#: 59
> > javax.xml.transform.TransformerException: java.lang.NullPointerException
> >
> > Line 162 in document2fo.xsl is
> > <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
> >
> > Just an idea:
> > Is it possible that Forrest tries to generate a pdf-file for the
> > linkmap.html ? In apache-forrest-0.6/status.xml I found an entry by NKB:
> > "Requesting linkmap.html Forrest now renders the site.xml file as a table
> > of contents."
>
> Forrest does generate linkmap.pdf by default, and the local
> core Forrest docs do build okay for me. The difference
> is that you are doing an aggregated group of docs.
>
> Perhaps the inclusion of this "linkmap" document into
> the aggregation is one cause.

o.k., so my question is now: Is it possible to prevent Forrest from generating 
linkmap.html and linkmap.pdf ?

Stephan

Re: java.lang.NullPointerException

Posted by David Crossley <cr...@apache.org>.
Stephan E. Schlierf wrote:
> schrieb Ross Gardler:
> > Stephan E. Schlierf wrote:
> > > I'm still working on the creation of a pdf-file that is aggregated from a
> > > group of documents.
> > > With forrest 0.5.1 it works like a charm.
> > >
> > > With forrest 0.6 I get the following error message during a "forrest
> > > site":
> > >
> > > ---snip---
> > > X [0]  linkmap.pdf   BROKEN: java.lang.NullPointerException
> > > ---snip---
> >
> > is there anything of significance in your logs?
> >
> > See build/webapp/WEB-INF/logs
> 
> Hm, in core.log you can find:
> FATAL_E (2004-10-27) 15:22.31:668   [core.xslt-processor] (Unknown-URI) 
> Unknown-thread/TraxErrorHandler: Error in TraxTransformer: 
> file:/home/stephan/apache-forrest-0.6/src/core/context/skins/pelt/xslt/fo/../../../common/xslt/fo/document2fo.xsl; 
> Line 162; Column 59;
> ; SystemID: 
> file:/home/stephan/apache-forrest-0.6/src/core/context/skins/pelt/xslt/fo/../../../common/xslt/fo/document2fo.xsl; 
> Line#: 162; Column#: 59
> javax.xml.transform.TransformerException: java.lang.NullPointerException
> 
> Line 162 in document2fo.xsl is
> <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
> 
> Just an idea:
> Is it possible that Forrest tries to generate a pdf-file for the 
> linkmap.html ? In apache-forrest-0.6/status.xml I found an entry by NKB:
> "Requesting linkmap.html Forrest now renders the site.xml file as a table of 
> contents."

Forrest does generate linkmap.pdf by default, and the local
core Forrest docs do build okay for me. The difference
is that you are doing an aggregated group of docs.

Perhaps the inclusion of this "linkmap" document into
the aggregation is one cause.

We already have a Jira issue for various aspects of
whole-site aggregation. Probably related. It seems that
we are getting way beyond the scope of the "user" mailing
list with these discussions.

-- 
David Crossley


Re: java.lang.NullPointerException

Posted by "Stephan E. Schlierf" <st...@vsa.de>.
Am Mittwoch, 27. Oktober 2004 15:07 schrieb Ross Gardler:
> Stephan E. Schlierf wrote:
> > I'm still working on the creation of a pdf-file that is aggregated from a
> > group of documents.
> > With forrest 0.5.1 it works like a charm.
> >
> > With forrest 0.6 I get the following error message during a "forrest
> > site":
> >
> > ---snip---
> > X [0]  linkmap.pdf   BROKEN: java.lang.NullPointerException
> > ---snip---
>
> is there anything of significance in your logs?
>
> See build/webapp/WEB-INF/logs

Hm, in core.log you can find:
FATAL_E (2004-10-27) 15:22.31:668   [core.xslt-processor] (Unknown-URI) 
Unknown-thread/TraxErrorHandler: Error in TraxTransformer: 
file:/home/stephan/apache-forrest-0.6/src/core/context/skins/pelt/xslt/fo/../../../common/xslt/fo/document2fo.xsl; 
Line 162; Column 59;
; SystemID: 
file:/home/stephan/apache-forrest-0.6/src/core/context/skins/pelt/xslt/fo/../../../common/xslt/fo/document2fo.xsl; 
Line#: 162; Column#: 59
javax.xml.transform.TransformerException: java.lang.NullPointerException

Line 162 in document2fo.xsl is
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">

Just an idea:
Is it possible that Forrest tries to generate a pdf-file for the 
linkmap.html ? In apache-forrest-0.6/status.xml I found an entry by NKB:
"Requesting linkmap.html Forrest now renders the site.xml file as a table of 
contents."

Stephan
>
> Ross
>
> > With forrest 0.6 I use a minimalized sitemap.xmap:
> >
> > <map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
> >   <map:pipelines>
> >     <map:pipeline internal-only="false">
> >       <map:match pattern="**.xml">
> >         <map:match pattern="workflow_doku.xml">
> >           <map:mount uri-prefix="" src="workflow_doku.xmap"
> > check-reload="yes" />
> >         </map:match>
> >       </map:match>
> >     </map:pipeline>
> >   </map:pipelines>
> > </map:sitemap>
> >
> > My workflow_doku.xmap looks like:
> >
> > <?xml version="1.0"?>
> > <map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
> >   <map:components>
> >     <map:generators default="file"/>
> >     <map:serializers default="html"/>
> >     <map:transformers default="xslt">
> >       <map:transformer name="cinclude"
> > src="org.apache.cocoon.transformation.CIncludeTransformer"/>
> >     </map:transformers>
> >     <map:matchers default="wildcard"/>
> >   </map:components>
> >
> >   <map:pipelines>
> >     <map:pipeline>
> >         <map:match pattern="*.xml">
> >             <map:generate src="cocoon://abs-linkmap"/>
> >             <map:transform type="xpath">
> >                 <map:parameter name="include"
> > value="/*[name()='site']/*[name()='wflow']"/>
> >             </map:transform>
> >             <map:transform src="resources/stylesheets/site2book.xsl" />
> >             <map:transform
> > src="resources/stylesheets/aggregates/book2cinclude.xsl">
> >               <map:parameter name="title" value="{conf:project-name}:
> > Workflows"/>
> >             </map:transform>
> >             <map:transform type="cinclude"/>
> >             <map:transform
> > src="resources/stylesheets/aggregates/doc2doc-uniqueids.xsl"/>
> >             <map:transform
> > src="resources/stylesheets/aggregates/docs2document.xsl"/>
> >             <map:serialize type="xml"/>
> >         </map:match>
> >
> >       <map:match pattern="linkmap-*.*">
> >         <map:generate src="cocoon://abs-linkmap" />
> >         <map:transform
> > src="resources/stylesheets/aggregates/relativize-split-linkmap.xsl">
> >           <map:parameter name="path" value="{1}.{2}" />
> >         </map:transform>
> >         <map:serialize type="xml"/>
> >       </map:match>
> >     </map:pipeline>
> >   </map:pipelines>
> > </map:sitemap>
> >
> > Any ideas?
> > TIA,
> > Stephan

Re: java.lang.NullPointerException

Posted by Ross Gardler <rg...@apache.org>.
Stephan E. Schlierf wrote:
> I'm still working on the creation of a pdf-file that is aggregated from a 
> group of documents.
> With forrest 0.5.1 it works like a charm.
> 
> With forrest 0.6 I get the following error message during a "forrest site":
> 
> ---snip---
> X [0]  linkmap.pdf   BROKEN: java.lang.NullPointerException
> ---snip---

is there anything of significance in your logs?

See build/webapp/WEB-INF/logs

Ross

> 
> With forrest 0.6 I use a minimalized sitemap.xmap:
> 
> <map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
>   <map:pipelines>
>     <map:pipeline internal-only="false">
>       <map:match pattern="**.xml">
>         <map:match pattern="workflow_doku.xml">
>           <map:mount uri-prefix="" src="workflow_doku.xmap" 
> check-reload="yes" />
>         </map:match>
>       </map:match>
>     </map:pipeline>
>   </map:pipelines>
> </map:sitemap>
> 
> My workflow_doku.xmap looks like:
> 
> <?xml version="1.0"?>
> <map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
>   <map:components>
>     <map:generators default="file"/>
>     <map:serializers default="html"/>
>     <map:transformers default="xslt">
>       <map:transformer name="cinclude" 
> src="org.apache.cocoon.transformation.CIncludeTransformer"/>
>     </map:transformers>
>     <map:matchers default="wildcard"/>
>   </map:components>
> 
>   <map:pipelines>
>     <map:pipeline>
>         <map:match pattern="*.xml">
>             <map:generate src="cocoon://abs-linkmap"/>
>             <map:transform type="xpath">
>                 <map:parameter name="include" 
> value="/*[name()='site']/*[name()='wflow']"/>
>             </map:transform>
>             <map:transform src="resources/stylesheets/site2book.xsl" />
>             <map:transform 
> src="resources/stylesheets/aggregates/book2cinclude.xsl">
>               <map:parameter name="title" value="{conf:project-name}: 
> Workflows"/>
>             </map:transform>
>             <map:transform type="cinclude"/>
>             <map:transform 
> src="resources/stylesheets/aggregates/doc2doc-uniqueids.xsl"/>
>             <map:transform 
> src="resources/stylesheets/aggregates/docs2document.xsl"/>
>             <map:serialize type="xml"/>
>         </map:match>
> 
>       <map:match pattern="linkmap-*.*">
>         <map:generate src="cocoon://abs-linkmap" />
>         <map:transform 
> src="resources/stylesheets/aggregates/relativize-split-linkmap.xsl">
>           <map:parameter name="path" value="{1}.{2}" />
>         </map:transform>
>         <map:serialize type="xml"/>
>       </map:match>
>     </map:pipeline>
>   </map:pipelines>
> </map:sitemap>
> 
> Any ideas?
> TIA,
> Stephan
> 
>