blob: f012ae98d85ad11fcecad10a5299778c98e90618 [file] [log] [blame]
<?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-05-17
#
# 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>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">Calculate precise Team Menu enablements</td>
<td align ="center" valign="center">Specifies if the enamblements of Team Menu actions should be calculated before showing it. When disabled the Team Menu is shown immediately, but the enablement is not calculated. If enabled, the Team Menu for large projects can appear in some period of time.</td>
<td align ="center" valign="center">Disabled</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>
<tr>
<td align="center" valign="center">Enable persistent SSH connections</td>
<td align="center" valign="center">Specifies if SVN+SSH protocol should use persistent connections (if it is possible) or not. Using persistent SVN+SSH connections improves overall performance when working with SVN+SSH protocol. Disabling this option could reduce amount of workload on the server caused by permanently running instances of svnserve executable module.</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);
?>