1. 23 Nov, 2015 5 commits
  2. 22 Nov, 2015 1 commit
  3. 19 Nov, 2015 1 commit
  4. 18 Nov, 2015 1 commit
  5. 17 Nov, 2015 2 commits
  6. 16 Nov, 2015 5 commits
  7. 12 Nov, 2015 1 commit
  8. 11 Nov, 2015 8 commits
  9. 10 Nov, 2015 1 commit
  10. 09 Nov, 2015 5 commits
  11. 07 Nov, 2015 1 commit
  12. 05 Nov, 2015 1 commit
  13. 04 Nov, 2015 2 commits
  14. 02 Nov, 2015 3 commits
  15. 30 Oct, 2015 3 commits
    • Federico G. Schwindt's avatar
      Convert arguments to strings as well · 00bcc3ea
      Federico G. Schwindt authored
      This is consistent with what we do in other cases.
      00bcc3ea
    • Lasse Karstensen's avatar
      Test of commit hook. · acdaa4bd
      Lasse Karstensen authored
      acdaa4bd
    • Poul-Henning Kamp's avatar
      So one of those strange cornercases in HTTP/1 · 165f191d
      Poul-Henning Kamp authored
      If we send the backend a HTTP/1.0 request, and it doesn't have a
      Content-Length, it cannot use Chunked and must fall back to EOF.
      
      However, the protocol field in the response tells us what version
      backend *could* have used, not what it *does* use.
      
      So we can get a response with HTTP/1.1 and EOF, following HTTP/1.0
      semantics - because we asked for it.
      
      Most sensible backends avoid this, either by buffering and creation
      of a C-L or, smartly, returning "HTTP/1.0", even though that
      is strictly speaking against the apocrphal texts.
      
      Anyway, now we cope...
      
      Fixes: 	#1810
      165f191d