blob: 11d1a6cca371f13efaca465f1ab36f63493fe1da [file] [log] [blame]
#!/usr/bin/env python3
import sys
from utils import determine_content_security_policy_header
determine_content_security_policy_header()
sys.stdout.write(
'Content-Type: application/xhtml+xml\r\n\r\n'
'<?xml version="1.0" encoding="UTF-8"?>\n'
'<?xml-stylesheet type="text/xsl" href="http://127.0.0.1:8000/resources/redirect.py?code=307&amp;url=http%3A%2F%2Flocalhost%3A8000/security/contentSecurityPolicy/resources/alert-pass.xsl"?>\n'
'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n'
'<html xmlns="http://www.w3.org/1999/xhtml">\n'
'<head>\n'
'</head>\n'
'<body>\n'
'</body>\n'
'</html>\n'
)