Skip to content
Snippets Groups Projects
  1. May 21, 2024
    • Antoine Lambert's avatar
      replay: Rework code for removing externals · 66300455
      Antoine Lambert authored
      Removing an external path from the reconstructed filesystem can
      be tedious due to numerous edge cases where externals are defined
      in different directories but some of their paths overlap.
      
      Previous code was not properly handling all cases so rework it
      to ensure it does and add a new test with a new edge case.
      66300455
  2. May 15, 2024
  3. Mar 29, 2024
  4. Mar 14, 2024
  5. Mar 12, 2024
  6. Mar 11, 2024
  7. Feb 20, 2024
  8. Feb 05, 2024
  9. Jan 16, 2024
  10. Jan 03, 2024
  11. Dec 21, 2023
  12. Dec 19, 2023
  13. Dec 05, 2023
  14. Dec 03, 2023
  15. Nov 28, 2023
  16. Nov 22, 2023
  17. Nov 20, 2023
  18. Nov 16, 2023
  19. Nov 15, 2023
  20. Oct 26, 2023
  21. Oct 19, 2023
  22. Jun 09, 2023
  23. Jun 05, 2023
  24. Jun 01, 2023
  25. May 31, 2023
    • Antoine Lambert's avatar
      svn_repo: Handle anonymous credentials in get_svn_repo · 2491efd9
      Antoine Lambert authored
      Some remote subversion repositories in the wild require to use anonymous
      credentials to obtain a read access. Those credentials can be either
      'anonymous/' or 'anonymous/anonymous' in most of the cases.
      
      Previously, it was required to add the credentials in the origin URL using
      basic authentication syntax. While such URL can be provided to the Save Code
      Now service, it cannot when svn URLs are coming from a lister.
      
      To workaround this, try to connect using these anonymous credentials in the
      get_svn_repo function when a connection error happens.
      
      This should also simplify the submission of Save Code Now requests when
      submitting a subversion origin that requires anonymous credentials.
      2491efd9
    • Antoine Lambert's avatar
      svn_repo: Optimize export of a remote subversion sub-path · 2a073bc8
      Antoine Lambert authored
      Previously when exporting a sub-path of a remote subversion repository
      over the network, the full repository was exported and the local path
      targeting the sub-path was returned. This is no really optimal in terms
      of network bandwidth if the repository filesystem is large but it was
      implemented like this to ensure all tests related to sub-paths export
      were passing regardless the subversion loader class used: either SvnLoader
      or SvnLoaderFromRemoteDump.
      
      After some analysis, it turned out that it was possible to avoid exporting
      the full repository but only the request sub-path when using the SvnLoader
      class. So modify the SvnRepo class to ensure that behavior and save some
      network bandwdith when dealing with a large repository.
      
      These changes in the SvnRepo class induce some in the replay module to ensure
      all tests still pass and it also enables to remove a no longer needed optional
      parameter to the class constructor.
      2a073bc8
Loading