diff options
author | fotis <fotis@unknown> | 2000-08-01 22:30:35 +0000 |
---|---|---|
committer | fotis <fotis@unknown> | 2000-08-01 22:30:35 +0000 |
commit | b2d4aafa14d663496a9d0aa8598917c8193d169f (patch) | |
tree | 5fe80db1db1baf1a14be447a70737f93075a0b2b /docs/xml-docs/xml2xml.xsl | |
parent | 2f1800a3c385325d5e65daa65f186d9bafd26b65 (diff) | |
download | xmlgraphics-fop-b2d4aafa14d663496a9d0aa8598917c8193d169f.tar.gz xmlgraphics-fop-b2d4aafa14d663496a9d0aa8598917c8193d169f.zip |
replaced ant task with a xslt stylesheet (discovered that stylebook doesn't need the dtd)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193570 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/xml-docs/xml2xml.xsl')
-rw-r--r-- | docs/xml-docs/xml2xml.xsl | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/docs/xml-docs/xml2xml.xsl b/docs/xml-docs/xml2xml.xsl new file mode 100644 index 000000000..69333c99a --- /dev/null +++ b/docs/xml-docs/xml2xml.xsl @@ -0,0 +1,26 @@ +<?xml version="1.0"?> + +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> + +<xsl:template match ="/"> + <documentation> + <xsl:copy-of select="document('fop/readme.xml')"/> + <xsl:copy-of select="document('fop/download.xml')"/> + <xsl:copy-of select="document('fop/running.xml')"/> + <xsl:copy-of select="document('fop/implemented.xml')"/> + <xsl:copy-of select="document('fop/limitations.xml')"/> + <xsl:copy-of select="document('fop/bugs.xml')"/> + <xsl:copy-of select="document('fop/examples.xml')"/> + <xsl:copy-of select="document('fop/compiling.xml')"/> + <xsl:copy-of select="document('fop/embedding.xml')"/> + <xsl:copy-of select="document('fop/involved.xml')"/> + <xsl:copy-of select="document('fop/architecture.xml')"/> + <xsl:copy-of select="document('fop/faq.xml')"/> + <xsl:copy-of select="document('fop/specs.xml')"/> + <xsl:copy-of select="document('fop/license.xml')"/> + </documentation> +</xsl:template> + +</xsl:stylesheet> + + |