blob: 0e93d0388c7995ef1d1c51ac4c264517635cff33 [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'
#*****************************************************************************
#
# team-leaders.php
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "RT Project Leadership";
$pageKeywords = "RT PMC project lead";
$pageAuthor = "";
# 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>
<h2>Who's running this project?</h2>
<p>The RT Project is managed by a small group known as the RT
Project Management Committee (PMC).
The work of the Project is organized into subprojects. Each subproject
has a leader who has overall responsibility for its success. Large subprojects
are further divided into component teams, each of who has a leader that
is responsible for its overall success. And so on. Listed here are the PMC and
project leaders here. You will encounter many dedicated
project committers and developers in the <a href="/newsgroups" target="_top">newsgroup</a>
and <a href="/mail" target="_top">mailing lists</a>.</p>
<p class=bar>Project Management Committee Members</p>
<ul>
<li>
<b><a name="jeff"></a>Jeff McAffer, <a href="http://eclipsesource.com">EclipseSource</a>, RT PMC co-lead</b><br>
Jeff leads the Eclipse <a href="http://eclipse.org/equinox">Equinox
OSGi</a>, <a href="http://eclipse.org/rcp">RCP</a> and <a href="http://eclipse.org/orbit">Orbit</a>
teams and is co-founder and CTO of <a href="http://eclipsesource.com">EclipseSource</a>. He is one
of the architects of the Eclipse Platform and a co-author of <a href="http://eclipsercp.org">The Eclipse Rich
Client Platform</a> and <a href="http://equinoxosgi.org">Equinox and OSGi - The power behind Eclipse</a>
(Addison-Wesley). Jeff co-leads the Eclipse <a href="http://eclipse.org/rt/team-leaders.php">RT PMC</a>
and is a member of the <a href="http://eclipse.org/eclipse/team-leaders.php">Eclipse Project PMC</a>, the
<a href="http://eclipse.org/tools/team-leaders.php">Tools Project PMC</a>, the Eclipse Architecture Council
and the Eclipse Foundation Board of Directors. Jeff is currently interested all aspects of Eclipse componentry
from designing, developing and building bundles to deploying, installing and ultimately running them. Previous
lives include being a Senior Technical Staff Member at IBM, work in distributed/parallel OO computing (Server
Smalltalk, massively parallel Smalltalk, etc) as well as expert systems, meta-level architectures and a PhD
at the University of Tokyo.
</li>
<li>
<b><a name="jochen"></a>Jochen Krause, EclipseSource, RT PMC co-lead</b><br>
Jochen Krause co-leads the Eclipse Rich Ajax Platform (RAP) and Eclipse Runtime projects, and is a member
of the Eclipse Foundation Board of Directors and Architecture Council. Jochen has had a leadership role in
the Eclipse community since its inception in 2002, and today is focused on driving Eclipse to be an application
platform for web and desktop. Jochen is a founder of <a href="http://eclipsesource.com">EclipseSource</a> and has been bringing Eclipse technology
to enterprise customers, while guiding strategic technical contributions to Eclipse. EclipseSource staff are
involved in many Eclipse projects such as Equinox, PDE, RAP, ECF, p2, Riena, Eclipse Packaging and g-Eclipse.
</li>
<li>
<b><a name="doug"></a>Doug Clarke, Oracle</b><br>
</li>
<li>
<b><a name="tom"></a>Thomas Watson, IBM, <a href="http://eclipse.org/equinox">Equinox co-lead</a></b><br>
Tom is a member of the Eclipse <a href="http://eclipse.org/rt/team-leaders.php">RT PMC</a> and
co-leads the <a href="http://eclipse.org/equinox">Equinox Project</a> at Eclipse. Tom's focus is on
modularity and the OSGi Framework design and development. Tom is the lead developer for the Equinox OSGi
Framework implementation. Tom is also a leader in the specification development process at the OSGi Alliance.
In particular, Tom participates in the Core Platform Export Group at the OSGi Alliance and is currently
working on the next OSGi specification.
</li>
<li>
<b><a name="ricco"></a>Ricco Deutscher, Sopera</b><br>
</li>
</ul>
<p class=bar>Project Leads</p>
<p>
<ul>
<li><a href="/ecf" target="_top">ECF</a> -- <a href="">Scott Lewis</a> </li>
<li><a href="/eclipselink" target="_top">EclipseLink</a> -- <a href="#doug">Doug Clarke</a> </li>
<li><a href="/equinox" target="_top">Equinox</a> -- <a href="#jeff">Jeff McAffer</a> and <a href="#tom">Tom Watson</a></li>
<li><a href="/ercp" target="_top">eRCP</a> -- <a href="">Gorkem Ercan</a> </li>
<li><a href="/rap" target="_top">RAP</a> -- <a href="">RĂ¼diger Herrmann</a> </li>
<li><a href="/riena" target="_top">Riena</a> -- <a href="">Christian Campo</a> </li>
<li><a href="/smila" target="_top">SMILA</a> -- <a href="">August Georg Schmidt and Igor Novakovic</a> </li>
<li><a href="/swordfish" target="_top">Swordfish</a> -- <a href="">Oliver Wolf </a> </li>
</ul>
</p>
<p>&nbsp;</p>
</div>
<?php
include $_SERVER['DOCUMENT_ROOT'] . "/rt/global-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);
?>