Here is the error page...
OSError

[Errno 13] Permission denied:
'/usr/share/moin/underlay/pages/HelpOnUserHandling/cache'

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

    * Show debugging information
    * Report bug
    * Visit MoinMoin wiki

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.RequestModPy object>)
         1. 1135 from MoinMoin.wikiaction import getHandler
         2. 1136 handler = getHandler(self, action)
         3. 1137 handler(self.page.page_name, self)
         4. 1138
         5. 1139 # 5. Or redirect to another page
          * handler = <function execute>
          * self = <MoinMoin.request.RequestModPy object>
          * self.page = <MoinMoin.Page.Page instance>
          * self.page.page_name = u'RecentChanges'
   2.

      /usr/lib/python2.3/site-packages/MoinMoin/action/fullsearch.py
in execute (pagename=u'RecentChanges',
request=<MoinMoin.request.RequestModPy object>, fieldname='value',
titlesearch=True)
         1. 61 query = search.QueryParser(case=case, regex=regex,
         2. 62 titlesearch=titlesearch).parse_query(needle)
         3. 63 results = search.searchPages(request, query)
         4. 64
         5. 65 # directly show a single hit
          * results undefined
          * search = <module 'MoinMoin.search' from
'/usr/lib/python2.3/site-packages/MoinMoin/search.pyc'>
          * search.searchPages = <function searchPages>
          * request = <MoinMoin.request.RequestModPy object>
          * query = <MoinMoin.search.LinkSearch instance>
   3.

      /usr/lib/python2.3/site-packages/MoinMoin/search.py in
searchPages (request=<MoinMoin.request.RequestModPy object>,
query=<MoinMoin.search.LinkSearch 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.RequestModPy object>
          * query = <MoinMoin.search.LinkSearch instance>
          * ).run undefined
   4.

      /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>>
   5.

      /usr/lib/python2.3/site-packages/MoinMoin/search.py in
_moinSearch (self=<MoinMoin.search.Search instance>,
pages=[(u'HelpOnProcessors', ''), (u'INT2FLOAT', ''),
(u'WikiCourse/BasicIntroduction/110 Headlines and Paragraphs', ''),
(u'WikiCourse/BasicIntroductionHandOut', ''), (u'EXA', ''),
(u'Nv04Extensions', ''), (u'RequiredFunctionality', ''),
(u'HelpOnUserHandling', ''), (u'HelpContents', ''),
(u'HelpOnInstalling/MinimalWiki', ''), (u'HelpOnHeadlines', ''),
(u'HelpOnAccessControlLists', ''), (u'HelpOnXmlPages', ''),
(u'HelpOnPageDeletion', ''), (u'WikiCourse', ''), (u'UserPreferences',
''), (u'HelpOnFormatting', ''),
(u'HelpOnInstalling/ApacheWithModPython', ''),
(u'HelpOnUpdatingPython', ''), (u'DebianTips', ''), ...])
         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.LinkSearch instance>
          * self.query.search = <bound method LinkSearch.search of
<MoinMoin.search.LinkSearch instance>>
          * page = <MoinMoin.Page.Page instance>
   6.

      /usr/lib/python2.3/site-packages/MoinMoin/search.py in search
(self=<MoinMoin.search.LinkSearch instance>, page=<MoinMoin.Page.Page
instance>)
         1. 398 Found = True
         2. 399
         3. 400 for link in page.getPageLinks(page.request):
         4. 401 if ((self.static and self.pattern == link) or
         5. 402 (not self.static and self.search_re.match(link))):
          * link undefined
          * page = <MoinMoin.Page.Page instance>
          * page.getPageLinks = <bound method Page.getPageLinks of
<MoinMoin.Page.Page instance>>
          * page.request = <MoinMoin.request.RequestModPy object>
   7.

      /usr/lib/python2.3/site-packages/MoinMoin/Page.py in
getPageLinks (self=<MoinMoin.Page.Page instance>,
request=<MoinMoin.request.RequestModPy object>)
         1. 1492 if not self.exists():
         2. 1493 return []
         3. 1494 cache = caching.CacheEntry(request, self, 'pagelinks')
         4. 1495 if cache.needsUpdate(self._text_filename()):
         5. 1496 links = self.parsePageLinks(request)
          * cache undefined
          * global caching = <module 'MoinMoin.caching' from
