A problem occurred in a Python script. Here is the sequence of
function calls leading up to the error, in the order they occurred.
/usr/lib/python2.7/dist-packages/flup/server/fcgi_base.py in handler(self=<flup.server.fcgi.WSGIServer object>, req=<flup.server.fcgi_base.Request object>) |
1116 try:
|
1117 try:
|
=> 1118 result = self.application(environ, start_response)
|
1119 try:
|
1120 for data in result:
|
result = None, self = <flup.server.fcgi.WSGIServer object>, self.application = <werkzeug.wsgi.SharedDataMiddleware object>, environ = {'CONTENT_LENGTH': '0', 'CONTEXT_DOCUMENT_ROOT': '/usr/share/moin/server/moin.fcgi/', 'CONTEXT_PREFIX': '/', 'DOCUMENT_ROOT': '/webspace/wiki.libsdl.org', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'HTTP_ACCEPT_LANGUAGE': 'de,en-US;q=0.7,en;q=0.3', 'HTTP_CONNECTION': 'close', 'HTTP_HOST': 'wiki.libsdl.org', 'HTTP_REFERER': 'http://wiki.libsdl.org/SDL_Init?highlight=%28%5C...Cb%29%7C%28CategoryEnum%29%7C%28CategoryStruct%29', ...}, start_response = <function start_response> |
/usr/lib/python2.7/dist-packages/werkzeug/wsgi.py in __call__(self=<werkzeug.wsgi.SharedDataMiddleware object>, environ={'CONTENT_LENGTH': '0', 'CONTEXT_DOCUMENT_ROOT': '/usr/share/moin/server/moin.fcgi/', 'CONTEXT_PREFIX': '/', 'DOCUMENT_ROOT': '/webspace/wiki.libsdl.org', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'HTTP_ACCEPT_LANGUAGE': 'de,en-US;q=0.7,en;q=0.3', 'HTTP_CONNECTION': 'close', 'HTTP_HOST': 'wiki.libsdl.org', 'HTTP_REFERER': 'http://wiki.libsdl.org/SDL_Init?highlight=%28%5C...Cb%29%7C%28CategoryEnum%29%7C%28CategoryStruct%29', ...}, start_response=<function start_response>) |
577 break
|
578 if file_loader is None or not self.is_allowed(real_filename):
|
=> 579 return self.app(environ, start_response)
|
580
|
581 guessed_type = mimetypes.guess_type(real_filename)
|
self = <werkzeug.wsgi.SharedDataMiddleware object>, self.app = <MoinMoin.wsgiapp.Application object>, environ = {'CONTENT_LENGTH': '0', 'CONTEXT_DOCUMENT_ROOT': '/usr/share/moin/server/moin.fcgi/', 'CONTEXT_PREFIX': '/', 'DOCUMENT_ROOT': '/webspace/wiki.libsdl.org', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'HTTP_ACCEPT_LANGUAGE': 'de,en-US;q=0.7,en;q=0.3', 'HTTP_CONNECTION': 'close', 'HTTP_HOST': 'wiki.libsdl.org', 'HTTP_REFERER': 'http://wiki.libsdl.org/SDL_Init?highlight=%28%5C...Cb%29%7C%28CategoryEnum%29%7C%28CategoryStruct%29', ...}, start_response = <function start_response> |
/usr/lib/python2.7/dist-packages/MoinMoin/wsgiapp.py in __call__(self=<MoinMoin.wsgiapp.Application object>, environ={'CONTENT_LENGTH': '0', 'CONTEXT_DOCUMENT_ROOT': '/usr/share/moin/server/moin.fcgi/', 'CONTEXT_PREFIX': '/', 'DOCUMENT_ROOT': '/webspace/wiki.libsdl.org', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'HTTP_ACCEPT_LANGUAGE': 'de,en-US;q=0.7,en;q=0.3', 'HTTP_CONNECTION': 'close', 'HTTP_HOST': 'wiki.libsdl.org', 'HTTP_REFERER': 'http://wiki.libsdl.org/SDL_Init?highlight=%28%5C...Cb%29%7C%28CategoryEnum%29%7C%28CategoryStruct%29', ...}, start_response=<function start_response>) |
280 request = self.Request(environ)
|
281 context = init(request)
|
=> 282 response = run(context)
|
283 context.clock.stop('total')
|
284 except HTTPException, e:
|
response undefined, global run = <function run>, context = <AllContext ['AllContext']> |
/usr/lib/python2.7/dist-packages/MoinMoin/web/utils.py in check_surge_protect(request=<AllContext ['AllContext']>, kick=False) |
120 data.append("%s\t%d\t%s\t%s" % (id, t, action, surge_indicator))
|
121 data = "\n".join(data)
|
=> 122 cache.update(data)
|
123 except StandardError:
|
124 pass
|
cache = <MoinMoin.caching.CacheEntry instance>, cache.update = <bound method CacheEntry.update of <MoinMoin.caching.CacheEntry instance>>, data = '207.241.226.233\t1409670789\tall\t\n207.241.226.233\t1409670789\tshow\t' |