| <?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: 2008-03-04 |
| # |
| # 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>Actions</h2> |
| <p>In this part of the guide the user can find the description of the main plug-in 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/> |
| <a href="SVNaction/extract.php">Extracting changes</a> |
| <br/> |
| <a href="SVNaction/location_ie.php">Import/Export repository locations</a> |
| <br/> |
| <br/> |
| </div> |
| |
| EOHTML; |
| |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |