Remove old release tarballs and redirect previous urls to github

This commit is contained in:
Ben Darnell 2010-07-22 16:50:59 -07:00
parent 22f452569c
commit d90ba2e0da
4 changed files with 11 additions and 0 deletions

View File

@ -4,6 +4,12 @@ runtime: python
api_version: 1
handlers:
- url: /static/tornado-0.1.tar.gz
script: website.py
- url: /static/tornado-0.2.tar.gz
script: website.py
- url: /static/
static_dir: static

Binary file not shown.

Binary file not shown.

View File

@ -52,6 +52,11 @@ settings = {
}
application = tornado.wsgi.WSGIApplication([
(r"/([a-z]*)", ContentHandler),
(r"/static/tornado-0.1.tar.gz", tornado.web.RedirectHandler,
dict(url="http://github.com/downloads/facebook/tornado/tornado-0.1.tar.gz")),
(r"/static/tornado-0.2.tar.gz", tornado.web.RedirectHandler,
dict(url="http://github.com/downloads/facebook/tornado/tornado-0.2.tar.gz")),
], **settings)