blob: 0473ab5b9bc862e7fc38436c912d2d3f82fc131f [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: Denis Roy
# Date: 2005-06-16
#
# Description: Type your page comments here - these are not sent to the browser
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Subversive - SVN Team Client";
$pageKeywords = "Subversive, Subversion, SVN, Team Provider";
$pageAuthor = "Igor Vinnykov";
# Add page-specific Nav bars here
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
# $Nav->addNavSeparator("My Page Links", "downloads.php");
# $Nav->addCustomNav("My Link", "mypage.php", "_self", 3);
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);
# End: page-specific settings
#
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn">
<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/project_details.php">Subversive project details</a>
<br/>
<a href="aboutSubversive/requirements.php">Requirements</a>
<br/>
<a href="aboutSubversive/install.php">Subversive installation instructions</a>
<br/>
<a href="aboutSubversive/update.php">Subversive update instructions</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/>
<a href="aboutSubversive/no_win.php">If you are not a Windows user</a>
<br/>
<br/>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>