ZNC-Extra no more.

Few the most useless modules are just removed, the others are moved to
standard modules.
This commit is contained in:
Alexey Sokolov
2012-02-21 19:34:36 +07:00
parent fc8e789b08
commit 7ac61474ed
25 changed files with 27 additions and 444 deletions
+28
View File
@@ -0,0 +1,28 @@
<? INC Header.tmpl ?>
<table class="data">
<thead>
<tr>
<td>Name</td>
<td>Created</td>
<td>State</td>
<td>SSL</td>
<td>Local</td>
<td>Remote</td>
</tr>
</thead>
<tbody>
<? LOOP SocketsLoop ?>
<tr class="<? IF __EVEN__ ?>evenrow<? ELSE ?>oddrow<? ENDIF ?>">
<td><? VAR Name ?></td>
<td><? VAR Created ?></td>
<td><? VAR State ?></td>
<td><? VAR SSL ?></td>
<td><? VAR Local ?></td>
<td><? VAR Remote ?></td>
</tr>
<? ENDLOOP ?>
</tbody>
</table>
<? INC Footer.tmpl ?>