blob: d037931a623ba3f787a855a974f9aee95b0aec46 [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 = "Refactoring in Progress ";
include( '_commonLeftNav.php' );
ob_start();
?>
<div id="maincontent">
<div id="midcolumn">
<div style="font-size: 14pt">
We are in the midst of refactoring, reorganizing, and re-structuring the
<code>/projects/</code> and <code>/proposals/</code> web pages.
<p>We apologize for the temporary inconvenience. In the meantime, we
direct you to the <a href="/projects/old-index.php">older web pages</a>.
</p>
<center>
<a href="/projects/old-index.php"><img border="0" src="/projects/images/go_button.jpg"></a>
</center>
<p>&nbsp;</p>
</div><!-- font-size -->
</div><!-- midcolumn -->
</div><!-- maincontent -->
<?php
# Paste your HTML content between the EOHTML markers!
$html = ob_get_contents();
ob_end_clean();
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>