]> git.lyx.org Git - features.git/commitdiff
* configure.py : Fix the gnumeric converters.
authorJulien Rioux <jrioux@lyx.org>
Tue, 20 Sep 2011 18:36:34 +0000 (18:36 +0000)
committerJulien Rioux <jrioux@lyx.org>
Tue, 20 Sep 2011 18:36:34 +0000 (18:36 +0000)
    They were tied to undefined formats ods and xls. The actual
    internal names for these formats are oocalc and excel.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_2_0_X@39717 a592a061-630c-0410-9148-cb99ea01b6c8

lib/configure.py
status.20x

index d9e1960f62bc31c0959b5f37c076bfeb01785ae2..c0b6d40fad854934470dbfc6996c2934738ca9fe 100644 (file)
@@ -885,8 +885,8 @@ def checkConverterEntries():
     # gnumeric/xls/ods to tex
     checkProg('a spreadsheet -> latex converter', ['ssconvert'],
        rc_entry = [ r'''\converter gnumeric latex "ssconvert --export-type=Gnumeric_html:latex $$i $$o" ""
-\converter ods latex "ssconvert --export-type=Gnumeric_html:latex $$i $$o" ""
-\converter xls latex "ssconvert --export-type=Gnumeric_html:latex $$i $$o" ""''',
+\converter oocalc latex "ssconvert --export-type=Gnumeric_html:latex $$i $$o" ""
+\converter excel  latex "ssconvert --export-type=Gnumeric_html:latex $$i $$o" ""''',
 ''])
 
     path, lilypond = checkProg('a LilyPond -> EPS/PDF/PNG converter', ['lilypond'])
index b65dd8895f4d98fd2390ec7d45b4d897945069ed..3d79c1b3484f7b794c4569940dd0c95cbb83ada1 100644 (file)
@@ -122,3 +122,6 @@ What's new
 - Fix the detection of splitindex (bug 7579).
 
 - Fix the detection of jfig3-itext, jfig3.
+
+- Properly associate the gnumeric converter with the Excel and OpenOffice
+  spreadsheet formats.