blob: b98272a0ada440f2b0fa0fca4fa7272c0a8eed2f [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>Another user changes</h3>
<p>Let's imagine that the user have a shared project "Some project" associated with his workspace copy. There are files "some_file.txt" and "another_file.cpp" containing in the main project folder. But after last synchronization the user understood that he feels very sleepy and needs to have a cup of coffee. But when he returns and runs synchronization again he notices that the "some_file.txt" is decorated with incoming change icon in his synchronization tree view. So he's interested, what has changed, while he was making his magic drink. After double click he gets the following picture:</p>
<img border = "0" src="../../images/remote_change.png" alt="Remote changes"/>
<p>After thinking for a while he comes to a conclusion that the changes made are surely convenient and decides to update his local copy of the file by clicking on the <i>'Update'</i> pop-up menu item of the "some_file.txt" file. Of course he can also decide that the made changes have no sense at all and click on the <i>'Override and Commit'</i> pop-up menu item of this file.<br/>In both cases the decision depends on a user, but the work is done anyway.</p>
<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/svn_label_decor.php">SVN Label Decorations</a>
<br/>
<a href="../../teamSupport/SVNaction/update.php">Updating</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);
?>