1. 03 Ara, 2015 1 kayıt (commit)
  2. 18 Kas, 2015 1 kayıt (commit)
  3. 23 Eki, 2015 1 kayıt (commit)
  4. 12 Eyl, 2015 1 kayıt (commit)
  5. 04 Eyl, 2015 1 kayıt (commit)
  6. 04 Agu, 2015 1 kayıt (commit)
  7. 13 Tem, 2015 1 kayıt (commit)
  8. 06 Şub, 2015 1 kayıt (commit)
  9. 20 Ock, 2015 1 kayıt (commit)
  10. 19 Ock, 2015 1 kayıt (commit)
  11. 30 Ara, 2014 1 kayıt (commit)
  12. 20 Kas, 2014 1 kayıt (commit)
  13. 03 Kas, 2014 2 kayıt (commit)
  14. 28 Eyl, 2014 1 kayıt (commit)
  15. 03 Agu, 2014 1 kayıt (commit)
  16. 06 Tem, 2014 1 kayıt (commit)
  17. 25 Haz, 2014 1 kayıt (commit)
    • Duncan Parkes's avatar
      Fixed #22799 -- Made GET and POST on HttpRequest QueryDicts, and FILES a MultiValueDict. · fd4ccd04
      Duncan Parkes yazdı
      Previously, GET, POST, and FILES on an HttpRequest were created in
      the __init__ method as dictionaries. This was not something you would
      usually notice causing trouble in production as you'd only see a
      WSGIRequest, but in testing using the test client, calling .getlist
      on GET, POST, or FILES for a request with no get/post data resulted in
      an AttributeError.
      
      Changed GET and POST on an HttpRequest object to be mutable
      QueryDicts (mutable because the Django tests, and probably many
      third party tests, were expecting it).
      fd4ccd04
  18. 07 Haz, 2014 1 kayıt (commit)
  19. 21 Mar, 2014 1 kayıt (commit)
  20. 09 Mar, 2014 1 kayıt (commit)
  21. 02 Şub, 2014 2 kayıt (commit)
  22. 23 Ara, 2013 1 kayıt (commit)
  23. 17 Ara, 2013 1 kayıt (commit)
    • Aymeric Augustin's avatar
      Removed superfluous models.py files. · 6e895f9e
      Aymeric Augustin yazdı
      Added comments in the three empty models.py files that are still needed.
      
      Adjusted the test runner to add applications corresponding to test
      labels to INSTALLED_APPS even when they don't have a models module.
      6e895f9e
  24. 16 Kas, 2013 1 kayıt (commit)
  25. 03 Kas, 2013 2 kayıt (commit)
  26. 02 Kas, 2013 2 kayıt (commit)
  27. 24 Eki, 2013 1 kayıt (commit)
  28. 23 Eki, 2013 1 kayıt (commit)
  29. 21 Eki, 2013 1 kayıt (commit)
  30. 19 Eki, 2013 1 kayıt (commit)
  31. 18 Eki, 2013 2 kayıt (commit)
  32. 08 Eki, 2013 1 kayıt (commit)
  33. 09 Eyl, 2013 1 kayıt (commit)
  34. 05 Eyl, 2013 1 kayıt (commit)
  35. 31 Tem, 2013 1 kayıt (commit)
    • Will Hardy's avatar
      Fixed #19987 -- Disabled host validation when DEBUG=True. · 1c3c21b3
      Will Hardy yazdı
      The documentation promises that host validation is disabled when
      DEBUG=True, that all hostnames are accepted. Domains not compliant with
      RFC 1034/1035 were however being validated, this validation has now been
      removed when DEBUG=True.
      
      Additionally, when DEBUG=False a more detailed SuspiciousOperation
      exception message is provided when host validation fails because the
      hostname is not RFC 1034/1035 compliant.
      1c3c21b3