mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
After more attempts add gnumeric support.
Patch from Helge Hafting. http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg164180.html git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36786 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
083eb44fed
commit
a978795215
@ -515,6 +515,11 @@ def checkFormatEntries(dtl_tools):
|
|||||||
\Format text3 txt "Plain text (ps2ascii)" "" "" "%%" "document"
|
\Format text3 txt "Plain text (ps2ascii)" "" "" "%%" "document"
|
||||||
\Format text4 txt "Plain text (catdvi)" "" "" "%%" "document"
|
\Format text4 txt "Plain text (catdvi)" "" "" "%%" "document"
|
||||||
\Format textparagraph txt "Plain Text, Join Lines" "" "" "%%" "document"''' ])
|
\Format textparagraph txt "Plain Text, Join Lines" "" "" "%%" "document"''' ])
|
||||||
|
#Spreadsheets using ssconvert from gnumeric
|
||||||
|
checkViewer('gnumeric spreadsheet software', ['gnumeric'],
|
||||||
|
rc_entry = [r'''\Format gnumeric gnumeric "Gnumeric spreadsheet" "" "" "%%" "document"
|
||||||
|
\Format excel xls "Excel spreadsheet" "" "" "%%" "document"
|
||||||
|
\Format oocalc ods "OpenOffice spreadsheet" "" "" "%%" "document"'''])
|
||||||
#
|
#
|
||||||
path, xhtmlview = checkViewer('an HTML previewer', ['firefox', 'mozilla file://$$p$$i', 'netscape'],
|
path, xhtmlview = checkViewer('an HTML previewer', ['firefox', 'mozilla file://$$p$$i', 'netscape'],
|
||||||
rc_entry = [r'\Format xhtml xhtml "LyXHTML" y "%%" "" "document"'])
|
rc_entry = [r'\Format xhtml xhtml "LyXHTML" y "%%" "" "document"'])
|
||||||
@ -805,6 +810,13 @@ def checkConverterEntries():
|
|||||||
rc_entry = [ r'\converter svg png "%%" ""'])
|
rc_entry = [ r'\converter svg png "%%" ""'])
|
||||||
|
|
||||||
#
|
#
|
||||||
|
# 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" ""''',
|
||||||
|
''])
|
||||||
|
|
||||||
path, lilypond = checkProg('a LilyPond -> EPS/PDF/PNG converter', ['lilypond'])
|
path, lilypond = checkProg('a LilyPond -> EPS/PDF/PNG converter', ['lilypond'])
|
||||||
if (lilypond != ''):
|
if (lilypond != ''):
|
||||||
version_string = cmdOutput("lilypond --version")
|
version_string = cmdOutput("lilypond --version")
|
||||||
|
@ -33,6 +33,45 @@ PreambleDef InputOrWarn
|
|||||||
\IfFileExists{#1}{\input{#1}}{\warnNotFound{#1}}}
|
\IfFileExists{#1}{\input{#1}}{\warnNotFound{#1}}}
|
||||||
PreambleDefEnd
|
PreambleDefEnd
|
||||||
|
|
||||||
|
Template GnumericSpreadsheet
|
||||||
|
GuiName "Spreadsheet"
|
||||||
|
HelpText
|
||||||
|
A spreadsheet made with gnumeric, openoffice or excel.
|
||||||
|
It imports as a long table, so any length
|
||||||
|
is ok. Excessive width could be a problem.
|
||||||
|
The gnumeric software is necessary for conversion,
|
||||||
|
both for gnumeric and excel files.
|
||||||
|
HelpTextEnd
|
||||||
|
InputFormat "gnumeric"
|
||||||
|
FileFilter "*.{gnumeric,ods,xls}"
|
||||||
|
AutomaticProduction true
|
||||||
|
Format LaTeX
|
||||||
|
Product "\\def\\inputGnumericTable{}\\input{$$AbsOrRelPathMaster$$Basename.tex}"
|
||||||
|
UpdateFormat latex
|
||||||
|
UpdateResult "$$AbsPath$$Basename.tex"
|
||||||
|
Requirement "color"
|
||||||
|
Requirement "array"
|
||||||
|
Requirement "longtable"
|
||||||
|
Requirement "calc"
|
||||||
|
Requirement "multirow"
|
||||||
|
Requirement "hhline"
|
||||||
|
Requirement "ifthen"
|
||||||
|
ReferencedFile latex "$$AbsOrRelPathMaster$$Basename.tex"
|
||||||
|
FormatEnd
|
||||||
|
Format PDFLaTeX
|
||||||
|
Product "\\def\\inputGnumericTable{}\\input{$$AbsOrRelPathMaster$$Basename.tex}"
|
||||||
|
UpdateFormat latex
|
||||||
|
UpdateResult "$$AbsPath$$Basename.tex"
|
||||||
|
Requirement "color"
|
||||||
|
Requirement "array"
|
||||||
|
Requirement "longtable"
|
||||||
|
Requirement "calc"
|
||||||
|
Requirement "multirow"
|
||||||
|
Requirement "hhline"
|
||||||
|
Requirement "ifthen"
|
||||||
|
ReferencedFile latex "$$AbsOrRelPathMaster$$Basename.tex"
|
||||||
|
FormatEnd
|
||||||
|
TemplateEnd
|
||||||
|
|
||||||
Template RasterImage
|
Template RasterImage
|
||||||
# By default, InsetExternal is displayed as a grey button
|
# By default, InsetExternal is displayed as a grey button
|
||||||
|
@ -588,6 +588,7 @@ char const * simplefeatures[] = {
|
|||||||
"csquotes",
|
"csquotes",
|
||||||
"enumitem",
|
"enumitem",
|
||||||
"endnotes",
|
"endnotes",
|
||||||
|
"hhline",
|
||||||
"ifthen",
|
"ifthen",
|
||||||
// listings is handled in BufferParams.cpp
|
// listings is handled in BufferParams.cpp
|
||||||
"bm",
|
"bm",
|
||||||
|
Loading…
Reference in New Issue
Block a user