An error occurred fetching the project authors.
  1. 02 Jan, 2013 1 commit
  2. 04 Dec, 2012 1 commit
  3. 26 Nov, 2012 1 commit
  4. 26 Jun, 2012 1 commit
  5. 04 Jun, 2012 2 commits
  6. 28 May, 2012 2 commits
  7. 22 May, 2012 1 commit
    • Russ Cox's avatar
      undo CL 6112054 / 2eec2501961c · 3d03ec88
      Russ Cox authored
      Now that we've fixed the Expect: test, this CL should be okay.
      
      ««« original CL description
      net/http: revert 97d027b3aa68
      
      Revert the following change set:
      
              changeset:   13018:97d027b3aa68
              user:        Gustavo Niemeyer <gustavo@niemeyer.net>
              date:        Mon Apr 23 22:00:16 2012 -0300
              summary:     net/http: allow clients to disable keep-alive
      
      This broke a test on Windows 64 and somebody else
      will have to check.
      
      R=golang-dev, r
      CC=golang-dev
      https://golang.org/cl/6112054
      »»»
      
      Fixes #3540.
      
      R=golang-dev, bradfitz
      CC=golang-dev
      https://golang.org/cl/6228046
      3d03ec88
  8. 25 Apr, 2012 1 commit
    • Gustavo Niemeyer's avatar
      net/http: revert 97d027b3aa68 · 733b51d9
      Gustavo Niemeyer authored
      Revert the following change set:
      
              changeset:   13018:97d027b3aa68
              user:        Gustavo Niemeyer <gustavo@niemeyer.net>
              date:        Mon Apr 23 22:00:16 2012 -0300
              summary:     net/http: allow clients to disable keep-alive
      
      This broke a test on Windows 64 and somebody else
      will have to check.
      
      R=golang-dev, r
      CC=golang-dev
      https://golang.org/cl/6112054
      733b51d9
  9. 24 Apr, 2012 1 commit
  10. 12 Mar, 2012 1 commit
  11. 17 Feb, 2012 1 commit
    • Russ Cox's avatar
      net/url: API · b27bd42a
      Russ Cox authored
      Convert cryptotype to general go1rename fix.
      Add os.Exec -> syscall.Exec fix along with new
      URL fixes.
      
      Fixes #2946.
      
      R=golang-dev, r, dsymonds
      CC=golang-dev
      https://golang.org/cl/5672072
      b27bd42a
  12. 30 Jan, 2012 1 commit
  13. 26 Jan, 2012 2 commits
  14. 25 Jan, 2012 1 commit
  15. 17 Jan, 2012 1 commit
    • Gustavo Niemeyer's avatar
      net/url: cleaned up URL interface (v2) · dafd9f0b
      Gustavo Niemeyer authored
      Duplicated fields from URL were dropped so that its behavior
      is simple and expected when being stringified and when being
      operated by packages like http. Most of the preserved fields
      are in unencoded form, except for RawQuery which continues to
      exist and be more easily handled via url.Query().
      
      The RawUserinfo field was also replaced since it wasn't practical
      to use and had limitations when operating with empty usernames
      and passwords which are allowed by the RFC. In its place the
      Userinfo type was introduced and made accessible through the
      url.User and url.UserPassword functions.
      
      What was previous built as:
      
              url.URL{RawUserinfo: url.EncodeUserinfo("user", ""), ...}
      
      Is now built as:
      
              url.URL{User: url.User("user"), ...}
      
      R=rsc, bradfitz, gustavo
      CC=golang-dev
      https://golang.org/cl/5498076
      dafd9f0b
  16. 12 Jan, 2012 1 commit
  17. 09 Nov, 2011 1 commit
  18. 08 Nov, 2011 1 commit
  19. 04 Nov, 2011 4 commits
  20. 03 Nov, 2011 1 commit
    • Rob Pike's avatar
      net: renamings · de03d502
      Rob Pike authored
      This is Go 1 package renaming CL #3.
      This one merely moves the source; the import strings will be
      changed after the next weekly release.
      This one moves pieces into net.
      
      http -> net/http
      http/cgi -> net/http/cgi
      http/fcgi -> net/http/fcgi
      http/pprof -> net/http/pprof
      http/httptest -> net/http/httptest
      mail -> net/mail
      rpc -> net/rpc
      rpc/jsonrpc -> net/rpc/jsonrpc
      smtp -> net/smtp
      url -> net/url
      
      Also remove rand (now math/rand) from NOTEST - it has a test.
      
      The only edits are in Makefiles and deps.bash.
      
      R=golang-dev, bradfitz
      CC=golang-dev
      https://golang.org/cl/5335048
      de03d502
  21. 02 Nov, 2011 1 commit
  22. 24 Oct, 2011 1 commit
  23. 14 Oct, 2011 1 commit
  24. 12 Oct, 2011 1 commit
  25. 19 Sep, 2011 1 commit
  26. 15 Sep, 2011 2 commits
  27. 23 Aug, 2011 1 commit
    • Brad Fitzpatrick's avatar
      http: add MaxBytesReader to limit request body size · f0ef4f47
      Brad Fitzpatrick authored
      This adds http.MaxBytesReader, similar to io.LimitReader,
      but specific to http, and for preventing a class of DoS
      attacks.
      
      This also makes the 10MB ParseForm limit optional (if
      not already set by a MaxBytesReader), documents it,
      and also adds "PUT" as a valid verb for parsing forms
      in the request body.
      
      Improves issue 2093 (DoS protection)
      Fixes #2165 (PUT form parsing)
      
      R=golang-dev, adg
      CC=golang-dev
      https://golang.org/cl/4921049
      f0ef4f47
  28. 18 Aug, 2011 2 commits
  29. 17 Aug, 2011 1 commit
    • Rob Pike's avatar
      url: new package · 1d8f822c
      Rob Pike authored
      This is just moving the URL code from package http into its own package,
      which has been planned for a while.
      Besides clarity, this also breaks a nascent dependency cycle the new template
      package was about to introduce.
      
      Add a gofix module, url, and use it to generate changes outside http and url.
      
      Sadness about the churn, gladness about some of the naming improvements.
      
      R=dsymonds, bradfitz, rsc, gustavo, r
      CC=golang-dev
      https://golang.org/cl/4893043
      1d8f822c
  30. 10 Aug, 2011 1 commit
  31. 27 Jul, 2011 1 commit
  32. 21 Jul, 2011 1 commit