blob: 0adb5dec0650bdb9b0ce19c44544dbf7738f63ef [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">
<h3>Checking out</h3>
<p>To check out a resource means creating a local copy of remote resource. To begin checking out click on a <i>'Check Out'</i> or <i>'Find/Check Out As'</i> menu items. On a <i>'Check Out'</i> click the selected resource is checked out to the default workspace. On a <i>'Find/Check Out As'</i> click a check out wizard starts. To perform checking out just follow wizard instructions.</p>
<table cellpadding="1" cellspacing="0" border="0">
<tr>
<td valign="top" align="left">
<p align="left">
<i>
<b>Tip:</b>
</i>
</p>
</td>
<td valign="top">
<p>
<i>
The Subversive plug-in has a unique probability to help you find your projects on a repository location to check them out. To let the plug-in do this just select "Find projects in the children of the selected resource" on the first page of 'Find/Check Out As Wizard' and then select the projects you want to check out. It's much easier than looking for them with browsing the repository.
</i>
</p>
</td>
</tr>
</table>
<img border="0" src="../../images/rel_tops.png" alt="Related topics"/>
<br/>
<a href="../../teamSupport/find_check_wiz.php">SVN Find/Check Out As Wizard</a>
<br/>
<br/>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>