|  | <?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) 2007 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: 		Debug Team | 
|  | # Date: | 
|  | # | 
|  | # Description: | 
|  | # | 
|  | # | 
|  | #**************************************************************************** | 
|  |  | 
|  |  | 
|  | $pageTitle 		= "Platform Debug Release Plan"; | 
|  | $pageKeywords	= "debug, platform, debugging, debugger, breakpoints, launching, release, plan"; | 
|  | $pageAuthor		= "Debug Team"; | 
|  |  | 
|  | include("../../_sideCommon.php"); | 
|  | include("../_pluginCommon.php"); | 
|  |  | 
|  | $html = <<<EOHTML | 
|  |  | 
|  | <div id="maincontent"> | 
|  | <div id="midcolumn"> | 
|  | <h1>$pageTitle</h1> | 
|  | <div class="homeitem3col"> | 
|  | <h2><b>Overall  Plan</b></h2> | 
|  |  | 
|  | <h4>Overall Themes for Platform Debug:</h4> | 
|  | <ul> | 
|  | <li>theme item item</li> | 
|  | </ul> | 
|  | <table> | 
|  | <tr> | 
|  | <td><img src="/eclipse/debug/images/defer.gif"> item is deferred</td> | 
|  | <td> <img src="/eclipse/debug/images/progress.gif"> item is under development </td> | 
|  | <td> <img src="/eclipse/debug/images/ok.gif" width="10" height="10"> item is finished </td> | 
|  | </tr> | 
|  | </table> | 
|  | <h4>Planned Items</h4> | 
|  | <blockquote> | 
|  | <b>Item Name</b> | 
|  | <ul> | 
|  | <li>work item</li> | 
|  | </ul> | 
|  | </blockquote> | 
|  |  | 
|  | <h4>Deferred Items </h4> | 
|  | <blockquote> | 
|  | <b>Item Name</b> | 
|  | <ul> | 
|  | <li>work item</li> | 
|  | </ul> | 
|  | </blockquote> | 
|  | </div> | 
|  | <div class="homeitem3col"> | 
|  | <h2><b>#.# Development Effort - Milestone # (date)</b></h2> | 
|  | <blockquote> | 
|  | <b>Item Name</b> | 
|  | <ul> | 
|  | <li>work item</li> | 
|  | </ul> | 
|  | </blockquote> | 
|  | </div> | 
|  | <div class="homeitem3col"> | 
|  | <h2><b>Bug Resolution</b></h2> | 
|  | <ul> | 
|  | <li>Bug Fixes Released to #.#</li> | 
|  | </ul> | 
|  | </div> | 
|  | </div> | 
|  | <div id="rightcolumn"> | 
|  | $commonside | 
|  | $commonplugin | 
|  | </div> | 
|  | </div> | 
|  |  | 
|  |  | 
|  | EOHTML; | 
|  |  | 
|  | $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); | 
|  | ?> |