blob: db91e7e51388314637f3b66cb4df8793dfa48e6c [file] [log] [blame]
<?php
// Note: the HTML input files should have &nbsp; coded as &#160; to survive xsl transforms
// also '&' should be coded as '&amp;'
//
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'
$pageKeywords = "WTP PMC Meetings Eclipse Webtools Platform";
$pageAuthor = "David Williams";
$root = $_SERVER['DOCUMENT_ROOT'];
$find = array('<','>',"'",'"',')','(');
$repleace = array('','&gt;','&apos;','&#x22;','&#x29;','&#x28;');
$meetingDate = htmlentities(str_replace($find, "", $App->getHTTPParameter('meetingDate', 'GET')), ENT_QUOTES);
if (!empty($meetingDate) && DateTime::createFromFormat('Y-m-d', $meetingDate) === FALSE) {
$meetingDate = "";
}
// requireds php 5 >= 5.2 (we are currently running 5.1.2)
//$meetingDate = filter_input(INPUT_GET, 'meetingDate', FILTER_SANITIZE_STRING);
//echo "meetingDate: " +$meetingDate;
$meetingFile=$meetingDate . ".html";
if (file_exists($meetingFile)) {
# Generate the web page
// Load the XML source
$xml = new DOMDocument;
$xml->loadHTMLFile($meetingFile);
//Set the page title
$xpath = new DOMXPath($xml);
$titleNode = $xpath->query("/html/head/title")->item(0);
// echo "<br />titleNodeValue: " . $titleNode->nodeValue;
$pageTitle = ($titleNode != null) ? $titleNode->childNodes->item(0)->nodeValue : "eclipse.org webtools page";
// Load the XSL source
//$xsl = DOMDocument::load($root . '/webtools/wtpphoenix.xsl');
// Load the XSL source
$xsl = DOMDocument::load($root . '/webtools/wtpnova.xsl');
// Configure the transformer
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl); // attach the xsl rules
// work on just the body of the original (not head, etc.)
$xmlbody=$xml->getElementsByTagName('body')->item(0);
$maincontent = $proc->transformToXML($xmlbody);
$html = <<<EOHTML
<div id="maincontent">
<div id="midcolumn">
<p>
$maincontent
</p>
</div>
</div>
EOHTML;
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
} else {
$pageTitle="Meeting Not Found";
if ($meetingDate == "") {
$html="<p>A meeting date is required</p>";
}
else {
$html="<p>There is no meeting for " . $meetingDate . "</p>";
}
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
}
?>