From 8d48f4efaf1d9de08e9fc71ed48e2c3343aabec0 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 16 Jan 2011 12:58:14 +0100 Subject: [PATCH] www: Move /screenshots to /about as we have no screenshots atm. --- www/webapp/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/www/webapp/__init__.py b/www/webapp/__init__.py index dff38195..065dade3 100644 --- a/www/webapp/__init__.py +++ b/www/webapp/__init__.py @@ -63,6 +63,9 @@ class Application(tornado.web.Application): # Download sites (r"/downloads?", DownloadHandler), + # Handle old pages that have moved elsewhere + (r"/screenshots", tornado.web.RedirectHandler, { "url" : "/about" }), + # RSS feed (r"/news.rss", RSSNewsHandler), -- 2.47.3