Author: spoole
Date: Thu Aug 20 12:08:31 2009
New Revision: 806136
URL: http://svn.apache.org/viewvc?rev=806136&view=rev
Log:
set font size for code examples and added code highlighting
Modified:
incubator/kato/trunk/org.apache.kato/kato.docs/src/docbkx/fo.xsl
Modified: incubator/kato/trunk/org.apache.kato/kato.docs/src/docbkx/fo.xsl
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.docs/src/docbkx/fo.xsl?rev=806136&r1=806135&r2=806136&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.docs/src/docbkx/fo.xsl (original)
+++ incubator/kato/trunk/org.apache.kato/kato.docs/src/docbkx/fo.xsl Thu Aug 20 12:08:31 2009
@@ -57,10 +57,18 @@
<xsl:attribute name="color">#000000</xsl:attribute>
<xsl:attribute name="background-color"> #E0E0E0</xsl:attribute>
<xsl:attribute name="font-size">8</xsl:attribute>
-
- </xsl:attribute-set>
+</xsl:attribute-set>
+
+<xsl:attribute-set name="monospace.properties">
+ <xsl:attribute name="font-size">8</xsl:attribute>
+</xsl:attribute-set>
+
+
<xsl:param name="page.margin.inner">1cm</xsl:param>
<xsl:param name="page.margin.outer">1cm</xsl:param>
+<xsl:param name="highlight.source" select="1"></xsl:param>
+<xsl:param name="highlight.default.language">java</xsl:param>
+
<xsl:attribute-set name="title.properties">
<xsl:attribute name="color">#000000</xsl:attribute>
|