1. 30 Apr, 2020 1 commit
  2. 29 Apr, 2020 1 commit
  3. 27 Apr, 2020 3 commits
  4. 26 Apr, 2020 2 commits
  5. 24 Apr, 2020 8 commits
  6. 23 Apr, 2020 13 commits
  7. 22 Apr, 2020 10 commits
  8. 15 Apr, 2020 2 commits
    • Thomas Guillem's avatar
      storage/curl: fix path comparison when the server escapes differently · b18074f8
      Thomas Guillem authored
      Unescape the base path and the path coming from the server (href) to fix the
      comparison when the server uses different escaped characters.
      
      The outputted name need to be unescaped. Doing that before or after the
      HrefToEscapedName() call should not change the current behavior.
      b18074f8
    • Thomas Guillem's avatar
      storage/curl: fix href when file has a '&' char · 3d8067a0
      Thomas Guillem authored
      If the file name is "Hello & bye", 3 CharacterData events will be sent with the
      State::HREF state:
       - "Hello%20"
       - "&"
       - "%20bye"
      
      Reproduced with files hosted on an apache2 DAV server: 2.4.38-3+deb10u3.
      3d8067a0