| <?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>Performance</h2> |
| <p> |
| These preferences can be changed on |
| <i>'Team>SVN>Performance'</i> |
| properties page. The performance options allows you to set balance between performance and memory consumption according your requirements.</p> |
| <table cellpadding="1" cellspacing="0" border="0"> |
| <tr> |
| <td valign="top" align="left"> |
| <p align="left"> |
| <i> |
| <b>Tip:</b> |
| </i> |
| </p> |
| </td> |
| <td valign="top"> |
| <p> |
| <i> |
| You may switch off some minor features in order to improve performance of team menu and decoration for large projects. At the same time you may switch off SVN status cache in order to save lots of memory for very large projects, but please note that disabling of the SVN cache definitely decreases performance. In case when deep decoration and precise team menu enablement options are enabled SVN statuses cache is always active. |
| </i> |
| </p> |
| </td> |
| </tr> |
| </table> |
| <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">Compute deep outgoing state</td> |
| <td align ="center" valign="center">Specifies if the computing of deep outgoing state is enabled.</td> |
| <td align ="center" valign="center">Enabled</td> |
| </tr> |
| <tr> |
| <td align ="center" valign="center">Enable SVN statuses cache</td> |
| <td align ="center" valign="center">Specifies if the SVN statuses cache is enabled. Always enabled if computing of deep outgoing state is enabled.</td> |
| <td align ="center" valign="center">Enabled</td> |
| </tr> |
| </table><br/> |
| This is how <i>'Performance'</i> properties page looks like: |
| <br/><br/><img border="0" src="../images/pref_perf.png" alt="Performance properties page"/> |
| <br/> |
| <br/> |
| </div> |
| |
| EOHTML; |
| |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |