authors.xsl 449 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- simple XSL transformation to create a text version from authors.xml -->
  3. <xsl:stylesheet version="1.0"
  4. xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  5. <xsl:output method="text" />
  6. <xsl:template match="/gimp-authors">
  7. <xsl:text>This file is generated from authors.xml, do not edit it directly.
  8. </xsl:text>
  9. <xsl:apply-templates />
  10. </xsl:template>
  11. </xsl:stylesheet>