aboutsummaryrefslogtreecommitdiffstats
path: root/flywheel/resource.py
diff options
context:
space:
mode:
authortom christie tom@tomchristie.com2011-01-27 19:24:58 +0000
committertom christie tom@tomchristie.com2011-01-27 19:24:58 +0000
commite227c38b330988d71087759d13303215561808c6 (patch)
tree78c008e0b977bdb025f9d2d3d340124f66c253b0 /flywheel/resource.py
parentd38f7f3ef7ab803a8b9babda8f6be989f378429e (diff)
downloaddjango-rest-framework-e227c38b330988d71087759d13303215561808c6.tar.bz2
Removed is_error in Response
Diffstat (limited to 'flywheel/resource.py')
-rw-r--r--flywheel/resource.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/flywheel/resource.py b/flywheel/resource.py
index c15f01ed..36f49792 100644
--- a/flywheel/resource.py
+++ b/flywheel/resource.py
@@ -12,11 +12,10 @@ from itertools import chain
# TODO: Display user login in top panel: http://stackoverflow.com/questions/806835/django-redirect-to-previous-page-after-login
# TODO: Figure how out references and named urls need to work nicely
# TODO: POST on existing 404 URL, PUT on existing 404 URL
-# TODO: Remove is_error throughout
#
+# NEXT: Validators to become generic, forms to move out of Resource into FormValidator
+# NEXT: Permissions to become generic, UserAllowed, Throttling
# NEXT: Exceptions on func() -> 500, tracebacks emitted if settings.DEBUG
-# NEXT: Generic content form
-# NEXT: Remove self.blah munging (Add a ResponseContext object?)
# NEXT: Caching cleverness
# NEXT: Test non-existent fields on ModelResources
#