comparison roundup/scripts/roundup_server.py @ 1554:693b915041e6

we don't support HEAD
author Richard Jones <richard@users.sourceforge.net>
date Wed, 26 Mar 2003 04:54:59 +0000
parents 21a80a8dfc6d
children 8b0bd0b897e6
comparison
equal deleted inserted replaced
1553:323ff980c2dd 1554:693b915041e6
14 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, 14 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
15 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. 15 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
16 # 16 #
17 """ HTTP Server that serves roundup. 17 """ HTTP Server that serves roundup.
18 18
19 $Id: roundup_server.py,v 1.20 2003-02-26 05:05:56 richard Exp $ 19 $Id: roundup_server.py,v 1.21 2003-03-26 04:54:59 richard Exp $
20 """ 20 """
21 21
22 # python version check 22 # python version check
23 from roundup import version_check 23 from roundup import version_check
24 24
91 self.wfile.write("<pre>") 91 self.wfile.write("<pre>")
92 self.wfile.write(cgi.escape(s.getvalue())) 92 self.wfile.write(cgi.escape(s.getvalue()))
93 self.wfile.write("</pre>\n") 93 self.wfile.write("</pre>\n")
94 sys.stdin = save_stdin 94 sys.stdin = save_stdin
95 95
96 do_GET = do_POST = do_HEAD = send_head = run_cgi 96 do_GET = do_POST = run_cgi
97 97
98 def index(self): 98 def index(self):
99 ''' Print up an index of the available trackers 99 ''' Print up an index of the available trackers
100 ''' 100 '''
101 self.send_response(200) 101 self.send_response(200)

Roundup Issue Tracker: http://roundup-tracker.org/