| <?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"; |
| |
| // # 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> |
| <h2>Subversive Distribution and Installation Notes</h2> |
| <p> |
| The Subversive installation consists of two parts: Subversive plug-in and Subversive SVN Connectors. Both parts are required to be installed in order to use Subversive. Subversive plug-in is developed as an official Eclipse project and is available for installation on this page under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). Subversive SVN Connectors are external libraries (used by Subversive to communicate with SVN) with their own licenses. Subversive SVN Connectors are developed as an open-source project on <a href="http://www.polarion.com/products/svn/subversive/download.php?utm_source=eclipse.org&utm_medium=link&utm_campaign=subversive">polarion.com</a> and are distributed separately. |
| </p> |
| <p> |
| In order to install Subversive, you should install Subversive plug-in and at least one of Subversive SVN Connectors. Subversive plug-in and Subversive SVN Connectors are distributed from different update sites, located on different servers. At the first step you need to install Subversive plug-in, using information on this page. After Subversive plug-in installation you will be prompted to select Subversive SVN Connectors, that will be installed automatically from another server. For more information please refer <a href="/subversive/installation-instructions.php">Installation Instructions</a>. |
| </p> |
| <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"> |
| |
| <div class="sideitem"> |
| <h6>Other Downloads</h6> |
| <ul> |
| <li><a href="/subversive/previous-releases.php">Previous Releases</a></li> |
| <li><a href="/subversive/special-builds.php">Special Builds</a></li> |
| </ul> |
| </div> |
| <div class="sideitem"> |
| <h6>Need Help?</h6> |
| <ul> |
| <li><a href="/subversive/installation-instructions.php">Installation Instructions</a></li> |
| <li><a href="/subversive/support.php">Get Support</a></li> |
| </ul> |
| </div> |
| <div class="sideitem"> |
| <h6>Legal Note</h6> |
| <p> |
| Subversive SVN Connectors are EPL-incompatible. They are distributed from the external location due to licensing requirements. |
| </p> |
| </div> |
| |
| </div> |
| |
| EOHTML; |
| |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |