| <?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' |
| $pageTitle = "EASE - Download"; |
| $pageKeywords = "Eclipse, EASE, Scripting"; |
| $pageAuthor = "Christian Pontesegger"; |
| |
| |
| # provide the page content |
| $html = <<<EOHTML |
| |
| <script language="JavaScript"> |
| function copyToClipboard(text) { |
| Copied = text.createTextRange(); |
| Copied.execCommand("Copy"); |
| } |
| </script> |
| <div id="midcolumn"> |
| <h3><i class="fa fa-fw fa-download"></i> Download</h3> |
| <p>As a fresh project we do not have releases yet. For now you have to live on the bleeding edge and use our update site:</p> |
| |
| <ul class="nobullet"> |
| <li><i class="fa fa-fw icon-link bullet"></i> |
| Nightly: <span class="p2site" onclick="javascript:prompt('Hit Ctrl-c to copy', 'http://download.eclipse.org/ease/update/nightly');">http://download.eclipse.org/ease/update/nightly</span></li> |
| </ul> |
| |
| <p>External components like additional interpreters can be installed using an external update site:</p> |
| |
| <ul class="nobullet"> |
| <li><i class="fa fa-fw icon-link bullet"></i> |
| Nightly: <span class="p2site" onclick="javascript:prompt('Hit Ctrl-c to copy', 'http://topcased-mm.gforge.enseeiht.fr/ease_jython/updates/ease_jython_nightly');">http://topcased-mm.gforge.enseeiht.fr/ease_jython/updates/ease_jython_nightly</span></li> |
| </ul> |
| </div> |
| |
| {$incubation} |
| |
| EOHTML; |
| |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |