From 45ceee319c70522d821f65505735bc514d123df5 Mon Sep 17 00:00:00 2001 From: tv Date: Mon, 22 Aug 2011 12:47:47 +0200 Subject: shirts: kh, hazard & tv als gez markiert --- cholerab/shirts/bestellliste | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/cholerab/shirts/bestellliste b/cholerab/shirts/bestellliste index d097ff7d..e23a963f 100644 --- a/cholerab/shirts/bestellliste +++ b/cholerab/shirts/bestellliste @@ -1,5 +1,6 @@ -tv: 2 M - 1 S + GEZ +tv: 2 M j + 1 S j ulrich: 1 M felix: 2 M 1 S @@ -7,8 +8,8 @@ Lassulus: 2 M Pfleidi: 1 L Tensai: 1 L Momo: 1 XXL -hadez: 1 L - 1 M +hadez: 1 L j + 1 M j Phil: 1 S Lukas: 1 M Jan: 1 2XL @@ -18,6 +19,6 @@ Lotho: 1 XL Sascha: 1 XL Moritz: 1 M RIPE: 1 XL -kh: 1 L +kh: 1 L j miefda: 1 L 1 XL -- cgit v1.2.3 From 0208772d37c18b72c41557e6f4af04c7448839b7 Mon Sep 17 00:00:00 2001 From: tv Date: Mon, 22 Aug 2011 13:47:25 +0200 Subject: ovh soapi domainCapabilities: initial commit --- ovh/soapi/domainCapabilities | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 ovh/soapi/domainCapabilities diff --git a/ovh/soapi/domainCapabilities b/ovh/soapi/domainCapabilities new file mode 100755 index 00000000..edce3f0d --- /dev/null +++ b/ovh/soapi/domainCapabilities @@ -0,0 +1,24 @@ +#!/usr/bin/python + +from os import environ +import pprint +from SOAPpy import WSDL + +soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl') + +username = environ['KREBS_OVH_USER'] +password = environ['KREBS_OVH_PASS'] + +#login +session = soap.login(username, password, 'de', 0) +print "login successfull" + +#domainCapabilities +result = soap.domainCapabilities(session, 'krebsco.de') +print "domainCapabilities successfull" +pp = pprint.PrettyPrinter(indent=4) +pp.pprint(result) # your code here ... + +#logout +soap.logout(session) +print "logout successfull" -- cgit v1.2.3 From 93be79e976ffd53bcae2f6f9870a486e8fbd8b2d Mon Sep 17 00:00:00 2001 From: tv Date: Mon, 22 Aug 2011 13:52:46 +0200 Subject: ovh soapi domainList: initial commit --- ovh/soapi/domainList | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 ovh/soapi/domainList diff --git a/ovh/soapi/domainList b/ovh/soapi/domainList new file mode 100755 index 00000000..3f829ebe --- /dev/null +++ b/ovh/soapi/domainList @@ -0,0 +1,24 @@ +#!/usr/bin/python + +from os import environ +import pprint +from SOAPpy import WSDL + +soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl') + +username = environ['KREBS_OVH_USER'] +password = environ['KREBS_OVH_PASS'] + +#login +session = soap.login(username, password, 'de', 0) +print "login successfull" + +#domainHostList +result = soap.domainList(session) +print "domainList successfull" +pp = pprint.PrettyPrinter(indent=4) +pp.pprint(result) # your code here ... + +#logout +soap.logout(session) +print "logout successfull" -- cgit v1.2.3 From febfbe5c4f2e5481b12d0142c08dd45a28cbf4b1 Mon Sep 17 00:00:00 2001 From: tv Date: Mon, 22 Aug 2011 14:58:14 +0200 Subject: ovh soapi zoneEntryList: initial commit --- ovh/soapi/zoneEntryList | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 ovh/soapi/zoneEntryList diff --git a/ovh/soapi/zoneEntryList b/ovh/soapi/zoneEntryList new file mode 100755 index 00000000..7c032462 --- /dev/null +++ b/ovh/soapi/zoneEntryList @@ -0,0 +1,24 @@ +#!/usr/bin/python + +from os import environ +import pprint +from SOAPpy import WSDL + +soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl') + +username = environ['KREBS_OVH_USER'] +password = environ['KREBS_OVH_PASS'] + +#login +session = soap.login(username, password, 'de', 0) +print "login successfull" + +#zoneEntryList +result = soap.zoneEntryList(session, 'krebsco.de') +print "zoneEntryList successfull" +pp = pprint.PrettyPrinter(indent=4) +pp.pprint(result) # your code here ... + +#logout +soap.logout(session) +print "logout successfull" -- cgit v1.2.3 From 963b1ab3b05651afeec350e054a258595d067e26 Mon Sep 17 00:00:00 2001 From: tv Date: Mon, 22 Aug 2011 14:58:33 +0200 Subject: ovh soapi Makefile: initial commit Unfortunately the latest stable SOAPpy is broken, so we have to resort to the latest stable SOAPpy from SVN^_^ --- .gitignore | 2 ++ ovh/soapi/Makefile | 25 +++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 ovh/soapi/Makefile diff --git a/.gitignore b/.gitignore index 290de6b0..c948e1a0 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,5 @@ a.out /bin/ /node/src /node/out +/ovh/soapi/src +/ovh/soapi/SOAPpy diff --git a/ovh/soapi/Makefile b/ovh/soapi/Makefile new file mode 100644 index 00000000..6a4a3a6b --- /dev/null +++ b/ovh/soapi/Makefile @@ -0,0 +1,25 @@ +.PHONY: all install +all: select-target + +exes := $(shell \ + find . -mindepth 1 -maxdepth 1 -type f -executable -exec basename \{\} \;) + +target_exes := $(addprefix ../../bin/,$(exes)) + +install: $(target_exes) + +../../bin/%: % SOAPpy + ln -vsnf ../ovh/soapi/$* $@ + +src: + mkdir $@ + +src/SOAPpy: src + cd $< && \ + svn co https://pywebsvcs.svn.sourceforge.net/svnroot/pywebsvcs/trunk/SOAPpy + +src/SOAPpy/build/lib/SOAPpy: src/SOAPpy + cd $< && python setup.py build + +SOAPpy: src/SOAPpy/build/lib/SOAPpy + ln -snf $< -- cgit v1.2.3