blob: e708f350a2ce98b3c54a3c5bbe24c2c4fe2d104f [file] [log] [blame]
<?php
/*******************************************************************************
* Copyright (c) 2005,2017 Eclipse Foundation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
$App = new App();
$Nav = new Nav();
include("_projectCommon.php");
$Theme = $App->getThemeClass($theme);
$Theme->setNav($Nav);
$pageTitle = "Eclipse Foundation Legal Frequently Asked Questions (FAQ)";
$Theme->setPageTitle($pageTitle);
$Theme->setPageAuthor('Mike Milinkovich');
$Theme->setPageKeywords('legal, faq, foundation');
// FIXME Workaround because I can't get Asciidoctor to generate embeddable HTML
function getBodyContent($path)
{
$DOMDocument = new DOMDocument();
$DOMDocument->loadHTMLFile($path);
$body = $DOMDocument->getElementsByTagName('body')->item(0);
$content = "";
foreach ($body->childNodes as $childNode) {
$content .= $DOMDocument->saveHTML($childNode);
}
return $content;
}
ob_start(); ?>
<div id="midcolumn">
<div class="homeitem3col">
<?php print getBodyContent(dirname(__FILE__) . '/documents/html/legalfaq.html'); ?>
</div>
</div>
<?php
$html = ob_get_contents();
ob_end_clean();
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>