Example #1
0
 def __init__(self, ambiguous_string, suggestions):
     Response.__init__(self, 400, '')
     self.ambiguous_string = ambiguous_string
     self.suggestions = suggestions
Example #2
0
 def __init__(self):
     Response.__init__(self, 403, '')
     self.html_template = 'templates/no-payins.html'
Example #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)
Example #4
0
 def __init__(self, ambiguous_string, suggestions):
     Response.__init__(self, 400, '')
     self.ambiguous_string = ambiguous_string
     self.suggestions = suggestions
Example #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."))
Example #6
0
 def __init__(self):
     Response.__init__(self, 403, '')
     self.html_template = 'templates/log-in-required.html'
Example #7
0
 def __init__(self, *args, **kw):
     Response.__init__(self, self.code, '', **kw)
     self.lazy_body = self.msg
     self.args = args
Example #8
0
 def __init__(self):
     Response.__init__(self, 403, '')
     self.html_template = 'templates/sign-in-form.html'
Example #9
0
 def __init__(self, id, class_name):
     Response.__init__(self, 400, "Invalid %s ID: %r" % (class_name, id))
Example #10
0
 def __init__(self, *args, headers=None):
     Response.__init__(self, self.code, '', headers=headers)
     self.lazy_body = self.msg
     self.args = args
Example #11
0
 def __init__(self, *args, **kw):
     Response.__init__(self, 403, '', **kw)
     self.show_sign_in_form = True
Example #12
0
 def __init__(self):
     Response.__init__(self, 503, '')
Example #13
0
 def __init__(self, participant):
     Response.__init__(self, 410, '')
     self.closed_account = participant
Example #14
0
 def __init__(self, participant_id):
     Response.__init__(self, 429, '')
Example #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."
     ))
Example #16
0
 def __init__(self, participant_id):
     Response.__init__(self, 429, '')
     self.html_template = 'templates/exceptions/TooManyPasswordLogins.html'
Example #17
0
 def __init__(self):
     Response.__init__(self, 403, '')
     self.html_template = 'templates/no-payins.html'
Example #18
0
 def __init__(self, participant):
     Response.__init__(self, 410, '')
     self.closed_account = participant
     self.html_template = 'templates/exceptions/ClosedAccount.html'
Example #19
0
 def __init__(self):
     Response.__init__(self, 503, '')
     self.html_template = 'templates/no-db.html'
Example #20
0
 def __init__(self):
     Response.__init__(self, 403, '')
     self.html_template = 'templates/exceptions/LoginRequired.html'
Example #21
0
 def __init__(self, code, lazy_body, **kw):
     Response.__init__(self, code, '', **kw)
     self.lazy_body = lazy_body
Example #22
0
 def __init__(self):
     Response.__init__(self, 503, '')
     self.html_template = 'templates/exceptions/NeedDatabase.html'
Example #23
0
 def __init__(self):
     Response.__init__(self, 403, '')
     self.html_template = 'templates/log-in-required.html'
Example #24
0
 def __init__(self, id, class_name):
     Response.__init__(self, 400, "Invalid %s ID: %r" % (class_name, id))
Example #25
0
 def __init__(self):
     Response.__init__(self, 503, '')
     self.html_template = 'templates/no-db.html'
Example #26
0
 def __init__(self, code, lazy_body, **kw):
     Response.__init__(self, code, '', **kw)
     self.lazy_body = lazy_body
Example #27
0
 def __init__(self, *args, **kw):
     Response.__init__(self, self.code, '', **kw)
     self.lazy_body = self.msg
     self.args = args
Example #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)