-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathindex.php
80 lines (72 loc) · 2.33 KB
/
index.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
<?php
require 'common.php';
try {
$nntpClient = new \Web\News\Nntp($NNTP_HOST);
$groups = $nntpClient->listGroups();
$descriptions = $nntpClient->listGroupDescriptions();
/* Reorder so it's moderated, active, and inactive */
$order = [ 'm' => 1, 'y' => 2, 'n' => 3 ];
uasort($groups, function ($a, $b) use ($order) {
return $order[$a['status']] <=> $order[$b['status']];
});
} catch (Exception $e) {
error($e->getMessage());
}
head();
$DISPLAY_NNTP_HOST = htmlspecialchars(($NNTP_HOST == 'localhost') ? 'news.php.net' : $NNTP_HOST);
?>
<nav class="secondary-nav">
<ul class="breadcrumbs">
<li><a class="breadcrumbs-item-link" href="/">PHP Mailing Lists</a></li>
</ul>
</nav>
<section class="content">
<div class="welcome">
<h1>PHP Mailing Lists</h1>
<p>
The PHP project collaborates across a number of mailing lists. The archives
are available through this site and via NNTP at
<a href="news://<?= $DISPLAY_NNTP_HOST ?>"> <?= $DISPLAY_NNTP_HOST ?></a>.
</p>
<p>
Instructions for subscribing to active lists by email can be found on the page
for each list (just follow the links below). Participation on each list is governed
by the <a href="https://github.com/php/php-src/blob/master/docs/mailinglist-rules.md">
mailing list rules</a>.
</p>
</div>
<table class="standard">
<tr>
<th>Name</th>
<th>Description</th>
<th>Messages</th>
<th>RSS</th>
</tr>
<tr>
<th colspan="4">Moderated Lists</th>
</tr>
<?php
$last_status = 'm';
foreach ($groups as $group => $details) {
if ($details['status'] != $last_status) {
$last_status = $details['status'];
echo '<tr><th colspan="4">',
$last_status == 'y' ? 'Discussion Lists' : 'Inactive Lists',
"</th></tr>\n";
}
echo " <tr>\n";
echo " <td><a class=\"active{$details['status']}\" href=\"/$group\">$group</a></td>\n";
echo " <td>", htmlspecialchars($descriptions[$group]), "</td>\n";
echo " <td class=\"align-right\">", $details['high'] - $details['low'] + 1, "</td>\n";
echo " <td class=\"align-center\">";
if ($details['status'] != 'n') {
echo "<a href=\"group.php?group=$group&format=rss\">RSS</a>";
}
echo "</td>\n";
echo " </tr>\n";
}
?>
</table>
</section>
<?php
foot();