diff roundup/web/NOTES.md @ 4926:355ce349df42 routing

routing: Serve static files through proper routing in main() instead of exception in determine_context() 
author anatoly techtonik <techtonik@gmail.com>
date Wed, 20 Aug 2014 13:43:22 +0300
parents 35dc9191394d
children
line wrap: on
line diff
--- a/roundup/web/NOTES.md	Wed Aug 20 13:37:34 2014 +0300
+++ b/roundup/web/NOTES.md	Wed Aug 20 13:43:22 2014 +0300
@@ -32,7 +32,7 @@
 
 ### Router
 
-Status for Roundup URL map check:
+Roundup URL map check for backward compatibility:
 
     [ ] check urlpath values for
       [ ] example.com
@@ -65,12 +65,14 @@
 
     /_file/(.*) 
       StaticFileHandler
-       [ ] /_file
-       [ ] /_file/
-       [ ] /_file/name
+       [x] /_file       - 500 TypeError: join()
+       [x] /_file/      - 404
+       [x] /_file/name  - 200 from STATIC_FILES or
+                              TEMPLATES
     /@@file/(.*)
       StaticFileHandler
-       [ ] /@@file
-       [ ] /@@file/
-       [ ] /@@file/name
+       [x] /@@file      - 500 TypeError: join()
+       [x] /@@file/     - 404
+       [x] /@@file/name - 200 from STATIC_FILES or
+                              TEMPLATES 
 

Roundup Issue Tracker: http://roundup-tracker.org/