| <?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"> |
| |
| <br/> |
| <h1>Preferences</h1> |
| <p> |
| To configure preferences refer to |
| <i>'Window>Preferences'</i> |
| menu item. |
| </p> |
| <p>The default preferences customization is made according to the community advises. But of course each user can change it in the appropriate way to optimize his working cycle - actually this is the main goal of providing the user such rage of customized preferences. The global description of all of the preferences and recommendations on setting them is given inside this part of a guide. It's recommended to pay attantion to this part because the optimized settings can seriuosly increase the users performance during his everyday work.</p> |
| <img cellpadding="0" cellspacing="0" border="0" src="images/inside.png"/> |
| <br/> |
| <a href="preferences/pref_svn.php">SVN</a> |
| <br/> |
| <a href="preferences/pref_annotate.php">Annotate</a> |
| <br/> |
| <a href="preferences/pref_autoprops.php">Automatic Properties</a> |
| <br/> |
| <a href="preferences/pref_comments.php">Comment Templates</a> |
| <br/> |
| <a href="preferences/pref_console.php">Console</a> |
| <br/> |
| <a href="preferences/pref_label_decors.php">Label Decorations</a> |
| <br/> |
| <a href="preferences/pref_pass.php">Password Management</a> |
| <br/> |
| <a href="preferences/pref_performance.php">Performance</a> |
| <br/> |
| <br/> |
| </div> |
| |
| EOHTML; |
| |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |