]> git.lyx.org Git - features.git/commitdiff
Fix allowed parameters for paragraphs.
authorJosé Matox <jamatos@lyx.org>
Wed, 4 May 2005 11:54:14 +0000 (11:54 +0000)
committerJosé Matox <jamatos@lyx.org>
Wed, 4 May 2005 11:54:14 +0000 (11:54 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9904 a592a061-630c-0410-9148-cb99ea01b6c8

lib/lyx2lyx/ChangeLog
lib/lyx2lyx/LyX.py

index d9d81782c1b6d27352469333564c1f9e105d9b8e..708609d036c7096ab8edb7b961287a3c1bfbfe51 100644 (file)
@@ -1,3 +1,7 @@
+2005-05-04  José Matos  <jamatos@lyx.org>
+
+       * LyX.py: fix allowed parameters for paragraphs.
+
 2005-04-26  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
 
        * lyx_1_4.py (convert_breaks): fix spelling
index eb49d914e6b43421154f5f49fc83d53dd2f4aa7a..e906912e17022c3554576f0833deee9c9ac2cde9 100644 (file)
@@ -358,6 +358,7 @@ class LyX_Base:
         " Returns the TOC of this LyX document."
         paragraphs_filter = {'Title' : 0,'Chapter' : 1, 'Section' : 2, 'Subsection' : 3, 'Subsubsection': 4}
         allowed_insets = ['Quotes']
+        allowed_parameters = '\\paragraph_spacing', '\\noindent', '\\align', '\\labelwidthstring', "\\start_of_appendix"
 
         sections = []
         for section in paragraphs_filter.keys():
@@ -383,7 +384,7 @@ class LyX_Base:
 
             k = i + 1
             # skip paragraph parameters
-            while not self.body[k] or self.body[k][0] == '\\':
+            while not string.strip(self.body[k]) and string.split(self.body[k])[0] in allowed_parameters:
                 k = k +1
 
             while k < j: