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/amalgam/wwwhome/MoinMoin/cgimain.py in _run(_cgiform=<class cgi.FieldStorage>) |
176 if handler:
|
177 pagename=normalizeEncoding(pagename)
|
178 handler(pagename or config.front_page, form)
|
179 else:
|
180 webapi.http_headers()
|
| handler = <function do_recall>, pagename = '\xc3\xa5\xc3\xdf\xc3\xb5', config = <module 'MoinMoin.config' from '/home/amalgam/wwwhome/MoinMoin/config.pyo'>, config.front_page = 'FrontPage', global form = FieldStorage(None, None, [MiniFieldStorage('acti...ecall'), MiniFieldStorage('date', '1143352950')]) |
| /home/amalgam/wwwhome/MoinMoin/wikiaction.py in do_recall(pagename='\xc3\xa5\xc3\xdf\xc3\xb5', form=FieldStorage(None, None, [MiniFieldStorage('acti...ecall'), MiniFieldStorage('date', '1143352950')])) |
318
|
319 def do_recall(pagename, form):
|
320 Page(pagename, date=form['date'].value).send_page(form)
|
321
|
322
|
| global Page = <class MoinMoin.Page.Page>, pagename = '\xc3\xa5\xc3\xdf\xc3\xb5', date undefined, form = FieldStorage(None, None, [MiniFieldStorage('acti...ecall'), MiniFieldStorage('date', '1143352950')]), ].value = [MiniFieldStorage('action', 'recall'), MiniFieldStorage('date', '1143352950')], ).send_page undefined |
| /home/amalgam/wwwhome/MoinMoin/Page.py in send_page(self=<MoinMoin.Page.Page instance>, form=FieldStorage(None, None, [MiniFieldStorage('acti...ecall'), MiniFieldStorage('date', '1143352950')]), msg='', **keywords={}) |
242 if msg is None: msg = ""
|
243 if self.prev_date:
|
244 msg = "<b>%s</b><br>%s" % (
|
245 user.current.text('Version as of %(date)s') % {'date':
|
246 user.current.getFormattedDateTime(os.path.getmtime(self._text_filename()))},
|
| msg = '', global user = <module 'MoinMoin.user' from '/home/amalgam/wwwhome/MoinMoin/user.pyo'>, user.current = <MoinMoin.user.User instance>, user.current.text = <bound method User.text of <MoinMoin.user.User instance>>, user.current.getFormattedDateTime = <bound method User.getFormattedDateTime of <MoinMoin.user.User instance>>, global os = <module 'os' from '/usr/lib64/python2.4/os.pyo'>, os.path = <module 'posixpath' from '/usr/lib64/python2.4/posixpath.pyo'>, os.path.getmtime = <function getmtime>, self = <MoinMoin.Page.Page instance>, self._text_filename = <bound method Page._text_filename of <MoinMoin.Page.Page instance>> |