- custom patched nntp-server node module with support for POSTing - should be able to post locally - 4 groups are made by default - can override in user_config.json (look at the config.json changes but dont do them there) - can sync down from an upstream server with sync_nntp.js - sync does not push new posts to upstream yet
159 lines
4.8 KiB
JavaScript
159 lines
4.8 KiB
JavaScript
var minisrv_service_file = true;
|
|
|
|
// max of 6, any more will be ignored
|
|
|
|
headers = `200 OK
|
|
Connection: Keep-Alive
|
|
Content-Type: text/html`
|
|
|
|
data = `<HTML>
|
|
<HEAD>
|
|
<DISPLAY fontsize=medium>
|
|
<TITLE>Featured discussion groups</TITLE>
|
|
</HEAD>
|
|
<sidebar width=114 height=420 align=left>
|
|
<table cellspacing=0 cellpadding=0 bgcolor=3d2f3a>
|
|
<tr>
|
|
<td colspan=3 width=104 absheight=4>
|
|
<td rowspan=100 width=10 height=420 valign=top align=left bgcolor=191919>
|
|
<img src="wtv-mail:/ROMCache/Shadow.gif" width=6 height=420>
|
|
<tr>
|
|
<td abswidth=6>
|
|
<td abswidth=93 absheight=76>
|
|
<table href="wtv-home:/home" absheight=76 cellspacing=0 cellpadding=0>
|
|
<tr>
|
|
<td align=right>
|
|
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
|
|
</table>
|
|
<td abswidth=5>
|
|
<tr>
|
|
<td colspan=3 absheight=2 valign=middle align=center bgcolor=231d22>
|
|
<img src="wtv-home:/ROMCache/Spacer.gif" width=1 height=1>
|
|
<tr>
|
|
<td colspan=3 absheight=1 valign=top align=left <img src="wtv-home:/ROMCache/Spacer.gif" width=1 height=1>
|
|
<tr>
|
|
<td colspan=3 absheight=2 valign=top align=left bgcolor=5b4b58>
|
|
<img src="wtv-home:/ROMCache/Spacer.gif" width=1 height=1>
|
|
<tr>
|
|
<td abswidth=6 >
|
|
<td abswidth=93 absheight=26 >
|
|
<table href="wtv-news:news?category=1"
|
|
cellspacing=0 cellpadding=0>
|
|
<tr>
|
|
<td abswidth=5>
|
|
<td abswidth=90 valign=middle align=left>
|
|
<table bgcolor=3d2f3a cellspacing=0 cellpadding=0>
|
|
<tr>
|
|
<td absheight=1>
|
|
<tr>
|
|
<td maxlines=1>
|
|
<shadow><font sizerange=medium color="E7CE4A">All groups</font></shadow></table>
|
|
</table>
|
|
<td abswidth=5>
|
|
<tr>
|
|
<td colspan=3 absheight=2 valign=middle align=center bgcolor=231d22>
|
|
<img src="wtv-home:/ROMCache/Spacer.gif" width=1 height=1>
|
|
<tr>
|
|
<td colspan=3 absheight=1 valign=top align=left <img src="wtv-home:/ROMCache/Spacer.gif" width=1 height=1>
|
|
<tr>
|
|
<td colspan=3 absheight=2 valign=top align=left bgcolor=5b4b58>
|
|
<img src="wtv-home:/ROMCache/Spacer.gif" width=1 height=1>
|
|
<tr>
|
|
<td abswidth=6 >
|
|
<td abswidth=93 absheight=26 >
|
|
<table href="wtv-guide:/help?topic=Discuss&subtopic=Index&appName=Discuss"
|
|
cellspacing=0 cellpadding=0>
|
|
<tr>
|
|
<td abswidth=5>
|
|
<td abswidth=90 valign=middle align=left>
|
|
<table bgcolor=3d2f3a cellspacing=0 cellpadding=0>
|
|
<tr>
|
|
<td absheight=1>
|
|
<tr>
|
|
<td maxlines=1>
|
|
<shadow><font sizerange=medium color="E7CE4A">Help</font></shadow></table>
|
|
</table>
|
|
<td abswidth=5>
|
|
<tr>
|
|
<td colspan=3 absheight=2 valign=middle align=center bgcolor=231d22>
|
|
<img src="wtv-home:/ROMCache/Spacer.gif" width=1 height=1>
|
|
<tr>
|
|
<td colspan=3 absheight=1 valign=top align=left <img src="wtv-home:/ROMCache/Spacer.gif" width=1 height=1>
|
|
<tr>
|
|
<td colspan=3 absheight=2 valign=top align=left bgcolor=5b4b58>
|
|
<img src="wtv-home:/ROMCache/Spacer.gif" width=1 height=1>
|
|
<tr>
|
|
<td colspan=3 height=237 valign=bottom align=right >
|
|
<img src="wtv-news:/images/BannerDiscuss.gif" width=50 height=165>
|
|
<tr><td colspan=3 absheight=36>
|
|
</table>
|
|
</sidebar>
|
|
<body
|
|
bgcolor="191919" text="42BD52" link="189CD6"
|
|
vlink="189CD6"
|
|
hspace=0
|
|
vspace=0>
|
|
<table cellspacing=0 cellpadding=0>
|
|
<tr>
|
|
<td abswidth=10>
|
|
<td colspan=3>
|
|
<table cellspacing=0 cellpadding=0>
|
|
<tr>
|
|
<td valign=center absheight=80>
|
|
<font size="+2" color="E7CE4A"><blackface><shadow>
|
|
Featured discussions
|
|
</table>
|
|
<td abswidth=20>
|
|
<tr>
|
|
<td>
|
|
<td WIDTH=198 HEIGHT=200 VALIGN=top ALIGN=left>`;
|
|
|
|
var featuredGroups = minisrv_config.services[service_name].featuredGroups;
|
|
var limit = 6;
|
|
while (featuredGroups.length > limit) featuredGroups.pop(); // remove anything passing our limit
|
|
|
|
function printGroup(group) {
|
|
return `<a href="wtv-news:/news?group=${group.group}"><b>${group.name}</b></a><br>${group.description}<br><IMG SRC="wtv-home:/ROMCache/Spacer.gif" WIDTH=1 HEIGHT=18><BR>`;
|
|
}
|
|
|
|
// evens
|
|
Object.keys(featuredGroups).forEach((k) => { if (k % 2 == 0) { data += printGroup(featuredGroups[k]); } });
|
|
|
|
if (featuredGroups.length > 1) data += `<td WIDTH=20><td WIDTH=198 HEIGHT=220 VALIGN=top ALIGN=left>`;
|
|
|
|
// odds
|
|
Object.keys(featuredGroups).forEach((k) => { if (k % 2 != 0) data += printGroup(featuredGroups[k]); });
|
|
|
|
|
|
data += `
|
|
</table>
|
|
<TABLE width=446 cellspacing=0 cellpadding=0>
|
|
<tr>
|
|
<td rowspan=3 width=10 height=1>
|
|
<img src="wtv-home:/ROMCache/Spacer.gif" width=10 height=1>
|
|
<td height=2 width=436 bgcolor="2B2B2B">
|
|
<img src="wtv-home:/ROMCache/Spacer.gif" width=436 height=1>
|
|
<tr>
|
|
<td height=1>
|
|
<tr>
|
|
<td height=2 bgcolor="0D0D0D">
|
|
<img src="wtv-home:/ROMCache/Spacer.gif" width=1 height=1>
|
|
</TABLE>
|
|
<table cellspacing=0 cellpadding=0>
|
|
<tr>
|
|
<td rowspan=2 abswidth=10>
|
|
<td absheight=10>
|
|
<tr>
|
|
<td abswidth=416 valign=top align=left>
|
|
Type a discussion topic<br>
|
|
<img src="/ROMCache/Spacer.gif" width=1 height=4>
|
|
<form action="wtv-news:search">
|
|
<input name="search" bgcolor=#202020 cursor=#cc9933 text="E7CE4A" font=proportional value="" SIZE=28 MAXLENGTH=100>
|
|
|
|
<font color=E7CE4A><shadow>
|
|
<input type=submit borderimage="file://ROM/Borders/ButtonBorder2.bif" value="Look for" usestyle>
|
|
</shadow></font>
|
|
</form>
|
|
</table>
|
|
</BODY>
|
|
</HTML>`; |