]> git.ipfire.org Git - ipfire.org.git/commitdiff
Drop chat page
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 10 Oct 2018 10:52:46 +0000 (11:52 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 10 Oct 2018 10:52:46 +0000 (11:52 +0100)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Makefile.am
src/templates/static/chat.html [deleted file]
src/web/__init__.py

index ef82a8347a201d259a6b581d073f705354c24da0..7b043ab61fb5248b6c5fe83546479534b614f91b 100644 (file)
@@ -149,7 +149,6 @@ templates_modules_DATA = \
 templates_modulesdir = $(templatesdir)/modules
 
 templates_static_DATA = \
-       src/templates/static/chat.html \
        src/templates/static/features.html \
        src/templates/static/get-involved.html \
        src/templates/static/get-started.html \
diff --git a/src/templates/static/chat.html b/src/templates/static/chat.html
deleted file mode 100644 (file)
index 84fc277..0000000
+++ /dev/null
@@ -1,71 +0,0 @@
-{% extends "../base.html" %}
-               
-{% block title %}{{ _("Chat") }}{% end block %}
-
-{% block container %}
-<div class="container">
-       <section class="features-content col-12">
-               <h2 class="display-2 text-center">{{ _("Chat") }}</h2>
-               
-               <div class="row mb-5">
-                       <div class="col-md-8 offset-md-2 text-center">
-                               <p class="lead">
-                                       On the IPFire channel, you will find people who can help you
-                                       with your questions about IPFire.
-                               </p>
-                               <p>
-                                       This is a good chance to meet people involved in the project
-                                       or just have a chat.
-                               </p>
-                       </div>
-               </div>
-               
-               <div class="row">       
-                       <div class="col-md-3 offset-md-2">
-                               <h4>
-                                       <a href="xmpp:ipfire@conference.ipfire.org">
-                                               {{ _("Jabber") }}
-                                       </a>
-                               </h4>
-
-                               <dl class="dl-horizontal">
-                                       <dt>{{ _("Room") }}</dt>
-                                       <dd>ipfire</dd>
-
-                                       <dt>{{ _("Server") }}</dt>
-                                       <dd>conference.ipfire.org</dd>
-                               </dl>
-
-                               <p class="ac">
-                                       <small>
-                                               <a href="//planet.ipfire.org/post/opening-the-ipfire-jabber-server">
-                                                       {{ _("Need a Jabber account?") }}
-                                               </a>
-                                       </small>
-                               </p>
-                       </div>
-
-                       <div class="col-md-3 offset-md-2">
-                               <h4>{{ _("IRC") }}</h4>
-
-                               <dl class="dl-horizontal">
-                                       <dt>{{ _("Channel") }}</dt>
-                                       <dd>#ipfire</dd>
-
-                                       <dt>{{ _("Server") }}</dt>
-                                       <dd>irc.freenode.net</dd>
-                               </dl>
-
-                               <p class="ac">
-                                       You can use any IRC client to connect to the server and channel
-                                       above or
-                                       <a href="//webchat.freenode.net/?channels=ipfire">
-                                               use a web client
-                                       </a>.
-                               </p>
-                       </div>
-               </div>
-       </section>
-</div>
-
-{% end block %}
index e608467ce8c1de02cf5b3ccd76568cd8c31934f7..37a00a1a4824b0ad9f33a5f0c5387e1815b66b3a 100644 (file)
@@ -101,7 +101,6 @@ class Application(tornado.web.Application):
                        (r"/news/(.*)", tornado.web.RedirectHandler, { "url" : "https://blog.ipfire.org/posts/{1}" }),
 
                        # Static Pages
-                       (r"/chat", StaticHandler, { "template" : "chat.html" }),
                        (r"/features", StaticHandler, { "template" : "features.html" }),
                        (r"/get-involved", StaticHandler, { "template" : "get-involved.html" }),
                        (r"/get-started", StaticHandler, { "template" : "get-started.html" }),