blob: 7020be20273338239dffad25d0532b51a3a689a7 [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 = "Latest 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>Latest Releases</h1>
<p>
This page includes information about the latest stable release of Subversive and the Early Access Build that includes the latest features.
</p>
<p>
<b>Note:</b> if you're upgrading from 0.7.x versions to the 1.0.0 version by installing the later one, please be sure to remove previously installed Subversive plug-in version first, since otherwise during the installation process you'll be blocked by an old connectors version which is incompatible with the 1.0.0 release and couldn't be installed simultaneously with the main plug-in due to the installation UI restrictions.
</p>
$notes
<h2>Juno (Eclipse 3.8/4.2) Release</h2>
<p>
This is the latest stable Subversive plug-in release, that is a part of Eclipse Juno Simultaneous Release. Subversive plug-in is included into Juno Update Site, so you can install Subversive directly from Eclipse Juno.
</p>
<p>
<b>Release Date:</b> 01 June 2012<br/>
<b>Version:</b> 1.0.0.I20120601-1700 (<a href="/subversive/changelogs/releasenotes.txt">Release notes</a>)
</p>
<p>
<b>Update Site:</b><br/>
Subversive plug-in is an integral part of the Eclipse Juno update site. To install Subversive select the Juno update site in Eclipse Update Manager and then select the Subversive features under the Collaboration section of the update site (check <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/1.0/builds/juno/Subversive-1.0.0.I20120601-1700.zip">Subversive-1.0.0.I20120601-1700.zip</a>
</p>
<h2>Early Access Build</h2>
<p>
This is the most up-to-date Subversive plug-in version. It's aimed to provide you with access to the latest Subversive features, before they will be available in the Subversive build, included into yearly Eclipse Simultaneous Release.
</p>
<p>
<b>Release Date:</b> 01 June 2012<br/>
<b>Version:</b> 1.0.0.I20120601-1700 (<a href="/subversive/changelogs/changelog.txt">Change log</a>)
</p>
<p>
<b>Update Site:</b><br/>
<a href="http://download.eclipse.org/technology/subversive/1.0/update-site/">http://download.eclipse.org/technology/subversive/1.0/update-site/</a>
</p>
<p>
<b>Archived Update Site:</b><br/>
<a href="http://www.eclipse.org/downloads/download.php?file=/technology/subversive/1.0/builds/juno/Subversive-1.0.0.I20120601-1700.zip">Subversive-1.0.0.I20120601-1700.zip</a>
</p>
<h2>Requirements</h2>
<p>
The latest version of Subversive is compatible with JDK 1.5, Eclipse 3.6 and later versions. It supports SVN 1.1-1.7 versions. Subversive SVN Connectors are available for different platforms. For Windows x86 you can install JavaHL or SVNKit connector. For other platforms you have to install SVNKit connector (check <a href="/subversive/installation-instructions.php">installation instructions</a>).
</p>
</div>
<div id="rightcolumn">
$sidebar
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>