| <?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 Find/Check Out As Wizard</h2> |
| <p> |
| |
| <i>'SVN Find/Check Out As Wizard'</i> appears when the user clicks on <i>'Find/Check Out As...'</i> menu item in the pop-up menu of the remote resource in the <i>'Repository View'</i> or while importing a project using <i>'Project from SVN'</i> method. If the repository isn't chosen the choosing repository dialog will appear: |
| </p> |
| <img border = "0" src="../images/checkout_repos.png" alt="Choose repository..."/> |
| <p>The first page of this wizard offers the user to choose a checkout method.</p> |
| <table cellpadding="5" cellspacing="0" border="1" width="100%"> |
| <tr> |
| <td class="header" align ="center" valign="center">Option</td> |
| <td class="header" align ="center" valign="center">Description</td> |
| <td class="header" align ="center" valign="center">Default</td> |
| </tr> |
| <tr> |
| <td align ="center" valign="center">Checkout recursively</td> |
| <td align ="center" valign="center">Specifies if the Subversion® should checkout the sub items and subtrees of selected resource.</td> |
| <td align ="center" valign="center">Enabled</td> |
| </tr> |
| </table> |
| <br/> |
| <img border = "0" src="../images/check_out1.png" alt="Choose Check Out method..."/> |
| <p> |
| <i>'Checkout as a folder into existent project'</i> was chosen: |
| </p> |
| <p>The second page allows the user to choose the project the folder must be checked out to.</p> |
| <img border = "0" src="../images/check_out_into_project.png" alt="Select a project to check out into..."/> |
| <p> |
| <i>'Checkout as a project with a name specified'</i> was chosen: |
| </p> |
| <p>The second page allows the user to choose the working set and workspace location.</p> |
| <img border = "0" src="../images/check_out_location.png" alt="Select workspace location..."/> |
| <br/> |
| <img border="0" src="../images/rel_tops.png" alt="Related topics"/> |
| <br/> |
| <a href="../teamSupport/repos_view.php">SVN Repository View</a> |
| <br/> |
| <a href="../teamSupport/SVNaction/check_out.php">Checking out</a> |
| <br/> |
| <a href="../teamSupport/new_location_wiz.php">SVN Repository Location Wizard</a> |
| <br/> |
| <br/> |
| </div> |
| |
| EOHTML; |
| |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |