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