blob: 331547e1de07c6f887e12472736778a8ae0aabd3 [file] [log] [blame]
<?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: 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";
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn" style="width:95%">
<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);
?>