blob: e30ebb49f2391b1ee01004856517c1d32de4d854 [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("_projectCommon.php"); # All on the same line to unclutter the user's desktop'
#
# Begin: page-specific settings. Change these.
$pageTitle = "Helios Demos";
$pageKeywords = "eclipse, helios, demo, video, release";
$pageAuthor = "Lynn Gayowski";
# Add page-specific Nav bars here
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank)
# $Nav->addCustomNav("My Link", "mypage.php", "_self");
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank");
# End: page-specific settings
#
# Paste your HTML content between the EOHTML markers!
ob_start();
?>
<style type="text/css">
.switchcontent{display:none;}
</style>
<script type="text/javascript">
function switchMenu(obj) {
var el = document.getElementById(obj);
el.style.display = ( el.style.display != "block" )? 'block':'none'
}
</script>
<style>
.paddedlist li { padding-bottom:7px; }
td a { color:#000; }
.title { font-size:14px; color:#7036be; }
.timezone { font-size:10px; text-decoration:underline; }
</style>
<div id="maincontent">
<div id="fullcolumn">
<div id="midcolumn">
<h1><?= $pageTitle ?></h1>
<p>
Some of the projects involved in the Helios release have created demos to show their new features.
Click the titles below to see video highlights of what's new in Helios.
</p>
<h3><a href="http://live.eclipse.org/node/908" target="blank">Java Devlopment Tools (JDT)</a></h3>
<p><b>Deepak Azad, IBM</b><br>
09:29 minutes</p>
<p>The Java Development Tools (JDT) project provides the tool plug-ins that implement a Java IDE
supporting the development of any Java application, including Eclipse plug-ins. It adds a Java
project nature and Java perspective to the Eclipse Workbench as well as a number of views,
editors, wizards, builders and code merging and refactoring tools. The JDT project allows Eclipse
to be a development environment for itself.</p>
<h3><a href="http://live.eclipse.org/node/911" target="blank">Javaserver Faces (JSF) Tools</a></h3>
<p><b>Cameron Bateman, Oracle</b><br>
20:53 minutes</p>
<p>The JavaServer Faces (JSF) Tools Project provides tools that simplify the development of JSF
web applications. We will preview new features in the Eclipse 3.6 Helios release and show you how
to use them to build a JSF application.</p>
<h3><a href="http://live.eclipse.org/node/909" target="blank">PHP Devlopment Tools (PDT)</a></h3>
<p><b>Roy Ganor, Zend</b><br>
11:54 minutes</p>
<p>Summarizing a great year for both the Eclipse and PHP communities, the Eclipse PHP Development
Tools (PDT) project provides even more source editing features for the PHP developers such as new
template content assist and advanced syntax coloring. Our focus on quality has proven to be
immensely successful. With over 400 issues fixed and over 50 enhancements contributed by the
community, PDT is more stable than ever.</p>
<br><br>
</div>
</div>
</div>
<?php
$html = ob_get_contents();
ob_end_clean();
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>