From: Georg Baum Date: Sun, 9 Jul 2006 10:06:58 +0000 (+0000) Subject: * src/graphics/GraphicsConverter.C X-Git-Tag: 1.6.10~12974 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=34e73f78232d0c773f44ce8c4e748e1947e539b2;p=features.git * src/graphics/GraphicsConverter.C (Converter::Impl::Impl): move block of python code to build_script (build_script): adjust formatting git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14393 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/graphics/GraphicsConverter.C b/src/graphics/GraphicsConverter.C index 3bd1a1a29b..40b7938041 100644 --- a/src/graphics/GraphicsConverter.C +++ b/src/graphics/GraphicsConverter.C @@ -162,15 +162,6 @@ Converter::Impl::Impl(string const & from_file, string const & to_file_base, // The conversion commands are stored in a stringstream ostringstream script; - script << "#!/usr/bin/env python -tt\n" - << "import os, sys\n\n" - << "def unlinkNoThrow(file):\n" - << " ''' remove a file, do not throw if an error occurs '''\n" - << " try:\n" - << " os.unlink(file)\n" - << " except:\n" - << " pass\n\n"; - bool const success = build_script(from_file, to_file_base, from_format, to_format, script); @@ -341,6 +332,15 @@ bool build_script(string const & from_file, if (from_format.empty()) return false; + script << "#!/usr/bin/env python -tt\n" + "import os, sys\n\n" + "def unlinkNoThrow(file):\n" + " ''' remove a file, do not throw if an error occurs '''\n" + " try:\n" + " os.unlink(file)\n" + " except:\n" + " pass\n\n"; + // we do not use ChangeExtension because this is a basename // which may nevertheless contain a '.' string const to_file = to_file_base + '.' @@ -410,18 +410,17 @@ bool build_script(string const & from_file, // If this occurs, move ${outfile}.0 to ${outfile} // and delete ${outfile}.? (ignore errors) script << "if not os.path.isfile(outfile):\n" - << " if os.path.isfile(outfile + '.0'):\n" - << " os.rename(outfile + '.0', outfile)\n" - << " import glob\n" - << " for file in glob.glob(outfile + '.?'):\n" - << " unlinkNoThrow(file)\n" - << " else:\n" - << " sys.exit(1)\n\n"; + " if os.path.isfile(outfile + '.0'):\n" + " os.rename(outfile + '.0', outfile)\n" + " import glob\n" + " for file in glob.glob(outfile + '.?'):\n" + " unlinkNoThrow(file)\n" + " else:\n" + " sys.exit(1)\n\n"; // Delete the infile, if it isn't the original, from_file. - if (infile != from_file) { + if (infile != from_file) script << "unlinkNoThrow(infile)\n\n"; - } } // Move the final outfile to to_file