MPPDF-39 : Missing patch for MPPDF-24( it defines a missing attribute for <code style="indent"> tags and cleans up some layout issues with definition lists.)

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@191087 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
aheritier 2005-06-17 05:06:03 +00:00
parent 11e704d1af
commit ccdfeb4f33
2 changed files with 10 additions and 3 deletions

View File

@ -41,6 +41,10 @@
<xsl:attribute-set name="body.pre" use-attribute-sets="base.pre.style">
<xsl:attribute name="font-size">10pt</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="code.indent" use-attribute-sets="body.pre">
<xsl:attribute name="start-indent">inherited-property-value(start-indent) + 1em</xsl:attribute>
<xsl:attribute name="end-indent">inherited-property-value(end-indent) + 1em</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="body.source" use-attribute-sets="base.pre.style">
<xsl:attribute name="font-size">8pt</xsl:attribute>
<xsl:attribute name="wrap-option">wrap</xsl:attribute>
@ -162,10 +166,11 @@
<xsl:attribute-set name="dt" use-attribute-sets="base.body.style">
<xsl:attribute name="start-indent">1em</xsl:attribute>
<xsl:attribute name="end-indent">1em</xsl:attribute>
<xsl:attribute name="font-weight">bold</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="dd" use-attribute-sets="base.body.style">
<xsl:attribute name="start-indent">1em</xsl:attribute>
<xsl:attribute name="end-indent">1em</xsl:attribute>
<xsl:attribute name="start-indent">inherited-property-value(start-indent) + 1em</xsl:attribute>
<xsl:attribute name="end-indent">inherited-property-value(end-indent) + 1em</xsl:attribute>
<xsl:attribute name="space-before">0.6em</xsl:attribute>
<xsl:attribute name="space-after">0.6em</xsl:attribute>
</xsl:attribute-set>

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
/*
* Copyright 2001-2004 The Apache Software Foundation.
@ -24,6 +23,9 @@
<author email="aheritier@apache.org">Arnaud Heritier</author>
</properties>
<body>
<release version="2.3.1-SNAPSHOT" date="In SVN">
<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>
</release>
<release version="2.3" date="2005-06-16">
<action dev="aheritier" type="update" issue="MPPDF-38">Use the ant task for the xsl transformation and remove xerces and xalan dependencies. People using java 5 will have to use this release with maven 1.1 or maven 1.0 with at the most the PDF plugin 2.2.X.</action>
<action dev="aheritier" type="update">Use the ant task for the fop transformation and remove xalan dependency.</action>