Bug 318135 - Convert Helios pages to HTML

Change-Id: I2ce1519ef8f3d3d322874f700be30d7f4c2eb980
Signed-off-by: Eric Poirier <eric@eclipse.org>
diff --git a/_projectCommon.php b/_projectCommon.php
index da619bb..55da74b 100644
--- a/_projectCommon.php
+++ b/_projectCommon.php
@@ -1,20 +1,21 @@
 <?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
 
-	# Set the theme for your project's web pages.
-	# See the Committer Tools "How Do I" for list of themes
-	# https://dev.eclipse.org/committers/
-	# Optional: defaults to system theme 
-	$theme = "Nova";
-	$App->Promotion = TRUE;
-	//$App->ExtraHtmlHeaders = '<link rel="stylesheet" type="text/css" href="/equinox/equinox.css">';
-	# Define your project-wide Nav bars here.
-	# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
-	# these are optional
-	$Nav->setLinkList( array() );
-	$Nav->addNavSeparator("Helios", "/helios");
-	$Nav->addCustomNav("Download Now", "/downloads/index-helios.php", "_self", 1);
-	$Nav->addCustomNav("Helios Projects", "/helios/projects.php", "_self", 1);
-	$Nav->addCustomNav("Blogathon", "/helios/blogathon/reviews.php", "_self", 1);
-	$Nav->addCustomNav("Demos", "/helios/demos.php", "_self", 1);
-	$Nav->addCustomNav("Virtual Conference", "/helios/heliosinaction.php", "_self", 1);
-	$Nav->addCustomNav("Friends of Helios", "/helios/friends.php", "_self", 1);
+// Set the theme for your project's web pages.
+// See the Committer Tools "How Do I" for list of themes
+// https://dev.eclipse.org/committers/
+// Optional: defaults to system theme
+$theme = "Nova";
+$App->Promotion = TRUE;
+
+$App->setOutDated ( '2011-11-11', '<a href="https://projects.eclipse.org/releases/helios">Helios</a> is a past version of Eclipse. Please visit our <a href="/downloads/">download</a> page for the latest version of Eclipse. ' );
diff --git a/allfriends.php b/allfriends.php
index 1eed124..9546440 100644
--- a/allfriends.php
+++ b/allfriends.php
@@ -1,47 +1,34 @@
-<?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'
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+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");
 
