-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathusers.php
95 lines (82 loc) · 4.15 KB
/
users.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?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">
[email protected]:</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">
[email protected]:</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
$Theme = $App->getThemeClass();
$Theme = $App->getThemeClass($theme);
$Theme->setNavPosition('left');
$Theme->setNav($Nav);
$Theme->setMenu($Menu);
$Theme->setPageAuthor($pageAuthor);
$Theme->setPageKeywords($pageKeywords);
$Theme->setPageTitle($pageTitle);
$Theme->setHtml($html);
$Theme->setBreadcrumb($Breadcrumb);
$Theme->generatePage();
?>