<?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 = "Requirements"; | |
$pageKeywords = "OSEE, Open, System, Engineering, Environment, Eclipse, Define, ATS, OTE, Application Framework"; | |
$pageAuthor = "Roberto E. Escobar"; | |
# Paste your HTML content between the EOHTML markers! | |
$html = <<<EOHTML | |
<div id="midcolumn"> | |
<h3>$pageTitle</h3> | |
<h4>System Requirements (non-Eclipse)</h4> | |
<ul> | |
<li>System with at least 1GB of RAM</li> | |
<li>Java Runtime Environment (JRE) 1.6 or higher</li> | |
<li>Relational Database such as PostgreSQL, MySQL, Oracle, or Derby.<br/> | |
See instructions for installing <a href="supported_databases.php">'Supported Databases'</a> to complete this step.</li> | |
</ul> | |
<h4>Eclipse Dependencies</h4> | |
<ol> | |
<li>An Eclipse 3.4.1 base with the following features installed<br/> | |
<i>you can which featuers are already installed from Help -> About Eclipse Platform ->Feature Details</i> | |
<ul> | |
<li><a href="http://www.eclipse.org/gef/downloads/">org.eclipse.gef and org.eclipse.draw2d</a></li> | |
<li><a href="http://www.eclipse.org/datatools/downloads.php">org.eclipse.datatools.connectivit.oda.feature and org.eclipse.datatools.enablement.oda.feature</a></li> | |
<li><a href="http://download.eclipse.org/birt/downloads/">org.eclipse.birt.chart.runtime</a></li> | |
</ul> | |
The easiest solution is the Ganymede Eclipse install <a href="http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/ganymede/SR2/eclipse-reporting-ganymede-SR2-win32.zip"> Eclipse IDE for Java and Report Developers</a> since it provides the above Eclipse dependencies.<br/> | |
Unzip the contents of this zip file into a (short) path on you computer to create your Eclipse base. | |
</li> | |
<li>OSEE add-ons - <a href="$externalDownloadsSite">Visit external site under the section "Add-On Features"</a><br/> | |
From the Eclipse base installed in the previous step, launch the update manager and install the add-ins archived update site (no need to unzip it). For more detail, see step-by-step <a href="$installInstructions">'Update Manager Instructions'</a>.<br/> | |
<br/> | |
<i>Note: To use OSEE with a database other than Derby, you will need the JDBC Drivers included in the OSEE add-ons distributed from the external location. Such a scheme of distribution is caused by licensing requirements.</i> | |
</li> | |
</ol> | |
</div> | |
EOHTML; | |
# Generate the web page | |
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); | |
?> |