A problem occurred in a Python script. Here is the sequence of
function calls leading up to the error, in the order they occurred.
| /srv/sycamore_base/Sycamore/support/wsgi_server/scgi_base.py in handler(self=<Sycamore.support.wsgi_server.scgi_fork.WSGIServer object at 0x92c210>, request=<Sycamore.support.wsgi_server.scgi_base.Request object at 0xe1af50>) |
427 self._appLock.acquire()
|
428 try:
|
429 result = self.application(environ, start_response)
|
430 try:
|
431 for data in result:
|
| result = None, self = <Sycamore.support.wsgi_server.scgi_fork.WSGIServer object at 0x92c210>, self.application = <function basic_handle_request at 0x930500>, environ = {'CONTENT_LENGTH': '0', 'DOCUMENT_ROOT': '/srv/sycamore_base/share/web/', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,text/xml;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_ACCEPT_ENCODING': 'gzip', 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'HTTP_CACHE_CONTROL': 'no-cache', 'HTTP_CONNECTION': 'close', 'HTTP_HOST': 'www.wikiparlament-rf.wikispot.org', ...}, start_response = <function start_response at 0xe2d578> |
| /srv/sycamore_base/Sycamore/request.py in basic_handle_request(env={'CONTENT_LENGTH': '0', 'DOCUMENT_ROOT': '/srv/sycamore_base/share/web/', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,text/xml;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_ACCEPT_ENCODING': 'gzip', 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'HTTP_CACHE_CONTROL': 'no-cache', 'HTTP_CONNECTION': 'close', 'HTTP_HOST': 'www.wikiparlament-rf.wikispot.org', ...}, start_response=<function start_response at 0xe2d578>) |
1256 return [compressed_content] # WSGI spec wants a list returned
|
1257 else:
|
1258 return req.output_buffer
|
1259 else:
|
1260 return RequestWSGI(env, start_response).run()
|
| global RequestWSGI = <class 'Sycamore.request.RequestWSGI'>, env = {'CONTENT_LENGTH': '0', 'DOCUMENT_ROOT': '/srv/sycamore_base/share/web/', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,text/xml;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_ACCEPT_ENCODING': 'gzip', 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'HTTP_CACHE_CONTROL': 'no-cache', 'HTTP_CONNECTION': 'close', 'HTTP_HOST': 'www.wikiparlament-rf.wikispot.org', ...}, start_response = <function start_response at 0xe2d578>, ).run undefined |
| /srv/sycamore_base/Sycamore/request.py in run(self=<Sycamore.request.RequestWSGI object at 0xe1afd0>) |
803 return self.finish()
|
804 elif (self.config.is_disabled and not
|
805 self.user.name in wikiacl.Group("Admin", self)):
|
806 self.write('<html><head>'
|
807 '<meta name="robots" content="noindex,follow"></head><body>')
|
| self = <Sycamore.request.RequestWSGI object at 0xe1afd0>, self.user undefined, wikiacl = <module 'Sycamore.wikiacl' from '/srv/sycamore_base/Sycamore/wikiacl.pyo'>, wikiacl.Group = <class 'Sycamore.wikiacl.Group'> |