1. 2f0e5bf net/http: using errors.Is in fs error detection by Peng Gao · 3 years, 9 months ago
  2. 5d5f779 net/http: replace os.MkdirTemp with T.TempDir by ianwoolf · 3 years, 9 months ago
  3. a040ebe all: update references to symbols moved from io/ioutil to io by KimMachineGun · 3 years, 9 months ago
  4. 4f1b0a4 all: update to use os.ReadFile, os.WriteFile, os.CreateTemp, os.MkdirTemp by Russ Cox · 4 years, 2 months ago
  5. 1b09d43 all: update references to symbols moved from io/ioutil to io by Russ Cox · 4 years, 3 months ago
  6. 7211694 net/http: add FS to convert fs.FS to FileSystem by Russ Cox · 4 years, 6 months ago
  7. 7bb721b all: update references to symbols moved from os to io/fs by Russ Cox · 4 years, 6 months ago
  8. ef20f76b net/http: reject negative suffix-length Range:bytes=--N with 416 status code by Emmanuel T Odeke · 4 years, 4 months ago
  9. 5f5a556 net/http: refactor ResponseWriter.ReadFrom to permit splice on Linux by Paul Forgey · 4 years, 4 months ago
  10. ce81a8f net/http: fix panic with If-None-Match value in http.ServeContent by Marcus Weiner · 4 years, 7 months ago
  11. 7a5e0fe net/http: relax TestLinuxSendfile, trace all system calls, match n64:sendfile by Brad Fitzpatrick · 5 years ago
  12. 7ed973b net/http: don't panic serving dir in ServeFile with empty Request.URL.Path by Brad Fitzpatrick · 6 years ago
  13. 829c5df net/url, net/http: reject control characters in URLs by Brad Fitzpatrick · 6 years ago
  14. df8c2b9 net/http: correct subtle transposition of offset and whence in test by as · 7 years ago
  15. 2ba3fd4 net/http: relax the matching of strace output in test by Caio Marcelo de Oliveira Filho · 7 years ago
  16. 8cdd999 net/http: don't set Content-Type with empty body automatically by Tw · 8 years ago
  17. 6a7c4d6 net/http: check If-Range header when request method is HEAD by Joe Kyo · 7 years ago
  18. fab47f7 net/http: enable TestLinuxSendfile on mips64 by Vladimir Stefanovic · 8 years ago
  19. 2c1888b net/http: fix ineffective break in etag scanning by Daniel Martí · 8 years ago
  20. 34396ad net/http: Fix TestLinuxSendfile without strace permissions by Kenny Grant · 8 years ago
  21. 3b988eb net/http: use httptest.Server Client in tests by Johan Brandhorst · 8 years ago
  22. a610957 net/http: handle absolute paths in mapDirOpenError by Nathan Caza · 8 years ago
  23. ee60d39 net/http: improve handling of errors in Dir.Open by Nathan Caza · 8 years ago
  24. aeaa4c3 net/http: skip TestLinuxSendfile on mips64 for now by Brad Fitzpatrick · 8 years ago
  25. ff191dd net/http: maybe fix TestLinuxSendfile on mips64 by Brad Fitzpatrick · 8 years ago
  26. f9d406e net/http: deflake TestLinuxSendfile by Brad Fitzpatrick · 8 years ago
  27. cd670a6 net/http: speed up tests, use t.Parallel when it's safe by Brad Fitzpatrick · 8 years ago
  28. f386274 net/http: support If-Match in ServeContent by Dan Harrington · 8 years ago
  29. ad5d91c net/url: prefix relative paths containing ":" in the first segment with "./" by Kale Blankenship · 8 years ago
  30. aa9b3d7 net/http: send Content-Range if no byte range overlaps by Sina Siadat · 9 years ago
  31. e2b30e9 net/http: prepend ./ to directory list hrefs in FileServer by Salman Aljammaz · 8 years ago
  32. b09c274 net/http: fix TestLinuxSendfile on s390x by Michael Munday · 9 years ago
  33. ddcf8d4 net/http: redirect if the URL path is a dir & doesn't end in a slash by Mohit Agarwal · 9 years ago
  34. b2cf571 all: delete dead test code by Dominik Honnef · 9 years ago
  35. 9b67a5d net/http: add protections against misuse of ServeFile by Brad Fitzpatrick · 9 years ago
  36. c2ef005 net/http: run more tests in http2 mode by Brad Fitzpatrick · 9 years ago
  37. 5dd372b net/http: retry idempotent HTTP reqs on dead reused conns by Blake Gentry · 10 years ago
  38. eebf7d2 net/http: fixed TestLinuxSendfile for mips64 by Yao Zhang · 9 years ago
  39. a8645e2 net/http: use the correct error variable in serveFile by Brad Fitzpatrick · 9 years ago
  40. 25b0017 net/http: make FileServer sort directory entries by Dan Peterson · 9 years ago
  41. 5fa2d99 net/http: make ServeContent errors return more specific HTTP status codes by Brad Fitzpatrick · 10 years ago
  42. a0fb8f8 net/http: ignore the Unix epoch time in ServeContent by Brad Fitzpatrick · 10 years ago
  43. 474ce69 net/http: Fix Range off-by-one error by Jed Denlea · 10 years ago
  44. bb43124 net/http: don't call FileSystem.Open with unclean index.html path by Brad Fitzpatrick · 10 years ago
  45. c007ce8 build: move package sources from src/pkg to src by Russ Cox · 10 years ago[Renamed from src/pkg/net/http/fs_test.go]
  46. f5037ee net/http: make ServeContent support dates in If-Range headers by Brad Fitzpatrick · 10 years ago
  47. 26cc102 net/http: escape contents of the directory indexes generated by FileServer by Michael Kelly · 11 years ago
  48. 21e6b90 net/http: skip content-type sniffing if the header is explicitly unset. by Michael Piatek · 11 years ago
  49. d9f034d net/http: accept Content-Range for entire file by Russ Cox · 11 years ago
  50. 3abaf5c net/http: skip TestDirJoin on Windows, even if /etc/hosts exists by Shivakumar GN · 11 years ago
  51. d178c01 net/http: in ServeContent, don't seek on content until necessary by Brad Fitzpatrick · 12 years ago
  52. caf513a net/http: less flaky leaking goroutine test by Brad Fitzpatrick · 12 years ago
  53. e0fd6d0 net/http: deflake test Update #5005. by Dmitriy Vyukov · 12 years ago
  54. 65fcb39 net/http: fix a bunch of test leaks by Brad Fitzpatrick · 12 years ago
  55. 6a9e956 all: use t.Skip{,f} by Dave Cheney · 12 years ago
  56. 600de1f net/http: fix data race in test by Dmitriy Vyukov · 12 years ago
  57. 5d50dbc net/http: use r.Body.Close to close connection during TestServeFileFromCWD by Alex Brainman · 12 years ago
  58. a7743d7 net/http: add If-None-Match and If-Range support to ServeContent by Brad Fitzpatrick · 12 years ago
  59. 0bfa31e net/http: disable TestServeFileFromCWD test on windows by Alex Brainman · 12 years ago
  60. 538b212 net/http: don't allow zero byte in FileServer paths by Brad Fitzpatrick · 12 years ago
  61. 55cc1ff net/http: clean up fs tests a bit by Brad Fitzpatrick · 13 years ago
  62. f06b12f net/http: ignore malicious or dumb Range requests by Brad Fitzpatrick · 13 years ago
  63. fa6f9b4 net/http: support multiple byte ranges in ServeContent by Brad Fitzpatrick · 13 years ago
  64. 4596982 net/http: use index.html modtime (not directory) for If-Modified-Since by Brad Fitzpatrick · 13 years ago
  65. 3684ae9 net/http: make a test more paranoid & reliable on Windows, maybe. by Brad Fitzpatrick · 13 years ago
  66. 56069f0 os: delete os.EINVAL and so on by Rob Pike · 13 years ago
  67. 9578839 net/http: fix race in sendfile test by Brad Fitzpatrick · 13 years ago
  68. c210ddf net/http: make strace test more robust by Brad Fitzpatrick · 13 years ago
  69. adb1a6c net/http: more robust test by Brad Fitzpatrick · 13 years ago
  70. b8df361 net/http: add a Linux-only sendfile test by Brad Fitzpatrick · 13 years ago
  71. 4539d1f net/http: add ServeContent by Brad Fitzpatrick · 13 years ago
  72. 20f4385 os: turn FileStat.Sys into a method on FileInfo by Gustavo Niemeyer · 13 years ago
  73. 2ebf0de net/http: change test to use override param instead of chan. by David Symonds · 13 years ago
  74. 92686dd net/http: fix data race in test Fixes #2712. by Dmitriy Vyukov · 13 years ago
  75. 8dce57e os: new FileInfo, FileMode types + update tree by Russ Cox · 13 years ago
  76. 0b1bcf8 http: fix serving from CWD with http.ServeFile by Andrew Gerrand · 13 years ago
  77. 45e3bcb renaming_3: gofix -r go1pkgrename src/pkg/[m-z]* by Rob Pike · 13 years ago
  78. de03d50 net: renamings by Rob Pike · 13 years ago[Renamed from src/pkg/http/fs_test.go]
  79. c2049d2 src/pkg/[a-m]*: gofix -r error -force=error by Russ Cox · 13 years ago
  80. 1d8f822 url: new package by Rob Pike · 13 years ago
  81. 29df7bb http: add test to serve content in index.html by Yasuhiro Matsumoto · 13 years ago
  82. 8800f7c http: correct format flags when printing errors during tests by Alex Brainman · 13 years ago
  83. 3de6228 http: make serveFile redirects relative to work with StripPrefix by Andrew Balholm · 13 years ago
  84. 54045e6 pkg/http: fix a couple of error messages by Rob Pike · 13 years ago
  85. 3745716 http: let FileServer work when path doesn't begin with a slash by Brad Fitzpatrick · 13 years ago
  86. 8ba48fb fix build from e904b6784768 breakage by Brad Fitzpatrick · 13 years ago
  87. 2012290 http: fix Content-Type of file extension. by Yasuhiro Matsumoto · 13 years ago
  88. 19f7950 http: add FileSystem interface, make FileServer use it by Brad Fitzpatrick · 14 years ago
  89. 31c79c4 http: ServeFile shouldn't send Content-Length when Content-Encoding is set by Brad Fitzpatrick · 14 years ago
  90. 05a1b7e http: remove finalURL from Client.Get; move to Response by Brad Fitzpatrick · 14 years ago
  91. 81cfb4e http: fix FileServer's default text content type by Brad Fitzpatrick · 14 years ago
  92. b44dbff http: allow override of Content-Type for ServeFile by Andrew Gerrand · 14 years ago
  93. f88abda httptest: introduce TempServer, clean up tests by Brad Fitzpatrick · 14 years ago
  94. e0a2c5d http: introduce start of Client and ClientTransport by Brad Fitzpatrick · 14 years ago
  95. b8fa618 http: introduce Header type, implement with net/textproto by Petar Maymounkov · 14 years ago
  96. 49741f2 http: fix Content-Range and Content-Length in response by Clement Skau · 14 years ago
  97. aa9c213 http: ServeFile to handle Range header for partial requests by Andrew Gerrand · 14 years ago