| <?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® 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">Commiting</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); |
| ?> |