blob: 4589bcf83ef8a381be155f4dc60c034becda1c7a [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">
<br/>
<h1>Getting Started</h1>
<p>In this part the user can find some basic concepts on Subversion&reg, general information on Subversive plug-in, integration instructions and the answer for the common questions on the product.</p>
<p>Also the Subversive architechture, modules and extention points information is included for more experienced users. We hope this information might be quite useful.</p>
<p>If you are new to SVN or version control systems please first of all refer to the <a href="gettingStarted/subversion/svn_intro.php">'Subversion&reg (SVN)'</a>. You'll find there the introducton to Subversion&reg, information about subversion folders and some useful links, which can help you to get closer to SVN&reg.</p>
<p>First of all the user would like to install the Team plug-in. Before installation the user should familiarize himself with <a href="gettingStarted/aboutSubversive/requirements.php">requierments</a>. To get detailed insallation instructions refer to the <a href="gettingStarted/aboutSubversive/install.php">'Subversive installation instructions'</a> topic of this guide part.</p>
<p>To get detailed management instructions refer to the <a href="gettingStarted/aboutSubversive/management.php">'Subversive management instructions'</a> topic of this guide part. We did our best to make the product really flexible, so feel free to manage provided features.</p>
<p>If it's planed that the work with Subversive plug-in will go on not Windows&reg platform it's strongly recommended to pay attantion to <a href="gettingStarted/aboutSubversive/no_win.php">'If you are not a Windows user'</a> topic of this guide part. It will help the users avoid a lot of problems.</p>
<p>Subversive plug-in can be easily integrated with FastTrack, Buckminster and Mylyn. To get detailed instructions on Mylyn integration refer to <a href="gettingStarted/aboutSubversive/mylyn.php">Mylyn (former Mylar) integration</a> topic of this guide part.</p>
<h2>Where shall I go further?</h2>
<p>In the <a href="prefs.php"><b>'Preferences'</b></a> part the user can find an information on Subversive plug-in options and configuring them.</p>
<p>To find the information on an everyday work with the Subversive the user should refer <a href="teamSupport.php"><b>'Team support with SVN&reg'</b></a> part. There he would find an information on GUI, SVN&reg actions, example of a typical working cycle with SVN&reg and a lot of useful recommendations.</p>
<p>We do hope you'll find the structure of this guide comfortable.</p>
<p>To get answers on a frequently asked questions refer to <a href="faq.php">'FAQ'</a> topic in the root of this guide.</p>
<br/>
<br/>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>