blob: be4373469ed9935e9d63101791f92e483d7cd3e0 [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'
#*****************************************************************************
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Equinox Incubator - Server-side";
$pageKeywords = "equinox, osgi, framework, runtime, incubator, server";
# 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", 3);
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);
# End: page-specific settings
#
# Paste your HTML content between the markers!
ob_start();
?>
<div id="midcolumn">
<h1><?= $pageTitle ?></h1>
<p class=bar>Mission Statement</p>
<p>Eclipse is in use on the desktop in tools and RCP applications. The eRCP and
other projects are pushing it into mobile phones and handheld devices. Now
there is significant interest in Equinox on the server. The Apache Geronimo
folks are interested. Several &quot;people shipping server-based products today&quot;
are also wanting to move to OSGi. This incubator project is targetted at eliminating
barriers to using and integrating OSGi (and Equinox more specifically) on
the server. See the <a href="proposal.php">incubator proposal</a> for more detail.</p>
<p><b>Note that most of the work here has graduated. See <a href="/equinox/server">Server-side Equinox</a>
for more information.
<p class=bar>Working With the Server-side Incubator</p>
<p>The Server-side incubator uses the main <a href="../resources.php">incubator
resources</a> with
the following refinements.</p>
<table width="100%" border="0">
<tr>
<td><strong>Bugs</strong></td>
<td colspan="2">Summaries start with <strong><a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=%5Bserver%5D&classification=Eclipse&product=Equinox&component=Incubator&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&emailtype1=substring&email1=&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">[server]</a></strong></td>
</tr>
<tr>
<td width="11%" rowspan="2" valign="top"><strong>CVS</strong></td>
<td width="30%"><strong>Branch</strong></td>
<td width="59%"><strong>Project</strong></td>
</tr>
<tr>
<td>server</td>
<td><i>(current activity uses the main Eclipse 3.2 HEAD)</i></td>
</tr>
</table>
<p class=bar>Active investigators</p>
<ul>
<li>Simon Kaegi (IBM Rational)</li>
</ul>
<p>&nbsp;</p>
</div>
<?php
include $_SERVER['DOCUMENT_ROOT'] . "/equinox/global-links.html";
include $_SERVER['DOCUMENT_ROOT'] . "/equinox/incubator/component-links.html";
if (file_exists("dir-links.html")) {include "dir-links.html";}
?>
<?php
$html = ob_get_contents();
ob_end_clean();
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>