diff options
author | Jeremias Maerki <jeremias@apache.org> | 2006-08-09 20:20:35 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2006-08-09 20:20:35 +0000 |
commit | cdb05d529497f42995a0aaeb0834353c5f4986e2 (patch) | |
tree | 9338a48a3ff4f7dab2d54c938d5ff6927815c3f4 /test/xsl | |
parent | c83b0f893ee4e383be8b5c26e5ddf6492519a9fd (diff) | |
download | xmlgraphics-fop-cdb05d529497f42995a0aaeb0834353c5f4986e2.tar.gz xmlgraphics-fop-cdb05d529497f42995a0aaeb0834353c5f4986e2.zip |
Helper XSLT which can split an FO file into multiple FO files at page-sequence boundaries.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@430134 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/xsl')
-rw-r--r-- | test/xsl/fo-page-sequence-splitter.xsl | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/test/xsl/fo-page-sequence-splitter.xsl b/test/xsl/fo-page-sequence-splitter.xsl new file mode 100644 index 000000000..d493ad2af --- /dev/null +++ b/test/xsl/fo-page-sequence-splitter.xsl @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<!-- $Id$ --> +<!-- Description: Splits an FO file into multiple FO files at page-sequence boundaries. --> +<!-- Note: Requires Xalan-J! --> +<xsl:stylesheet version="1.0" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:fo="http://www.w3.org/1999/XSL/Format" + xmlns:redirect="http://xml.apache.org/xalan/redirect" + extension-element-prefixes="redirect"> + + <xsl:template match="fo:page-sequence"> + <redirect:write select="concat('page-sequence-', position(), '.fo')"> + <fo:root> + <xsl:apply-templates select="../fo:layout-master-set"/> + <xsl:apply-templates select="../fo:declarations"/> + <xsl:copy> + <xsl:apply-templates select="@*|node()"/> + </xsl:copy> + </fo:root> + </redirect:write> + </xsl:template> + + <xsl:template match="@*|node()"> + <xsl:copy> + <xsl:apply-templates select="@*|node()"/> + </xsl:copy> + </xsl:template> + +</xsl:stylesheet> |