blob: a7d7777543beb94f41f6be83dd1541c159ea7890 [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()); # All on the same line to unclutter the user's desktop'
/*******************************************************************************
* Copyright (c) 2015 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:
* Stuart McCulloch (Sonatype, Inc.) - Custom content for Sisu
*******************************************************************************/
$pageTitle = "Support";
ob_start();
?>
<div id="midcolumn">
<h3 id="bugs">Bug Tracker</h3>
<p>
If you encounter a bug or have a feature request, please enter a sufficiently detailed issue in our
<a href="<?php print $issueTracker;?>">bug tracker</a>.
We especially appreciate issues that come with suggested patches or enough information to be recreated locally.
</p>
<p>
Please also take time to check if your issue has already been
<a href="https://bugs.eclipse.org/bugs/buglist.cgi?classification=Technology&product=Sisu">logged</a>
by someone else.
</p>
<h3 id="mail">Mailing Lists</h3>
<p>
If you have a question about using Sisu that the existing documentation does not answer, we'd like to hear from you on
the <a href="http://dev.eclipse.org/mailman/listinfo/sisu-users/">user mailing list</a>. Questions about the internal
design of Sisu should be directed to the <a href="http://dev.eclipse.org/mailman/listinfo/sisu-dev/">developer mailing list</a>.
</p>
<p>
Before posting your question, please search the
<a href="http://dev.eclipse.org/mhonarc/lists/sisu-users/">user</a>
or <a href="http://dev.eclipse.org/mhonarc/lists/sisu-dev/">developer</a>
archives in case your question has been brought up before and was already answered.
</p>
</div>
<div id="rightcolumn">
<?php print $incubation;?>
</div>
<?php
$html = ob_get_clean();
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>