Author: jrioux
Date: Sat Jun 11 17:24:19 2011
New Revision: 39003
URL: http://www.lyx.org/trac/changeset/39003
Log:
Fix bug #7608 (Wrong path separator used for Inkscape on Windows)
Modified:
lyx-devel/branches/BRANCH_2_0_X/lib/configure.py
lyx-devel/branches/BRANCH_2_0_X/status.20x
Modified: lyx-devel/branches/BRANCH_2_0_X/lib/configure.py
==============================================================================
--- lyx-devel/branches/BRANCH_2_0_X/lib/configure.py Sat Jun 11 17:20:03
2011 (r39002)
+++ lyx-devel/branches/BRANCH_2_0_X/lib/configure.py Sat Jun 11 17:24:19
2011 (r39003)
@@ -835,12 +835,12 @@
checkProg('a Dia -> EPS converter', ['dia -e $$o -t eps $$i'],
rc_entry = [ r'\converter dia eps "%%" ""'])
#
- checkProg('a SVG -> PDF converter', ['rsvg-convert -f pdf -o $$o $$i',
'inkscape --file=$$p/$$i --export-area-drawing --without-gui
--export-pdf=$$p/$$o'],
+ checkProg('a SVG -> PDF converter', ['rsvg-convert -f pdf -o $$o $$i',
'inkscape --file=$$i --export-area-drawing --without-gui --export-pdf=$$o'],
rc_entry = [ r'\converter svg pdf "%%" ""'])
#
- checkProg('a SVG -> EPS converter', ['rsvg-convert -f ps -o $$o $$i',
'inkscape --file=$$p/$$i --export-area-drawing --without-gui
--export-eps=$$p/$$o'],
+ checkProg('a SVG -> EPS converter', ['rsvg-convert -f ps -o $$o $$i',
'inkscape --file=$$i --export-area-drawing --without-gui --export-eps=$$o'],
rc_entry = [ r'\converter svg eps "%%" ""'])
- # the PNG export via Inkscape must not have the full path ($$p) for the
file
+ #
checkProg('a SVG -> PNG converter', ['rsvg-convert -f png -o $$o $$i',
'inkscape --without-gui --file=$$i --export-png=$$o'],
rc_entry = [ r'\converter svg png "%%" ""'])
Modified: lyx-devel/branches/BRANCH_2_0_X/status.20x
==============================================================================
--- lyx-devel/branches/BRANCH_2_0_X/status.20x Sat Jun 11 17:20:03 2011
(r39002)
+++ lyx-devel/branches/BRANCH_2_0_X/status.20x Sat Jun 11 17:24:19 2011
(r39003)
@@ -114,6 +114,8 @@
- Fixed problem with display of Buffer load errors (bug 7622).
+- Fixed the call to the svg converter on Windows (bug 7608).
+
- Show the correct label after adding a line to an AMS Multline formula (bug
7511).