-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathlive-chat.html
66 lines (54 loc) · 3.58 KB
/
live-chat.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
---
title: Live Chat
redirect_from:
- /live-chat/
---
{% include logo_container.html %}
<div class="main-wrapper content-container">
<div id="main-container" class="container">
<div class="row">
<div class="col-md-12">
<p>
SABnzbd has support & discussion channels on our Discord server and on the synIRC IRC Network.<br>
There is a two-way IRC-Discord relay bot that links our Discord's <code>#support</code> channel with <code>#sabnzbd</code> IRC channel to allow each group to assist each other.
</p>
<p>Before jumping in to the chat please check <a href="/wiki/" target="blank">the wiki</a> to see if we have already answered your question in our <a href="/wiki/faq" target="blank">FAQ</a>.</p>
<p>Here are our top requests:</p>
<ul>
<li><a href="/wiki/faq#toc21" target="blank">SABnzbd is asking for a password, how do I reset it?</a></li>
<li><a href="/wiki/introduction/usage" target="blank">How do I get files into SABnzbd?</a></li>
<li><a href="/wiki/configuration/{{ site.wiki_version }}/general" target="blank">How do I make SABnzbd accessible from another computer?</a></li>
<li><a href="/wiki/introduction/nzb-sources" target="blank">How do I search?</a></li>
</ul>
<p><b>Note:</b> While we try to respond promptly to whatever questions you may come in with, please keep in mind that we can't always respond <i>instantaneously</i>. So please, stick around for a couple of minutes and give us a chance to realize there's channel activity before you give up.</p>
<p>However, if we really all do seem asleep, feel free to ask your question <a href="http://forums.sabnzbd.org">over on the forums</a>.</p>
<hr/>
<h3>Discord</h3>
<p>
<a href="https://discord.sabnzbd.org" target="_blank"><img src="https://img.shields.io/discord/976737547558461480?color=7289DA&label=Discord&logo=Discord&logoColor=white&style=for-the-badge" alt="Join our Discord server" /></a><br>
Join our Discord server!
</p>
<hr/>
<h3>IRC</h3>
<p>If you are familiar with IRC you can find us in <b>#sabnzbd</b> on <b>irc.synirc.net</b>. If you aren't, you can use the Mibbit web client embedded on this page.</p>
<p><a href="#" id="chat-link" onclick="showChat()">Click here to connect to the chat</a></p>
<p><iframe id="chat" width="100%" height="600" scrolling="no" style="border:0; display:none;" src=""></iframe></p>
<script type="text/javascript">
var chatOpen = false;
function showChat() {
chatOpen = true;
$('#chat').show();
$('#chat').attr('src','https://embed.mibbit.com/?server=irc.synirc.net&channel=%23sabnzbd&noServerNotices=true&noServerMotd=true&parseLinks=true&chatOutputShowTimes=true');
$('#chat-link').hide();
}
window.onbeforeunload = confirmExit;
function confirmExit() {
if(chatOpen) {
return "Closing this tab or navigating away from this page will close your connection to #SABnzbd on IRC.";
}
}
</script>
</div>
</div>
</div>
</div>