| <?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: 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"; |
| |
| # Paste your HTML content between the EOHTML markers! |
| $html = <<<EOHTML |
| |
| <div id="midcolumn" style="width:95%"> |
| |
| <h2>SVN Actions</h2> |
| <p>In this part of the guide the user can find the description of the main SVN® operations and of the methods to perform them. Please do not ignore it if you are new to version control systems. Also you can find here some useful tips and notes.</p> |
| <img border="0" src="../images/inside.png"/> |
| <br/> |
| <a href="SVNaction/share.php">Sharing a project</a> |
| <br/> |
| <a href="SVNaction/check_out.php">Checking out</a> |
| <br/> |
| <a href="SVNaction/commit.php">Committing</a> |
| <br/> |
| <a href="SVNaction/update.php">Updating</a> |
| <br/> |
| <a href="SVNaction/add_vc.php">Adding resources to version control</a> |
| <br/> |
| <a href="SVNaction/ignore_vc.php">Ignoring resources from version control</a> |
| <br/> |
| <a href="SVNaction/branch.php">Branching</a> |
| <br/> |
| <a href="SVNaction/merge.php">Merging</a> |
| <br/> |
| <a href="SVNaction/tag.php">Creating tags</a> |
| <br/> |
| <a href="SVNaction/switch.php">Switching project to a new URL</a> |
| <br/> |
| <a href="SVNaction/override.php">Overriding operations</a> |
| <br/> |
| <a href="SVNaction/locks.php">Locking and unlocking resources</a> |
| <br/> |
| <a href="SVNaction/set_props.php">Setting properties</a> |
| <br/> |
| <a href="SVNaction/set_keys.php">Setting keywords</a> |
| <br/> |
| <a href="SVNaction/patch.php">Patching</a> |
| <br/> |
| <a href="SVNaction/revert.php">Reverting changes</a> |
| <br/> |
| <br/> |
| </div> |
| |
| EOHTML; |
| |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |