mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 17:20:55 +00:00
configure.py: fix check for eLyXer
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@31896 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
5106328fcb
commit
36540df0f5
@ -247,6 +247,16 @@ def checkLatex(dtl_tools):
|
|||||||
return ''
|
return ''
|
||||||
|
|
||||||
|
|
||||||
|
def checkModule(module):
|
||||||
|
''' Check for a Python module, return the status '''
|
||||||
|
msg = 'checking for "' + module + ' module"... '
|
||||||
|
try:
|
||||||
|
__import__(module)
|
||||||
|
return True
|
||||||
|
except ImportError:
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
def checkFormatEntries(dtl_tools):
|
def checkFormatEntries(dtl_tools):
|
||||||
''' Check all formats (\Format entries) '''
|
''' Check all formats (\Format entries) '''
|
||||||
checkViewer('a Tgif viewer and editor', ['tgif'],
|
checkViewer('a Tgif viewer and editor', ['tgif'],
|
||||||
@ -388,10 +398,17 @@ def checkConverterEntries():
|
|||||||
#
|
#
|
||||||
checkProg('an MS Word -> LaTeX converter', ['wvCleanLatex $$i $$o'],
|
checkProg('an MS Word -> LaTeX converter', ['wvCleanLatex $$i $$o'],
|
||||||
rc_entry = [ r'\converter word latex "%%" ""' ])
|
rc_entry = [ r'\converter word latex "%%" ""' ])
|
||||||
#
|
# eLyXer: search as a Python module and then as an executable (elyxer.py, elyxer)
|
||||||
path, elyxer = checkProg('a LyX -> HTML converter', ['elyxer.py', 'elyxer'],
|
elyxerfound = checkModule('elyxer')
|
||||||
rc_entry = [ r'\converter lyx html "python -tt $$s/scripts/elyxer.py --directory $$r $$i $$o" ""' ])
|
if elyxerfound:
|
||||||
if elyxer.find('elyxer') >= 0:
|
addToRC(r'''\converter lyx html "python -m elyxer --directory $$r $$i $$o" ""''')
|
||||||
|
else:
|
||||||
|
path, elyxer = checkProg('a LyX -> HTML converter', ['elyxer.py', 'elyxer'],
|
||||||
|
rc_entry = [ r'\converter lyx html "python -tt elyxer.py --directory $$r $$i $$o" ""' ])
|
||||||
|
if elyxer.find('elyxer') >= 0:
|
||||||
|
elyxerfound = True
|
||||||
|
|
||||||
|
if elyxerfound:
|
||||||
addToRC(r'''\copier html "python -tt $$s/scripts/ext_copy.py -e html,png,jpg,jpeg,css $$i $$o"''')
|
addToRC(r'''\copier html "python -tt $$s/scripts/ext_copy.py -e html,png,jpg,jpeg,css $$i $$o"''')
|
||||||
else:
|
else:
|
||||||
# On SuSE the scripts have a .sh suffix, and on debian they are in /usr/share/tex4ht/
|
# On SuSE the scripts have a .sh suffix, and on debian they are in /usr/share/tex4ht/
|
||||||
|
Loading…
Reference in New Issue
Block a user