OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: RE: [docbook-apps] different lang attributes in an article


> -----Original Message-----
> From: Bob Stayton 
> What you expected is correct and what you got is wrong.  It 
> is a bug that
> was introduced in 1.66.1.   I just checked in the fix for it, 
> so it should
> be in 1.67.1.  Or you can try the snapshot distribution from CVS

Hi Bob,
To get abstracts working properly in FO as well, another fix is needed. This
code (in fo/titlepage.xsl): 

<xsl:template match="abstract" mode="titlepage.mode">
  <fo:block>
    <xsl:if test="title"> <!-- FIXME: add param for using default title? -->
      <xsl:call-template name="formal.object.heading"/>
    </xsl:if>
    <xsl:apply-templates mode="titlepage.mode"/>
  </fo:block>
</xsl:template>

should be changed to:

<xsl:template match="abstract" mode="titlepage.mode">
  <fo:block>
   <xsl:call-template name="formal.object.heading">
      <xsl:with-param name="title">
        <xsl:apply-templates select="." mode="title.markup"/>
      </xsl:with-param>
    </xsl:call-template>
  <xsl:apply-templates mode="titlepage.mode"/>
 </fo:block>
</xsl:template>

(i.e. the same logic as in html/titlepage.xsl). 

/MJ



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]