#15262: generic views don't populate request.POST when handling PUT ---------------------------+------------------------------------------------ Reporter: kenth | Owner: nobody Status: new | Milestone: Component: Generic views | Version: 1.2 Keywords: | Triage Stage: Unreviewed Has patch: 0 | ---------------------------+------------------------------------------------ The new CBVs handle PUT as a synonym for POST, but django.http doesn't populate the request.POST & request.FILES for any verb except POST. I believe that PUT is being translated as an empty POST, which is not what I would have expected.
The CBV handling of PUT is in several places in django/views/generic/edit.py both in redirecting the put method definition and the get_form_kwargs() method. -- Ticket URL: <http://code.djangoproject.com/ticket/15262> Django <http://code.djangoproject.com/> The Web framework for perfectionists with deadlines. -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.
