diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/XMLHttpRequest/resources/last-modified.py')
-rw-r--r-- | tests/wpt/web-platform-tests/XMLHttpRequest/resources/last-modified.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/wpt/web-platform-tests/XMLHttpRequest/resources/last-modified.py b/tests/wpt/web-platform-tests/XMLHttpRequest/resources/last-modified.py new file mode 100644 index 00000000000..4f3a14c7341 --- /dev/null +++ b/tests/wpt/web-platform-tests/XMLHttpRequest/resources/last-modified.py @@ -0,0 +1,7 @@ +def main(request, response): + import datetime, os + srcpath = os.path.join(os.path.dirname(__file__), "well-formed.xml") + srcmoddt = datetime.datetime.fromtimestamp(os.path.getmtime(srcpath)) + response.headers.set("Last-Modified", srcmoddt.strftime("%a, %d %b %Y %H:%M:%S GMT")) + response.headers.set("Content-Type", "application/xml") + return open(srcpath).read() |