-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (91 loc) · 3.19 KB
/
index.html
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<title>QuakeNet Development Team</title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="reset.css"></link>
<link rel="stylesheet" href="main.css"></link>
<script type="text/javascript" src="main.js"></script>
</head>
<body onload="go();">
<div id="header">
<span><img src="quakenet.png"></span>
<span>QuakeNet Development Team</span>
</div>
<div id="context">
<h1>Introduction</h1>
<h2>Infrastructure</h2>
<ul>
<li><a href="https://github.com/quakenet/">GitHub</a>
<li>Support channel: <a href="irc://irc.quakenet.org/dev">#dev on QuakeNet</a> <a href="http://webchat.quakenet.org/?nick=&channels=dev&prompt=1">(webchat)</a></li>
<li>E-mail address: <input type="button" id="email" value="Fetch" onclick="fetch();" style="display: none"><noscript>[email protected]</noscript></li>
</ul>
<h1>Current projects</h1>
<hr>
<h2 class="project"><span><img src="newserv.png"></span><span>newserv</span></h2>
<p>A modular P10 IRC services framework.</p>
<p>GitHub: <a href="https://github.com/quakenet/newserv/">https://github.com/quakenet/newserv/</a></p>
<p>Features:</p>
<ul>
<li>Role-based access checks for oper commands</li>
<li>Search functionality</li>
<li>Scripting (Lua)</li>
<li>Proxy detection (P)</li>
<li>Connection limits ("trusts")</li>
<li>Transactional g:line support</li>
<li>Jupes</li>
<li>Chanfix</li>
<li>Chanserv (Q9)</li>
<li>Help Service (G)</li>
<li>Channel Service Request (R)</li>
<li>QA/Tutor Bots</li>
<li>Server list with latency checks</li>
</ul>
<hr>
<h2 class="project"><span><img src="qwebirc.png"></span><span>qwebirc</span></h2>
<p>A fast minimalistic web IRC client.</p>
<table>
<tr>
<td>Main website:</td>
<td><a href="http://www.qwebirc.org/">http://www.qwebirc.org/</a></td>
</tr>
<tr>
<td>Repository:</td>
<td><a href="https://github.com/qwebirc/qwebirc/">https://github.com/qwebirc/qwebirc/</a></td>
</tr>
</table>
<hr>
<h2 class="project"><span><img src="snircd.png"></span><span>snircd</span></h2>
<p>QuakeNet's IRC server, based on ircu.</p>
<table>
<tr>
<td>Latest release:</td>
<td><a href="https://www.quakenet.org/development/releases/snircd.12.10.1.3.4a.tar.gz">1.3.4a</a></td>
</tr>
<tr>
<td>Repository:</td>
<td><a href="https://bitbucket.org/quakenet/snircd/">https://bitbucket.org/quakenet/snircd/</a></td>
</tr>
<tr>
<td>Patch queue:</td>
<td><a href="https://bitbucket.org/quakenet/snircd-patchqueue/">https://bitbucket.org/quakenet/snircd-patchqueue/</a></td>
</tr>
<tr>
<td>Current version:</td><td><pre>hg clone "https://bitbucket.org/quakenet/snircd/rev/u2.10.12.10+snircd(1.3.4a)" snircd-1.3.4a
</pre></td></tr>
<tr>
<td>Development branch:</td><td><pre>hg qclone -p https://bitbucket.org/quakenet/snircd-patchqueue/ https://bitbucket.org/quakenet/snircd/
hg up -R snircd 1.3.5-dev
hg up -R snircd/.hg/patches patch-1.3.5</pre></td>
</table>
<hr>
<h1>Former projects</h1>
<h2>Lightweight</h2>
<p>Former minimal channel chanservice.</p>
<p>Repository: <a href="https://github.com/quakenet/lightweight/">https://github.com/quakenet/lightweight/</a></p>
<div id="footer">
Copyright © 1998-2017 QuakeNet Development Team. All rights reserved.
</div>
</div>
</body>
</html>