Fix mime types add json debugging

This commit is contained in:
Tim Bentley 2013-09-19 18:05:07 +01:00
parent 539ed55777
commit 870a232e4b
1 changed files with 10 additions and 2 deletions

View File

@ -175,6 +175,14 @@ class HttpRouter(object):
"""
if self.path == '/favicon.ico':
return
###########
print(self.headers['content-type'])
if self.headers['content-type'] == 'application/json':
length = int(self.headers['content-length'])
postvars = parse_qs(self.rfile.read(length), keep_blank_values=1)
for var in postvars:
print(var.decode("utf-8"))
##############
if not hasattr(self, 'auth'):
self.initialise()
function, args = self.process_http_request(self.path)
@ -348,13 +356,13 @@ class HttpRouter(object):
elif ext == '.css':
self.send_header('Content-type', 'text/css')
elif ext == '.js':
self.send_header('Content-type', 'application/x-javascript')
self.send_header('Content-type', 'application/javascript')
elif ext == '.jpg':
self.send_header('Content-type', 'image/jpeg')
elif ext == '.gif':
self.send_header('Content-type', 'image/gif')
elif ext == '.ico':
self.send_header('Content-type', 'image/ico')
self.send_header('Content-type', 'image/x-icon')
elif ext == '.png':
self.send_header('Content-type', 'image/png')
else: