blob: b1ccf0d8b89bce36b0f6a331cf68f6733ab04749 [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'
#*****************************************************************************
#
# sample_list.php
#
# Author: Denis Roy
# Date: 2005-11-07
#
# Description: Type your page comments here - these are not sent to the browser
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Archived Releases";
$pageKeywords = "Team, archived, releases";
$pageAuthor = "";
# 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">
<h1>$pageTitle</h1>
<p>Back to the <a href="dev.php">Team Development Page</a></p>
<p>Note: The following links are for old development documents. As such, some of the
links contained in the documents might be out of date.</p>
<div class="homeitem3col">
<h3>3.1 Release</h3>
<a name="31"></a>
<ul>
<li><a href="team3.1/plan.html">3.1 development plan</a></li>
</ul>
</div>
<div class="homeitem3col">
<h3>3.0 Release</h3>
<a name="30"></a>
<ul>
<li><a href="team3.0/milestone-plan.html">3.0 development plan</a></li>
<li><a href="team3.0/Team Synchronization.ppt">Team Synchronization slides</a></li>
<li><a href="team3.0/Concurrency Experience Report.ppt">Concurrent Experience Report Slides</a></li>
</ul>
</div>
</div>
<!-- remove the entire <div> tag to omit the right column! -->
<div id="rightcolumn">
<div class="sideitem">
<h6>Quick Links</h6>
<ul>
<li><a href="#31">3.1 Release</a></li>
<li><a href="#30">3.0 Release</a></li>
</ul>
</div>
</div>
<div id="rightcolumn">
<div class="sideitem">
<h6>Team Related Links</h6>
<ul><li><a href="http://wiki.eclipse.org/index.php/Team_FAQ">Team FAQ Wiki</a></li>
</ul>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>