blob: 57e80addd0713c5f672b67ac0635d9424415ebf5 [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());
#
# Begin: page-specific settings. Change these.
$pageTitle = "Dynamic Languages Toolkit Installation";
$pageKeywords = "dltk, tcl, ruby, python, javascript, languages, eclipse, ide";
$pageAuthor = "Andrey Platov";
# End: page-specific settings
#
ob_start();
?>
<div id="maincontent">
<div id="midcolumn">
<h1><?=$pageTitle?></h1>
<h2>Install a JVM</h2>
<p>Regardless of your operating system, you will need to install a Java virtual machine.</p>
<ul>
<li>If using Windows, you may already have one installed, but upgrading won't hurt.</li>
<li>If using Linux, <a href="http://wiki.eclipse.org/IRC_FAQ#I_just_installed_Eclipse_on_Linux.2C_but_it_does_not_start._What_is_the_problem.3F">read this</a> -- GCJ will <b>NOT</b> work.</li>
</ul>
<p>Consider an <a href="http://www.ibm.com/developerworks/java/jdk/index.html">IBM JRE</a> or a <a href="http://java.sun.com/javase/downloads/index.jsp">Sun JRE</a>. Note that if you are on a 64-bit platform and are using a 64-bit JRE, you need to use a 64-bit Eclipse build.</p>
<h2>Install Latest DLTK release</h2>
<p>Latest DLTK release is 1.0</p>
<p>Requirements</p>
<dl>
<dt>JVM</dt><dd>minimum version is 5.0</dd>
<dt>Eclipse</dt><dd>minimum version is 3.4</dd>
<dt>EMF Core</dt><dd>minimum version is 3.4</dd>
</dl>
<h3>Installing from update site</h3>
<ul>
<li>Install JVM</li>
<li>Get Eclipse. There are different <a href="http://www.eclipse.org/downloads/">packages</a> available. The minimal one is <a href="http://download.eclipse.org/eclipse/downloads/drops/R-3.5-200906111540/index.php#PlatformRuntime">Platform Runtime Binary</a></li>
<li>Available update sites
<ul>
<li><tt>http://download.eclipse.org/releases/galileo/</tt> - if using Eclipse 3.5 / Galileo this update site is already listed in Eclipse as 'Galileo Update site'</li>
<li><tt>http://download.eclipse.org/technology/dltk/updates/</tt></li>
</ul>
</li>
</ul>
<h3>Downloading zip bundles manually</h3>
<p>Navigate to the <a href="http://download.eclipse.org/technology/dltk/downloads/drops/R1.0/R-1.0-200906171219/">DLTK 1.0 download area</a></p>
<p>Download appropriate zip bundles and their dependencies and unzip into subfolders of your installation <tt>dropins/<tt> folder.</p>
<h2>Install other builds</h2>
<p>You can install development builds of the upcoming DLTK 2.0 release from the <a href="http://download.eclipse.org/technology/dltk/updates-dev/2.0/">2.0-dev update site</a>.</p>
<p>Alternatively, navigate to <a href="http://download.eclipse.org/technology/dltk/downloads/">DTLK downloads</a> and select any of the builds</p>
<hr class="clearer" />
</div>
<? include("_rightColumn.php"); ?>
</div>
<?
$html = ob_get_contents();
ob_end_clean();
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>