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.
/srv/moin_tw/moin-productive/MoinMoin/request.py in run (self=<MoinMoin.request.RequestFastCGI object at 0xf3a14ecc>)
- 1156 from MoinMoin.wikiaction import getHandler
- 1157 handler = getHandler(self, action)
- 1158 handler(self.page.page_name, self)
- 1159
- 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'
/srv/moin_tw/moin-productive/MoinMoin/wikiaction.py in do_edit (pagename=u'MoinMoinExtensions', request=<MoinMoin.request.RequestFastCGI object at 0xf3a14ecc>)
- 597 try:
- 598 if lasteditor == 'gui':
- 599 savetext = convert(request, pagename, savetext)
- 600
- 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'
/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>')
- 1214 tree = parse(request, text)
- 1215 strip_whitespace().do(tree)
- 1216 text = convert_tree(request, pagename).do(tree)
- 1217 text = '\n'.join([s.rstrip() for s in text.splitlines()] + ['']) # remove trailing blanks
- 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>
/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>)
- 462 self.depth = 0
- 463 self.text = []
- 464 self.visit(tree.documentElement)
- 465 self.check_whitespace()
- 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>
/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>)
- 409 nodeType = node.nodeType
- 410 if node.nodeType == Node.ELEMENT_NODE:
- 411 return self.visit_element(node)
- 412 elif node.nodeType == Node.ATTRIBUTE_NODE:
- 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>
/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>)
- 511 func = getattr(self, "process_%s" % name, None)
- 512 if func:
- 513 func(node)
- 514 else:
- 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>
/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>)
- 532 for i in node.childNodes:
- 533 if i.nodeType == Node.ELEMENT_NODE:
- 534 self.visit_element(i)
- 535 elif i.nodeType == Node.TEXT_NODE: # if this is missing, all std text under a headline is dropped!
- 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>
/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>)
- 511 func = getattr(self, "process_%s" % name, None)
- 512 if func:
- 513 func(node)
- 514 else:
- 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>
/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>)
- 714 self.visit_node_list_element_only(i.childNodes)
- 715 elif name == 'blockquote':
- 716 self.process_blockquote(i)
- 717 elif name == 'hr':
- 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>
/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>)
- 714 self.visit_node_list_element_only(i.childNodes)
- 715 elif name == 'blockquote':
- 716 self.process_blockquote(i)
- 717 elif name == 'hr':
- 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>
/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>)
- 720 self.process_br(i)
- 721 else:
- 722 raise ConvertError("process_blockquote: Don't support %s element" % name)
- 723 self.depth -= 1
- 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.You are not allowed to attach a file to this page.