diff options
author | fotis <fotis@unknown> | 2000-11-11 23:27:14 +0000 |
---|---|---|
committer | fotis <fotis@unknown> | 2000-11-11 23:27:14 +0000 |
commit | 6a985265915968eb32f94721edd2e335ec725955 (patch) | |
tree | 26fb00a4be86fd2f367bed4cf6678f4950c22c82 /docs/xml-docs/xml2pdf.xsl | |
parent | afcf5b2828f6461abfc04fa3a4cf358dc3bfe240 (diff) | |
download | xmlgraphics-fop-6a985265915968eb32f94721edd2e335ec725955.tar.gz xmlgraphics-fop-6a985265915968eb32f94721edd2e335ec725955.zip |
reflect renaming of simple-link > basic-link
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193786 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/xml-docs/xml2pdf.xsl')
-rw-r--r-- | docs/xml-docs/xml2pdf.xsl | 34 |
1 files changed, 8 insertions, 26 deletions
diff --git a/docs/xml-docs/xml2pdf.xsl b/docs/xml-docs/xml2pdf.xsl index 1135ccfb2..052dd9746 100644 --- a/docs/xml-docs/xml2pdf.xsl +++ b/docs/xml-docs/xml2pdf.xsl @@ -24,7 +24,7 @@ TBD: - The faq doesn't show in the content <!-- defines page layout --> <fo:layout-master-set> - <fo:simple-page-master master-name="first" + <fo:simple-page-master master-name="simple" page-height="29.7cm" page-width="21cm" margin-top="1.5cm" @@ -35,27 +35,9 @@ TBD: - The faq doesn't show in the content <fo:region-before extent="1.5cm"/> <fo:region-after extent="1.5cm"/> </fo:simple-page-master> - - <fo:simple-page-master master-name="rest" - page-height="29.7cm" - page-width="21cm" - margin-top="1.5cm" - margin-bottom="2cm" - margin-left="2.5cm" - margin-right="2.5cm"> - <fo:region-body margin-top="2.5cm"/> - <fo:region-before extent="1.5cm"/> - <fo:region-after extent="1.5cm"/> - </fo:simple-page-master> - - <fo:page-sequence-master master-name="all"> - <fo:single-page-master-reference master-name="first"/> - <fo:repeatable-page-master-reference master-name="rest"/> - </fo:page-sequence-master> - </fo:layout-master-set> - <fo:page-sequence master-name="all"> + <fo:page-sequence master-name="simple"> <fo:static-content flow-name="xsl-region-before"> <fo:block text-align="end" font-size="10pt" @@ -96,7 +78,7 @@ TBD: - The faq doesn't show in the content <fo:table-body font-size="12pt" line-height="16pt" font-family="sans-serif"> - <xsl:for-each select="//s1"> <!-- An dieser Stelle muesste noch ein "oder finde faqs" stehen --> + <xsl:for-each select="//s1"> <fo:table-row> <fo:table-cell> <fo:block text-align="end" > @@ -105,12 +87,12 @@ TBD: - The faq doesn't show in the content </fo:table-cell> <fo:table-cell> <fo:block text-align="start" > - <fo:simple-link color="blue"> + <fo:basic-link color="blue"> <xsl:attribute name="internal-destination"> <xsl:value-of select="translate(.,' ),-.(','____')"/> </xsl:attribute> <xsl:value-of select="@title"/> - </fo:simple-link> + </fo:basic-link> </fo:block> </fo:table-cell> </fo:table-row> @@ -166,7 +148,7 @@ TBD: - The faq doesn't show in the content line-height="18pt" space-before.optimum="10pt" space-after.optimum="9pt" - text-align="center" + text-align="start" padding-top="3pt"> <xsl:value-of select="@title"/> </fo:block> @@ -243,9 +225,9 @@ TBD: - The faq doesn't show in the content <!-- jump (links) --> <xsl:template match ="*/jump"> - <fo:simple-link color="blue" external-destination="{@href}"> + <fo:basic-link color="blue" external-destination="{@href}"> <xsl:apply-templates/> - </fo:simple-link> + </fo:basic-link> </xsl:template> |