public
Description: a lightweight and simple python web framework
Homepage: http://brianreily.com/project/juno/
Clone URL: git://github.com/breily/juno.git
juno / TODO
100644 27 lines (18 sloc) 0.819 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
% TODOs may also be placed in source files.
 
Important:
 
[ ] Add authorization.
[ ] Write an intro tutorial (in progress)
 
 
Secondary:
    
[ ] Add other URL wildcards ('#' for numbers, '@' for letters)
[ ] Allow unnamed URL params
[ ] Allow URL parameters with the same name
[ ] Decide if '/foo/*:bar/' should match '/foo/'
[ ] Add functionality to dev server to automatically reload changed files (as
    in Werkzeug's run_with_reloader)
 
 
Bugs:
    
[ ] Bug: Flup servers are not sending status/headers correctly - they are simply
    being prepended to the content by Firefox (thus text/html is displayed as
    plain text)
[ ] Bug: For a url set like '/:foo/' and '/:foo/bar/', if '/quux/bar/' is
    requested then the first pattern will match, with foo being 'quux/bar'
    (Same with '/:foo/' and '/bar/:foo/')