blob: 7b01149af2136adaf920cf14f856acab29446f9b [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.
#****************************************************************************
require_once("links.php");
#
# Begin: page-specific settings. Change these.
$title = $cTitle;
$download = $cDownload;
$pageKeywords = "callisto eclipse 3.2 cdt c cpp 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
#
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/c.jpg" align="left" style="padding-right: 10px;" />The
<?= $title ?> runs on top of the Eclipse Platform. The <?= $title ?>
provides advanced functionality for C/C++ developers, including an
editor (with syntax highlighting, and code completion), launcher,
debugger, search engine and makefile generator. <a href="compare.php">Looking for what's in each package?</a>
<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>
<ul>
<li>Download the <a href="<?= $download ?>"><?= $title ?></a> (<a href="compare.php">Package Contents</a> - <a href="/epp/faq.php">Package FAQ</a>)</li>
<li>Use the utility for your platform to decompress the downloaded file
onto your file system (<?= $windows_warning ?>).
<li><?= $title ?> does not contain a compiler or debugger; if your
system does not have one, you need to download and install one. Please
see the &quot;<a
href="http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.cdt.doc.user/concepts/cdt_c_before_you_begin.htm">Before
you begin</a>&quot; section of the C/C++ Development User Guide in the
Help for more information (<?= $c_tool_chain ?>).</p>
<li>Additional features can be installed from the Europa Update Site
via the Update Manager, including:
<ul>
<li>Java development tools (<a href="/jdt">JDT</a>)</li>
<li>Device&nbsp;Debugging tools (<a href="/dsdp/dd">DSDP-DD</a>)</li>
<li>Tools to configure and manage remote systems (<a href="/dsdp/tm">DSDP-TM</a>)</li>
<li>TCL Development Tools (<a href="/dltk">DLTK</a>)</li>
<li>Task-focused development (<a href="/mylyn/">Mylyn</a>).</li>
</ul>
</div>
<div class="homeitem" style="clear:both;">
<h3>New and Noteworthy</h3>
<div class="content">
<p><?= $title ?>&mdash;built using <a href="/eclipse">Eclipse</a> 3.3
and C/C++ Development Tools (<a href="/cdt">CDT</a>) 4.0&mdash;includes
numerous enhancements over previous versions, including:</p>
<ul>
<li>Improved editing support, with semantic highlighting.</li>
<li>Improved debugging support, including GDB hardware debugging and
breakpoint actions.</li>
<li>A new Quick Access feature (ctrl-3) to enhance IDE navigation</li>
<li>MinGW and IBM xlC Toolchain Integration</li>
</ul>
<p>For a list of new features in Eclipse C/C++ Development Tools 4.0,
check out the <a href="http://wiki.eclipse.org/index.php/CDT/User/NewIn40">New and
Noteworthy</a>.</p>
</div>
</div>
<div class="homeitem" style="clear:none;">
<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/tutorial.png)"><a
href="http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/cdt-home/user/Tutorials.html?cvsroot=Tools_Project">CDT
Tutorials</a></li>
<li style="list-style-image: url(images/movie.png)"><a
href="http://www.eclipse.org/cdt/movies/Firefox/Firefox.html">Creating
a CDT Project for the Firefox Source</a>
<li style="list-style-image: url(images/document.png)"><a href="/cdt">The
CDT home page</a></li>
<li style="list-style-image: url(images/document.png)"><a
href="http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/cdt-home/user/faq.html?cvsroot=Tools_Project">Frequently
asked questions about the CDT</a></li>
<li style="list-style-image: url(images/news.png)"><a
href="news://news.eclipse.org/eclipse.tools.cdt">Eclipse C/C++
Development Tools Newsgroup</a></li>
</ul>
</div>
</div>
</div>
</div>
<?= $moreInfoHTML ?>
<?php
$html = ob_get_contents();
ob_end_clean();
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $title, $html);
?>