diff --git a/server-ca/payment.py b/server-ca/payment.py index 6caa44aeb..fd13f95af 100755 --- a/server-ca/payment.py +++ b/server-ca/payment.py @@ -9,7 +9,6 @@ import web, redis urls = ( '/([a-f0-9]{10})', 'shortform', - '/([a-f0-9]{64})', 'form', '/submit=([a-f0-9]{64})', 'payment' ) @@ -24,31 +23,6 @@ class shortform(object): with open("index.html","r") as f: return f.read() % expanded -class form(object): - def GET(self, what): - web.header("Content-type", "text/html") - return """ - -
-
- A payment of 17.00 simoleons is due now. -
- In order to process this payment, please pretend to enter a 16-digit credit-card - number below, and then click the Submit Payment button. -
-
- This payment will appear on your - credit card statement as TRUSTIFIABLE CERTIFICATE SERVICES. - - """ % what - def hexdigit(s): return s in "0123456789abcdef"