| Index: src/appengine/scripts/redirector.py
 | 
| diff --git a/src/appengine/scripts/redirector.py b/src/appengine/scripts/redirector.py
 | 
| index a145b761770deaf090cb922f6ef8b3a0d684a8e5..dec284f0b17580c84ddbc0675111255d13615238 100644
 | 
| --- a/src/appengine/scripts/redirector.py
 | 
| +++ b/src/appengine/scripts/redirector.py
 | 
| @@ -147,6 +147,10 @@ application = WSGIApplication(
 | 
|        defaults={'_uri': '/docs/dart-up-and-running/contents/ch02.html'}),
 | 
|      Route('/docs/dart-up-and-running/contents/ch04-tools-dartdoc.html', RedirectHandler,
 | 
|        defaults={'_uri': '/tools/docgen/'}),
 | 
| +    Route('/docs/dart-up-and-running/contents/ch04-tools-dart2js.html', RedirectHandler,
 | 
| +      defaults={'_uri': '/tools/dart2js/'}),
 | 
| +    Route('/docs/dart-up-and-running/contents/ch04-tools-dart-vm.html', RedirectHandler,
 | 
| +      defaults={'_uri': '/tools/dart-vm/'}),
 | 
|      Route('/docs/technical-overview/', RedirectHandler,
 | 
|        defaults={'_uri': '/docs/dart-up-and-running/contents/ch01.html'}),
 | 
|      Route('/downloads.html', RedirectHandler,
 | 
| 
 |