blob: 6ff287cf5fe0cf2989f6ee020b2c2a6726c9fcb0 [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: 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>Console</h2>
<p>
These preferences can be changed on
<i>'Team>SVN>Console'</i>
properties page.
</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>
It is recommended to limit the console buffer size to improve performance. Also it might not be useful to get all SVN&reg; messages, so the user can customize the console to get only warnings and errors.
</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">Show SVN output in the 'Console View'</td>
<td align ="center" valign="center">Specifies either show or not Subversion&reg; output in the 'Console View'</td>
<td align ="center" valign="center">Enadled</td>
</tr>
<tr>
<td align ="center" valign="center">Show Console Automatically</td>
<td align ="center" valign="center">If 'Never' chosen 'Console View' is never shown automatically. On other cases user can specify when to show it: 'On output', 'On error', 'On warning or error'.</td>
<td align ="center" valign="center">Never</td>
</tr>
<tr>
<td align ="center" valign="center">Fixed width console</td>
<td align ="center" valign="center">Specifies if the console has fixed width.</td>
<td align ="center" valign="center">Disabled</td>
</tr>
<tr>
<td align ="center" valign="center">Line width</td>
<td align ="center" valign="center">Specifies line width for console in characters if the fixed width property is set to 'Enabled'</td>
<td align ="center" valign="center">80</td>
</tr>
<tr>
<td align ="center" valign="center">Limit console output</td>
<td align ="center" valign="center">Specifies either console output should be limited or not.</td>
<td align ="center" valign="center">Enabled</td>
</tr>
<tr>
<td align ="center" valign="center">Console buffer size</td>
<td align ="center" valign="center">Specifies buffer size for console in characters if the limited console output property is set to 'Enabled'</td>
<td align ="center" valign="center">500000</td>
</tr>
<tr>
<td align ="center" valign="center">Command line</td>
<td align ="center" valign="center">Specifies a command line color in SVN console.</td>
<td align ="center" valign="center">
<img border="0" src="../images/black_color.png" alt="grey"/>
</td>
</tr>
<tr>
<td align ="center" valign="center">Message</td>
<td align ="center" valign="center">Specifies a message color in SVN console.</td>
<td align ="center" valign="center">
<img border="0" src="../images/blue_color.png" alt="grey"/>
</td>
</tr>
<tr>
<td align ="center" valign="center">Warning</td>
<td align ="center" valign="center">Specifies a warning message color in SVN console.</td>
<td align ="center" valign="center">
<img border="0" src="../images/redbrown_color.png" alt="grey"/>
</td>
</tr>
<tr>
<td align ="center" valign="center">Error</td>
<td align ="center" valign="center">Specifies an error message color in SVN console.</td>
<td align ="center" valign="center">
<img border="0" src="../images/red_color.png" alt="grey"/>
</td>
</tr>
</table><br/>
This is how <i>'Console'</i> properties page looks like:
<br/><br/><img border="0" src="../images/pref_console.png" alt="Console properties page"/>
<br/>
<img border="0" src="../images/rel_tops.png" alt="Related topics"/>
<br/>
<a href="../teamSupport/console.php">SVN Console</a>
<br/>
<br/>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>