* configure.py:

- change eLyXer command and copier to copy images
	  to the appropriate places on view and export
	  (requires eLyXer 0.27).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@30133 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2009-06-16 08:08:34 +00:00
parent 98a3aba0b9
commit 223a977954
2 changed files with 5 additions and 2 deletions

View File

@ -389,10 +389,10 @@ def checkConverterEntries():
checkProg('an MS Word -> LaTeX converter', ['wvCleanLatex $$i $$o'],
rc_entry = [ r'\converter word latex "%%" ""' ])
#
path, elyxer = checkProg('a LyX -> HTML converter', ['elyxer.py $$i $$o'],
path, elyxer = checkProg('a LyX -> HTML converter', ['elyxer.py --directory $$r $$i $$o'],
rc_entry = [ r'\converter lyx html "%%" ""' ])
if elyxer.find('elyxer.py') >= 0:
addToRC(r'''\copier html "python -tt $$s/scripts/ext_copy.py -e html,png,css $$i $$o"''')
addToRC(r'''\copier html "python -tt $$s/scripts/ext_copy.py -e html,png,jpg,jpeg,css $$i $$o"''')
else:
# On SuSE the scripts have a .sh suffix, and on debian they are in /usr/share/tex4ht/
path, htmlconv = checkProg('a LaTeX -> HTML converter', ['htlatex $$i', 'htlatex.sh $$i', \

View File

@ -78,6 +78,9 @@ What's new
- Fix the on-screen representation of headings in the AMS article and
AMS book classes.
- The default eLyXer configuration now handles images correctly on view
and export (requires eLyXer >= 0.27).
* USER INTERFACE