blob: 3b10541dc97231f7da8ab3f2d0740c216bcd1077 [file] [log] [blame]
<?php
/**
* Copyright (c) 2008, 2018 Eclipse Foundation.
*
* 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)- initial API and implementation
* Eric Poirier (Eclipse Foundation)
*
* SPDX-License-Identifier: EPL-2.0
*/
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();
$Theme = $App->getThemeClass();
include ($App->getProjectCommon());
// Begin: page-specific settings. Change these.
$pageTitle = "Usage Data Collector Usage Report";
$Theme->setPageTitle($pageTitle);
$Theme->setPageKeywords("Eclipse, usage data, usagedata, cortez");
$Theme->setPageAuthor("Wayne Beaton");
ob_start();
include ("content/en_" . $App->getScriptName());
$html = ob_get_clean();
$Theme->setNav($Nav);
$Theme->setHtml($html);
$Theme->generatePage();