blob: 52b4acded808515d0d9c79804bab1b2b1fabfd69 [file] [log] [blame]
<?php
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";
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn" style="width:95%">
<h2>About Subversive and Subversive User Guide</h2>
<p>
Subversive is a totally new Eclipce plug-in, that provides you a probability to use supported SVN&reg clients easily directly
from your workbench. Friendly user interface of Subversive makes it much more comfortable to operate repositories. All
SVN&reg operations are supported and there are no difficulties while working with command line from now on.</p>
<p>We're very pleased to announce the publication of the Subversive project proposal on eclipse.org at
<a href="http://www.eclipse.org/proposals/subversive">http://www.eclipse.org/proposals/subversive</a>.</p>
<p>This is the first step toward making Subversive part of the Eclipse standard distribution. The next step, according to
the Eclipse Development Process, is public discussion and collaboration which aims to enhance,refine, and clarify the proposal.
And that's where YOU come in.</p>
<p>In this guide you can find almost everything that you expect to find while facing some problems during Subversive usage.</p>
<img border="0" src="../images/inside.png"/>
<br/>
<a href="aboutSubversive/features.php">Subversive unique features</a>
<br/>
<a href="aboutSubversive/requirements.php">Requirements</a>
<br/>
<a href="aboutSubversive/install.php">Subversive installation instructions</a>
<br/>
<a href="aboutSubversive/update_eclipse.php">Subversive update instructions (Eclipse.org version installed)</a>
<br/>
<a href="aboutSubversive/update_polarion.php">Subversive update instructions (Polarion.org version installed)</a>
<br/>
<a href="aboutSubversive/management.php">Subversive management instructions</a>
<br/>
<a href="aboutSubversive/modules.php">Subversive modules</a>
<br/>
<a href="aboutSubversive/arch.php">Subversive architecture</a>
<br/>
<a href="aboutSubversive/extensions.php">Subversive extension points</a>
<br/>
<a href="aboutSubversive/protocols.php">Subversive supported protocols</a>
<br/>
<a href="aboutSubversive/fast_track.php">FastTrack integration</a>
<br/>
<a href="aboutSubversive/buckminster.php">Buckminster integration</a>
<br/>
<a href="aboutSubversive/mylyn.php">Mylyn (former Mylar) integration</a>
<br/>
<br/>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>