-	#*****************************************************************************
-	#
-	# friends.php
-	#
-	# Author: 		Nathan Gervais
-	# Date:			2009-05-21
-	#
-	# Description:  Galileo Friends Landing Page
-	#
-	#
-	#****************************************************************************
-	
-	#
-	# Begin: page-specific settings.  Change these. 
-	$pageTitle 		= "Friends of Eclipse";
-	$pageKeywords	= "Friends of Eclipse, Helios";
-	$pageAuthor		= "Nathan Gervais";
-	include('scripts/wantedFunctions.php');
-	# Paste your HTML content between the EOHTML markers!	
-	ob_start();
-	?>
-	<style> 
-	h1 { font-size:32px;}
-	#novaContent { background: #FFF url('/home/images/blankBG.jpg') no-repeat; }
-	.monolith {	width:700px; 	margin: 0px auto; 	text-align:justify; }
-	</style>
-	<div id="fullcolumn"  class="clearfix">
-		<div style="width:700px; margin:10px auto;">
-		<h1>Thank you Friends of Helios!</h1>
-		<p>A big thank you to all <b>487</b> of our Friends of Helios. The funds raised will be used to
-		support the Eclipse community through services such as providing more bandwidth for users and
-		committers, sponsoring Eclipse events around the world and purchasing additional hardware
-		to host Eclipse projects. Your generousity is very much appreciated.  Helios wouldn't be the
-		same without you!</p>
-		</div>
-		<div class="monolith">
-			<?=sideDonorList(500, FALSE);?>
-		</div>
-	</div>
-	<?
-	$html = ob_get_clean();
-	$html = mb_convert_encoding($html, "HTML-ENTITIES", 'auto');
-	# Generate the web page
-	$App->generatePage($theme, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
\ No newline at end of file
+$App = new App();
+$Nav = new Nav();
+$Menu = new Menu();
+include($App->getProjectCommon()); // All on the same line to unclutter the user's desktop'
+
+
+// Begin: page-specific settings. Change these.
+$pageTitle 		= "Friends of Eclipse";
+$pageKeywords	= "Friends of Eclipse, Helios";
+$pageAuthor		= "Nathan Gervais";
+
+// Place your html content in a file called content/en_pagename.php
+ob_start();
+include("content/en_" . $App->getScriptName());
+$html = ob_get_clean();
+
+# Generate the web page
+$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
diff --git a/blogathon/2009reviews.php b/blogathon/2009reviews.php
index 24845d1..dc446af 100644
--- a/blogathon/2009reviews.php
+++ b/blogathon/2009reviews.php
@@ -1,74 +1,33 @@
-<?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'
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+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");
 
-	#*****************************************************************************
-	#
-	# 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 		= "Top Reviews for Galileo in 2009";
-	$pageKeywords	= "eclipse, helios, release, review, contest";
-	$pageAuthor		= "Lynn Gayowski";
-	
-	# 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", 1);
-	# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 1);
+$App = new App ();
+$Nav = new Nav ();
+$Menu = new Menu ();
+include ($App->getProjectCommon ()); // All on the same line to unclutter the user's desktop'
 
-	# End: page-specific settings
-	#
-	// This file is linked to from lots of different places.
-	// Use absolute paths to make sure that we can actually test
-	// that the file renders properly (i.e. testing using) "/index.php",
-	// and "/home/index.php" both work.
+// Begin: page-specific settings. Change these.
+$pageTitle = "Top Reviews for Galileo in 2009";
+$pageKeywords = "eclipse, helios, release, review, contest";
+$pageAuthor = "Lynn Gayowski";
 
-	# Paste your HTML content between the EOHTML markers!	
-	$html = <<<EOHTML
-<div id="maincontent">
-	<div id="midcolumn">
-		<h1>$pageTitle</h1>
+// Place your html content in a file called content/en_pagename.php
+ob_start ();
+include ("content/en_" . $App->getScriptName ());
+$html = ob_get_clean ();
 
-		<p>
-		For those considering participation in the Helios blogathon, here are the 2009 award-winning reviews of
-		Galileo to give you an idea of what we're looking for:
-		</p>
-		
-		<ul>
-			<li><a href="http://eclipsesource.com/blogs/2009/06/24/eclipse-galileo-feature-top-10-list-number-1/" target="blank">Eclipse Galileo Feature Top 10 List</a> - Ian Bull</li>
-			<li><a href="http://blog.zvikico.com/2009/07/eclipse-35-hidden-treasures.html" target="blank">Eclipse 3.5 Hidden Treasures</a> - Zviki Cohen</li>
-			<li><a href="http://ekkescorner.wordpress.com/blog-series/pde-and-targetplatform/" target="blank">pde + target</a> - Ekke Gentz</li>		
-			<li><a href="http://blog.miracki.net/2009/07/24/eclipse-w-nowej-odslonie-galileo/" target="blank">The New Version of Eclipse - Galileo</a> - Mateusz Miracki</li>
-		</ul>
-		<br><br>
-				
-	</div>
-
-	<!-- remove the entire <div> tag to omit the right column!  -->
-	<div id="rightcolumn">
-		<div class="sideitem">
-			<h6>Related Links</h6>
-			<ul>
-				<li><a href="guidelines.php">Blogathon Guidelines</a></li>			
-				<li><a href="reviews.php">Submitted Reviews</a></li>
-			</ul>
-		</div>
-	</div>	
-	
-</div>
-
-	
-EOHTML;
-
-
-	# Generate the web page
-	$App->generatePage("Nova", $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
\ No newline at end of file
+// Generate the web page
+$App->generatePage ( NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html );
\ No newline at end of file
diff --git a/blogathon/2010reviews.php b/blogathon/2010reviews.php
index 1c51d8b..235bf10 100644
--- a/blogathon/2010reviews.php
+++ b/blogathon/2010reviews.php
@@ -1,74 +1,33 @@
-<?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'
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+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");
 
-	#*****************************************************************************
-	#
-	# 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 		= "Top Reviews for Helios in 2010";
-	$pageKeywords	= "eclipse, helios, release, review, contest";
-	$pageAuthor		= "Lynn Gayowski";
-	
-	# 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", 1);
-	# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 1);
+$App = new App ();
+$Nav = new Nav ();
+$Menu = new Menu ();
+include ($App->getProjectCommon ()); // All on the same line to unclutter the user's desktop'
 
-	# End: page-specific settings
-	#
-	// This file is linked to from lots of different places.
-	// Use absolute paths to make sure that we can actually test
-	// that the file renders properly (i.e. testing using) "/index.php",
-	// and "/home/index.php" both work.
+// Begin: page-specific settings. Change these.
+$pageTitle = "Top Reviews for Helios in 2010";
+$pageKeywords = "eclipse, helios, release, review, contest";
+$pageAuthor = "Lynn Gayowski";
 
-	# Paste your HTML content between the EOHTML markers!	
-	$html = <<<EOHTML
-<div id="maincontent">
-	<div id="midcolumn">
-		<h1>$pageTitle</h1>
+// Place your html content in a file called content/en_pagename.php
+ob_start ();
+include ("content/en_" . $App->getScriptName ());
+$html = ob_get_clean ();
 
-		<p>
-		Here are the 2010 award-winning reviews of
-		Helios:
-		</p>
-		
-		<ul>
-			<li><a href="http://tux2323.blogspot.com/2010/06/review-eclipse-helios-rc4.html" target="blank">Review Eclipse Helios RC4</a> - Christian Baranowski</li>
-			<li><a href="http://www.dzone.com/links/r/enter_the_new_eclipse_helios.html" target="blank">Enter the New Eclipse - Helios</a> - Ian Elliot</li>	
-			<li><a href="http://www.techsagar.com/2010/07/10-new-features-which-i-liked-the-most-in-eclipse-helios-3-6-2/" target="blank">10 New Features which I Liked the Most in Eclipse Helios</a> - Prasanna LM</li>
-			<li><a href="http://delaltctrl.blogspot.com/2010/06/awesomeness-in-helios.html" target="blank">Awesomeness in Helios</a> - Del Myers</li>
-		</ul>
-		<br><br>
-				
-	</div>
-
-	<!-- remove the entire <div> tag to omit the right column!  -->
-	<div id="rightcolumn">
-		<div class="sideitem">
-			<h6>Related Links</h6>
-			<ul>
-				<li><a href="guidelines.php">Blogathon Guidelines</a></li>			
-				<li><a href="reviews.php">Submitted Reviews</a></li>
-			</ul>
-		</div>
-	</div>	
-	
-</div>
-
-	
-EOHTML;
-
-
-	# Generate the web page
-	$App->generatePage("Nova", $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
\ No newline at end of file
+// Generate the web page
+$App->generatePage ( NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html );
\ No newline at end of file
diff --git a/blogathon/content/en_2009reviews.php b/blogathon/content/en_2009reviews.php
new file mode 100644
index 0000000..79f6802
--- /dev/null
+++ b/blogathon/content/en_2009reviews.php
@@ -0,0 +1,66 @@
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+ ?>
+<div id="midcolumn">
+  <h1>Top Reviews for Galileo in 2009</h1>
+
+  <p>For those considering participation in the Helios blogathon, here
+    are the 2009 award-winning reviews of Galileo to give you an idea of
+    what we're looking for:</p>
+
+  <ul>
+    <li><a
+      href="http://eclipsesource.com/blogs/2009/06/24/eclipse-galileo-feature-top-10-list-number-1/"
+      target="blank">Eclipse Galileo Feature Top 10 List</a> - Ian Bull</li>
+    <li><a
+      href="http://blog.zvikico.com/2009/07/eclipse-35-hidden-treasures.html"
+      target="blank">Eclipse 3.5 Hidden Treasures</a> - Zviki Cohen</li>
+    <li><a
+      href="http://ekkescorner.wordpress.com/blog-series/pde-and-targetplatform/"
+      target="blank">pde + target</a> - Ekke Gentz</li>
+    <li><a
+      href="http://blog.miracki.net/2009/07/24/eclipse-w-nowej-odslonie-galileo/"
+      target="blank">The New Version of Eclipse - Galileo</a> - Mateusz
+      Miracki</li>
+  </ul>
+  <br>
+  <br>
+
+</div>
+
+<!-- remove the entire <div> tag to omit the right column!  -->
+<div id="rightcolumn">
+  <div class="sideitem">
+    <h6>Helios</h6>
+    <ul id="leftnav">
+      <li><a href="/downloads/packages/release/helios/sr2" target="_self">Download
+          Now</a></li>
+      <li><a href="https://projects.eclipse.org/releases/helios" target="_self">Helios Projects</a></li>
+      <li><a href="/helios/blogathon/reviews.php" target="_self">Blogathon</a></li>
+      <li><a href="/helios/demos.php" target="_self">Demos</a></li>
+      <li><a href="/helios/heliosinaction.php" target="_self">Virtual
+          Conference</a></li>
+      <li><a href="/helios/friends.php" target="_self">Friends of Helios</a></li>
+    </ul>
+
+  </div>
+  <div class="sideitem">
+    <h6>Related Links</h6>
+    <ul>
+      <li><a href="guidelines.php">Blogathon Guidelines</a></li>
+      <li><a href="reviews.php">Submitted Reviews</a></li>
+    </ul>
+  </div>
+</div>
+
+</div>
diff --git a/blogathon/content/en_2010reviews.php b/blogathon/content/en_2010reviews.php
new file mode 100644
index 0000000..24c5b51
--- /dev/null
+++ b/blogathon/content/en_2010reviews.php
@@ -0,0 +1,65 @@
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+ ?>
+<div id="midcolumn">
+  <h1>Top Reviews for Helios in 2010</h1>
+
+  <p>Here are the 2010 award-winning reviews of Helios:</p>
+
+  <ul>
+    <li><a
+      href="http://tux2323.blogspot.com/2010/06/review-eclipse-helios-rc4.html"
+      target="blank">Review Eclipse Helios RC4</a> - Christian
+      Baranowski</li>
+    <li><a
+      href="http://www.dzone.com/links/r/enter_the_new_eclipse_helios.html"
+      target="blank">Enter the New Eclipse - Helios</a> - Ian Elliot</li>
+    <li><a
+      href="http://www.techsagar.com/2010/07/10-new-features-which-i-liked-the-most-in-eclipse-helios-3-6-2/"
+      target="blank">10 New Features which I Liked the Most in Eclipse
+        Helios</a> - Prasanna LM</li>
+    <li><a
+      href="http://delaltctrl.blogspot.com/2010/06/awesomeness-in-helios.html"
+      target="blank">Awesomeness in Helios</a> - Del Myers</li>
+  </ul>
+  <br>
+  <br>
+
+</div>
+
+<!-- remove the entire <div> tag to omit the right column!  -->
+<div id="rightcolumn">
+<div class="sideitem">
+    <h6>Helios</h6>
+    <ul id="leftnav">
+      <li><a href="/downloads/packages/release/helios/sr2" target="_self">Download
+          Now</a></li>
+      <li><a href="https://projects.eclipse.org/releases/helios" target="_self">Helios Projects</a></li>
+      <li><a href="/helios/blogathon/reviews.php" target="_self">Blogathon</a></li>
+      <li><a href="/helios/demos.php" target="_self">Demos</a></li>
+      <li><a href="/helios/heliosinaction.php" target="_self">Virtual
+          Conference</a></li>
+      <li><a href="/helios/friends.php" target="_self">Friends of Helios</a></li>
+    </ul>
+
+  </div>
+  <div class="sideitem">
+    <h6>Related Links</h6>
+    <ul>
+      <li><a href="guidelines.php">Blogathon Guidelines</a></li>
+      <li><a href="reviews.php">Submitted Reviews</a></li>
+    </ul>
+  </div>
+</div>
+
+</div>
diff --git a/blogathon/content/en_guidelines.php b/blogathon/content/en_guidelines.php
new file mode 100644
index 0000000..f9fc76d
--- /dev/null
+++ b/blogathon/content/en_guidelines.php
@@ -0,0 +1,128 @@
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+ ?>
+ <div id="midcolumn">
+  <h1>Review the Eclipse Helios Release</h1>
+
+  <p>
+    The Eclipse Foundation wants to hear what you think of the <a
+      href="https://projects.eclipse.org/releases/helios">Eclipse projects</a>
+    that are being released as part of Helios. As an added bonus, all
+    qualified reviewers will receive an Eclipse t-shirt. One lucky
+    winner will also win a pass to <a
+      href="http://www.eclipsecon.org/2011/">EclipseCon 2011</a> or <a
+      href="http://www.eclipsecon.org/summiteurope2010/">Eclipse Summit
+      Europe 2010</a>! Entries must be received by July 31, 2010 at 4:00
+    pm EST.
+  </p>
+
+  <h3>Entry Instructions</h3>
+  <ul>
+    <li>Write a review or record a video review or demo of Helios.</li>
+    <li>Publish your review on your blog, a newsgroup, or portal such as
+      <a href="http://www.eclipsezone.com" target="blank">EclipseZone</a>,
+      <a href="http://www.infoq.com" target="blank">InfoQ</a>, <a
+      href="http://www.javalobby.com" target="blank">Javalobby</a>, <a
+      href="http://www.jaxenter.com" target="blank">Jaxenter</a>, <a
+      href="http://www.theserverside.com" target="blank">The ServerSide</a>
+      or other technology portal
+    </li>
+    <li>Send your name and the link to your review to <a
+      href="mailto:helios.reviews@eclipse.org">helios.reviews@eclipse.org</a></li>
+  </ul>
+
+  <p>Individuals are allowed to submit multiple entries, but only one
+    prize per person will be awarded.</p>
+
+  <img src="blogcollage.png" width="500">
+
+  <h3>Review Guidelines</h3>
+  <ul>
+    <li>A review will be eligible for a prize if it conveys sufficient
+      technical content.</li>
+    <li>Three to five points of what you like or don't like about one or
+      more Helios projects should be enough. Long essays aren't
+      necessary.</li>
+    <li>Eclipse is a global community, so feel free to write or record a
+      review in your native language.</li>
+    <li>You can see last year's <a href="2009reviews.php">winning
+        reviews</a> for examples of what we're looking for
+    </li>
+  </ul>
+
+  <h3>Receive a Thank You</h3>
+  <ul>
+    <li>Best review: Full pass to <a
+      href="http://www.eclipsecon.org/2011/">EclipseCon 2011</a> or <a
+      href="http://www.eclipsecon.org/summiteurope2010/">Eclipse Summit
+        Europe 2010</a></li>
+    <li>3 top reviews: Eclipse jacket</li>
+    <li>All other qualified reviews get a choice of:
+      <ul>
+        <li><a href="http://www.zazzle.com/eclipseide" target="blank">Eclipse
+            t-shirt</a> printed with a message customized by you</li>
+        <li>Helios t-shirt</li>
+      </ul>
+    </li>
+  </ul>
+
+  <a href="http://www.zazzle.com/eclipseide" target="blank"><img
+    src="ZazzleShirt.png" height="160"></a> <a href="tshirt.jpg"
+    target="blank"><img src="tshirt.jpg" height="160"></a>
+
+  <p>The best and top reviews will be selected by a panel of judges from
+    the Eclipse community.</p>
+
+  <p style="font-size: 10px">
+    Prizes have no cash value and quantities are limited. The full pass
+    to EclipseCon or Eclipse Summit Europe only covers conference
+    registration and does not include travel expenses. The pass is
+    non-transferable and non-refundable, so if you can't go to either
+    conference or you receive a free pass some other way (as a speaker,
+    for example), you won't be able to take advantage of the prize.</font>
+  </p>
+
+  <h3>Questions?</h3>
+  <p>
+    <a href="mailto:helios.reviews@eclipse.org">helios.reviews@eclipse.org</a>
+  </p>
+
+  <br> <br>
+
+</div>
+
+<!-- remove the entire <div> tag to omit the right column!  -->
+<div id="rightcolumn">
+  <div class="sideitem">
+    <h6>Helios</h6>
+    <ul id="leftnav">
+      <li><a href="/downloads/packages/release/helios/sr2" target="_self">Download
+          Now</a></li>
+      <li><a href="https://projects.eclipse.org/releases/helios" target="_self">Helios Projects</a></li>
+      <li><a href="/helios/blogathon/reviews.php" target="_self">Blogathon</a></li>
+      <li><a href="/helios/demos.php" target="_self">Demos</a></li>
+      <li><a href="/helios/heliosinaction.php" target="_self">Virtual
+          Conference</a></li>
+      <li><a href="/helios/friends.php" target="_self">Friends of Helios</a></li>
+    </ul>
+
+  </div>
+  <div class="sideitem">
+    <h6>Related Links</h6>
+    <ul>
+      <li><a href="reviews.php">2010 Helios Reviews</a></li>
+      <li><a href="2010reviews.php">2010 Winning Reviews</a></li>
+      <li><a href="2009reviews.php">2009 Winning Reviews</a></li>
+    </ul>
+  </div>
+</div>
\ No newline at end of file
diff --git a/blogathon/content/en_reviews.php b/blogathon/content/en_reviews.php
new file mode 100644
index 0000000..7d11d28
--- /dev/null
+++ b/blogathon/content/en_reviews.php
@@ -0,0 +1,2250 @@
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+ ?>
+
+
+<div id="midcolumn">
+
+  <h1>Helios Reviews</h1>
+
+  <p>
+    Members of the Eclipse community are invited to write a review of
+    the <a href="https://projects.eclipse.org/releases/helios">Eclipse
+      projects</a> being released as part of Helios and to publish the
+    review on a blog, newsgroup or portal. Following is a list of links
+    to the reviews that have been submitted to the blogathon.
+  </p>
+
+  <p>
+    <a href="guidelines.php">See details on the Helios Blogathon</a>
+  </p>
+
+  <table cellpadding="3" cellspacing="0" width="100%">
+    <tr bgcolor=#b599e4>
+      <td><font color="#ffffff"><strong>Link</strong></font></td>
+      <td><font color="#ffffff"><strong>Author</strong></font></td>
+      <td><font color="#ffffff"><strong>Date</strong></font></td>
+      <td><font color="#ffffff"><strong>Language</strong></font></td>
+    </tr>
+
+    <tr>
+      <td>
+        <div id="Eclipse Helios">
+          <a name="Eclipse Helios" class="norgie"
+            onClick="t('Eclipse Helios','Eclipse Heliosa')"></a> <a
+            target="_blank"
+            href="http://thecoderlounge.blogspot.com/2010/07/eclipse-helios.html
+		">Eclipse Helios</a>
+        </div>
+      </td>
+      <td>Deepak Azad</td>
+      <td>July 31</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse Heliosa">
+          <div class="item_contents">Going through the Helios Reviews I
+            see that a number of bloggers have said good things about
+            the new features in JDT :) If you have not yet seen the new
+            features of JDT then check out the 10 minute demo I recorded
+            last month.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Helios 2010">
+          <a name="Helios 2010" class="norgie"
+            onClick="t('Helios 2010','Helios 2010a')"></a> <a
+            target="_blank"
+            href="http://forums.dzone.com/eclipse/2713-helios-2010-a.html#post5709
+		">Helios 2010</a>
+        </div>
+      </td>
+      <td>Shrikanth NC</td>
+      <td>July 31</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Helios 2010a">
+          <div class="item_contents">First of all bravo! for the effort
+            especially when i read these lines... from IBM site..
+            "Helios is the simultaneous release of 39 Eclipse projects.
+            In terms of statistics, the Helios release includes 33
+            million lines of code developed by about 500 Eclipse.org
+            committers from 44 companies."</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse (Helios) Rocks and a Few Critiques">
+          <a name="Eclipse (Helios) Rocks and a Few Critiques"
+            class="norgie"
+            onClick="t('Eclipse (Helios) Rocks and a Few Critiques','Eclipse (Helios) Rocks and a Few Critiquesa')"></a>
+          <a target="_blank"
+            href="http://blog.architexa.com/2010/07/eclipse-rocks-and-a-few-critiques/
+		">Eclipse (Helios) Rocks and a Few Critiques</a>
+        </div>
+      </td>
+      <td>Vineet Sinha</td>
+      <td>July 30</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse (Helios) Rocks and a Few Critiquesa">
+          <div class="item_contents">Helios has been out for over a
+            month &ndash; and we have been using it. Yes, we are a
+            little biased, but when you are working with and leading
+            teams of 10+ developers you need to be practical. There are
+            a number of things that Eclipse does really well, but there
+            are a few things that we would like to see better.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse Helios Mostly Works">
+          <a name="Eclipse Helios Mostly Works" class="norgie"
+            onClick="t('Eclipse Helios Mostly Works','Eclipse Helios Mostly Worksa')"></a>
+          <a target="_blank"
+            href="http://datacute.wordpress.com/2010/07/30/eclipse-helios-mostly-works/
+		">Eclipse Helios Mostly Works</a>
+        </div>
+      </td>
+      <td>Stephen Denne</td>
+      <td>July 30</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse Helios Mostly Worksa">
+          <div class="item_contents">For development at work, I
+            downloaded and started using Eclipse Helios packaged for
+            J2EE development, wanting to see what I could stumble upon
+            as new or different, and whether I could recommend it to the
+            rest of my team yet without having to describe a whole lot
+            of changes to our practices.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div
+          id="Eclipse MarketPlace Another New Part of Eclipse Helios 3.6">
+          <a
+            name="Eclipse MarketPlace Another New Part of Eclipse Helios 3.6"
+            class="norgie"
+            onClick="t('Eclipse MarketPlace Another New Part of Eclipse Helios 3.6','Eclipse MarketPlace Another New Part of Eclipse Helios 3.6a')"></a>
+          <a target="_blank"
+            href="http://sysdent.net23.net/2010/07/28/eclipse-marketplace-otra-de-las-novedades-de-eclipse-helios-3-6/
+		">Eclipse MarketPlace Another New Part of Eclipse Helios 3.6</a>
+        </div>
+      </td>
+      <td>Miguel Antonio Casallas Tarazona</td>
+      <td>July 28</td>
+      <td>Spanish</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div
+          id="Eclipse MarketPlace Another New Part of Eclipse Helios 3.6a">
+          <div class="item_contents">It is no secret that when we need a
+            full server option we have many in the open source world,
+            but it is generally tends to be one of two: JBoss and
+            Glassfish.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse Helios Review">
+          <a name="Eclipse Helios Review" class="norgie"
+            onClick="t('Eclipse Helios Review','Eclipse Helios Reviewa')"></a>
+          <a target="_blank"
+            href="http://patrickspokemonpalace.wordpress.com/2010/07/27/eclipse-helios-review/
+		">Eclipse Helios Review</a>
+        </div>
+      </td>
+      <td>Patrick Poon</td>
+      <td>July 27</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse Helios Reviewa">
+          <div class="item_contents">The Eclipse Helios release train
+            has been out for a few weeks now and it&rsquo;s looking
+            pretty good. Here are some initial thoughts about it.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse Helios Rocks!">
+          <a name="Eclipse Helios Rocks!" class="norgie"
+            onClick="t('Eclipse Helios Rocks!','Eclipse Helios Rocks!a')"></a>
+          <a target="_blank"
+            href="http://technovergence.blogspot.com/2010/07/eclipse-helios-rocks.html
+		">Eclipse Helios Rocks!</a>
+        </div>
+      </td>
+      <td>Reda Abdi</td>
+      <td>July 27</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse Helios Rocks!a">
+          <div class="item_contents">As you know the latest eclipse
+            version has been released on June 23, 2010. And for someone
+            like me, who was using Ganymede (Eclipse 3.4), improvements
+            are striking.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="What&#146;s New in Helios?">
+          <a name="What&#146;s New in Helios?" class="norgie"
+            onClick="t('What&#146;s New in Helios?','What&#146;s New in Helios?a')"></a>
+          <a target="_blank"
+            href="http://olivier-eclipse.blogspot.com/2010/07/quoi-de-neuf-dans-helios.html
+		">What&#146;s New in Helios?</a>
+        </div>
+      </td>
+      <td>Olivier Thomann</td>
+      <td>July 27</td>
+      <td>French</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="What&#146;s New in Helios?a">
+          <div class="item_contents">The Eclipse Foundation released its
+            new annual version in late June. This year, its name is
+            Helios. As usual, the delivery was made on the day it was
+            planned for the 10th consecutive year.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse Helios - a Whole Year of Goodness">
+          <a name="Eclipse Helios - a Whole Year of Goodness"
+            class="norgie"
+            onClick="t('Eclipse Helios - a Whole Year of Goodness','Eclipse Helios - a Whole Year of Goodnessa')"></a>
+          <a target="_blank"
+            href="http://model-driven-blogging.blogspot.com/2010/07/eclipse-helios-whole-year-of-goodness.html
+		">Eclipse Helios - a Whole Year of Goodness</a>
+        </div>
+      </td>
+      <td>Cedric Brun</td>
+      <td>July 27</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse Helios - a Whole Year of Goodnessa">
+          <div class="item_contents">Eclipse Helios is a release, but
+            it's also a complete development cycle in a global and
+            distributed team of commiters. Since I choose 3 features I
+            especially liked in Helios this kept bugging me: what is
+            Helios to me? Helios will have its place in my memory, not
+            the bits themselves but good things we had as a community.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div
+          id="What Does the Eclipse of a Summer God Mean a Developer?">
+          <a
+            name="What Does the Eclipse of a Summer God Mean a Developer?"
+            class="norgie"
+            onClick="t('What Does the Eclipse of a Summer God Mean a Developer?','What Does the Eclipse of a Summer God Mean a Developer?a')"></a>
+          <a target="_blank"
+            href="http://cubussapiens.hu/en/2010/07/what-does-the-eclipse-of-a-summer-god-mean-to-me/
+		">What Does the Eclipse of a Summer God Mean a Developer?</a>
+        </div>
+      </td>
+      <td>Zoltan Ujhelyi</td>
+      <td>July 26</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div
+          id="What Does the Eclipse of a Summer God Mean a Developer?a">
+          <div class="item_contents">A month ago the Eclipse 3.6 shipped
+            &ndash; again on time. This is another evolutionary release
+            &ndash; most components are binary compatible with the older
+            ones, so the time of the migration was roughly equal to the
+            download. All old favorites, such as Mylyn, EMF, etc. are
+            updated, a lot of features were added, that makes
+            development much easier. Some new components are also added,
+            making a strong basis of the Eclipse eco-system.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse 3.6 Hidden Treasures">
+          <a name="Eclipse 3.6 Hidden Treasures" class="norgie"
+            onClick="t('Eclipse 3.6 Hidden Treasures','Eclipse 3.6 Hidden Treasuresa')"></a>
+          <a target="_blank"
+            href="http://blog.zvikico.com/2010/07/eclipse-36-hidden-treasures.html
+		">Eclipse 3.6 Hidden Treasures</a>
+        </div>
+      </td>
+      <td>Zviki Cohen</td>
+      <td>July 26</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse 3.6 Hidden Treasuresa">
+          <div class="item_contents">Eclipse 3.6, aka Helios, was
+            released about a month ago. It has become a tradition: this
+            is the time I highlight some of my favorite hidden features
+            in the new release. I focus my article on features which are
+            less obvious, off the beaten path. Features you might not be
+            familiar with if you didn't take the time to read the "new
+            and noteworthy" for this release.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Latest Eclipse release">
+          <a name="Latest Eclipse release" class="norgie"
+            onClick="t('Latest Eclipse release','Latest Eclipse releasea')"></a>
+          <a target="_blank"
+            href="http://suppressingfire.livejournal.com/46558.html
+		">Latest Eclipse release</a>
+        </div>
+      </td>
+      <td>Michael R. Head</td>
+      <td>July 20</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Latest Eclipse releasea">
+          <div class="item_contents">The latest Eclipse came out on June
+            23, 2010, and per usual, I'm writing a review to collect a
+            T-shirt in this year's blogathon. The first thing to notice,
+            before even downloading it, there are a couple more packages
+            available.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div
+          id="Moving a RCP application from Galileo to Helios: Feedback and Tips">
+          <a
+            name="Moving a RCP application from Galileo to Helios: Feedback and Tips"
+            class="norgie"
+            onClick="t('Moving a RCP application from Galileo to Helios: Feedback and Tips','Moving a RCP application from Galileo to Helios: Feedback and Tipsa')"></a>
+          <a target="_blank"
+            href="http://www.bonitasoft.org/blog/eclipse/moving-a-rcp-application-from-galileo-to-helios-feedback-and-tips/
+		">Moving a RCP application from Galileo to Helios: Feedback and Tips</a>
+        </div>
+      </td>
+      <td>Aurelien Pupier</td>
+      <td>July 20</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div
+          id="Moving a RCP application from Galileo to Helios: Feedback and Tipsa">
+          <div class="item_contents">In this post I&rsquo;m going to
+            share our experience migrating our RCP product Bonita Open
+            Solution from an Eclipse 3.5.1 to 3.6.0 based platform.
+            There were some issues but we were successful. I will also
+            offer some tips so you can avoid some mistakes and save
+            migration time.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse Helios - New Apply Patch Features">
+          <a name="Eclipse Helios - New Apply Patch Features"
+            class="norgie"
+            onClick="t('Eclipse Helios - New Apply Patch Features','Eclipse Helios - New Apply Patch Featuresa')"></a>
+          <a target="_blank"
+            href="http://blog.max.berger.name/2010/07/eclipse-helios-new-apply-patch-features.html
+		">Eclipse Helios - New Apply Patch Features</a>
+        </div>
+      </td>
+      <td>Max Berger</td>
+      <td>July 18</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse Helios - New Apply Patch Featuresa">
+          <div class="item_contents">Eclipse Helios has a few nice new
+            features for applying patches. In this post I would like to
+            point some of them out.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse Helios and Sun/Oracle Update 21">
+          <a name="Eclipse Helios and Sun/Oracle Update 21"
+            class="norgie"
+            onClick="t('Eclipse Helios and Sun/Oracle Update 21','Eclipse Helios and Sun/Oracle Update 21a')"></a>
+          <a target="_blank"
+            href="http://blogs.infosupport.com/blogs/peterhe/archive/2010/07/18/eclipse-helios-and-sun-oracle-update-21.aspx
+		">Eclipse Helios and Sun/Oracle Update 21</a>
+        </div>
+      </td>
+      <td>Peter Hendriks</td>
+      <td>July 18</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse Helios and Sun/Oracle Update 21a">
+          <div class="item_contents">First of all, if you are using any
+            version of Eclipse (3.1-3.6) and are migrating to Sun/Oracle
+            JDK update 21, be wary of this bug: 319514. Basically,
+            Eclipse checks if the VM is Sun to add a "PermSize" flag,
+            but now it is renamed to Oracle and the check no longer
+            works.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse Helios Released: What It Doesn&#146;t Have">
+          <a name="Eclipse Helios Released: What It Doesn&#146;t Have"
+            class="norgie"
+            onClick="t('Eclipse Helios Released: What It Doesn&#146;t Have','Eclipse Helios Released: What It Doesn&#146;t Havea')"></a>
+          <a target="_blank"
+            href="http://misto.ch/eclipse-helios-released-what-it-doesnt-have/
+		">Eclipse Helios Released: What It Doesn&#146;t Have</a>
+        </div>
+      </td>
+      <td>Mirko Stocker</td>
+      <td>July 17</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse Helios Released: What It Doesn&#146;t Havea">
+          <div class="item_contents">Many good reviews already cover all
+            the nice new features that are in Eclipse Helios, so
+            I&rsquo;m going to show you a three annoyances that have
+            been bothering me for years and are still not fixed in
+            Helios. And these aren&rsquo;t things like the high memory
+            consumption or the sluggish interface.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse Helios and Java 1.6u21 Deadlocks">
+          <a name="Eclipse Helios and Java 1.6u21 Deadlocks"
+            class="norgie"
+            onClick="t('Eclipse Helios and Java 1.6u21 Deadlocks','Eclipse Helios and Java 1.6u21 Deadlocksa')"></a>
+          <a target="_blank"
+            href="http://blog.max.berger.name/2010/07/eclipse-helios-and-java-16u21-deadlocks.html
+		">Eclipse Helios and Java 1.6u21 Deadlocks</a>
+        </div>
+      </td>
+      <td>Max Berger</td>
+      <td>July 17</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse Helios and Java 1.6u21 Deadlocksa">
+          <div class="item_contents">I wanted to write a post about the
+            new Eclipse Helios, which was just released to participate
+            in the Helios Blogathon. So, on my personal machine, I
+            installed the newest JDK (1.6u21), the new eclipse, started
+            it up, tried to work with it and after a few seconds.... It
+            just hangs!</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse Helios">
+          <a name="Eclipse Helios" class="norgie"
+            onClick="t('Eclipse Helios','Eclipse Heliosa')"></a> <a
+            target="_blank"
+            href="http://www.netgautam.com/wordpress/2010/07/16/eclipse-helios/
+		">Eclipse Helios</a>
+        </div>
+      </td>
+      <td>Nitesh Gautam</td>
+      <td>July 16</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse Heliosa">
+          <div class="item_contents">Eclipse has always been my
+            preferred IDE for application design and development. There
+            have always been my interest in new developments going
+            behind the scenes on eclipse evolution. The latest version
+            of Eclipse, named as Helios, has been released this year on
+            June 23, named as Eclipse Helios.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="The Helios Year in Retrospect">
+          <a name="The Helios Year in Retrospect" class="norgie"
+            onClick="t('The Helios Year in Retrospect','The Helios Year in Retrospecta')"></a>
+          <a target="_blank"
+            href="http://eclipsehowl.wordpress.com/2010/07/14/the-helios-year-in-retrospect/
+		">The Helios Year in Retrospect</a>
+        </div>
+      </td>
+      <td>Holger Voorman</td>
+      <td>July 14</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="The Helios Year in Retrospecta">
+          <div class="item_contents">My neighbor should have been back
+            from Malaysia this summer, but the IT project that's behind
+            his sojourn in these exotic spheres is delayed. The still
+            indefinitely vacant apartment reminds me of how nice my life
+            is. And I&rsquo;m not referring to the silence next-door,
+            but to the fact that I, as an Eclipse developer, can rely on
+            the 5th Eclipse Release Train arriving on time. For trains,
+            and especially for software projects, this is not yet
+            self-evident even in the year 2010.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="The Juggernaut of Eclipse Helios Arrives">
+          <a name="The Juggernaut of Eclipse Helios Arrives"
+            class="norgie"
+            onClick="t('The Juggernaut of Eclipse Helios Arrives','The Juggernaut of Eclipse Helios Arrivesa')"></a>
+          <a target="_blank"
+            href="http://codifyit.blogspot.com/2010/07/juggernaut-of-eclipse-helios-arrives.html
+		">The Juggernaut of Eclipse Helios Arrives</a>
+        </div>
+      </td>
+      <td>Saurav Sarkar</td>
+      <td>July 12</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="The Juggernaut of Eclipse Helios Arrivesa">
+          <div class="item_contents">This is that time of year, when the
+            Eclipse community comes up with its brand new release. Last
+            year i wrote about Galileo, this time much awaited Helios
+            comes into the limelight.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div
+          id="Eclipse Helios  - Install all your Eclipse Plugins from Eclipse MarketPlace">
+          <a
+            name="Eclipse Helios  - Install all your Eclipse Plugins from Eclipse MarketPlace"
+            class="norgie"
+            onClick="t('Eclipse Helios  - Install all your Eclipse Plugins from Eclipse MarketPlace','Eclipse Helios  - Install all your Eclipse Plugins from Eclipse MarketPlacea')"></a>
+          <a target="_blank"
+            href="http://techsymphony.wordpress.com/2010/07/11/eclipse-helios-install-all-your-eclipse-plugins-from-eclipse-marketplace/
+		">Eclipse Helios - Install all your Eclipse Plugins from Eclipse
+            MarketPlace</a>
+        </div>
+      </td>
+      <td>Maniganda Prakash</td>
+      <td>July 11</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div
+          id="Eclipse Helios  - Install all your Eclipse Plugins from Eclipse MarketPlacea">
+          <div class="item_contents">No more remembering eclipse
+            plugins' url. I know how difficult it is to find the url of
+            each eclipse plugin and install it via &lsquo;Install New
+            Software&rsquo;. Especially if you are behind office
+            firewall you cannot install those plugins. Eclipse Helios
+            has resolved those problems introducing &lsquo;Eclipse
+            MarketPlace&rsquo;.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse Helios Gets Cozy with Your OS">
+          <a name="Eclipse Helios Gets Cozy with Your OS" class="norgie"
+            onClick="t('Eclipse Helios Gets Cozy with Your OS','Eclipse Helios Gets Cozy with Your OSa')"></a>
+          <a target="_blank"
+            href="http://blog.zvikico.com/2010/07/eclipse-helios-gets-cozy-with-your-os.html
+		">Eclipse Helios Gets Cozy with Your OS</a>
+        </div>
+      </td>
+      <td>Zviki Cohen</td>
+      <td>July 7</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse Helios Gets Cozy with Your OSa">
+          <div class="item_contents">Let's start with two, non trivial,
+            claims: (a) native apps are not dead yet (OS native, as
+            opposed to web apps), (b) people prefer the native apps.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Riena 2.0 on Board the Eclipse Helios Release Train">
+          <a name="Riena 2.0 on Board the Eclipse Helios Release Train"
+            class="norgie"
+            onClick="t('Riena 2.0 on Board the Eclipse Helios Release Train','Riena 2.0 on Board the Eclipse Helios Release Traina')"></a>
+          <a target="_blank"
+            href="http://www.compeople.eu/blog/?p=216
+		">Riena 2.0 on Board the Eclipse Helios Release Train</a>
+        </div>
+      </td>
+      <td>Michael Bordach</td>
+      <td>July 7</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Riena 2.0 on Board the Eclipse Helios Release Traina">
+          <div class="item_contents">The Riena project team has just
+            released the Riena platform 2.0 as part of Eclipse Helios.
+            Thanks and congratulations to everyone who helped manage
+            this Eclipse Release out the door in high quality and on
+            time again! To dive into Riena&rsquo;s detailed technical
+            release notes, you may hop to Riena New And Noteworthy. With
+            this post I present a rough overview of new and optimized
+            features.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Discovery and AMP">
+          <a name="Discovery and AMP" class="norgie"
+            onClick="t('Discovery and AMP','Discovery and AMPa')"></a> <a
+            target="_blank"
+            href="http://milesparker.blogspot.com/2010/07/discovery-and-amp.html?utm_source=feedbur
+		">Discovery and AMP</a>
+        </div>
+      </td>
+      <td>Miles Parker</td>
+      <td>July 5</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Discovery and AMPa">
+          <div class="item_contents">One of my favorite new features in
+            Eclipse Helios is not really about the Eclipse tools at all
+            but how users get those tools.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="3 Good Reasons to use the Helios Modeling Package">
+          <a name="3 Good Reasons to use the Helios Modeling Package"
+            class="norgie"
+            onClick="t('3 Good Reasons to use the Helios Modeling Package','3 Good Reasons to use the Helios Modeling Packagea')"></a>
+          <a target="_blank"
+            href="http://model-driven-blogging.blogspot.com/2010/06/helios-review-in-pictures.html
+		">3 Good Reasons to use the Helios Modeling Package</a>
+        </div>
+      </td>
+      <td>Cedric Brun</td>
+      <td>July 5</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="3 Good Reasons to use the Helios Modeling Packagea">
+          <div class="item_contents">Now that the entire world noticed
+            that I don't know even one thing about soccer and I'm even
+            trying to cheat, I should get back in sharing what I
+            understand instead of those silly forecasts. Helios has been
+            out for a little while now, the mediatic storm is pretty
+            much gone and it's a good time for me to have a look back.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Helios - Eclipse 3.6">
+          <a name="Helios - Eclipse 3.6" class="norgie"
+            onClick="t('Helios - Eclipse 3.6','Helios - Eclipse 3.6a')"></a>
+          <a target="_blank"
+            href="http://maruhgar.blogspot.com/2010/07/helios-eclipse-36.html
+		">Helios - Eclipse 3.6</a>
+        </div>
+      </td>
+      <td>Raghuram Bharathan</td>
+      <td>July 5</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Helios - Eclipse 3.6a">
+          <div class="item_contents">Helios is the God of the Sun. It is
+            also the codename for the 2010 release of Eclipse, arguably
+            the most popular development environment for java
+            programming language. As a user of Eclipse for the last six
+            years of so, I did not lose time downloading Helios once it
+            became publicly available.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse Helios: 5 JDT Improvements">
+          <a name="Eclipse Helios: 5 JDT Improvements" class="norgie"
+            onClick="t('Eclipse Helios: 5 JDT Improvements','Eclipse Helios: 5 JDT Improvementsa')"></a>
+          <a target="_blank"
+            href="http://blog.firdau.si/2010/07/02/eclipse-helios-5-jdt-improvements/
+		">Eclipse Helios: 5 JDT Improvements</a>
+        </div>
+      </td>
+      <td>Nanda Firdausi</td>
+      <td>July 2</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse Helios: 5 JDT Improvementsa">
+          <div class="item_contents">Helios has been released. This
+            simultaneous release includes more projects but many people
+            still regard Eclipse as Java IDE. So in this post, I want to
+            share the most important JDT improvements that I think will
+            be loved by most Java developers.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div
+          id="10 New Features which I Liked the Most in Eclipse Helios">
+          <a
+            name="10 New Features which I Liked the Most in Eclipse Helios"
+            class="norgie"
+            onClick="t('10 New Features which I Liked the Most in Eclipse Helios','10 New Features which I Liked the Most in Eclipse Heliosa')"></a>
+          <a target="_blank"
+            href="http://www.techsagar.com/2010/07/10-new-features-which-i-liked-the-most-in-eclipse-helios-3-6-2/
+		">10 New Features which I Liked the Most in Eclipse Helios</a>
+        </div>
+      </td>
+      <td>Prasanna LM</td>
+      <td>July 1</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div
+          id="10 New Features which I Liked the Most in Eclipse Heliosa">
+          <div class="item_contents">Last week Eclipse foundation
+            delivered their 2010 installment i.e., the 3.6 version of
+            Eclipse code named Helios. It was the largest release from
+            Eclipse community so far as it involved 39 different project
+            teams & 33 million lines of code (as per the data available
+            in the official Eclipse web page). Helios comes with lots of
+            new & interesting features and caters to the varying needs
+            of the Software Development community.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div
+          id="OSGi Console in Helios, Monkey See/Monkey Do and a Strange Loop">
+          <a
+            name="OSGi Console in Helios, Monkey See/Monkey Do and a Strange Loop"
+            class="norgie"
+            onClick="t('OSGi Console in Helios, Monkey See/Monkey Do and a Strange Loop','OSGi Console in Helios, Monkey See/Monkey Do and a Strange Loopa')"></a>
+          <a target="_blank"
+            href="http://blog.wolfgang-werner.net/osgi-console-in-helios-monkey-see-monkey-do-and-a-strange-loop/
+		">OSGi Console in Helios, Monkey See/Monkey Do and a Strange Loop</a>
+        </div>
+      </td>
+      <td>Wolfgang Werner</td>
+      <td>June 29</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div
+          id="OSGi Console in Helios, Monkey See/Monkey Do and a Strange Loopa">
+          <div class="item_contents">Helios comes with an OSGi console
+            that is accessible from the GUI directly. This reminded me
+            of the existence of an API to add custom commands to the
+            console. I found this to be a simple and powerful concept;
+            yet I perceive this feature to be rarely used in practice.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Acceleo 3.0.0 is released!">
+          <a name="Acceleo 3.0.0 is released!" class="norgie"
+            onClick="t('Acceleo 3.0.0 is released!','Acceleo 3.0.0 is released!a')"></a>
+          <a target="_blank"
+            href="http://freddyallilaire.blogspot.com/2010/06/acceleo-300-is-released.html
+		">Acceleo 3.0.0 is released!</a>
+        </div>
+      </td>
+      <td>Freddy Allilaire</td>
+      <td>June 29</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Acceleo 3.0.0 is released!a">
+          <div class="item_contents">Acceleo 3.0 has just been released
+            and it comes with compatibility with Eclipse 3.4, 3.5 and
+            the latest 3.6 versions. Acceleo 3.0 is a pragmatic
+            implementation of the OMG Model-to-text specification.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="RAP and Eclipse Helios in a Minute">
+          <a name="RAP and Eclipse Helios in a Minute" class="norgie"
+            onClick="t('RAP and Eclipse Helios in a Minute','RAP and Eclipse Helios in a Minutea')"></a>
+          <a target="_blank"
+            href="http://eclipsesource.com/blogs/2010/06/28/rap-and-eclipse-helios-in-a-minute/
+		">RAP and Eclipse Helios in a Minute</a>
+        </div>
+      </td>
+      <td>Holger Staudacher</td>
+      <td>June 28</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="RAP and Eclipse Helios in a Minutea">
+          <div class="item_contents">As part of the new Eclipse Helios,
+            the Rich Ajax Platform project released version 1.3. If
+            you&rsquo;d like to know what is new in RAP 1.3,
+            here&rsquo;s a short screencast.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse 3.6 - Helios">
+          <a name="Eclipse 3.6 - Helios" class="norgie"
+            onClick="t('Eclipse 3.6 - Helios','Eclipse 3.6 - Heliosa')"></a>
+          <a target="_blank"
+            href="http://www.programmez.com/actualites.php?titre_actu=Eclipse-36---Helios&id_actu=7778
+		">Eclipse 3.6 - Helios</a>
+        </div>
+      </td>
+      <td>Frederic Mazue</td>
+      <td>June 24</td>
+      <td>French</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse 3.6 - Heliosa">
+          <div class="item_contents">Eclipse 3.6, codenamed Helios has
+            just arrived. 490 Eclipse contributors have worked on this
+            release, which includes more than 100 that are independent
+            (as opposed to 900 active contributors) and 44 companies
+            that were involved and collaborate on this open source
+            project.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div
+          id="Eclipse Helios Release Leaves Java Developers Spoilt for Choice">
+          <a
+            name="Eclipse Helios Release Leaves Java Developers Spoilt for Choice"
+            class="norgie"
+            onClick="t('Eclipse Helios Release Leaves Java Developers Spoilt for Choice','Eclipse Helios Release Leaves Java Developers Spoilt for Choicea')"></a>
+          <a target="_blank"
+            href="http://eclipse.dzone.com/articles/eclipse-helio-release-leaves
+		">Eclipse Helios Release Leaves Java Developers Spoilt for Choice</a>
+        </div>
+      </td>
+      <td>James Sugrue</td>
+      <td>June 24</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div
+          id="Eclipse Helios Release Leaves Java Developers Spoilt for Choicea">
+          <div class="item_contents">Yesterday's release of Helios shows
+            how Java developers are now truly spoilt for choice when it
+            comes to IDEs. Following on the NetBeans 6.9 release last
+            week, Eclipse 3.6 is the most complete release so far,
+            incorporating 39 projects.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div
+          id="Getting Acquainted: Eclipse Marketplace - All Popular Plug-ins in One Place">
+          <a
+            name="Getting Acquainted: Eclipse Marketplace - All Popular Plug-ins in One Place"
+            class="norgie"
+            onClick="t('Getting Acquainted: Eclipse Marketplace - All Popular Plug-ins in One Place','Getting Acquainted: Eclipse Marketplace - All Popular Plug-ins in One Placea')"></a>
+          <a target="_blank"
+            href="http://samolisov.blogspot.com/2010/06/eclipse-marketplace.html
+		">Getting Acquainted: Eclipse Marketplace - All Popular Plug-ins in
+            One Place</a>
+        </div>
+      </td>
+      <td>Pavel Samolisov</td>
+      <td>June 24</td>
+      <td>Russian</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div
+          id="Getting Acquainted: Eclipse Marketplace - All Popular Plug-ins in One Placea">
+          <div class="item_contents">As part of the Eclipse Helios
+            release, a single repository of plugins as well as
+            applications built on the Eclipse RCP platform and services
+            provided by the platform, was launched.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div
+          id="Eclipse Helios: Where Programming and Modeling Merge Even More">
+          <a
+            name="Eclipse Helios: Where Programming and Modeling Merge Even More"
+            class="norgie"
+            onClick="t('Eclipse Helios: Where Programming and Modeling Merge Even More','Eclipse Helios: Where Programming and Modeling Merge Even Morea')"></a>
+          <a target="_blank"
+            href="http://it-republik.de/jaxenter/artikel/Eclipse-Helios-Wie-Programmierung-und-Modellierung-immer-mehr-verschmelzen-3166.html
+		">Eclipse Helios: Where Programming and Modeling Merge Even More</a>
+        </div>
+      </td>
+      <td>Jan Koehnlein</td>
+      <td>June 24</td>
+      <td>German</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div
+          id="Eclipse Helios: Where Programming and Modeling Merge Even Morea">
+          <div class="item_contents">The fact that e4, the next
+            generation of Eclipse, is substantially based on EMF shows
+            the importance of modeling within the Eclipse project.
+            Therefore, it is not surprising that the majority of the 39
+            participating projects in Helios come from the Eclipse
+            Modeling Top-Level-Project. Let&acute;s take a closer look
+            at some of the more important new features.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclise Helios - A Few Interesting Features!">
+          <a name="Eclise Helios - A Few Interesting Features!"
+            class="norgie"
+            onClick="t('Eclise Helios - A Few Interesting Features!','Eclise Helios - A Few Interesting Features!a')"></a>
+          <a target="_blank"
+            href="http://eclipse-info.blogspot.com/2010/06/eclipse-helios-few-interesting-features.html
+		">Eclise Helios - A Few Interesting Features!</a>
+        </div>
+      </td>
+      <td>Madhu Samuel</td>
+      <td>June 24</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclise Helios - A Few Interesting Features!a">
+          <div class="item_contents">A year old wait is over. Helios is
+            out in the wild. Today morning, I downloaded Helios. Oops,
+            my friend of eclipse download link got stuck. I went to the
+            download link for the common public - eclipse.org/downloads.
+            There goes the Helios Modeling Package.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse 3.6 Release - Helios">
+          <a name="Eclipse 3.6 Release - Helios" class="norgie"
+            onClick="t('Eclipse 3.6 Release - Helios','Eclipse 3.6 Release - Heliosa')"></a>
+          <a target="_blank"
+            href="http://linuxfr.org/2010/06/23/27041.html
+		">Eclipse 3.6 Release - Helios</a>
+        </div>
+      </td>
+      <td>Cedric Brun</td>
+      <td>June 23</td>
+      <td>French</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse 3.6 Release - Heliosa">
+          <div class="item_contents">Eclipse Helios finally arrived
+            after a year of expectation, on June 23.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Enter the New Eclipse - Helios">
+          <a name="Enter the New Eclipse - Helios" class="norgie"
+            onClick="t('Enter the New Eclipse - Helios','Enter the New Eclipse - Heliosa')"></a>
+          <a target="_blank"
+            href="http://www.dzone.com/links/r/enter_the_new_eclipse_helios.html
+		">Enter the New Eclipse - Helios</a>
+        </div>
+      </td>
+      <td>Ian Elliot</td>
+      <td>June 23</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Enter the New Eclipse - Heliosa">
+          <div class="item_contents">The sun has just set on Galileo,
+            the previous version of the Eclipse IDE, and risen on Helios
+            the latest version. It promises to be more stable, but its
+            help and documentation are a big disappointment.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Git in Eclipse">
+          <a name="Git in Eclipse" class="norgie"
+            onClick="t('Git in Eclipse','Git in Eclipsea')"></a> <a
+            target="_blank"
+            href="http://eclipse.dzone.com/articles/git-eclipse
+		">Git in Eclipse</a>
+        </div>
+      </td>
+      <td>Mitchell Pronschinske</td>
+      <td>June 23</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Git in Eclipsea">
+          <div class="item_contents">With today's release of Helios
+            (Eclipse 3.6), the developers of EGit and JGit have
+            finalized (a week early) version 0.8.4 for the Eclipse
+            platform update. The incubating Git support in Eclipse was
+            ranked #2 among new 3.6 platform additions by developer Ian
+            Bull.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="EclipseLink 2.1.0 Helios Release Now Available">
+          <a name="EclipseLink 2.1.0 Helios Release Now Available"
+            class="norgie"
+            onClick="t('EclipseLink 2.1.0 Helios Release Now Available','EclipseLink 2.1.0 Helios Release Now Availablea')"></a>
+          <a target="_blank"
+            href="http://eclipselink.blogspot.com/2010/06/eclipselink-210-helios-release-now.html
+		">EclipseLink 2.1.0 Helios Release Now Available</a>
+        </div>
+      </td>
+      <td>Peter Krogh and Douglas Clarke</td>
+      <td>June 23</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="EclipseLink 2.1.0 Helios Release Now Availablea">
+          <div class="item_contents">It is with great pleasure that I
+            would like to announce the release of EclipseLink 2.1.0
+            (Helios). This release of brings a number of exciting
+            features many of which were voted on, and chosen by the
+            community.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Linux Tools 0.6 Released as Part of Helios">
+          <a name="Linux Tools 0.6 Released as Part of Helios"
+            class="norgie"
+            onClick="t('Linux Tools 0.6 Released as Part of Helios','Linux Tools 0.6 Released as Part of Heliosa')"></a>
+          <a target="_blank" href="http://overholt.ca/wp/?p=177
+		">Linux Tools 0.6 Released as Part of Helios</a>
+        </div>
+      </td>
+      <td>Andrew Overholt</td>
+      <td>June 23</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Linux Tools 0.6 Released as Part of Heliosa">
+          <div class="item_contents">The Eclipse Linux Tools project is
+            pleased to announce our 0.6 release which is a part of the
+            Eclipse Simultaneous Release known this year as Helios.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="WTP 3.2 Released">
+          <a name="WTP 3.2 Released" class="norgie"
+            onClick="t('WTP 3.2 Released','WTP 3.2 Releaseda')"></a> <a
+            target="_blank"
+            href="http://eclipse.org/webtools/releases/3.2.0/
+		">WTP 3.2 Released</a>
+        </div>
+      </td>
+      <td>Webtools News</td>
+      <td>June 23</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="WTP 3.2 Releaseda">
+          <div class="item_contents">The Web Tools Platform's 3.2
+            release is now available!. WTP 3.2 adds support for
+            creating, running, and debugging applications using Java EE
+            6, including Servlet 3.0, JPA 2.0, JSF 2.0, EJB 3.1, and
+            JAX-RS 1.1 technologies, plus deployment to updated server
+            runtimes, and support for XPath 2.0.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="BIRT 2.6 Released">
+          <a name="BIRT 2.6 Released" class="norgie"
+            onClick="t('BIRT 2.6 Released','BIRT 2.6 Releaseda')"></a> <a
+            target="_blank"
+            href="http://birtworld.blogspot.com/2010/06/birt-26-released.html
+		">BIRT 2.6 Released</a>
+        </div>
+      </td>
+      <td>Jason Weathersby</td>
+      <td>June 23</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="BIRT 2.6 Releaseda">
+          <div class="item_contents">BIRT 2.6 is now available and with
+            this release many improvements and new features are
+            available. Charting with BIRT has been improved adding
+            support for a Radar/Polar chart type, palette hash patterns,
+            better JPG quality, and improved SVG to PDF support.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Helios: The Train Has Arrived">
+          <a name="Helios: The Train Has Arrived" class="norgie"
+            onClick="t('Helios: The Train Has Arrived','Helios: The Train Has Arriveda')"></a>
+          <a target="_blank"
+            href="http://ianskerrett.wordpress.com/2010/06/23/helios-the-train-has-arrived/
+		">Helios: The Train Has Arrived</a>
+        </div>
+      </td>
+      <td>Ian Skerrett</td>
+      <td>June 23</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Helios: The Train Has Arriveda">
+          <div class="item_contents">The Eclipse Helios release is now
+            available for download. Each year I am amazed how the
+            Eclipse community is release on such a predictable schedule.
+            Congratulations to all that help make it happen.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse Helios: What&#146;s New in JDT">
+          <a name="Eclipse Helios: What&#146;s New in JDT"
+            class="norgie"
+            onClick="t('Eclipse Helios: What&#146;s New in JDT','Eclipse Helios: What&#146;s New in JDTa')"></a>
+          <a target="_blank"
+            href="http://it-republik.de/jaxenter/artikel/Eclipse-Helios-Was-gibt%92s-Neues-in-JDT-3162.html
+		">Eclipse Helios: What&#146;s New in JDT</a>
+        </div>
+      </td>
+      <td>Marc Teufel</td>
+      <td>June 23</td>
+      <td>German</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse Helios: What&#146;s New in JDTa">
+          <div class="item_contents">Helios is the fifth so-called
+            simultaneous release of the Eclipse Foundation. Following
+            Callisto, Europa, Ganymede and Galileo, the Helios release
+            comprises 39 different Eclipse projects &ndash; and like
+            every year, both the Eclipse Platform and the Java
+            Development Tools (JDT) are back in updated versions. Let's
+            dive into and have a look at what's new in JDT.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse Helios Simultaneous Release">
+          <a name="Eclipse Helios Simultaneous Release" class="norgie"
+            onClick="t('Eclipse Helios Simultaneous Release','Eclipse Helios Simultaneous Releasea')"></a>
+          <a target="_blank"
+            href="http://www.infoq.com/news/2010/06/eclipse-helios
+		">Eclipse Helios Simultaneous Release</a>
+        </div>
+      </td>
+      <td>Alex Blewitt</td>
+      <td>June 23</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse Helios Simultaneous Releasea">
+          <div class="item_contents">The Eclipse foundation today
+            announced the release of Eclipse Helios, bringing 39
+            different projects to the same station for the seventh
+            annual release train. The Eclipse projects are managed in an
+            agile fashion, releasing seven milestone builds throughout
+            the year and then a number of release candidates in the
+            weeks leading up to June each year. Instead of varying the
+            delivery dates, the Eclipse projects vary the content in
+            each milestone whilst focussing on the quality and backward
+            compatibility.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Top 10 Eclipse Helios Features">
+          <a name="Top 10 Eclipse Helios Features" class="norgie"
+            onClick="t('Top 10 Eclipse Helios Features','Top 10 Eclipse Helios Featuresa')"></a>
+          <a target="_blank"
+            href="http://eclipsesource.com/blogs/2010/06/23/top-10-eclipse-helios-features/
+		">Top 10 Eclipse Helios Features</a>
+        </div>
+      </td>
+      <td>Ian Bull</td>
+      <td>June 23</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Top 10 Eclipse Helios Featuresa">
+          <div class="item_contents">Two weeks ago I asked you to think
+            about high quality software that has been consistently
+            delivered on-time. Think about software that is used by
+            millions of people world-wide, built by hundreds of
+            developers, free to use and open to everybody and anybody.
+            Think about software that spans domains, runs on the
+            smallest of devices and powers the worlds largest
+            enterprises.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse 3.6">
+          <a name="Eclipse 3.6" class="norgie"
+            onClick="t('Eclipse 3.6','Eclipse 3.6a')"></a> <a
+            target="_blank"
+            href="http://www.inforw.de/content/doku.php/blog/277
+		">Eclipse 3.6</a>
+        </div>
+      </td>
+      <td>Rainer Weinhold</td>
+      <td>June 23</td>
+      <td>German</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse 3.6a">
+          <div class="item_contents">Eclipse 3.6 is now released! I've
+            worked for about a week now with the last RC and am very
+            satisfied. So far everything is stable and above all, the
+            features work on Windows 7.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Let&#146;s See What&#146;s New in Eclipse 3.6">
+          <a name="Let&#146;s See What&#146;s New in Eclipse 3.6"
+            class="norgie"
+            onClick="t('Let&#146;s See What&#146;s New in Eclipse 3.6','Let&#146;s See What&#146;s New in Eclipse 3.6a')"></a>
+          <a target="_blank"
+            href="http://samolisov.blogspot.com/2010/05/eclipse-36.html
+		">Let&#146;s See What&#146;s New in Eclipse 3.6</a>
+        </div>
+      </td>
+      <td>Pavel Samolisov</td>
+      <td>June 23</td>
+      <td>Russian</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Let&#146;s See What&#146;s New in Eclipse 3.6a">
+          <div class="item_contents">Today the Eclipse development team
+            has promised to collect the first release candidate of the
+            new version of this wonderful IDE and platform. Almost a
+            year ago, I took the trouble to write about what's new in
+            Eclipse Galileo, and now I'll tell you about the new version
+            - Eclipse Helios.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Helios Adds New Fire to Eclipse">
+          <a name="Helios Adds New Fire to Eclipse" class="norgie"
+            onClick="t('Helios Adds New Fire to Eclipse','Helios Adds New Fire to Eclipsea')"></a>
+          <a target="_blank"
+            href="http://www.dzone.com/links/r/helios_adds_new_fire_to_eclipse.html
+		">Helios Adds New Fire to Eclipse</a>
+        </div>
+      </td>
+      <td>Mitchell Pronschinske</td>
+      <td>June 23</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Helios Adds New Fire to Eclipsea">
+          <div class="item_contents">It's that time again! The annual
+            updating of numerous Eclipse platform projects and the
+            classic IDE that made it ubiquitous. Eclipse 3.6 "Helios" is
+            more than just a new IDE release, this year it consists of
+            39 Eclipse projects from SOA tooling, to a 'marketplace'
+            client for Eclipse plugins, to a platform for mobile
+            development.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="A Review of Eclipse Helios">
+          <a name="A Review of Eclipse Helios" class="norgie"
+            onClick="t('A Review of Eclipse Helios','A Review of Eclipse Heliosa')"></a>
+          <a target="_blank"
+            href="http://willcode4beer.com/opinion.jsp?set=helios_review
+		">A Review of Eclipse Helios</a>
+        </div>
+      </td>
+      <td>Paul Davis</td>
+      <td>June 22</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="A Review of Eclipse Heliosa">
+          <div class="item_contents">As a Friends of Eclipse so, it
+            turns out, I'm able to download the latest version, Helios,
+            a day early. The first thing I decided to do was create a
+            new workspace (just in case).</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Git Support, Top Eclipse Helios Feature #2">
+          <a name="Git Support, Top Eclipse Helios Feature #2"
+            class="norgie"
+            onClick="t('Git Support, Top Eclipse Helios Feature #2','Git Support, Top Eclipse Helios Feature #2a')"></a>
+          <a target="_blank"
+            href="http://eclipsesource.com/blogs/2010/06/22/git-support-eclipse-helios-feature-2/
+		">Git Support, Top Eclipse Helios Feature #2</a>
+        </div>
+      </td>
+      <td>Ian Bull</td>
+      <td>June 22</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Git Support, Top Eclipse Helios Feature #2a">
+          <div class="item_contents">Only 1 more day until Eclipse
+            Helios is release and we are down to my Top 2 features. Over
+            the life of Eclipse (Jeff McAffer tells me that he&rsquo;s
+            been working on Eclipse since 1999) a lot has changed.
+            Eclipse started its life inside OTI/IBM. In November 2001
+            the Eclipse Consortium was announced and Eclipse was
+            released as &lsquo;Open Source&rsquo;. For the next few
+            years Eclipse grew, but was still mostly supported by a few
+            large companies.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse Helios RC4 Review">
+          <a name="Eclipse Helios RC4 Review" class="norgie"
+            onClick="t('Eclipse Helios RC4 Review','Eclipse Helios RC4 Reviewa')"></a>
+          <a target="_blank"
+            href="http://tarlogonjava.blogspot.com/2010/06/eclipse-helios-rc4-review.html
+		">Eclipse Helios RC4 Review</a>
+        </div>
+      </td>
+      <td>Michael Elman</td>
+      <td>June 22</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse Helios RC4 Reviewa">
+          <div class="item_contents">Some time ago I have downloaded the
+            JEE edition of the Eclipse Helios RC4. And here comes a
+            review in order to win a Helios t-shirt. I'll start with
+            bugs I found till now. I didn't find many. Continue with
+            features I still miss, and try to end with some positive
+            note about the features I liked.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div
+          id="EMF, Riena and RAP Integration, Top Eclipse Helios Feature #3">
+          <a
+            name="EMF, Riena and RAP Integration, Top Eclipse Helios Feature #3"
+            class="norgie"
+            onClick="t('EMF, Riena and RAP Integration, Top Eclipse Helios Feature #3','EMF, Riena and RAP Integration, Top Eclipse Helios Feature #3a')"></a>
+          <a target="_blank"
+            href="http://eclipsesource.com/blogs/2010/06/21/emf-riena-and-rap-integration-top-eclipse-helios-feature-3/
+		">EMF, Riena and RAP Integration, Top Eclipse Helios Feature #3</a>
+        </div>
+      </td>
+      <td>Ian Bull</td>
+      <td>June 21</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div
+          id="EMF, Riena and RAP Integration, Top Eclipse Helios Feature #3a">
+          <div class="item_contents">Well here we are, it&rsquo;s
+            release week. Eclipse 3.6 &mdash; Helios &mdash; will be
+            available on Wednesday June 23rd. It also means that
+            I&rsquo;m into my Top 3 features for this years release. For
+            the past 7 days I&rsquo;ve been presenting some of the New
+            and Noteworthy features of this years release.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse Mania is Back with Helios">
+          <a name="Eclipse Mania is Back with Helios" class="norgie"
+            onClick="t('Eclipse Mania is Back with Helios','Eclipse Mania is Back with Heliosa')"></a>
+          <a target="_blank"
+            href="http://blog.suranaamit.com/2010/06/eclipse-mania-is-back-with-helios.html
+		">Eclipse Mania is Back with Helios</a>
+        </div>
+      </td>
+      <td>Amit Surana</td>
+      <td>June 20</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse Mania is Back with Heliosa">
+          <div class="item_contents">Last year around the same time I
+            blogged about new upcoming release of Eclipse Galileo. An
+            year has passed since then and Eclipse is back again with
+            new version called Helios which will be released on June
+            23rd. Eclipse as Wayne Beaton says is more than just an IDE.
+            Eclipse initially may have started off as an IDE, but today
+            Eclipse has evolved into a platform.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse 3.6 (Helios)">
+          <a name="Eclipse 3.6 (Helios)" class="norgie"
+            onClick="t('Eclipse 3.6 (Helios)','Eclipse 3.6 (Helios)a')"></a>
+          <a target="_blank"
+            href="http://cana.web.id/blog/eclipse-3-6-helios.CanA
+		">Eclipse 3.6 (Helios)</a>
+        </div>
+      </td>
+      <td>Rencana Tarigan</td>
+      <td>June 19</td>
+      <td>Indonesian</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse 3.6 (Helios)a">
+          <div class="item_contents">It's already been a year since the
+            Eclipse Galileo was launched. The new version of Eclipse is
+            Eclipse 3.6 with the name "Helios". It will be released on
+            June 23, 2010.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="MarketPlace Client, Top Eclipse Helios Feature #4">
+          <a name="MarketPlace Client, Top Eclipse Helios Feature #4"
+            class="norgie"
+            onClick="t('MarketPlace Client, Top Eclipse Helios Feature #4','MarketPlace Client, Top Eclipse Helios Feature #4a')"></a>
+          <a target="_blank"
+            href="http://eclipsesource.com/blogs/2010/06/18/mpc_eclipse_helios_feature_4/
+		">MarketPlace Client, Top Eclipse Helios Feature #4</a>
+        </div>
+      </td>
+      <td>Ian Bull</td>
+      <td>June 18</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="MarketPlace Client, Top Eclipse Helios Feature #4a">
+          <div class="item_contents">As most of you know, Eclipse Helios
+            will be released next week. For regular readers of my blog
+            (and PlanetEclipse.org), you know that I&rsquo;ve been
+            counting down some of the new features available in this
+            release. During this series I have received comments (both
+            in the comment fields, and on places like twitter) that
+            essentially read: I really like Eclipse except it
+            doesn&rsquo;t have an editor for XYZ. Or, when I get the
+            following package, it has feature ABC which I don&rsquo;t
+            want. Obviously we can&rsquo;t please all the people all of
+            the time.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Awesomeness in Helios">
+          <a name="Awesomeness in Helios" class="norgie"
+            onClick="t('Awesomeness in Helios','Awesomeness in Heliosa')"></a>
+          <a target="_blank"
+            href="http://delaltctrl.blogspot.com/2010/06/awesomeness-in-helios.html
+		">Awesomeness in Helios</a>
+        </div>
+      </td>
+      <td>Del Myers</td>
+      <td>June 18</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Awesomeness in Heliosa">
+          <div class="item_contents">There was a recent post by Wayne
+            about how Eclipse is an IDE Platform. For all practical
+            purposes, that is the way that I use it. But what is really
+            awesome about Eclipse as an IDE platform is that it is an
+            IDE platform that just keeps improving.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div
+          id="p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5">
+          <a
+            name="p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5"
+            class="norgie"
+            onClick="t('p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5','p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5a')"></a>
+          <a target="_blank"
+            href="http://eclipsesource.com/blogs/2010/06/17/p2-api-and-the-b3-aggregator-top-eclipse-helios-feature-5/
+		">p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5</a>
+        </div>
+      </td>
+      <td>Ian Bull</td>
+      <td>June 17</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div
+          id="p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5a">
+          <div class="item_contents">The official Helios release is less
+            than 1 week away, and we are now into the Top 5 Features
+            that I&rsquo;m most excited about. Over the past week
+            I&rsquo;ve been highlighting some of upcoming features of
+            the Eclipse Helios release. These features include:
+            improvements to the Java Development Tools, Plug-in
+            Development Environment, API Tools and the Eclipse Platform.
+            Number 5 on my Top 10 List is: p2 API and the b3 Aggregator.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Customizing Error Messages in Xtext 1.0">
+          <a name="Customizing Error Messages in Xtext 1.0"
+            class="norgie"
+            onClick="t('Customizing Error Messages in Xtext 1.0','Customizing Error Messages in Xtext 1.0a')"></a>
+          <a target="_blank"
+            href="http://zarnekow.blogspot.com/2010/06/customizing-error-messages-in-xtext-10.html
+		">Customizing Error Messages in Xtext 1.0</a>
+        </div>
+      </td>
+      <td>Sebastian Zarenkow</td>
+      <td>June 17</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Customizing Error Messages in Xtext 1.0a">
+          <div class="item_contents">As the Eclipse Helios Release is
+            around the corner I'll use the chance to describe some nice
+            odds and ends in Xtext 1.0. One of which is a newly
+            introduced API that allows to customize the default messages
+            for parse errors and linking diagnostics.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Points of Conditional Debugging in Eclipse Helios 3.6">
+          <a
+            name="Points of Conditional Debugging in Eclipse Helios 3.6"
+            class="norgie"
+            onClick="t('Points of Conditional Debugging in Eclipse Helios 3.6','Points of Conditional Debugging in Eclipse Helios 3.6a')"></a>
+          <a target="_blank"
+            href="http://sysdent.net23.net/2010/06/17/puntos-de-depuracion-condicionales-en-eclipse-helios-36/
+		">Points of Conditional Debugging in Eclipse Helios 3.6</a>
+        </div>
+      </td>
+      <td>Miguel Antonio Casallas Tarazona</td>
+      <td>June 17</td>
+      <td>Spanish</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Points of Conditional Debugging in Eclipse Helios 3.6a">
+          <div class="item_contents">Clearly, under perfect conditions a
+            software application would never have unexpected behavior,
+            and would always behave according to guidelines, would never
+            fail and would never have any bugs.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div
+          id="Target Platform Improvements, Top Eclipse Helios Feature #6">
+          <a
+            name="Target Platform Improvements, Top Eclipse Helios Feature #6"
+            class="norgie"
+            onClick="t('Target Platform Improvements, Top Eclipse Helios Feature #6','Target Platform Improvements, Top Eclipse Helios Feature #6a')"></a>
+          <a target="_blank"
+            href="http://eclipsesource.com/blogs/2010/06/16/target-platform-improvements-top-eclipse-helios-feature-6/
+		">Target Platform Improvements, Top Eclipse Helios Feature #6</a>
+        </div>
+      </td>
+      <td>Ian Bull</td>
+      <td>June 16</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div
+          id="Target Platform Improvements, Top Eclipse Helios Feature #6a">
+          <div class="item_contents">There are three large groups of
+            artifacts that play a key role while writing software. There
+            are the tools you use, the code you write and the libraries
+            you depend on. There is a large body of research studying
+            the cognitive support provided by software development
+            tools. There is also a number of tool centric development
+            models. Facilities like Yoxos and the Eclipse Market Place
+            help you manage these tool chains.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="New and noteworthy in Helios (Eclipse 3.6)">
+          <a name="New and noteworthy in Helios (Eclipse 3.6)"
+            class="norgie"
+            onClick="t('New and noteworthy in Helios (Eclipse 3.6)','New and noteworthy in Helios (Eclipse 3.6)a')"></a>
+          <a target="_blank"
+            href="http://devdesignandstuff.blogspot.com/2010/06/new-and-noteworthy-in-helios-eclipse-36.html
+		">New and noteworthy in Helios (Eclipse 3.6)</a>
+        </div>
+      </td>
+      <td>Supriya Thengdi</td>
+      <td>June 15</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="New and noteworthy in Helios (Eclipse 3.6)a">
+          <div class="item_contents">I was just going through the latest
+            build of Helios (eclipse 3.6) and thought a sharing of some
+            new features is in order. For those who haven't heard what
+            Helios is about, I suggest you go through the eclipse helios
+            homepage.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Java IDE Improvements, Top Eclipse Helios Feature #7">
+          <a name="Java IDE Improvements, Top Eclipse Helios Feature #7"
+            class="norgie"
+            onClick="t('Java IDE Improvements, Top Eclipse Helios Feature #7','Java IDE Improvements, Top Eclipse Helios Feature #7a')"></a>
+          <a target="_blank"
+            href="http://eclipsesource.com/blogs/2010/06/15/java-ide-improvements-top-eclipse-helios-feature-7/
+		">Java IDE Improvements, Top Eclipse Helios Feature #7</a>
+        </div>
+      </td>
+      <td>Ian Bull</td>
+      <td>June 15</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Java IDE Improvements, Top Eclipse Helios Feature #7a">
+          <div class="item_contents">As Eclipse committers, we spend
+            lots of time emphasizing that Eclipse is not just an
+            Integrated Development Environment. Eclipse is a framework,
+            a tooling platform, a collection of run-time technologies,
+            an eco-system, etc&hellip; However, at the end of the day,
+            an IDE is the primary use of Eclipse for many people.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="A Tour of Eclipse Helios">
+          <a name="A Tour of Eclipse Helios" class="norgie"
+            onClick="t('A Tour of Eclipse Helios','A Tour of Eclipse Heliosa')"></a>
+          <a target="_blank"
+            href="https://www.ibm.com/developerworks/opensource/library/os-eclipse-helios/
+		">A Tour of Eclipse Helios</a>
+        </div>
+      </td>
+      <td>Chris Aniszczyk</td>
+      <td>June 15</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="A Tour of Eclipse Heliosa">
+          <div class="item_contents">The Eclipse Helios simultaneous
+            release of 39 Eclipse projects and 33 million lines of code
+            showcases the diversity and innovation going on inside the
+            Eclipse ecosystem. Get an overview of several projects,
+            along with resources to find out more information.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse 3.6 (Helios) &ndash; A Quick Look">
+          <a name="Eclipse 3.6 (Helios) &ndash; A Quick Look"
+            class="norgie"
+            onClick="t('Eclipse 3.6 (Helios) &ndash; A Quick Look','Eclipse 3.6 (Helios) &ndash; A Quick Looka')"></a>
+          <a target="_blank"
+            href="http://aniruddhchitre.wordpress.com/2010/06/15/eclipse-3-6-helios-a-quick-look/
+		">Eclipse 3.6 (Helios) &ndash; A Quick Look</a>
+        </div>
+      </td>
+      <td>Aniruddh Chitre</td>
+      <td>June 15</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse 3.6 (Helios) &ndash; A Quick Looka">
+          <div class="item_contents">The Eclipse 3.6 (Helios) release is
+            nearing and as always its pretty exciting. The 3.x releases
+            have all added a lot of features which make Java and J2EE
+            development much more easier, exciting and fun. So I decided
+            to try it out and write about some of the new features it
+            has. I primarily use Eclipse for J2EE so my review is more
+            focussed on JDT and Java related features.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse Helios Preview for Java Developers">
+          <a name="Eclipse Helios Preview for Java Developers"
+            class="norgie"
+            onClick="t('Eclipse Helios Preview for Java Developers','Eclipse Helios Preview for Java Developersa')"></a>
+          <a target="_blank"
+            href="http://stronglytypedblog.blogspot.com/2010/06/eclipse-helios-preview-for-java.html
+		">Eclipse Helios Preview for Java Developers</a>
+        </div>
+      </td>
+      <td>Nick Wiedenbrueck</td>
+      <td>June 14</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse Helios Preview for Java Developersa">
+          <div class="item_contents">The final release of the new
+            Eclipse 3.6 - Helios is coming close on June 23. Here is a
+            short overview of some of the new features for Java
+            developers.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Eclipse Helios (3.6 RC4)">
+          <a name="Eclipse Helios (3.6 RC4)" class="norgie"
+            onClick="t('Eclipse Helios (3.6 RC4)','Eclipse Helios (3.6 RC4)a')"></a>
+          <a target="_blank"
+            href="http://www.matthicks.com/2010/06/eclipse-helios-36-rc4.html
+		">Eclipse Helios (3.6 RC4)</a>
+        </div>
+      </td>
+      <td>Matt Hicks</td>
+      <td>June 14</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Eclipse Helios (3.6 RC4)a">
+          <div class="item_contents">
+
+            I've been a user of Eclipse for many years now and when I
+            saw there was a free t-shirt to be had by reviewing the
+            newest release there was only one choice to make. :) <br> <br>The
+            download is exactly the same as all previous releases but
+            the first thing that struck me was the startup time.
+          </div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div
+          id="Improvements to API Tools, Top Eclipse Helios Feature #8">
+          <a
+            name="Improvements to API Tools, Top Eclipse Helios Feature #8"
+            class="norgie"
+            onClick="t('Improvements to API Tools, Top Eclipse Helios Feature #8','Improvements to API Tools, Top Eclipse Helios Feature #8a')"></a>
+          <a target="_blank"
+            href="http://eclipsesource.com/blogs/2010/06/14/api_tools_top_eclipse_helios_feature_8/
+		">Improvements to API Tools, Top Eclipse Helios Feature #8</a>
+        </div>
+      </td>
+      <td>Ian Bull</td>
+      <td>June 14</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div
+          id="Improvements to API Tools, Top Eclipse Helios Feature #8a">
+          <div class="item_contents">I&rsquo;ve been thinking a lot
+            lately about what defines an Eclipse project? Not in the
+            literal sense (a project hosted at eclipse.org that follows
+            the EDP), but rather, what technical qualities do all
+            Eclipse projects share.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="New Features in Eclipse 3.6 (Helios)">
+          <a name="New Features in Eclipse 3.6 (Helios)" class="norgie"
+            onClick="t('New Features in Eclipse 3.6 (Helios)','New Features in Eclipse 3.6 (Helios)a')"></a>
+          <a target="_blank"
+            href="http://rajakannappan.blogspot.com/2010/05/new-features-in-eclipse-36-helios.html
+		">New Features in Eclipse 3.6 (Helios)</a>
+        </div>
+      </td>
+      <td>Raja Kannappan</td>
+      <td>June 13</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="New Features in Eclipse 3.6 (Helios)a">
+          <div class="item_contents">There are many interesting features
+            coming up in Eclipse 3.6 code named as Helios . Below, I
+            will discuss about some of these features which I came
+            across.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Review Eclipse Helios RC4">
+          <a name="Review Eclipse Helios RC4" class="norgie"
+            onClick="t('Review Eclipse Helios RC4','Review Eclipse Helios RC4a')"></a>
+          <a target="_blank"
+            href="http://tux2323.blogspot.com/2010/06/review-eclipse-helios-rc4.html
+		">Review Eclipse Helios RC4</a>
+        </div>
+      </td>
+      <td>Christian Baranowski</td>
+      <td>June 13</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Review Eclipse Helios RC4a">
+          <div class="item_contents">Eclipse Helios is the annual
+            release of Eclipse projects in 2010; this year 39 projects
+            are part of the release. And here is my first contribution
+            to the Helios Blogathon, more details on the Blogathon can
+            be found here. Helios is the code name for this year
+            collecting Eclipse release. The idea of such a release is to
+            be simultaneously release a large quantity of eclipse sub
+            projects at the same time. This gives the user an Eclipse
+            platform with well-coordinated projects, which works
+            together.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div
+          id="Feature Based Configurations, Top Eclipse Helios Feature #9">
+          <a
+            name="Feature Based Configurations, Top Eclipse Helios Feature #9"
+            class="norgie"
+            onClick="t('Feature Based Configurations, Top Eclipse Helios Feature #9','Feature Based Configurations, Top Eclipse Helios Feature #9a')"></a>
+          <a target="_blank"
+            href="http://eclipsesource.com/blogs/2010/06/11/feature-based-configurations-top-eclipse-helios-feature-9/
+		">Feature Based Configurations, Top Eclipse Helios Feature #9</a>
+        </div>
+      </td>
+      <td>Ian Bull</td>
+      <td>June 11</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div
+          id="Feature Based Configurations, Top Eclipse Helios Feature #9a">
+          <div class="item_contents">Yesterday I asked you to think
+            about high-quality software that has been consistently
+            delivered on-time for eight straight years. To make this
+            quiz more challenging, this software should be installed on
+            millions of users&rsquo; desktops.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Helios By the Numbers">
+          <a name="Helios By the Numbers" class="norgie"
+            onClick="t('Helios By the Numbers','Helios By the Numbersa')"></a>
+          <a target="_blank"
+            href="http://dev.eclipse.org/blogs/wayne/2010/06/11/helios-by-the-numbers/
+		">Helios By the Numbers</a>
+        </div>
+      </td>
+      <td>Wayne Beaton</td>
+      <td>June 11</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Helios By the Numbersa">
+          <div class="item_contents">
+
+            Here are some interesting numbers about Helios. At least I
+            think they&rsquo;re interesting.<br> <br>39 Projects are
+            listed on the Helios Participating Projects wiki page (many
+            entries in this table include one or more subprojects);
+          </div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Resource Improvements, Top Eclipse Helios Feature #10">
+          <a
+            name="Resource Improvements, Top Eclipse Helios Feature #10"
+            class="norgie"
+            onClick="t('Resource Improvements, Top Eclipse Helios Feature #10','Resource Improvements, Top Eclipse Helios Feature #10a')"></a>
+          <a target="_blank"
+            href="http://eclipsesource.com/blogs/2010/06/10/resource-improvements-helios-feature-10/
+		">Resource Improvements, Top Eclipse Helios Feature #10</a>
+        </div>
+      </td>
+      <td>Ian Bull</td>
+      <td>June 10</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div id="Resource Improvements, Top Eclipse Helios Feature #10a">
+          <div class="item_contents">Pop quiz: Can you name any
+            &lsquo;high quality&lsquo; software that has been
+            consistently delivered on-time, for 8 years in a row?</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div id="Helios Bloghaton: Fun with Eclipse Remote Services - 1">
+          <a
+            name="Helios Bloghaton: Fun with Eclipse Remote Services - 1"
+            class="norgie"
+            onClick="t('Helios Bloghaton: Fun with Eclipse Remote Services - 1','Helios Bloghaton: Fun with Eclipse Remote Services - 1a')"></a>
+          <a target="_blank"
+            href="http://industrial-tsi-wim.blogspot.com/2010/06/helios-bloghaton-fun-with-remote.html
+		">Helios Bloghaton: Fun with Eclipse Remote Services - 1</a>
+        </div>
+      </td>
+      <td>Wim Jongman</td>
+      <td>June 9</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div
+          id="Helios Bloghaton: Fun with Eclipse Remote Services - 1a">
+          <div class="item_contents">In many hotels there is no 13th
+            floor, let alone a room with number 13. Everyone knows that
+            there are 13 steps leading up to the gallows and if you
+            suffer from friggatriskaidekaphobia then you don't like
+            Friday the 13th.</div>
+        </div>
+      </td>
+    </tr>
+
+
+    <tr>
+      <td>
+        <div
+          id="[Helios] Target Platform - how to deal with optional RAP dependencies">
+          <a
+            name="[Helios] Target Platform - how to deal with optional RAP dependencies"
+            class="norgie"
+            onClick="t('[Helios] Target Platform - how to deal with optional RAP dependencies','[Helios] Target Platform - how to deal with optional RAP dependenciesa')"></a>
+          <a target="_blank"
+            href="http://ekkescorner.wordpress.com/2010/06/03/helios-target-platform-how-to-deal-with-optional-rap-dependencies/
+		">[Helios] Target Platform - how to deal with optional RAP
+            dependencies</a>
+        </div>
+      </td>
+      <td>Ekke Gentz</td>
+      <td>June 3</td>
+      <td>English</td>
+    </tr>
+    <tr class="bottomBorder">
+      <td colspan="4">
+        <div
+          id="[Helios] Target Platform - how to deal with optional RAP dependenciesa">
+          <div class="item_contents">If you read about my problems about
+            RAP in the IDE from last months, please cool down: this time
+            I&rsquo;m talking about RAP in the Target Platform as a
+            first Helios review.</div>
+        </div>
+      </td>
+    </tr>
+
+
+
+
+  </table>
+
+</div>
+<div id="rightcolumn">
+  <div class="sideitem">
+    <h6>Helios</h6>
+    <ul id="leftnav">
+      <li><a href="/downloads/packages/release/helios/sr2" target="_self">Download
+          Now</a></li>
+      <li><a href="https://projects.eclipse.org/releases/helios" target="_self">Helios Projects</a></li>
+      <li><a href="/helios/blogathon/reviews.php" target="_self">Blogathon</a></li>
+      <li><a href="/helios/demos.php" target="_self">Demos</a></li>
+      <li><a href="/helios/heliosinaction.php" target="_self">Virtual
+          Conference</a></li>
+      <li><a href="/helios/friends.php" target="_self">Friends of Helios</a></li>
+    </ul>
+
+  </div>
+</div>
\ No newline at end of file
diff --git a/blogathon/guidelines.php b/blogathon/guidelines.php
index a0c3a6a..fbd6816 100644
--- a/blogathon/guidelines.php
+++ b/blogathon/guidelines.php
@@ -1,131 +1,35 @@
-<?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'
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+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");
 
-	#*****************************************************************************
-	#
-	# 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 		= "Review the Eclipse Helios Release";
-	$pageKeywords	= "eclipse, helios, release, review, contest";
-	$pageAuthor		= "Lynn Gayowski";
-	
-	# 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", 1);
-	# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 1);
-
-	# End: page-specific settings
-	#
-	// This file is linked to from lots of different places.
-	// Use absolute paths to make sure that we can actually test
-	// that the file renders properly (i.e. testing using) "/index.php",
-	// and "/home/index.php" both work.
-
-	# Paste your HTML content between the EOHTML markers!	
-	$html = <<<EOHTML
-<div id="maincontent">
-	<div id="midcolumn">
-		<h1>$pageTitle</h1>
-
-		<p>
-		The Eclipse Foundation wants to hear what you think of the <a href="http://eclipse.org/helios/projects.php">Eclipse
-      	projects</a> that are being released as part of Helios.  As an added bonus, all qualified reviewers
-      	will receive an Eclipse t-shirt. One lucky winner will also win a pass to
-      	<a href="http://www.eclipsecon.org/2011/">EclipseCon 2011</a> or
-      	<a href="http://www.eclipsecon.org/summiteurope2010/">Eclipse Summit Europe 2010</a>!
-      	Entries must be received by July 31, 2010 at 4:00 pm EST.
-      	</p>
-
-		<h3>Entry Instructions</h3>
-		<ul>
-		<li>Write a review or record a video review or demo of Helios.</li>
-		<li>Publish your review on your blog, a newsgroup, or portal such as <a href="http://www.eclipsezone.com"
-		target="blank">EclipseZone</a>, <a href="http://www.infoq.com"
-		target="blank">InfoQ</a>, <a href="http://www.javalobby.com" target="blank">Javalobby</a>,
-		<a href="http://www.jaxenter.com" target="blank">Jaxenter</a>,
-		<a href="http://www.theserverside.com" target="blank">The ServerSide</a> or other technology portal</li>
-		<li>Send your name and the link to your review to <a href="mailto:helios.reviews@eclipse.org">helios.reviews@eclipse.org</a></li>
-		</ul>
-		
-		<p>
-		Individuals are allowed to submit multiple entries, but only one prize per person will be awarded.
-		</p> 
-
-  		<img src="blogcollage.png" width="500">  
-  				
-		<h3>Review Guidelines</h3>
-		<ul>
-		<li>A review will be eligible for a prize if it conveys sufficient technical content.</li>
-		<li>Three to five points of what you like or don't like about one or more Helios projects should be enough. Long
-		essays aren't necessary.</li>
-		<li>Eclipse is a global community, so feel free to write or record a review in your native language.</li>
-		<li>You can see last year's <a href="2009reviews.php">winning reviews</a> for examples of what we're looking for</li>
-		</ul>
-      	
-		<h3>Receive a Thank You</h3>
-		<ul>
-		<li>Best review: Full pass to <a href="http://www.eclipsecon.org/2011/">EclipseCon 2011</a> or
-      	<a href="http://www.eclipsecon.org/summiteurope2010/">Eclipse Summit Europe 2010</a></li>
-      	<li>3 top reviews: Eclipse jacket</li>
-		<li>All other qualified reviews get a choice of:
-			<ul>
-				<li><a href="http://www.zazzle.com/eclipseide" target="blank">Eclipse t-shirt</a> printed with a message customized by you</li>
-				<li>Helios t-shirt</li>
-			</ul>
-		</li>				
-		</ul>
-		
-		<a href="http://www.zazzle.com/eclipseide" target="blank"><img src="ZazzleShirt.png" height="160"></a>
-		<a href="tshirt.jpg" target="blank"><img src="tshirt.jpg" height="160"></a>	
-			
-		<p>
-		The best and top reviews will be selected by a panel of judges from the Eclipse community.
-		</p>
-		
-		<p style="font-size:10px">Prizes have no cash value and quantities are limited.
-		The full pass to EclipseCon or Eclipse Summit Europe only covers conference registration and does not 
- 		include travel expenses. The pass is non-transferable and non-refundable, so if you can't go to either
- 		conference or you receive a free pass some other way (as a speaker, for example), 
- 		you won't be able to take advantage of the prize.</font>
- 		</p>
-
-		<h3>Questions?</h3>
-		<p>
-		<a href="mailto:helios.reviews@eclipse.org">helios.reviews@eclipse.org</a>
-		</p>
-		
-		<br><br>
-				
-	</div>
-
-	<!-- remove the entire <div> tag to omit the right column!  -->
-	<div id="rightcolumn">
-		<div class="sideitem">
-			<h6>Related Links</h6>
-			<ul>
-				<li><a href="reviews.php">2010 Helios Reviews</a></li>
-				<li><a href="2010reviews.php">2010 Winning Reviews</a></li>
-				<li><a href="2009reviews.php">2009 Winning Reviews</a></li>
-			</ul>
-		</div>
-	</div>	
-	
-</div>
-
-	
-EOHTML;
+$App = new App();
+$Nav = new Nav();
+$Menu = new Menu();
+include($App->getProjectCommon()); // All on the same line to unclutter the user's desktop'
 
 
-	# Generate the web page
-	$App->generatePage("Nova", $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
\ No newline at end of file
+// Begin: page-specific settings. Change these.
+$pageTitle 		= "Review the Eclipse Helios Release";
+$pageKeywords	= "eclipse, helios, release, review, contest";
+$pageAuthor		= "Lynn Gayowski";
+
+// Place your html content in a file called content/en_pagename.php
+ob_start();
+include("content/en_" . $App->getScriptName());
+$html = ob_get_clean();
+
+# Generate the web page
+$App->AddExtraHtmlHeader('<link type="text/css" href="/helios/blogathon/layout.css" rel="stylesheet"/>');
+$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
diff --git a/blogathon/reviews.php b/blogathon/reviews.php
index c45d3bf..f89c630 100644
--- a/blogathon/reviews.php
+++ b/blogathon/reviews.php
@@ -1,114 +1,34 @@
-<?php  		error_reporting(E_ALL);																												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'
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+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");
 
-	#*****************************************************************************
-	#
-	# sample_3col.php
-	#
-	# Author: 		Denis Roy
-	# Date:			2005-11-07
-	#
-	# Description: Type your page comments here - these are not sent to the browser
-	#
-	#
-	#****************************************************************************
-	
-	#
-	# Begin: page-specific settings.  Change these. 
-	$pageTitle 		= "Helios Reviews";
-	$pageKeywords	= "eclipse, helios, review, blog, blogathon, contest";
-	$pageAuthor		= "Lynn Gayowski";
-	
-	# 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", 1);
-	# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 1);
+$App = new App ();
+$Nav = new Nav ();
+$Menu = new Menu ();
+include ($App->getProjectCommon ()); // All on the same line to unclutter the user's desktop'
 
-	# End: page-specific settings
-	#
-	require_once("scripts/review.php");	
-	# Paste your HTML content between the EOHTML markers!	
-	ob_start();
-	?>	  
-	<script src="/home/scripts/functions.js" type="text/javascript" language="javascript"></script>
+// Begin: page-specific settings. Change these.
+$pageTitle = "Helios Reviews";
+$pageKeywords = "eclipse, helios, review, blog, blogathon, contest";
+$pageAuthor = "Lynn Gayowski";
 
-<div id="maincontent">
-	<div id="fullcolumn">
-	<div id="midcolumn">
-		<link rel="stylesheet" type="text/css" href="layout.css" media="screen" />
+// Place your html content in a file called content/en_pagename.php
+ob_start ();
+include ("content/en_" . $App->getScriptName ());
+$html = ob_get_clean ();
 
-		<h1><?=$pageTitle;?></h1>
-		
-		<p>
-			Members of the Eclipse community are invited to write a review of the
-			<a href="http://eclipse.org/helios/projects.php">Eclipse projects</a> being released as part of Helios
-			and to publish the review on a blog, newsgroup or portal.  Following is a list of links to the
-			reviews that have been submitted to the blogathon.	
-		</p>
-		
-		<p><a href="guidelines.php">See details on the Helios Blogathon</a></p>
-
-		<table  cellpadding="3" cellspacing="0" width="100%">
-			<tr bgcolor=#b599e4>
-				<td><font color="#ffffff"><strong>Link</strong></font></td>
-				<td><font color="#ffffff"><strong>Author</strong></font></td>
-				<td><font color="#ffffff"><strong>Date</strong></font></td>
-				<td><font color="#ffffff"><strong>Language</strong></font></td>
-			</tr>
-		
- 	<? 
-       	$reviewsCatalog = $reviewsParser->reviewsCatalog;
-        $counter = count($reviewsCatalog);
-        $i =0;
-       	while ($i < $counter)
-       	{
-       		$title = mb_convert_encoding(trim(htmlspecialchars($reviewsCatalog[$i][0])), "HTML-ENTITIES", "auto");
-       		$link = mb_convert_encoding($reviewsCatalog[$i][1], "HTML-ENTITIES", "auto");
-       		$author = mb_convert_encoding($reviewsCatalog[$i][2], "HTML-ENTITIES", "auto");
-       		$date = mb_convert_encoding($reviewsCatalog[$i][3], "HTML-ENTITIES", "auto");
-       		$language = mb_convert_encoding($reviewsCatalog[$i][4], "HTML-ENTITIES", "auto");
-			$shortDesc = mb_convert_encoding($reviewsCatalog[$i][5], "HTML-ENTITIES", "auto");
-       		?>
-		       		<tr>
-						<td>
-							<div class="invisible" id="<?=$title;?>"><a name="<?=$title;?>" class="norgie" onClick="t('<?=$title;?>','<?=$title;?>a')"></a>
-								<a target="_blank" href="<?=$link;?>"><?=$title;?></a>
-							</div>
-						</td>
-						<td><?=$author;?></td>
-						<td><?=$date;?></td>
-						<td><?=$language;?></td>
-					</tr>
-					<tr class="bottomBorder">
-						<td colspan="4">
-							<div class="invisible" id="<?=$title;?>a">
-								<div class="item_contents">
-								<?=$shortDesc;?>
-								</div>
-							</div>
-						</td>
-					</tr>
-				
-	
-		<? 
-		$i++;
-       	}
-        ?>        
-       					
-		</table>
-
-	</div>
-	</div>
-
-	<!-- remove the entire <div> tag to omit the right column!  -->
-
-	
-	</div>
-
-	<? 
-	$html = ob_get_contents();
-	ob_end_clean();
-
-	# Generate the web page
-	$App->generatePage("Nova", $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
+// Generate the web page
+$App->AddExtraHtmlHeader ( '<link type="text/css" href="/helios/blogathon/layout.css" rel="stylesheet"/>' );
+$App->generatePage ( NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html );
\ No newline at end of file
diff --git a/blogathon/reviews.xml b/blogathon/reviews.xml
deleted file mode 100644
index b77a3b2..0000000
--- a/blogathon/reviews.xml
+++ /dev/null
@@ -1,610 +0,0 @@
-<reviews>
-	<review>
-		<title>Eclipse Helios</title>
-		<link><![CDATA[http://thecoderlounge.blogspot.com/2010/07/eclipse-helios.html]]></link>
-		<author>Deepak Azad</author>
-		<date>July 31</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Going through the Helios Reviews I see that a number of bloggers have said good things about the new features in JDT :) If you have not yet seen the new features of JDT then check out the 10 minute demo I recorded last month.]]></shortDesc>
-	</review>
-	<review>
-		<title>Helios 2010</title>
-		<link><![CDATA[http://forums.dzone.com/eclipse/2713-helios-2010-a.html#post5709]]></link>
-		<author>Shrikanth NC</author>
-		<date>July 31</date>
-		<language>English</language>
-		<shortDesc><![CDATA[First of all bravo! for the effort especially when i read these lines... from IBM site.. "Helios is the simultaneous release of 39 Eclipse projects. In terms of statistics, the Helios release includes 33 million lines of code developed by about 500 Eclipse.org committers from 44 companies."]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse (Helios) Rocks and a Few Critiques</title>
-		<link><![CDATA[http://blog.architexa.com/2010/07/eclipse-rocks-and-a-few-critiques/]]></link>
-		<author>Vineet Sinha</author>
-		<date>July 30</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Helios has been out for over a month – and we have been using it. Yes, we are a little biased, but when you are working with and leading teams of 10+ developers you need to be practical. There are a number of things that Eclipse does really well, but there are a few things that we would like to see better.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios Mostly Works</title>
-		<link><![CDATA[http://datacute.wordpress.com/2010/07/30/eclipse-helios-mostly-works/]]></link>
-		<author>Stephen Denne</author>
-		<date>July 30</date>
-		<language>English</language>
-		<shortDesc><![CDATA[For development at work, I downloaded and started using Eclipse Helios packaged for J2EE development, wanting to see what I could stumble upon as new or different, and whether I could recommend it to the rest of my team yet without having to describe a whole lot of changes to our practices.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse MarketPlace Another New Part of Eclipse Helios 3.6</title>
-		<link><![CDATA[http://sysdent.net23.net/2010/07/28/eclipse-marketplace-otra-de-las-novedades-de-eclipse-helios-3-6/]]></link>
-		<author>Miguel Antonio Casallas Tarazona</author>
-		<date>July 28</date>
-		<language>Spanish</language>
-		<shortDesc><![CDATA[It is no secret that when we need a full server option we have many in the open source world, but it is generally tends to be one of two: JBoss and Glassfish.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios Review</title>
-		<link><![CDATA[http://patrickspokemonpalace.wordpress.com/2010/07/27/eclipse-helios-review/]]></link>
-		<author>Patrick Poon</author>
-		<date>July 27</date>
-		<language>English</language>
-		<shortDesc><![CDATA[The Eclipse Helios release train has been out for a few weeks now and it’s looking pretty good. Here are some initial thoughts about it.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios Rocks!</title>
-		<link><![CDATA[http://technovergence.blogspot.com/2010/07/eclipse-helios-rocks.html]]></link>
-		<author>Reda Abdi</author>
-		<date>July 27</date>
-		<language>English</language>
-		<shortDesc><![CDATA[As you know the latest eclipse version has been released on June 23, 2010. And for someone like me, who was using Ganymede (Eclipse 3.4), improvements are striking.]]></shortDesc>
-	</review>
-	<review>
-		<title>What&#146;s New in Helios?</title>
-		<link><![CDATA[http://olivier-eclipse.blogspot.com/2010/07/quoi-de-neuf-dans-helios.html]]></link>
-		<author>Olivier Thomann</author>
-		<date>July 27</date>
-		<language>French</language>
-		<shortDesc><![CDATA[The Eclipse Foundation released its new annual version in late June. This year, its name is Helios.  As usual, the delivery was made on the day it was planned for the 10th consecutive year. ]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios - a Whole Year of Goodness</title>
-		<link><![CDATA[http://model-driven-blogging.blogspot.com/2010/07/eclipse-helios-whole-year-of-goodness.html]]></link>
-		<author>Cedric Brun</author>
-		<date>July 27</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Eclipse Helios is a release, but it's also a complete development cycle in a global and distributed team of commiters. Since I choose 3 features I especially liked in Helios this kept bugging me: what is Helios to me? Helios will have its place in my memory, not the bits themselves but good things we had as a community.]]></shortDesc>
-	</review>
-	<review>
-		<title>What Does the Eclipse of a Summer God Mean a Developer?</title>
-		<link><![CDATA[http://cubussapiens.hu/en/2010/07/what-does-the-eclipse-of-a-summer-god-mean-to-me/]]></link>
-		<author>Zoltan Ujhelyi</author>
-		<date>July 26</date>
-		<language>English</language>
-		<shortDesc><![CDATA[A month ago the Eclipse 3.6 shipped – again on time. This is another evolutionary release – most components are binary compatible with the older ones, so the time of the migration was roughly equal to the download. All old favorites, such as Mylyn, EMF, etc. are updated, a lot of features were added, that makes development much easier. Some new components are also added, making a strong basis of the Eclipse eco-system. ]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse 3.6 Hidden Treasures</title>
-		<link><![CDATA[http://blog.zvikico.com/2010/07/eclipse-36-hidden-treasures.html]]></link>
-		<author>Zviki Cohen</author>
-		<date>July 26</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Eclipse 3.6, aka Helios, was released about a month ago. It has become a tradition: this is the time I highlight some of my favorite hidden features in the new release. I focus my article on features which are less obvious, off the beaten path. Features you might not be familiar with if you didn't take the time to read the "new and noteworthy" for this release. ]]></shortDesc>
-	</review>
-	<review>
-		<title>Latest Eclipse release</title>
-		<link><![CDATA[http://suppressingfire.livejournal.com/46558.html]]></link>
-		<author>Michael R. Head</author>
-		<date>July 20</date>
-		<language>English</language>
-		<shortDesc><![CDATA[The latest Eclipse came out on June 23, 2010, and per usual, I'm writing a review to collect a T-shirt in this year's blogathon. The first thing to notice, before even downloading it, there are a couple more packages available.]]></shortDesc>
-	</review>
-	<review>
-		<title>Moving a RCP application from Galileo to Helios: Feedback and Tips</title>
-		<link><![CDATA[http://www.bonitasoft.org/blog/eclipse/moving-a-rcp-application-from-galileo-to-helios-feedback-and-tips/]]></link>
-		<author>Aurelien Pupier</author>
-		<date>July 20</date>
-		<language>English</language>
-		<shortDesc><![CDATA[In this post I’m going to share our experience migrating our RCP product Bonita Open Solution from an Eclipse 3.5.1 to 3.6.0 based platform. There were some issues but we were successful. I will also offer some tips so you can avoid some mistakes and save migration time.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios - New Apply Patch Features</title>
-		<link><![CDATA[http://blog.max.berger.name/2010/07/eclipse-helios-new-apply-patch-features.html]]></link>
-		<author>Max Berger</author>
-		<date>July 18</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Eclipse Helios has a few nice new features for applying patches. In this post I would like to point some of them out.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios and Sun/Oracle Update 21 </title>
-		<link><![CDATA[http://blogs.infosupport.com/blogs/peterhe/archive/2010/07/18/eclipse-helios-and-sun-oracle-update-21.aspx]]></link>
-		<author>Peter Hendriks</author>
-		<date>July 18</date>
-		<language>English</language>
-		<shortDesc><![CDATA[First of all, if you are using any version of Eclipse (3.1-3.6) and are migrating to Sun/Oracle JDK update 21, be wary of this bug: 319514. Basically, Eclipse checks if the VM is Sun to add a "PermSize" flag, but now it is renamed to Oracle and the check no longer works. ]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios Released: What It Doesn&#146;t Have</title>
-		<link><![CDATA[http://misto.ch/eclipse-helios-released-what-it-doesnt-have/]]></link>
-		<author>Mirko Stocker</author>
-		<date>July 17</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Many good reviews already cover all the nice new features that are in Eclipse Helios, so I’m going to show you a three annoyances that have been bothering me for years and are still not fixed in Helios. And these aren’t things like the high memory consumption or the sluggish interface.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios and Java 1.6u21 Deadlocks</title>
-		<link><![CDATA[http://blog.max.berger.name/2010/07/eclipse-helios-and-java-16u21-deadlocks.html]]></link>
-		<author>Max Berger</author>
-		<date>July 17</date>
-		<language>English</language>
-		<shortDesc><![CDATA[I wanted to write a post about the new Eclipse Helios, which was just released to participate in the Helios Blogathon. So, on my personal machine, I installed the newest JDK (1.6u21), the new eclipse, started it up, tried to work with it and after a few seconds.... It just hangs!]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios</title>
-		<link><![CDATA[http://www.netgautam.com/wordpress/2010/07/16/eclipse-helios/]]></link>
-		<author>Nitesh Gautam</author>
-		<date>July 16</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Eclipse has always been my preferred IDE for application design and development. There have always been my interest in new developments going behind the scenes on eclipse evolution. The latest version of Eclipse, named as Helios, has been released this year on June 23, named as Eclipse Helios.]]></shortDesc>
-	</review>
-	<review>
-		<title>The Helios Year in Retrospect</title>
-		<link><![CDATA[http://eclipsehowl.wordpress.com/2010/07/14/the-helios-year-in-retrospect/]]></link>
-		<author>Holger Voorman</author>
-		<date>July 14</date>
-		<language>English</language>
-		<shortDesc><![CDATA[My neighbor should have been back from Malaysia this summer, but the IT project that's behind his sojourn in these exotic spheres is delayed. The still indefinitely vacant apartment reminds me of how nice my life is. And I’m not referring to the silence next-door, but to the fact that I, as an Eclipse developer, can rely on the 5th Eclipse Release Train arriving on time. For trains, and especially for software projects, this is not yet self-evident even in the year 2010.]]></shortDesc>
-	</review>
-	<review>
-		<title>The Juggernaut of Eclipse Helios Arrives</title>
-		<link><![CDATA[http://codifyit.blogspot.com/2010/07/juggernaut-of-eclipse-helios-arrives.html]]></link>
-		<author>Saurav Sarkar</author>
-		<date>July 12</date>
-		<language>English</language>
-		<shortDesc><![CDATA[This is that time of year, when the Eclipse community comes up with its brand new release. Last year i wrote about Galileo, this time much awaited Helios comes into the limelight.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios  - Install all your Eclipse Plugins from Eclipse MarketPlace</title>
-		<link><![CDATA[http://techsymphony.wordpress.com/2010/07/11/eclipse-helios-install-all-your-eclipse-plugins-from-eclipse-marketplace/]]></link>
-		<author>Maniganda Prakash</author>
-		<date>July 11</date>
-		<language>English</language>
-		<shortDesc><![CDATA[No more remembering eclipse plugins' url. I know how difficult it is to find the url of each eclipse plugin and install it via ‘Install New Software’. Especially if you are behind office firewall you cannot install those plugins. Eclipse Helios has resolved those problems introducing ‘Eclipse MarketPlace’.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios Gets Cozy with Your OS</title>
-		<link><![CDATA[http://blog.zvikico.com/2010/07/eclipse-helios-gets-cozy-with-your-os.html]]></link>
-		<author>Zviki Cohen</author>
-		<date>July 7</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Let's start with two, non trivial, claims: (a) native apps are not dead yet (OS native, as opposed to web apps), (b) people prefer the native apps. ]]></shortDesc>
-	</review>
-	<review>
-		<title>Riena 2.0 on Board the Eclipse Helios Release Train</title>
-		<link><![CDATA[http://www.compeople.eu/blog/?p=216]]></link>
-		<author>Michael Bordach</author>
-		<date>July 7</date>
-		<language>English</language>
-		<shortDesc><![CDATA[The Riena project team has just released the Riena platform 2.0 as part of Eclipse Helios. Thanks and congratulations to everyone who helped manage this Eclipse Release out the door in high quality and on time again! To dive into Riena’s detailed technical release notes, you may hop to Riena New And Noteworthy. With this post I present a rough overview of new and optimized features.]]></shortDesc>
-	</review>
-	<review>
-		<title>Discovery and AMP</title>
-		<link><![CDATA[http://milesparker.blogspot.com/2010/07/discovery-and-amp.html?utm_source=feedbur]]></link>
-		<author>Miles Parker</author>
-		<date>July 5</date>
-		<language>English</language>
-		<shortDesc><![CDATA[One of my favorite new features in Eclipse Helios is not really about the Eclipse tools at all but how users get those tools.]]></shortDesc>
-	</review>
-	<review>
-		<title>3 Good Reasons to use the Helios Modeling Package</title>
-		<link><![CDATA[http://model-driven-blogging.blogspot.com/2010/06/helios-review-in-pictures.html]]></link>
-		<author>Cedric Brun</author>
-		<date>July 5</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Now that the entire world noticed that I don't know even one thing about soccer and I'm even trying to cheat, I should get back in sharing what I understand instead of those silly forecasts. Helios has been out for a little while now, the mediatic storm is pretty much gone and it's a good time for me to have a look back. ]]></shortDesc>
-	</review>
-	<review>
-		<title>Helios - Eclipse 3.6</title>
-		<link><![CDATA[http://maruhgar.blogspot.com/2010/07/helios-eclipse-36.html]]></link>
-		<author>Raghuram Bharathan</author>
-		<date>July 5</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Helios is the God of the Sun. It is also the codename for the 2010 release of Eclipse, arguably the most popular development environment for java programming language. As a user of Eclipse for the last six years of so, I did not lose time downloading Helios once it became publicly available.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios: 5 JDT Improvements</title>
-		<link><![CDATA[http://blog.firdau.si/2010/07/02/eclipse-helios-5-jdt-improvements/]]></link>
-		<author>Nanda Firdausi</author>
-		<date>July 2</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Helios has been released. This simultaneous release includes more projects but many people still regard Eclipse as Java IDE. So in this post, I want to share the most important JDT improvements that I think will be loved by most Java developers.]]></shortDesc>
-	</review>
-	<review>
-		<title>10 New Features which I Liked the Most in Eclipse Helios</title>
-		<link><![CDATA[http://www.techsagar.com/2010/07/10-new-features-which-i-liked-the-most-in-eclipse-helios-3-6-2/]]></link>
-		<author>Prasanna LM</author>
-		<date>July 1</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Last week Eclipse foundation delivered their 2010 installment i.e., the 3.6 version of Eclipse code named Helios. It was the largest release from Eclipse community so far as it involved 39 different project teams & 33 million lines of code (as per the data available in the official Eclipse web page). Helios comes with lots of new & interesting features and caters to the varying needs of the Software Development community.]]></shortDesc>
-	</review>
-	<review>
-		<title>OSGi Console in Helios, Monkey See/Monkey Do and a Strange Loop</title>
-		<link><![CDATA[http://blog.wolfgang-werner.net/osgi-console-in-helios-monkey-see-monkey-do-and-a-strange-loop/]]></link>
-		<author>Wolfgang Werner</author>
-		<date>June 29</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Helios comes with an OSGi console that is accessible from the GUI directly. This reminded me of the existence of an API to add custom commands to the console. I found this to be a simple and powerful concept; yet I perceive this feature to be rarely used in practice.]]></shortDesc>
-	</review>
-	<review>
-		<title>Acceleo 3.0.0 is released!</title>
-		<link><![CDATA[http://freddyallilaire.blogspot.com/2010/06/acceleo-300-is-released.html]]></link>
-		<author>Freddy Allilaire</author>
-		<date>June 29</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Acceleo 3.0 has just been released and it comes with compatibility with Eclipse 3.4, 3.5 and the latest 3.6 versions. Acceleo 3.0 is a pragmatic implementation of the OMG Model-to-text specification.]]></shortDesc>
-	</review>	
-	<review>
-		<title>RAP and Eclipse Helios in a Minute</title>
-		<link><![CDATA[http://eclipsesource.com/blogs/2010/06/28/rap-and-eclipse-helios-in-a-minute/]]></link>
-		<author>Holger Staudacher</author>
-		<date>June 28</date>
-		<language>English</language>
-		<shortDesc><![CDATA[As part of the new Eclipse Helios, the Rich Ajax Platform project released version 1.3. If you’d like to know what is new in RAP 1.3, here’s a short screencast.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse 3.6 - Helios</title>
-		<link><![CDATA[http://www.programmez.com/actualites.php?titre_actu=Eclipse-36---Helios&id_actu=7778]]></link>
-		<author>Frederic Mazue</author>
-		<date>June 24</date>
-		<language>French</language>
-		<shortDesc><![CDATA[Eclipse 3.6, codenamed Helios has just arrived. 490 Eclipse contributors have worked on this release, which includes more than 100 that are independent (as opposed to 900 active contributors) and 44 companies that were involved and collaborate on this open source project.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios Release Leaves Java Developers Spoilt for Choice</title>
-		<link><![CDATA[http://eclipse.dzone.com/articles/eclipse-helio-release-leaves]]></link>
-		<author>James Sugrue</author>
-		<date>June 24</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Yesterday's release of Helios shows how Java developers are now truly spoilt for choice when it comes to IDEs. Following on the NetBeans 6.9 release  last week, Eclipse 3.6 is the most complete release so far, incorporating 39 projects. ]]></shortDesc>
-	</review>
-	<review>
-		<title>Getting Acquainted: Eclipse Marketplace - All Popular Plug-ins in One Place</title>
-		<link><![CDATA[http://samolisov.blogspot.com/2010/06/eclipse-marketplace.html]]></link>
-		<author>Pavel Samolisov</author>
-		<date>June 24</date>
-		<language>Russian</language>
-		<shortDesc><![CDATA[As part of the Eclipse Helios release, a single repository of plugins as well as applications built on the Eclipse RCP platform and services provided by the platform, was launched.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios: Where Programming and Modeling Merge Even More</title>
-		<link><![CDATA[http://it-republik.de/jaxenter/artikel/Eclipse-Helios-Wie-Programmierung-und-Modellierung-immer-mehr-verschmelzen-3166.html]]></link>
-		<author>Jan Koehnlein</author>
-		<date>June 24</date>
-		<language>German</language>
-		<shortDesc><![CDATA[The fact that e4, the next generation of Eclipse, is substantially based on EMF shows the importance of modeling within the Eclipse project. Therefore, it is not surprising that the majority of the 39 participating projects in Helios come from the Eclipse Modeling Top-Level-Project. Let´s take a closer look at some of the more important new features.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclise Helios - A Few Interesting Features!</title>
-		<link><![CDATA[http://eclipse-info.blogspot.com/2010/06/eclipse-helios-few-interesting-features.html]]></link>
-		<author>Madhu Samuel</author>
-		<date>June 24</date>
-		<language>English</language>
-		<shortDesc><![CDATA[A year old wait is over. Helios is out in the wild. Today morning, I downloaded Helios. Oops, my friend of eclipse download link got stuck. I went to the download link for the common public - eclipse.org/downloads. There goes the Helios Modeling Package.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse 3.6 Release - Helios</title>
-		<link><![CDATA[http://linuxfr.org/2010/06/23/27041.html]]></link>
-		<author>Cedric Brun</author>
-		<date>June 23</date>
-		<language>French</language>
-		<shortDesc><![CDATA[Eclipse Helios finally arrived after a year of expectation, on June 23.]]></shortDesc>
-	</review>
-	<review>
-		<title>Enter the New Eclipse - Helios</title>
-		<link><![CDATA[http://www.dzone.com/links/r/enter_the_new_eclipse_helios.html]]></link>
-		<author>Ian Elliot</author>
-		<date>June 23</date>
-		<language>English</language>
-		<shortDesc><![CDATA[The sun has just set on Galileo, the previous version of the Eclipse IDE, and risen on Helios  the latest version. It promises to be more stable, but its help and documentation are a big disappointment.]]></shortDesc>
-	</review>	
-	<review>
-		<title>Git in Eclipse</title>
-		<link><![CDATA[http://eclipse.dzone.com/articles/git-eclipse]]></link>
-		<author>Mitchell Pronschinske</author>
-		<date>June 23</date>
-		<language>English</language>
-		<shortDesc><![CDATA[With today's release of Helios (Eclipse 3.6), the developers of EGit and JGit have finalized (a week early) version 0.8.4 for the Eclipse platform update.  The incubating Git support in Eclipse was ranked #2 among new 3.6 platform additions by developer Ian Bull. ]]></shortDesc>
-	</review>	
-	<review>
-		<title>EclipseLink 2.1.0 Helios Release Now Available</title>
-		<link><![CDATA[http://eclipselink.blogspot.com/2010/06/eclipselink-210-helios-release-now.html]]></link>
-		<author>Peter Krogh and Douglas Clarke</author>
-		<date>June 23</date>
-		<language>English</language>
-		<shortDesc><![CDATA[It is with great pleasure that I would like to announce the release of EclipseLink 2.1.0 (Helios). This release of brings a number of exciting features many of which were voted on, and chosen by the community.]]></shortDesc>
-	</review>
-	<review>
-		<title>Linux Tools 0.6 Released as Part of Helios</title>
-		<link><![CDATA[http://overholt.ca/wp/?p=177]]></link>
-		<author>Andrew Overholt</author>
-		<date>June 23</date>
-		<language>English</language>
-		<shortDesc><![CDATA[The Eclipse Linux Tools project is pleased to announce our 0.6 release which is a part of the Eclipse Simultaneous Release known this year as Helios.]]></shortDesc>
-	</review>
-	<review>
-		<title>WTP 3.2 Released</title>
-		<link><![CDATA[http://eclipse.org/webtools/releases/3.2.0/]]></link>
-		<author>Webtools News</author>
-		<date>June 23</date>
-		<language>English</language>
-		<shortDesc><![CDATA[The Web Tools Platform's 3.2 release is now available!. WTP 3.2 adds support for creating, running, and debugging applications using Java EE 6, including Servlet 3.0, JPA 2.0, JSF 2.0, EJB 3.1, and JAX-RS 1.1 technologies, plus deployment to updated server runtimes, and support for XPath 2.0.]]></shortDesc>
-	</review>
-	<review>
-		<title>BIRT 2.6 Released</title>
-		<link><![CDATA[http://birtworld.blogspot.com/2010/06/birt-26-released.html]]></link>
-		<author>Jason Weathersby</author>
-		<date>June 23</date>
-		<language>English</language>
-		<shortDesc><![CDATA[BIRT 2.6 is now available and with this release many improvements and new features are available. Charting with BIRT has been improved adding support for a Radar/Polar chart type, palette hash patterns, better JPG quality, and improved SVG to PDF support.]]></shortDesc>
-	</review>
-	<review>
-		<title>Helios: The Train Has Arrived</title>
-		<link><![CDATA[http://ianskerrett.wordpress.com/2010/06/23/helios-the-train-has-arrived/]]></link>
-		<author>Ian Skerrett</author>
-		<date>June 23</date>
-		<language>English</language>
-		<shortDesc><![CDATA[The Eclipse Helios release is now available for download.  Each year I am amazed how the Eclipse community is release on such a predictable schedule.  Congratulations to all that help make it happen.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios: What&#146;s New in JDT</title>
-		<link><![CDATA[http://it-republik.de/jaxenter/artikel/Eclipse-Helios-Was-gibt%92s-Neues-in-JDT-3162.html]]></link>
-		<author>Marc Teufel</author>
-		<date>June 23</date>
-		<language>German</language>
-		<shortDesc><![CDATA[Helios is the fifth so-called simultaneous release of the Eclipse Foundation. Following Callisto, Europa, Ganymede and Galileo, the Helios release comprises 39 different Eclipse projects – and like every year, both the Eclipse Platform and the Java Development Tools (JDT) are back in updated versions. Let's dive into and have a look at what's new in JDT.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios Simultaneous Release</title>
-		<link><![CDATA[http://www.infoq.com/news/2010/06/eclipse-helios]]></link>
-		<author>Alex Blewitt</author>
-		<date>June 23</date>
-		<language>English</language>
-		<shortDesc><![CDATA[The Eclipse foundation today announced the release of Eclipse Helios, bringing 39 different projects to the same station for the seventh annual release train. The Eclipse projects are managed in an agile fashion, releasing seven milestone builds throughout the year and then a number of release candidates in the weeks leading up to June each year. Instead of varying the delivery dates, the Eclipse projects vary the content in each milestone whilst focussing on the quality and backward compatibility.]]></shortDesc>
-	</review>
-	<review>
-		<title>Top 10 Eclipse Helios Features</title>
-		<link><![CDATA[http://eclipsesource.com/blogs/2010/06/23/top-10-eclipse-helios-features/]]></link>
-		<author>Ian Bull</author>
-		<date>June 23</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Two weeks ago I asked you to think about high quality software that has been consistently delivered on-time. Think about software that is used by millions of people world-wide, built by hundreds of developers, free to use and open to everybody and anybody. Think about software that spans domains, runs on the smallest of devices and powers the worlds largest enterprises.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse 3.6</title>
-		<link><![CDATA[http://www.inforw.de/content/doku.php/blog/277]]></link>
-		<author>Rainer Weinhold</author>
-		<date>June 23</date>
-		<language>German</language>
-		<shortDesc><![CDATA[Eclipse 3.6 is now released! I've worked for about a week now with the last RC and am very satisfied.  So far everything is stable and above all, the features work on Windows 7.]]></shortDesc>
-	</review>
-	<review>
-		<title>Let&#146;s See What&#146;s New in Eclipse 3.6 </title>
-		<link><![CDATA[http://samolisov.blogspot.com/2010/05/eclipse-36.html]]></link>
-		<author>Pavel Samolisov</author>
-		<date>June 23</date>
-		<language>Russian</language>
-		<shortDesc><![CDATA[Today the Eclipse  development team has promised to collect the first release candidate of the new version of this wonderful IDE  and platform. Almost a year ago, I took the trouble to write about what's new in Eclipse Galileo, and now I'll tell you about the new version - Eclipse Helios. ]]></shortDesc>
-	</review>
-	<review>
-		<title>Helios Adds New Fire to Eclipse</title>
-		<link><![CDATA[http://www.dzone.com/links/r/helios_adds_new_fire_to_eclipse.html]]></link>
-		<author>Mitchell Pronschinske</author>
-		<date>June 23</date>
-		<language>English</language>
-		<shortDesc><![CDATA[It's that time again!  The annual updating of numerous Eclipse platform projects and the classic IDE that made it ubiquitous.  Eclipse 3.6 "Helios" is more than just a new IDE release, this year it consists of 39 Eclipse projects from SOA tooling, to a 'marketplace' client for Eclipse plugins, to a platform for mobile development.  ]]></shortDesc>
-	</review>	
-	<review>
-		<title>A Review of Eclipse Helios</title>
-		<link><![CDATA[http://willcode4beer.com/opinion.jsp?set=helios_review]]></link>
-		<author>Paul Davis</author>
-		<date>June 22</date>
-		<language>English</language>
-		<shortDesc><![CDATA[ As a Friends of Eclipse so, it turns out, I'm able to download the latest version, Helios, a day early. The first thing I decided to do was create a new workspace (just in case). ]]></shortDesc>
-	</review>
-	<review>
-		<title>Git Support, Top Eclipse Helios Feature #2</title>
-		<link><![CDATA[http://eclipsesource.com/blogs/2010/06/22/git-support-eclipse-helios-feature-2/]]></link>
-		<author>Ian Bull</author>
-		<date>June 22</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Only 1 more day until Eclipse Helios is release and we are down to my Top 2 features. Over the life of Eclipse (Jeff McAffer tells me that he’s been working on Eclipse since 1999) a lot has changed. Eclipse started its life inside OTI/IBM. In November 2001 the Eclipse Consortium was announced and Eclipse was released as ‘Open Source’. For the next few years Eclipse grew, but was still mostly supported by a few large companies.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios RC4 Review</title>
-		<link><![CDATA[http://tarlogonjava.blogspot.com/2010/06/eclipse-helios-rc4-review.html]]></link>
-		<author>Michael Elman</author>
-		<date>June 22</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Some time ago I have downloaded the JEE edition of the Eclipse Helios RC4. And here comes a review in order to win a Helios t-shirt. I'll start with bugs I found till now. I didn't find many. Continue with features I still miss, and try to end with some positive note about the features I liked.]]></shortDesc>
-	</review>
-	<review>
-		<title>EMF, Riena and RAP Integration, Top Eclipse Helios Feature #3</title>
-		<link><![CDATA[http://eclipsesource.com/blogs/2010/06/21/emf-riena-and-rap-integration-top-eclipse-helios-feature-3/]]></link>
-		<author>Ian Bull</author>
-		<date>June 21</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Well here we are, it’s release week. Eclipse 3.6 — Helios — will be available on Wednesday June 23rd. It also means that I’m into my Top 3 features for this years release. For the past 7 days I’ve been presenting some of the New and  Noteworthy  features  of  this  years  release.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Mania is Back with Helios</title>
-		<link><![CDATA[http://blog.suranaamit.com/2010/06/eclipse-mania-is-back-with-helios.html]]></link>
-		<author>Amit Surana</author>
-		<date>June 20</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Last year around the same time I blogged  about new upcoming release of Eclipse Galileo. An year has passed since then and Eclipse is back again with new version called Helios which will be released on June 23rd. Eclipse as Wayne Beaton says is more than just an IDE. Eclipse initially may have started off as an IDE, but today Eclipse has evolved into a platform.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse 3.6 (Helios)</title>
-		<link><![CDATA[http://cana.web.id/blog/eclipse-3-6-helios.CanA]]></link>
-		<author>Rencana Tarigan</author>
-		<date>June 19</date>
-		<language>Indonesian</language>
-		<shortDesc><![CDATA[It's already been a year since the Eclipse Galileo was launched. The new version of Eclipse is Eclipse 3.6 with the name "Helios". It will be released on June 23, 2010.]]></shortDesc>
-	</review>
-	<review>
-		<title>MarketPlace Client, Top Eclipse Helios Feature #4</title>
-		<link><![CDATA[http://eclipsesource.com/blogs/2010/06/18/mpc_eclipse_helios_feature_4/]]></link>
-		<author>Ian Bull</author>
-		<date>June 18</date>
-		<language>English</language>
-		<shortDesc><![CDATA[As most of you know, Eclipse Helios  will be released next week.  For regular readers of my blog (and PlanetEclipse.org), you know that I’ve been counting down some of the new  features  available  in  this release. During this series I have received comments (both in the comment fields, and on places like twitter) that essentially read: I really like Eclipse except it doesn’t have an editor for XYZ. Or, when I get the following package, it has feature ABC which I don’t want. Obviously we can’t please all the people all of the time.]]></shortDesc>
-	</review>
-	<review>
-		<title>Awesomeness in Helios</title>
-		<link><![CDATA[http://delaltctrl.blogspot.com/2010/06/awesomeness-in-helios.html]]></link>
-		<author>Del Myers</author>
-		<date>June 18</date>
-		<language>English</language>
-		<shortDesc><![CDATA[There was a recent post by Wayne about how Eclipse is an IDE Platform. For all practical purposes, that is the way that I use it. But what is really awesome about Eclipse as an IDE platform is that it is an IDE platform that just keeps improving.]]></shortDesc>
-	</review>
-	<review>
-		<title>p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5</title>
-		<link><![CDATA[http://eclipsesource.com/blogs/2010/06/17/p2-api-and-the-b3-aggregator-top-eclipse-helios-feature-5/]]></link>
-		<author>Ian Bull</author>
-		<date>June 17</date>
-		<language>English</language>
-		<shortDesc><![CDATA[The official Helios release is less than 1 week away, and we are now into the Top 5 Features that I’m most excited about. Over the past week I’ve been highlighting some of upcoming features of the Eclipse Helios release. These features include: improvements to the Java Development Tools, Plug-in Development Environment, API Tools and the  Eclipse Platform. Number 5 on my Top 10 List is: p2 API and the b3 Aggregator.]]></shortDesc>
-	</review>
-	<review>
-		<title>Customizing Error Messages in Xtext 1.0</title>
-		<link><![CDATA[http://zarnekow.blogspot.com/2010/06/customizing-error-messages-in-xtext-10.html]]></link>
-		<author>Sebastian Zarenkow</author>
-		<date>June 17</date>
-		<language>English</language>
-		<shortDesc><![CDATA[As the Eclipse Helios Release is around the corner I'll use the chance to describe some nice odds and ends in Xtext 1.0. One of which is a newly introduced API that allows to customize the default messages for parse errors and linking diagnostics.]]></shortDesc>
-	</review>
-	<review>
-		<title>Points of Conditional Debugging in Eclipse Helios 3.6</title>
-		<link><![CDATA[http://sysdent.net23.net/2010/06/17/puntos-de-depuracion-condicionales-en-eclipse-helios-36/]]></link>
-		<author>Miguel Antonio Casallas Tarazona</author>
-		<date>June 17</date>
-		<language>Spanish</language>
-		<shortDesc><![CDATA[Clearly, under perfect conditions a software application would never have unexpected behavior, and would always behave according to guidelines, would never fail and would never have any bugs.]]></shortDesc>
-	</review>
-	<review>
-		<title>Target Platform Improvements, Top Eclipse Helios Feature #6</title>
-		<link><![CDATA[http://eclipsesource.com/blogs/2010/06/16/target-platform-improvements-top-eclipse-helios-feature-6/]]></link>
-		<author>Ian Bull</author>
-		<date>June 16</date>
-		<language>English</language>
-		<shortDesc><![CDATA[There are three large groups of artifacts that play a key role while writing software. There are the tools you use, the code you write and the libraries you depend on. There is a large body of research studying the cognitive support provided by software development tools. There is also a number of tool centric development models. Facilities like Yoxos and the Eclipse Market Place help you manage these tool chains.]]></shortDesc>
-	</review>
-	<review>
-		<title>New and noteworthy in Helios (Eclipse 3.6)</title>
-		<link><![CDATA[http://devdesignandstuff.blogspot.com/2010/06/new-and-noteworthy-in-helios-eclipse-36.html]]></link>
-		<author>Supriya Thengdi</author>
-		<date>June 15</date>
-		<language>English</language>
-		<shortDesc><![CDATA[I was just going through the latest build of Helios (eclipse 3.6) and thought a sharing of some new features is in order. For those who haven't heard what Helios is about, I suggest you go through the eclipse helios homepage.]]></shortDesc>
-	</review>	
-	<review>
-		<title>Java IDE Improvements, Top Eclipse Helios Feature #7</title>
-		<link><![CDATA[http://eclipsesource.com/blogs/2010/06/15/java-ide-improvements-top-eclipse-helios-feature-7/]]></link>
-		<author>Ian Bull</author>
-		<date>June 15</date>
-		<language>English</language>
-		<shortDesc><![CDATA[As Eclipse committers, we spend lots of time emphasizing that Eclipse is not just an Integrated Development Environment. Eclipse is a framework, a tooling platform, a collection of run-time technologies, an eco-system, etc… However, at the end of the day, an IDE is the primary use of Eclipse for many people.]]></shortDesc>
-	</review>
-	<review>
-		<title>A Tour of Eclipse Helios</title>
-		<link><![CDATA[https://www.ibm.com/developerworks/opensource/library/os-eclipse-helios/]]></link>
-		<author>Chris Aniszczyk</author>
-		<date>June 15</date>
-		<language>English</language>
-		<shortDesc><![CDATA[The Eclipse Helios simultaneous release of 39 Eclipse projects and 33 million lines of code showcases the diversity and innovation going on inside the Eclipse ecosystem. Get an overview of several projects, along with resources to find out more information.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse 3.6 (Helios) – A Quick Look</title>
-		<link><![CDATA[http://aniruddhchitre.wordpress.com/2010/06/15/eclipse-3-6-helios-a-quick-look/]]></link>
-		<author>Aniruddh Chitre</author>
-		<date>June 15</date>
-		<language>English</language>
-		<shortDesc><![CDATA[The Eclipse 3.6 (Helios) release is nearing and as always its pretty exciting. The 3.x releases have all added a lot of features which make Java and J2EE development much more easier, exciting and fun. So I decided to try it out and write about some of the new features it has. I primarily use Eclipse for J2EE so my review is more focussed on JDT and Java related features.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios Preview for Java Developers</title>
-		<link><![CDATA[http://stronglytypedblog.blogspot.com/2010/06/eclipse-helios-preview-for-java.html]]></link>
-		<author>Nick Wiedenbrueck</author>
-		<date>June 14</date>
-		<language>English</language>
-		<shortDesc><![CDATA[The final release of the new Eclipse 3.6 - Helios is coming close on June 23. Here is a short overview of some of the new features for Java developers.]]></shortDesc>
-	</review>
-	<review>
-		<title>Eclipse Helios (3.6 RC4)</title>
-		<link><![CDATA[http://www.matthicks.com/2010/06/eclipse-helios-36-rc4.html]]></link>
-		<author>Matt Hicks</author>
-		<date>June 14</date>
-		<language>English</language>
-		<shortDesc><![CDATA[I've been a user of Eclipse for many years now and when I saw there was a free t-shirt to be had by reviewing the newest release there was only one choice to make. :) <br><br>The download is exactly the same as all previous releases but the first thing that struck me was the startup time. ]]></shortDesc>
-	</review>
-	<review>
-		<title>Improvements to API Tools, Top Eclipse Helios Feature #8</title>
-		<link><![CDATA[http://eclipsesource.com/blogs/2010/06/14/api_tools_top_eclipse_helios_feature_8/]]></link>
-		<author>Ian Bull</author>
-		<date>June 14</date>
-		<language>English</language>
-		<shortDesc><![CDATA[I’ve been thinking a lot lately about what defines an Eclipse project? Not in the literal sense (a project hosted at eclipse.org that follows the EDP), but rather, what technical qualities do all Eclipse projects share.]]></shortDesc>
-	</review>
-	<review>
-		<title>New Features in Eclipse 3.6 (Helios)</title>
-		<link><![CDATA[http://rajakannappan.blogspot.com/2010/05/new-features-in-eclipse-36-helios.html]]></link>
-		<author>Raja Kannappan</author>
-		<date>June 13</date>
-		<language>English</language>
-		<shortDesc><![CDATA[There are many interesting features coming up in Eclipse  3.6 code named as Helios . Below, I will discuss about some of these features which I came across.]]></shortDesc>
-	</review>
-	<review>
-		<title>Review Eclipse Helios RC4</title>
-		<link><![CDATA[http://tux2323.blogspot.com/2010/06/review-eclipse-helios-rc4.html]]></link>
-		<author>Christian Baranowski</author>
-		<date>June 13</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Eclipse Helios is the annual release of Eclipse projects in 2010; this year 39 projects are part of the release. And here is my first contribution to the Helios Blogathon, more details on the Blogathon can be found here. Helios is the code name for this year collecting Eclipse release. The idea of such a release is to be simultaneously release a large quantity of eclipse sub projects at the same time. This gives the user an Eclipse platform with well-coordinated projects, which works together.]]></shortDesc>
-	</review>
-	<review>
-		<title>Feature Based Configurations, Top Eclipse Helios Feature #9</title>
-		<link><![CDATA[http://eclipsesource.com/blogs/2010/06/11/feature-based-configurations-top-eclipse-helios-feature-9/]]></link>
-		<author>Ian Bull</author>
-		<date>June 11</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Yesterday  I asked you to think about high-quality software that has been consistently delivered on-time  for eight straight years. To make this quiz more challenging, this software should be installed on millions  of users’ desktops.]]></shortDesc>
-	</review>
-	<review>
-		<title>Helios By the Numbers</title>
-		<link><![CDATA[http://dev.eclipse.org/blogs/wayne/2010/06/11/helios-by-the-numbers/]]></link>
-		<author>Wayne Beaton</author>
-		<date>June 11</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Here are some interesting numbers about Helios. At least I think they’re interesting.<br><br>39 Projects are listed on the Helios Participating Projects wiki page (many entries in this table include one or more subprojects);]]></shortDesc>
-	</review>
-	<review>
-		<title>Resource Improvements, Top Eclipse Helios Feature #10</title>
-		<link><![CDATA[http://eclipsesource.com/blogs/2010/06/10/resource-improvements-helios-feature-10/]]></link>
-		<author>Ian Bull</author>
-		<date>June 10</date>
-		<language>English</language>
-		<shortDesc><![CDATA[Pop quiz: Can you name any ‘high quality‘ software that has been consistently delivered on-time, for 8 years in a row?]]></shortDesc>
-	</review>	
-	<review>
-		<title>Helios Bloghaton: Fun with Eclipse Remote Services - 1</title>
-		<link><![CDATA[http://industrial-tsi-wim.blogspot.com/2010/06/helios-bloghaton-fun-with-remote.html]]></link>
-		<author>Wim Jongman</author>
-		<date>June 9</date>
-		<language>English</language>
-		<shortDesc><![CDATA[In many hotels there is no 13th floor, let alone a room with number 13. Everyone knows that there are 13 steps leading up to the gallows and if you suffer from friggatriskaidekaphobia  then you don't like Friday the 13th.]]></shortDesc>
-	</review>
-	<review>
-		<title>[Helios] Target Platform - how to deal with optional RAP dependencies</title>
-		<link><![CDATA[http://ekkescorner.wordpress.com/2010/06/03/helios-target-platform-how-to-deal-with-optional-rap-dependencies/]]></link>
-		<author>Ekke Gentz</author>
-		<date>June 3</date>
-		<language>English</language>
-		<shortDesc><![CDATA[If you read about my problems about RAP in the IDE from last months, please cool down: this time I’m talking about RAP in the Target Platform as a first Helios review.]]></shortDesc>
-	</review>
-</reviews>
\ No newline at end of file
diff --git a/blogathon/scripts/review.php b/blogathon/scripts/review.php
deleted file mode 100644
index 8ea3e99..0000000
--- a/blogathon/scripts/review.php
+++ /dev/null
@@ -1,101 +0,0 @@
-<?php
-
-class ReviewsParser {
- 	
- 	var $reviewsCatalog = array();
- 	
- 	var $insideItem = false;
- 	var $tag = "";
- 	var $title = "";
- 	var $link = "";
- 	var $date = "";
- 	var $author = "";
- 	var $language = "";
- 	var $shortDesc = "";
- 	
- 	
-	function add_review(& $review) {
-		$this->reviewsCatalog[] = $review;
-	}
- 	
- 	
- 	function startElement($parser, $tagName, $attribs)
- 	{
- 		global $insideItem, $tag;
- 		if ($insideItem) {
- 			$tag = $tagName;
- 		}
- 		elseif ($tagName = "REVIEW")
- 		{
- 			$insideItem = TRUE;
- 		}
- 	
- 	}
- 	
- 	function endElement($parser, $tagName) 
- 	{
- 		global $reviewsCatalog, $insideItem;
-
- 		if ($tagName == "REVIEW")
- 		{
- 			$reviewsTemp = array($this->title, $this->link, $this->author, $this->date, $this->language, $this->shortDesc);
-
- 			$this->add_review($reviewsTemp);
- 			$this->title = "";
- 			$this->link = "";
- 			$this->author = "";
- 			$this->date ="";
- 			$this->language="";
- 			$this->shortDesc="";
- 			$this->insideitem = FALSE;
- 		}
- 	}
- 	
- 	function characterData($parser, $data)
- 	{
- 		
- 		global $insideItem, $tag;
-  		
- 		if ($insideItem)
- 		{
- 			switch ($tag) {
-				case "TITLE":
-						$this->title .= $data;
-					break;
-				case "LINK":
-						$this->link .= $data;
-					break;
-				case "AUTHOR":
-						$this->author .= $data;
-					break;
-				case "DATE":
-						$this->date .= $data;
-					break;
-				case "LANGUAGE":
-						$this->language .= $data;
-					break;
-				case "SHORTDESC":
-						$this->shortDesc .= $data;
-					break;
-			}
- 		}
- 	} 
- 	
-}
- 	
- 	$parser = xml_parser_create('');
- 	$reviewsParser = new ReviewsParser();
-	xml_set_object($parser,&$reviewsParser);
-	xml_set_element_handler($parser, "startElement", "endElement");
-	xml_set_character_data_handler($parser, "characterData"); 
-	
-	$fp = fopen ("reviews.xml", "r") or die ("File I/O Problem");
-	//stream_filter_append($fp, 'convert.base64-encode');
-	while ($data = fread($fp, 4096))
-	{
-		xml_parse($parser, $data, feof($fp)) or die("XML Error");
-	}
-	fclose ($fp);
-	xml_parser_free($parser);
-		
-?>
diff --git a/content/en_allfriends.php b/content/en_allfriends.php
new file mode 100644
index 0000000..48e30bf
--- /dev/null
+++ b/content/en_allfriends.php
@@ -0,0 +1,88 @@
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+ ?>
+<h1>Thank you Friends of Helios!</h1>
+<p>
+  A big thank you to all <strong>487</strong> of our Friends of Helios. The funds
+  raised will be used to support the Eclipse community through services
+  such as providing more bandwidth for users and committers, sponsoring
+  Eclipse events around the world and purchasing additional hardware to
+  host Eclipse projects. Your generousity is very much appreciated.
+  Helios wouldn't be the same without you!
+</p>
+
+<strong>Daniele Gagliardi </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Mark Tippetts </strong>
+Anonymous
+<strong>Anonymous </strong>
+Jody Garnett
+<strong>Cho Hyunjong </strong>
+Anonymous
+<strong>Craig Condit </strong>
+Anonymous
+<strong>Uwe Kitzmann </strong>
+Anonymous
+<strong>Ian Skerrett </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Wendell Beckwith </strong>
+Marcus Hirt
+<strong>Anonymous </strong>
+Anonymous
+<strong>Wolfgang Schell </strong>
+Anonymous
+<strong>Sam Wu </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Christian Schubert </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Mickael Istria </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Alex Weirig </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Anonymous </strong>
+Robert Wloch
+<strong>Dong taek Kim </strong>
+Bruno Medeiros
+<strong>Anonymous </strong>
+Robert Meagher
+<strong>Anonymous </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Anonymous </strong>
+Guy Shalev
+<strong>Anonymous </strong>
+Reibert Arbring
+<strong>Dennis Laliberte </strong>
+
+
diff --git a/content/en_demos.php b/content/en_demos.php
new file mode 100644
index 0000000..0334fcc
--- /dev/null
+++ b/content/en_demos.php
@@ -0,0 +1,143 @@
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+?>
+
+<div id="midcolumn">
+
+  <h1>Helios Demos</h1>
+
+  <p>Some of the projects involved in the Helios release have created
+    demos to show their new features. Click the titles below to see
+    video highlights of what's new in Helios.</p>
+
+  <h3>
+    <a href="http://live.eclipse.org/node/932" target="blank">Dali Java
+      Persistence Tools</a>
+  </h3>
+  <p>
+    <b>Neil Hauge, Oracle</b><br> 18:19 minutes
+  </p>
+  <p>Dali Java Persistence Tools simplify the development of Java SE, EE
+    and OSGi bundle applications that use the Java Persistence API (JPA)
+    to interact with relational data. Dali has added comprehensive JPA
+    2.0 support to the existing JPA 1.0 support in Helios, as well as
+    specific support for the EclipseLink 2.1 Helios release. This demo
+    will show some highlights of the new features available now in the
+    Helios release.</p>
+
+  <h3>
+    <a href="http://live.eclipse.org/node/912" target="blank">Eclipse
+      Communication Framework (ECF)</a>
+  </h3>
+  <p>
+    <b>Wim Jongman, Industrial TSI</b><br> 19:37 minutes
+  </p>
+  <p>The Eclipse Communication Framework (ECF) is a framework for
+    supporting the development of distributed Eclipse-based tools and
+    applications. It can be used to create other plugins, tools or full
+    Eclipse RCP applications that require asynchronous point-to-point or
+    publish-and-subscribe messaging. This demos hows what's new in ECF
+    for Eclipse 3.6, the Helios release.</p>
+
+  <h3>
+    <a href="http://live.eclipse.org/node/908" target="blank">Java
+      Devlopment Tools (JDT)</a>
+  </h3>
+  <p>
+    <b>Deepak Azad, IBM</b><br> 09:29 minutes
+  </p>
+  <p>The Java Development Tools (JDT) project provides the tool plug-ins
+    that implement a Java IDE supporting the development of any Java
+    application, including Eclipse plug-ins. It adds a Java project
+    nature and Java perspective to the Eclipse Workbench as well as a
+    number of views, editors, wizards, builders and code merging and
+    refactoring tools. The JDT project allows Eclipse to be a
+    development environment for itself. This video shows just a part of
+    all the new stuff within JDT for Helios.</p>
+
+  <h3>
+    <a href="http://live.eclipse.org/node/911" target="blank">Javaserver
+      Faces (JSF) Tools</a>
+  </h3>
+  <p>
+    <b>Cameron Bateman, Oracle</b><br> 20:53 minutes
+  </p>
+  <p>The Javaserver Faces (JSF) Tools project adds comprehensive support
+    to the Eclipse Web Tools Platform project to simplify development
+    and deployment of JSF applications. The project provides an
+    extensible tooling infrastructure and exemplary tools for building
+    JSF-based, web-enabled applications. This demo previews new features
+    in the Eclipse 3.6 Helios release and shows how to use them to build
+    a JSF application.</p>
+
+  <h3>
+    <a href="http://live.eclipse.org/node/909" target="blank">PHP
+      Devlopment Tools (PDT)</a>
+  </h3>
+  <p>
+    <b>Roy Ganor, Zend</b><br> 11:54 minutes
+  </p>
+  <p>Summarizing a great year for both the Eclipse and PHP communities,
+    the Eclipse PHP Development Tools (PDT) project provides even more
+    source editing features for the PHP developers such as new template
+    content assist and advanced syntax coloring. Our focus on quality
+    has proven to be immensely successful. With over 400 issues fixed
+    and over 50 enhancements contributed by the community, PDT is more
+    stable than ever.</p>
+
+  <h3>
+    <a href="http://live.eclipse.org/node/904" target="blank">Rich Ajax
+      Platform (RAP)</a>
+  </h3>
+  <p>
+    <b>RAP Team</b><br> 04:15 minutes
+  </p>
+  <p>
+    This video shows what's new in RAP 1.3, which is shipped within the
+    Eclipse Helios (3.6) release train. What's shown in the video is
+    just a part of all the new stuff within RAP 1.3. Visit the project's
+    website for more information: <a href="http://eclipse.org/rap"
+      target="blank">http://eclipse.org/rap</a>.
+  </p>
+
+  <h3>
+    <a href="http://live.eclipse.org/node/928" target="blank">Sequoyah</a>
+  </h3>
+  <p>
+    <b>Marcel Gorri, Motorola</b><br> 07:57 minutes
+  </p>
+  <p>The purpose of the Sequoyah project is to be focused on the needs
+    of all mobile developers. Inheriting components from the TmL, MTJ
+    and Pulsar projects, Sequoyah intends to remove the artificial
+    barriers of Linux and Java in order to provide a home for all
+    Eclipse mobile developers. Join the Sequoyah team for an overview of
+    the new features in the project for the Eclipse Helios release.</p>
+</div>
+<div id="rightcolumn">
+  <div class="sideitem">
+    <h6>Helios</h6>
+    <ul id="leftnav">
+      <li><a href="/downloads/packages/release/helios/sr2"
+        target="_self">Download Now</a></li>
+      <li><a
+        href="http://www.eclipse.org/projects/releases/releases.php?release=helios"
+        target="_self">Helios Projects</a></li>
+      <li><a href="/helios/blogathon/reviews.php" target="_self">Blogathon</a></li>
+      <li><a href="/helios/demos.php" target="_self">Demos</a></li>
+      <li><a href="/helios/heliosinaction.php" target="_self">Virtual
+          Conference</a></li>
+      <li><a href="/helios/friends.php" target="_self">Friends of Helios</a></li>
+    </ul>
+
+  </div>
+</div>
diff --git a/content/en_friends.php b/content/en_friends.php
new file mode 100644
index 0000000..512e19b
--- /dev/null
+++ b/content/en_friends.php
@@ -0,0 +1,84 @@
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+?>
+<div class="col-sm-24">
+<div id="fullcolumn" class="heliosBlank clearfix">
+  <div class="wantedPoster">
+    <img src="images/wanted.png" />
+  </div>
+
+  <div class="wantedDesc">
+    <h1 class="wanted">Wanted: 360 Friends for Helios</h1>
+
+    <div class="wrapper">
+      <p>
+        Millions of people use Eclipse. <a href="/donate/">Friends of
+          Eclipse</a> allows you to contribute back to the Eclipse
+        community. To celebrate the upcoming Helios Release Train we
+        want to recruit 360 new Friends of Eclipse.
+      </p>
+    </div>
+    <div class="wrapper">
+      <p>
+        For a US$35 contribution, you can become a Friend of Eclipse. As
+        a special thank you, Friends will get early access to the <a
+          href="/helios/">Helios release</a>, direct from the download
+        server at the Eclipse Foundation. Your contribution will also
+        help support the Eclipse community.
+      </p>
+    </div>
+    <div class="wrapper">
+      <div class="star">
+        <img src='images/icons/star.png' />
+      </div>
+      <a class="donate" href="/donate">Donate Now!</a>
+    </div>
+    <div class="progressBar">
+      <div class="progress" style="width: 105px">&nbsp;</div>
+      <div class="counter">
+        <span class="active">63</span> / 360 friends recruited.
+      </div>
+    </div>
+
+
+    <h3>Recent Donors</h3>
+
+    <ul class="donorList clearfix">
+      <li>Daniele Gagliardi - $40</li>
+      <li>Anonymous - $50</li>
+      <li>Anonymous - $35</li>
+      <li>Anonymous - $50</li>
+      <li>Anonymous - $150</li>
+      <li>Anonymous - $35</li>
+      <li>Mark Tippetts - $35</li>
+      <li>Anonymous - $35</li>
+      <li>Anonymous - $35</li>
+      <li>Jody Garnett - $35</li>
+    </ul>
+    <div class="more">
+      <a href="/donate/donorlist.php?showAll=0">More</a>
+    </div>
+    <p
+      style="padding-top: 15px; clear: both; font-size: 12px; color: #555;">
+      [1] Friends of Eclipse get special access to the Eclipse
+      Foundation download server. This server will be available to
+      Friends of Eclipse while the download packages are being
+      synchronized to our mirrors. This typically means the packages
+      will be available up to 24 hrs before everyone else. The Eclipse
+      Foundation will also be dedicating extra bandwidth to this
+      download server, so Friends should experience a faster download.</p>
+
+  </div>
+
+</div>
+</div>
\ No newline at end of file
diff --git a/content/en_heliosinaction.php b/content/en_heliosinaction.php
new file mode 100644
index 0000000..ff3551c
--- /dev/null
+++ b/content/en_heliosinaction.php
@@ -0,0 +1,313 @@
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+ ?>
+<div id="midcolumn">
+
+  <h1>Helios In Action</h1>
+
+  <p>On June 24 and June 28, the Eclipse Foundation presented Helios In
+    Action - a virtual conference where attendees could interact with
+    project leads involved in the release and see demos of the new
+    features. The annual simultaneous release has now grown to 39
+    projects with over 33 million lines of code, contributed by
+    committers around the world. With such a large global community,
+    this is our way of bringing Helios to you!</p>
+
+  <h2>Part 1 - June 24</h2>
+
+  <p>
+    <a class="title" href="javascript:switchMenu('linux');"
+      title="Description"> <img
+      src="http://www.eclipse.org/newsgroups/images/plus.gif"
+      alt="Description" title="Description"> Linux Tools
+    </a><br> <a class="recordingtitle"
+      href="http://live.eclipse.org/node/916" target="blank">Watch the
+      recording</a><br> Andrew Overholt (Red Hat)
+  </p>
+  <p>
+
+
+  <div id="linux" class="switchcontent">
+    The Linux Tools project aims to bring a full-featured C and C++ IDE
+    to Linux developers. It builds on the source editing and debugging
+    features of the CDT and integrates popular native development tools
+    such as the GNU Autotools, Valgrind, OProfile, RPM, SystemTap, GCov,
+    GProf and LTTng. Current projects include Autotools build
+    integration, a Valgrind heap usage analysis tool and an OProfile
+    call profiling tool. It also has projects implementing LTTng trace
+    viewers and analyzers. <br>
+    <br> Linux Tools also provides a place for Linux distributions to
+    collaboratively overcome issues surrounding distribution packaging
+    of Eclipse technology. The project produces both best practices and
+    tools related to packaging. Since the 0.3.0 release, one of the
+    features is a source archive of the Eclipse SDK that can be used by
+    all Linux distributions building and distributing it. <br>
+    <br>
+  </div>
+  </p>
+
+  <p>
+
+    <a class="title" href="javascript:switchMenu('runtime');"
+      title="Description"> <img
+      src="http://www.eclipse.org/newsgroups/images/plus.gif"
+      alt="Description" title="Description"> Eclipse Runtime (RT)
+    </a><br> <a class="recordingtitle"
+      href="http://live.eclipse.org/node/917" target="blank">Watch the
+      recording</a><br> Jeff McAffer (EclipseSource)
+  </p>
+  <p>
+
+
+  <div id="runtime" class="switchcontent">
+    With the Eclipse community expanding its offerings in the Runtime
+    space (EclipseRT), many developers are interested in figuring out
+    what this means and how they can leverage EclipseRT projects like
+    Equinox, Jetty and EclipseLink. Join Jeff McAffer, the RT PMC and
+    Equinox co-lead, for a review of EclipseRT projects and the new
+    features they bring to Helios. <br>
+    <br>
+  </div>
+  </p>
+
+  <p>
+    <a class="title" href="javascript:switchMenu('egit');"
+      title="Description"> <img
+      src="http://www.eclipse.org/newsgroups/images/plus.gif"
+      alt="Description" title="Description"> Eclipse Git Team Provider
+    </a><br> <a class="recordingtitle"
+      href="http://live.eclipse.org/node/918" target="blank">Watch the
+      recording</a><br> Chris Aniszczyk (Red Hat)
+  </p>
+  <p>
+
+
+  <div id="egit" class="switchcontent">
+    EGit is an Eclipse Team provider for the Git version control system.
+    Git is a distributed SCM, which means every developer has a full
+    copy of all history of every revision of the code, making queries
+    against the history very fast and versatile. <br>
+    <br> The EGit project is implementing Eclipse tooling on top of the
+    JGit Java implementation of Git. <br>
+    <br>
+  </div>
+  </p>
+
+  <p>
+    <a class="title" href="javascript:switchMenu('jsdt');"
+      title="Description"> <img
+      src="http://www.eclipse.org/newsgroups/images/plus.gif"
+      alt="Description" title="Description"> JavaScript Development
+      Tools
+    </a><br> <a class="recordingtitle"
+      href="http://live.eclipse.org/node/919" target="blank">Watch the
+      recording</a><br> Simon Kaegi (IBM)
+
+
+  <p>
+
+
+  <p>
+
+
+  <div id="jsdt" class="switchcontent">
+    With the advent of Web 2.0, JavaScript have become central in the
+    creation of a richer user experience on the Web. Its use has shifted
+    from the creation of simple functions and events handlers to the
+    creation of complex Web Application frameworks. Such complexity made
+    it crucial that a more sophisticated set of tools become available
+    on Eclipse. <br>
+    <br> JSDT's goal is to develop an IDE for JavaScript applications,
+    with full support for editing, search, and refactoring. The
+    functionality of the JavaScript Development Tools is heavily based
+    on the functionality of the Java Development Tools, but since
+    JavaScript is not a fully typed or class-based language, it is not
+    possible to provide 100% of the JDT functionality. JSDT is
+    extensible in that it can be (is) plugged into the HTML and JSP
+    editors within WTP as well as being architected with pluggable type
+    inference and completion proposals in mind. The inference engine is
+    used to determine type and class structures from the JavaScript
+    code, enabling as much of the JDT equivalent functionality as
+    possible, while still allowing adopters to contribute to the process
+    for atypical or extended scenarios. <br>
+    <br>
+  </div>
+  </p>
+
+  <p>
+
+    <a class="title" href="javascript:switchMenu('javaee');"
+      title="Description"> <img
+      src="http://www.eclipse.org/newsgroups/images/plus.gif"
+      alt="Description" title="Description"> Java EE Standards Support
+      from Web Tools
+    </a><br> <a class="recordingtitle"
+      href="http://live.eclipse.org/node/920" target="blank">Watch the
+      recording</a><br> Naci Dai (eteration)
+  </p>
+  <p>
+
+
+  <div id="javaee" class="switchcontent">
+    The Web Tool Platform (WTP) project provides extensible frameworks
+    and exemplary tools to build Web and Java EE applications. For
+    Helios, the Web Tools Platform will be up-to-date with supporting
+    the latest Java EE 6 specification. Join this session to see what's
+    newly available for Java EE development. <br>
+    <br>
+  </div>
+  </p>
+
+  <p>
+    <a class="title" href="javascript:switchMenu('mpc');"
+      title="Description"> <img
+      src="http://www.eclipse.org/newsgroups/images/plus.gif"
+      alt="Description" title="Description"> Marketplace Client & p2
+      Discovery Connector
+    </a><br> <a class="recordingtitle"
+      href="http://live.eclipse.org/node/921" target="blank">Watch the
+      recording</a><br> Ian Skerrett (Eclipse Foundation)
+  </p>
+  <p>
+
+
+  <div id="mpc" class="switchcontent">
+    The Eclipse community has hundreds, if not thousands, of third-party
+    plugins that users can add to their Eclipse installation.
+    Unfortunately, there is not easy way to discover and install these
+    solutions from within Eclipse. <br>
+    <br> The Eclipse Foundation has recently launched a new website,
+    called Eclipse Marketplace, that provides a listing of Eclipse-based
+    solutions. The listings allow each solution provider to specify a p2
+    update site for their solution. MPC provides a tight install
+    integration between the Eclipse workspace and Eclipse Marketplace,
+    plus other third party solution listings. <br>
+    <br>
+  </div>
+  </p>
+
+  <h2>Part 2 - June 28</h2>
+
+  <p>
+    <a class="title" href="javascript:switchMenu('top10');"
+      title="Description"> <img
+      src="http://www.eclipse.org/newsgroups/images/plus.gif"
+      alt="Description" title="Description"> 10 Reasons to Install
+      Helios
+    </a><br> <a class="recordingtitle"
+      href="http://live.eclipse.org/node/924" target="blank">Watch the
+      recording</a><br> Ian Bull (EclipseSource)
+  </p>
+  <p>
+
+
+  <div id="top10" class="switchcontent">
+    Ian Bull, component lead for Zest and the Eclipse Visualization
+    Framework and committer on the Equinox p2 project, presents the top
+    10 features in Helios he is most excited about. <br>
+    <br>
+  </div>
+  </p>
+
+  <p>
+    <a class="title" href="javascript:switchMenu('emf');"
+      title="Description"> <img
+      src="http://www.eclipse.org/newsgroups/images/plus.gif"
+      alt="Description" title="Description"> EMF on the Web
+    </a><br> <a class="recordingtitle"
+      href="http://live.eclipse.org/node/925" target="blank">Watch the
+      recording</a><br> Kenn Hussey (Cloudsmith)
+  </p>
+  <p>
+
+
+  <div id="emf" class="switchcontent">
+    The Eclipse Modeling Framework (EMF) has long provided a code
+    generation facility capable of emitting everything needed to get
+    started with building a complete application for EMF-based domain
+    models. It includes a GUI from which options can be specified and
+    code generators can be invoked, to produce a model API, edit
+    support, unit tests and a sample editor. <br>
+    <br> With the Helios release of Eclipse, this facility moves beyond
+    the boundaries of the Eclipse platform, and desktop applications in
+    general, by adding support for the Rich Ajax Platform (RAP) and
+    Google Web Toolkit (GWT). This session will demonstrate EMF's
+    support for these application runtime platforms and highlight
+    differences in the code generated for each. <br>
+    <br>
+  </div>
+  </p>
+
+  <p>
+    <a class="title" href="javascript:switchMenu('modeling');"
+      title="Description"> <img
+      src="http://www.eclipse.org/newsgroups/images/plus.gif"
+      alt="Description" title="Description"> Modeling
+    </a><br> <a class="recordingtitle"
+      href="http://live.eclipse.org/node/926" target="blank">Watch the
+      recording</a><br> Ed Merks, Cedric Brun (Obeo), Sebastian Zarnekow
+    (itemis)
+  </p>
+  <p>
+
+
+  <div id="modeling" class="switchcontent">
+    The Eclipse Modeling Project is one of the most active projects
+    within the Eclipse community. Ed Merks will give a quick overview of
+    the Modeling projects in Helios. Then Cedric Brun will demo Acceleo
+    and Sebastian Zarnekow will show Xtext. <br>
+    <br>
+  </div>
+  </p>
+
+  <h2>July 20</h2>
+
+  <p>
+    <a class="title" href="javascript:switchMenu('mylyn');"
+      title="Description"> <img
+      src="http://www.eclipse.org/newsgroups/images/plus.gif"
+      alt="Description" title="Description"> Mylyn
+    </a><br> <a class="recordingtitle"
+      href="http://live.eclipse.org/node/927" target="blank">Watch the
+      recording</a><br> Mik Kersten (Tasktop Technologies)
+  </p>
+  <p>
+
+
+  <div id="mylyn" class="switchcontent">
+    This session will demonstrate the most noteworthy features and
+    enhancements for Mylyn in the Helios release, such as enhanced
+    support for Agile development, code reviews, social technologies and
+    continuous integration systems. Mik Kersten, lead of the Mylyn
+    project will showcase the latest and greatest task-focused features
+    and APIs. <br>
+    <br>
+  </div>
+  </p>
+</div>
+<div id="rightcolumn">
+  <div class="sideitem">
+    <h6>Helios</h6>
+    <ul id="leftnav">
+      <li><a href="/downloads/packages/release/helios/sr2" target="_self">Download
+          Now</a></li>
+      <li><a href="http://www.eclipse.org/projects/releases/releases.php?release=helios" target="_self">Helios Projects</a></li>
+      <li><a href="/helios/blogathon/reviews.php" target="_self">Blogathon</a></li>
+      <li><a href="/helios/demos.php" target="_self">Demos</a></li>
+      <li><a href="/helios/heliosinaction.php" target="_self">Virtual
+          Conference</a></li>
+      <li><a href="/helios/friends.php" target="_self">Friends of Helios</a></li>
+    </ul>
+
+  </div>
+</div>
\ No newline at end of file
diff --git a/content/en_index.php b/content/en_index.php
new file mode 100644
index 0000000..811ea4b
--- /dev/null
+++ b/content/en_index.php
@@ -0,0 +1,48 @@
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+ ?>
+ <div class="col-sm-24">
+  <div id="fullcolumn" class="helios">
+    <div id="midcolumn">
+      <div>
+        <p class="description">
+          Eclipse Helios is the annual release of Eclipse projects in
+          2010; this year 39 project teams are part of the release. <br />
+          <br />Click <a style="color: #FFF;"
+            href="http://wiki.eclipse.org/Simultaneous_Release">here</a>
+          to find out about the newest Eclipse Simultaneous Release
+        </p>
+      </div>
+      <div>
+        <ul class="links">
+          <li class="download sun indent1"><a title="Download Helios"
+            href="/downloads/packages/release/helios/sr2">Download
+              Helios</a></li>
+          <li class="projects sun indent2"><a title="Projects"
+            href="http://www.eclipse.org/projects/releases/releases.php?release=helios">Projects</a></li>
+          <li class="projects sun indent3"><a title="Blogathon"
+            href="/helios/blogathon/reviews.php">Blogathon</a></li>
+          <li class="projects sun indent4"><a title="Demos"
+            href="/helios/demos.php">Demos</a></li>
+          <li class="projects sun indent5"><a
+            title="Helios Virtual Conference"
+            href="/helios/heliosinaction.php">Virtual Conference</a></li>
+          <!--					<li class="blog"><a title="Helios on Twitter" target="_blank" href="http://galileo.chinposin.com/">&nbsp;</a></li>-->
+          <li class="friends indent6"><a title="Friends of Eclipse"
+            href="/helios/friends.php">Wanted: 360 Friends of Helios</a></li>
+        </ul>
+      </div>
+      <a id="continue" href="/home/">Continue to Eclipse.org</a>
+    </div>
+  </div>
+</div>
\ No newline at end of file
diff --git a/content/en_thankyou.php b/content/en_thankyou.php
new file mode 100644
index 0000000..aad88e8
--- /dev/null
+++ b/content/en_thankyou.php
@@ -0,0 +1,88 @@
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+ ?>
+<h1>Thank you Friends of Helios!</h1>
+<img style="float: left;" src="/donate/images/starTrans.png" />
+<p>
+  <strong>A big thank you to all <span style="font-size: 24px">487</span>
+    of our Friends of Helios. The funds raised will be used to help
+    support the Eclipse community. Your generousity is very much
+    appreciated - Helios wouldn't be the same without you!
+  </strong>
+</p>
+<hr>
+<p>
+<strong>Daniele Gagliardi </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Mark Tippetts </strong>
+Anonymous
+<strong>Anonymous </strong>
+Jody Garnett
+<strong>Cho Hyunjong </strong>
+Anonymous
+<strong>Craig Condit </strong>
+Anonymous
+<strong>Uwe Kitzmann </strong>
+Anonymous
+<strong>Ian Skerrett </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Wendell Beckwith </strong>
+Marcus Hirt
+<strong>Anonymous </strong>
+Anonymous
+<strong>Wolfgang Schell </strong>
+Anonymous
+<strong>Sam Wu </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Christian Schubert </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Mickael Istria </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Alex Weirig </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Anonymous </strong>
+Robert Wloch
+<strong>Dong taek Kim </strong>
+Bruno Medeiros
+<strong>Anonymous </strong>
+Robert Meagher
+<strong>Anonymous </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Anonymous </strong>
+Anonymous
+<strong>Anonymous </strong>
+Guy Shalev
+<strong>Anonymous </strong>
+Reibert Arbring
+<strong>Dennis Laliberte </strong>
+</p>
\ No newline at end of file
diff --git a/demos.php b/demos.php
index 65d93d4..9d53ae0 100644
--- a/demos.php
+++ b/demos.php
@@ -1,123 +1,34 @@
-<?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("_projectCommon.php");    # All on the same line to unclutter the user's desktop'
-
-	#
-	# Begin: page-specific settings.  Change these. 
-	$pageTitle 		= "Helios Demos";
-	$pageKeywords	= "eclipse, helios, demo, video, release";
-	$pageAuthor		= "Lynn Gayowski";
-	
-	# Add page-specific Nav bars here
-	# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank)
-	# $Nav->addCustomNav("My Link", "mypage.php", "_self");
-	# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank");
-
-	# End: page-specific settings
-	#
-	
-	# Paste your HTML content between the EOHTML markers!	
-
-ob_start();
-?>		
-
-<style type="text/css">
-.switchcontent{display:none;}
-</style>
-
-<script type="text/javascript">
-function switchMenu(obj) {
-	var el = document.getElementById(obj);
-	el.style.display = ( el.style.display != "block" )? 'block':'none' 
-}
-</script>	
-	
-	<style>
-		.paddedlist li {	padding-bottom:7px;	}
-		td a { color:#000; }		
-		.title { font-size:14px; color:#7036be; }
-		.timezone { font-size:10px; text-decoration:underline; }
-	</style>	
-
-	<div id="maincontent">
-	<div id="fullcolumn">
-	<div id="midcolumn">
-	
-		<h1><?= $pageTitle ?></h1>
-
-      	<p>
-		Some of the projects involved in the Helios release have created demos to show their new features.
-		Click the titles below to see video highlights of what's new in Helios.
-      	</p>
-
-		<h3><a href="http://live.eclipse.org/node/932" target="blank">Dali Java Persistence Tools</a></h3>
-		<p><b>Neil Hauge, Oracle</b><br>
-		18:19 minutes</p>
-		<p>Dali Java Persistence Tools simplify the development of Java SE, EE and OSGi bundle applications
-		that use the Java Persistence API (JPA) to interact with relational data. Dali has added
-		comprehensive JPA 2.0 support to the existing JPA 1.0 support in Helios, as well as specific support
-		for the EclipseLink 2.1 Helios release. This demo will show some highlights of the new features
-		available now in the Helios release.</p>
-      	
-		<h3><a href="http://live.eclipse.org/node/912" target="blank">Eclipse Communication Framework (ECF)</a></h3>
-		<p><b>Wim Jongman, Industrial TSI</b><br>
-		19:37 minutes</p>
-		<p>The Eclipse Communication Framework (ECF) is a framework for supporting the development of
-		distributed Eclipse-based tools and applications. It can be used to create other plugins, tools or
-		full Eclipse RCP applications that require asynchronous point-to-point or publish-and-subscribe
-		messaging. This demos hows what's new in ECF for Eclipse 3.6, the Helios release.</p>
-
-		<h3><a href="http://live.eclipse.org/node/908" target="blank">Java Devlopment Tools (JDT)</a></h3>
-		<p><b>Deepak Azad, IBM</b><br>
-		09:29 minutes</p>
-		<p>The Java Development Tools (JDT) project provides the tool plug-ins that implement a Java IDE
-		supporting the development of any Java application, including Eclipse plug-ins. It adds a Java
-		project nature and Java perspective to the Eclipse Workbench as well as a number of views,
-		editors, wizards, builders and code merging and refactoring tools. The JDT project allows Eclipse
-		to be a development environment for itself. This video shows just a part of all the new stuff
-		within JDT for Helios.</p>
-		
-		<h3><a href="http://live.eclipse.org/node/911" target="blank">Javaserver Faces (JSF) Tools</a></h3>
-		<p><b>Cameron Bateman, Oracle</b><br>
-		20:53 minutes</p>
-		<p>The Javaserver Faces (JSF) Tools project adds comprehensive support to the Eclipse Web Tools
-		Platform project to simplify development and deployment of JSF applications. The project provides
-		an extensible tooling infrastructure and exemplary tools for building JSF-based, web-enabled
-		applications. This demo previews new features in the Eclipse 3.6 Helios release and shows how
-		to use them to build a JSF application.</p>
-
-		<h3><a href="http://live.eclipse.org/node/909" target="blank">PHP Devlopment Tools (PDT)</a></h3>
-		<p><b>Roy Ganor, Zend</b><br>
-		11:54 minutes</p>
-		<p>Summarizing a great year for both the Eclipse and PHP communities, the Eclipse PHP Development
-		Tools (PDT) project provides even more source editing features for the PHP developers such as new
-		template content assist and advanced syntax coloring. Our focus on quality has proven to be
-		immensely successful. With over 400 issues fixed and over 50 enhancements contributed by the
-		community, PDT is more stable than ever.</p>
-
-		<h3><a href="http://live.eclipse.org/node/904" target="blank">Rich Ajax Platform (RAP)</a></h3>
-		<p><b>RAP Team</b><br>
-		04:15 minutes</p>
-		<p>This video shows what's new in RAP 1.3, which is shipped within the Eclipse Helios (3.6)
-		release train. What's shown in the video is just a part of all the new stuff within RAP 1.3.
-		Visit the project's website for more information: <a href="http://eclipse.org/rap" target="blank">http://eclipse.org/rap</a>.</p>
-
-		<h3><a href="http://live.eclipse.org/node/928" target="blank">Sequoyah</a></h3>
-		<p><b>Marcel Gorri, Motorola</b><br>
-		07:57 minutes</p>
-		<p>The purpose of the Sequoyah project is to be focused on the needs of all mobile developers.
-		Inheriting components from the TmL, MTJ and Pulsar projects, Sequoyah intends to remove the
-		artificial barriers of Linux and Java in order to provide a home for all Eclipse mobile developers.
-		Join the Sequoyah team for an overview of the new features in the project for the Eclipse Helios
-		release.</p>
-
- 	<br><br>
-	</div>
-	</div>
-</div>
-
 <?php
-	$html = ob_get_contents();
-	ob_end_clean();
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+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");
 
-	# Generate the web page
-	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
+$App = new App();
+$Nav = new Nav();
+$Menu = new Menu();
+include($App->getProjectCommon()); // All on the same line to unclutter the user's desktop'
+
+
+// Begin: page-specific settings. Change these.
+$pageTitle = "Helios Demos";
+$pageKeywords = "eclipse, helios, demo, video, release";
+$pageAuthor = "Lynn Gayowski";
+
+// Place your html content in a file called content/en_pagename.php
+ob_start();
+include("content/en_" . $App->getScriptName());
+$html = ob_get_clean();
+
+# Generate the web page
+$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
diff --git a/e4/content/en_index.php b/e4/content/en_index.php
new file mode 100644
index 0000000..6402829
--- /dev/null
+++ b/e4/content/en_index.php
@@ -0,0 +1,75 @@
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+ ?>
+<h1>Eclipse SDK 4.0: The Next Generation Eclipse Platform (Early Adopter
+  Release)</h1>
+<div class="row">
+  <div class="col-sm-12">
+    <img align="center" src="images/e4.png" />
+  </div>
+  <div class="col-sm-12" style="margin-top: 40px;">
+    <a href="#"><img style="position: relative; top: 20px;"
+      src="http://dev.eclipse.org/huge_icons/actions/go-down.png" /></a>
+    <a href="/downloads/packages/release/helios/sr2" style="font-size: 30px;">Download Now</a>
+  </div>
+</div>
+<hr class="clearer" />
+<p>Eclipse SDK 4.0 (formerly called e4) is the next generation platform
+  for building Eclipse-based rich client desktop applications. This new
+  release makes it easier for developers to develop and assemble
+  application and tools based on the Eclipse platform.</p>
+<p>The 4.0 release is for early adopters that want to begin taking
+  advantage of the new api's and services. Eclipse tool users are urged
+  to wait for future releases.</p>
+<div class="row">
+  <div class="col-sm-12">
+    <h3>How RCP Developers Benefit</h3>
+    <p>Developers who use the Eclipse Rich Client Platform (RCP) will
+      find Eclipse SDK 4.0 makes it easier to build great looking rich
+      client applications. Eclipse SDK 4.0 introduces the following:</p>
+    <ul>
+      <li>a new declarative and visual definition for user interfaces,
+        making it easier and more flexible to design and change an
+        application user interface. Also, making it easier to make a
+        user interface look less like an IDE.</li>
+      <li>a new services-orient programming model that makes it easier
+        to use discreet application services of the Eclipse platform.</li>
+      <li>better support for integrating web UI components into
+        Eclipse-based applications, including support for OpenSocial
+        gadgets.</li>
+    </ul>
+    <br />
+    <h3>Getting Started for RCP Developers</h3>
+    <ul>
+      <li>Roadmap</li>
+      <li>Tutorials</li>
+    </ul>
+  </div>
+
+  <div class="col-sm-12">
+    <h3>How Tool Developers Benefit</h3>
+    <p>Developers that have built Eclipse tools and plugins will want to
+      start migrating these tools to Eclipse SDK 4.0. Developers will
+      benefit from the following Eclipse SDK 4.0 features:</p>
+    <ul>
+      <li>a model-based workbench makes it easier to integrate your tool
+        into the Eclipse workbench</li>
+    </ul>
+    <br />
+    <h3>Getting Started for Tools Developers</h3>
+    <ul>
+      <li>Roadmap</li>
+      <li>Tutorials</li>
+    </ul>
+  </div>
+</div>
\ No newline at end of file
diff --git a/e4/index.php b/e4/index.php
index 4e126bf..a7cee0c 100644
--- a/e4/index.php
+++ b/e4/index.php
@@ -1,77 +1,35 @@
-<?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'
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+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");
 
-	#*****************************************************************************
-	#
-	# sample_list.php
-	#
-	# Author: 		Denis Roy
-	# Date:			2005-11-07
-	#
-	# Description: Type your page comments here - these are not sent to the browser
-	#
-	#
-	#****************************************************************************
-	
-	#
-	# Begin: page-specific settings.  Change these. 
-	$pageTitle 		= "Eclipse SDK 4.0: The Next Generation Eclipse Platform  (Early Adopter Release)";
-	$pageKeywords	= "Eclipse SDK 4.0, e4";
-	$pageAuthor		= "Nathan Gervais";
-		
-	# Paste your HTML content between the EOHTML markers!	
-	ob_start();
-	?>
-<div id="fullcolumn">
-	<div id="container">
-	
-		<h1>Eclipse SDK 4.0: The Next Generation Eclipse Platform  (Early Adopter Release)</h1>
-		<div class="twocolumn">
-			<img align="center" src="images/e4.png"/>
-		</div>
-		<div class="twocolumn" style="margin-top:40px;">
-			<a href="#"><img style="position:relative;top:20px;" src="http://dev.eclipse.org/huge_icons/actions/go-down.png" /></a>
-			<a href="#" style="font-size:30px;">Download Now</a>
-		</div>
-		<hr class="clearer"/>
-		<p>Eclipse SDK 4.0  (formerly called e4) is the next generation platform for building Eclipse-based rich client desktop applications.  This new release makes it easier for developers to develop and assemble application and tools based on the Eclipse platform.</p>  
-		<p>The 4.0 release is for early adopters that want to begin taking advantage of the new api's and services.  Eclipse tool users are urged to wait for future releases.</p>
-		
-		<div class="twocolumn">
-		<h3>How RCP Developers Benefit</h3>		
-		<p>Developers who use the Eclipse Rich Client Platform (RCP) will find Eclipse SDK 4.0 makes it easier to build great looking rich client applications.  Eclipse SDK 4.0 introduces the following:</p>
-		<ul>
-			<li>a new declarative and visual definition for user interfaces, making it easier and more flexible to design and change an application user interface.  Also, making it easier to make a user interface look less like an IDE.</li>
-			<li>a new services-orient programming model that makes it easier to use discreet application services of the Eclipse platform.</li>
-			<li>better support for integrating web UI components into Eclipse-based applications, including support for OpenSocial gadgets.</li>
-		</ul>
-		<br/>
-		<h3>Getting Started for RCP Developers</h3>
-		<ul>
-			<li>Roadmap</li>
-			<li>Tutorials</li>
-		</ul>		
-		</div>
-		
-		<div class="twocolumn ">
-		<h3>How Tool Developers Benefit</h3>
-		<p>Developers that have built Eclipse tools and plugins will want to start migrating these tools to Eclipse SDK 4.0.   Developers will benefit from the following Eclipse SDK 4.0 features:</p>
-			<ul>
-				<li>a model-based workbench makes it easier to integrate your tool into the Eclipse workbench </li>
-			</ul>
-			<br/>
-		<h3>Getting Started for Tools Developers</h3>
-		<ul>
-			<li>Roadmap</li>
-			<li>Tutorials</li>
-		</ul>			
-		</div>
-	</div>
-</div>
+$App = new App();
+$Nav = new Nav();
+$Menu = new Menu();
+include($App->getProjectCommon()); // All on the same line to unclutter the user's desktop'
 
-	
-	<?
-	$html = ob_get_clean();
-	$App->AddExtraHtmlHeader('<link type="text/css" href="style.css" rel="stylesheet"/>');
-	# Generate the web page
-	$App->generatePage('Nova', $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
\ No newline at end of file
+
+// Begin: page-specific settings. Change these.
+$pageTitle = "Eclipse SDK 4.0: The Next Generation Eclipse Platform  (Early Adopter Release)";
+$pageKeywords = "Eclipse SDK 4.0, e4";
+$pageAuthor = "Nathan Gervais";
+
+// Place your html content in a file called content/en_pagename.php
+ob_start();
+include("content/en_" . $App->getScriptName());
+$html = ob_get_clean();
+
+# Generate the web page
+$App->AddExtraHtmlHeader('<link type="text/css" href="style.css" rel="stylesheet"/>');
+$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
diff --git a/eclipse-sdk-4.0/content/en_index.php b/eclipse-sdk-4.0/content/en_index.php
new file mode 100644
index 0000000..028af13
--- /dev/null
+++ b/eclipse-sdk-4.0/content/en_index.php
@@ -0,0 +1,80 @@
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+ ?>
+<div id="topper" class="clearfix">
+  <div class="logo" style="margin-top: 40px;"></div>
+  <div class="topDesc">
+    <h1>Eclipse SDK 4.0</h1>
+    <p class="subHeading">Early Adopter Release</p>
+    <p class="description">Eclipse SDK 4.0 (based on e4 technology) is
+      the next generation platform for building Eclipse-based rich
+      client desktop applications. This new release makes it easier for
+      developers to develop and assemble application and tools based on
+      the Eclipse platform.</p>
+    <p class="description">The 4.0 release is for early adopters that
+      want to begin taking advantage of the new api's and services.
+      Eclipse tool users are urged to wait for future releases.</p>
+    <p><a href="#" style="font-size: 16px; color: #333;">Download</a> - <a
+      href="http://wiki.eclipse.org/Eclipse/Eclipse_SDK_4.0_FAQ"
+      style="font-size: 16px; color: #333;">FAQ</a> - <a
+      style="font-size: 16px; color: #333;" href="#">Get involved</a></p>
+  </div>
+</div>
+<hr class="clearer" />
+<div class="row">
+  <div class="col-sm-12">
+    <h3>How RCP Developers Benefit</h3>
+    <p>Developers who use the Eclipse Rich Client Platform (RCP) will
+      find Eclipse SDK 4.0 makes it easier to build great looking rich
+      client applications. Eclipse SDK 4.0 introduces the following:</p>
+    <ul>
+      <li>a new CSS-based declarative mechanism for application styling
+        and a model-based user interface. These facilities make it
+        easier to design and customize an application user interface.
+        This also adds greater flexibility to UI layout, making it
+        easier to make a user interface look different from an IDE</li>
+      <li>a new services-oriented programming model that makes it easier
+        to use discreet application services of the Eclipse platform.</li>
+      <li>better support for integrating web UI components into
+        Eclipse-based applications, including support for OpenSocial
+        gadgets.</li>
+    </ul>
+    <br />
+    <h4>Getting Started for RCP Developers</h4>
+    <ul>
+      <li>Roadmap</li>
+      <li>Tutorials</li>
+    </ul>
+  </div>
+  <div class="col-sm-12">
+    <h3>For Tool Developers</h3>
+    <p>Developers that have built Eclipse tools and plugins will want to
+      start migrating these tools to Eclipse SDK 4.0. Developers will
+      benefit from the following Eclipse SDK 4.0 features:</p>
+    <ul>
+      <li>The Eclipse SDK 4.0 supports all of the same APIs and
+        functionality as the 3.6 (Helios) release, but the
+        implementation of the user interface has changed.</li>
+      <li>You should install and run your existing tools on 4.0 to
+        ensure they continue to function as expected.</li>
+      <li>Explore the preliminary e4 APIs and provide feedback to the
+        development team to help shape the future of the platform</li>
+    </ul>
+    <br />
+    <h4>Getting Started for Tools Developers</h4>
+    <ul>
+      <li>Roadmap</li>
+      <li>Tutorials</li>
+    </ul>
+  </div>
+</div>
\ No newline at end of file
diff --git a/eclipse-sdk-4.0/index.php b/eclipse-sdk-4.0/index.php
index e3e2114..740055e 100644
--- a/eclipse-sdk-4.0/index.php
+++ b/eclipse-sdk-4.0/index.php
@@ -1,82 +1,35 @@
-<?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'
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+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");
 
-	#*****************************************************************************
-	#
-	# sample_list.php
-	#
-	# Author: 		Denis Roy
-	# Date:			2005-11-07
-	#
-	# Description: Type your page comments here - these are not sent to the browser
-	#
-	#
-	#****************************************************************************
-	
-	#
-	# Begin: page-specific settings.  Change these. 
-	$pageTitle 		= "Eclipse SDK 4.0: The Next Generation Eclipse Platform  (Early Adopter Release)";
-	$pageKeywords	= "Eclipse SDK 4.0, e4";
-	$pageAuthor		= "Nathan Gervais";
-		
-	# Paste your HTML content between the EOHTML markers!	
-	ob_start();
-	?>	<div class="bar">&nbsp;</div>
-<div id="fullcolumn">
+$App = new App();
+$Nav = new Nav();
+$Menu = new Menu();
+include($App->getProjectCommon()); // All on the same line to unclutter the user's desktop'
 
-	<div id="container">
-	
-		<div id="topper" class="clearfix">
-			<div class="logo" style="margin-top:40px;">
-	
-			</div>
-			<div class="topDesc">
-						<h1>Eclipse SDK 4.0</h1>
-			<p class="subHeading">Early Adopter Release</p>
-			<p class="description">Eclipse SDK 4.0  (based on e4 technology) is the next generation platform for building Eclipse-based rich client desktop applications.  This new release makes it easier for developers to develop and assemble application and tools based on the Eclipse platform.</p>  
-			<p class="description">The 4.0 release is for early adopters that want to begin taking advantage of the new api's and services.  Eclipse tool users are urged to wait for future releases.</p>
-				<a href="#" style="font-size:16px;color:#333;">Download</a> - <a href="http://wiki.eclipse.org/Eclipse/Eclipse_SDK_4.0_FAQ" style="font-size:16px;color:#333;">FAQ</a> - <a style="font-size:16px;color:#333;" href="#">Get involved</a>
-			</div>
-		</div>
-		<hr class="clearer"/>
-		
-		<div class="twocolumn">
-		<h3>How RCP Developers Benefit</h3>		
-		<p>Developers who use the Eclipse Rich Client Platform (RCP) will find Eclipse SDK 4.0 makes it easier to build great looking rich client applications.  Eclipse SDK 4.0 introduces the following:</p>
-		<ul>
-			<li>a new CSS-based declarative mechanism for application styling and a model-based user interface. These facilities make it easier to design and customize an application user interface. This also adds greater flexibility to UI layout, making it easier to make a user interface look different from an IDE</li>
-			<li>a new services-oriented programming model that makes it easier to use discreet application services of the Eclipse platform.</li>
-			<li>better support for integrating web UI components into Eclipse-based applications, including support for OpenSocial gadgets.</li>
-		</ul>
-		<br/>
-		<h4>Getting Started for RCP Developers</h4>
-		<ul>
-			<li>Roadmap</li>
-			<li>Tutorials</li>
-		</ul>		
-		</div>
-		
-		<div class="twocolumn ">
-		<h3>For Tool Developers</h3>
-		<p>Developers that have built Eclipse tools and plugins will want to start migrating these tools to Eclipse SDK 4.0.   Developers will benefit from the following Eclipse SDK 4.0 features:</p>
-			<ul>
-				<li>The Eclipse SDK 4.0 supports all of the same APIs and functionality as the 3.6 (Helios) release, but the implementation of the user interface has changed.</li>
-				<li>You should install and run your existing tools on 4.0 to ensure they continue to function as expected.</li>
-				<li>Explore the preliminary e4 APIs and provide feedback to the development team to help shape the future of the platform</li> 
-			</ul>
-			<br/>
-		<h4>Getting Started for Tools Developers</h4>
-		<ul>
-			<li>Roadmap</li>
-			<li>Tutorials</li>
-		</ul>			
-		</div>
-	</div>
-</div>
 
-	
-	<?
-	$html = ob_get_clean();
-	$App->AddExtraHtmlHeader('<link type="text/css" href="style.css" rel="stylesheet"/>');
-	# Generate the web page
-	$App->generatePage('Nova', $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
\ No newline at end of file
+// Begin: page-specific settings. Change these.
+$pageTitle 		= "Eclipse SDK 4.0: The Next Generation Eclipse Platform  (Early Adopter Release)";
+$pageKeywords	= "Eclipse SDK 4.0, e4";
+$pageAuthor		= "Nathan Gervais";
+
+// Place your html content in a file called content/en_pagename.php
+ob_start();
+include("content/en_" . $App->getScriptName());
+$html = ob_get_clean();
+
+# Generate the web page
+$App->AddExtraHtmlHeader('<link type="text/css" href="style.css" rel="stylesheet"/>');
+$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
diff --git a/eclipse-sdk-4.0/style.css b/eclipse-sdk-4.0/style.css
index 7f7b4ea..4ae0cc2 100644
--- a/eclipse-sdk-4.0/style.css
+++ b/eclipse-sdk-4.0/style.css
@@ -87,7 +87,7 @@
 
 #topper {
 	padding-top:20px;
-	height:260px;
 	width:100%;
 	background:transparent url('images/topper.png') no-repeat;
+	background-size:cover;
 }
\ No newline at end of file
diff --git a/friends.php b/friends.php
index 15c0629..c8a2aca 100644
--- a/friends.php
+++ b/friends.php
@@ -1,64 +1,35 @@
-<?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'
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+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");
 
-	#*****************************************************************************
-	#
-	# friends.php
-	#
-	# Author: 		Nathan Gervais
-	# Date:			2009-05-21
-	#
-	# Description:  Galileo Friends Landing Page
-	#
-	#
-	#****************************************************************************
-	
-	#
-	# Begin: page-specific settings.  Change these. 
-	$pageTitle 		= "Friends of Eclipse";
-	$pageKeywords	= "Friends of Eclipse, Helios";
-	$pageAuthor		= "Nathan Gervais";
-	include('scripts/wantedFunctions.php');
-	# Paste your HTML content between the EOHTML markers!	
-	ob_start();
-	?>
-	<div id="fullcolumn"  class="heliosBlank clearfix">
-		<div class="wantedPoster">
-			<img src="images/wanted.png"/>
-		</div>
-		
-		<div class="wantedDesc">
-			<h1 class="wanted">Wanted: 360 Friends for Helios</h1>
-			
-			<div class="wrapper">
-				<p>Millions of people use Eclipse. <a href="/donate/">Friends of Eclipse</a> allows you to contribute back to the Eclipse community.   To celebrate the upcoming Helios Release Train we want to recruit 360 new Friends of Eclipse.</p>
-			</div>
-			<div class="wrapper">
-				<p>For a US$35 contribution, you can become a Friend of Eclipse.  As a special thank you, Friends will get early access to the <a href="/helios/">Helios release</a>, direct from the download server at the Eclipse Foundation.  Your contribution will also help support the Eclipse community.</p>
-			</div>
-			<div class="wrapper">
-				<div class="star"><img src='images/icons/star.png'/></div>	
-				<a class="donate" href="/donate">Donate Now!</a>
-			</div>
-			<div class="progressBar">
-				<div class="progress" style="width:<?=round(getWantedCount() * (600/360));?>px">&nbsp;</div>
-				<div class="counter"><span class="active"><?=getWantedCount();?></span> / 360 friends recruited.</div>
-			</div>				
-		
-			
-			<h3>Recent Donors</h3>
-			
-			<ul class="donorList clearfix"><?=sideDonorList(10);?></ul>
-			<div class="more"><a href="/donate/donorlist.php?showAll=0">More</a></div>
-			<p style="padding-top:15px;clear:both;font-size:12px;color:#555;">
-				[1] Friends of Eclipse get special access to the Eclipse Foundation download server.  This server will be available to Friends of Eclipse while the download packages are being synchronized to our mirrors.  This typically means the packages will be available up to 24 hrs before everyone else.   The Eclipse Foundation will also be dedicating extra bandwidth to this download server, so Friends should experience a faster download.
-			</p>
-			
-		</div>
-		
-	</div>
-	<?
-	$html = ob_get_clean();
-	$App->AddExtraHtmlHeader('<link type="text/css" href="/helios/style.css" rel="stylesheet"/>');
-	# Generate the web page
-	$App->generatePage($theme, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
\ No newline at end of file
+$App = new App();
+$Nav = new Nav();
+$Menu = new Menu();
+include($App->getProjectCommon()); // All on the same line to unclutter the user's desktop'
+
+
+// Begin: page-specific settings. Change these.
+$pageTitle 		= "Friends of Eclipse";
+$pageKeywords	= "Friends of Eclipse, Helios";
+$pageAuthor		= "Nathan Gervais";
+
+// Place your html content in a file called content/en_pagename.php
+ob_start();
+include("content/en_" . $App->getScriptName());
+$html = ob_get_clean();
+
+# Generate the web page
+$App->AddExtraHtmlHeader('<link type="text/css" href="/helios/style.css" rel="stylesheet"/>');
+$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
diff --git a/heliosinaction.php b/heliosinaction.php
index f7cb187..4ee61a8 100644
--- a/heliosinaction.php
+++ b/heliosinaction.php
@@ -1,276 +1,34 @@
-<?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("_projectCommon.php");    # All on the same line to unclutter the user's desktop'
-
-	#
-	# Begin: page-specific settings.  Change these. 
-	$pageTitle 		= "Helios In Action";
-	$pageKeywords	= "eclipse, helios, action, webinar, release, virtual conference";
-	$pageAuthor		= "Lynn Gayowski";
-	
-	# Add page-specific Nav bars here
-	# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank)
-	# $Nav->addCustomNav("My Link", "mypage.php", "_self");
-	# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank");
-
-	# End: page-specific settings
-	#
-	
-	# Paste your HTML content between the EOHTML markers!	
-
-ob_start();
-?>		
-
-<style type="text/css">
-.switchcontent{display:none;}
-</style>
-
-<script type="text/javascript">
-function switchMenu(obj) {
-	var el = document.getElementById(obj);
-	el.style.display = ( el.style.display != "block" )? 'block':'none' 
-}
-</script>	
-	
-	<style>
-		.paddedlist li {	padding-bottom:7px;	}
-		td a { color:#000; }		
-		.title { font-size:14px; color:#7036be; }
-		.recordingtitle { color:#000; }
-		.timezone { font-size:10px; text-decoration:underline; }
-	</style>	
-
-	<div id="maincontent">
-	<div id="fullcolumn">
-	<div id="midcolumn">
-	
-		<h1><?= $pageTitle ?></h1>
-
-      	<p>
-		On June 24 and June 28, the Eclipse Foundation presented Helios In Action - a virtual
-      	conference where attendees could interact with project leads involved in the release and see
-      	demos of the new features. The annual simultaneous release has now grown to 39 projects
-      	with over 33 million lines of code, contributed by committers around the world.  With such
-      	a large global community, this is our way of bringing Helios to you!
-      	</p>
-
-		<h2>Part 1 - June 24</h2>
-
-		<p>
-			<a class="title" href="javascript:switchMenu('linux');" title="Description">
-			<img src="http://www.eclipse.org/newsgroups/images/plus.gif" alt="Description" title="Description">
-			Linux Tools</a><br>
-			<a class="recordingtitle" href="http://live.eclipse.org/node/916" target="blank">Watch the recording</a><br>
-			Andrew Overholt (Red Hat)
-		</p>			
-		<p>
-			<div id="linux" class="switchcontent">
-			The Linux Tools project aims to bring a full-featured C and C++ IDE to Linux developers. It
-			builds on the source editing and debugging features of the CDT and integrates popular
-			native development tools such as the GNU Autotools, Valgrind, OProfile, RPM, SystemTap,
-			GCov, GProf and LTTng. Current projects include Autotools build integration, a Valgrind
-			heap usage analysis tool and an OProfile call profiling tool. It also has projects
-			implementing LTTng trace viewers and analyzers.
-			<br><br>
-			Linux Tools also provides a place for Linux distributions to collaboratively overcome issues
-			surrounding distribution packaging of Eclipse technology. The project produces both best
-			practices and tools related to packaging. Since the 0.3.0 release, one of the features is
-			a source archive of the Eclipse SDK that can be used by all Linux distributions building
-			and distributing it. 
-			<br><br>
-			</div>
-		</p>
-		
-		<p>
-
-			<a class="title" href="javascript:switchMenu('runtime');" title="Description">
-			<img src="http://www.eclipse.org/newsgroups/images/plus.gif" alt="Description" title="Description">
-			Eclipse Runtime (RT)</a><br>
-			<a class="recordingtitle" href="http://live.eclipse.org/node/917" target="blank">Watch the recording</a><br>
-			Jeff McAffer (EclipseSource)
-		</p>
-		<p>												
-			<div id="runtime" class="switchcontent">
-			With the Eclipse community expanding its offerings in the Runtime space (EclipseRT),
-			many developers are interested in figuring out what this means and how they can
-			leverage EclipseRT projects like Equinox, Jetty and EclipseLink. Join Jeff McAffer,
-			the RT PMC and Equinox co-lead, for a review of EclipseRT projects and the new
-			features they bring to Helios.  	
- 			<br><br>
-			</div>
-		</p>
-		
-		<p>
-			<a  class="title"href="javascript:switchMenu('egit');" title="Description">
-			<img src="http://www.eclipse.org/newsgroups/images/plus.gif" alt="Description" title="Description">
-			Eclipse Git Team Provider</a><br>
-			<a class="recordingtitle" href="http://live.eclipse.org/node/918" target="blank">Watch the recording</a><br>
-			Chris Aniszczyk (Red Hat)				
-		</p>
-		<p>
-															
-			<div id="egit" class="switchcontent">
-			EGit is an Eclipse Team provider for the Git version control system. Git is a distributed
-			SCM, which means every developer has a full copy of all history of every revision of the
-			code, making queries against the history very fast and versatile. 
-			<br><br>
-			The EGit project is implementing Eclipse tooling on top of the JGit Java implementation of
-			Git. 
-			<br><br>
-			</div>
-		</p>
-		
-		<p>
-			<a class="title" href="javascript:switchMenu('jsdt');" title="Description">
-			<img src="http://www.eclipse.org/newsgroups/images/plus.gif" alt="Description" title="Description">
-			JavaScript Development Tools</a><br>
-			<a class="recordingtitle" href="http://live.eclipse.org/node/919" target="blank">Watch the recording</a><br>
-			Simon Kaegi (IBM)
-		<p>
-		<p>										
-			<div id="jsdt" class="switchcontent">
-			With the advent of Web 2.0, JavaScript have become central in the creation of a richer user
-			experience on the Web. Its use has shifted from the creation of simple functions and events
-			handlers to the creation of complex Web Application frameworks. Such complexity made it crucial
-			that a more sophisticated set of tools become available on Eclipse.
-			<br><br>
-			JSDT's goal is to develop an IDE for JavaScript applications, with full support for editing, search,
-			and refactoring. The functionality of the JavaScript Development Tools is heavily based on the
-			functionality of the Java Development Tools, but since JavaScript is not a fully typed or
-			class-based language, it is not possible to provide 100% of the JDT functionality. JSDT is
-			extensible in that it can be (is) plugged into the HTML and JSP editors within WTP as well as being
-			architected with pluggable type inference and completion proposals in mind. The inference engine is
-			used to determine type and class structures from the JavaScript code, enabling as much of the JDT
-			equivalent functionality as possible, while still allowing adopters to contribute to the process for
-			atypical or extended scenarios. 
-			<br><br>
-			</div>
-		</p>
-		
-		<p>
-
-			<a  class="title" href="javascript:switchMenu('javaee');" title="Description">
-			<img src="http://www.eclipse.org/newsgroups/images/plus.gif" alt="Description" title="Description">
-			Java EE Standards Support from Web Tools</a><br>
-			<a class="recordingtitle" href="http://live.eclipse.org/node/920" target="blank">Watch the recording</a><br>
-			Naci Dai (eteration)
-		</p>
-		<p>													
-			<div id="javaee" class="switchcontent">
-			The Web Tool Platform (WTP) project provides extensible frameworks and exemplary tools
-			to build Web and Java EE applications.  For Helios, the Web Tools Platform will be
-			up-to-date with supporting the latest Java EE 6 specification.  Join this session to
-			see what's newly available for Java EE development.
-			<br><br>
-			</div>
-		</p>
-		
-		<p>
-			<a class="title" href="javascript:switchMenu('mpc');" title="Description">
-			<img src="http://www.eclipse.org/newsgroups/images/plus.gif" alt="Description" title="Description">
-			Marketplace Client & p2 Discovery Connector</a><br>
-			<a class="recordingtitle" href="http://live.eclipse.org/node/921" target="blank">Watch the recording</a><br>
-			Ian Skerrett (Eclipse Foundation)
-		</p>
-		<p>													
-			<div id="mpc" class="switchcontent">
-			The Eclipse community has hundreds, if not thousands, of third-party plugins that users can
-			add to their Eclipse installation. Unfortunately, there is not easy way to discover and
-			install these solutions from within Eclipse.
-			<br><br>
-			The Eclipse Foundation has recently launched a new website, called Eclipse Marketplace, that
-			provides a listing of Eclipse-based solutions. The listings allow each solution provider to
-			specify a p2 update site for their solution. MPC provides a tight install integration
-			between the Eclipse workspace and Eclipse Marketplace, plus other third party solution
-			listings.  	 
-			<br><br>
-			</div>
-		</p>
-
-		<h2>Part 2 - June 28</h2>
-		
-		<p>
-			<a class="title" href="javascript:switchMenu('top10');" title="Description">
-			<img src="http://www.eclipse.org/newsgroups/images/plus.gif" alt="Description" title="Description">
-			10 Reasons to Install Helios</a><br>
-			<a class="recordingtitle" href="http://live.eclipse.org/node/924" target="blank">Watch the recording</a><br>
-			Ian Bull (EclipseSource)
-		</p>
-		<p>
-													
-			<div id="top10" class="switchcontent">
-			Ian Bull, component lead for Zest and the Eclipse Visualization Framework and committer on
-			the Equinox p2 project, presents the top 10 features in Helios he is most excited about. 	
- 			<br><br>
-			</div>
-		</p>
-		
-		<p>
-			<a  class="title" href="javascript:switchMenu('emf');" title="Description">
-			<img src="http://www.eclipse.org/newsgroups/images/plus.gif" alt="Description" title="Description">
-			EMF on the Web</a><br>
-			<a class="recordingtitle" href="http://live.eclipse.org/node/925" target="blank">Watch the recording</a><br>
-			Kenn Hussey (Cloudsmith)
-		</p>
-		<p>												
-			<div id="emf" class="switchcontent">
-			The Eclipse Modeling Framework (EMF) has long provided a code generation facility
-			capable of emitting everything needed to get started with building a complete
-			application for EMF-based domain models. It includes a GUI from which options can be
-			specified and code generators can be invoked, to produce a model API, edit support,
-			unit tests and a sample editor.
-			<br><br>
-			With the Helios release of Eclipse, this facility moves beyond the boundaries of the
-			Eclipse platform, and desktop applications in general, by adding support for the Rich
-			Ajax Platform (RAP) and Google Web Toolkit (GWT). This session will demonstrate EMF's
-			support for these application runtime platforms and highlight differences in the
-			code generated for each.
-			<br><br>	
-			</div>
-		</p>
-		
-		<p>
-			<a class="title" href="javascript:switchMenu('modeling');" title="Description">
-			<img src="http://www.eclipse.org/newsgroups/images/plus.gif" alt="Description" title="Description">
-			Modeling</a><br>
-			<a class="recordingtitle" href="http://live.eclipse.org/node/926" target="blank">Watch the recording</a><br>
-			Ed Merks, Cedric Brun (Obeo), Sebastian Zarnekow (itemis)
-		</p>
-		<p>										
-			<div id="modeling" class="switchcontent">
-			The Eclipse Modeling Project is one of the most active projects within the Eclipse
-			community. Ed Merks will give a quick overview of the Modeling projects in Helios.  Then
-			Cedric Brun will demo Acceleo and Sebastian Zarnekow will show Xtext.
-			<br><br>
-			</div>
-		</p>	
-
-		<h2>July 20</h2>
-
-		<p>
-			<a class="title" href="javascript:switchMenu('mylyn');" title="Description">
-			<img src="http://www.eclipse.org/newsgroups/images/plus.gif" alt="Description" title="Description">
-			Mylyn</a><br>
-			<a class="recordingtitle" href="http://live.eclipse.org/node/927" target="blank">Watch the recording</a><br>
-			Mik Kersten (Tasktop Technologies)
-		</p>
-		<p>
-			<div id="mylyn" class="switchcontent">
-			This session will demonstrate the most noteworthy features and enhancements for Mylyn
-			in the Helios release, such as enhanced support for Agile development, code reviews,
-			social technologies and continuous integration systems. Mik Kersten, lead of the Mylyn
-			project will showcase the latest and greatest task-focused features and APIs.	
- 			<br><br>
-			</div>
-		</p>			
-
- 	<br><br>
-	</div>
-	</div>
-</div>
-
 <?php
-	$html = ob_get_contents();
-	ob_end_clean();
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+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");
 
-	# Generate the web page
-	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
+$App = new App();
+$Nav = new Nav();
+$Menu = new Menu();
+include($App->getProjectCommon()); // All on the same line to unclutter the user's desktop'
+
+
+// Begin: page-specific settings. Change these.
+$pageTitle 		= "Helios In Action";
+$pageKeywords	= "eclipse, helios, action, webinar, release, virtual conference";
+$pageAuthor		= "Lynn Gayowski";
+
+// Place your html content in a file called content/en_pagename.php
+ob_start();
+include("content/en_" . $App->getScriptName());
+$html = ob_get_clean();
+
+# Generate the web page
+$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
diff --git a/index.php b/index.php
index 9f105a5..d4d091c 100644
--- a/index.php
+++ b/index.php
@@ -1,57 +1,35 @@
-<?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();	$theme = "Phoenix"; include($App->getProjectCommon());   # All on the same line to unclutter the user's desktop'
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+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");
 
-	#*****************************************************************************
-	#
-	# index.php
-	#
-	# Author: 	 	Nathan Gervais
-	# Date:			2010-04-16
-	#
-	# Description: Ganymede Landing Page
-	#
-	#****************************************************************************
-	
-	#
-	# Begin: page-specific settings.  Change these. 
-	$pageTitle 		= "Eclipse.org - Helios Simultaneous Release!";
-	$pageKeywords	= "eclipse helios, helios, helios release train";
-	$pageAuthor		= "Eclipse Foundation, Inc.";
-	
-	# Add page-specific Nav bars here
-	# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank)
-	# $Nav->addCustomNav("My Link", "mypage.php", "_self");
-	# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank");
+$App = new App();
+$Nav = new Nav();
+$Menu = new Menu();
+include($App->getProjectCommon()); // All on the same line to unclutter the user's desktop'
 
-	# End: page-specific settings
-	#
-	
-	# Place your html content in a file called content/en_pagename.php
-	ob_start();
-	?>	
-	<div id="fullcolumn" class="helios">
-		<div id="midcolumn">
-			<div>
-				<p class="description">Eclipse Helios is the annual release of Eclipse projects in 2010; this year 39 project teams are part of the release. <br/>
-				<br/>Click <a style="color:#FFF;" href="http://wiki.eclipse.org/Simultaneous_Release">here</a> to find out about the newest Eclipse Simultaneous Release</p>
-			</div>
-			<div>
-				<ul class="links">
-					<li class="download sun indent1"><a title="Download Helios" href="/downloads/packages/release/helios/sr2">Download Helios</a></li>
-					<li class="projects sun indent2"><a title="Projects" href="/helios/projects.php">Projects</a></li>
-					<li class="projects sun indent3"><a title="Blogathon" href="/helios/blogathon/reviews.php">Blogathon</a></li>
-					<li class="projects sun indent4"><a title="Demos" href="/helios/demos.php">Demos</a></li>
-					<li class="projects sun indent5"><a title="Helios Virtual Conference" href="/helios/heliosinaction.php">Virtual Conference</a></li>
-<!--					<li class="blog"><a title="Helios on Twitter" target="_blank" href="http://galileo.chinposin.com/">&nbsp;</a></li>-->
-					<li class="friends indent6"><a title="Friends of Eclipse" href="/helios/friends.php">Wanted: 360 Friends of Helios</a></li>
-				</ul>
-			</div>
-			<a id="continue" href="/home/">Continue to Eclipse.org</a>
-		</div>
-	</div>
-	<?
-	$html = ob_get_clean();
-	# Generate the web page
-	$App->Promotion = TRUE;
-	$App->AddExtraHtmlHeader('<link type="text/css" href="/helios/styleNow.css" rel="stylesheet"/>');
-	$App->generatePage("Nova", $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
\ No newline at end of file
+
+// Begin: page-specific settings. Change these.
+$pageTitle 		= "Eclipse.org - Helios Simultaneous Release!";
+$pageKeywords	= "eclipse helios, helios, helios release train";
+$pageAuthor		= "Eclipse Foundation, Inc.";
+
+// Place your html content in a file called content/en_pagename.php
+ob_start();
+include("content/en_" . $App->getScriptName());
+$html = ob_get_clean();
+
+# Generate the web page
+$App->AddExtraHtmlHeader('<link type="text/css" href="/helios/style.css" rel="stylesheet"/>');
+$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
diff --git a/planning/EclipseSimultaneousRelease.html b/planning/EclipseSimultaneousRelease.html
deleted file mode 100644
index 1afc247..0000000
--- a/planning/EclipseSimultaneousRelease.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1" ?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
-<title>The Eclipse Simultaneous Release</title>
-</head>
-<body>
-<h1 style="text-align: center">The Eclipse Simultaneous Release</h1>
-<h1 style="text-align: center; font-size: smaller">December 2, 2009<br />
-<a href="http://wiki.eclipse.org/Planning_Council">Eclipse Planning Council</a><br />
-Contact: <a href="mailto: david.williams@eclipse.org">David Williams</a></h1>
-
-<p>Note that as of Juno, around October, 2011, this document was moved to the
-Eclipse wiki. For latest content, please 
-find at <a href="http://wiki.eclipse.org/SimRel/Simultaneous_Release_Requirements">Eclipse Simultaneious Release Requirements</a>.</p>
-
-<p>If for some historical reason, the original document is required, see 
-<a href="EclipseSimultaneousReleaseOLD.php">EclipseSimultaneousReleaseOLD</a></p>
-
-</body>
-</html>
\ No newline at end of file
diff --git a/planning/EclipseSimultaneousRelease.php b/planning/EclipseSimultaneousRelease.php
deleted file mode 100644
index 2f63c8a..0000000
--- a/planning/EclipseSimultaneousRelease.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?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'
-//ini_set("display_errors", "true");
-//error_reporting (E_ALL);
-
-#
-# Begin: page-specific settings.
-$pageTitle 		= "Eclipse Planning Council";
-//$pageKeywords	= "Eclipse Planning Council Simultaneous Release Helios must-dos";
-$pageAuthor		= "David Williams";
-$theme = "Nova";
-
-
-# Paste your HTML content between the markers!
-ob_start();
-?>
-
-	
-<div id="maincontent" style="padding: 5em; width: 90%; margins: 5%;">
-
-
-
-<?php 
-    $xhtmlFile = 'EclipseSimultaneousRelease.html';
-	// Load the source. Will treat as "raw" XHMTL for now
-	//$doc = new DOMDocument;
-	//$doc->loadHTMLFile($xhtmlFile);
-	//echo $doc->saveHTML();
-	echo file_get_contents($xhtmlFile);
-?>
-
-
-</div>
-
-<?php
-$html = ob_get_contents();
-ob_end_clean();
-
-# Generate the web page
-$App->generatePage($theme, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
-
-?>
\ No newline at end of file
diff --git a/planning/EclipseSimultaneousReleaseFormPrototype.html b/planning/EclipseSimultaneousReleaseFormPrototype.html
deleted file mode 100644
index 5d47567..0000000
--- a/planning/EclipseSimultaneousReleaseFormPrototype.html
+++ /dev/null
@@ -1,469 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1" ?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
-<title>The Eclipse Simultaneous Release</title>
-</head>
-<body bgcolor="#e9deb6" style="color: black">
-<h1 style="text-align: center">The Eclipse Simultaneous Release Checklist</h1>
-<p align="center">Draft - initial working version.</p>
-<p><br />Project: <input type="text" name="projectname" size="30" />
-</p>
-
-
-<p>Date last changed: <input type="text" name="dateLastChanged"
-	size="20" /><br />
-</p>
-<p><span style="color: #9e9e9e"><span style="color: #414141">T<span>his
-document defines the rules and criteria for participating in the yearly
-Simultaneous Release. There are more criteria than when releasing at
-other times partially because there are more projects releasing at once,
-so the workload needs to streamlined and made more uniform. More
-important, the extra criteria are included by mutual agreement between
-projects (via their representatives to Planning Council) so that as a
-whole, the release will be of better quality, maintainability, and
-improved consumability by adopters.</span></span></span></p>
-<p><span style="color: #9e9e9e"><span style="color: #414141"><span>The
-spirit of this document should not be so much as a "contract" of what
-has to be done to release, but instead as an agreement to make the
-Yearly Release good, if not great! While each Project does their
-individual things to make the Release great, this document and process
-describe how we as a group document the achievement of our agreement. We
-are always open to better agreements and better documentation of our
-achievements so feel free to keep track and make suggestions
-year-to-year (preferably through your Planning Council representative)
-on how to make our yearly release better. In fact, occasionally changes
-may be made to this document for clarity or to improve reference links
-throughout the development cycle, but nothing new that would change
-work-load will be added after M4.</span></span></span></p>
-<p><span style="color: #9e9e9e"><span style="color: #414141"><span>To
-foster communication and flexibility where required, any exceptions to
-these criteria or deadlines will follow the <a
-	href="#pcExceptionProcess">Planning Council Exception Process</a>.</span></span></span></p>
-<p><span style="color: #9e9e9e"><span style="color: #414141"><span>The
-requirements are divided into three categories:</span></span></span></p>
-<ol>
-	<li><span style="color: #9e9e9e"><span style="color: #414141"><span>Requirements
-	to be released as part of the &quot;yearly release&quot;, normal
-	release requirements, done earlier than usual.</span></span></span></li>
-	<li><span style="color: #9e9e9e"><span style="color: #414141"><span>Requirements
-	to be part of the Common Discovery Site repository and, consequently,
-	the minimum requirements to be part of EPP packages.</span></span></span></li>
-	<li><span style="color: #9e9e9e"><span style="color: #414141"><span>Requirements
-	to demonstrate good Eclipse Citizenship, following &quot;the Eclipse
-	Way&quot;.</span></span></span></li>
-</ol>
-
-<h2><span style="color: #9e9e9e"><span style="color: #414141"><span>Do
-the basics ... early</span></span></span></h2>
-<p><span style="color: #9e9e9e"><span style="color: #414141"><span>The
-requirements and conditions stated in this section are the basic minimum
-required for a project to claim they are part of the yearly Simultaneous
-Release.</span></span></span></p>
-<p>To join a Simultaneous Release, Projects must have stated their
-intent to do so, and be in a build for the composite site aggregation by
-M4, at the latest. For projects continuing from previous years, the
-expectation is they will be in M1, unless they formally withdraw.</p>
-<p>The &quot;statement of intent&quot; is done formally by marking
-the &quot;Simultaneous Release Flag&quot; in the project's Portal
-meta-data.</p>
-<p><input type="checkbox" name="inbyM1M4" /> In M1 common repo (M4
-for new projects)</p>
-<p><input type="checkbox" name="Portal data updated" />Portal
-meta-data updated (By M4, at latest)</p>
-
-<h3>Planning</h3>
-<p>All projects must have their project plan in the Eclipse
-Foundation standard XML Format (a normal Eclipse requirement).
-Committing to be in the Simultaneous Release means you commit to having
-these plans early: M2, for those projects that already know they will be
-in the Simultaneous Release, M4 will be the latest possible time, for
-those projects that are new to the Simultaneous Release Train and decide
-to join after M2. The plans should be updated periodically as things
-change, or as items are completed.</p>
-<p><input type="checkbox" name="planningdoc" />Initial Planning
-Document done by M4. URL: <input type="text" name="planurl" size="70" /></p>
-<p><span style="color: #333333">Also, for long term planning,
-remember that being in a Simultaneous Release also means a commitment to
-participating the SR1 and SR2 simultaneous maintenance releases.</span></p>
-<p><span style="color: #333333"><i>[New this year.]</i> Once
-in, always in. Once a project joins one year's Simultaneous Release, it
-is assumed they will be in the next one, unless they formally withdraw.
-So, for example, it is required they will meet the subsequent year's
-Milestone Schedule, have plans done by M2 of following year, etc. Put
-another way, being part of the Simultaneous Release is not a &quot;one
-time&quot; activity, covering only the literal release date and not even
-a &quot;part time&quot; activity covering only part of the yearly
-development cycle. Instead it is a commitment to stay
-&quot;simultaneous&quot; on an on-going basis</span>.</p>
-<h3>Communication</h3>
-<p>At least one person from each project in a Simultaneous Release
-must subscribe to cross-project mailing list, since that is the primary
-communication channel for issues related to the Simultaneous Release.
-Also, at least one person from each project must subscribe to
-cross-project bugzilla inbox, as that is the primary bugzilla components
-for bugs that are truly cross-project, or bugs which are not known to be
-in one particular component.</p>
-<p><input type="checkbox" name="peopleassigned" />People assigned.
-Names: <input type="text" name="namesemail" size="73" /> </p>
-<p>Your representative to the Planning Council, either from PMC or
-Strategic Member, must attend PC meetings and represent you there.
-Presumably, of course, after meeting or communicating with you and the
-other projects they represent, so they can fairly bring forward concerns
-and vote on issue that effect all projects, if required. Put another
-way, by committing to be in the Simultaneous Release, you agree to abide
-by all the Planning Council decisions and rules, so be sure your
-representative understands your project and your situation.</p>
-<h3>IP Documentation</h3>
-<p>Projects must have their IP Logs approved (a normal Eclipse
-requirement) and will follow the Eclipse Legal deadlines to do so. In
-addition, drafts of the Projects IP Logs must be available every
-milestone, starting with M5. The ones for M5 and M6 will be understood
-to be &quot;drafts&quot; but for most projects the IP Logs should be
-relatively complete by M7. If Projects have changes come in after M7
-they can update until the deadline set by the IP staff (usually RC2).
-The purpose of having these early drafts is so that projects get
-familiar with what's required, and do not allow work to build up at the
-end, also to allow questions to come up, and have time to find answers,
-and also to allow time for issues with automatic IP tools to be
-addressed.</p>
-<p>M5 IP draft URL: <input type="text" name="m5draftURL" size="60" /></p>
-<p>M6 IP draft URL: <input type="text" name="m5draftURL0" size="60" /></p>
-<p>M7 IP draft URL: <input type="text" name="m5draftURL1" size="60" /></p>
-<p>Final IP URL: <input type="text" name="m5draftURL10" size="60" /><br />
-</p>
-<p><span style="color: #323232">Being in the Simultaneous
-Release will give your IP some higher priority in getting evaluated, in
-order to make the date. The higher priority treatment is only for the 5
-months or so before the release (after the deadline for CQs). The reason
-being, of course, is that the rest of the year the IP staff must also
-get work done for maintenance releases and projects not on the release
-train. During that part of the year (roughly July to February every
-year) all CQs are prioritized in a uniform way.</span></p>
-<h3 id="pcReleaseReview"><span style="color: #323232">Release
-Review</span></h3>
-<p><span style="color: #323232">The release review archival
-materials must be complete by the date specified by the EMO, which is
-usually staged in earlier than for a usual release. (Typically RC2.)</span></p>
-<p>A Project's PMC must approve the projects request for review (a
-normal Eclipse requirement). In addition, to help organize and
-streamline the yearly Simultaneous release, a PMC must provide their
-approval in writing, in the form of a short summary of their projects
-that are requesting review and summary of the PMC's discussion or method
-of approving them. (This is meant to be very brief, such as 1/2 to 1
-page). The short summary can be documented in a mailing list, PMC
-Meeting notes, or even a wiki document. A pointer (URL) to the document
-should be provided to EMO, and will be included in the same notice to
-the community that provides pointers to the Project Docuware.</p>
-<p>URL to PMC's Executive Summary (by RC2): <input type="text"
-	name="pmc summary" size="60" /></p>
-<p>The public review calls will be organized based on Top Level
-Project, and at least one PMC member should be on that call to give very
-brief overview of projects that are requesting the release review (not
-to exceed 5 minutes, at the very most).</p>
-<p>In addition to the ordinarily required Release Review Archival
-Materials, all Projects participating in yearly Release agree to provide
-a checklist-with-detail form that describes their compliance (or not)
-with all of the criteria items described in this document. Note that
-this checklist-with-detail must be updated every milestone as things are
-completed, or details added, so progress can be reviewed by Planning
-Council and potential adopters. The primary report of compliance with
-the checklist must be provided at least at the level of a Top Level
-Project. In some cases, such as if sub-projects are very independent of
-each other, PMCs may decide to document things at a subproject level,
-and then &quot;roll-up&quot; to a Top Level document, or, if a Top Level
-Project is known to be uniform and &quot;close knit&quot; then they may
-provide one summary document that applies to all sub-projects. [This
-will likely be automated as web-app, possibly with &quot;automatic&quot;
-roll up].</p>
-<p>URL to checklists: <input type="text" name="urlchecklist"
-	size="63" /></p>
-<p></p>
-<h2>Play well with others ... to be in common repository</h2>
-<p>The requirements in this section must be met for a project to be
-on the common, central repository (e.g. /releases/helios) for end users
-to discover easily and minimum requirements to be included in EPP
-Packages. The criteria in this section are designed to make sure
-projects work relatively well, and work well together. This is
-especially required for adopters who may be using these projects in
-complicated, interwoven ways so each piece of the puzzle must fit
-together well and be dependable and be maintainable, as well as being on
-time and IP clean.</p>
-<p><b>Communication</b>: Build team members (or their designated
-alternates) from each project may be asked to provide direct
-communication channels: phone, mail, IM, IRC and at least one build team
-member must be &quot;on call&quot; during the milestone integration
-periods.</p>
-<p><input type="checkbox" name="relengprovided" />Releng names and
-contact data provided. Can send data to Programming Chair ... for
-privacy reasons we won't publish it publically.</p>
-<p><b>API</b>. Projects should leverage only published APIs of
-dependencies. All deviations must be documented in bugzillas. These
-bugzillas may be of the type that a dependent project should provide a
-required API, or of the type that a consuming project must move to some
-API that already exists. Note that technically there is no obligation
-for consumed projects to provide API that is requested ... that depends
-on many things ... but the main goal of requiring these bugzilla entries
-is to provide some documentation and measure of the amount of risk
-associated with non-API use.</p>
-<p><input type="checkbox" name="apischeckedandbugged" />Bugzillas
-open, or can &quot;prove&quot; API clean. Link to API check reports: <input
-	type="text" name="api check links" size="60" /></p>
-<p>List of Bugilla's open for API deviations:</p>
-<p><textarea rows="3" cols="38" name="buzilla list"></textarea></p>
-<p><b>Message Bundles</b>. Projects must use <a
-	href="http://help.eclipse.org/galileo/topic/org.eclipse.platform.doc.isv/reference/misc/message_bundles.html">
-Eclipse message bundles</a> unless there are technical reasons not to.</p>
-<p><input type="checkbox" name="messageBundlesUsed" /> Message
-Bundles used throughout.</p>
-<p><input type="checkbox" name="messageBundleException" /> Message
-Bundle Exception. Give description of technical reasons, and link to
-Planning Councils approval.</p>
-<p><textarea rows="3" cols="40" name="exceptiondescription"></textarea><br />
-</p><p><b>Version Numbering</b>. Projects must use 4-part <a
-	href="http://wiki.eclipse.org/Version_Numbering">version numbers</a>.</p>
-<p><input type="checkbox" name="versionnumbers" />Standard
-Versioning Used.</p>
-<p><input type="checkbox" name="versioningexceptions" />Exceptions</p>
-<p><textarea rows="3" cols="40" name="versioning exceptions"></textarea></p>
-<p><b><input type="checkbox" name="osgibundleformat" /> OSGi
-bundle format</b>. All plug-ins (bundles) must use the true bundle form.
-That is, provide a manifest.mf file, and not rely on the plugin.xml file
-being 'translated' into a manifest.mf file at initial startup. With
-that, empty plugin.xml files in the presence of a manifest.mf file
-should not be included in a bundle. (For some old history, see <a
-	href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=130598">bug
-130598</a>.)</p>
-
-<p><b><input type="checkbox" name="osgibundleformat0" />
-Execution Environment</b>. All plug-ins must <a
-	href="http://wiki.eclipse.org/Execution_Environments">correctly
-list their Bundle Required Execution Environment (BREE)</a>.</p>
-
-<p><b><input type="checkbox" name="osgibundleformat1" />
-Signing</b>. Projects must use <a href="http://wiki.eclipse.org/JAR_Signing">signed
-plugins using the Eclipse certificate</a>.</p>
-
-<p><b><input type="checkbox" name="osgibundleformat2" /> Jarred
-Bundles</b>. Projects must use jarred plug-ins (with unpack=false) unless
-authorized by the planning council for technical exceptions. Also,
-nested jars should be avoided if possible since it creates problems for
-projects that has dependencies to such plug-ins. The OSGi runtime is
-fine with it but the PDE environment is not able to handle classpaths
-that contain nested jars.</p>
-<p><b><input type="checkbox" name="osgibundleformat3" /> Re-use
-and share</b><b> </b>common third party jars. Any third-party plug-ins that
-are common between projects must be consumed via <a
-	href="http://www.eclipse.org/orbit">Orbit</a>; a Simultaneous Release
-will not have duplicate third-party libraries (note that this only
-applies to identical versions of the libraries; thus if project A
-requires foo.jar 1.6 and project B uses foo.jar 1.7, that's ok, as long
-as it is required and has a documented reason).</p>
-
-<p><b><input type="checkbox" name="osgibundleformat4" />
-Optimization</b>. Projects must <a
-	href="http://help.eclipse.org/galileo/topic/org.eclipse.platform.doc.isv/guide/p2_repositorytasks.htm">
-optimize their p2 repositories</a> to reduce bandwidth utilization and
-provide a better install and update experience for users.</p>
-<p><b><input type="checkbox" name="osgibundleformat5" />
-Provide p2 repository</b>. Projects must provide their own project p2
-repository for their own project and updates. In addition, they must
-provide their archives and metadata in a specified format and method to
-allow at least parts of their repository to be aggregated and mirrored
-to a common repository. The <a
-	href="http://wiki.eclipse.org/Helios/Contributing_to_Helios_Build">current
-process</a> may be modified throughout the year, if improvements can be
-made.</p>
-<p><b><input type="checkbox" name="osgibundleformat6" />
-Capabilities</b>. Each project will provide basic capability/activity
-definitions to allow for their UI contributions to be hidden. These may
-be provided in a separate plugins and features to facilitate inclusion
-and reuse by consumers in product development, or simply well documented
-so adopters can reuse via copy/paste. Ideally, projects should also
-provide triggers to facilitate progressive discovery of functionality.</p>
-<p>URL to a project's description of their capabilities (even if
-sample) and/or plugin names adopters can use.</p>
-<p><input type="text" name="capability URL" size="40" /></p>
-<p>URL to a project's description of their progressive discover
-strategy or documentation:</p>
-<p><input type="text" name="progressive" size="40" /></p>
-<p><b><input type="checkbox" name="osgibundleformat7" />
-Support Translations</b>. All strings must be externalized, and Projects
-must participate in Babel, meaning it is registered and available for
-string translation, etc. Projects must freeze the UI sufficiently early
-to allow the Babel project time to translate strings so there can be
-simultaneous release of translated versions. The UI should be frozen by
-M6 (a "freeze" all major changes and additions are done by M6, and
-changes after that are done in a controlled, well documented fashion, so
-Babel translators can more easily &quot;keep up&quot; with late
-changes).</p>
-<p><b><input type="checkbox" name="osgibundleformat8" /> Excel
-in NL support</b>. The Project must use <a
-	href="http://wiki.eclipse.org/ICU4J">ICU4J</a>, where appropriate, to
-excel in NL support. (The latest ICU4J bundles will be in Orbit).</p>
-<p><input type="checkbox" name="exceptions" /> Exceptions:</p>
-<p><textarea rows="3" cols="40"></textarea><br />
-</p>
-<p><b><input type="checkbox" name="branding" /> Branding</b>. Each
-major project (as determined by participating PMCs) must have an 'About'
-dialog icon with hover text that displays the provider name. Every
-plug-in and feature must specify a descriptive provider-name (for
-features), or Bundle-Vendor header (for plug-ins), as determined by the
-project's PMC (e.g. "Eclipse Modeling Project" rather than
-"Eclipse.org"). Also, Projects must contribute to the welcome page when
-appropriate.</p>
-
-
-
-
-
-<p><b><input type="checkbox" name="donoharm" /> Do No Harm.</b>
-Projects must work together in any combination of any install. Put
-another way, this means that users can install any subset of the Helios
-projects and each of the installed projects will work as well as if it
-had been loaded independently. If such a problem is identified, the
-affected projects must track down and fix the problem.</p>
-<p><i><input type="checkbox" name="licenseConsistency" />[New
-this year.]</i> <b>License text consistency</b>. Use standard forms of
-license documents so it is displayed in the most usable, and concise way
-during install and update. It is a normal requirement to use a standard
-<a href="http://www.eclipse.org/legal/epl/about.php">Eclipse
-Foundation &quot;about&quot; template</a>, but where those templates are
-edited by each project, care must be taken to be sure they are edited in
-similar ways. You can see an example of the license-consolidating UI in
-<a
-	href="http://download.eclipse.org/eclipse/downloads/drops/S-3.6M1-200908061400/eclipse-news-M1.html#Platform">Eclipse
-Platform Helios M1</a>.</p>
-
-
-<h2>Be a good Eclipse Citizen ... and document it</h2>
-<p>Projects should exhibit good Eclipse Citizenship, to Release and
-participate in Common Discovery Site and EPP Packages. These are often
-&quot;best practices&quot; that some projects have found helpful at
-Eclipse. These criteria often speak to the quality of the Project, as an
-Eclipse Project, as opposed to their code or architecture. They are a
-bit more subjective than some of the other criteria, and the relevancy
-to any particular project may not be as universal, so there is no set
-number of items to satisfy. But, it is required that each project
-document their level of compliance to each item. Especially good Eclipse
-Citizens will get a gold star, and especially bad ones might get a
-frowny face.</p>
-<p><b><input type="checkbox" name="engage" />Engage Community</b>. The Project should actively engage their
-community to get feedback on milestone builds, and document how they do
-that. One way to do this is to have a <a
-	href="http://wiki.eclipse.org/Architecture_Council/New_and_Noteworthy">New
-&amp; Noteworthy</a> for each milestone. New and Noteworthy documents should
-be something readable and usable not just a static list of all the bugs.
-Corollary: individual new &amp; noteworthy should be linked in to the
-collective New &amp; Noteworthy.</p>
-<p>If yes, describe, or provide URL:</p>
-<p><textarea rows="3" cols="50" name="engageddescription"></textarea><br />
-</p>
-<p><b><input type="checkbox" name="engage0" />Usability</b>. Should follow the <a
-	href="http://wiki.eclipse.org/User_Interface_Guidelines">User
-Interface Guidelines</a>. The <a href="http://wiki.eclipse.org/UI_Checklist">UI
-Checklist</a> is a good place to start. Also, should participate in a <a
-	href="http://wiki.eclipse.org/User_Interface_Best_Practices_Working_Group">User
-Interface Best Practices Working Group</a> <a
-	href="http://wiki.eclipse.org/UIBPWG_UI_Walkthrough"> UI
-walkthrough</a>.</p>
-<p>If yes, describe, or provide URL:</p>
-<p><textarea rows="3" cols="50" name="engageddescription0"></textarea></p>
-<p><b><input type="checkbox" name="engage1" />Performance</b>. Project should have measurable performance
-criteria that are regularly tested against. Projects should devote at
-least one milestone to performance and scalability improvements.</p>
-<p>If yes, describe, or provide URL:</p>
-<p><textarea rows="3" cols="50" name="engageddescription1"></textarea></p>
-<p><b><input type="checkbox" name="engage2" />Test Localization</b>. The project should use the <a
-	href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=217339">Babel
-Pseudo Translation Test</a> to verify their translatability. [Need better
-reference link.]</p>
-<p>If yes, describe, or provide URL:</p>
-<p><textarea rows="3" cols="50" name="engageddescription2"></textarea></p>
-<p><b><input type="checkbox" name="engage3" />Enable Use with All Languages</b>. Should design and test for
-enabling all languages including bidi, unicode characters, etc. This is
-different than "translating" the program. For example, while using an
-English version of Eclipse Web Tools, someone should be able to create a
-Chinese language web application. [Need "how to" reference link.]</p>
-<p>If yes, describe, or provide URL:</p>
-<p><textarea rows="3" cols="50" name="engageddescription3"></textarea></p>
-<p><b><input type="checkbox" name="engage4" />Builds</b>. Projects must have a mature, stable build process:
-documented, scripted, repeatable, and executable by others.</p>
-<p>If yes, describe, or provide URL:</p>
-<p><textarea rows="3" cols="50" name="engageddescription4"></textarea></p>
-<p><b><input type="checkbox" name="engage5" />Ramp Down Planned and Defined</b>. Projects must have a
-written ramp down policy by M6, at the latest, and provide link. The
-plan should describe when the project plans to be feature complete, have
-API frozen, and similar. See <a
-	href="http://www.eclipse.org/eclipse/development/freeze_plan_3.5.php">Platform
-3.5 Endgame plan</a> as a guideline. See also <a
-	href="http://wiki.eclipse.org/heliosPlan/index.php?title=Helios/Final_Daze&amp;action=edit">Helios
-Final Daze</a>.)</p>
-<p>If yes, describe, or provide URL:</p>
-<p><textarea rows="3" cols="50" name="engageddescription5"></textarea></p>
-<p><b><input type="checkbox" name="engage6" />Accessibility</b>. Projects should design and test for
-accessibility compliance, following established guidelines and Eclipse
-fundamental techniques to achieve accessibility. Projects must document
-their accessibility work and compliance. Ideally this would be by using
-a publicly available checklists, such as</p>
-<ul>
-	<li><a
-		href="http://www.itic.org/resources/voluntary-product-accessibility-template-vpat/">http://www.itic.org/resources/voluntary-product-accessibility-template-vpat/
-	</a></li>
-	<li><a href="http://www.section508.gov/">http://www.section508.gov/</a></li>
-	<li><a href="http://www.w3.org/TR/WCAG/">http://www.w3.org/TR/WCAG/</a></li>
-</ul>
-<p>but, given the <a
-	href="http://wiki.eclipse.org/Planning_Council/Cross_Project_Teams/Accessibility">advice
-of the Accessibility Cross Project Team</a>, for this year's Helios
-Simultaneous Release, projects can document their work or compliance as
-a negative, such as "we did not do any accessibility work or testing and
-do not know the degree of our compliance". But its important to
-document, so adopters know. If possible, and appropriate, accessibility
-testing tools can be leveraged such as <a
-	href="http://www.nvda-project.org/">NVDA</a>. The main <a
-	href="http://www.eclipse.org/articles/article.php?file=Article-Accessibility351/index.html">accessibility
-article at Eclipse Corner</a> has been made current (thanks goes to Todd
-Creasey).</p>
-
-<p>If yes, describe, or provide URL:</p>
-<p><textarea rows="3" cols="50" name="engageddescription6"></textarea></p>
-<p><i><input type="checkbox" name="engage7" />[New this year.]</i>. <b>Unit Tests</b>. Projects must have
-some unit tests that can verify at least basic functionality of a build
-or distribution. The steps to build and run the tests must be documented
-and executable by others.</p>
-<p>If yes, describe, or provide URL:</p>
-<p><textarea rows="3" cols="50" name="engageddescription7"></textarea></p>
-<p><i><input type="checkbox" name="engage8" />[New this year.]</i>. <b>API Policy</b> Defined and
-Documented. Typically would include how 'APIs' are distinguished from
-non-API and 'provisional' API, if any. It is recommended that non-API be
-marked with x-internal in the bundles manifest. Also, should include
-what the commitment is to API, how long maintained after deprecated,
-etc. As one example, see <a
-	href="http://wiki.eclipse.org/WTP_API_Policy">WTP API Policy</a>.</p>
-
-<p>If yes, describe, or provide URL:</p>
-<p><textarea rows="3" cols="50" name="engageddescription8"></textarea></p>
-<p><i><input type="checkbox" name="engage9" />[New this year.]. </i><b>Retention Policy.</b> Projects should
-define and document their retention policy. This should include both zip
-distributions and repositories. For examples, see <a
-	href="http://wiki.eclipse.org/WTP/Retention_Policy">WTP Retention
-Policy</a> and <a
-	href="http://wiki.eclipse.org/Eclipse_Project_Update_Sites">Eclipse
-Project Update Sites</a></p>
-<p>If yes, describe, or provide URL:</p>
-<p><textarea rows="3" cols="50" name="engageddescription9"></textarea></p>
-<p><i><input type="checkbox" name="engage10" />[New this year.]. </i><b>Project Metrics.</b> Projects should
-provide some summary metrics, such as number of bundles, number of
-committers, lines of code, number of bugs opened and fixed. This is so
-some statements can be made and tracked year-to-year about the size of
-the simultaneous release.</p>
-<p>
-<p>If yes, describe, or provide URL:</p>
-<p><textarea rows="3" cols="50" name="engageddescription10"></textarea></p>
-</p>
-<h1></h1><p></p>
-
-</body>
-</html>
\ No newline at end of file
diff --git a/planning/EclipseSimultaneousReleaseOLD.html b/planning/EclipseSimultaneousReleaseOLD.html
deleted file mode 100644
index 8db1b20..0000000
--- a/planning/EclipseSimultaneousReleaseOLD.html
+++ /dev/null
@@ -1,396 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1" ?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
-<title>The Eclipse Simultaneous Release</title>
-</head>
-<body>
-<h1 style="text-align: center">The Eclipse Simultaneous Release</h1>
-<h1 style="text-align: center; font-size: smaller">December 2, 2009<br />
-<a href="http://wiki.eclipse.org/Planning_Council">Eclipse Planning Council</a><br />
-Contact: <a href="mailto: david.williams@eclipse.org">David Williams</a></h1>
-
-
-<p>This document defines the rules and criteria for participating in
-the yearly Simultaneous Release. There are more criteria than when
-releasing at other times partially because there are more projects
-releasing at once, so the workload needs to streamlined and made more
-uniform. More important, the extra criteria are included by mutual
-agreement between projects (via their representatives to Planning
-Council) so that as a whole, the release will be of better quality,
-maintainability, and improved consumability by adopters.</p>
-<p>The spirit of this document should not be so much as a "contract" of what has 
-to be done to release, but instead as an agreement to make the 
-Yearly Release good, if not great! While each Project does their individual things 
-to make the Release great, this document and process describe how we as a group document 
-the achievement of our agreement. We are always open to 
-better agreements and better documentation of our achievements so feel free to keep track and make 
-suggestions year-to-year (preferably through your Planning Council representative) on how to make our 
-yearly release better. In fact, occasionally changes may be made to this document for 
-clarity or to improve reference links throughout the development cycle,
-but nothing new that would change work-load will be added after M4.</p>
-<p>To foster communication and flexibility where required,  
-any exceptions to these criteria or deadlines will follow the <a
-       href="#pcExceptionProcess">Planning Council Exception Process</a>.</p>
-<p>The requirements are divided into three
-categories:</p> 
-<ol><li>Requirements to be released as part
-of the &quot;yearly release&quot;, normal release requirements, done earlier than usual.</li> 
-<li>Requirements to be
-part of the Common Discovery Site repository and, consequently, the minimum requirements to be 
-part of EPP packages.</li>
-<li>Requirements to demonstrate good Eclipse Citizenship, following
-&quot;the Eclipse Way&quot;.</li>
-</ol>
-
-<h2>Do the basics ... early</h2>
-<p>The requirements and conditions stated in this section are the
-basic minimum required for a project to claim they are part of the
-yearly Simultaneous Release.</p>
-<p>To join a Simultaneous Release, Projects must have stated their
-intent to do so, and be in a build for the composite site aggregation by
-M4, at the latest. For projects continuing from previous years, the
-expectation is they will be in M1, unless they formally withdraw.</p>
-<p>The &quot;statement of intent&quot; is done formally by marking
-the &quot;Simultaneous Release Flag&quot; in the project's Portal
-meta-data.</p>
-<h3>Planning</h3>
-<p>All projects must have their project plan in the Eclipse
-Foundation standard XML Format (a normal Eclipse requirement).
-Committing to be in the Simultaneous Release means you commit to having
-these plans early: M2, for those projects that already know they will be
-in the Simultaneous Release, M4 will be the latest possible time, for
-those projects that are new to the Simultaneous Release Train and decide
-to join after M2. The plans should be updated periodically as things 
-change, or as items are completed.</p>
-<p>Also, for long term planning, remember that being in a
-Simultaneous Release also means a commitment to participating the SR1
-and SR2 simultaneous maintenance releases.</p>
-<p><i>[New this year.]</i> Once in, always in. Once a project joins
-one year's Simultaneous Release, it is assumed they will be in the next
-one, unless they formally withdraw. So, for example, it is required they
-will meet the subsequent year's Milestone Schedule, have plans done by
-M2 of following year, etc. Put another way, being part of the
-Simultaneous Release is not a &quot;one time&quot; activity, covering
-only the literal release date and not even a &quot;part time&quot;
-activity covering only part of the yearly development cycle. Instead it
-is a commitment to stay &quot;simultaneous&quot; on an on-going basis.</p>
-
-
-<h3>IP Documentation</h3>
-<p>Projects must have their IP Logs approved (a normal Eclipse
-requirement) and will follow the Eclipse Legal deadlines to do so. In
-addition, drafts of the Projects IP Logs must be available early, starting with M5. The development process requires the IP Log to always be accurate, but experience shows there's always some issues that have to be resolved, or fixed, before release (for example, sometimes a CQ might have the wrong flag, and cause it to not show up in the Auto IP Log). It is expected the IP Logs should be
-relatively complete by M7. If Projects have changes come in after M7
-they can update until the deadline set by the IP staff (usually RC2).
-The purpose of having these early drafts is so that projects get
-familiar with what's required, and do not allow work to build up at the
-end, also to allow questions to come up, and have time to find answers,
-and also to allow time for issues with automatic IP tools to be
-addressed. Some adopters will want to look at these early drafts to see what 3rd party requirements are associated with the code. </p>
-<p>Being in the Simultaneous Release will give your IP some higher
-priority in getting evaluated, in order to make the date. The higher
-priority treatment is only for the 5 months or so before the release
-(after the deadline for CQs). The reason being, of course, is that the
-rest of the year the IP staff must also get work done for maintenance
-releases and projects not on the release train. During that part of the
-year (roughly July to February every year) all CQs are prioritized in a
-uniform way.</p>
-<h3 id="pcReleaseReview">Release Review</h3>
-<p>The release review archival materials must be complete by the
-date specified by the EMO, which is usually staged in earlier than for a
-usual release. (Typically RC2.)</p>
-<p>A Project's PMC must approve the projects request for review (a
-normal Eclipse requirement). In addition, to help organize and
-streamline the yearly Simultaneous release, a PMC must provide their
-approval in writing, in the form of a short summary of their projects
-that are requesting review and summary of the PMC's discussion or method
-of approving them. (This is meant to be very brief, such as 1/2 to 1
-page). The short summary can be documented in a mailing list, PMC
-Meeting notes, or even a wiki document. A pointer (URL) to the document
-should be provided to EMO, and will be included in the same notice to
-the community that provides pointers to the Project Docuware.</p>
-<p>The public review calls will be organized based on Top Level
-Project, and at least one PMC member should be on that call to give very
-brief overview of projects that are requesting the release review (not
-to exceed 5 minutes, at the very most).</p>
-<p>In addition to the ordinarily required Release Review Archival
-Materials, all Projects participating in yearly Release agree to provide
-a checklist-with-detail form that describes their compliance (or not)
-with all of the criteria items described in this document. Note that
-this checklist-with-detail must be updated every milestone as things are
-completed, or details added, so progress can be reviewed by Planning
-Council and potential adopters. The primary report of compliance with
-the checklist must be provided at least at the level of a Top Level
-Project. In some cases, such as if sub-projects are very independent of
-each other, PMCs may decide to document things at a subproject level,
-and then &quot;roll-up&quot; to a Top Level document, or, if a Top Level
-Project is known to be uniform and &quot;close knit&quot; then they may
-provide one summary document that applies to all sub-projects. [This will likely be 
-automated as web-app, possibly with
-&quot;automatic&quot; roll up].</p>
-<p></p>
-<h2>Play well with others ... to be in common repository</h2>
-<p>The requirements in this section must be met for a project to be
-on the common, central repository (e.g. /releases/helios) for end users
-to discover easily and minimum requirements to be included in EPP Packages. The criteria in
-this section are designed to make sure projects work relatively well, and work well
-together. This is especially required for adopters who may be using
-these projects in complicated, interwoven ways so each piece of the
-puzzle must fit together well and be dependable and be maintainable, as
-well as being on time and IP clean.</p>
-<p><b>Communication</b>: 
-<p>At least one person from each project in a Simultaneous Release
-must subscribe to cross-project mailing list, since that is the primary
-communication channel for issues related to the Simultaneous Release.
-Also, at least one person from each project must subscribe to
-cross-project bugzilla inbox, as that is the primary bugzilla components
-for bugs that are truly cross-project, or bugs which are not known to be
-in one particular component.</p>
-<p>Your representative to the Planning Council, either from PMC or
-Strategic Member, must attend PC meetings and represent you there.
-Presumably, of course, after meeting or communicating with you and the
-other projects they represent, so they can fairly bring forward concerns
-and vote on issue that effect all projects, if required. Put another
-way, by committing to be in the Simultaneous Release, you agree to abide
-by all the Planning Council decisions and rules, so be sure your
-representative understands your project and your situation.</p>
-<p>Build team members (or their designated
-alternates) from each project may be asked to provide direct
-communication channels: phone, mail, IM, IRC and at least one build team
-member must be &quot;on call&quot; during the milestone integration
-periods.</p>
-<p><b>API</b>. Projects should leverage only published APIs of
-dependencies. All deviations must be documented in bugzillas. These
-bugzillas may be of the type that a dependent project should provide a required
-API, or of the type that a consuming project must move to some API that
-already exists. Note that technically there is no obligation for
-consumed projects to provide API that is requested ... that depends on
-many things ... but the main goal of requiring these bugzilla entries is to provide some documentation 
-and measure of the
-amount of risk associated with non-API use.</p>
-<p><b>Message Bundles</b>. Projects must use <a
-       href="http://help.eclipse.org/galileo/topic/org.eclipse.platform.doc.isv/reference/misc/message_bundles.html">
-Eclipse message bundles</a> unless there are technical reasons not to.</p>
-<p><b>Version Numbering</b>. Projects must use 4-part <a
-       href="http://wiki.eclipse.org/Version_Numbering">version numbers</a>.</p>
-<p><b>OSGi bundle format</b>. All plug-ins (bundles) must use the
-true bundle form. That is, provide a manifest.mf file, and not rely on
-the plugin.xml file being 'translated' into a manifest.mf file at
-initial startup. With that, empty plugin.xml files in the presence of a
-manifest.mf file should not be included in a bundle. (For some old
-history, see <a
-       href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=130598">bug
-130598</a>.)</p>
-
-<p><b>Execution Environment</b>. All plug-ins must <a
-       href="http://wiki.eclipse.org/Execution_Environments">correctly
-list their Bundle Required Execution Environment (BREE)</a>.</p>
-
-<p><b>Signing</b>. Projects must use <a
-       href="http://wiki.eclipse.org/JAR_Signing">signed plugins using the
-Eclipse certificate</a>.</p>
-
-<p><b>Jarred Bundles</b>. Projects must use jarred plug-ins (with
-unpack=false) unless authorized by the planning council for technical
-exceptions. Also, nested jars should be avoided if possible since it
-creates problems for projects that has dependencies to such plug-ins.
-The OSGi runtime is fine with it but the PDE environment is not able to
-handle classpaths that contain nested jars.</p>
-<p><b>Re-use and share</b><b> </b>common third party jars. Any
-third-party plug-ins that are common between projects must be consumed
-via <a href="http://www.eclipse.org/orbit">Orbit</a>; a Simultaneous
-Release will not have duplicate third-party libraries (note that this
-only applies to identical versions of the libraries; thus if project A
-requires foo.jar 1.6 and project B uses foo.jar 1.7, that's ok, as long
-as it is required and has a documented reason).</p>
-
-<p><b>Optimization</b>. Projects must <a
-       href="http://help.eclipse.org/galileo/topic/org.eclipse.platform.doc.isv/guide/p2_repositorytasks.htm">
-optimize their p2 repositories</a> to reduce bandwidth utilization and
-provide a better install and update experience for users.</p>
-<p><b>Provide p2 repository</b>. Projects must provide their own
-project p2 repository for their own project and updates. In addition,
-they must provide their archives and metadata in a specified format and method to allow
-at least parts of their repository to be aggregated and mirrored to a
-common repository. The <a href="http://wiki.eclipse.org/Helios/Contributing_to_Helios_Build">current process</a> may be modified throughout the year, if improvements can be made. Clarification on 03/31/2010: At the <a
-	href="http://wiki.eclipse.org/Planning_Council/March_21_2010#Helios">3/21
-Planning Council meeting,</a> it was agreed this means that project's repositories must contain original jars, and pack.gz files (where original jar means the jar produced by the build, but which has been conditioned for pack200). </p>
-<p><b>Capabilities</b>. Each project will provide basic
-capability/activity definitions to allow for their UI contributions to
-be hidden. These may be provided in a separate plugins and features to
-facilitate inclusion and reuse by consumers in product development, or simply well 
-documented so adopters
-can reuse via copy/paste. Ideally, projects should also provide 
-triggers to facilitate progressive discovery of functionality. 
-</p>
-<p><b>Support Translations</b>. All strings must be externalized,
-and Projects must participate in Babel, meaning it is registered and
-available for string translation, etc. Projects must freeze the UI
-sufficiently early to allow the Babel project time to translate strings
-so there can be simultaneous release of translated versions. The UI
-should be frozen by M6 (a "freeze" all major changes and additions are done
-by M6, and changes after that are done in a controlled, well documented fashion, 
-so Babel translators can more easily &quot;keep
-up&quot; with late changes).</p>
-<p><b>Excel in NL support</b>. The Project must use <a
-       href="http://wiki.eclipse.org/ICU4J">ICU4J</a>, where appropriate, to
-excel in NL support. (The latest ICU4J bundles will be in Orbit).</p>
-<p><b>Branding</b>. Each major project (as determined by
-participating PMCs) must have an 'About' dialog icon with hover text
-that displays the provider name. Every plug-in and feature must specify
-a descriptive provider-name (for features), or Bundle-Vendor header (for
-plug-ins), as determined by the project's PMC (e.g. "Eclipse Modeling
-Project" rather than "Eclipse.org"). Also, Projects must contribute to
-the welcome page when appropriate.</p>
-
-
-
-
-
-<p><b>Do No Harm.</b> Projects must work together in any combination
-of any install. Put another way, this means that users can install any
-subset of the Helios projects and each of the installed projects will work as well
-as if it had been loaded independently. If such
-a problem is identified, the affected projects must track down and fix
-the problem.</p>
-<p><i>[New this year.]</i> <b>License text consistency</b>. Use standard
-forms of license documents so it is displayed in the most usable, and
-concise way during install and update. It is a normal requirement to use a standard
-<a
-       href="http://www.eclipse.org/legal/epl/about.php">Eclipse
-Foundation &quot;about&quot; template</a>, but where those templates are
-edited by each project, care must be taken to be sure they are edited in
-similar ways. You can see an example of the license-consolidating UI in
-<a
-       href="http://download.eclipse.org/eclipse/downloads/drops/S-3.6M1-200908061400/eclipse-news-M1.html#Platform">Eclipse
-Platform Helios M1</a>.</p>
-
-
-<h2>Be a good Eclipse Citizen ... and document it</h2>
-<p>Projects should exhibit good Eclipse Citizenship, to Release and participate
-in Common Discovery Site and EPP Packages. These are often &quot;best
-practices&quot; that some projects have found helpful at Eclipse. These
-criteria often speak to the quality of the Project, as an Eclipse
-Project, as opposed to their code or architecture. They are a bit more
-subjective than some of the other criteria, and the relevancy to any
-particular project may not be as universal, so there is no set number of
-items to satisfy. But, it is required that each project document their level of
-compliance to each item. Especially good Eclipse Citizens will get a
-gold star, and especially bad ones might get a frowny face.</p>
-<p><b>Engage Community</b>. The Project should actively engage their
-community to get feedback on milestone builds, and document how they do
-that. One way to do this is to have a <a
-       href="http://wiki.eclipse.org/Architecture_Council/New_and_Noteworthy">New
-&amp; Noteworthy</a> for each milestone. New and Noteworthy documents should
-be something readable and usable not just a static list of all the bugs.
-Corollary: individual new &amp; noteworthy should be linked in to the
-collective New &amp; Noteworthy.</p>
-<p><b>Usability</b>. Should follow the <a
-       href="http://wiki.eclipse.org/User_Interface_Guidelines">User
-Interface Guidelines</a>. The <a href="http://wiki.eclipse.org/UI_Checklist">UI
-Checklist</a> is a good place to start. Also, should participate in a <a
-       href="http://wiki.eclipse.org/User_Interface_Best_Practices_Working_Group">User
-Interface Best Practices Working Group</a> <a
-       href="http://wiki.eclipse.org/UIBPWG_UI_Walkthrough"> UI
-walkthrough</a>.</p>
-<p><b>Performance</b>. Project should have measurable performance
-criteria that are regularly tested against. Projects should devote at
-least one milestone to performance and scalability improvements.</p>
-<p><b>Test Localization</b>. The project should use the <a
-       href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=217339">Babel
-Pseudo Translation Test</a> to verify their translatability. [Need better reference link.]</p>
-<p><b>Enable Use with All Languages</b>. Should design and test for
-enabling all languages including bidi, unicode characters, etc. This is different than "translating" 
-the program. For example, while using an English version of Eclipse Web Tools, someone should be able to create 
-a Chinese language web application.  
-[Need "how to" reference link.]</p>
-<p><b>Builds</b>. Projects must have a mature, stable build process:
-documented, scripted, repeatable, and executable by others.</p>
-<p><b>Ramp Down Planned and Defined</b>. Projects must have a
-written ramp down policy by M6, at the latest, and provide link. The
-plan should describe when the project plans to be feature complete, have
-API frozen, and similar. See <a
-       href="http://www.eclipse.org/eclipse/development/freeze_plan_3.5.php">Platform
-3.5 Endgame plan</a> as a guideline. See also <a
-       href="http://wiki.eclipse.org/heliosPlan/index.php?title=Helios/Final_Daze&amp;action=edit">Helios
-Final Daze</a>.)</p>
-<p><b>Accessibility</b>. Projects should design and test for accessibility compliance, 
-following established guidelines and Eclipse fundamental techniques to achieve 
-accessibility. Projects must document their accessibility work and compliance. Ideally this would be 
-by using a publicly available checklists, such as
-</p>
-<ul>
-<li><a href="http://www.itic.org/resources/voluntary-product-accessibility-template-vpat/">http://www.itic.org/resources/voluntary-product-accessibility-template-vpat/ </a></li>
-<li><a href="http://www.section508.gov/">http://www.section508.gov/</a></li> 
-<li><a href="http://www.w3.org/TR/WCAG/">http://www.w3.org/TR/WCAG/</a></li>
-</ul>
-<p>
-but, given the <a href="http://wiki.eclipse.org/Planning_Council/Cross_Project_Teams/Accessibility">advice of the Accessibility Cross Project Team</a>, for 
-this year's Helios Simultaneous Release, 
-projects can document their work or compliance as a negative, such as "we did not do any 
-accessibility work or testing and 
-do not know the degree of our compliance". But its important to document, so adopters know. 
-If possible, and appropriate, accessibility testing tools can be leveraged 
-such as <a href="http://www.nvda-project.org/">NVDA</a>. 
-The main <a href="http://www.eclipse.org/articles/article.php?file=Article-Accessibility351/index.html">accessibility article at Eclipse Corner</a> 
-has been made current (thanks goes to Todd Creasey).
-</p>
-
-<p><i>[New this year.]</i>. <b>Unit Tests</b>. Projects must have
-some unit tests that can verify at least basic functionality of a build
-or distribution. The steps to build and run the tests must be documented
-and executable by others.</p>
-<p><i>[New this year.]</i>. <b>API Policy</b> Defined and
-Documented. Typically would include how 'APIs' are distinguished from
-non-API and 'provisional' API, if any. It is recommended that non-API be
-marked with x-internal in the bundles manifest. Also, should include
-what the commitment is to API, how long maintained after deprecated,
-etc. As one example, see <a
-       href="http://wiki.eclipse.org/WTP_API_Policy">WTP API Policy</a>.</p>
-
-<p><i>[New this year.]. </i><b>Retention Policy.</b> Projects should
-define and document their retention policy. This should include both zip
-distributions and repositories. For examples, see <a
-       href="http://wiki.eclipse.org/WTP/Retention_Policy">WTP Retention
-Policy</a> and <a
-       href="http://wiki.eclipse.org/Eclipse_Project_Update_Sites">Eclipse
-Project Update Sites</a></p>
-<p><i>[New this year.]. </i><b>Project Metrics.</b> Projects should
-provide some summary metrics, such as number of bundles, number of
-committers, lines of code, number of bugs opened and fixed. This is so
-some statements can be made and tracked year-to-year about the size of
-the simultaneous release.</p>
-<p></p>
-<h1>Additional Information</h1>
-<h2><a name="pcExceptionProcess">Planning Council Exception
-Process</a></h2>
-<p><i>[New this year.]</i> Exceptions for any rule or schedule can
-be made if there are good enough reasons to. This same exception process
-will be followed for things like &quot;requests to respin&quot; a build after a deadline. The
-process to get any exception must be open and well documented and follow these
-steps:</p>
-<p>First, the Project's PMC must approve the request for an
-exception and it is the PMC (not the Project) that makes the request to
-the Planning Council. The Planning Council member that represents the PMC would
-bring the issue forward to the Planning Council.</p>
-<p>Second, the exception requires at least 3 positive votes from
-active Planning Council members and no negative votes. When time is a
-factor (e.g. requests for rebuilds) the deadline for voicing a negative
-vote is basically by the time 3 votes are documented. But when time is
-not a factor, such as when requesting an exception to one of the
-criteria, then a period of one week will pass before being final, to
-allow times for concerns or negative votes to be voiced even after 3 positive votes. If
-there are not enough positive votes within one week, then the request
-for exception will be considered 'failed'. Note that &quot;3&quot; was
-chosen under the assumption that the Planning Council member
-representing the PMC would vote for it (since that PMC must approve it
-initially) so that means 2 others must also vote for it, for 3 total.</p>
-<p>Depending on the timing, the issue and votes will be documented
-in either the Planning Council Meeting minutes, or on the Planning
-Council mailing list. If possible, some automatation may be added to the release reporting tool to aid 
-this documentation.</p>
-
-</body>
-</html>
\ No newline at end of file
diff --git a/planning/EclipseSimultaneousReleaseOLD.php b/planning/EclipseSimultaneousReleaseOLD.php
deleted file mode 100644
index bf81321..0000000
--- a/planning/EclipseSimultaneousReleaseOLD.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?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'
-//ini_set("display_errors", "true");
-//error_reporting (E_ALL);
-
-#
-# Begin: page-specific settings.
-$pageTitle 		= "Eclipse Planning Council";
-//$pageKeywords	= "Eclipse Planning Council Simultaneous Release Helios must-dos";
-$pageAuthor		= "David Williams";
-$theme = "Nova";
-
-
-# Paste your HTML content between the markers!
-ob_start();
-?>
-
-	
-<div id="maincontent" style="padding: 5em; width: 90%; margins: 5%;">
-
-
-
-<?php 
-    $xhtmlFile = 'EclipseSimultaneousReleaseOLD.html';
-	// Load the source. Will treat as "raw" XHMTL for now
-	//$doc = new DOMDocument;
-	//$doc->loadHTMLFile($xhtmlFile);
-	//echo $doc->saveHTML();
-	echo file_get_contents($xhtmlFile);
-?>
-
-
-</div>
-
-<?php
-$html = ob_get_contents();
-ob_end_clean();
-
-# Generate the web page
-$App->generatePage($theme, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
-
-?>
\ No newline at end of file
diff --git a/planning/SimultaneousReleaseGrid.php b/planning/SimultaneousReleaseGrid.php
deleted file mode 100644
index d13bfcb..0000000
--- a/planning/SimultaneousReleaseGrid.php
+++ /dev/null
@@ -1,3 +0,0 @@
-<?php  
-header('Location:http://www.eclipse.org/projects/releases/releases.php?release=helios');
-?>
\ No newline at end of file
diff --git a/planning/SimultaneousReleaseOverview.php b/planning/SimultaneousReleaseOverview.php
deleted file mode 100644
index d13bfcb..0000000
--- a/planning/SimultaneousReleaseOverview.php
+++ /dev/null
@@ -1,3 +0,0 @@
-<?php  
-header('Location:http://www.eclipse.org/projects/releases/releases.php?release=helios');
-?>
\ No newline at end of file
diff --git a/planning/grid.php b/planning/grid.php
deleted file mode 100644
index d13bfcb..0000000
--- a/planning/grid.php
+++ /dev/null
@@ -1,3 +0,0 @@
-<?php  
-header('Location:http://www.eclipse.org/projects/releases/releases.php?release=helios');
-?>
\ No newline at end of file
diff --git a/planning/index.php b/planning/index.php
index d13bfcb..4451e71 100644
--- a/planning/index.php
+++ b/planning/index.php
@@ -1,3 +1,15 @@
-<?php  
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+
 header('Location:http://www.eclipse.org/projects/releases/releases.php?release=helios');
 ?>
\ No newline at end of file
diff --git a/planning/poll2011name.php b/planning/poll2011name.php
deleted file mode 100644
index 110afec..0000000
--- a/planning/poll2011name.php
+++ /dev/null
@@ -1,67 +0,0 @@
-<?php 
-//ini_set("display_errors", "true");
-//error_reporting (E_ALL);
-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();
-
-       #*****************************************************************************
-       #
-       # poll2011name.php
-       #
-       # Author:            David Williams
-       # Date:                     2010-04-07
-       #
-       # Description: Quick poll to get input for Helios +1 Sim. Release name. 
-       #
-       #
-       #****************************************************************************
-       
-       #
-       # Begin: page-specific settings.  Change these. 
-	$pageTitle 		= "Community Poll Recount Vote";
-       $pageKeywords = "Eclipse Simultaneous Release 2011";
-       $pageAuthor          = "David Williams";
-       $theme = "Nova";
-
-
-       # Paste your HTML content between the markers!   
-ob_start();
-?>            
-
-
-<div id="maincontent" style="width: 90%; padding: 5%;">
-
-              <h1><?= $pageTitle ?></h1>
-                 <h2>Help decide the name for the 2011 Eclipse Simultaneous Release</h2>
-                     <p>There will be an Eclipse Simultaneous Release on the fourth Wednesday of
-                     June, 2011. But what to call it? </p>
-                     <p>Below are the results of our May, 2010 community poll.</p>
-                     <p>BUT, it is not done yet. More processes have been started before settling on final 
-                     name. The Planning Council will take these community preferences, and 
-                     evaluate them, in order, for any issues of Trademark infringement, etc. It appears 
-                     a lot of you preferred 'Indigo' so hopefully that will pass all other scrutiny, but if not
-                     we'll examine next on the list.</p>
-                     <p>We should get this settled in a couple of weeks. Thanks!</p>
-<pre>                     
-Indigo: 36 % 
-Ion:    16 % 
-Isis:   10 % 
-Iris:    9 % 
-Isaac:   9 % 
-Ivory:   7 % 
-Ionia:   4 % 
-Izar:    4 % 
-Indra:   2 % 
-Indus:   1 % 
-
-Total votes: 339 
-</pre> 
-                     
-</div>
-
-<?php
-       $html = ob_get_contents();
-       ob_end_clean();
-
-       # Generate the web page
-       $App->generatePage($theme, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
diff --git a/planning/trackingToolProposal.html b/planning/trackingToolProposal.html
deleted file mode 100644
index cf0ae14..0000000
--- a/planning/trackingToolProposal.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<h1 align="center">Requirements and Design for Simultaneous Release Tracking Tool</h1><h2 align="center">Draft - initial working version.</h2>
-<p></p>
-<p>This system is  to help track and document projects progress towards the yearly simultaneous release. Primarily, it is a web application, that allows the Eclipse Projects to easily checkoff requirements, and paste in relevant URLs, descriptive text, related bug numbers, and other similar things. In can aide the projects committers so they can be sure they are completing the required steps and requirements, but also helps Project Leads, the Planning Council, and potential adopters to see the &quot;big picture&quot; of projects they are monitoring. </p>
-<h2>Administration</h2>
-<h3>Setup</h3>
-<p>At a minimum, the system needs the ability for an administrator
-(e.g. webmaster, or Planning Council Chair) to enter in the projects
-that are participating, probably using the Foundation Portal short name. At some level, access to the projects metadata is necessary, sometimes for minor things like full name, sometimes for complicated things, like what the project's parent is, or what children is has. </p>
-<p>Eventually this could be more and more automated, starting with a project checking the field in the Portal, but full automation is not required for the first release. </p>
-<p>The setup occurs basically once per year, perhaps over the period of a few months (e.g. August to December). </p>
-<p>The setup also requires the initial input or statement of the requirements, and what &quot;data&quot; to collect on them. </p>
-<h3>Modification</h3>
-<p>Through out the year, it will be required to occasionally do some administrative maintenance. For example, remove a project that had to end, correct spellings, and other minor edits. In theory, even child to parent relationships can change during the year ... but, is not frequent. </p>
-<p></p>
-<h2>Use by Projects</h2>
-<p>As the year progresses, projects check off requirements, and fill
-in data required by the requirement. This data, when it is required, is
-typically a URL to some other document or explanation. Occasionally it is a text (prose) description, and occasionally a list of bug numbers, or similar. </p>
-<p>As an example, of such a form, see the <a
-	href="EclipseSimultaneousReleaseFormPrototype.html">Eclipse Simultaneous Release Form Prototype.</a> [Still need to design exact form, how much text to repeat from requirements document, etc.].</p>
-<h2>Data storage and  backup.</h2>
-<p>Naturally, as Projects enter their data over the months, that data (even though incomplete) must be stored and saved, partially so it is there the next time they go to add some more data. And also, of course, to survive disk failure, or similar. There won't be much data, but something like database storage, or XML Files would suffice. </p>
-<h2>Use by Project Leads and Planning Council</h2>
-<p>Certainly the PLs and PC will want to look a the data in a form very similar to how it is entered (say, a &quot;read only&quot;) version of the form. </p>
-<p>But, as or more important, several &quot;summary&quot; type reports will be desired. These have yet to be designed, but typically involve some degree of &quot;roll up&quot; (for example, see a summary report for only the Top Level Project, based on its sub-projects. Another possible example, there might be one report with some summary of the &quot;API state&quot; of the simultaneous release ... who's clean, who has most requests for API, etc. </p>
-<h2>Security and Permissions</h2>
-<p>The main type of &quot;security&quot; that is required, is just to make sure the right people are making changes ... that someone does not change the data of someone else's project by accident, or maliciously. To start with, it might suffice to simply make sure those making changes are logged in as committers. In a second phase, it might be safer, though more work, to maintain a list of who is permitted to change which projects. As a matter of &quot;security&quot;, it would be a good idea of provide some amount of &quot;logging&quot; so there is a record of who changed what.</p>
-<h2>Collecting other data</h2>
-<p>While not a hard requirement for the first version, eventually we want this web app to also handle parts of the exception process. Currently, the mechanism for someone to request an exception will be for PC Member to post a note to mailing list, and get three votes, etc. It would provide a good, long term, consise record if the PC Member could enter the exception request, right there near the data, and the PC &quot;vote&quot; right there as well. That way, the work, and the data, is all in the same place. </p>
\ No newline at end of file
diff --git a/style.css b/style.css
index ff5f114..12ec7dc 100644
--- a/style.css
+++ b/style.css
@@ -1,201 +1,250 @@
 @CHARSET "ISO-8859-1";
 
 .clearfix:after {
-	content: ".";
-	display: block;
-	clear: both;
-	visibility: hidden;
-	line-height: 0;
-	height: 0;
+  content: ".";
+  display: block;
+  clear: both;
+  visibility: hidden;
+  line-height: 0;
+  height: 0;
 }
  
 .clearfix {
-	display: inline-block;
+  display: inline-block;
 }
  
-a {
-	color:#FFC600;
+.helios a, .heliosBlank a {
+  color:#FFC600;
 }
-	 
+   
 html[xmlns] .clearfix {
-	display: block;
+  display: block;
 }
  
 * html .clearfix {
-	height: 1%;
+  height: 1%;
 }
 
-#novaContent{
-	background:#000;
-	color:#FFF;	
-	width:979px;
+#clearFooter {
+  height:0px !important; 
 }
 
+
 .helios {
-	background:#000 url('images/helios.jpg') no-repeat;);
-	min-height:600px;
+  background:#000 url('images/heliosNow2.jpg') no-repeat;
+  min-height:640px;
+  width:978px;
 }
 
 .heliosBlank {
-	background:#000 url('images/heliosBlank.jpg') no-repeat;);
-	min-height:575px;
+  background:#000 url('images/heliosBlank.jpg') no-repeat;
+  min-height:575px;
+}
+
+#fullcolumn { 
+  width:980px;
+  margin-left:-15px;  
 }
 
 #midcolumn {
-	position:relative;	
+  position:relative;  
+  width:100%
 }
 
 .description {
-	position:absolute;
-	width:530px;
-	top:110px;
-	left:374px;
-	font-size:14px;
-	line-height:24px;
+  position:absolute;
+  width:500px;
+  top: 101px;
+  left: 471px;
+  font-size:14px;
+  line-height:18px;
+  text-shadow: 2px 2px 2px #000;
+  color:#fff;
 }
 
 .links {
-	position:absolute;
-	width:530px;
-	top:215px;
-	left:390px;
-				
+  position:absolute;
+  width:530px;
+  top:200px;
+  left:455px;
+        
 }
 .download {
 }
 
 .friends {
-	list-style-image:url('images/icons/star.png') !important;
+  list-style-image:url('images/icons/star.png') !important;
 }
 
 
 .sun {
-	list-style-image:url('images/icons/sun.png') !important;	
+  list-style-image:url('images/icons/sun.png') !important;  
 }
 
 
 #novaContent li { 
-	color:#FFF;
-	margin-bottom:25px;
+  color:#FFF;
+  margin-bottom:20px;
 }
 
 .links li a {
-	color:#FFF;
-	font-size:30px;	
-	position:relative;
-	top:-3px;
+  color:#FFF;
+  font-size:26px; 
+  position:relative;
+  top:-3px;
+  text-shadow: 2px 2px 2px #000;
 }
 
+.indent2 {
+  position:relative;
+  left:-27px;
+}
+
+.indent3 {
+  position:relative;
+  left:-72px;
+}
+.indent4 {
+  position:relative;
+  left:-147px;
+}
+.indent5 {
+  position:relative;
+  left:-225px;
+}
+
+.indent6 {
+  position:relative;
+  left:-320px;  
+}
 
 .wantedPoster {
-	float:left;
-	margin-left:25px;
-	margin-top:50px;
-	
+  float:left;
+  margin-left:25px;
+  margin-top:50px;
+  
 }
 
 .wantedDesc {
-	float:left;
-	width:600px;
-	margin-top:55px;
+  float:left;
+  width:645px;
+  margin-top:55px;
 }
 
 .wantedDesc li p{
-	position:relative;
-	top:-15px;
+  position:relative;
+  top:-15px;
 }
 
 .wantedDesc li {
-	list-style-position:inside;	
+  list-style-position:inside; 
 }
 
 .wantedDesc h3 {
-	display:inline;
-	color:#FFF;
-	border:0px;	
+  display:inline;
+  color:#FFF;
+  border:0px; 
 }
 
-.donorList { clear:both; margin-left:10px;}
+.wantedDesc p{
+  color:#fff;
+}
+
+.donorList { clear:both; margin-left:0px; padding-left:0;}
 
 .donorList li{
-	float:left;
-	list-style-image:url("images/starbullet.png") !important;
-	margin-bottom:0px !important;
-	margin-right:10px;
+  float:left;
+  list-style-image:url("images/starbullet.png") !important;
+  margin-bottom:0px !important;
+  margin-right:10px;
 }
 
 h1.wanted {
-	font-size:40px;
-	margin-bottom:20px;
+  font-size:40px;
+  margin-bottom:20px;
+  line-height: 20px;
+  font-weight: bold;
+  padding-bottom: 10px;
+  color:#fff;
 }
 
 #bulletList {
-	margin-left:30px;
+  margin-left:30px;
 }
 
 .donate {
-	font-size:30px;	
-	color:#FFC600;
-	line-height:32px;
+  font-size:30px; 
+  color:#FFC600;
+  line-height:32px;
 }
 
 .wrapper {
-	clear:both;
+  clear:both;
 }
 
 .wrapper p:first-letter {
-	font-size:24px;	
-	font-weight:bold;
+  font-size:24px; 
+  font-weight:bold;
 }
 
 .wrapper p {
-		font-size:14px;	
+    font-size:14px; 
 }
 
 .star {
-	float:left;
-	width:40px;
-	height:50px;
+  float:left;
+  width:40px;
+  height:50px;
 }
 
 .counter {
-	text-align:center;
-	font-size:20px;	
-	line-height:28px;
+  text-align:center;
+  font-size:20px; 
+  line-height:28px;
+  color:#fff;
 }
 
 span.active {
-	font-size:20px;
-	color:#FFC600;
-	font-weight:bold;
+  font-size:20px;
+  color:#FFC600;
+  font-weight:bold;
 }
 
 .progressBar {
-	height:15px;
-	width:600px;
-	clear:both;
-	background:#80662B;
-	margin:30px 0;
-	
+  height:15px;
+  width:600px;
+  clear:both;
+  background:#80662B;
+  margin:30px 0;
+  
 }
 
 .progress {
-	background-image:url('images/progress.jpg');
-	height:15px;
+  background-image:url('images/progress.jpg');
+  height:15px;
+  margin-bottom:0;
 }
 
 .donorMore a{
-	color:#FFC600;
+  color:#FFC600;
 }
 
 .webinartitle a{
-	font-size:20px;
-	color:#FFC600;
-	font-weight:bold;
+  font-size:20px;
+  color:#FFC600;
+  font-weight:bold;
 }
 
-.monolith {
-	width:700px;
-	margin: 0px auto;	
-	text-align:justify;
-}
\ No newline at end of file
+p {
+  font-family: Helvetica, Sans-serif; 
+}
+
+#continue {
+  font-size:18px;
+  color:#FFF;
+  position:relative;
+  top:575px;  
+  left:700px;
+}
+
+
diff --git a/thankyou.php b/thankyou.php
index 9c2940a..d87e875 100644
--- a/thankyou.php
+++ b/thankyou.php
@@ -1,44 +1,34 @@
-<?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'
+<?php
+/*******************************************************************************
+ * Copyright(c) 2015 Eclipse Foundation 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *    Eric Poirier (Eclipse Foundation)
+ *******************************************************************************/
+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");
 
-	#*****************************************************************************
-	#
-	# friends.php
-	#
-	# Author: 		Nathan Gervais
-	# Date:			2009-05-21
-	#
-	# Description:  Galileo Friends Landing Page
-	#
-	#
-	#****************************************************************************
-	
-	#
-	# Begin: page-specific settings.  Change these. 
-	$pageTitle 		= "Thank you Friends of Helios!";
-	$pageKeywords	= "Friends of Eclipse, Helios";
-	$pageAuthor		= "Nathan Gervais";
-	include('scripts/wantedFunctions.php');
-	# Paste your HTML content between the EOHTML markers!	
-	ob_start();
-	?>
-	<style> 
-	h1 { font-size:32px;}
-	#novaContent { background: #FFF url('/home/images/blankBG.jpg') no-repeat; }
-	.monolith {	width:700px; 	margin: 0px auto; 	text-align:justify; }
-	</style>
-	<div id="fullcolumn"  class="clearfix">
-		<div style="width:700px; margin:10px auto;">
-		<h1>Thank you Friends of Helios!</h1><br/>
-		<img style="float:left;" src="/donate/images/starTrans.png"/>
-		<p style="font-size:18px;line-height:24px; color:#7036BE;"><b>A big thank you to all <span style="font-size:24px">487</span> of our Friends of Helios. The funds raised will be used to help support the Eclipse community. Your generousity is very much appreciated - Helios wouldn't be the same without you!</b></p>
-		</div>
-		<div class="monolith">
-			<?=sideDonorList(500, FALSE);?>
-		</div>
-	</div>
-	<?
-	$html = ob_get_clean();
-	$html = mb_convert_encoding($html, "HTML-ENTITIES", 'auto');
-	# Generate the web page
-	$App->generatePage($theme, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
\ No newline at end of file
+$App = new App();
+$Nav = new Nav();
+$Menu = new Menu();
+include($App->getProjectCommon()); // All on the same line to unclutter the user's desktop'
+
+
+// Begin: page-specific settings. Change these.
+$pageTitle 		= "Thank you Friends of Helios!";
+$pageKeywords	= "Friends of Eclipse, Helios";
+$pageAuthor		= "Nathan Gervais";
+
+// Place your html content in a file called content/en_pagename.php
+ob_start();
+include("content/en_" . $App->getScriptName());
+$html = ob_get_clean();
+
+# Generate the web page
+$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file