blob: 816b4a54e58518d07fc8755bab55d77d8eedce0a [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>Label Decorations</h2>
<p>
These preferences can be changed on
<i>'Team>SVN>Label Decorations'</i>
properties page. This page allows enabling font and color decorations, previewing decoration result and getting references for decoration configuring. To change templates of text decoration refer to <i>'Text decorations'</i> tab, and to turn on/off some of the icon decorations refer to <i>'Icons Decorations'</i> tab.
</p>
<table cellpadding="1" cellspacing="0" border="0">
<tr>
<td valign="top" align="left">
<p align="right">
<i>
<b>Tip:</b>
</i>
</p>
</td>
<td valign="top">
<p align="justify">
<i>
Please feel free to customize the font and icon decorations. Making your work comfortable is the most important way to improve your productivity.
</i>
</p>
</td>
</tr>
</table>
</br>
This is how <i>'Label Decorations'</i> properties page looks like:
<br/><br/><img border="0" src="../images/pref_label_decors.png" alt="Label Decorations properties page"/>
<br/>
<img border="0" src="../images/pref_label_decors2.png" alt="Label Decorations properties page"/>
<br/>
<img border="0" src="../images/pref_label_decors3.png" alt="Label Decorations properties page"/>
<br/>
<img border="0" src="../images/rel_tops.png" alt="Related topics"/>
<br/>
<a href="../teamSupport/svn_label_decor.php">SVN Label Decorations</a>
<br/>
<br/>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>