blob: a7b5454f16c79fec16e2275c0931aefa956563fb [file] [log] [blame]
jcgregorio2d66d4f2006-02-07 05:34:14 +00001#!/usr/bin/env python
2import os
3
4# Always returns an empty response body
5# and adds in the X-Method: header with the
6# method that was sent to the CGI
7
8print "Status: 200 Ok"
9print "Content-Type: text/plain"
10print ""
11print os.environ.get('HTTP_USER_AGENT', '')
12