From: Michael Tremer Date: Wed, 10 Oct 2018 10:52:46 +0000 (+0100) Subject: Drop chat page X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1f4400379e559d734af11bbb0ffb8cc6872eaac6;p=ipfire.org.git Drop chat page Signed-off-by: Michael Tremer --- diff --git a/Makefile.am b/Makefile.am index ef82a834..7b043ab6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 index 84fc2774..00000000 --- a/src/templates/static/chat.html +++ /dev/null @@ -1,71 +0,0 @@ -{% extends "../base.html" %} - -{% block title %}{{ _("Chat") }}{% end block %} - -{% block container %} -
-
-

{{ _("Chat") }}

- -
-
-

- On the IPFire channel, you will find people who can help you - with your questions about IPFire. -

-

- This is a good chance to meet people involved in the project - or just have a chat. -

-
-
- -
-
-

- - {{ _("Jabber") }} - -

- -
-
{{ _("Room") }}
-
ipfire
- -
{{ _("Server") }}
-
conference.ipfire.org
-
- -

- - - {{ _("Need a Jabber account?") }} - - -

-
- -
-

{{ _("IRC") }}

- -
-
{{ _("Channel") }}
-
#ipfire
- -
{{ _("Server") }}
-
irc.freenode.net
-
- -

- You can use any IRC client to connect to the server and channel - above or - - use a web client - . -

-
-
-
-
- -{% end block %} diff --git a/src/web/__init__.py b/src/web/__init__.py index e608467c..37a00a1a 100644 --- a/src/web/__init__.py +++ b/src/web/__init__.py @@ -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" }),