Attachment 'TraceBack-Jan-7-09.html'

Download

--> -->

ImportError

cannot import name UnspecifiedEventTypeErr

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/local/lib/python2.5/site-packages/MoinMoin/request/__init__.py in run (self=<MoinMoin.request.request_cgi.Request object at 0xb7c62f2c>)

    1. 1309 self.page.send_page()
    2. 1310 else:
    3. 1311 handler(self.page.page_name, self)
    4. 1312
    5. 1313 # every action that didn't use to raise MoinMoinFinish must call this now:
    • handler = <function do_show at 0xb7c68304>
    • self = <MoinMoin.request.request_cgi.Request object at 0xb7c62f2c>
    • self.page = <MoinMoin.Page.Page object at 0xb7b3842c>
    • self.page.page_name = u'FrontPage'
  2. /usr/local/lib/python2.5/site-packages/MoinMoin/action/__init__.py in do_show (pagename=u'FrontPage', request=<MoinMoin.request.request_cgi.Request object at 0xb7c62f2c>, content_only=0, count_hit=1, cacheable=1, print_mode=0)

    1. 251 count_hit=count_hit,
    2. 252 print_mode=print_mode,
    3. 253 content_only=content_only,
    4. 254 )
    5. 255
    • content_only = 0
  3. /usr/local/lib/python2.5/site-packages/MoinMoin/Page.py in send_page (self=<MoinMoin.Page.Page object at 0xb7b38b6c>, **keywords={'content_only': 0, 'count_hit': 1, 'print_mode': 0})

    1. 1038 self.formatter = Formatter(request, store_pagelinks=1)
    2. 1039 elif not self.formatter:
    3. 1040 Formatter = wikiutil.searchAndImportPlugin(request.cfg, "formatter", self.output_mimetype)
    4. 1041 self.formatter = Formatter(request)
    5. 1042
    • Formatter undefined
    • global wikiutil = <module 'MoinMoin.wikiutil' from '/usr/local/lib/python2.5/site-packages/MoinMoin/wikiutil.py'>
    • wikiutil.searchAndImportPlugin = <function searchAndImportPlugin at 0xb7cfd534>
    • request = <MoinMoin.request.request_cgi.Request object at 0xb7c62f2c>
    • request.cfg = <wikiconfig.Config object at 0xb7bd410c>
    • self = <MoinMoin.Page.Page object at 0xb7b38b6c>
    • self.output_mimetype = 'text/docbook'
  4. /usr/local/lib/python2.5/site-packages/MoinMoin/wikiutil.py in searchAndImportPlugin (cfg=<wikiconfig.Config object at 0xb7bd410c>, type='formatter', name='text/docbook', what='Formatter')

    1. 1229 for module_name in mt.module_name():
    2. 1230 try:
    3. 1231 plugin = importPlugin(cfg, type, module_name, what)
    4. 1232 break
    5. 1233 except PluginMissingError:
    • plugin = None
    • global importPlugin = <function importPlugin at 0xb7cfd3ac>
    • cfg = <wikiconfig.Config object at 0xb7bd410c>
    • type = 'formatter'
    • module_name = 'text_docbook'
    • what = 'Formatter'
  5. /usr/local/lib/python2.5/site-packages/MoinMoin/wikiutil.py in importPlugin (cfg=<wikiconfig.Config object at 0xb7bd410c>, kind='formatter', name='text_docbook', function='Formatter')

    1. 1108 return importWikiPlugin(cfg, kind, name, function)
    2. 1109 except PluginMissingError:
    3. 1110 return importBuiltinPlugin(kind, name, function)
    4. 1111
    5. 1112
    • global importBuiltinPlugin = <function importBuiltinPlugin at 0xb7cfd41c>
    • kind = 'formatter'
    • name = 'text_docbook'
    • function = 'Formatter'
  6. /usr/local/lib/python2.5/site-packages/MoinMoin/wikiutil.py in importBuiltinPlugin (kind='formatter', name='text_docbook', function='Formatter')

    1. 1132 raise PluginMissingError()
    2. 1133 moduleName = 'MoinMoin.%s.%s' % (kind, name)
    3. 1134 return importNameFromPlugin(moduleName, function)
    4. 1135
    5. 1136
    • global importNameFromPlugin = <function importNameFromPlugin at 0xb7cfd454>
    • moduleName = 'MoinMoin.formatter.text_docbook'
    • function = 'Formatter'
  7. /usr/local/lib/python2.5/site-packages/MoinMoin/wikiutil.py in importNameFromPlugin (moduleName='MoinMoin.formatter.text_docbook', name='Formatter')

    1. 1145 else:
    2. 1146 fromlist = [name]
    3. 1147 module = __import__(moduleName, globals(), {}, fromlist)
    4. 1148 if fromlist:
    5. 1149 # module has the obj for module <moduleName>
    • module undefined
    • builtin __import__ = <built-in function __import__>
    • moduleName = 'MoinMoin.formatter.text_docbook'
    • builtin globals = <built-in function globals>
    • fromlist = ['Formatter']
  8. /usr/local/lib/python2.5/site-packages/MoinMoin/formatter/text_docbook.py in ()

    1. 13
    2. 14 from xml.dom import getDOMImplementation
    3. 15 from xml.dom.ext.reader import Sax
    4. 16 from xml.dom.ext import Node
    5. 17
    • xml undefined
    • Sax undefined
  9. /usr/local/lib/python2.5/xml/dom/ext/reader/Sax.py in ()

    1. 14 import sys, string, cStringIO, urllib2
    2. 15 from xml.sax import saxlib, saxexts, drivers
    3. 16 from xml.dom import Entity, DocumentType, Document
    4. 17 from xml.dom import DocumentType, Document
    5. 18 from xml.dom import implementation
    • xml undefined
    • Entity undefined
    • DocumentType undefined
    • Document undefined
  10. /usr/local/lib/python2.5/xml/dom/Entity.py in ()

    1. 14 from xml.dom import Node
    2. 15 from DOMImplementation import implementation
    3. 16 from FtNode import FtNode
    4. 17
    5. 18 class Entity(FtNode):
    • FtNode undefined
  11. /usr/local/lib/python2.5/xml/dom/FtNode.py in ()

    1. 23 from xml.dom import WrongDocumentErr
    2. 24 from xml.dom import InvalidCharacterErr
    3. 25 from xml.dom import UnspecifiedEventTypeErr
    4. 26 from xml.dom import XML_NAMESPACE
    5. 27
    • xml undefined
    • UnspecifiedEventTypeErr undefined

ImportError

cannot import name UnspecifiedEventTypeErr

  • args = ('cannot import name UnspecifiedEventTypeErr',)
  • message = 'cannot import name UnspecifiedEventTypeErr'

System Details

  • Date: Wed, 07 Jan 2009 22:49:55 +0000
  • Platform: Linux aristotle.quant-jock.net 2.6.9-78.0.8.EL #1 Wed Nov 19 19:43:32 EST 2008 i686
  • Python: Python 2.5.4 (/usr/local/bin/python)
  • MoinMoin: Release 1.8.1 (release)
-- *scratch*

Attached Files

To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.
  • [get | view] (2009-01-07 23:00:23, 315.7 KB) [[attachment:TraceBack-Jan-7-09.html]]
  • [get | view] (2009-01-06 16:03:32, 6.2 KB) [[attachment:screenshot.png]]
  • [get | view] (2009-01-06 16:03:51, 317.0 KB) [[attachment:traceback.html]]
 All files | Selected Files: delete move to page copy to page

You are not allowed to attach a file to this page.