blob: 0b441ac4b43c08b613a3192def378aa3e033b147 [file]
<?php require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop'
#
# Begin: page-specific settings. Change these.
$pageTitle = "Thank You!";
$pageKeywords = "thanks, donations, foundation";
$pageAuthor = "Mike Milinkovich";
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn">
<h1>$pageTitle</h1>
<p>
The Eclipse Foundation would like to thank the following companies for their support:
</p>
<table width="100%" border="0" cellpadding="3" cellspacing=10>
<tr>
<td width="12%">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="/membership/scripts/get_image.php?id=827&size=small" width="120"></td>
<td width="88%">Google, for donating numerous servers towards our build and test infrastructure.<br>
</td>
</tr>
<tr>
<td width="12%">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="/membership/scripts/get_image.php?id=656&size=small" width="120"></td>
<td width="88%"><br>
IBM for the donation of two <a href="http://www-304.ibm.com/shop/americas/content/home/store_IBMPublicUSA/en_US/evp/3550M3.html" target="_blank">IBM x3550</a> servers. <br>
</td>
</tr>
<tr>
<td width="12%"><img src="/membership/scripts/get_image.php?id=657&size=small" width="120"></td>
<td width="88%"><br>
Intel for the donation of Intel-brand servers and Xeon server processors.</td>
</tr>
<tr>
<td width="12%">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="../images/suselogo.png" width="120"></td>
<td width="88%"><br>
SUSE for donating <a href="https://www.suse.com/products/server/">SUSE Linux Enterprise</a> distributions for all of our servers.<br>
</td>
</tr>
<tr>
<td width="12%"><br><img src="/membership/scripts/get_image.php?id=721&size=small" width="120"></td>
<td width="88%"><br>
Oracle for the donation of servers helping power our site.<br></td>
</tr>
</table>
</div>
EOHTML;
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>