A problem occurred in a Python script. Here is the
sequence of function calls leading up to the error, in the
order they occurred.
/home/beteigeuze/lib/python2.5/site-packages/MoinMoin/request/__init__.py
in run
(self=<MoinMoin.request.request_standalone.Request object at 0x92145ec>)
- 1304 self.page.send_page()
- 1305 else:
- 1306 handler(self.page.page_name, self)
- 1307
- 1308 # every action that didn't use to raise MoinMoinFinish must call this now:
- handler
= <function execute at 0x938772c>
- self
= <MoinMoin.request.request_standalone.Request object at 0x92145ec>
- self.page
= <MoinMoin.Page.Page object at 0x94605cc>
- self.page.page_name
= u'Artikel/OR/MSchV 24, 26, 27, 35, 60a.'
/home/beteigeuze/webapps/moinmoin/data/zgb/plugin/action/CreatePdfDocument.py
in execute
(pagename=u'Artikel/OR/MSchV 24, 26, 27, 35, 60a.', request=<MoinMoin.request.request_standalone.Request object at 0x92145ec>)
- 1768 self.valid_options[key][u'%d.0' % max] = self._(u'%d.0' % max)
- 1769
- 1770
- 1771 def execute(pagename, request):
- 1772 CreatePdfDocument(pagename, request).render()
- global
CreatePdfDocument
= <class zgb.plugin.action.CreatePdfDocument.CreatePdfDocument at 0x92b4b3c>
- pagename
= u'Artikel/OR/MSchV 24, 26, 27, 35, 60a.'
- request
= <MoinMoin.request.request_standalone.Request object at 0x92145ec>
- ).render undefined
/home/beteigeuze/webapps/moinmoin/data/zgb/plugin/action/CreatePdfDocument.py
in render
(self=<zgb.plugin.action.CreatePdfDocument.CreatePdfDocument instance at 0x946084c>)
- 1383 self.form[self.form_trigger] = '1'
- 1384 # Continue with super function
- 1385 ActionBase.render(self)
- 1386
- 1387
- global
ActionBase
= <class MoinMoin.action.ActionBase at 0x90b123c>
- ActionBase.render
= <unbound method ActionBase.render>
- self
= <zgb.plugin.action.CreatePdfDocument.CreatePdfDocument instance at 0x946084c>
/home/beteigeuze/lib/python2.5/site-packages/MoinMoin/action/__init__.py
in render
(self=<zgb.plugin.action.CreatePdfDocument.CreatePdfDocument instance at 0x946084c>)
- 202 elif self.form_trigger in form: # user hit the trigger button
- 203 if self.ticket_ok():
- 204 success, self.error = self.do_action()
- 205 else:
- 206 success = False
- success undefined
- self
= <zgb.plugin.action.CreatePdfDocument.CreatePdfDocument instance at 0x946084c>
- self.error
= ''
- self.do_action
= <bound method CreatePdfDocument.do_action of <zg...ocument.CreatePdfDocument instance at 0x946084c>>
/home/beteigeuze/webapps/moinmoin/data/zgb/plugin/action/CreatePdfDocument.py
in do_action
(self=<zgb.plugin.action.CreatePdfDocument.CreatePdfDocument instance at 0x946084c>)
- 1410 if self.form.has_key(u'generate_from_form') or self.form.has_key(u'preview'):
- 1411 self.update_values()
- 1412 return self.do_action_generate()
- 1413
- 1414 # Display a message with instructions.
- self
= <zgb.plugin.action.CreatePdfDocument.CreatePdfDocument instance at 0x946084c>
- self.do_action_generate
= <bound method CreatePdfDocument.do_action_genera...ocument.CreatePdfDocument instance at 0x946084c>>
/home/beteigeuze/webapps/moinmoin/data/zgb/plugin/action/CreatePdfDocument.py
in do_action_generate
(self=<zgb.plugin.action.CreatePdfDocument.CreatePdfDocument instance at 0x946084c>)
- 1471 """Create PDF document."""
- 1472 # Generate the HTML page using MoinMoin wiki engine.
- 1473 html = self.get_html()
- 1474 if html:
- 1475 if self.form.has_key('preview'):
- html undefined
- self
= <zgb.plugin.action.CreatePdfDocument.CreatePdfDocument instance at 0x946084c>
- self.get_html
= <bound method CreatePdfDocument.get_html of <zgb...ocument.CreatePdfDocument instance at 0x946084c>>
/home/beteigeuze/webapps/moinmoin/data/zgb/plugin/action/CreatePdfDocument.py
in get_html
(self=<zgb.plugin.action.CreatePdfDocument.CreatePdfDocument instance at 0x946084c>)
- 1551 newtitle = self.values['titletext']
- 1552 # Save page as HTML.
- 1553 newreq = RedirectOutputRequest(self.request)
- 1554 # Do not add edit information.
- 1555 # Add extra meta tags.
- newreq undefined
- global
RedirectOutputRequest
= <class 'zgb.plugin.action.CreatePdfDocument.RedirectOutputRequest'>
- self
= <zgb.plugin.action.CreatePdfDocument.CreatePdfDocument instance at 0x946084c>
- self.request
= <MoinMoin.request.request_standalone.Request object at 0x92145ec>
/home/beteigeuze/webapps/moinmoin/data/zgb/plugin/action/CreatePdfDocument.py
in __init__
(self=<zgb.plugin.action.CreatePdfDocument.RedirectOutputRequest object at 0x946070c>, req=<MoinMoin.request.request_standalone.Request object at 0x92145ec>, action='print')
- 372
- 373 self.req = req
- 374 RequestBase.__init__(self)
- 375
- 376 def run(self, rev = None):
- global
RequestBase
= <class 'MoinMoin.request.RequestBase'>
- RequestBase.__init__
= <unbound method RequestBase.__init__>
- self
= <zgb.plugin.action.CreatePdfDocument.RedirectOutputRequest object at 0x946070c>
/home/beteigeuze/lib/python2.5/site-packages/MoinMoin/request/__init__.py
in __init__
(self=<zgb.plugin.action.CreatePdfDocument.RedirectOutputRequest object at 0x946070c>, properties={})
- 166 self._load_multi_cfg()
- 167 except error.NoConfigMatchedError:
- 168 self.makeForbidden(404, 'No wiki configuration matching the URL found!\r\n')
- 169 return
- 170
- self
= <zgb.plugin.action.CreatePdfDocument.RedirectOutputRequest object at 0x946070c>
- self.makeForbidden
= <bound method RedirectOutputRequest.makeForbidde...ument.RedirectOutputRequest object at 0x946070c>>
/home/beteigeuze/lib/python2.5/site-packages/MoinMoin/request/__init__.py
in makeForbidden
(self=<zgb.plugin.action.CreatePdfDocument.RedirectOutputRequest object at 0x946070c>, resultcode=404, msg='No wiki configuration matching the URL found!\r\n')
- 1159 headers.append('Retry-After: %d' % self.cfg.surge_lockout_time)
- 1160 self.emit_http_headers(headers)
- 1161 self.write(msg)
- 1162 self.forbidden = True
- 1163
- self
= <zgb.plugin.action.CreatePdfDocument.RedirectOutputRequest object at 0x946070c>
- self.write
= <bound method RedirectOutputRequest.write of <zg...ument.RedirectOutputRequest object at 0x946070c>>
- msg
= 'No wiki configuration matching the URL found!\r\n'
/home/beteigeuze/webapps/moinmoin/data/zgb/plugin/action/CreatePdfDocument.py
in write
(self=<zgb.plugin.action.CreatePdfDocument.RedirectOutputRequest object at 0x946070c>, *data=('No wiki configuration matching the URL found!\r\n',))
- 407 self.error_string += data[0]
- 408 else:
- 409 self.output_string += data[0]
- 410
- 411 def flush(self):
- self
= <zgb.plugin.action.CreatePdfDocument.RedirectOutputRequest object at 0x946070c>
- self.output_string undefined
- data
= ('No wiki configuration matching the URL found!\r\n',)