aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorJohn Bowler <jbowler@nslu2-linux.org>2005-08-02 00:38:07 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-08-02 00:38:07 +0000
commit610be6834096a4bc2653bb157bf5b44bb0043fdc (patch)
tree5c477c0a0dab98b9bf6af799545e1653ad46dd99 /classes
parenta44d25351b7ed4ece60b04f2c79ea11f61cdcdaf (diff)
downloadopenembedded-610be6834096a4bc2653bb157bf5b44bb0043fdc.tar.gz
To avoid further errors this is a manual copy of the current
classes/tinderclient.bbclass (which includes the de-reverted change) from org.openembedded.dev
Diffstat (limited to 'classes')
-rw-r--r--classes/tinderclient.bbclass9
1 files changed, 8 insertions, 1 deletions
diff --git a/classes/tinderclient.bbclass b/classes/tinderclient.bbclass
index 3c88b2ac63..168b7dec4e 100644
--- a/classes/tinderclient.bbclass
+++ b/classes/tinderclient.bbclass
@@ -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()