blob: 68a262010d526ae38af39833804f1507b7f4cbc6 [file] [log] [blame]
<?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'
#
# Begin: page-specific settings. Change these.
$pageTitle = "ECF Downloads";
$pageKeywords = "Type, page, keywords, here";
$pageAuthor = "Scott Lewis";
# 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
#
ob_start();
?>
<div id="midcolumn">
<div class="homeitem3col">
<h3><?= $pageTitle ?></h3>
<p><img border="0" src="../images/new.gif" width="31" height="14" alt="[new]"/>
<b>ECF Mars/3.12.0 Now Available (11/30/2015)</b>
<p></p>
<p>
ECF Mars/3.12.0 requires <b>Eclipse Luna or Mars</b>. See <a href="http://download.eclipse.org/eclipse/downloads/">here to get
appropriate version of Eclipse</a>. <br>
<br><b>THOSE USING JAVA 7 PLEASE NOTE</b>: Some people have been experiencing a PDE bug that affects the running of the ECF
TimeService Remote Service examples. For a description of this problem, link to the bug, and a work-around, please
see <a href="https://wiki.eclipse.org/Running_TimeService_examples_on_Java7">Running TimeService Examples on Java7</a>.<br>
<br>See <a href="NewAndNoteworthy.html">New and Noteworthy</a> for details of the contents of this release.<br>
<br>See <a href="http://wiki.eclipse.org/Eclipse_Communication_Framework_Project">ECF Wiki</a> and/or the <a href="https://dev.eclipse.org/mailman/listinfo/ecf-dev">ecf dev at eclipse.org mailing list</a> for further information about plans and ongoing project activities.
</p>
<?php
$html = ob_get_contents();
include 'getNugget.php';
$html = getNugget("EcfInstallViaKaraf3.12.html",$html);
$html = getNugget("EcfInstallViaUpdate3.12.html",$html);
$html = getNugget("EcfInstallViaZip3.12.html",$html);
$html = getNugget("EcfDailies.html",$html);
$html = getNugget("EcfSourceCode.html",$html);
$html = getNugget("EcfExtraPlugins.html",$html);
$html = getNugget("EcfBuildTypes.html",$html);
$html = $html . "</div></div>";
ob_end_clean();
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>