-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewsgroup-mailing-list.php
More file actions
29 lines (25 loc) · 1.28 KB
/
newsgroup-mailing-list.php
File metadata and controls
29 lines (25 loc) · 1.28 KB
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
<?php
require_once ("../includes/buildServer-common.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());
$newsgroups = array("MDT (main)" => array("modeling.mdt"));
foreach ($projects as $name => $suf) {
if (!isset($nonewsgroup) || !in_array($suf, $nonewsgroup))
{
$newsgroups[$name] = array("modeling.mdt.".$suf);
}
}
$newsgroups["UML2"][] = "tools.uml2"; /* add old one */
$newsgroups["XSD"] = array("technology.xsd","tools.emf"); /* override */
$newsgroups["Papyrus"] = array("papyrus"); /* override */
$newsgroups["MST"] = array("mst"); /* override */
$newsgroups["MoDisco"] = array("modisco"); /* override */
$mailinglists = array("MDT (main)" => array("mdt.dev"));
foreach ($projects as $name => $suf) {
if (!isset($nomailinglist) || !in_array($suf, $nomailinglist))
{
$mailinglists[$name] = array("mdt-".$suf.".dev");
}
}
array_unshift($mailinglists["XSD"],"emf-dev"); /* override */
require_once($_SERVER['DOCUMENT_ROOT'] . "/modeling/includes/newsgroup-mailing-list-common.php");
?>