blob: aa9f3d7d69b3d38bfa7f1f04ff2ce635ed2e74f9 [file] [log] [blame]
<?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'
#*****************************************************************************
#
# template.php
#
# Author: Denis Roy
# Date: 2005-06-16
#
# Description: Type your page comments here - these are not sent to the browser
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Subversive - SVN Team Client";
$pageKeywords = "Subversive, Subversion, SVN, Team Provider";
$pageAuthor = "Igor Vinnykov";
# Add page-specific Nav bars here
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
# $Nav->addNavSeparator("My Page Links", "downloads.php");
# $Nav->addCustomNav("My Link", "mypage.php", "_self", 3);
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);
# End: page-specific settings
#
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn">
<h3>Special thanks</h3>
<p>Polarion Software really appreciates the help done by the community members, who provided us patches for Subversive.</p>
<table border="1" cellpadding="5" cellspacing="0" width="100%" bgcolor="EFEFEF">
<tr>
<td widht="33%" align="left" valign="center">Sergey Vasilchenko</td>
<td widht="33%" align="left" valign="center">Panagiotis Korros</td>
<td align="left" valign="center">Tobias Bosch</td>
</tr>
<tr>
<td widht="33%" align="left" valign="center">Alessandro Nistico</td>
<td widht="33%" align="left" valign="center">Ken Geis</td>
<td align="left" valign="center">Dann Martens</td>
</tr>
<tr>
<td widht="33%" align="left" valign="center">Takashi Okamoto</td>
<td widht="33%" align="left" valign="center">Pavel Zuev</td>
<td align="left" valign="center">Rene Link</td>
</tr>
<tr>
<td widht="33%" align="left" valign="center">Rob Clark</td>
<td colspan="2" widht="33%" align="left" valign="center">Zend Technologies Team</td>
</tr>
</table>
<p>Thank you very much, you've done some kind of a wonderful work. And, of cause, we'd like to say a lot of kind words to all the people, who sent there bug reports and tips for improvements. Thank you all.</p>
<br/>
<br/>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>