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/11/10 12:29:31 UTC

Forrest 0.6:
-elements within aggregated pdf-pages are not displayed (solved)

With Forrest 0.6 I encountered a problem during the creation of a pdf-file 
that is aggregated from a group of documents:
All my graphics are in [project-dir]/src/documentation/resources/images (and 
its subdiretories)
Now if I use <figure>-elements in these documents the graphics are not 
displayed in the aggregated pdf-file. If I use <img>-elements everything's 
ok.

As far as I can see this problem is located in
src/core/context/resources/stylesheets/aggregates/doc2doc-uniqueids.xsl:
Around line 45 the follwoing template is defined:

<xsl:template match="section/document//figure|img[starts-with(@src, 
'my-images')]">
    <!-- fix my-images/** links, which break as they are not relative to the 
site root -->
...
</xsl:template>

If you change the match condition to

match="section/document//figure[starts-with(@src, 'my-images')]|
img[starts-with(@src, 'my-images')]">

even the <figure>-elements are displayed.

Stephan