Esempio n. 1
0
 def __init__(self, ambiguous_string, suggestions):
     Response.__init__(self, 400, '')
     self.ambiguous_string = ambiguous_string
     self.suggestions = suggestions
Esempio n. 2
0
 def __init__(self):
     Response.__init__(self, 403, '')
     self.html_template = 'templates/no-payins.html'
Esempio n. 3
0
 def __init__(self, email_address, reason, ts, details, ses_data=None):
     Response.__init__(self, 400, '')
     from liberapay.utils.emails import EmailError
     self.email_error = EmailError(email_address, reason, ts, details,
                                   ses_data)
Esempio n. 4
0
 def __init__(self, ambiguous_string, suggestions):
     Response.__init__(self, 400, '')
     self.ambiguous_string = ambiguous_string
     self.suggestions = suggestions
Esempio n. 5
0
 def __init__(self, *args, **kw):
     Response.__init__(self, 429, (
         "You have consumed your quota of admin actions. This isn't supposed "
         "to happen."))
Esempio n. 6
0
 def __init__(self):
     Response.__init__(self, 403, '')
     self.html_template = 'templates/log-in-required.html'
Esempio n. 7
0
 def __init__(self, *args, **kw):
     Response.__init__(self, self.code, '', **kw)
     self.lazy_body = self.msg
     self.args = args
Esempio n. 8
0
 def __init__(self):
     Response.__init__(self, 403, '')
     self.html_template = 'templates/sign-in-form.html'
Esempio n. 9
0
 def __init__(self, id, class_name):
     Response.__init__(self, 400, "Invalid %s ID: %r" % (class_name, id))
Esempio n. 10
0
 def __init__(self, *args, headers=None):
     Response.__init__(self, self.code, '', headers=headers)
     self.lazy_body = self.msg
     self.args = args
Esempio n. 11
0
 def __init__(self, *args, **kw):
     Response.__init__(self, 403, '', **kw)
     self.show_sign_in_form = True
Esempio n. 12
0
 def __init__(self):
     Response.__init__(self, 503, '')
Esempio n. 13
0
 def __init__(self, participant):
     Response.__init__(self, 410, '')
     self.closed_account = participant
Esempio n. 14
0
 def __init__(self, participant_id):
     Response.__init__(self, 429, '')
Esempio n. 15
0
 def __init__(self, *args, **kw):
     Response.__init__(self, 429, (
         "You have consumed your quota of admin actions. This isn't supposed "
         "to happen."
     ))
Esempio n. 16
0
 def __init__(self, participant_id):
     Response.__init__(self, 429, '')
     self.html_template = 'templates/exceptions/TooManyPasswordLogins.html'
Esempio n. 17
0
 def __init__(self):
     Response.__init__(self, 403, '')
     self.html_template = 'templates/no-payins.html'
Esempio n. 18
0
 def __init__(self, participant):
     Response.__init__(self, 410, '')
     self.closed_account = participant
     self.html_template = 'templates/exceptions/ClosedAccount.html'
Esempio n. 19
0
 def __init__(self):
     Response.__init__(self, 503, '')
     self.html_template = 'templates/no-db.html'
Esempio n. 20
0
 def __init__(self):
     Response.__init__(self, 403, '')
     self.html_template = 'templates/exceptions/LoginRequired.html'
Esempio n. 21
0
 def __init__(self, code, lazy_body, **kw):
     Response.__init__(self, code, '', **kw)
     self.lazy_body = lazy_body
Esempio n. 22
0
 def __init__(self):
     Response.__init__(self, 503, '')
     self.html_template = 'templates/exceptions/NeedDatabase.html'
Esempio n. 23
0
 def __init__(self):
     Response.__init__(self, 403, '')
     self.html_template = 'templates/log-in-required.html'
Esempio n. 24
0
 def __init__(self, id, class_name):
     Response.__init__(self, 400, "Invalid %s ID: %r" % (class_name, id))
Esempio n. 25
0
 def __init__(self):
     Response.__init__(self, 503, '')
     self.html_template = 'templates/no-db.html'
Esempio n. 26
0
 def __init__(self, code, lazy_body, **kw):
     Response.__init__(self, code, '', **kw)
     self.lazy_body = lazy_body
Esempio n. 27
0
 def __init__(self, *args, **kw):
     Response.__init__(self, self.code, '', **kw)
     self.lazy_body = self.msg
     self.args = args
Esempio n. 28
0
 def __init__(self, email_address, reason, ts, details, ses_data=None):
     Response.__init__(self, 400, '')
     self.html_template = 'templates/exceptions/EmailAddressIsBlacklisted.html'
     from liberapay.utils.emails import EmailError
     self.email_error = EmailError(email_address, reason, ts, details,
                                   ses_data)