blob: f1bee3ae7580a26cfc594125f2fe4473b275c1f0 [file] [log] [blame]
#!/usr/bin/env python3
import os
import sys
uri = os.environ.get('REQUEST_URI', '')
sys.stdout.write(
'Content-Type: text/javascript\r\n'
'Expires: Thu, 01 Dec 2003 16:00:00 GMT\r\n'
'Cache-Control: no-store, no-cache, must-revalidate\r\n'
'Pragma: no-cache\r\n\r\n'
'document.write(\'{}\');'.format(uri)
)