| <?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 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/> |
| <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">New SVN Repository Location Wizard</a> |
| <br/> |
| <br/> |
| </div> |
| |
| EOHTML; |
| |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |