blob: 0ab2b75f53698cc9f0c54eb0700b8b2cbd0b06c8 [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 = "Mylyn";
$pageKeywords = "Mylar, Mylyn, Eclipse";
$pageAuthor = "Mik Kersten";
$filename = $_SERVER['DOCUMENT_ROOT'] . "/mylyn/rename.html";
$dataFile = fopen( $filename, "r" ) ;
if ( $dataFile ) {
while (!feof($dataFile)) {
$contents .= fgets($dataFile, 4096);
}
fclose($dataFile);
} else {
die( "fopen failed for $filename" ) ;
}
# Paste your HTML content between the EOHTML markers!
include("_sideCommon.php");
$html = <<<EOHTML
<div id="midcolumn" style="width:92%">
$contents
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>