comparison roundup/scripts/roundup_server.py @ 2593:9e1c4c932323 maint-0.7

merge from HEAD
author Richard Jones <richard@users.sourceforge.net>
date Tue, 20 Jul 2004 02:10:43 +0000
parents 200eb6e20351
children
comparison
equal deleted inserted replaced
2590:cc3726fc8830 2593:9e1c4c932323
15 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. 15 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
16 # 16 #
17 17
18 """Command-line script that runs a server over roundup.cgi.client. 18 """Command-line script that runs a server over roundup.cgi.client.
19 19
20 $Id: roundup_server.py,v 1.46.2.4 2004-06-21 04:56:34 richard Exp $ 20 $Id: roundup_server.py,v 1.46.2.5 2004-07-20 02:10:43 richard Exp $
21 """ 21 """
22 __docformat__ = 'restructuredtext' 22 __docformat__ = 'restructuredtext'
23 23
24 # python version check 24 # python version check
25 from roundup import version_check 25 from roundup import version_check
116 self.wfile.write("<pre>") 116 self.wfile.write("<pre>")
117 self.wfile.write(cgi.escape(s.getvalue())) 117 self.wfile.write(cgi.escape(s.getvalue()))
118 self.wfile.write("</pre>\n") 118 self.wfile.write("</pre>\n")
119 sys.stdin = save_stdin 119 sys.stdin = save_stdin
120 120
121 do_GET = do_POST = run_cgi 121 do_GET = do_POST = do_HEAD = run_cgi
122 122
123 def index(self): 123 def index(self):
124 ''' Print up an index of the available trackers 124 ''' Print up an index of the available trackers
125 ''' 125 '''
126 self.send_response(200) 126 self.send_response(200)

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