2004-12-11 07:30:37 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<!-- simple XSL transformation to create a text version from authors.xml -->
|
|
|
|
|
|
|
|
<xsl:stylesheet version="1.0"
|
2005-08-20 09:16:41 +08:00
|
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
2004-12-11 07:30:37 +08:00
|
|
|
|
|
|
|
<xsl:output method="text" />
|
|
|
|
|
2005-08-20 09:52:26 +08:00
|
|
|
<xsl:template match="/dc:gimp-authors">
|
2004-12-11 07:30:37 +08:00
|
|
|
<xsl:text>This file is generated from authors.xml, do not edit it directly.
|
|
|
|
</xsl:text>
|
|
|
|
<xsl:apply-templates />
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
</xsl:stylesheet>
|