From: Rico Hoppe Date: Sun, 16 Apr 2023 13:36:12 +0000 (+0000) Subject: changed support links to help X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d20009184658f7e01c08b5b12fb554af8c96cd84;p=ipfire.org.git changed support links to help --- diff --git a/Makefile.am b/Makefile.am index 18949f11..77c7ce49 100644 --- a/Makefile.am +++ b/Makefile.am @@ -299,7 +299,7 @@ templates_people_modulesdir = $(templates_peopledir)/modules templates_static_DATA = \ src/templates/static/features.html \ src/templates/static/legal.html \ - src/templates/static/support.html + src/templates/static/help.html templates_staticdir = $(templatesdir)/static diff --git a/src/templates/base.html b/src/templates/base.html index 5cb2778c..215a2b63 100644 --- a/src/templates/base.html +++ b/src/templates/base.html @@ -58,7 +58,7 @@ -{% end block %} diff --git a/src/web/__init__.py b/src/web/__init__.py index 8254593c..f06be78f 100644 --- a/src/web/__init__.py +++ b/src/web/__init__.py @@ -151,11 +151,12 @@ class Application(tornado.web.Application): # Static Pages (r"/features", StaticHandler, { "template" : "features.html" }), (r"/legal", StaticHandler, { "template" : "legal.html" }), - (r"/support", StaticHandler, { "template" : "support.html" }), + (r"/help", StaticHandler, { "template" : "help.html" }), # Handle old pages that have moved elsewhere (r"/imprint", tornado.web.RedirectHandler, { "url" : "/legal" }), (r"/(de|en)/(.*)", LangCompatHandler), + (r"/support", tornado.web.RedirectHandler, { "url" : "/help"}), # Export arbitrary error pages (r"/error/([45][0-9]{2})", base.ErrorHandler),