Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 823:a0d7a64d8325
Urgent Fix. Drag End function uses clientX mouse. Fixes rogue movement after drop on OSX.
author | Nicholas Jillings <nicholas.jillings@eecs.qmul.ac.uk> |
---|---|
date | Mon, 23 Nov 2015 15:48:07 +0000 |
parents | 9c579fc05a09 |
children |
line wrap: on
line source
import SimpleHTTPServer import SocketServer PORT = 8080 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler httpd = SocketServer.TCPServer(("", PORT), Handler) print "serving at port", PORT httpd.serve_forever()