blob: 0dd70c90ef12af61ff1014755fdecc1c689f6e05 [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'
$pageTitle = "Linux Tools Project Downloads";
$pageKeywords = "linux, eclipse, downloads";
$pageAuthor = "Andrew Overholt";
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn">
<h1>$pageTitle</h1>
<h3> Sorry, we do not have any downloads yet. We will have an update site and zip downloads very soon.</h3>
All of our work is available in our subversion repository. It can be viewed via a web browser here:
<a href="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.linuxtools/?root=Technology">
http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.linuxtools/?root=Technology</a>.
</div>
<div id="rightcolumn">
<div class="sideitem">
<h6>Incubation</h6>
<div style="text-align: center">
<a href="/projects/what-is-incubation.php"><img src="/images/egg-incubation.png" alt="Incubation"/></a>
</div>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>