| <?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:			August 7, 2007 | 
 | 	# | 
 | 	# Description: a new and noteworty entry for debug  | 
 | 	# | 
 | 	# | 
 | 	#**************************************************************************** | 
 | 	 | 
 | 	 | 
 | 	$pageTitle 		= "Debug Project New and Noteworthy for 3.4M2"; | 
 | 	$pageKeywords	= "debug, platform, debugging, debugger, breakpoints, launching, new, noteworthy"; | 
 | 	$pageAuthor		= "Debug 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); | 
 | ?> |