From: richard Date: Fri, 12 Oct 2001 02:23:26 +0000 (+0000) Subject: Didn't clean up after myself :) X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=9d530329da1f03a4016081f6f386dffac0d8c58d;p=roundup.git Didn't clean up after myself :) git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@300 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup-server b/roundup-server index 8fb6a55..090e46c 100755 --- a/roundup-server +++ b/roundup-server @@ -20,7 +20,7 @@ Based on CGIHTTPServer in the Python library. -$Id: roundup-server,v 1.14 2001-10-12 02:20:32 richard Exp $ +$Id: roundup-server,v 1.15 2001-10-12 02:23:26 richard Exp $ """ import sys @@ -185,14 +185,6 @@ class RoundupRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler): do_POST = run_cgi -user = None - -def nobody_uid(): - """Internal routine to get nobody's uid""" - global user - if user: - return user - def usage(message=''): if message: message = 'Error: %s\n'%message print '''%sUsage: @@ -268,6 +260,9 @@ if __name__ == '__main__': # # $Log: not supported by cvs2svn $ +# Revision 1.14 2001/10/12 02:20:32 richard +# server now handles setuid'ing much better +# # Revision 1.13 2001/10/05 02:23:24 richard # . roundup-admin create now prompts for property info if none is supplied # on the command-line.