Attachment 'BugTrace.html'

Download

--> -->

ConvertError

process_blockquote: Don't support a element

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. /srv/moin_tw/moin-productive/MoinMoin/request.py in run (self=<MoinMoin.request.RequestFastCGI object at 0xf3a14ecc>)

    1. 1156 from MoinMoin.wikiaction import getHandler
    2. 1157 handler = getHandler(self, action)
    3. 1158 handler(self.page.page_name, self)
    4. 1159
    5. 1160 # generate page footer (actions that do not want this footer use
    • handler = <function do_edit at 0xf72d39cc>
    • self = <MoinMoin.request.RequestFastCGI object at 0xf3a14ecc>
    • self.page = <MoinMoin.Page.Page instance at 0xf3a149ac>
    • self.page.page_name = u'MoinMoinExtensions'
  2. /srv/moin_tw/moin-productive/MoinMoin/wikiaction.py in do_edit (pagename=u'MoinMoinExtensions', request=<MoinMoin.request.RequestFastCGI object at 0xf3a14ecc>)

    1. 597 try:
    2. 598 if lasteditor == 'gui':
    3. 599 savetext = convert(request, pagename, savetext)
    4. 600
    5. 601 # IMPORTANT: normalize text from the form. This should be done in
    • savetext = u'<p class="line867"></p><h3 id="head-6bfb0adfaac5...nMoin">MoinMoin</a> pages with vim </p></li></ul>'
    • convert = <function convert at 0x91c309c>
    • request = <MoinMoin.request.RequestFastCGI object at 0xf3a14ecc>
    • pagename = u'MoinMoinExtensions'
  3. /srv/moin_tw/moin-productive/MoinMoin/converter/text_html_text_x_moin.py in convert (request=<MoinMoin.request.RequestFastCGI object at 0xf3a14ecc>, pagename=u'MoinMoinExtensions', text=u'<page><p class="line867"></p><h3 id="head-6bfb0a...MoinMoin</a> pages with vim </p></li></ul></page>')

    1. 1214 tree = parse(request, text)
    2. 1215 strip_whitespace().do(tree)
    3. 1216 text = convert_tree(request, pagename).do(tree)
    4. 1217 text = '\n'.join([s.rstrip() for s in text.splitlines()] + ['']) # remove trailing blanks
    5. 1218 return text
    • text = u'<page><p class="line867"></p><h3 id="head-6bfb0a...MoinMoin</a> pages with vim </p></li></ul></page>'
    • global convert_tree = <class 'MoinMoin.converter.text_html_text_x_moin.convert_tree'>
    • request = <MoinMoin.request.RequestFastCGI object at 0xf3a14ecc>
    • pagename = u'MoinMoinExtensions'
    • ).do undefined
    • tree = <xml.dom.minidom.Document instance at 0xf002a3cc>
  4. /srv/moin_tw/moin-productive/MoinMoin/converter/text_html_text_x_moin.py in do (self=<MoinMoin.converter.text_html_text_x_moin.convert_tree object at 0xf002a96c>, tree=<xml.dom.minidom.Document instance at 0xf002a3cc>)

    1. 462 self.depth = 0
    2. 463 self.text = []
    3. 464 self.visit(tree.documentElement)
    4. 465 self.check_whitespace()
    5. 466 return ''.join(self.text)
    • self = <MoinMoin.converter.text_html_text_x_moin.convert_tree object at 0xf002a96c>
    • self.visit = <bound method convert_tree.visit of <MoinMoin.co...l_text_x_moin.convert_tree object at 0xf002a96c>>
    • tree = <xml.dom.minidom.Document instance at 0xf002a3cc>
    • tree.documentElement = <DOM Element: page at 0xf258a62c>
  5. /srv/moin_tw/moin-productive/MoinMoin/converter/text_html_text_x_moin.py in visit (self=<MoinMoin.converter.text_html_text_x_moin.convert_tree object at 0xf002a96c>, node=<DOM Element: page at 0xf258a62c>)

    1. 409 nodeType = node.nodeType
    2. 410 if node.nodeType == Node.ELEMENT_NODE:
    3. 411 return self.visit_element(node)
    4. 412 elif node.nodeType == Node.ATTRIBUTE_NODE:
    5. 413 return self.visit_attribute(node)
    • self = <MoinMoin.converter.text_html_text_x_moin.convert_tree object at 0xf002a96c>
    • self.visit_element = <bound method convert_tree.visit_element of <Moi...l_text_x_moin.convert_tree object at 0xf002a96c>>
    • node = <DOM Element: page at 0xf258a62c>
  6. /srv/moin_tw/moin-productive/MoinMoin/converter/text_html_text_x_moin.py in visit_element (self=<MoinMoin.converter.text_html_text_x_moin.convert_tree object at 0xf002a96c>, node=<DOM Element: page at 0xf258a62c>)

    1. 511 func = getattr(self, "process_%s" % name, None)
    2. 512 if func:
    3. 513 func(node)
    4. 514 else:
    5. 515 self.process_inline(node)
    • func = <bound method convert_tree.process_page of <Moin...l_text_x_moin.convert_tree object at 0xf002a96c>>
    • node = <DOM Element: page at 0xf258a62c>
  7. /srv/moin_tw/moin-productive/MoinMoin/converter/text_html_text_x_moin.py in process_page (self=<MoinMoin.converter.text_html_text_x_moin.convert_tree object at 0xf002a96c>, node=<DOM Element: page at 0xf258a62c>)

    1. 532 for i in node.childNodes:
    2. 533 if i.nodeType == Node.ELEMENT_NODE:
    3. 534 self.visit_element(i)
    4. 535 elif i.nodeType == Node.TEXT_NODE: # if this is missing, all std text under a headline is dropped!
    5. 536 txt = i.data.strip() # IMPORTANT: don't leave this unstripped or there will be wrong blanks
    • self = <MoinMoin.converter.text_html_text_x_moin.convert_tree object at 0xf002a96c>
    • self.visit_element = <bound method convert_tree.visit_element of <Moi...l_text_x_moin.convert_tree object at 0xf002a96c>>
    • i = <DOM Element: blockquote at 0xf285f38c>
  8. /srv/moin_tw/moin-productive/MoinMoin/converter/text_html_text_x_moin.py in visit_element (self=<MoinMoin.converter.text_html_text_x_moin.convert_tree object at 0xf002a96c>, node=<DOM Element: blockquote at 0xf285f38c>)

    1. 511 func = getattr(self, "process_%s" % name, None)
    2. 512 if func:
    3. 513 func(node)
    4. 514 else:
    5. 515 self.process_inline(node)
    • func = <bound method convert_tree.process_blockquote of...l_text_x_moin.convert_tree object at 0xf002a96c>>
    • node = <DOM Element: blockquote at 0xf285f38c>
  9. /srv/moin_tw/moin-productive/MoinMoin/converter/text_html_text_x_moin.py in process_blockquote (self=<MoinMoin.converter.text_html_text_x_moin.convert_tree object at 0xf002a96c>, node=<DOM Element: blockquote at 0xf285f38c>)

    1. 714 self.visit_node_list_element_only(i.childNodes)
    2. 715 elif name == 'blockquote':
    3. 716 self.process_blockquote(i)
    4. 717 elif name == 'hr':
    5. 718 self.process_hr(i)
    • self = <MoinMoin.converter.text_html_text_x_moin.convert_tree object at 0xf002a96c>
    • self.process_blockquote = <bound method convert_tree.process_blockquote of...l_text_x_moin.convert_tree object at 0xf002a96c>>
    • i = <DOM Element: blockquote at 0xa4ad24c>
  10. /srv/moin_tw/moin-productive/MoinMoin/converter/text_html_text_x_moin.py in process_blockquote (self=<MoinMoin.converter.text_html_text_x_moin.convert_tree object at 0xf002a96c>, node=<DOM Element: blockquote at 0xa4ad24c>)

    1. 714 self.visit_node_list_element_only(i.childNodes)
    2. 715 elif name == 'blockquote':
    3. 716 self.process_blockquote(i)
    4. 717 elif name == 'hr':
    5. 718 self.process_hr(i)
    • self = <MoinMoin.converter.text_html_text_x_moin.convert_tree object at 0xf002a96c>
    • self.process_blockquote = <bound method convert_tree.process_blockquote of...l_text_x_moin.convert_tree object at 0xf002a96c>>
    • i = <DOM Element: blockquote at 0xf6fb09cc>
  11. /srv/moin_tw/moin-productive/MoinMoin/converter/text_html_text_x_moin.py in process_blockquote (self=<MoinMoin.converter.text_html_text_x_moin.convert_tree object at 0xf002a96c>, node=<DOM Element: blockquote at 0xf6fb09cc>)

    1. 720 self.process_br(i)
    2. 721 else:
    3. 722 raise ConvertError("process_blockquote: Don't support %s element" % name)
    4. 723 self.depth -= 1
    5. 724
    • global ConvertError = <class 'MoinMoin.converter.text_html_text_x_moin.ConvertError'>
    • name = u'a'

ConvertError

process_blockquote: Don't support a element

  • args = ()
  • exceptions = <bound method ConvertError.exceptions of ConvertError()>
  • innerException = (None, None, None)
  • message = u"process_blockquote: Don't support a element"
  • name = 'MoinMoin Convert Error'

System Details

  • Date: Sun, 24 Sep 2006 00:13:20 +0000
  • Platform: Linux web.thinkmo.de 2.6.17-thinkmo-1 #1 SMP Sat Jul 29 17:36:42 CEST 2006 x86_64
  • Python: Python 2.5c1 (/usr/local/bin/python2.5)
  • MoinMoin: Release 1.5.5a (release)

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] (2006-09-24 00:23:59, 16.6 KB) [[attachment:BugTrace.html]]
 All files | Selected Files: delete move to page copy to page

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