summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2010-12-16 14:52:04 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2010-12-16 22:35:38 -0800
commitf05de020479281ad9abcf42655aacbd5a32f9b13 (patch)
treea41c49d1853ce2dc30114407793890e1a3627325
parent25eb7e73fd7bb0c9a47f946867c67eed74fea68f (diff)
Add fop font settings to xorg.xsl to support a wider range of glyphs
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r--xorg.xsl17
1 files changed, 17 insertions, 0 deletions
diff --git a/xorg.xsl b/xorg.xsl
index d3b0612..3f7ca37 100644
--- a/xorg.xsl
+++ b/xorg.xsl
@@ -58,4 +58,21 @@ DEALINGS IN THE SOFTWARE.
<xsl:attribute name="color">blue</xsl:attribute>
</xsl:attribute-set>
+ <!--
+ Since a number of documents, especially the credits section in the
+ ReleaseNotes, use characters not found in the fop default base-14
+ PostScript fonts, set the fonts for the fop generated documents to
+ use the free DejaVu and GNU Unifont fonts which cover a much wider
+ range of characters.
+
+ DejaVu is available from http://dejavu-fonts.org/
+ GNU Unifont is available from http://unifoundry.com/unifont.html
+
+ To set fop font paths to find them after installing, see
+ http://xmlgraphics.apache.org/fop/1.0/fonts.html#basics
+ -->
+ <xsl:param name="body.font.family">DejaVu Serif</xsl:param>
+ <xsl:param name="symbol.font.family">serif,Symbol,GNU Unifont</xsl:param>
+
+
</xsl:stylesheet>