comparison 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
comparison
equal deleted inserted replaced
4925:997fa47c92d5 4926:355ce349df42
30 needed for human readability. 30 needed for human readability.
31 31
32 32
33 ### Router 33 ### Router
34 34
35 Status for Roundup URL map check: 35 Roundup URL map check for backward compatibility:
36 36
37 [ ] check urlpath values for 37 [ ] check urlpath values for
38 [ ] example.com 38 [ ] example.com
39 [ ] example.com/ 39 [ ] example.com/
40 [ ] example.com/tracker 40 [ ] example.com/tracker
63 63
64 [ ] check url handling for static files 64 [ ] check url handling for static files
65 65
66 /_file/(.*) 66 /_file/(.*)
67 StaticFileHandler 67 StaticFileHandler
68 [ ] /_file 68 [x] /_file - 500 TypeError: join()
69 [ ] /_file/ 69 [x] /_file/ - 404
70 [ ] /_file/name 70 [x] /_file/name - 200 from STATIC_FILES or
71 TEMPLATES
71 /@@file/(.*) 72 /@@file/(.*)
72 StaticFileHandler 73 StaticFileHandler
73 [ ] /@@file 74 [x] /@@file - 500 TypeError: join()
74 [ ] /@@file/ 75 [x] /@@file/ - 404
75 [ ] /@@file/name 76 [x] /@@file/name - 200 from STATIC_FILES or
77 TEMPLATES
76 78

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