summaryrefslogtreecommitdiff
path: root/admin/serve-doc
blob: 9c1bfb44c799f40c72037f234ae3825a13537cc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/python
import SimpleHTTPServer
import SocketServer
import os
import sys

path = os.path.dirname(sys.argv[0])
os.chdir(path)
os.chdir('..')
os.chdir('build-doc/output/html')

class ReusingTCPServer(SimpleHTTPServer.SimpleHTTPRequestHandler):
    allow_reuse_address = True

    def send_head(self):
        # horrible kludge because SimpleHTTPServer is buggy wrt
        # slash-redirecting of requests with query arguments, and will
        # redirect to /foo?q=bar/ -- wrong slash placement
        self.path = self.path.split('?', 1)[0]
        return SimpleHTTPServer.SimpleHTTPRequestHandler.send_head(self)

httpd = SocketServer.TCPServer(
    ("", 8080),
    ReusingTCPServer,
    )
try:
    httpd.serve_forever()
except KeyboardInterrupt:
    pass