blob: 81cfa218447f13b386a96249af62cca09c3d341b [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());
# All on the same line to unclutter the user's desktop'
#*****************************************************************************
#
# template.php
#
# Author: Igor Vinnykov
# Date: 2008-07-01
#
# Description: Autogenerated for eclipse.org site pages from Eclipse IDE help
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Eclipse Subversive - Documentation";
$pageKeywords = "Subversive, Subversion, SVN, Team Provider, documentation, user guid";
$pageAuthor = "Igor Vinnykov";
include("_projectCommon.php"); # All on the same line to unclutter the user's desktop'
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn">
<h3>Subversive installation instructions</h3>
<p>Subversive can be simply installed from within Eclipse using update manager. All what the user should do is just point update manager to the remote or local update site. To install Subversive:</p>
<ol>
<li>
Start Eclipse and select menu item <i>'Help > Software Updates...'</i>
<br/><br/><img border="0" src="../../images/find_and_install.png" alt="Software Updates"/><br/><br/>
</li>
<li>
Select the <i>'Available Software'</i> tab group and click the <i>'Add Site...'</i> button.
<br/><br/><img border="0" src="../../images/add_site.png" alt="Update manager"/><br/><br/>
</li>
<li>
On the <i>'Add Site'</i> dialog enter the URL to SVN Connectors update site. The proper URL can be found on <a href="http://www.eclipse.org/subversive/downloads.php">http://www.eclipse.org/subversive/downloads.php</a>.
Also the update-site for Subversive integration plug-ins can be added in the same way.
<ul>
<li>
<u><i>Please note that the use of the software you are about to access may be subject to third party terms and conditions and you are responsible for abiding by such terms and conditions.</i></u>
</li>
</ul>
<br/>Click on the <i>'OK'</i> button to store update site information.
<br/><br/><img border="0" src="../../images/new_update_site.png" alt="New update site"/><br/><br/>
</li>
<li>
The Subversive update site provides following features list.
<ul>
Required feature, which should be installed unconditionally:
<li>
<b>SVN Team Provider</b> - The Eclipse Team Provider for the Subversion version control system.
</li>
<br/><br/>Optional integrations with other plug-ins, which can be installed if you use these plugins and want to have them integrated with Subversive:
<li>
<b>Subversive Integration for the Mylyn Project</b> - Integration with Mylyn (<a href="http://www.eclipse.org/mylyn/">http://www.eclipse.org/mylyn/</a>).
</li>
<br/><br/>Other optional features:
<li>
<b>JDT Ignore Extensions</b> - The feature is useful for Java development because it allows to interpret output folders as ignored resources automatically.
</li>
<li>
<b>SVN Team Provider Sources</b> - The sources of the Eclipse Team Provider for Subversion.
</li>
</ul>
<br/>Select SVN Team Provider, Subversive SVN Connectors and other features if required and click the <i>'Install'</i> button.
<br/><br/><img border="0" src="../../images/install_search_res.png" alt="Feature Search Result"/><br/><br/>
</li>
<li>
The update manager calculates dependencies and offers you a list of features to install. Select the needed ones and click the <i>'Next >'</i> button.
<br/><br/><img border="0" src="../../images/install.png" alt="Features to Install"/><br/><br/>
</li>
<li>
Accept terms of license agreement and click the <i>'Finish'</i> button in order to start the download of selected features.
<br/><br/><img border="0" src="../../images/install_license.png" alt="Feature License"/><br/><br/>
</li>
<li>
To apply installation changes and restart Eclipse click on the <i>'Yes'</i> button.
<br/><br/><img border="0" src="../../images/restart_dialog.png" alt="Restart dialog"/><br/><br/>
</li>
<li>
After Eclipse restart you are able to start using Subversive.
</li>
<li> You can find Subversive perspective and views in correspondent dialogs, activated by menu items <i>'Window > Open Perspective > Other...'</i> and <i>'Window > Show View > Other...'</i>.
<br/><br/>
<table border="0" cellpadding="5" cellspacing="0">
<tr>
<td valign="center">
<img border="0" src="../../images/open_perspective.png" alt="Open Perspective"/>
</td>
<td valign="center">
<img border="0" src="../../images/show_view.png" alt="Show View"/>
</td>
</tr>
</table>
</li>
</ol>
<br/>
<br/>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>