Description
def process_dl(self, node):
self.depth += 1
markup = ":: " # can there be a dl dd without dt?
for i in node.childNodes:
if i.nodeType == Node.ELEMENT_NODE:
name = i.localName
if name == 'dt':
before, indent, markup = self._get_list_item_markup(node, i)
self.text.append(before+indent)
text = self.node_list_text_only(i.childNodes)
self.text.append(text.replace("\n", " "))
elif name == 'dd':
self.text.append(markup)
self.process_list_item(i, indent)
else:
raise ConvertError("Illegal list element %s" % i.localName)
self.depth -= 1
if self.depth == 0:
self.text.append(self.new_line)On Line: self.process_list_item(i, indent)
indent undefined!
Right. Could you please add a backtrace.html (see Details) and a description how to reproduce (see below)?
Steps to reproduce
- do this...
Example
Details
MoinMoin Version |
|
OS and Version |
|
Python Version |
|
Server Setup |
|
Server Details |
|
Language you are using the wiki in (set in the browser/UserPreferences) |
|
Workaround
Discussion
Plan
- Priority:
- Assigned to:
- Status: i hope it is fixed in 1.5.4 - nevertheless I still needed a description about how to reproduce to make that sure.
