blob: 8e3e69c7368ac06d64ed0d9bb033fb4e4984e161 [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());
$pageTitle = "OSEE - Documentation";
$pageKeywords = "OSEE, documentation, wiki, screencasts";
#*****************************************************************************
$html = '<div id="midcolumn">';
$html .= file_get_contents('_index.html');
$html .= "</div>";
$html = preg_replace('/@VERSION@/', $version, $html);
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>