add mumble info

This commit is contained in:
Ben Harris 2018-08-19 13:51:35 -04:00
parent 9cac6b7714
commit 730f3414e4
Signed by untrusted user: ben
GPG Key ID: 4E0AF802FFF7960C
1 changed files with 27 additions and 22 deletions

View File

@ -21,42 +21,47 @@
<p>you can connect to tilde.chat on port 6697 with ssl</p>
<p>or localhost 6667 from a shell on any of the member tildes :) (port 7766 on ~town)</p>
<h3>mumble server</h3>
<p>connect to tilde.chat on the default port and talk!</p>
<p>might not be anyone there. shout about it on irc first!</p>
<h3>member tildes</h3>
<ul>
<?php
$members = json_decode(file_get_contents("members.json"))->members;
foreach($members as $member) {
echo "\t\t<li><a href='{$member->link}'>{$member->name}</a> (sysadmin";
if (count($member->sysadmins)!=1) {
echo "s"; // plural
}
echo ": ";
$count = count($member->sysadmins);
foreach($member->sysadmins as $sysadmin) {
echo "<a href='{$sysadmin[1]}'>{$sysadmin[0]}</a>";
if ($count>1) {
echo ", ";
$count--;
<?php
$members = json_decode(file_get_contents("members.json"))->members;
foreach($members as $member) {
echo "\t\t<li><a href='{$member->link}'>{$member->name}</a> (sysadmin";
if (count($member->sysadmins)!=1) {
echo "s"; // plural
}
echo ": ";
$count = count($member->sysadmins);
foreach($member->sysadmins as $sysadmin) {
echo "<a href='{$sysadmin[1]}'>{$sysadmin[0]}</a>";
if ($count>1) {
echo ", ";
$count--;
}
}
echo ", private channel: {$member->private_channel})</li>&nbsp;&nbsp;Description: \"{$member->description}\"<br><br>\n";
}
echo ", private channel: {$member->private_channel})</li>&nbsp;&nbsp;Description: \"{$member->description}\"<br><br>\n";
}
?>
?>
</ul>
<hr>
<!-- misc channel info -->
<h3>channel info</h3>
<a href="stats.php">stats here</a>
<pre>
#meta * - main lobby channel
#projects * - project ideas and discussions
#shitposting * - somewhere to put your bad memes
#team - private channel
#town - private channel
#your - private channel
#fun - private channel
#chaos - everyone's opped and anything goes
#town - private channel for tilde.town
#fun - private channel for tilde.fun
</pre>
<p>* = bridged to discord: tilde.chat private discord invites for tilde members <a href="/discord">here</a>. join and confirm that you're a tilde member to get access to the channels (including a private Discord channel for your tilde). bridging configuration can be adjusted per request.</p>