[Moin-user] Re: Paragraph breaks in 1.5.3

M.-A. Lemburg mal at egenix.com
Fri May 12 11:16:05 EDT 2006


Chris Lawley wrote:
> 
> On 3 May 2006, M.-A. Lemburg wrote:
> 
>> It appears as if the following change fixes the problem:
>>
>> --- parser/wiki.py~     2006-05-03 19:16:52.913252147 +0200
>> +++ parser/wiki.py      2006-05-03 19:16:52.914251845 +0200
>> @@ -462,7 +462,8 @@
>>      def _indent_repl(self, match):
>>          """Handle pure indentation (no - * 1. markup)."""
>>          result = []
>> -        if not (self.in_li or self.in_dd):
>> +        #if not (self.in_li or self.in_dd):
>> +        if self.in_li or self.in_dd:
>>              self._close_item(result)
>>              self.in_li = 1
>>              css_class = None
>>
> 
> 
> Is this a fix you worked out for yourself or was it on this list?

I "wrote" that patch - it works for me, no idea whether it's the
correct solution... I'll leave that for others to decide.

> I ask only because I can't spot it amongst the reported bugs at
>    http://moinmoin.wikiwikiweb.de/MoinMoinBugs

Perhaps you could add it there (together with the fix) ?!

-- 
Marc-Andre Lemburg
eGenix.com

Professional Python Services directly from the Source  (#1, May 12 2006)
>>> Python/Zope Consulting and Support ...        http://www.egenix.com/
>>> mxODBC.Zope.Database.Adapter ...             http://zope.egenix.com/
>>> mxODBC, mxDateTime, mxTextTools ...        http://python.egenix.com/
________________________________________________________________________

::: Try mxODBC.Zope.DA for Windows,Linux,Solaris,FreeBSD for free ! ::::




More information about the Moin-user mailing list