blob: f42aca2fecf632de6dab8ba089885376e10b470f [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: 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";
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>Properties Configuration</h2>
<p>
These preferences can be changed on
<i>'Team>SVN>Properties Configuration'</i>
properties page.</p>
<b>Automatic properties</b>
<p>On this tab group user can Import, Export, Add, Remove and Edit automatic properties for specified files. To do described actions use appropriate buttons.</p>
<table cellpadding="1" cellspacing="0" border="0">
<tr>
<td valign="top" align="right">
<p align="right">
<i>
<b>Tip:</b>
</i>
</p>
</td>
<td valign="top">
<p align="justify">
<i>
This feature is very useful, because the user actually doesn't want to set a copyright property, for example, to all files one by one, so he can easily do this by adding such automatic property. So he clicks on <i>'Add...'</i> button and in a dialog inputs '*.*' as a filter and 'copyright="(c) 2007, Great Solutions"' and this property will be added automatically to all files to be added them to source control.
</i>
</p>
</td>
</tr>
</table>
This is how <i>'Automatic properties'</i> tab group looks like:
<br/><br/><img border="0" src="../images/pref_autoprops.png" alt="Automatic Properties tab group"/>
<br/><br/>
<b>Custom properties</b>
<p>On this tab group the user can Add, Remove and Edit custom properties to be shown in a combo of an <i>'Add property'</i> dialog. There is a probability for the user to enter property name, its description and
a regular expression to be used for validating property before setting it.</p>
This is how <i>'Custom properties'</i> tab group looks like:
<br/><br/><img border="0" src="../images/pref_customprops.png" alt="Custom Properties tab group"/>
<br/>
<img border="0" src="../images/rel_tops.png" alt="Related topics"/>
<br/>
<a href="../teamSupport/props_view.php">SVN Properties View</a>
<br/>
<a href="../teamSupport/SVNaction/set_props.php">Setting properties</a>
<br/>
<br/>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>