blob: 7b130b1a41917b86549d1beb46bb47697928efa6 [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: 2007-11-23
#
# 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">
<h2>SVN Connectors Discovery</h2>
<p>
Subversive Connector Discovery allows user to easily install SVN Connectors. The main
problem which Subversive previously had is the overcomplicated procedure of installing:
<ul>
<li>users need to install Subversive from 2 different update sites: first for SVN Team Provider and second for SVN Connectors</li>
<li>there are many combinations how users can install Subversive and Connectors and some of these combinations are not compatible</li>
</ul>
Thanks to Connector Discovery, the procedure of installing was significantly simplified: now users just need to install
only Subversive SVN Team Provider (without installing SVN connectors from another update site) and then
on eclipse startup on first calling to any Subversive functionality if there are no connectors installed, Connector discovery
feature is automatically called.
</p>
<p>This is how <i>'SVN Connectors Discovery'</i> looks like:</p>
<img border = "0" src="../images/connectors_discovery.png" alt="SVN Connectors Discovery"/>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>