MPPDF-43 : sub-/superscripts do not work.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@232674 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
aheritier 2005-08-14 23:42:04 +00:00
parent 015d5bad6b
commit fe21c058ae
2 changed files with 3 additions and 4 deletions

View File

@ -511,7 +511,7 @@
<xsl:template match="sub"> <xsl:template match="sub">
<xsl:param name="chapterNumber"/> <xsl:param name="chapterNumber"/>
<xsl:param name="fileName"/> <xsl:param name="fileName"/>
<fo:inline baseline-shift="sub"> <fo:inline vertical-align="sub" font-size="66%">
<xsl:apply-templates> <xsl:apply-templates>
<xsl:with-param name="chapterNumber"> <xsl:with-param name="chapterNumber">
<xsl:value-of select="$chapterNumber"/> <xsl:value-of select="$chapterNumber"/>
@ -525,7 +525,7 @@
<xsl:template match="sup"> <xsl:template match="sup">
<xsl:param name="chapterNumber"/> <xsl:param name="chapterNumber"/>
<xsl:param name="fileName"/> <xsl:param name="fileName"/>
<fo:inline baseline-shift="super"> <fo:inline vertical-align="super" font-size="66%">
<xsl:apply-templates> <xsl:apply-templates>
<xsl:with-param name="chapterNumber"> <xsl:with-param name="chapterNumber">
<xsl:value-of select="$chapterNumber"/> <xsl:value-of select="$chapterNumber"/>
@ -553,7 +553,6 @@
<xsl:template match="code[@class='indent']"> <xsl:template match="code[@class='indent']">
<xsl:param name="chapterNumber"/> <xsl:param name="chapterNumber"/>
<xsl:param name="fileName"/> <xsl:param name="fileName"/>
<!--
<fo:block xsl:use-attribute-sets="code.indent"> <fo:block xsl:use-attribute-sets="code.indent">
<xsl:apply-templates> <xsl:apply-templates>
<xsl:with-param name="chapterNumber"> <xsl:with-param name="chapterNumber">
@ -564,7 +563,6 @@
</xsl:with-param> </xsl:with-param>
</xsl:apply-templates> </xsl:apply-templates>
</fo:block> </fo:block>
-->
</xsl:template> </xsl:template>
<xsl:template match="var"> <xsl:template match="var">
<xsl:param name="chapterNumber"/> <xsl:param name="chapterNumber"/>

View File

@ -24,6 +24,7 @@
</properties> </properties>
<body> <body>
<release version="2.3.1-SNAPSHOT" date="In SVN"> <release version="2.3.1-SNAPSHOT" date="In SVN">
<action dev="aheritier" type="fix" issue="MPPDF-43" due-to="Lukas Theussl">sub-/superscripts do not work.</action>
<action dev="aheritier" type="fix" issue="MPPDF-42" due-to="Lukas Theussl">Error when logo locations are not set.</action> <action dev="aheritier" type="fix" issue="MPPDF-42" due-to="Lukas Theussl">Error when logo locations are not set.</action>
<action dev="aheritier" type="fix" issue="MPPDF-41" due-to="Lukas Theussl">Suppress verbose output by default.</action> <action dev="aheritier" type="fix" issue="MPPDF-41" due-to="Lukas Theussl">Suppress verbose output by default.</action>
<action dev="aheritier" type="fix" issue="MPPDF-39" due-to="Lukas Theussl">Missing patch for MPPDF-24 ( it defines a missing attribute for &lt;code style="indent"&gt; tags and cleans up some layout issues with definition lists).</action> <action dev="aheritier" type="fix" issue="MPPDF-39" due-to="Lukas Theussl">Missing patch for MPPDF-24 ( it defines a missing attribute for &lt;code style="indent"&gt; tags and cleans up some layout issues with definition lists).</action>