From 0d0e089cd4122cc5c22068c96a7d664e8fd2087a Mon Sep 17 00:00:00 2001 From: Myron Walker Date: Fri, 18 Mar 2022 21:16:03 -0700 Subject: [PATCH 1/3] Add an index_pages default list to SimpleHTTPRequestHandler and an optional constructor parameter that allows the default indexes pages list to be overridden. This makes it easy to set a new index page name without having to override send_head. --- Lib/http/server.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Lib/http/server.py b/Lib/http/server.py index a6100d4829751e..57eafc29b186e7 100644 --- a/Lib/http/server.py +++ b/Lib/http/server.py @@ -635,6 +635,7 @@ class SimpleHTTPRequestHandler(BaseHTTPRequestHandler): """ + index_pages = ["index.html", "index.htm"] server_version = "SimpleHTTP/" + __version__ extensions_map = _encodings_map_default = { '.gz': 'application/gzip', @@ -643,9 +644,11 @@ class SimpleHTTPRequestHandler(BaseHTTPRequestHandler): '.xz': 'application/x-xz', } - def __init__(self, *args, directory=None, **kwargs): + def __init__(self, *args, directory=None, index_pages=None, **kwargs): if directory is None: directory = os.getcwd() + if index_pages is not None: + self.index_pages = index_pages self.directory = os.fspath(directory) super().__init__(*args, **kwargs) @@ -689,7 +692,7 @@ def send_head(self): self.send_header("Content-Length", "0") self.end_headers() return None - for index in "index.html", "index.htm": + for index in self.index_pages: index = os.path.join(path, index) if os.path.exists(index): path = index From e166db0c449715d929ef5591e289fe7a2cbb5e10 Mon Sep 17 00:00:00 2001 From: "blurb-it[bot]" <43283697+blurb-it[bot]@users.noreply.github.com> Date: Sat, 19 Mar 2022 04:41:42 +0000 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=93=9C=F0=9F=A4=96=20Added=20by=20blu?= =?UTF-8?q?rb=5Fit.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../NEWS.d/next/Library/2022-03-19-04-41-42.bpo-47063.nwRfUo.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 Misc/NEWS.d/next/Library/2022-03-19-04-41-42.bpo-47063.nwRfUo.rst diff --git a/Misc/NEWS.d/next/Library/2022-03-19-04-41-42.bpo-47063.nwRfUo.rst b/Misc/NEWS.d/next/Library/2022-03-19-04-41-42.bpo-47063.nwRfUo.rst new file mode 100644 index 00000000000000..b8a07b587a6ecb --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-03-19-04-41-42.bpo-47063.nwRfUo.rst @@ -0,0 +1 @@ +This allows the default indexes pages used by SimpleHTTPRequestHandler in send_head to be overridden. This makes it easy to add custom index page names without having to write a custom override of send_head. From 32035b748ad09b5d9d607cfa515ad5195888226f Mon Sep 17 00:00:00 2001 From: Ethan Furman Date: Thu, 23 Jun 2022 11:42:01 -0700 Subject: [PATCH 3/3] update NEWS entry --- .../next/Library/2022-03-19-04-41-42.bpo-47063.nwRfUo.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/NEWS.d/next/Library/2022-03-19-04-41-42.bpo-47063.nwRfUo.rst b/Misc/NEWS.d/next/Library/2022-03-19-04-41-42.bpo-47063.nwRfUo.rst index b8a07b587a6ecb..b889d3c6520753 100644 --- a/Misc/NEWS.d/next/Library/2022-03-19-04-41-42.bpo-47063.nwRfUo.rst +++ b/Misc/NEWS.d/next/Library/2022-03-19-04-41-42.bpo-47063.nwRfUo.rst @@ -1 +1 @@ -This allows the default indexes pages used by SimpleHTTPRequestHandler in send_head to be overridden. This makes it easy to add custom index page names without having to write a custom override of send_head. +Add an index_pages parameter to support using non-default index page names.