Added thanksgnus 07
svn path=/trunk/; revision=7671
This commit is contained in:
67
help/thankgnus-2007.en.xhtml
Normal file
67
help/thankgnus-2007.en.xhtml
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1" ?>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>FSFE - Thank GNUs 2007</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div> <!-- The header will be inserted here -->
|
||||||
|
<!-- Begin page content -->
|
||||||
|
<center>
|
||||||
|
[
|
||||||
|
<a href="thankgnus-2001.html">2001</a> |
|
||||||
|
<a href="thankgnus-2002.html">2002</a> |
|
||||||
|
<a href="thankgnus-2003.html">2003</a> |
|
||||||
|
<a href="thankgnus-2004.html">2004</a> |
|
||||||
|
<a href="thankgnus-2005.html">2005</a> |
|
||||||
|
<a href="thankgnus-2006.html">2006</a> |
|
||||||
|
2007
|
||||||
|
]
|
||||||
|
</center>
|
||||||
|
|
||||||
|
<h2>List of 2007 Supporters</h2>
|
||||||
|
|
||||||
|
<p>The Free Software Foundation Europe would like to thank all
|
||||||
|
the volunteers, contributors and other people who have helped us
|
||||||
|
work on and for Free Software. Information on how you can
|
||||||
|
support us in our work for Free Software can be found <a
|
||||||
|
href="help.html">here</a>. Information for potential donors is
|
||||||
|
also <a href="donate.html">available</a>.</p>
|
||||||
|
|
||||||
|
<p>The Free Software Foundation Europe would namely like to
|
||||||
|
thank the following donors. Your support made it possible for us
|
||||||
|
to continue working for Free Software.</p>
|
||||||
|
|
||||||
|
<p>We would also like to thank all donors that wished to remain
|
||||||
|
anonymous. If you also want to donate, you can find all necessary
|
||||||
|
information <a href="donate.html">here</a>. If you are
|
||||||
|
looking for the sponsoring buttons, they can be found <a
|
||||||
|
href="/about/graphics/sponsoring/sponsoring.html">here</a>.</p>
|
||||||
|
|
||||||
|
<p>Hardware donations are listed on our <a
|
||||||
|
href="/help/hardware.html">Hardware Donation website</a>. There,
|
||||||
|
you can also find Information on how to support us with hardware.</p>
|
||||||
|
|
||||||
|
<!-- End page content -->
|
||||||
|
|
||||||
|
</div> <!-- The footer will be inserted here -->
|
||||||
|
|
||||||
|
</body>
|
||||||
|
<text id="patrons">Patrons of the FSFE</text>
|
||||||
|
<text id="sustaining">Sustaining Contributors of the FSFE</text>
|
||||||
|
<text id="contributors">Contributors of the FSFE</text>
|
||||||
|
<text id="supporters">Supporters of the FSFE</text>
|
||||||
|
|
||||||
|
<timestamp>
|
||||||
|
Last update:
|
||||||
|
<!-- timestamp start -->
|
||||||
|
$Date$ $Author$
|
||||||
|
<!-- timestamp end -->
|
||||||
|
</timestamp>
|
||||||
|
</html>
|
||||||
|
<!--
|
||||||
|
Local Variables: ***
|
||||||
|
mode: xml ***
|
||||||
|
End: ***
|
||||||
|
-->
|
1
help/thankgnus-2007.sources
Normal file
1
help/thankgnus-2007.sources
Normal file
@@ -0,0 +1 @@
|
|||||||
|
help/thankgnus/donors-2007:global
|
52
help/thankgnus-2007.xsl
Normal file
52
help/thankgnus-2007.xsl
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
|
||||||
|
<xsl:stylesheet version="1.0"
|
||||||
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||||
|
|
||||||
|
<xsl:output method="xml"
|
||||||
|
encoding="ISO-8859-1"
|
||||||
|
indent="yes"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<xsl:template match="/">
|
||||||
|
<xsl:copy>
|
||||||
|
<xsl:apply-templates select="@*|node()" />
|
||||||
|
</xsl:copy>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="/html/text" />
|
||||||
|
|
||||||
|
<xsl:template match="/html/body">
|
||||||
|
<body>
|
||||||
|
<xsl:apply-templates />
|
||||||
|
<h3><xsl:value-of select="/html/text[@id='patrons']" /></h3>
|
||||||
|
<xsl:apply-templates select="/html/set/patrons/node()" />
|
||||||
|
|
||||||
|
<h3><xsl:value-of select="/html/text[@id='sustaining']" /></h3>
|
||||||
|
<ul>
|
||||||
|
<xsl:apply-templates select="/html/set/sustainingcontributors/node()" />
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h3><xsl:value-of select="/html/text[@id='contributors']" /></h3>
|
||||||
|
<ul>
|
||||||
|
<xsl:apply-templates select="/html/set/contributors/node()" />
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h3><xsl:value-of select="/html/text[@id='supporters']" /></h3>
|
||||||
|
<ul>
|
||||||
|
<xsl:apply-templates select="/html/set/supporters/node()" />
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="@*|node()" priority="-1">
|
||||||
|
<xsl:copy>
|
||||||
|
<xsl:apply-templates select="@*|node()"/>
|
||||||
|
</xsl:copy>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="set" />
|
||||||
|
<xsl:template match="text" />
|
||||||
|
</xsl:stylesheet>
|
||||||
|
|
21
help/thankgnus/donors-2007.en.xml
Normal file
21
help/thankgnus/donors-2007.en.xml
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
<!-- Please keep each list alphabetically ordered. Emacs users want -->
|
||||||
|
<!-- to set sort-fold-case to true and run sort-lines on a region -->
|
||||||
|
|
||||||
|
<donorset>
|
||||||
|
<patrons>
|
||||||
|
|
||||||
|
</patrons>
|
||||||
|
|
||||||
|
<sustainingcontributors>
|
||||||
|
|
||||||
|
</sustainingcontributors>
|
||||||
|
|
||||||
|
<contributors>
|
||||||
|
|
||||||
|
</contributors>
|
||||||
|
|
||||||
|
<supporters>
|
||||||
|
|
||||||
|
</supporters>
|
||||||
|
</donorset>
|
Reference in New Issue
Block a user