Remove old release tarballs and redirect previous urls to github
This commit is contained in:
parent
22f452569c
commit
d90ba2e0da
|
@ -4,6 +4,12 @@ runtime: python
|
||||||
api_version: 1
|
api_version: 1
|
||||||
|
|
||||||
handlers:
|
handlers:
|
||||||
|
- url: /static/tornado-0.1.tar.gz
|
||||||
|
script: website.py
|
||||||
|
|
||||||
|
- url: /static/tornado-0.2.tar.gz
|
||||||
|
script: website.py
|
||||||
|
|
||||||
- url: /static/
|
- url: /static/
|
||||||
static_dir: static
|
static_dir: static
|
||||||
|
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -52,6 +52,11 @@ settings = {
|
||||||
}
|
}
|
||||||
application = tornado.wsgi.WSGIApplication([
|
application = tornado.wsgi.WSGIApplication([
|
||||||
(r"/([a-z]*)", ContentHandler),
|
(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)
|
], **settings)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue