| Please include this information in your bug reports!: Python Python 2.7.18: /usr/bin/python2 Linux erode.bofh.it 6.1.0-23-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.99-1 (2024-07-15) x86_64 MoinMoin Release 1.2.4 [Revision 1.187] Fri Nov 1 03:36:40 2024 |
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/local/share/moin/MoinMoin/request.py in run(self=<MoinMoin.request.RequestCGI instance>) |
389 if handler: |
390 handler(pagename or |
391 wikiutil.getSysPage(self, config.page_front_page).page_name, self) |
392 else: |
393 self.http_headers() |
global wikiutil = <module 'MoinMoin.wikiutil' from '/usr/local/share/moin/MoinMoin/wikiutil.pyc'>, wikiutil.getSysPage = <function getSysPage>, self = <MoinMoin.request.RequestCGI instance>, global config = <module 'MoinMoin.config' from '/usr/local/share/moin/MoinMoin/config.pyc'>, config.page_front_page = 'FrontPage', ).page_name undefined |
/usr/local/share/moin/MoinMoin/wikiaction.py in do_chart(pagename='InterNet', request=<MoinMoin.request.RequestCGI instance>) |
840 chart_type = request.form['type'][0] |
841 func = pysupport.importName("MoinMoin.stats." + chart_type, "draw") |
842 func(pagename, request) |
843 raise MoinMoinNoFooter |
844 |
func = <function draw>, pagename = 'InterNet', request = <MoinMoin.request.RequestCGI instance> |
/usr/local/share/moin/MoinMoin/stats/hitcounts.py in draw(pagename='InterNet', request=<MoinMoin.request.RequestCGI instance>) |
43 import shutil, cStringIO |
44 from MoinMoin import config, wikiutil |
45 from MoinMoin.stats.chart import Chart, ChartData, Color |
46 |
47 _ = request.getText |
MoinMoin undefined, Chart undefined, ChartData undefined, Color undefined |
/usr/local/share/moin/MoinMoin/stats/chart.py in |
16 """ |
17 |
18 import gdchart |
19 from MoinMoin.webapi.color import Color |
20 |
gdchart undefined |