configs  Check-in [6e6b3b4a73]

Overview
Comment:bin/element-web: Force to Python 3.10
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 6e6b3b4a7341855d253746a1bcd1681fc651a295b32cfb6a197db3785c1ddb30
User & Date: js on 2023-11-26 23:22:24
Other Links: manifest | tags
Context
2023-12-24
22:39
ssh/config: Use AES256-GCM to mitigate Terrapin check-in: 78125f567c user: js tags: trunk
2023-11-26
23:22
bin/element-web: Force to Python 3.10 check-in: 6e6b3b4a73 user: js tags: trunk
23:20
setup.sh: Set legacy theme check-in: e75925c32d user: js tags: trunk
Changes

Modified bin/element-web from [b3cd148fe7] to [2921fa2e0e].

1
2
3
4
5
6
7
8
#!/usr/bin/env python3
from http.server import HTTPServer, SimpleHTTPRequestHandler
import os
import socket
import ssl

class HTTPServer6(HTTPServer):
    address_family = socket.AF_INET6
|







1
2
3
4
5
6
7
8
#!/usr/bin/env python3.10
from http.server import HTTPServer, SimpleHTTPRequestHandler
import os
import socket
import ssl

class HTTPServer6(HTTPServer):
    address_family = socket.AF_INET6