summaryrefslogtreecommitdiff
path: root/mirror-failure.py
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2007-02-06 15:04:47 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2007-02-06 15:04:47 +0100
commita577a938d4b957b5462a830b21d509fa754b33d5 (patch)
treefd3ab848593a0818ae5be30508b6a469557d9a1a /mirror-failure.py
parent78a9df8a467d9f240df81c236f233a38f450e60a (diff)
parent39e1be0ff93e3084b7cb98b6a7d0c272a8b296b0 (diff)
* merged the apt--mirror branch
Diffstat (limited to 'mirror-failure.py')
-rw-r--r--mirror-failure.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/mirror-failure.py b/mirror-failure.py
new file mode 100644
index 000000000..e7d2bbf54
--- /dev/null
+++ b/mirror-failure.py
@@ -0,0 +1,23 @@
+# File: cgihttpserver-example-1.py
+
+import CGIHTTPServer
+import BaseHTTPServer
+
+class Handler(CGIHTTPServer.CGIHTTPRequestHandler):
+ #cgi_directories = ["/cgi"]
+ def do_POST(self):
+ print "do_POST"
+ #print self.command
+ #print self.path
+ #print self.headers
+ print self.client_address
+ data = self.rfile.read(int(self.headers["content-length"]))
+ print data
+ self.wfile.write("200 Ok\n");
+
+PORT = 8000
+
+httpd = BaseHTTPServer.HTTPServer(("", PORT), Handler)
+print "serving at port", PORT
+httpd.serve_forever()
+