*** empty log message ***

svn path=/trunk/; revision=12197
Este commit está contenido en:
harmuth 2009-02-24 17:51:11 +00:00
padre b431bad183
commit 2bcdd170c6
Se han modificado 4 ficheros con 157 adiciones y 0 borrados

Ver fichero

@ -0,0 +1,58 @@
<?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>
<table cellpadding="10">
<tr>
<td><img src="donors/freiheit.png" alt="freiheit.com"/></td>
<td>freiheit.com technologies</td>
</tr>
<tr>
<td><img src="donors/google.jpg" alt="google.com"/></td>
<td>Google</td>
</tr>
<tr>
<td><img src="donors/linuxhotel.png" alt="Linuxhotel"/></td>
<td>Linuxhotel Villa Vogelsang</td>
</tr>
<tr>
<td><img src="donors/nlnet.png" alt="NLnet"/></td>
<td>Stichting NLnet</td>
</tr>
</table>
</patrons>
<sustainingcontributors>
<li>LF.NET GmbH</li>
<li>Intevation GmbH</li>
</sustainingcontributors>
<contributors>
<li>Christian Barth</li>
<li>inmedias.it GmbH</li>
<li>Joachim Zobel</li>
<li>Valentin Hilbig</li>
</contributors>
<supporters>
<li>Bernhard Stosik</li>
<li>Communitare GmbH</li>
<li>Fabian Schury</li>
<li>hippie-online.de</li>
<li>Holger Doepner</li>
<li>Hostsharing eG</li>
<li>Ingmar Redel</li>
<li>Jan Brinkmann</li>
<li>Joachim Krantz</li>
<li>Michael Mosmann</li>
<li>OwnIT</li>
<li>Roland Hafner</li>
<li>Thiemo Nagel</li>
<li>Torsten Loehr</li>
<li>Ulrich Walter</li>
<li>Uwe Henschel</li>
<li>Werner Wiethege</li>
</supporters>
</donorset>

46
donate/thankgnus-2009.en.xhtml Archivo normal
Ver fichero

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="utf-8" ?>
<html>
<head>
<title>FSFE - Thank GNUs 2008</title>
</head>
<body>
<localmenu id="2008" style="number">2008</localmenu>
<h2>List of 2008 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="/contribute/contribute.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="hardware.html">Hardware Donation website</a>. There,
you can also find Information on how to support us with hardware.</p>
</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>$Date$ $Author$</timestamp>
</html>
<!--
Local Variables: ***
mode: xml ***
End: ***
-->

Ver fichero

@ -0,0 +1 @@
donate/donors/donors-2009:global

52
donate/thankgnus-2009.xsl Archivo normal
Ver fichero

@ -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>