mirror of
https://github.com/servo/servo.git
synced 2025-06-29 03:23:41 +01:00
7 lines
382 B
Python
7 lines
382 B
Python
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()
|