rgheck schrieb:
The bigger problem is that I don't have elyxer on this machine. What's
happening is that configure.py has this:
path, elyxer = checkProg('a LyX -> HTML converter', ['elyxer.py',
'elyxer'],
rc_entry = [ r'\converter lyx html "python -tt elyxer.py --directory $$r
$$i $$o" ""' ])
and the last entry here---which is the only entry---is being used in the
"not found" case. So it gets written whether you have elyxer or not.
Yes, this was a stupid thinko of mine. I fixed this in
http://www.lyx.org/trac/changeset/31949.
A similar patch is needed for branch.
I had to revert http://www.lyx.org/trac/changeset/31950 because it broke the script: the call of
eLyXer missed Python's -tt option so that it failed on Windows.
I've tested r31949 (now 31955) and it works for all 3 cases:
- no eLyXer (nothing is added to RC)
- eLyXer as Python module (eLyXer is called with Python's -m option)
- eLyXer not as module (eLyXer is called with Python's -tt option)
Please shout when the version that is now in trunk doesn't work for you. I'll wait with a patch for
branch until I got some feedback that it works.
regards Uwe