| <?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 (August 31st 2015)</b> |
| <ul> |
| |
| <li> Bug fixing : </li> |
| <ul><li><a href='http://bugs.eclipse.org/bugs/show_bug.cgi?id=463645'>Bug 463645</a> Unable to generate a file if the path contains a space </li></ul> |
| <ul><li><a href='http://bugs.eclipse.org/bugs/show_bug.cgi?id=461805'>Bug 461805</a> Bug 461805</a> [Papyrus] Allow generation based on onefile with uml as source </li></ul> |
| <ul><li><a href='http://bugs.eclipse.org/bugs/show_bug.cgi?id=452290'>Bug 452290</a> Bug 452290</a> External bundle "commons" is not imported by default in <fragment> tags </li></ul> |
| <ul><li><a href='http://bugs.eclipse.org/bugs/show_bug.cgi?id=472394'>Bug 472394</a> GenDoc importBundles is sensitive to spaces </li></ul> |
| <ul><li><a href='http://bugs.eclipse.org/bugs/show_bug.cgi?id=472389'>Bug 472389</a> Gendoc uses open model instead of model requested by <context> </li></ul> |
| <ul><li><a href='http://bugs.eclipse.org/bugs/show_bug.cgi?id=471889'>Bug 471889</a> usage of a image tag </li></ul> |
| <ul><li><a href='http://bugs.eclipse.org/bugs/show_bug.cgi?id=474331'>Bug 474331</a> Maps and sets of URLs can be performance hogs </li></ul> |
| <ul><li><a href='http://bugs.eclipse.org/bugs/show_bug.cgi?id=475266'>Bug 475266</a> [Papyrus] Exception when right click on a "one filed" papyrus model </li></ul> |
| <ul><li><a href='http://bugs.eclipse.org/bugs/show_bug.cgi?id=474815'>Bug 474815</a> Unable to load model with LibreOffice (wrong model path) </li></ul> |
| <ul><li><a href='http://bugs.eclipse.org/bugs/show_bug.cgi?id=475584'>Bug 475584</a> Problem in order of fragment dependances </li></ul> |
| <ul><li><a href='http://bugs.eclipse.org/bugs/show_bug.cgi?id=474388'>Bug 474388</a> archives build by hudson have the same name for both branches </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><a href='https://bugs.eclipse.org/bugs/show_bug.cgi?id=464976'>Bug 464976</a> Fragment parsing error </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); |
| ?> |