| <?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"> |
| |
| <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® Properties View for a selected resource.</p> |
| <p><b>Set properties...</b> - allows the user to set SVN® 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); |
| ?> |