blob: f1fba4110db6bb0b548a649c05470d161a5732f9 [file] [log] [blame]
<?php
set_include_path($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common" . PATH_SEPARATOR . $_SERVER['DOCUMENT_ROOT'] . "/projects" . PATH_SEPARATOR . get_include_path());
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());
$localVersion = false;
# Define these here, or in _projectCommon.php for site-wide values
$pageTitle = "Previous Releases - Eclipse Subversive";
$pageKeywords = "subversive, download, svn, subversion";
$pageAuthor = "Igor Vinnykov";
$sidebar = file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/subversive/sidebars/download.php");
$notes = file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/subversive/include/installation-notes.php");
// # Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn">
<h1>Previous Releases</h1>
<p>
Here you can find a list of Subversive builds for previous Eclipse Simultaneous Releases.
</p>
$notes
<h2>Indigo (Eclipse 3.7) Release</h2>
<p>
This is the Subversive plug-in release that is a part of the Eclipse Indigo Simultaneous Release. The Subversive plug-in is included into Indigo Update Site, so you can install Subversive directly from Eclipse Indigo.
</p>
<p>
<b>Release Date:</b> 19 August 2011<br/>
<b>Version:</b> 0.7.9.I20110819-1900
</p>
<p>
<b>Update Site:</b><br/>
The Subversive plug-in is an integral part of the Eclipse Indigo update site. To install Subversive, select the Indigo update site in Eclipse Update Manager, then select the Subversive features under the Collaboration section of the update site (check the <a href="/subversive/installation-instructions.php">installation instructions</a>).
</p>
<p>
<b>Archived Update Site:</b><br/>
<a href="http://www.eclipse.org/downloads/download.php?file=/technology/subversive/0.7/builds/indigo/Subversive-incubation-0.7.9.I20110819-1700.zip">Subversive-incubation-0.7.9.I20110819-1700.zip</a>
</p>
<h2>Helios (Eclipse 3.6) Release</h2>
<p>
This is the Subversive plug-in release that is a part of the Eclipse Helios Simultaneous Release. The Subversive plug-in is included into Helios Update Site, so you can install Subversive directly from Eclipse Helios.
</p>
<p>
<b>Release Date:</b> 23 June 2010<br/>
<b>Version:</b> 0.7.9.I20100512-1900
</p>
<p>
<b>Update Site:</b><br/>
The Subversive plug-in is an integral part of the Eclipse Helios update site. To install Subversive, select the Helios update site in Eclipse Update Manager, then select the Subversive features under the Collaboration section of the update site (check the <a href="/subversive/installation-instructions.php">installation instructions</a>).
</p>
<p>
<b>Archived Update Site:</b><br/>
<a href="http://www.eclipse.org/downloads/download.php?file=/technology/subversive/0.7/builds/Subversive-incubation-0.7.9.I20100512-1900.zip">Subversive-incubation-0.7.9.I20100512-1900.zip</a>
</p>
</div>
<div id="rightcolumn">
$sidebar
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>