| <?php |
| /******************************************************************************* |
| * Copyright (c) 2014 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, downloads, release"; |
| |
| |
| $html = <<<EOHTML |
| <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://download.eclipse.org/gendoc/updates/releases/0.5.0/">Gendoc v0.5.0 </a>update site ( or download as <a href="http://www.eclipse.org/downloads/download.php?file=/gendoc/releases/0.5/org.eclipse.gendoc.incubation.update-site-0.5.0.zip">archive</a>)</li> |
| <ul> |
| <li> |
| |
| <a href="http://www.eclipse.org/downloads/download.php?file=/gendoc/releases/0.5RC1/org.eclipse.gendoc.incubation.update-site-0.5.0RC1.zip">Gendoc v0.5RC1</a> (release candidate) update site as archive. |
| |
| </li> |
| <li> |
| |
| <a href="http://www.eclipse.org/downloads/download.php?file=/gendoc/releases/0.5RC2/org.eclipse.gendoc.incubation.update-site-0.5.0RC2.zip">Gendoc v0.5RC2</a> (second release candidate) update site as archive. |
| |
| </li> |
| </ul> |
| </li> |
| </ul> |
| See how to add a new update site to your Eclipse installation <a href='http://help.eclipse.org/juno/index.jsp?topic=/org.eclipse.platform.doc.user/tasks/tasks-127.htm'>on Eclipse Help page </a>. |
| <!--<h3>Latest nightly build</h3> |
| Gendoc update site from latest nightly build is available at the following URL : |
| <b>http://download.eclipse.org/gendoc/updates/nightly/latest</b> --> |
| </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); |
| ?> |