To avoid further errors this is a manual copy of the current
authorJohn Bowler <jbowler@nslu2-linux.org>
Tue, 2 Aug 2005 00:38:07 +0000 (00:38 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Tue, 2 Aug 2005 00:38:07 +0000 (00:38 +0000)
classes/tinderclient.bbclass (which includes the de-reverted change) from
org.openembedded.dev

classes/tinderclient.bbclass

index 3c88b2a..168b7de 100644 (file)
@@ -1,5 +1,5 @@
 def tinder_tz_offset(off):
-    # get the offset. Either it is a number like
+    # get the offset.n minutes Either it is a number like
     # +200 or -300
     try:
         return int(off)
@@ -42,9 +42,16 @@ def tinder_send_http(da, header, log):
     import httplib, urllib
     cont = "\n%s\n%s" % ( header, log)
     headers = {"Content-type": "multipart/form-data" }
+    print cont
 
     conn = httplib.HTTPConnection(data.getVar('TINDER_HOST',da, True))
     conn.request("POST", data.getVar('TINDER_URL',da,True), cont, headers)
+
+    resp = conn.getresponse()
+    print resp.status, resp.reason
+    data = resp.read()
+    print data
+
     conn.close()