Attachment 'traceback.html'

Download

--> -->

ConvertError

process_inline: Don't support ul 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. /kunden/109585_24143/moinmoin/MoinMoin/request.py in run (self=<MoinMoin.request.RequestCGI object>)

    1. 1057 pass
    2. 1058 except Exception, err:
    3. 1059 self.fail(err)
    4. 1060
    5. 1061 return self.finish()
    • self = <MoinMoin.request.RequestCGI object>
    • self.fail = <bound method RequestCGI.fail of <MoinMoin.request.RequestCGI object>>
    • err = <MoinMoin.converter.text_html_text_x_moin.ConvertError instance>
  2. /kunden/109585_24143/moinmoin/MoinMoin/wikiaction.py in do_edit (pagename=u'GnomeDesktop', request=<MoinMoin.request.RequestCGI object>)

    1. 572 if lasteditor == 'gui':
    2. 573 from MoinMoin.converter.text_html_text_x_moin import convert
    3. 574 savetext = convert(request, pagename, savetext) # XXX error handling
    4. 575
    5. 576 # IMPORTANT: normalize text from the form. This should be done in
    • savetext = u'<pre class="comment">#acl All:read,write</pre> <...Roadmap</a> auf unserer Wiki.</p></li></ul></div>'
    • convert = <function convert>
    • request = <MoinMoin.request.RequestCGI object>
    • pagename = u'GnomeDesktop'
  3. /kunden/109585_24143/moinmoin/MoinMoin/converter/text_html_text_x_moin.py in convert (request=<MoinMoin.request.RequestCGI object>, pagename=u'GnomeDesktop', text=u'<page><pre class="comment">#acl All:read,write</...</a> auf unserer Wiki.</p></li></ul></div></page>')

    1. 1148 text = u"<page>%s</page>" % text
    2. 1149 tree = parse(text)
    3. 1150 strip_whitespace().do(tree)
    4. 1151 return convert_tree(request, pagename).do(tree)
    5. 1152
    • global convert_tree = <class 'MoinMoin.converter.text_html_text_x_moin.convert_tree'>
    • request = <MoinMoin.request.RequestCGI object>
    • pagename = u'GnomeDesktop'
    • ).do undefined
    • tree = <xml.dom.minidom.Document instance>
  4. /kunden/109585_24143/moinmoin/MoinMoin/converter/text_html_text_x_moin.py in do (self=<MoinMoin.converter.text_html_text_x_moin.convert_tree object>, tree=<xml.dom.minidom.Document instance>)

    1. 462 self.depth = 0
    2. 463 self.text = []
    3. 464 self.process_page(tree.documentElement)
    4. 465 self.check_whitespace()
    5. 466 return ''.join(self.text)
    • self = <MoinMoin.converter.text_html_text_x_moin.convert_tree object>
    • self.process_page = <bound method convert_tree.process_page of <Moin...erter.text_html_text_x_moin.convert_tree object>>
    • tree = <xml.dom.minidom.Document instance>
    • tree.documentElement = <DOM Element: page>
  5. /kunden/109585_24143/moinmoin/MoinMoin/converter/text_html_text_x_moin.py in process_page (self=<MoinMoin.converter.text_html_text_x_moin.convert_tree object>, node=<DOM Element: page>)

    1. 662 for i in node.childNodes:
    2. 663 if i.nodeType == Node.ELEMENT_NODE:
    3. 664 self.visit_element(i)
    4. 665 elif i.nodeType == Node.TEXT_NODE: # if this is missing, all std text under a headline is dropped!
    5. 666 txt = i.data.strip()
    • self = <MoinMoin.converter.text_html_text_x_moin.convert_tree object>
    • self.visit_element = <bound method convert_tree.visit_element of <Moi...erter.text_html_text_x_moin.convert_tree object>>
    • i = <DOM Element: div>
  6. /kunden/109585_24143/moinmoin/MoinMoin/converter/text_html_text_x_moin.py in visit_element (self=<MoinMoin.converter.text_html_text_x_moin.convert_tree object>, node=<DOM Element: div>)

    1. 509 func = getattr(self, "process_" + name, None)
    2. 510 if func:
    3. 511 func(node)
    4. 512 elif name in ('h1', 'h2', 'h3', 'h4', 'h5', 'h6',):
    5. 513 self.process_heading(node)
    • func = <bound method convert_tree.process_div of <MoinM...erter.text_html_text_x_moin.convert_tree object>>
    • node = <DOM Element: div>
  7. /kunden/109585_24143/moinmoin/MoinMoin/converter/text_html_text_x_moin.py in process_div (self=<MoinMoin.converter.text_html_text_x_moin.convert_tree object>, node=<DOM Element: div>)

    1. 732 # ignore div tags - just descend
    2. 733 for i in node.childNodes:
    3. 734 self.process_inline(i)
    4. 735
    5. 736 def process_tt(self, node):
    • self = <MoinMoin.converter.text_html_text_x_moin.convert_tree object>
    • self.process_inline = <bound method convert_tree.process_inline of <Mo...erter.text_html_text_x_moin.convert_tree object>>
    • i = <DOM Element: ul>
  8. /kunden/109585_24143/moinmoin/MoinMoin/converter/text_html_text_x_moin.py in process_inline (self=<MoinMoin.converter.text_html_text_x_moin.convert_tree object>, node=<DOM Element: ul>)

    1. 712 return
    2. 713 else:
    3. 714 raise ConvertError("process_inline: Don't support %s element" % name)
    4. 715
    5. 716 self.text.append(command)
    • global ConvertError = <class MoinMoin.converter.text_html_text_x_moin.ConvertError>
    • name = u'ul'

ConvertError

process_inline: Don't support ul element

  • exceptions = <bound method ConvertError.exceptions of <MoinMo...ter.text_html_text_x_moin.ConvertError instance>>
  • innerException = (None, None, None)
  • message = u"process_inline: Don't support ul element"
  • name = 'MoinMoin Convert Error'

System Details

  • Date: Sun, 05 Feb 2006 00:25:36 +0000
  • Platform: Linux embat.ispgateway.de 2.4.29-grsec #10 SMP Mon Jul 4 14:26:46 CEST 2005 i686
  • Python: Python 2.3.4 (/usr/bin/python2)
  • MoinMoin: Release 1.5.1 (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-02-05 00:40:18, 14.6 KB) [[attachment:preview.png]]
  • [get | view] (2006-02-05 00:39:42, 12.3 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.