Edit the FortuneCookies page to display randomly selected wisdom here.
|
2021-11-11 | |||||
iscjfaq | 03:43 | 175 | Hi, Neat post. There's a problem with your web site in internet explorer, may check this? IE nonetheless is the marketplace leader and a big part of people will miss your magnificent writing due to this problem. https://comprarcialis5mg.org/it/ cialis 5 mg | ||
2020-05-25 | |||||
findpage | 14:42 | 93 | Post writing is also a excitement, if you bee familiar with afterward you can write or elswe it is difficult to write. ___________ iqq option ___ ____ | ||
2019-11-28 | |||||
iscifaq | 09:37 | 42 | W tym sklepie mo_na kupi_ nasiona konopi z dostaw_ do Polski. Znajdziesz autopwitn_ce odmiany konopi na ka_dy gust! https://thc-cbd.pl/ | ||
2014-04-25 | |||||
?Help Contents/ RK=0/ RS=Ys.YPa NCpr FJKHOA2 CDy V4 Ll OF0- | 20:12 | c-24-6-14-40 | Hi there to all, how is everything, I think every one is getting more from this | ||
2012-09-18 | |||||
?ISCJFaq/ | 11:30 | pro1320 | USA | ||
2012-08-18 | |||||
?WorldCom | 01:51 | 91 | U2rL5l <a href="http://vwexdjwidlxh.com/">vwexdjwidlxh</a>, [url=http://jgxncbl | ||
2012-08-16 | |||||
?NewsGroup | 04:00 | 91 | Uq2qZk <a href="http://mnnsfeetguks.com/">mnnsfeetguks</a>, [url=http://rxcdamx |
--> -->
| Please include this information in your bug reports!: Python Python 2.7.18: 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 22 20:40:12 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/action/SpellCheck.py in execute(pagename='RecentChanges', request=<MoinMoin.request.RequestCGI instance>) |
214 |
215 if badwords: |
216 page.send_page(request, msg=msg, hilite_re=badwords_re) |
217 else: |
218 page.send_page(request, msg=msg) |
page = <MoinMoin.Page.Page instance>, page.send_page = <bound method Page.send_page of <MoinMoin.Page.Page instance>>, request = <MoinMoin.request.RequestCGI instance>, msg = 'The following 68 words could not be found in the...lue="Add checked words to dictionary"></p></form>', hilite_re undefined, badwords_re = <_sre.SRE_Pattern object> |
/usr/local/share/moin/MoinMoin/Page.py in send_page(self=<MoinMoin.Page.Page instance>, request=<MoinMoin.request.RequestCGI instance>, msg='The following 68 words could not be found in the...lue="Add checked words to dictionary"></p></form>', **keywords={'hilite_re': <_sre.SRE_Pattern object>}) |
622 else: |
623 # parse the text and send the page content |
624 self.send_page_content(request, Parser, body) |
625 |
626 # check for pending footnotes |
self = <MoinMoin.Page.Page instance>, self.send_page_content = <bound method Page.send_page_content of <MoinMoin.Page.Page instance>>, request = <MoinMoin.request.RequestCGI instance>, Parser = <class MoinMoin.parser.wiki.Parser>, body = '||<tablewidth="100%" #FFFFA0> [[RandomQuote()]]|...other wikis, see OpenWiki:WikiSites/Aggregation.\n' |
/usr/local/share/moin/MoinMoin/Page.py in send_page_content(self=<MoinMoin.Page.Page instance>, request=<MoinMoin.request.RequestCGI instance>, Parser=<class MoinMoin.parser.wiki.Parser>, body='||<tablewidth="100%" #FFFFA0> [[RandomQuote()]]|...other wikis, see OpenWiki:WikiSites/Aggregation.\n', needsupdate=0) |
673 (not formatter_name in config.caching_formats)): |
674 # parse the text and send the page content |
675 Parser(body, request).format(self.formatter) |
676 return |
677 |
Parser = <class MoinMoin.parser.wiki.Parser>, body = '||<tablewidth="100%" #FFFFA0> [[RandomQuote()]]|...other wikis, see OpenWiki:WikiSites/Aggregation.\n', request = <MoinMoin.request.RequestCGI instance>, ).format undefined, self = <MoinMoin.Page.Page instance>, self.formatter = <MoinMoin.formatter.text_html.Formatter instance> |
/usr/local/share/moin/MoinMoin/parser/wiki.py in format(self=<MoinMoin.parser.wiki.Parser instance>, formatter=<MoinMoin.formatter.text_html.Formatter instance>) |
1031 line = line + " " # we don't have \n as whitespace any more |
1032 |
1033 formatted_line = self.scan(scan_re, line) # this also sets self.inhibit_p as side effect! |
1034 |
1035 #self.request.write("<!-- inhibit_p==%d -->\n" % self.inhibit_p) |
formatted_line = ' ', self = <MoinMoin.parser.wiki.Parser instance>, self.scan = <bound method Parser.scan of <MoinMoin.parser.wiki.Parser instance>>, scan_re = <_sre.SRE_Pattern object>, line = 'last, but not least, a randomly chosen page: [[RandomPage(1)]] ' |
/usr/local/share/moin/MoinMoin/parser/wiki.py in scan(self=<MoinMoin.parser.wiki.Parser instance>, scan_re=<_sre.SRE_Pattern object>, line='last, but not least, a randomly chosen page: [[RandomPage(1)]] ') |
864 else: |
865 result.append(self.formatter.text(line[lastpos:match.start()])) |
866 result.append(self.replace(match)) |
867 |
868 # search for the next one |
result = ['<strong class="highlight">last</strong>, <strong...strong> <strong class="highlight">page</strong>: '], result.append = <built-in method append of list object>, self = <MoinMoin.parser.wiki.Parser instance>, self.replace = <bound method Parser.replace of <MoinMoin.parser.wiki.Parser instance>>, match = <_sre.SRE_Match object> |
/usr/local/share/moin/MoinMoin/parser/wiki.py in replace(self=<MoinMoin.parser.wiki.Parser instance>, match=<_sre.SRE_Match object>) |
884 return self.highlight_text(hit) |
885 else: |
886 return getattr(self, '_' + type + '_repl')(hit) |
887 else: |
888 import pprint |
getattr undefined, self = <MoinMoin.parser.wiki.Parser instance>, type = 'macro', hit = '[[RandomPage(1)]]' |
/usr/local/share/moin/MoinMoin/parser/wiki.py in _macro_repl(self=<MoinMoin.parser.wiki.Parser instance>, word='[[RandomPage(1)]]') |
823 |
824 # call the macro |
825 return self.formatter.macro(self.macro, macro_name, args) |
826 |
827 |
self = <MoinMoin.parser.wiki.Parser instance>, self.formatter = <MoinMoin.formatter.text_html.Formatter instance>, self.formatter.macro = <bound method Formatter.macro of <MoinMoin.formatter.text_html.Formatter instance>>, self.macro = <MoinMoin.wikimacro.Macro instance>, macro_name = 'RandomPage', args = '1' |
/usr/local/share/moin/MoinMoin/formatter/base.py in macro(self=<MoinMoin.formatter.text_html.Formatter instance>, macro_obj=<MoinMoin.wikimacro.Macro instance>, name='RandomPage', args='1') |
160 def macro(self, macro_obj, name, args): |
161 # call the macro |
162 return macro_obj.execute(name, args) |
163 |
164 def processor(self, processor_name, lines): |
macro_obj = <MoinMoin.wikimacro.Macro instance>, macro_obj.execute = <bound method Macro.execute of <MoinMoin.wikimacro.Macro instance>>, name = 'RandomPage', args = '1' |
/usr/local/share/moin/MoinMoin/wikimacro.py in execute(self=<MoinMoin.wikimacro.Macro instance>, macro_name='RandomPage', args='1') |
110 return self._m_lang(macro_name, args) |
111 |
112 raise ImportError("Cannot load macro %s" % macro_name) |
113 |
114 def _m_lang(self, lang_name, text): |
ImportError undefined, macro_name = 'RandomPage' |