]> git.lyx.org Git - features.git/commitdiff
Fix second part of bug 666 (I\'m not joking). Complete support for older tabular...
authorJosé Matox <jamatos@lyx.org>
Thu, 24 Nov 2005 12:25:26 +0000 (12:25 +0000)
committerJosé Matox <jamatos@lyx.org>
Thu, 24 Nov 2005 12:25:26 +0000 (12:25 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10618 a592a061-630c-0410-9148-cb99ea01b6c8

lib/lyx2lyx/ChangeLog
lib/lyx2lyx/lyx_1_0_0.py

index 7e75f48aa5faef782f66d6da4e1baaa99a121ac0..ad247b5ab7230585744a2a52f7597ea2fe85240f 100644 (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
index 199fb3022a2ae62f758b32fc84ba65fbd99ca49c..6ca27628b4a499d3388942e497b50f503c7be702 100644 (file)
 # 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  = []