blob: 3b07afe98c9ae6aef4b69cc506880d9d9ede3c0c [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'
$pageTitle = "SMILA - Project Plan";
$pageKeywords = "SMILA, Unified Information Access Architecture, unstructured information management, information logistics, semantic web, framework, platform, eclipse";
$pageAuthor = "Igor Novakovic";
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn">
<h1>Project Plan</h1>
<p>
All previous releases and milestones are documented in the <a href="plan_archive.php">project plan archive</a>.
</p>
<div class="homeitem3col">
<h3>SMILA Version 1.0</h3>
<p>
This release is tentative planed for February, 2nd 2012.
</p>
<ul>
<li>Self-scaling ETL</li>
</ul>
<h3>SMILA Version 1.1</h3>
<p>
This release is tentative planed for April, 30th 2012.
</p>
<ul>
<li>Migration of crawler implementations to self-scaling ETL</li>
<li>Solr 3.5 integration</li>
<li>Aperture integration</li>
</ul>
<h3>SMILA Version 1.2</h3>
<p>
This release is tentative planed for October, 31st 2012.
</p>
<ul>
<li>General configuration management</li>
<li>Concept for debugging of BPEL processes</li>
</ul>
</div>
</div>
EOHTML;
include('rightColumn.php');
$html .= $rightColumn;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>