blob: c8524f3f79e4bdb4ff731687abb082b2ba5ca2ba [file] [log] [blame]
<?php
/**
* Copyright (c) 2017, 2018 Eclipse Foundation and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Wayne Beaton (Eclipse Foundation)
* Eric Poirier (Eclipse Foundation)
*
* SPDX-License-Identifier: EPL-2.0
*/
require_once dirname(__FILE__) . "/../eclipse.org-common/system/app.class.php";
$App = new App();
$Theme = $App->getThemeClass();
include (dirname(__FILE__) . "/_projectCommon.php");
$pageTitle = "Third Party Content Licenses";
$Theme->setPageTitle($pageTitle);
$Theme->setPageKeywords("legal, privacy, policy");
$Theme->setPageAuthor("Wayne Beaton");
ob_start();
include ("content/en_" . $App->getScriptName());
$html = ob_get_clean();
$Theme->setHtml($html);
$Theme->setNav($Nav);
$Theme->generatePage();