X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fcontrollers%2Ftex_helpers.C;h=fbc78c2d78b1e023b9e8e120072aa9084662b282;hb=534095ce9e82d0b0f875540f7306ff218df3b5aa;hp=6d0bd6f38129875ddde43d5dc3f44ef089c0063e;hpb=f58609c7656049eb42ac085f5a99b71fd002197f;p=lyx.git diff --git a/src/frontends/controllers/tex_helpers.C b/src/frontends/controllers/tex_helpers.C index 6d0bd6f381..fbc78c2d78 100644 --- a/src/frontends/controllers/tex_helpers.C +++ b/src/frontends/controllers/tex_helpers.C @@ -13,10 +13,14 @@ #include "tex_helpers.h" #include "debug.h" +#include "gettext.h" + +#include "frontends/Alert.h" #include "support/filetools.h" #include "support/lstrings.h" #include "support/lyxalgo.h" +#include "support/os.h" #include "support/package.h" #include "support/path.h" #include "support/systemcall.h" @@ -29,7 +33,9 @@ using std::endl; namespace lyx { +using support::bformat; using support::contains; +using support::FileName; using support::getExtension; using support::getFileContents; using support::getVectorFromString; @@ -44,16 +50,20 @@ using support::token; namespace frontend { -// build filelists of all availabe bst/cls/sty-files. done through -// kpsewhich and an external script, saved in *Files.lst void rescanTexStyles() { // Run rescan in user lyx directory Path p(package().user_support()); + FileName const command = libFileSearch("scripts", "TeXFiles.py"); Systemcall one; - one.startscript(Systemcall::Wait, - "python " + - quoteName(libFileSearch("scripts", "TeXFiles.py"))); + int const status = one.startscript(Systemcall::Wait, + lyx::support::os::python() + ' ' + + quoteName(command.toFilesystemEncoding())); + if (status == 0) + return; + // FIXME UNICODE + Alert::error(_("Could not update TeX information"), + bformat(_("The script `%s' failed."), lyx::from_utf8(command.absFilename()))); } @@ -71,7 +81,7 @@ void texhash() void getTexFileList(string const & filename, std::vector & list) { list.clear(); - string const file = libFileSearch("", filename); + FileName const file = libFileSearch("", filename); if (file.empty()) return; @@ -93,9 +103,11 @@ void getTexFileList(string const & filename, std::vector & list) string const getListOfOptions(string const & classname, string const & type) { - string const filename = getTexFileFromList(classname,type); + FileName const filename(getTexFileFromList(classname, type)); + if (filename.empty()) + return string(); string optionList = string(); - std::ifstream is(filename.c_str()); + std::ifstream is(filename.toFilesystemEncoding().c_str()); while (is) { string s; is >> s; @@ -129,8 +141,12 @@ string const getTexFileFromList(string const & file, lstfile = "bstFiles.lst"; else if (type == "bib") lstfile = "bibFiles.lst"; - string const allClasses = getFileContents(libFileSearch(string(), - lstfile)); + FileName const abslstfile = libFileSearch(string(), lstfile); + if (abslstfile.empty()) { + lyxerr << "File `'" << lstfile << "' not found." << endl; + return string(); + } + string const allClasses = getFileContents(abslstfile); int entries = 0; string classfile = token(allClasses, '\n', entries); int count = 0;