blob: dc9db7c9e98ac47b4df505d47bb0f9ec436bc70b [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'
#*****************************************************************************
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Mylar Users";
$pageKeywords = "Mylar, Eclipse";
$pageAuthor = "Mik Kersten";
# Add page-specific Nav bars here
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
# $Nav->addNavSeparator("My Page Links", "downloads.php");
# $Nav->addCustomNav("My Link", "mypage.php", "_self", 3);
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);
# End: page-specific settings
#
# Paste your HTML content between the EOHTML markers!
include("_sideCommon.php");
$html = <<<EOHTML
<div id="maincontent">
<div id="midcolumn">
<p>Please use the newsgroup for posting questions about Mylar (<a href="http://dev.eclipse.org/newsManager/newsRequestForm.html">register here</a>).
In part thanks to the Bugzilla integration that it provides, the
Mylar project makes heavy use of <a href="bugs.php">Bugzilla</a> for tracking bugs, planning,
and discussing design issues.</p>
<div class="homeitem3col">
<h3>Newsgroups and Mailing Lists</h3>
<ul>
<li>
<a href="news://news.eclipse.org/eclipse.technology.mylar">
mylar newsgroup:</a> user discussions and minor release announcements
<a href="http://dev.eclipse.org/newslists/news.eclipse.technology.mylar/maillist.html">[archive]</a></li>
<li>
<a href="http://dev.eclipse.org/mailman/listinfo/mylar-announce">
mylar-announce@eclipse.org:</a> major releases and events
<a href="http://dev.eclipse.org/mhonarc/lists/mylar-announce/maillist.html">[archive]</a></li>
<li>
<a href="http://dev.eclipse.org/mailman/listinfo/mylar-dev">
mylar-dev@eclipse.org:</a> developer discussions and planning
<a href="http://dev.eclipse.org/mhonarc/lists/mylar-dev/maillist.html">[archive]</a></li>
<li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=%5Bdiscussion%5D&product=Mylar&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=allwords&keywords=&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&emailtype1=substring&email1=&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">
Bugzilla discussions</a> of ideas, enhancements, and UI issues.</li>
</ul>
</div>
<div class="homeitem3col">
<h3>Support Expectations</h3>
<ul>
<li>
<b>Tasks List, Focused UI, and frameworks</b>: top support priority of committers
</li>
<li>
<b>Bugzilla Connector</b>: supported by committers, used for project
</li>
<li>
<b>Trac Connector</b>: supported by committers
</li>
<li>
<b>JIRA Connector</b>: supported by community contributions, managed by committers
</li>
</ul>
</div>
</div>
<!--
<div id="rightcolumn">
$commonside
</div>
-->
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>