summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchim Gottinger <achim@gentoo.org>2001-04-11 18:15:04 +0000
committerAchim Gottinger <achim@gentoo.org>2001-04-11 18:15:04 +0000
commit82be6d00161493e657b1fa99416e24ca45060faa (patch)
treee96bec8f463fce75593cea08ec2811bb40a7cb0f /app-doc
parentNow xmltex is xmltex and not xmltext (diff)
downloadhistorical-82be6d00161493e657b1fa99416e24ca45060faa.tar.gz
historical-82be6d00161493e657b1fa99416e24ca45060faa.tar.bz2
historical-82be6d00161493e657b1fa99416e24ca45060faa.zip
First version of an guide->fo (->pdf) stylesheet
Diffstat (limited to 'app-doc')
-rwxr-xr-xapp-doc/gentoo-web/files/xsl/guide-fo.xsl38
1 files changed, 38 insertions, 0 deletions
diff --git a/app-doc/gentoo-web/files/xsl/guide-fo.xsl b/app-doc/gentoo-web/files/xsl/guide-fo.xsl
new file mode 100755
index 000000000000..36e008a7dc44
--- /dev/null
+++ b/app-doc/gentoo-web/files/xsl/guide-fo.xsl
@@ -0,0 +1,38 @@
+<?xml version='1.0'?>
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+<xsl:output method="xml"/>
+
+<xsl:template match="/guide">
+<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" font-family="Times Roman" font-size="12pt" text-align="justify">
+ <fo:layout-master-set>
+
+ <fo:simple-page-master master-name="simple1" page-width="8.5in" page-height="11in" margin-top="1in" margin-bottom="1in" margin-left="10pc" margin-right="1in">
+ <fo:region-body margin-bottom="24pt" margin-top="24pt"/>
+ <fo:region-before extent="0pt"/>
+ <fo:region-after extent="0pt"/>
+ </fo:simple-page-master>
+
+ <fo:page-sequence-master master-name="oneside1">
+ <fo:repeatable-page-master-alternatives>
+ <fo:conditional-page-master-reference master-name="simple1"/>
+ </fo:repeatable-page-master-alternatives>
+ </fo:page-sequence-master>
+
+ </fo:layout-master-set>
+
+ <fo:page-sequence hyphenate="true" master-name="oneside1" language="en">
+ <fo:flow flow-name="xsl-region-body">
+ <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"/>
+ <fo:block id="id2626599">
+ <fo:block background-color="black">
+ <fo:external-graphic src="file:gentoo-doc.eps" content-width="auto" content-height="auto" width="auto" height="auto"/>
+ </fo:block>
+ <fo:block background-color="green">
+ documentation :: <xsl:value-of select="title"/>
+ </fo:block>
+ </fo:block>
+ </fo:flow>
+ </fo:page-sequence>
+</fo:root>
+</xsl:template>
+</xsl:stylesheet> \ No newline at end of file