'/usr/lib/python2.3/site-packages/MoinMoin/caching.pyc'>
          * caching.CacheEntry = <class MoinMoin.caching.CacheEntry>
          * request = <MoinMoin.request.RequestModPy object>
          * self = <MoinMoin.Page.Page instance>
   8.

      /usr/lib/python2.3/site-packages/MoinMoin/caching.py in __init__
(self=<MoinMoin.caching.CacheEntry instance>,
request=<MoinMoin.request.RequestModPy object>,
arena=<MoinMoin.Page.Page instance>, key='pagelinks')
         1. 29 else: # arena is in fact a page object
         2. 30 cache_dir = None
         3. 31 self.arena_dir = arena.getPagePath('cache', check_create=1)
         4. 32 self.key = key
         5. 33 if locking:
          * self = <MoinMoin.caching.CacheEntry instance>
          * self.arena_dir undefined
          * arena = <MoinMoin.Page.Page instance>
          * arena.getPagePath = <bound method Page.getPagePath of
<MoinMoin.Page.Page instance>>
          * check_create undefined
   9.

      /usr/lib/python2.3/site-packages/MoinMoin/Page.py in getPagePath
(self=<MoinMoin.Page.Page instance>, *args=('cache',),
**kw={'check_create': 1})
         1. 341 """Return path to the page storage area."""
         2. 342
         3. 343 return self.getPageStatus(*args, **kw)[1]
         4. 344
         5. 345 def split_title(self, request, force=0):
          * self = <MoinMoin.Page.Page instance>
          * self.getPageStatus = <bound method Page.getPageStatus of
<MoinMoin.Page.Page instance>>
          * args = ('cache',)
          * kw = {'check_create': 1}
  10.

      /usr/lib/python2.3/site-packages/MoinMoin/Page.py in
getPageStatus (self=<MoinMoin.Page.Page instance>, *args=('cache',),
**kw={'check_create': 1})
         1. 335 dirname = fullpath
         2. 336 if not os.path.exists(dirname):
         3. 337 filesys.makeDirs(dirname)
         4. 338 return underlay, fullpath
         5. 339
          * global filesys = <module 'MoinMoin.util.filesys' from
'/usr/lib/python2.3/site-packages/MoinMoin/util/filesys.pyc'>
          * filesys.makeDirs = <function makedirs>
          * dirname = '/usr/share/moin/underlay/pages/HelpOnUserHandling/cache'
  11.

      /usr/lib/python2.3/site-packages/MoinMoin/util/filesys.py in
makedirs (name='/usr/share/moin/underlay/pages/HelpOnUserHandling/cache',
mode=511)
         1. 41 return
         2. 42 try:
         3. 43 os.mkdir(name, mode & config.umask)
         4. 44 except OSError, err:
         5. 45 if err.errno != errno.EEXIST:
          * global os = <module 'os' from '/usr/lib/python2.3/os.pyc'>
          * os.mkdir = <built-in function mkdir>
          * name = '/usr/share/moin/underlay/pages/HelpOnUserHandling/cache'
          * mode = 511
          * global config = <module 'MoinMoin.config' from
'/usr/lib/python2.3/site-packages/MoinMoin/config.pyc'>
          * config.umask = 504

OSError

[Errno 13] Permission denied:
'/usr/share/moin/underlay/pages/HelpOnUserHandling/cache'

    * args = (13, 'Permission denied')
    * errno = 13
    * filename = '/usr/share/moin/underlay/pages/HelpOnUserHandling/cache'
    * strerror = 'Permission denied'

System Details

    * Date: Thu, 26 Oct 2006 08:00:11 +0000
    * Platform: Linux annarchy 2.6.17.6 #1 SMP Sun Jul 16 00:58:36 PDT
2006 x86_64
    * Python: Python 2.3.5 (/usr/bin/python)
    * MoinMoin: Release 1.5.3 (release)

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
_______________________________________________
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel

Reply via email to