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 = {'DOCUMENT_ROOT': '/home/httpd/paranoia.allenvarney.com/', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'HTTP_ACCEPT_ENCODING': 'x-gzip, gzip, deflate', 'HTTP_ACCEPT_LANGUAGE': 'en-us,en-gb,en;q=0.7,*;q=0.3', 'HTTP_HOST': 'paranoia.allenvarney.com', 'HTTP_USER_AGENT': 'CCBot/2.0', 'PATH': '/usr/local/bin:/usr/bin:/bin', 'PATH_INFO': '/FindPage', 'PATH_TRANSLATED': '/home/httpd/paranoia.allenvarney.com/moin.fcgi/FindPage', ...}, start_response = <function start_response> |
| /usr/lib/python2.7/dist-packages/werkzeug/wsgi.py in __call__(self=<werkzeug.wsgi.SharedDataMiddleware object>, environ={'DOCUMENT_ROOT': '/home/httpd/paranoia.allenvarney.com/', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'HTTP_ACCEPT_ENCODING': 'x-gzip, gzip, deflate', 'HTTP_ACCEPT_LANGUAGE': 'en-us,en-gb,en;q=0.7,*;q=0.3', 'HTTP_HOST': 'paranoia.allenvarney.com', 'HTTP_USER_AGENT': 'CCBot/2.0', 'PATH': '/usr/local/bin:/usr/bin:/bin', 'PATH_INFO': '/FindPage', 'PATH_TRANSLATED': '/home/httpd/paranoia.allenvarney.com/moin.fcgi/FindPage', ...}, start_response=<function start_response>) |
409 break
|
410 if file_loader is None or not self.is_allowed(real_filename):
|
=> 411 return self.app(environ, start_response)
|
412
|
413 guessed_type = mimetypes.guess_type(real_filename)
|
| self = <werkzeug.wsgi.SharedDataMiddleware object>, self.app = <MoinMoin.wsgiapp.Application object>, environ = {'DOCUMENT_ROOT': '/home/httpd/paranoia.allenvarney.com/', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'HTTP_ACCEPT_ENCODING': 'x-gzip, gzip, deflate', 'HTTP_ACCEPT_LANGUAGE': 'en-us,en-gb,en;q=0.7,*;q=0.3', 'HTTP_HOST': 'paranoia.allenvarney.com', 'HTTP_USER_AGENT': 'CCBot/2.0', 'PATH': '/usr/local/bin:/usr/bin:/bin', 'PATH_INFO': '/FindPage', 'PATH_TRANSLATED': '/home/httpd/paranoia.allenvarney.com/moin.fcgi/FindPage', ...}, start_response = <function start_response> |
| /usr/lib/python2.7/dist-packages/MoinMoin/wsgiapp.py in __call__(self=<MoinMoin.wsgiapp.Application object>, environ={'DOCUMENT_ROOT': '/home/httpd/paranoia.allenvarney.com/', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'HTTP_ACCEPT_ENCODING': 'x-gzip, gzip, deflate', 'HTTP_ACCEPT_LANGUAGE': 'en-us,en-gb,en;q=0.7,*;q=0.3', 'HTTP_HOST': 'paranoia.allenvarney.com', 'HTTP_USER_AGENT': 'CCBot/2.0', 'PATH': '/usr/local/bin:/usr/bin:/bin', 'PATH_INFO': '/FindPage', 'PATH_TRANSLATED': '/home/httpd/paranoia.allenvarney.com/moin.fcgi/FindPage', ...}, 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/wsgiapp.py in dispatch(request=<AppRequest 5631 bytes [200 OK]>, context=<AllContext ['AllContext']>, action_name='show') |
134 # 2. handle action
|
135 else:
|
=> 136 response = handle_action(context, pagename, action_name)
|
137 if isinstance(response, Context):
|
138 response = response.request
|
| response undefined, global handle_action = <function handle_action>, context = <AllContext ['AllContext']>, pagename = u'FindPage', action_name = 'show' |
| /usr/lib/python2.7/dist-packages/MoinMoin/Page.py in send_page(self=<MoinMoin.Page.Page object>, **keywords={'content_only': 0, 'count_hit': 1, 'print_mode': 0}) |
1305 format_args=pi['formatargs'],
|
1306 do_cache=do_cache,
|
=> 1307 start_line=pi['lines'])
|
1308
|
1309 # check for pending footnotes
|
| start_line undefined, pi = {'acl': <MoinMoin.security.AccessControlList instance>, 'format': u'wiki', 'formatargs': u'', 'language': u'en', 'lines': 5} |
| /usr/lib/python2.7/dist-packages/MoinMoin/Page.py in send_page_content(self=<MoinMoin.Page.Page object>, request=<AllContext ['AllContext']>, body=u'\n<<AdvancedSearch>>\n\nYou can use regular express...for cohesive parts of a wiki (see HelpOnMacros).\n', format=u'wiki', format_args=u'', do_cache=1, **kw={'start_line': 5}) |
1399 try:
|
1400 code = self.loadCache(request)
|
=> 1401 self.execute(request, parser, code)
|
1402 except Exception, e:
|
1403 if not is_cache_exception(e):
|
| self = <MoinMoin.Page.Page object>, self.execute = <bound method Page.execute of <MoinMoin.Page.Page object>>, request = <AllContext ['AllContext']>, parser = <MoinMoin.parser.text_moin_wiki.Parser instance>, code = <code object <module> at 0xa139770, file "FindPage", line 2> |
| /usr/lib/python2.7/dist-packages/MoinMoin/Page.py in execute(self=<MoinMoin.Page.Page object>, request=<AllContext ['AllContext']>, parser=<MoinMoin.parser.text_moin_wiki.Parser instance>, code=<code object <module> at 0xa139770, file "FindPage", line 2>) |
1430 __file__ = os.path.join(MoinMoin.__loader__.archive, 'dummy')
|
1431 try:
|
=> 1432 exec code
|
1433 except "CacheNeedsUpdate": # convert the exception
|
1434 raise Exception("CacheNeedsUpdate")
|
| code = <code object <module> at 0xa139770, file "FindPage", line 2> |