mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
Fix export of xfig external insets (bug #9244).
The check for a latex format is very fragile. Both libmagic and our guessing from contents cannot distinguish the pstex and pdftex formats used by the xfig external inset. Moreover, it may also happen that lyx files are mistaken as latex ones. Thus, when the guessed format is latex, the only solution is to give precedence to the format determined by the file extension.
This commit is contained in:
parent
9c05f221f9
commit
90b6920083
@ -403,11 +403,11 @@ string Formats::getFormatFromFile(FileName const & filename) const
|
||||
return string();
|
||||
|
||||
string psformat;
|
||||
string format;
|
||||
#ifdef HAVE_MAGIC_H
|
||||
if (filename.exists()) {
|
||||
magic_t magic_cookie = magic_open(MAGIC_MIME);
|
||||
if (magic_cookie) {
|
||||
string format;
|
||||
if (magic_load(magic_cookie, NULL) != 0) {
|
||||
LYXERR(Debug::GRAPHICS, "Formats::getFormatFromFile\n"
|
||||
<< "\tCouldn't load magic database - "
|
||||
@ -442,17 +442,22 @@ string Formats::getFormatFromFile(FileName const & filename) const
|
||||
}
|
||||
}
|
||||
magic_close(magic_cookie);
|
||||
if (!format.empty())
|
||||
// libmagic recognizes as latex also some formats of ours
|
||||
// such as pstex and pdftex. Therefore we have to perform
|
||||
// additional checks in this case (bug 9244).
|
||||
if (!format.empty() && format != "latex")
|
||||
return format;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
string const ext = getExtension(filename.absFileName());
|
||||
if (format.empty()) {
|
||||
// libmagic does not distinguish eps and ps.
|
||||
// Therefore we need to use our own detection here, but only if it
|
||||
// recognizes either ps or eps. Otherwise the libmagic guess will
|
||||
// be better (bug 9146).
|
||||
string const format = guessFormatFromContents(filename);
|
||||
format = guessFormatFromContents(filename);
|
||||
if (!psformat.empty()) {
|
||||
if (isPostScriptFileFormat(format))
|
||||
return format;
|
||||
@ -460,7 +465,6 @@ string Formats::getFormatFromFile(FileName const & filename) const
|
||||
return psformat;
|
||||
}
|
||||
|
||||
string const ext = getExtension(filename.absFileName());
|
||||
if (isZippedFileFormat(format) && !ext.empty()) {
|
||||
string const & fmt_name = formats.getFormatFromExtension(ext);
|
||||
if (!fmt_name.empty()) {
|
||||
@ -469,8 +473,18 @@ string Formats::getFormatFromFile(FileName const & filename) const
|
||||
return p_format->name();
|
||||
}
|
||||
}
|
||||
if (!format.empty())
|
||||
// Don't simply return latex (bug 9244).
|
||||
if (!format.empty() && format != "latex")
|
||||
return format;
|
||||
}
|
||||
|
||||
// Both libmagic and our guessing from contents may return as latex
|
||||
// also lyx files and our pstex and pdftex formats. In this case we
|
||||
// give precedence to the format determined by the extension.
|
||||
if (format == "latex") {
|
||||
format = getFormatFromExtension(ext);
|
||||
return format.empty() ? "latex" : format;
|
||||
}
|
||||
|
||||
// try to find a format from the file extension.
|
||||
return getFormatFromExtension(ext);
|
||||
|
Loading…
Reference in New Issue
Block a user