summaryrefslogtreecommitdiff
path: root/test/methods/method_reflector.cgi
blob: ae55af8bf5d15ab11be3e18f7d5dd7c5bb4a6bef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python
import os

# Always returns an empty response body
# and adds in the X-Method: header with the
# method that was sent to the CGI

print "Status: 200 Ok"
print "X-Method: %s" % os.environ['REQUEST_METHOD']
print ""