~fluix/tilde

b7b7a142f2a3543093d35b6ec86c2f3080cfff2e — Steven Guikal 1 year, 5 months ago 8f46b9d
Update chatting user guide
3 files changed, 16 insertions(+), 6 deletions(-)

M flatpages/templates/chat.html
M flatpages/templates/index.html
M templates/base.html
M flatpages/templates/chat.html => flatpages/templates/chat.html +15 -2
@@ 13,6 13,19 @@ SPDX-License-Identifier: CC-BY-SA-4.0

{% block main %}
  <h1>Chat</h1>
  <p>We currently only provide <abbr title="Internet Relay Chat">IRC</abbr> for communication hosted on the <a href="irc://irc.{{ request.environ.HTTP_HOST }}">irc.{{ request.environ.HTTP_HOST }}</a> domain.</p>
  <p><b>TODO</b>: connection and account instructions.</p>
  <p>We currently only provide <abbr title="Internet Relay Chat">IRC</abbr> for communication hosted on the <a href="irc://irc.{{ request.environ.HTTP_HOST }}">irc.{{ request.environ.HTTP_HOST }}</a> subdomain. <a href="https://ergo.chat">Ergo</a>, our ircd, includes a built-in bouncer, integrated services, and IP cloaking. It is only available over TLS.</p>
  <h2>Service Information</h2>
  <ul>
    <li><b>server</b>: <a href="https://ergo.chat">Ergo</a></li>
    <li><b>url</b>: <a href="irc://irc.cats.sh:6697">irc://irc.cats.sh:6697</a></li>
    <li><b>host</b>: <code>irc.cats.sh</code></li>
    <li><b>port</b>: <code>6697</code></li>
  </ul>
  <h2>Connecting</h2>
  <p>Most clients should work well with Ergo. Check <a href="https://ircv3.net/software/clients">the list here</a> for many options.</p>
  <p>Connect over TLS on host <a href="irc://irc.cats.sh:6697"><code>irc.cats.sh</code> and port <code>6697</code></a>. Use SASL authentication with the same username and password that you registered with.</p>
  <p>See the <a href="https://github.com/ergochat/ergo/blob/stable/docs/USERGUIDE.md#introduction">Ergo Userguide</a> for more information, links to other guides, and setting up <b>message history</b>, with the exception that you do not need to register your account with <code>NickServ</code>.</p>
  <h2>Channels</h2>
  <p>The userguide linked above mentions registering channels which you can do on our server.</p>
  <p>The only known official channel is <a href="irc://irc.cats.sh:6697/#cats">#cats</a> which you can join by typing <code>/join #cats</code> in your IRC client.</p>
{% endblock %}

M flatpages/templates/index.html => flatpages/templates/index.html +1 -1
@@ 8,7 8,7 @@ SPDX-License-Identifier: CC-BY-SA-4.0
{% extends "base.html" %}

{% block head %}
  <title></title>
  <title>Cats.sh</title>
{% endblock %}

{% block main %}

M templates/base.html => templates/base.html +0 -3
@@ 40,9 40,6 @@ SPDX-License-Identifier: CC-BY-SA-4.0
          <li>
            <a href="{{ url_for("flatpages.chat") }}">chat</a>
          </li>
          <li>
            <a href="{{ url_for("flatpages.talk") }}">talk</a>
          </li>
        </ul>
      </nav>
      {% for message in get_flashed_messages() %}