You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

xml2xml.xsl 1.1KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  3. <xsl:template match ="/">
  4. <documentation>
  5. <xsl:copy-of select="document('fop/readme.xml')"/>
  6. <xsl:copy-of select="document('fop/download.xml')"/>
  7. <xsl:copy-of select="document('fop/running.xml')"/>
  8. <xsl:copy-of select="document('fop/implemented.xml')"/>
  9. <xsl:copy-of select="document('fop/limitations.xml')"/>
  10. <xsl:copy-of select="document('fop/bugs.xml')"/>
  11. <xsl:copy-of select="document('fop/examples.xml')"/>
  12. <xsl:copy-of select="document('fop/configuration.xml')"/>
  13. <xsl:copy-of select="document('fop/fonts.xml')"/>
  14. <xsl:copy-of select="document('fop/extensions.xml')"/>
  15. <xsl:copy-of select="document('fop/compiling.xml')"/>
  16. <xsl:copy-of select="document('fop/embedding.xml')"/>
  17. <xsl:copy-of select="document('fop/involved.xml')"/>
  18. <xsl:copy-of select="document('fop/architecture.xml')"/>
  19. <xsl:copy-of select="document('fop/faq.xml')"/>
  20. <xsl:copy-of select="document('fop/resources.xml')"/>
  21. <xsl:copy-of select="document('fop/license.xml')"/>
  22. </documentation>
  23. </xsl:template>
  24. </xsl:stylesheet>