Pages that were not edited since the beginning of history (literally); it's a listing of the oldest entries in the editlog.

--> -->

UnicodeEncodeError

'decimal' codec can't encode character u'\x00' in position 0: invalid decimal Unicode string

If you want to report a bug, please save this page and attach it to your bug report.

Traceback

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

  1. /tmp/persistent/allegrogl/moin-1.5.6/MoinMoin/request.py in run (self=<MoinMoin.request.RequestCGI object>)

    1. 1172 pass
    2. 1173 except Exception, err:
    3. 1174 self.fail(err)
    4. 1175
    5. 1176 return self.finish()
    • self = <MoinMoin.request.RequestCGI object>
    • self.fail = <bound method RequestCGI.fail of <MoinMoin.request.RequestCGI object>>
    • err = <exceptions.UnicodeEncodeError instance>
  2. /tmp/persistent/allegrogl/moin-1.5.6/MoinMoin/wikiaction.py in do_show (pagename=u'AbandonedPages', request=<MoinMoin.request.RequestCGI object>)

    1. 466 else:
    2. 467 request.cacheable = 1
    3. 468 Page(request, pagename).send_page(request, count_hit=1)
    4. 469
    5. 470
    • global Page = <class MoinMoin.Page.Page>
    • request = <MoinMoin.request.RequestCGI object>
    • pagename = u'AbandonedPages'
    • ).send_page undefined
    • count_hit undefined
  3. /tmp/persistent/allegrogl/moin-1.5.6/MoinMoin/Page.py in send_page (self=<MoinMoin.Page.Page instance>, request=<MoinMoin.request.RequestCGI object>, msg='', **keywords={'count_hit': 1})

    1. 1251 format_args=pi_formatargs,
    2. 1252 do_cache=do_cache,
    3. 1253 start_line=pi_lines)
    4. 1254
    5. 1255 # check for pending footnotes
    • start_line undefined
    • pi_lines = 7
  4. /tmp/persistent/allegrogl/moin-1.5.6/MoinMoin/Page.py in send_page_content (self=<MoinMoin.Page.Page instance>, request=<MoinMoin.request.RequestCGI object>, Parser=<class MoinMoin.parser.wiki.Parser>, body=u'Pages that were not edited since the beginning o...dest entries in the editlog.\n\n[[AbandonedPages]]\n', format_args=u'', do_cache=1, **kw={'start_line': 7})

    1. 1345 except Exception, e:
    2. 1346 if not is_cache_exception(e):
    3. 1347 raise
    4. 1348 try:
    5. 1349 code = self.makeCache(request, parser)
  5. /tmp/persistent/allegrogl/moin-1.5.6/MoinMoin/Page.py in execute (self=<MoinMoin.Page.Page instance>, request=<MoinMoin.request.RequestCGI object>, parser=<MoinMoin.parser.wiki.Parser instance>, code=<code object ? at 0xb7d517e0, file "AbandonedPages", line 2>)

    1. 1373 exec code
    2. 1374 except 'CacheNeedsUpdate':
    3. 1375 raise Exception('CacheNeedsUpdate')
    4. 1376
    5. 1377 def loadCache(self, request):
    • builtin Exception = <class exceptions.Exception>
  6. /home/groups/a/al/allegrogl/cgi-bin/AbandonedPages in ?

  7. /tmp/persistent/allegrogl/moin-1.5.6/MoinMoin/formatter/base.py in macro (self=<MoinMoin.formatter.text_html.Formatter instance>, macro_obj=<MoinMoin.wikimacro.Macro instance>, name=u'AbandonedPages', args=None)

    1. 288 def macro(self, macro_obj, name, args):
    2. 289 # call the macro
    3. 290 return macro_obj.execute(name, args)
    4. 291
    5. 292 def _get_bang_args(self, line):
    • macro_obj = <MoinMoin.wikimacro.Macro instance>
    • macro_obj.execute = <bound method Macro.execute of <MoinMoin.wikimacro.Macro instance>>
    • name = u'AbandonedPages'
    • args = None
  8. /tmp/persistent/allegrogl/moin-1.5.6/MoinMoin/wikimacro.py in execute (self=<MoinMoin.wikimacro.Macro instance>, macro_name=u'AbandonedPages', args=None)

    1. 118 else:
    2. 119 raise ImportError("Cannot load macro %s" % macro_name)
    3. 120 return execute(self, args)
    4. 121
    5. 122 def _m_lang(self, text):
    • execute = <function execute>
    • self = <MoinMoin.wikimacro.Macro instance>
    • args = None
  9. /tmp/persistent/allegrogl/moin-1.5.6/MoinMoin/macro/AbandonedPages.py in execute (macro=<MoinMoin.wikimacro.Macro instance>, args=None)

    1. 13 from MoinMoin.macro import RecentChanges
    2. 14
    3. 15 def execute(macro, args):
    4. 16 return RecentChanges.execute(macro, args, abandoned=1)
    5. 17
    • global RecentChanges = <module 'MoinMoin.macro.RecentChanges' from '/tm...ogl/moin-1.5.6/MoinMoin/macro/RecentChanges.pyc'>
    • RecentChanges.execute = <function execute>
    • macro = <MoinMoin.wikimacro.Macro instance>
    • args = None
    • abandoned undefined
  10. /tmp/persistent/allegrogl/moin-1.5.6/MoinMoin/macro/RecentChanges.py in execute (macro=<MoinMoin.wikimacro.Macro instance>, args=None, **kw={'abandoned': 1})

    1. 222 # handle abandoned keyword
    2. 223 if kw.get('abandoned', 0):
    3. 224 print_abandoned(macro, args, **kw)
    4. 225 return ''
    5. 226
    • global print_abandoned = <function print_abandoned>
    • macro = <MoinMoin.wikimacro.Macro instance>
    • args = None
    • kw = {'abandoned': 1}
  11. /tmp/persistent/allegrogl/moin-1.5.6/MoinMoin/macro/RecentChanges.py in print_abandoned (macro=<MoinMoin.wikimacro.Macro instance>, args=None, **kw={'abandoned': 1})

    1. 147 last_edits = []
    2. 148 for name in pages:
    3. 149 log = Page(request, name)._last_edited(request)
    4. 150 if log:
    5. 151 last_edits.append(log)
    • log = <MoinMoin.logfile.editlog.EditLogLine instance>
    • global Page = <class MoinMoin.Page.Page>
    • request = <MoinMoin.request.RequestCGI object>
    • name = u'News/2007-07-22'
    • )._last_edited undefined
  12. /tmp/persistent/allegrogl/moin-1.5.6/MoinMoin/Page.py in _last_edited (self=<MoinMoin.Page.Page instance>, request=<MoinMoin.request.RequestCGI object>)

    1. 402 log = logfile.previous()
    2. 403 except StopIteration:
    3. 404 log = None
    4. 405 return log
    5. 406
    • log undefined
    • builtin None = None
  13. /tmp/persistent/allegrogl/moin-1.5.6/MoinMoin/logfile/logfile.py in previous (self=<MoinMoin.logfile.editlog.EditLog instance>)

    1. 287 while result == None:
    2. 288 while result == None:
    3. 289 result = self.__previous()
    4. 290 if self.filter and not self.filter(result):
    5. 291 result = None
    • result = None
    • self = <MoinMoin.logfile.editlog.EditLog instance>
    • self.__previous undefined
  14. /tmp/persistent/allegrogl/moin-1.5.6/MoinMoin/logfile/logfile.py in __previous (self=<MoinMoin.logfile.editlog.EditLog instance>)

    1. 277 def __previous(self):
    2. 278 if self.peek(-1): raise StopIteration
    3. 279 return self.parser(self.__buffer.lines[self.__rel_index])
    4. 280
    5. 281 def previous(self):
    • self = <MoinMoin.logfile.editlog.EditLog instance>
    • self.parser = <bound method EditLog.parser of <MoinMoin.logfile.editlog.EditLog instance>>
    • self.__buffer undefined
    • self.__rel_index undefined
  15. /tmp/persistent/allegrogl/moin-1.5.6/MoinMoin/logfile/editlog.py in parser (self=<MoinMoin.logfile.editlog.EditLog instance>, line=u'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...em.com/people/tqOZd4e ">www pornotube net</a> bb\n')

    1. 192 result.hostname = result.addr
    2. 193 result.pagename = wikiutil.unquoteWikiname(result.pagename.encode('ascii'))
    3. 194 result.ed_time_usecs = long(result.ed_time_usecs or '0') # has to be long for py 2.2.x
    4. 195 return result
    5. 196
    • result = <MoinMoin.logfile.editlog.EditLogLine instance>
    • result.ed_time_usecs = u'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x001217786148000000'
    • builtin long = <type 'long'>

UnicodeEncodeError

'decimal' codec can't encode character u'\x00' in position 0: invalid decimal Unicode string

  • args = ('decimal', u'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x001217786148000000', 0, 1, 'invalid decimal Unicode string')
  • encoding = 'decimal'
  • end = 1
  • object = u'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x001217786148000000'
  • reason = 'invalid decimal Unicode string'
  • start = 0

System Details

  • Date: Sun, 07 Sep 2008 19:01:08 +0000
  • Platform: Linux sc8-pr-web10.sourceforge.net 2.6.24.2 #1 SMP Fri Feb 15 11:57:05 PST 2008 i686
  • Python: Python 2.3.3 (/usr/bin/python)
  • MoinMoin: Release 1.5.6 (release)