aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/content.py
diff options
context:
space:
mode:
Diffstat (limited to 'djangorestframework/content.py')
-rw-r--r--djangorestframework/content.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/djangorestframework/content.py b/djangorestframework/content.py
index dd40f8f1..fe1a56d9 100644
--- a/djangorestframework/content.py
+++ b/djangorestframework/content.py
@@ -49,6 +49,9 @@ class SocketFile(File):
class OverloadedContentMixin(ContentMixin):
"""HTTP request content behaviour that also allows arbitrary content to be tunneled in form data."""
+ #TODO: test PUT
+ #TODO: rewrite cleaner
+
"""The name to use for the content override field in the POST form."""
CONTENT_PARAM = '_content'
@@ -59,7 +62,7 @@ class OverloadedContentMixin(ContentMixin):
"""If the request contains content return a tuple of (content_type, content) otherwise return None.
Note that content_type may be None if it is unset."""
if not request.META.get('CONTENT_LENGTH', None) and not request.META.get('TRANSFER_ENCODING', None):
- return None
+ return None # TODO : Breaks, because determine_content should return a tuple.
content_type = request.META.get('CONTENT_TYPE', None)
if (request.method == 'POST' and self.CONTENT_PARAM and