| <?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()); |
| |
| #***************************************************************************** |
| # |
| # Copyright (c) 2008 IBM Corporation and others. |
| # All rights reserved. This program and the accompanying materials |
| # are made available under the terms of the Eclipse Public License v1.0 |
| # which accompanies this distribution, and is available at |
| # http://www.eclipse.org/legal/epl-v10.html |
| # Contributors: |
| # IBM Corporation - initial implementation |
| # |
| # Author: API Tools Team |
| # Date: August 27, 2008 |
| # |
| # Description: a new and noteworty entry for API Tools |
| # |
| # |
| #**************************************************************************** |
| |
| |
| $pageTitle = ""; |
| $pageKeywords = "api, platform, pde, tooling, tools, tags, test, testing, new, noteworthy, plan, plans"; |
| $pageAuthor = "API Tools Team"; |
| |
| #adjust the level of file nesting, our default is for a milestone entry inside a milestone for a given version |
| |
| include("_sideCommon.php"); |
| |
| $html = <<<EOHTML |
| |
| <div id="maincontent"> |
| <div id="midcolumn"> |
| <h1>$pageTitle</h1> |
| <table border="0" width="80%" cellpadding="10" cellspacing="0"> |
| |
| # paste table entries in here |
| |
| </table> |
| </div> |
| <div id="rightcolumn"> |
| $commonside |
| </div> |
| </div> |
| |
| |
| EOHTML; |
| |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |