Tobias Wehrum wrote:

<snip/>

"Die Funktion konnte nicht gefunden werden: empty" can be translated to "this function could not be found: empty"


The xslt-block with "empty" in it is thise one:

<xsl:template match="altova:inline-container-substitute" mode="second-step">
       <xsl:choose>
<xsl:when test="empty(for $i in child::node() return index-of(('fo:block','fo:block-container','fo:list-block'),name($i)))">
               <fo:inline>
                   <xsl:copy-of select="@*"/>
                   <xsl:apply-templates mode="second-step"/>
               </fo:inline>
           </xsl:when>
           <xsl:otherwise>
               <fo:block>
                   <xsl:copy-of select="@*"/>
                   <xsl:apply-templates mode="second-step"/>
               </fo:block>
           </xsl:otherwise>
       </xsl:choose>
   </xsl:template


I tried to find more information about this at the FOP-site and Google, but either I am on a completly wrong path or I am just using the wrong search terms. To cut a long story short: I appreciate any clues that help me solve this issue.

I hate to tell you but you are on the wrong path. This is not a FOP problem but an XSLT problem. Your question would be best answered either by an XSLT list (such as Mulberry) or perhaps by Altova support.

Chris



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to