Redirect the Who page to PMI

Change-Id: Id85ce154ca14395beff3de6384fa4f8c8ea9e438
Signed-off-by: Kaloyan Raev <kaloyan.r@zend.com>
diff --git a/jsdt/who.php b/jsdt/who.php
index 91da32f..f19204b 100755
--- a/jsdt/who.php
+++ b/jsdt/who.php
@@ -1,125 +1,4 @@
-<?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'

-

-	#*****************************************************************************

-	#

-	# Copyright (c) 2010 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: 		JSDT Team

-	# Date:			August 30, 2010

-	#

-	# Description: This "who are we" page

-	#

-	#****************************************************************************

-	

-	

-	$pageTitle 		= "Who We Are";

-	$pageKeywords	= "javascript, JavaScript, JSDT, platform, debugging, debugger, jsdt, breakpoints, about, content, epl, compiler, compile, parse, parser";

-	$pageAuthor		= "JSDT Team";

-	

-	include("_sideCommon.php");

-	

-	$html = <<<EOHTML

-

-<div id="maincontent">

-	<div id="midcolumn">

-		<h1>$pageTitle</h1>

-		<p>Over the years there have been a few committers come and go, this page has the most recent list of committers, 

-		active and otherwise. Their respective status is displayed with their

-		information. It should be noted that those with an inactive status might not reply to questions about the project.</p>

-		

-		<p>For more information about committers and a listing of what they can commit to see <a href="http://www.eclipse.org/eclipse/commit.html" target="_blank">this page</a> provided

-		by eclipse.org listing all committers and their respective commit rights.</p>

-		<div class="homeitem3col">

-			<h2><b>Nitin Dahyabhai</b></h2>

-			<table width="100%" border="0" summary="About Nitin Dahyabhai">

-				<tbody>

-				<tr> 

-					<td width="30%" valign="top">No Picture</td>

-					<td width="70%">Nitin...</td>

-				</tr>

-				<tr> 

-					<td width="30%" valign="top"><b>Status</b></td>

-					<td width="70%">Active</td>

-				</tr>

-				<tr> 

-					<td width="30%" valign="top"><b>Email</b></td>

-					<td width="70%">nitind@us.ibm.com</td>

-				</tr>

-				</tbody>

-			</table>

-		</div>

-		<div class="homeitem3col">

-			<h2><b>Michael Rennie</b></h2>

-			<table width="100%" border="0" summary="About Michael Rennie">

-				<tbody>

-				<tr> 

-					<td width="30%" valign="top">No Picture</td>

-					<td width="70%">Michael Rennie is a Platform/JDT Debug, PDE, Ant, JSDT and Doc committer working with the IBM Rational team in

-					Winnipeg, Canada. Before that he was a graduate student at the University of Manitoba, researching SOA and 

-					architecture description languages. Graduated with an MSc. Computer Science in 2004.</td>

-				</tr>

-				<tr> 

-					<td width="30%" valign="top"><b>Status</b></td>

-					<td width="70%">Active</td>

-				</tr>

-				<tr> 

-					<td width="30%" valign="top"><b>Email</b></td>

-					<td width="70%">Michael_Rennie@ca.ibm.com</td>

-				</tr>

-				</tbody>

-			</table>

-		</div>

-		<div class="homeitem3col">

-			<h2><b>Christopher Jaun</b></h2>

-			<table width="100%" border="0" summary="About Christopher Jaun">

-				<tbody>

-				<tr> 

-					<td width="30%" valign="top">No Picture</td>

-					<td width="70%">Christopher....</td>

-				</tr>

-				<tr> 

-					<td width="30%" valign="top"><b>Status</b></td>

-					<td width="70%">Active</td>

-				</tr>

-				<tr> 

-					<td width="30%" valign="top"><b>Email</b></td>

-					<td width="70%">cmjaun@us.ibm.com</td>

-				</tr>

-				</tbody>

-			</table>

-		</div>

-		<div class="homeitem3col">

-			<h2><b>Simon Kaegi</b></h2>

-			<table width="100%" border="0" summary="About Simon Kaegi">

-				<tbody>

-				<tr> 

-					<td width="30%" valign="top">No Picture</td>

-					<td width="70%">Simon...</td>

-				</tr>

-				<tr> 

-					<td width="30%" valign="top"><b>Status</b></td>

-					<td width="70%">Active</td>

-				</tr>

-				<tr> 

-					<td width="30%" valign="top"><b>Email</b></td>

-					<td width="70%">Simon_Kaegi@ca.ibm.com</td>

-				</tr>

-				</tbody>

-			</table>

-		</div>

-	</div>

-	<div id="rightcolumn">

-		$commonside

-	</div>

-</div>

-

-EOHTML;

-

-	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);

-?>

+<?php
+// Permanent redirect
+header('Location: https://projects.eclipse.org/projects/webtools.jsdt/who', true, 301);
+die();