|  | <?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"> | 
|  |  | 
|  | <h2>About Subversive and Subversive User Guide</h2> | 
|  | <p> | 
|  | Subversive is a totally new Eclipse plug-in, that provides you a probability to use supported SVN® clients easily directly | 
|  | from your workbench. Friendly user interface of Subversive makes it much more comfortable to operate repositories. All | 
|  | SVN® 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</a> | 
|  | <br/> | 
|  | <a href="aboutSubversive/update_polarion.php">Migrating from Polarion.org versions</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/linux.php">Note for Linux users</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 integration</a> | 
|  | <br/> | 
|  | <br/> | 
|  | </div> | 
|  |  | 
|  | EOHTML; | 
|  |  | 
|  |  | 
|  | # Generate the web page | 
|  | $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); | 
|  | ?> |