| <?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()); |
| include("script/rss2html.php"); |
| |
| $newsConverter = new RSS2HTML(); |
| $news = $newsConverter->convert(); |
| $html = file_get_contents('test.html'); |
| |
| $html = str_replace("%%HEADLINES%%", $news, $html); |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, null, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |