| <?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 = "Installation Instructions - Eclipse Subversive"; |
| $pageKeywords = "subversive, installation, svn, subversion"; |
| $pageAuthor = "Igor Vinnykov"; |
| |
| // # Paste your HTML content between the EOHTML markers! |
| $html = <<<EOHTML |
| |
| <div id="midcolumn"> |
| <h1>Installation Instructions</h1> |
| <p> |
| Here you can find instructions about Subversive installation using different types of Subversive distributions. |
| </p> |
| <h2>Introduction</h2> |
| <p> |
| Subversive installation consists of Subversive plug-in and Subversive SVN Connectors. Subversive plug-in is developed as an Eclipse official project with EPL license and is distributed from Eclipse website. Subversive SVN Connectors are SVN libraries used by Subversive to communicate with SVN repositories. These libraries are developed as open-source projects, but they have EPL-incompatible licenses, so they have to be distributed from an external website. |
| </p> |
| <p> |
| In order use Subversive, you have to install Subversive plug-in and at least one Subversive SVN Connector that is compatible with your OS and used SVN version. Subversive plug-in includes references to available Subversive SVN Connectors, so after Subversive plug-in installation you are automatically prompted to install one or multiple connectors. |
| </p> |
| <h2>Phase 1 - Subversive Plug-In Installation</h2> |
| <p> |
| Below you can find instructions how to install Subversive plug-in using different types of Subversive distributions. |
| </p> |
| <h4>Use Eclipse Simultaneous Release Update Site</h4> |
| <p> |
| Subversive is an integral part of yearly Eclipse Simultaneous Release. You can install Subversive plug-in using Eclipse update site of a simultaneous release. |
| </p> |
| <ul> |
| <li>Run Eclipse and select <b>Help</b> > <b>Install New Software...</b> from the main menu.</li> |
| <li>On the appeared dialog select pre-configured simultaneous release update site in the <b>Work with</b> combo-box. For example, for the Helios release select the "Helios - http://download.eclipse.org/releases/helios" update site.</li> |
| <li>Content of the selected update site is displayed under the combo-box. Expand the <b>Collaboration</b> group and select Subversive features that you like to install. Some features are required, other are optional and offer additional functionality. You can skip optional features, if you like.</li> |
| </ul> |
| <h2>Phase 2 - Subversive SVN Connectors Installation</h2> |
| </div> |
| |
| <div id="rightcolumn"> |
| $sidebar |
| </div> |
| |
| EOHTML; |
| |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |