From: Michael Tremer Date: Wed, 22 Aug 2018 07:37:03 +0000 (+0100) Subject: blog: Allow dots in tags X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8d7487d22a25a858c646a9af560a4b997df437fa;p=ipfire.org.git blog: Allow dots in tags Signed-off-by: Michael Tremer --- diff --git a/src/web/__init__.py b/src/web/__init__.py index a3543b6a..1f5fb492 100644 --- a/src/web/__init__.py +++ b/src/web/__init__.py @@ -119,7 +119,7 @@ class Application(tornado.web.Application): (r"/authors/(\w+)", blog.AuthorHandler), (r"/post/(.*)", blog.PostHandler), (r"/search", blog.SearchHandler), - (r"/tags/([0-9a-z\-]+)", blog.TagHandler), + (r"/tags/([0-9a-z\-\.]+)", blog.TagHandler), (r"/years/([0-9]+)", blog.YearHandler), # RSS Feed