Code

frontends/roundup.cgi got out of sync with the roundup.cgi.Client API
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 19 Apr 2010 00:39:01 +0000 (00:39 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 19 Apr 2010 00:39:01 +0000 (00:39 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4480 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
frontends/roundup.cgi

index d14888eb05ab3356708d4b4f66392c0f14ebeced..3be78b0409f550080a13d9c388a4662774b592f8 100644 (file)
@@ -9,6 +9,7 @@ Fixed:
 - xmlrpc handling of unicode characters and binary values, see
   http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/10040
   thanks to Hauke Duden for reporting these.
+- frontends/roundup.cgi got out of sync with the roundup.cgi.Client API
 
 
 2010-02-23 1.5.0
index d9e6213a00c023f4fec4dc0b800efc362b364eec..7228105e5f105cf441089408d9a2e182bb7b9568 100755 (executable)
@@ -120,6 +120,7 @@ class RequestWrapper:
     '''Used to make the CGI server look like a BaseHTTPRequestHandler
     '''
     def __init__(self, wfile):
+        self.rfile = sys.stdin
         self.wfile = wfile
     def write(self, data):
         self.wfile.write(data)