| <?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 = "Eclipse Tools Project"; |
| $pageKeywords = "Eclipse Tools Project"; |
| $pageAuthor = "Tools PMC"; |
| |
| # 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="maincontent"> |
| <div id="midcolumn" style="width: 80%"> |
| |
| <div class="homeitem" style="width: 97%"> |
| <h3>About the Eclipse Tools Project</h3> |
| <ul> |
| <p>The Eclipse Tools Project is an open source project of eclipse.org, overseen |
| by a <a href="team-leaders.php">Project Management Committee</a> (PMC) |
| and project leaders. The work is done in subprojects working against a |
| <a href="http://dev.eclipse.org/viewcvs/?cvsroot=Tools_Project">CVS repository</a>. |
| The <a href="eclipsetools-charter.php">Eclipse Tools Project Charter</a> |
| describes the organization of the project, roles and responsibilities |
| of the participants, and top level development process for the project. |
| </p> |
| |
| <p>Please see the <a href="http://www.eclipse.org/projects/listofprojects.php#tools">project master list</a> |
| for a list of all the exciting projects under the Tools PMC. Most of the best |
| and most useful projects at Eclipse are here.</p> |
| </ul> |
| </div> |
| |
| |
| <hr class="clearer" /> |
| |
| </div> |
| |
| </div> |
| |
| |
| EOHTML; |
| |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |