tox fixes

This commit is contained in:
Peter Bieringer 2025-03-06 08:52:54 +01:00
parent 1d0ff9e84a
commit 76281ad1ff

View file

@ -207,7 +207,7 @@ def _serve_traversable(
elif path == "/.web/infcloud/config.js": elif path == "/.web/infcloud/config.js":
# adjust on the fly default config.js of InfCloud installation # adjust on the fly default config.js of InfCloud installation
# logger.debug("Adjust on-the-fly default InfCloud config.js in served page: %r", path) # logger.debug("Adjust on-the-fly default InfCloud config.js in served page: %r", path)
answer = answer.replace(b"location.pathname.replace(RegExp('/+[^/]+/*(index\.html)?$'),'')+", b"location.pathname.replace(RegExp('/\.web\.infcloud/(index\.html)?$'),'')+") answer = answer.replace(b"location.pathname.replace(RegExp('/+[^/]+/*(index\\.html)?$'),'')+", b"location.pathname.replace(RegExp('/\\.web\\.infcloud/(index\\.html)?$'),'')+")
answer = answer.replace(b"'/caldav.php/',", b"'/',") answer = answer.replace(b"'/caldav.php/',", b"'/',")
answer = answer.replace(b"settingsAccount: true,", b"settingsAccount: false,") answer = answer.replace(b"settingsAccount: true,", b"settingsAccount: false,")
elif path == "/.web/infcloud/main.js": elif path == "/.web/infcloud/main.js":