-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathTODO
executable file
·34 lines (23 loc) · 997 Bytes
/
TODO
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
28
29
30
31
32
33
34
% TODOs may also be placed in source files.
Quick:
[ ] Make sure template tutorial mentions ./templates/ directory
[ ] Doc inconsistency (?)
[ ] Decorators/functions are None
[ ] Add solaris tutorial link in setup docs
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/')