Fix second part of bug 666 (I\'m not joking). Complete support for older tabular, only the 3 was missing.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10618 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
José Matox 2005-11-24 12:25:26 +00:00
parent ff4ae7a2b5
commit 73f01338a2
2 changed files with 62 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-11-24 José Matos <jamatos@lyx.org>
* lyx_1_0_0.py (obsolete_latex_title): "LaTeX Title" -> "Title"
* (update_tabular): update from tabular format 3 to 4 if necessary.
2005-11-20 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* lyx_1_4.py (convert_frameless_box): fix file format argument of

View File

@ -16,7 +16,63 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
convert = [[215, []]]
import re
import string
from parser_tools import find_token, find_re
def obsolete_latex_title(file):
body = file.body
i = 0
while 1:
i = find_token(body, '\\layout', i)
if i == -1:
return
if string.find(string.lower(body[i]),'latex title') != -1:
body[i] = '\\layout Title'
i = i + 1
# Update from tabular format 3 to 4 if necessary
def update_tabular(file):
lines = file.body
lyxtable_re = re.compile(r".*\\LyXTable$")
i=0
while 1:
i = find_re(lines, lyxtable_re, i)
if i == -1:
break
i = i + 1
format = lines[i][8:]
if format != '3':
continue
lines[i]='multicol4'
i = i + 1
rows = int(string.split(lines[i])[0])
columns = int(string.split(lines[i])[1])
lines[i] = lines[i] + ' 0 0 -1 -1 -1 -1'
i = i + 1
for j in range(rows):
lines[i] = lines[i] + ' 0 0'
i = i + 1
for j in range(columns):
lines[i] = lines[i] + ' '
i = i + 1
while string.strip(lines[i]):
lines[i] = lines[i] + ' 0 0 0'
i = i + 1
lines[i] = string.strip(lines[i])
convert = [[215, [obsolete_latex_title, update_tabular]]]
revert = []