A list of pages that no other page links to:
--> -->ImportError
No module named hing
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.
/var/lib/python-support/python2.5/MoinMoin/request/__init__.py in run (self=<MoinMoin.request.request_cgi.Request object at 0x823098c>)
- 1305 self.page.send_page()
- 1306 else:
- 1307 handler(self.page.page_name, self)
- 1308
- 1309 # every action that didn't use to raise MoinMoinFinish must call this now:
- handler = <function do_show at 0x85e3064>
- self = <MoinMoin.request.request_cgi.Request object at 0x823098c>
- self.page = <MoinMoin.Page.Page object at 0x85ed9ac>
- self.page.page_name = u'OrphanedPages'
/var/lib/python-support/python2.5/MoinMoin/action/__init__.py in do_show (pagename=u'OrphanedPages', request=<MoinMoin.request.request_cgi.Request object at 0x823098c>, content_only=0, count_hit=1, cacheable=1, print_mode=0)
- 251 count_hit=count_hit,
- 252 print_mode=print_mode,
- 253 content_only=content_only,
- 254 )
- 255
- content_only = 0
/var/lib/python-support/python2.5/MoinMoin/Page.py in send_page (self=<MoinMoin.Page.Page object at 0x8603f2c>, **keywords={'content_only': 0, 'count_hit': 1, 'print_mode': 0})
- 1195 format_args=pi['formatargs'],
- 1196 do_cache=do_cache,
- 1197 start_line=pi['lines'])
- 1198
- 1199 # check for pending footnotes
- start_line undefined
- pi = {'acl': <MoinMoin.security.AccessControlList instance at 0x86403ac>, 'format': u'wiki', 'formatargs': u'', 'language': u'en', 'lines': 5}
/var/lib/python-support/python2.5/MoinMoin/Page.py in send_page_content (self=<MoinMoin.Page.Page object at 0x8603f2c>, request=<MoinMoin.request.request_cgi.Request object at 0x823098c>, body=u'A list of pages that no other page links to: \n<<OrphanedPages>>\n', format=u'wiki', format_args=u'', do_cache=1, **kw={'start_line': 5})
- 1283 try:
- 1284 code = self.loadCache(request)
- 1285 self.execute(request, parser, code)
- 1286 except Exception, e:
- 1287 if not is_cache_exception(e):
- self = <MoinMoin.Page.Page object at 0x8603f2c>
- self.execute = <bound method Page.execute of <MoinMoin.Page.Page object at 0x8603f2c>>
- request = <MoinMoin.request.request_cgi.Request object at 0x823098c>
- parser = <MoinMoin.parser.text_moin_wiki.Parser instance at 0x864d7cc>
- code = <code object <module> at 0x868ad58, file "OrphanedPages", line 2>
/var/lib/python-support/python2.5/MoinMoin/Page.py in execute (self=<MoinMoin.Page.Page object at 0x8603f2c>, request=<MoinMoin.request.request_cgi.Request object at 0x823098c>, parser=<MoinMoin.parser.text_moin_wiki.Parser instance at 0x864d7cc>, code=<code object <module> at 0x868ad58, file "OrphanedPages", line 2>)
- 1314 __file__ = os.path.join(MoinMoin.__loader__.archive, 'dummy')
- 1315 try:
- 1316 exec code
- 1317 except "CacheNeedsUpdate": # convert the exception
- 1318 raise Exception("CacheNeedsUpdate")
- code = <code object <module> at 0x868ad58, file "OrphanedPages", line 2>
/srv/www/moin/mywiki/OrphanedPages in
() /var/lib/python-support/python2.5/MoinMoin/formatter/__init__.py in macro (self=<MoinMoin.formatter.text_html.Formatter instance at 0x864030c>, macro_obj=<MoinMoin.macro.Macro instance at 0x864d58c>, name=u'OrphanedPages', args=None, markup=u'<<OrphanedPages>>')
- 312 # call the macro
- 313 try:
- 314 return macro_obj.execute(name, args)
- 315 except ImportError, err:
- 316 errmsg = unicode(err)
- macro_obj = <MoinMoin.macro.Macro instance at 0x864d58c>
- macro_obj.execute = <bound method Macro.execute of <MoinMoin.macro.Macro instance at 0x864d58c>>
- name = u'OrphanedPages'
- args = None
/var/lib/python-support/python2.5/MoinMoin/macro/__init__.py in execute (self=<MoinMoin.macro.Macro instance at 0x864d58c>, macro_name=u'OrphanedPages', args=None)
- 126 else:
- 127 raise ImportError("Cannot load macro %s" % macro_name)
- 128 return execute(self, args)
- 129
- 130 def _m_lang(self, text):
- execute = <function <lambda> at 0x833541c>
- self = <MoinMoin.macro.Macro instance at 0x864d58c>
- args = None
/var/lib/python-support/python2.5/MoinMoin/macro/__init__.py in
(_self=<MoinMoin.macro.Macro instance at 0x864d58c>, _args=None) - 113 call = wikiutil.importPlugin(self.cfg, 'macro', macro_name,
- 114 function='macro_%s' % macro_name)
- 115 execute = lambda _self, _args: _self._wrap(call, _args, [self])
- 116 except wikiutil.PluginAttributeError:
- 117 # fall back to old execute() method, no longer recommended
- execute undefined
- _self = <MoinMoin.macro.Macro instance at 0x864d58c>
- _args = None
- _self._wrap = <bound method Macro._wrap of <MoinMoin.macro.Macro instance at 0x864d58c>>
- call = <function macro_OrphanedPages at 0x8335534>
- self = <MoinMoin.macro.Macro instance at 0x864d58c>
/var/lib/python-support/python2.5/MoinMoin/macro/__init__.py in _wrap (self=<MoinMoin.macro.Macro instance at 0x864d58c>, function=<function macro_OrphanedPages at 0x8335534>, args=None, fixed=[<MoinMoin.macro.Macro instance at 0x864d58c>])
- 95 try:
- 96 return wikiutil.invoke_extension_function(self.request, function,
- 97 args, fixed)
- 98 except ValueError, e:
- 99 return self.format_error(e)
- args = None
- fixed = [<MoinMoin.macro.Macro instance at 0x864d58c>]
/var/lib/python-support/python2.5/MoinMoin/wikiutil.py in invoke_extension_function (request=<MoinMoin.request.request_cgi.Request object at 0x823098c>, function=<function macro_OrphanedPages at 0x8335534>, args=None, fixed_args=[<MoinMoin.macro.Macro instance at 0x864d58c>])
- 1986 kwargs_to_pass.keys()[0]))
- 1987
- 1988 return function(*fixed_args, **kwargs)
- 1989
- 1990
- function = <function macro_OrphanedPages at 0x8335534>
- fixed_args = [<MoinMoin.macro.Macro instance at 0x864d58c>]
- kwargs = {}
/var/lib/python-support/python2.5/MoinMoin/macro/OrphanedPages.py in macro_OrphanedPages (macro=<MoinMoin.macro.Macro instance at 0x864d58c>)
- 22 orphaned.update(pages)
- 23 for page in pages.values():
- 24 links = page.getPageLinks(macro.request)
- 25 for link in links:
- 26 if link in orphaned:
- links = []
- page = <MoinMoin.Page.Page object at 0x890c34c>
- page.getPageLinks = <bound method Page.getPageLinks of <MoinMoin.Page.Page object at 0x890c34c>>
- macro = <MoinMoin.macro.Macro instance at 0x864d58c>
- macro.request = <MoinMoin.request.request_cgi.Request object at 0x823098c>
/var/lib/python-support/python2.5/MoinMoin/Page.py in getPageLinks (self=<MoinMoin.Page.Page object at 0x890c34c>, request=<MoinMoin.request.request_cgi.Request object at 0x823098c>)
- 1468 else:
- 1469 try:
- 1470 links = cache.content()
- 1471 except caching.CacheError:
- 1472 links = self.parsePageLinks(request)
- links undefined
- cache = <MoinMoin.caching.CacheEntry instance at 0x897412c>
- cache.content = <bound method CacheEntry.content of <MoinMoin.caching.CacheEntry instance at 0x897412c>>
/var/lib/python-support/python2.5/MoinMoin/caching.py in content (self=<MoinMoin.caching.CacheEntry instance at 0x897412c>)
- 257 self.close()
- 258 if self.use_pickle:
- 259 data = pickle.loads(data)
- 260 elif self.use_encode:
- 261 data = data.decode(config.charset)
- data = 'MicroTeaching\nRaphaelSeiter\nPeterWeinand\nKategorieReferat\nKategorieReferatSonstiges\n'
- global pickle = <module 'cPickle' from '/usr/lib/python2.5/lib-dynload/cPickle.so'>
- pickle.loads = <built-in function loads>
ImportError
No module named hing
- args = ('No module named hing',)
- message = 'No module named hing'
System Details
- Date: Tue, 07 Feb 2012 14:10:11 +0000
- Platform: Linux lnx801 2.6.26-2-686 #1 SMP Wed Sep 21 04:35:47 UTC 2011 i686
- Python: Python 2.5.2 (/usr/bin/python)
- MoinMoin: Release 1.7.1 (release)
