blob: 49f20417d770c0e55d275587d4d094ac59f44976 [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">
<h2>SVN main menu group</h2>
<p><i>'SVN main menu group'</i> contains shortcut items to most recent used SVN facilities. To activate this group refer to <i>'Window>Customize perspective...'</i> menu item and on the <i>'Commands'</i> tab check the <i>'SVN'</i> group.
</p>
<img border = "0" src="../images/svn_menu.png" alt="SVN main menu group"/>
<p><b>Synchronize with repository</b> - starts the synchronization for selected resource.</p>
<p><b>Commit...</b> - activates the commit action for selected resource.</p>
<p><b>Update</b> - activates the update action for selected resource.</p>
<p><b>Create Patch...</b> - creates a patch from a selected resource in compare with the repository location copy.</p>
<p><b>Revert...</b> - reverts the file changes to the unmodified state.</p>
<p><b>Add to version control...</b> - adds a selected resource to version control.</p>
<p><b>Add to svn:ignore...</b> - adds a selected resource to svn:ignore.</p>
<p><b>Edit conflicts (for SVN Kit and Java HL)</b> - opens editor for three versions (remote, local, after performing operation) of the file, marked as conflicted, so the user can edit conflicts manually and mark the resource as merged.</p>
<p><b>Mark as merged...</b> - mark the file as if it is already merged.</p>
<p><b>Lock</b> - locks the selected resource, so other users can not overwrite it.</p>
<p><b>Unlock</b> - unlocks the selected resource.</p>
<p><b>Tag</b> - creates a tag.</p>
<p><b>Branch</b> - creates a branch.</p>
<p><b>Merge</b> - opens merge dialog.</p>
<p><b>Switch</b> - associate project with another repository location.</p><p><b>Switch</b> - associate project with another repository location.</p>
<p><b>Show properties</b> - shows SVN&reg Properties View for a selected resource.</p>
<p><b>Set properties...</b> - allows the user to set SVN&reg Properties for a selected resource.</p>
<p><b>Set keywords...</b> - allows the user to set keywords for a selected resource.</p>
<p><b>Show Resource History</b> - shows SVN History View for a selected resource.</p>
<p><b>Show Annotations</b> - shows SVN Annotations View for a selected resource.</p>
<p><b>Copy To...</b> - copies selected resource to another location.</p>
<p><b>Export...</b> - exports selected resource to the local folder.</p>
<p><b>Share Project...</b> - starts sharing wizard for a selected project.</p>
<br/>
<br/>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>