-
-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathhelp-irc-client.html
executable file
·48 lines (41 loc) · 1.81 KB
/
help-irc-client.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
{% extends 'base.html' %}
{% set title = "Help IRC Client" %}
{% block content %}
<h1 class="narrow">{{ sage }} IRC Help Channel</h1>
<div class="padding narrow txt">
If you want to connect directly: <a href="irc://irc.freenode.net/sagemath">#sagemath is
on freenode.net</a>
</div>
<div class="padding txt narrow">
To use you own nickname, just enter <span class="code">/nick <nickname></span> on the input
line!
</div>
<div class="padding txt narrow">
If you want to join another channel, type <span class="code">/join <#channel></span>.
<!-- For example if nobody answers, you can try <a href="irc://irc.freenode.net/sagemath">#sagemath</a>
by entering <span class="code">/join #sagemath</span> on the input
line!<br />-->
</div>
<div class="center txt">
<iframe src="http://webchat.freenode.net?channels=sagemath&uio=OT10cnVlJjExPTI0Ng32" width="750" height="450"></iframe>
</div>
{#
<div class="center txt">
<applet code="IRCApplet.class" archive="./res/irc/irc.jar,./res/irc/pixx.jar" width="700" height="500">
<param name="CABINETS" value="./res/irc/irc.cab,./res/irc/securedirc.cab,./res/irc/pixx.cab" />
<param name="nick" value="SageWWW" />
<param name="alternatenick" value="SageWWW??" />
<param name="name" value="{{ sage }} IRC Help Channel" />
<param name="host" value="irc.freenode.net" />
<param name="gui" value="pixx" />
<param name="coding" value="2">
<param name="quitmessage" value="sagehelp user has quit." />
<param name="authorizedcommandlist" value="none+me+j+hop+part+leave+echo+join+nick+msg" />
<param name="autoconnection" value="true" />
<param name="language" value="./res/irc/english" />
<param name="pixx:language" value="./res/irc/pixx-english" />
<param name="command1" value="/join #sagemath" />
</applet>
</div>
#}
{% endblock %}