1. 25 2月, 2019 1 次提交
    • W
      Polish · f2aa374b
      www 提交于
      Closes gh-22463
      f2aa374b
  2. 22 2月, 2019 1 次提交
  3. 15 2月, 2019 1 次提交
  4. 09 2月, 2019 1 次提交
  5. 05 2月, 2019 2 次提交
  6. 04 2月, 2019 2 次提交
  7. 31 1月, 2019 1 次提交
  8. 25 1月, 2019 2 次提交
  9. 21 1月, 2019 1 次提交
  10. 19 1月, 2019 1 次提交
  11. 08 1月, 2019 1 次提交
  12. 03 1月, 2019 1 次提交
    • R
      More accurate checks for presence of MediaType.ALL · 4b24bcb7
      Rossen Stoyanchev 提交于
      Typically a straight up equals as well as Collections#contains
      checks for MediaType.ALL is susceptible to the presence of
      media type parameters.
      
      This commits adds equalsTypeAndSubtype as well as an
      isPresentIn(Collection<MimeType>) methods to MimeType to faciliate
      with checks for MediaType.ALL.
      
      Issue: SPR-17550
      4b24bcb7
  13. 25 12月, 2018 1 次提交
  14. 13 12月, 2018 2 次提交
  15. 04 12月, 2018 2 次提交
  16. 27 11月, 2018 2 次提交
    • R
      Polish · 3eee118b
      Rossen Stoyanchev 提交于
      3eee118b
    • O
      Sanitize request fragment in ResourceUrlEncodingFilter · 959cf616
      Ondrej Kraus 提交于
      Prior to this change, ResourceUrlEncodingFilter would try to resolve
      the resource path using request URL without removing fragment first,
      whereas only paths should be used.
      
      This commit synchronizes behavior of ResourceUrlEncodingFilter with
      behavior of ResourceUrlProvider.
      
      Issue: SPR-17535
      959cf616
  17. 23 11月, 2018 1 次提交
  18. 22 11月, 2018 1 次提交
  19. 21 11月, 2018 3 次提交
  20. 19 11月, 2018 3 次提交
  21. 17 11月, 2018 2 次提交
  22. 13 11月, 2018 1 次提交
  23. 12 11月, 2018 1 次提交
  24. 06 11月, 2018 1 次提交
  25. 05 11月, 2018 1 次提交
  26. 30 10月, 2018 1 次提交
  27. 26 10月, 2018 2 次提交
  28. 25 10月, 2018 1 次提交
    • B
      Fix absolute paths when transforming resources · 2146e137
      Brian Clozel 提交于
      Prior to this commit, `ResourceTransformerSupport.toAbsolutePath`
      would call `StringUtils.applyRelativePath` in all cases. But this
      implementation is prepending the given path even if the relative path
      starts with `"/"`.
      
      This commit skips the entire operation if the given path is absolute,
      i.e. it starts with `"/"`.
      
      Issue: SPR-17432
      2146e137