blob: 85c27d98175bcededcb8f99a99f9b4f838ea7c93 [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>Overriding operations</h3>
<p>There are two types of overriding operations: 'override and commit' and 'override and update'. The overriding means replacing one resource with another (local with remote for updating and vice versa for committing). To start these actions click on <i>'Override and Commit'</i> or <i>'Override and Update'</i> of resource pop-up menu items in the <i>'Synchronize View'</i>.</p>
<table cellpadding="1" cellspacing="0" border="0">
<tr>
<td valign="top" align="left">
<p align="left">
<i>
<b>Note:</b>
</i>
</p>
</td>
<td valign="top">
<p>
<i>
The user should be very accurate while using this operations to avoid ignoring some valuable changes.
</i>
</p>
</td>
</tr>
</table>
<img border="0" src="../../images/rel_tops.png" alt="Related topics"/>
<br/>
<a href="../../teamSupport/workspace_synch.php">SVN Workspace Synchronization</a>
<br/>
<a href="../../teamSupport/SVNaction/commit.php">Committing</a>
<br/>
<a href="../../teamSupport/SVNaction/update.php">Updating</a>
<br/>
<br/>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>