Add roadmap page + new release v0.5
diff --git a/_projectCommon.php b/_projectCommon.php
index 914634b..3041850 100644
--- a/_projectCommon.php
+++ b/_projectCommon.php
@@ -33,4 +33,5 @@
   $Menu->addMenuItem("Home", "/gendoc/index.php", "_self");
   $Menu->addMenuItem("Documentation", "/gendoc/documentation/documentation.php", "_self");
   $Menu->addMenuItem("Downloads", "/gendoc/downloads/download.php", "_self");
+  $Menu->addMenuItem("Roadmap", "/gendoc/roadmap/roadmap.php", "_self");
   $Menu->addMenuItem("Community", "/gendoc/community/community.php", "_self");
\ No newline at end of file
diff --git a/content/en_mainpage.php b/content/en_mainpage.php
index 1da25e0..50b0768 100644
--- a/content/en_mainpage.php
+++ b/content/en_mainpage.php
Binary files differ
diff --git a/downloads/download.php b/downloads/download.php
index 65136c2..c6ece32 100644
--- a/downloads/download.php
+++ b/downloads/download.php
@@ -37,7 +37,7 @@
 			<div id="midcolumn">
 			<h3>Releases</h3>
 			<ul class="fa-ul hidden-print"> 
-        <li> <i class="fa fa-angle-double-right orange fa-fw"></i><a href="http://www.eclipse.org/downloads/download.php?file=/gendoc/releases/0.5/org.eclipse.gendoc.incubation.update-site-0.5.0.zip">Gendoc v0.5.0 </a> </li>
+        <li> <i class="fa fa-angle-double-right orange fa-fw"></i><a href="http://www.eclipse.org/downloads/download.php?file=/gendoc/releases/0.5/org.eclipse.gendoc.incubation.update-site-0.5.0.zip">Gendoc v0.5.0 </a>update site </li>
     			<ul>
             <li>
   
diff --git a/roadmap/roadmap.php b/roadmap/roadmap.php
new file mode 100644
index 0000000..dd8fde0
--- /dev/null
+++ b/roadmap/roadmap.php
@@ -0,0 +1,74 @@
+<?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:
+ *    Anne Haugommard (Atos) - Initial implementation
+ *******************************************************************************/
+
+	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());	
+	$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/gendoc/public/css/pages.css" media="screen"/><link rel="shortcut icon" href="/gendoc/public/images/favicon.ico" />');
+#	$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="styles.css"/>' . "\n\t");
+#	$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="_styles.css"/>' . "\n\t");
+
+  $variables['hide_breadcrumbs'] = true;
+  $App->setThemeVariables($variables);
+	
+	#### Project dependant variables ####
+	$projectTitle = "Gendoc";
+	$pageTitle = "Gendoc";
+	$pageAuthor = "Anne Haugommard";
+	$pageKeywords = "Gendoc, roadmap";
+
+	
+	$html = <<<EOHTML
+			<div id="midcolumn">
+			<h3> Future releases </h3>
+			<ul>
+				<li> <b>Gendoc v0.5.1</b> (June 2015) 
+					<ul> <li> Bug fixing : </li>
+							<ul><li><a href='http://bugs.eclipse.org/bugs/show_bug.cgi?id=452290'>Bug 452290</a> External bundle "commons" is not imported by default in &lt;fragment&gt; tags </li></ul>
+							<ul><li><a href='https://bugs.eclipse.org/bugs/show_bug.cgi?id=464976'>Bug 464976</a> Fragment parsing error </li></ul>
+					</ul>
+				</li>
+				<li> <b>Gendoc v1.0</b>  (January 2016) 
+					<ul> 
+						<li> API freeze </li>
+						<li> Bug fixes </li>
+
+						<li> New features : </li>
+							<ul><li><a href='http://bugs.eclipse.org/bugs/show_bug.cgi?id=457241'>Bug 457241</a> SVG image handling </li></ul>
+					</ul>
+				</li>
+			</ul>
+			<br/>
+			</div>
+      <div id="rightcolumn">				                  
+        <div style="height:100px">				 				                  
+        </div>				                  
+        <div class="sideitem">					                      
+          <h6><center>Incubation Phase</center>                      
+          </h6>					                      
+          <center>					                          
+            <a href="http://www.eclipse.org/projects/what-is-incubation.php">					                              
+              <img width="70" border="0" alt="Incubation" src="http://www.eclipse.org/images/egg-incubation.png">					</a>					                      
+          </center>				                  
+        </div>
+      </div>	
+EOHTML;
+	
+	# Generate the web page
+	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>