blob: f0b8c2ca5aaab27e89e2678c3f0797c51382f582 [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">
<h3>Updating</h3>
<p>Updating means changing the state of the local file copying the remote changes to the local copy if possible. To update the local file click on the <i>'Team>Update'</i> menu item, <i>'Update the resource from version control'</i> button on the <i>'SVN toolbar'</i>, <i>'Update...'</i> menu item in the SVN main menu group or clicking the <i>'Update'</i> button in the <i>'Synchronization View'</i> toolbar. There also may be some conflicts while updating and the user should merge them manually.</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>
If the user has updated all the files of specific directory without updating the directory itself its revision won't change. So as revision number is the SVN&reg property there might be some conflicts during setting of properties, so it's recommended to update the whole directory. Also there might br conflicts while deleting/adding files with the same names both in the working copy and repository one.<br/><br/>If there were some conflics during the update operation cycle SVN&reg updates what it can and notify the user about the conflict. Then three file are created: 'name'.mine (copy of the user's local file before update), 'name'.BASEREV (copy of the base revision file) and 'name'.rNEWREV (copy of the repository revision file). So the edit conflicts action must be run to resolve conflicts.
</i>
</p>
</td>
</tr>
</table>
<img border="0" src="../../images/rel_tops.png" alt="Related topics"/>
<br/>
<a href="../../teamSupport/svn_main_menu.php">'SVN' main menu group</a>
<br/>
<a href="../../teamSupport/svn_toolbar.php">SVN Toolbar</a>
<br/>
<a href="../../teamSupport/workspace_synch.php">SVN Workspace Synchronization</a>
<br/>
<a href="../../teamSupport/compareEditor/compare_ac.php">Another user changes</a>
<br/>
<a href="../../teamSupport/SVNaction/override.php">Overriding operations</a>
<br/>
<br/>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>