blob: f00391171ccbf8306914b05b15018c7e4a653f4a [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'
#*****************************************************************************
#
# template.php
#
# Author: Wayne Beaton
# Date: 2006-06-06
#
# Description:
# This page contains pointers to download and tutorial information for
# individuals interested in using Eclipse for Java development.
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Customize Your Europa Experience";
$title = "Eclipse Platform Runtime Binaries";
$pageKeywords = "callisto eclipse 3.2 custom customize projects features resource screencam screen cam tutorial ";
$pageAuthor = "Wayne Beaton";
# 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
#
require_once("links.php");
ob_start();
?>
<link
rel="stylesheet" type="text/css" href="moreinfo.css" media="screen" />
<div id="fullcolumn">
<div id="midcolumn">
<table cellspacing=0 class="callistoButtons">
<tr>
<td width="50"></a></td>
<td width="100%" class="noRightBorder"><?= $title ?></td>
</tr>
</table>
<p><img src="../images/custom.jpg" align="left" style="padding-right: 10px;"/>The Europa Experience starts with a small download in the form of the
<?= $title ?>. From this starting point, using the
Europa Update Site, you can add as few or as many of the features
produced by the <a href="/europa">Europa</a> release train as you need.</p>
<p>If you need support for&nbsp;Java&nbsp;development, consider <a
href="java.php"><?= $javaTitle ?></a>.</p>
<div class="homeitem3col">
<h3>What You Need</h3>
<p><img src="http://www.eclipse.org/downloads/images/update_wiz.gif"
align="right" />You will need a <a href="<?= $java_runtime ?>">Java
Runtime Environment</a> (JRE) to run <?= $title ?>. A Java 5 JRE is
recommended.</p>
<p>The Eclipse Platform Runtime Binaries provides base integrated development
environment (IDE) functionality, but without support for any specific programming
languages or tools. From the Platform Runtime Binaries, you can connect to the
Europa Update Site to install the features you need.</p>
<ul>
<ul>
<li><a href="<?= $runtimeBinariesDownload ?>">Eclipse Platform Runtime Binaries</a> (<?= $windows_warning ?>).
<ul>
<li><a href="<?= $classOtherDownloads ?>">Other downloads for 3.3</a></li>
<li><a href="http://download.eclipse.org/eclipse/downloads/">All versions</a></li>
<li><a href="http://archive.eclipse.org/eclipse/downloads/index.php">Archived
Platform Builds</a></li>
</ul></li>
<li>Additional features can be installed from the Europa
Update Site via the Update Manager, including:
<ul>
<li>Ruby and TCL Development Tools (<a href="/dltk">DLTK</a>)</li>
<li>Java development tools (<a href="/jdt">JDT</a>)</li>
<li>Java&nbsp;EE and Web&nbsp;Tools (<a href="/webtools">WTP</a>)</li>
<li>C/C++ Development&nbsp;Tools (<a href="/cdt">CDT</a>)</li>
<li>Reporting Tools (<a href="/birt">BIRT</a>)</li>
</ul>
</li>
</ul>
</div>
<div class="homeitem">
<h3>New and Noteworthy</h3>
<div class="content">
<p><?= $title ?>&mdash;built using <a href="/eclipse">Eclipse</a>
3.3&mdash;includes numerous enhancements over previous versions,
including:</p>
<ul>
<li>A new Quick Access feature (ctrl-3) to enhance IDE navigation.</li>
<li>Support for Mac OSX on Intel and <em>early access</em> support for
Windows Vista.</li>
</ul>
<p>For a list of new features in Eclipse 3.3, check out the <a
href="<?= $platform_new_and_noteworthy_url ?>">New and Noteworthy</a>.</p>
</div>
</div>
<div class="homeitem">
<h3>Tutorials and help</h3>
<div class="content">
<ul>
<li style="list-style-image: url(images/movie.png)"><a
href="<?= $movie_install_features_url ?>"><?= $movie_install_features_title ?></a>
(Adding&nbsp;Ruby&nbsp;Development&nbsp;Tools)</li>
<li style="list-style-image: url(images/document.png)"><a
href="<?= $user_guide_url ?>">Eclipse User's Guide</a></li>
<li style="list-style-image: url(images/news.png)"><a
href="news://news.eclipse.org/eclipse.platform">Eclipse Platform
Newsgroup</a></li>
</ul>
</div>
</div>
</div>
</div>
<?php
$html = ob_get_contents();
ob_end_clean();
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $title, $html);
?>