This commit is contained in:
GitHub Merge Button 2011-07-02 10:16:47 -07:00
commit f168ac9938
3 changed files with 8 additions and 3 deletions

1
.gitignore vendored
View File

@ -21,3 +21,4 @@ MANIFEST
.coverage
.tox
.DS_Store
.idea/*

View File

@ -167,3 +167,9 @@ class MultiPartParser(BaseParser):
{'detail': 'multipart parse error - %s' % unicode(exc)})
return django_parser.parse()
DEFAULT_PARSERS = ( JSONParser,
FormParser,
MultiPartParser )
if YAMLParser:
DEFAULT_PARSERS += (YAMLParser,)

View File

@ -44,9 +44,7 @@ class View(ResourceMixin, RequestMixin, ResponseMixin, AuthMixin, DjangoView):
"""
List of parsers the resource can parse the request with.
"""
parsers = ( parsers.JSONParser,
parsers.FormParser,
parsers.MultiPartParser )
parsers = parsers.DEFAULT_PARSERS
"""
List of all authenticating methods to attempt.