blob: f8ba90885879f200af53c6b9f295a28fef722cfd [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 = "IP Log";
$pageKeywords = "photran, ip, intellectual property, copyright";
$pageAuthor = "Jeffrey Overbey";
require_once($_SERVER['DOCUMENT_ROOT'] . "/projects/common/project-info.class.php");
$projectInfo = new ProjectInfo("the project's Foundation database key");
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="maincontent">
<div id="midcolumn">
<h1>$pageTitle</h1>
<h2>Committer List</h2>
<table border="0" cellspacing="2" cellpadding="3">
<tr>
<td align="left" valign="top">Foote, Brian</td>
<td align="left" valign="top">University of Illinois at Urbana-Champaign</td>
</tr>
<tr>
<td align="left" valign="top">Hilliard, Bill</td>
<td align="left" valign="top">Intel</td>
</tr>
<tr>
<td align="left" valign="top">Johnson, Ralph</td>
<td align="left" valign="top">University of Illinois at Urbana-Champaign</td>
</tr>
<tr>
<td align="left" valign="top">Overbey, Jeffrey</td>
<td align="left" valign="top">University of Illinois at Urbana-Champaign</td>
</tr>
<tr>
<td align="left" valign="top">Rasmussen, Craig</td>
<td align="left" valign="top">Los Alamos National Laboratory</td>
</tr>
<tr>
<td align="left" valign="top">Sennikovsky, Mikhail</td>
<td align="left" valign="top">Intel</td>
</tr>
<tr>
<td align="left" valign="top">Treggiari, Leo</td>
<td align="left" valign="top">Intel</td>
</tr>
</table>
<h2>3rd Party IP Incorporated in Source Form Under EPL</h2>
<table border="0" cellspacing="2" cellpadding="3">
<tr>
<th>Name</th>
<th>Contribution</th>
<th>File(s) or Projects</th>
</tr>
<tr>
<td align="left" valign="top">Dirk Rossow<br>(Flensburger Schiffbau Gesellschaft)</td>
<td align="left" valign="top">Fixed Form Lexical Analysis</td>
<td align="left" valign="top">FixedFormLexerPhase1.flex<br>
FixedFormLexerPhase2.java<br>
FixedFormLexerPrepass.java</td>
</tr>
<tr>
<td align="left" valign="top">Intel (Bill Hilliard)</td>
<td align="left" valign="top">Intel MBS Integration</td>
<td align="left" valign="top">org.eclipse.photran.intel-feature<br>
org.eclipse.photran.core.intel<br>
org.eclipse.photran.managedbuilder.intel.ui</td>
</tr>
<tr>
<td align="left" valign="top">Walt Brainerd</td>
<td align="left" valign="top">NAG Error Parser</td>
<td align="left" valign="top">org.eclipse.photran.internal.errorparsers.NAGErrorParser<br>(in org.eclipse.photran.core/errorparsers)</td>
</tr>
<tr>
<td align="left" valign="top">Nicholas Chen and Cheah Chin Fei (UIUC)</td>
<td align="left" valign="top">Various UI Enhancements</td>
<td align="left" valign="top">patch-20051101.txt (in org.eclipse.photran-dev-docs/patches)</td>
</tr>
<tr>
<td align="left" valign="top">Stas Negara (UIUC)</td>
<td align="left" valign="top">Fortran Indexer</td>
<td align="left" valign="top">org.eclipse.photran.core.indexer and subpackages</td>
</tr>
<tr>
<td align="left" valign="top">Feanil Patel, Ken Schultz, and Shawn Temming (UIUC)</td>
<td align="left" valign="top">Photran Debugger</td>
<td align="left" valign="top">org.eclipse.photran.debug-feature<br>
org.eclipse.photran.debug.core<br>
org.eclipse.photran.debug.mi.core<br>
org.eclipse.photran.debug.mi.ui<br>
org.eclipse.photran.debug.ui<br>
org.eclipse.photran.launch</td>
</tr>
</table>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>