blob: fbf1da1e08b98b9409372ed1137104852c595da4 [file] [log] [blame]
<?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());
/*******************************************************************************
* Copyright (c) 2009 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
*
* Contributors: Christopher Frost
*
*******************************************************************************/
# Begin: page-specific settings. Change these.
$pageTitle = "EBR - Support";
$pageKeywords = "Eclipse, EclipseRT, EBR, OSGi, Support";
$pageAuthor = "Christopher Frost";
ob_start();
?>
<div id="midcolumn">
<h2>Community Forum</h2>
<p>
The <a href="http://www.eclipse.org/forums/index.php/f/261/">EBR Forum</a> is intended for user community discussions on EBR usage, recipes and troubleshooting.
Developers using the EBR should refer to the <a href="http://wiki.eclipse.org/EBR">EBR Wiki</a>
and the <a href="https://dev.eclipse.org/mailman/listinfo/ebr-dev">EBR Developer mailing list</a>.
</p>
<h2>Open Source Support for EBR</h2>
<p>
Submit bugs using the <a href="https://bugs.eclipse.org/bugs/enter_bug.cgi?product=EBR">Bugzilla web interface</a>.
Please <a href="https://bugs.eclipse.org/bugs/query.cgi?product=EBR">search for duplicates</a> first.
</p>
For defects, provide steps to reproduce. For enhancements, describe a use case.
</p>
<p>
Committers prioritise critical bug fixes and enhancements and cannot respond to all inquiries.
</p>
<ul>
<li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?classification=RT&query_format=advanced&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=EBR">View all open bugs/issues</a></li>
</ul>
</div>
<?
$html = ob_get_clean();
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>