Pages that were not edited since the beginning of history (literally); it's a listing of the oldest entries in the editlog.
2007-10-18
-
--> -->
/usr/lib/python2.5/site-packages/MoinMoin/request.py in run (self=<MoinMoin.request.RequestStandAlone object at 0x979aecc>)
- 1205 self.page.send_page(self, msg=msg)
- 1206 else:
- 1207 handler(self.page.page_name, self)
- 1208
- 1209 # generate page footer (actions that do not want this footer use
- handler = <function do_show at 0x838502c>
- self = <MoinMoin.request.RequestStandAlone object at 0x979aecc>
- self.page = <MoinMoin.Page.Page instance at 0x979ad6c>
- self.page.page_name = u'AbandonedPages'
/usr/lib/python2.5/site-packages/MoinMoin/wikiaction.py in do_show (pagename=u'AbandonedPages', request=<MoinMoin.request.RequestStandAlone object at 0x979aecc>)
- 466 else:
- 467 request.cacheable = 1
- 468 Page(request, pagename).send_page(request, count_hit=1)
- 469
- 470
- global Page = <class MoinMoin.Page.Page at 0x81c689c>
- request = <MoinMoin.request.RequestStandAlone object at 0x979aecc>
- pagename = u'AbandonedPages'
- ).send_page undefined
- count_hit undefined
/usr/lib/python2.5/site-packages/MoinMoin/Page.py in send_page (self=<MoinMoin.Page.Page instance at 0x979aa0c>, request=<MoinMoin.request.RequestStandAlone object at 0x979aecc>, msg='', **keywords={'count_hit': 1})
- 1254 format_args=pi_formatargs,
- 1255 do_cache=do_cache,
- 1256 start_line=pi_lines)
- 1257
- 1258 # check for pending footnotes
- start_line undefined
- pi_lines = 7
/usr/lib/python2.5/site-packages/MoinMoin/Page.py in send_page_content (self=<MoinMoin.Page.Page instance at 0x979aa0c>, request=<MoinMoin.request.RequestStandAlone object at 0x979aecc>, Parser=<class MoinMoin.parser.wiki.Parser at 0x8417c5c>, 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})
- 1345 try:
- 1346 code = self.loadCache(request)
- 1347 self.execute(request, parser, code)
- 1348 except Exception, e:
- 1349 if not is_cache_exception(e):
- self = <MoinMoin.Page.Page instance at 0x979aa0c>
- self.execute = <bound method Page.execute of <MoinMoin.Page.Page instance at 0x979aa0c>>
- request = <MoinMoin.request.RequestStandAlone object at 0x979aecc>
- parser = <MoinMoin.parser.wiki.Parser instance at 0x979a24c>
- code = <code object <module> at 0xac88cb60, file "AbandonedPages", line 2>
/usr/lib/python2.5/site-packages/MoinMoin/Page.py in execute (self=<MoinMoin.Page.Page instance at 0x979aa0c>, request=<MoinMoin.request.RequestStandAlone object at 0x979aecc>, parser=<MoinMoin.parser.wiki.Parser instance at 0x979a24c>, code=<code object <module> at 0xac88cb60, file "AbandonedPages", line 2>)
- 1374 __file__ = os.path.join(MoinMoin.__loader__.archive, 'dummy')
- 1375 try:
- 1376 exec code
- 1377 except 'CacheNeedsUpdate':
- 1378 raise Exception('CacheNeedsUpdate')
- code = <code object <module> at 0xac88cb60, file "AbandonedPages", line 2>
/var/www/localhost/moin/AbandonedPages in
() /usr/lib/python2.5/site-packages/MoinMoin/formatter/base.py in macro (self=<MoinMoin.formatter.text_html.Formatter instance at 0x979a12c>, macro_obj=<MoinMoin.wikimacro.Macro instance at 0x99c1a6c>, name=u'AbandonedPages', args=None)
- 288 def macro(self, macro_obj, name, args):
- 289 # call the macro
- 290 return macro_obj.execute(name, args)
- 291
- 292 def _get_bang_args(self, line):
- macro_obj = <MoinMoin.wikimacro.Macro instance at 0x99c1a6c>
- macro_obj.execute = <bound method Macro.execute of <MoinMoin.wikimacro.Macro instance at 0x99c1a6c>>
- name = u'AbandonedPages'
- args = None
/usr/lib/python2.5/site-packages/MoinMoin/wikimacro.py in execute (self=<MoinMoin.wikimacro.Macro instance at 0x99c1a6c>, macro_name=u'AbandonedPages', args=None)
- 118 else:
- 119 raise ImportError("Cannot load macro %s" % macro_name)
- 120 return execute(self, args)
- 121
- 122 def _m_lang(self, text):
- execute = <function execute at 0x8c0b7d4>
- self = <MoinMoin.wikimacro.Macro instance at 0x99c1a6c>
- args = None
/usr/lib/python2.5/site-packages/MoinMoin/macro/AbandonedPages.py in execute (macro=<MoinMoin.wikimacro.Macro instance at 0x99c1a6c>, args=None)
- 13 from MoinMoin.macro import RecentChanges
- 14
- 15 def execute(macro, args):
- 16 return RecentChanges.execute(macro, args, abandoned=1)
- 17
- global RecentChanges = <module 'MoinMoin.macro.RecentChanges' from '/us.../site-packages/MoinMoin/macro/RecentChanges.pyc'>
- RecentChanges.execute = <function execute at 0x8ffcdf4>
- macro = <MoinMoin.wikimacro.Macro instance at 0x99c1a6c>
- args = None
- abandoned undefined
/usr/lib/python2.5/site-packages/MoinMoin/macro/RecentChanges.py in execute (macro=<MoinMoin.wikimacro.Macro instance at 0x99c1a6c>, args=None, **kw={'abandoned': 1})
- 224 # handle abandoned keyword
- 225 if kw.get('abandoned', 0):
- 226 print_abandoned(macro, args, **kw)
- 227 return ''
- 228
- global print_abandoned = <function print_abandoned at 0x8ffc48c>
- macro = <MoinMoin.wikimacro.Macro instance at 0x99c1a6c>
- args = None
- kw = {'abandoned': 1}
/usr/lib/python2.5/site-packages/MoinMoin/macro/RecentChanges.py in print_abandoned (macro=<MoinMoin.wikimacro.Macro instance at 0x99c1a6c>, args=None, **kw={'abandoned': 1})
- 212
- 213 for page in last_edits[last_index:index]:
- 214 request.write(format_page_edits(macro, [page], None))
- 215 last_index = index
- 216 day_count += 1
- request = <MoinMoin.request.RequestStandAlone object at 0x979aecc>
- request.write = <bound method RequestStandAlone.write of <MoinMoin.request.RequestStandAlone object at 0x979aecc>>
- global format_page_edits = <function format_page_edits at 0x8ffc684>
- macro = <MoinMoin.wikimacro.Macro instance at 0x99c1a6c>
- page = <MoinMoin.logfile.editlog.EditLogLine instance at 0x99c17ec>
- builtin None = None
/usr/lib/python2.5/site-packages/MoinMoin/macro/RecentChanges.py in format_page_edits (macro=<MoinMoin.wikimacro.Macro instance at 0x99c1a6c>, lines=[<MoinMoin.logfile.editlog.EditLogLine instance at 0x99c17ec>], bookmark_usecs=None)
- 131 d['info_html'] = info_html
- 132
- 133 return request.theme.recentchanges_entry(d)
- 134
- 135 def cmp_lines(first, second):
- request = <MoinMoin.request.RequestStandAlone object at 0x979aecc>
- request.theme = <latinuxorg.plugin.theme.latinux.Theme instance at 0x979ac6c>
- request.theme.recentchanges_entry = <bound method Theme.recentchanges_entry of <lati...lugin.theme.latinux.Theme instance at 0x979ac6c>>
- d = {'changecount': 1, 'comments': [(1, u"Upload of attachment 'boton-axcl.png'.")], 'editors': None, 'icon_html': u'<a href="/CertificacionesDisponibles/AxclLinux?a...g/moin-diff.png" title="[DIFF]" width="16" /></a>', 'info_html': '<a href="/CertificacionesDisponibles/AxclLinux?a..."/wiki/latinux/img/info" title="" width="" /></a>', 'pagelink_html': u'<a href="/CertificacionesDisponibles/AxclLinux">Certificaciones Disponibles/Axcl Linux</a>', 'time_html': '15:41'}
/var/www/localhost/moin/latinuxorg/data/plugin/theme/latinux.py in recentchanges_entry (self=<latinuxorg.plugin.theme.latinux.Theme instance at 0x979ac6c>, d={'changecount': 1, 'comments': [(1, u"Upload of attachment 'boton-axcl.png'.")], 'editors': None, 'icon_html': u'<a href="/CertificacionesDisponibles/AxclLinux?a...g/moin-diff.png" title="[DIFF]" width="16" /></a>', 'info_html': '<a href="/CertificacionesDisponibles/AxclLinux?a..."/wiki/latinux/img/info" title="" width="" /></a>', 'pagelink_html': u'<a href="/CertificacionesDisponibles/AxclLinux">Certificaciones Disponibles/Axcl Linux</a>', 'time_html': '15:41'})
- 383 d['pagelink_html'],
- 384 d['icon_html'],
- 385 ', '.join(d['editors']),
- 386 rccomm,
- 387 ))
- d = {'changecount': 1, 'comments': [(1, u"Upload of attachment 'boton-axcl.png'.")], 'editors': None, 'icon_html': u'<a href="/CertificacionesDisponibles/AxclLinux?a...g/moin-diff.png" title="[DIFF]" width="16" /></a>', 'info_html': '<a href="/CertificacionesDisponibles/AxclLinux?a..."/wiki/latinux/img/info" title="" width="" /></a>', 'pagelink_html': u'<a href="/CertificacionesDisponibles/AxclLinux">Certificaciones Disponibles/Axcl Linux</a>', 'time_html': '15:41'}
- args = ('',)
- message = ''
- Date: Fri, 18 May 2012 07:04:18 +0000
- Platform: Linux webiseit 2.6.30-gentoo-r4 #1 SMP Wed Aug 26 11:10:25 VET 2009 i686
- Python: Python 2.5.4 (/usr/bin/python2.5)
- MoinMoin: Release 1.5.8 (release)
TypeError
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.
