mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
- adding a sample of pdf renditioning - adding all necessary jars for fop - specifying xerces version in jar file name - fixing error in simple-test.ftl git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4237 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
36 lines
1.2 KiB
XML
36 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<xsl:stylesheet version="1.1"
|
|
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
exclude-result-prefixes="fo">
|
|
|
|
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"
|
|
omit-xml-declaration="no"/>
|
|
<xsl:param name="versionParam" select="'1.0'"/>
|
|
|
|
<xsl:template match="/simple/string">
|
|
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
|
|
<fo:layout-master-set>
|
|
<fo:simple-page-master master-name="simpleA4"
|
|
page-height="21cm"
|
|
page-width="21cm"
|
|
margin-top="2cm"
|
|
margin-bottom="2cm"
|
|
margin-left="2cm"
|
|
margin-right="2cm">
|
|
<fo:region-body/>
|
|
</fo:simple-page-master>
|
|
</fo:layout-master-set>
|
|
<fo:page-sequence master-reference="simpleA4">
|
|
<fo:flow flow-name="xsl-region-body">
|
|
<fo:block font-size="11pt" line-height="25px">Generated by simple-test.fo</fo:block>
|
|
<fo:block font-size="11pt" line-height="25px">
|
|
<fo:inline color="#003366" font-weight="bold">Captured string value: </fo:inline>
|
|
<fo:inline><xsl:value-of select="."/></fo:inline>
|
|
</fo:block>
|
|
</fo:flow>
|
|
</fo:page-sequence>
|
|
</fo:root>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|