~ubuntu-branches/ubuntu/maverick/gimp/maverick-updates

« back to all changes in this revision

Viewing changes to authors.xsl

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2005-12-09 19:44:52 UTC
  • Revision ID: james.westby@ubuntu.com-20051209194452-yggpemjlofpjqyf4
Tags: upstream-2.2.9
ImportĀ upstreamĀ versionĀ 2.2.9

Show diffs side-by-side

added added

removed removed

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