Describe the pages in this category...

To add a page to this category, add a link to this page on the last line of the page. You can add multiple categories to a page.

List of pages in this category:

--> -->

IOError

[Errno 20] Not a directory: 'data/pages/Accao(2d)2008021/revisions/99999999'

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. /usr/lib/python2.3/site-packages/MoinMoin/request.py in run (self=<MoinMoin.request.RequestCGI object>)

    1. 1149 from MoinMoin.wikiaction import getHandler
    2. 1150 handler = getHandler(self, action)
    3. 1151 handler(self.page.page_name, self)
    4. 1152
    5. 1153 # generate page footer (actions that do not want this footer use
    • handler = <function do_show>
    • self = <MoinMoin.request.RequestCGI object>
    • self.page = <MoinMoin.Page.Page instance>
    • self.page.page_name = u'CategoryTemplate'
  2. /usr/lib/python2.3/site-packages/MoinMoin/wikiaction.py in do_show (pagename=u'CategoryTemplate', 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'CategoryTemplate'
    • ).send_page undefined
    • count_hit undefined
  3. /usr/lib/python2.3/site-packages/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 = 6
  4. /usr/lib/python2.3/site-packages/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"\nDescribe the pages in this category...\n\nTo add ...ory:'''\n\n[[FullSearch()]]\n\n----\nCategoryCategory\n", format_args=u'', do_cache=1, **kw={'start_line': 6})

    1. 1342 try:
    2. 1343 code = self.loadCache(request)
    3. 1344 self.execute(request, parser, code)
    4. 1345 except Exception, e:
    5. 1346 if not is_cache_exception(e):
    • self = <MoinMoin.Page.Page instance>
    • self.execute = <bound method Page.execute of <MoinMoin.Page.Page instance>>
    • request = <MoinMoin.request.RequestCGI object>
    • parser = <MoinMoin.parser.wiki.Parser instance>
    • code = <code object ? at 0xf72c6920, file "CategoryTemplate", line 2>
  5. /usr/lib/python2.3/site-packages/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 0xf72c6920, file "CategoryTemplate", line 2>)

    1. 1371 __file__ = os.path.join(MoinMoin.__loader__.archive, 'dummy')
    2. 1372 try:
    3. 1373 exec code
    4. 1374 except 'CacheNeedsUpdate':
    5. 1375 raise Exception('CacheNeedsUpdate')
    • code = <code object ? at 0xf72c6920, file "CategoryTemplate", line 2>
  6. /srv/www/drm_ansol_org/wiki/CategoryTemplate in ?

  7. /usr/lib/python2.3/site-packages/MoinMoin/formatter/base.py in macro (self=<MoinMoin.formatter.text_html.Formatter instance>, macro_obj=<MoinMoin.wikimacro.Macro instance>, name=u'FullSearch', args=u'')

    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'FullSearch'
    • args = u''
  8. /usr/lib/python2.3/site-packages/MoinMoin/wikimacro.py in execute (self=<MoinMoin.wikimacro.Macro instance>, macro_name=u'FullSearch', args=u'')

    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 = u''
  9. /usr/lib/python2.3/site-packages/MoinMoin/macro/FullSearch.py in execute (macro=<MoinMoin.wikimacro.Macro instance>, needle=u'"CategoryTemplate"')

    1. 56 # Search the pages and return the results
    2. 57 query = search.QueryParser().parse_query(needle)
    3. 58 results = search.searchPages(request, query)
    4. 59 results.sortByPagename()
    5. 60
    • results undefined
    • global search = <module 'MoinMoin.search' from '/usr/lib/python2.3/site-packages/MoinMoin/search.py'>
    • search.searchPages = <function searchPages>
    • request = <MoinMoin.request.RequestCGI object>
    • query = <MoinMoin.search.TextSearch instance>
  10. /usr/lib/python2.3/site-packages/MoinMoin/search.py in searchPages (request=<MoinMoin.request.RequestCGI object>, query=<MoinMoin.search.TextSearch instance>, **kw={})

    1. 1265 @rtype: SearchResults instance
    2. 1266 @return: search results
    3. 1267 """
    4. 1268 return Search(request, query).run()
    5. 1269
    • global Search = <class MoinMoin.search.Search>
    • request = <MoinMoin.request.RequestCGI object>
    • query = <MoinMoin.search.TextSearch instance>
    • ).run undefined
  11. /usr/lib/python2.3/site-packages/MoinMoin/search.py in run (self=<MoinMoin.search.Search instance>)

    1. 1166 hits = self._lupySearch()
    2. 1167 else:
    3. 1168 hits = self._moinSearch()
    4. 1169
    5. 1170 # important - filter deleted pages or pages the user may not read!
    • hits undefined
    • self = <MoinMoin.search.Search instance>
    • self._moinSearch = <bound method Search._moinSearch of <MoinMoin.search.Search instance>>
  12. /usr/lib/python2.3/site-packages/MoinMoin/search.py in _moinSearch (self=<MoinMoin.search.Search instance>, pages=[(u'HelpOnProcessors', ''), (u'FAQ', ''), (u'WikiCourse/BasicIntroduction/110 Headlines and Paragraphs', ''), (u'WikiCourse/BasicIntroductionHandOut', ''), (u'Spotify', ''), (u'HelpOnUserHandling', ''), (u'HelpContents', ''), (u'HelpOnInstalling/MinimalWiki', ''), (u'HelpOnHeadlines', ''), (u'35Dias35ProdutosComDRM', ''), (u'iTunes', ''), (u'!eve+Guide+-+Skill+Trees(1)', ''), (u'HelpOnAccessControlLists', ''), (u'HelpOnSkins', ''), (u'DRM', ''), (u'HelpOnXmlPages', ''), (u'HelpOnPageDeletion', ''), (u'WikiCourse', ''), (u'UserPreferences', ''), (u'WikiCourse/BasicIntroduction/195 Actions', ''), ...])

    1. 1227 hits.append((page, attachment, None))
    2. 1228 else:
    3. 1229 match = self.query.search(page)
    4. 1230 if match:
    5. 1231 hits.append((page, attachment, match))
    • match = None
    • self = <MoinMoin.search.Search instance>
    • self.query = <MoinMoin.search.TextSearch instance>
    • self.query.search = <bound method TextSearch.search of <MoinMoin.search.TextSearch instance>>
    • page = <MoinMoin.Page.Page instance>
  13. /usr/lib/python2.3/site-packages/MoinMoin/search.py in search (self=<MoinMoin.search.TextSearch instance>, page=<MoinMoin.Page.Page instance>)

    1. 242
    2. 243 # Search in page body
    3. 244 body = page.get_raw_body()
    4. 245 for match in self.search_re.finditer(body):
    5. 246 matches.append(TextMatch(re_match=match))
    • body undefined
    • page = <MoinMoin.Page.Page instance>
    • page.get_raw_body = <bound method Page.get_raw_body of <MoinMoin.Page.Page instance>>
  14. /usr/lib/python2.3/site-packages/MoinMoin/Page.py in get_raw_body (self=<MoinMoin.Page.Page instance>)

    1. 781 # try to open file
    2. 782 try:
    3. 783 file = codecs.open(self._text_filename(), 'rb', config.charset)
    4. 784 except IOError, er:
    5. 785 import errno
    • builtin file = <type 'file'>
    • global codecs = <module 'codecs' from '/usr/lib/python2.3/codecs.pyc'>
    • codecs.open = <function open>
    • self = <MoinMoin.Page.Page instance>
    • self._text_filename = <bound method Page._text_filename of <MoinMoin.Page.Page instance>>
    • global config = <module 'MoinMoin.config' from '/usr/lib/python2.3/site-packages/MoinMoin/config.pyc'>
    • config.charset = 'utf-8'
  15. /usr/lib/python2.3/codecs.py in open (filename='data/pages/Accao(2d)2008021/revisions/99999999', mode='rb', encoding='utf-8', errors='strict', buffering=1)

    1. 564 # Force opening of the file in binary mode
    2. 565 mode = mode + 'b'
    3. 566 file = __builtin__.open(filename, mode, buffering)
    4. 567 if encoding is None:
    5. 568 return file
    • builtin file = <type 'file'>
    • global __builtin__ = <module '__builtin__' (built-in)>
    • __builtin__.open = <type 'file'>
    • filename = 'data/pages/Accao(2d)2008021/revisions/99999999'
    • mode = 'rb'
    • buffering = 1

IOError

[Errno 20] Not a directory: 'data/pages/Accao(2d)2008021/revisions/99999999'

  • args = (20, 'Not a directory')
  • errno = 20
  • filename = 'data/pages/Accao(2d)2008021/revisions/99999999'
  • strerror = 'Not a directory'

System Details

  • Date: Fri, 18 May 2012 13:06:08 +0000
  • Platform: Linux ansol.org 2.6.39.4-vs2.3.1-pre9.2 #1 SMP Fri Sep 23 02:22:56 WEST 2011 x86_64
  • Python: Python 2.3.5 (/usr/bin/python)
  • MoinMoin: Release 1.5.6 (release)