Fix allowed parameters for paragraphs.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9904 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
José Matox 2005-05-04 11:54:14 +00:00
parent 674038dc8c
commit 3cbfd8cc80
2 changed files with 6 additions and 1 deletions

View 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

View 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: