2003-10-07 20:25:10 +00:00
|
|
|
/**
|
|
|
|
* \file ExternalSupport.C
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Asger Alstrup Nielsen
|
|
|
|
* \author Angus Leeming
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "ExternalSupport.h"
|
2003-10-07 22:59:58 +00:00
|
|
|
#include "ExternalTemplate.h"
|
|
|
|
#include "ExternalTransforms.h"
|
2003-10-07 20:25:10 +00:00
|
|
|
#include "insetexternal.h"
|
|
|
|
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "converter.h"
|
|
|
|
#include "debug.h"
|
2004-06-01 13:39:33 +00:00
|
|
|
#include "exporter.h"
|
2004-04-13 10:36:09 +00:00
|
|
|
#include "format.h"
|
2004-10-26 18:39:13 +00:00
|
|
|
#include "mover.h"
|
2003-10-07 20:25:10 +00:00
|
|
|
|
|
|
|
#include "support/filetools.h"
|
|
|
|
#include "support/forkedcall.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include "support/lyxalgo.h"
|
|
|
|
#include "support/lyxlib.h"
|
2005-01-10 19:17:43 +00:00
|
|
|
#include "support/package.h"
|
2003-10-07 20:25:10 +00:00
|
|
|
#include "support/path.h"
|
|
|
|
|
|
|
|
#include "support/std_ostream.h"
|
|
|
|
|
|
|
|
namespace support = lyx::support;
|
|
|
|
|
|
|
|
using std::endl;
|
2003-10-07 21:44:59 +00:00
|
|
|
|
2003-10-07 20:25:10 +00:00
|
|
|
using std::ostream;
|
2003-10-07 21:44:59 +00:00
|
|
|
using std::string;
|
2003-10-07 22:59:58 +00:00
|
|
|
using std::vector;
|
2003-10-07 20:25:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace external {
|
|
|
|
|
|
|
|
Template const * getTemplatePtr(InsetExternalParams const & params)
|
|
|
|
{
|
|
|
|
TemplateManager const & etm = TemplateManager::get();
|
|
|
|
return etm.getTemplateByName(params.templatename());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void editExternal(InsetExternalParams const & params, Buffer const & buffer)
|
|
|
|
{
|
2004-04-13 10:36:09 +00:00
|
|
|
string const file_with_path = params.filename.absFilename();
|
|
|
|
formats.edit(buffer, file_with_path,
|
2004-11-09 19:08:34 +00:00
|
|
|
formats.getFormatFromFile(file_with_path));
|
2003-10-07 20:25:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string const doSubstitution(InsetExternalParams const & params,
|
|
|
|
Buffer const & buffer, string const & s,
|
2005-01-14 08:52:35 +00:00
|
|
|
bool external_in_tmpdir,
|
|
|
|
Substitute what)
|
2003-10-07 20:25:10 +00:00
|
|
|
{
|
2004-06-01 13:39:33 +00:00
|
|
|
Buffer const * m_buffer = buffer.getMasterBuffer();
|
|
|
|
string const parentpath = external_in_tmpdir ?
|
|
|
|
m_buffer->temppath() :
|
|
|
|
buffer.filePath();
|
|
|
|
string const filename = external_in_tmpdir ?
|
|
|
|
params.filename.mangledFilename() :
|
|
|
|
params.filename.outputFilename(parentpath);
|
2004-04-06 21:07:27 +00:00
|
|
|
string const basename = support::ChangeExtension(
|
|
|
|
support::OnlyFilename(filename), string());
|
2004-06-01 13:39:33 +00:00
|
|
|
string const absname = support::MakeAbsPath(filename, parentpath);
|
2005-01-14 08:52:35 +00:00
|
|
|
|
|
|
|
string result = s;
|
|
|
|
if (what != ALL_BUT_PATHS) {
|
|
|
|
string const filepath = support::OnlyPath(filename);
|
|
|
|
string const abspath = support::OnlyPath(absname);
|
|
|
|
string const masterpath = external_in_tmpdir ?
|
|
|
|
m_buffer->temppath() :
|
|
|
|
m_buffer->filePath();
|
|
|
|
string relToMasterPath = support::OnlyPath(
|
|
|
|
support::MakeRelPath(absname, masterpath));
|
|
|
|
if (relToMasterPath == "./")
|
|
|
|
relToMasterPath.clear();
|
|
|
|
string relToParentPath = support::OnlyPath(
|
|
|
|
support::MakeRelPath(absname, parentpath));
|
|
|
|
if (relToParentPath == "./")
|
|
|
|
relToParentPath.clear();
|
|
|
|
|
|
|
|
result = support::subst(result, "$$FPath", filepath);
|
|
|
|
result = support::subst(result, "$$AbsPath", abspath);
|
|
|
|
result = support::subst(result, "$$RelPathMaster",
|
2004-04-06 21:07:27 +00:00
|
|
|
relToMasterPath);
|
2005-01-14 08:52:35 +00:00
|
|
|
result = support::subst(result, "$$RelPathParent",
|
2004-04-06 21:07:27 +00:00
|
|
|
relToParentPath);
|
2005-01-14 08:52:35 +00:00
|
|
|
if (support::AbsolutePath(filename)) {
|
|
|
|
result = support::subst(result, "$$AbsOrRelPathMaster",
|
|
|
|
abspath);
|
|
|
|
result = support::subst(result, "$$AbsOrRelPathParent",
|
|
|
|
abspath);
|
|
|
|
} else {
|
|
|
|
result = support::subst(result, "$$AbsOrRelPathMaster",
|
|
|
|
relToMasterPath);
|
|
|
|
result = support::subst(result, "$$AbsOrRelPathParent",
|
|
|
|
relToParentPath);
|
|
|
|
}
|
2004-04-06 21:07:27 +00:00
|
|
|
}
|
2005-01-14 08:52:35 +00:00
|
|
|
|
|
|
|
if (what == PATHS)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
result = support::subst(result, "$$FName", filename);
|
|
|
|
result = support::subst(result, "$$Basename", basename);
|
|
|
|
result = support::subst(result, "$$Extension",
|
|
|
|
'.' + support::GetExtension(filename));
|
2003-10-07 20:25:10 +00:00
|
|
|
result = support::subst(result, "$$Tempname", params.tempname());
|
2005-01-10 19:17:43 +00:00
|
|
|
result = support::subst(result, "$$Sysdir",
|
|
|
|
support::package().system_support());
|
2003-10-07 20:25:10 +00:00
|
|
|
|
|
|
|
// Handle the $$Contents(filename) syntax
|
|
|
|
if (support::contains(result, "$$Contents(\"")) {
|
|
|
|
|
|
|
|
string::size_type const pos = result.find("$$Contents(\"");
|
|
|
|
string::size_type const end = result.find("\")", pos);
|
|
|
|
string const file = result.substr(pos + 12, end - (pos + 12));
|
|
|
|
string contents;
|
|
|
|
|
|
|
|
string const filepath = support::IsFileReadable(file) ?
|
2004-04-06 21:07:27 +00:00
|
|
|
buffer.filePath() : m_buffer->temppath();
|
2003-10-07 20:25:10 +00:00
|
|
|
support::Path p(filepath);
|
|
|
|
|
|
|
|
if (support::IsFileReadable(file))
|
|
|
|
contents = support::GetFileContents(file);
|
|
|
|
|
|
|
|
result = support::subst(result,
|
|
|
|
("$$Contents(\"" + file + "\")").c_str(),
|
|
|
|
contents);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2004-06-01 13:39:33 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2003-10-07 20:25:10 +00:00
|
|
|
/** update the file represented by the template.
|
2005-01-14 08:52:35 +00:00
|
|
|
If \p external_in_tmpdir == true, then the generated file is
|
|
|
|
placed in the buffer's temporary directory.
|
2003-10-07 20:25:10 +00:00
|
|
|
*/
|
|
|
|
void updateExternal(InsetExternalParams const & params,
|
|
|
|
string const & format,
|
|
|
|
Buffer const & buffer,
|
2004-06-01 13:39:33 +00:00
|
|
|
ExportData & exportdata,
|
2003-10-07 20:25:10 +00:00
|
|
|
bool external_in_tmpdir)
|
|
|
|
{
|
2003-10-07 21:44:59 +00:00
|
|
|
Template const * const et_ptr = getTemplatePtr(params);
|
2003-10-07 20:25:10 +00:00
|
|
|
if (!et_ptr)
|
|
|
|
return; // FAILURE
|
2003-10-07 21:44:59 +00:00
|
|
|
Template const & et = *et_ptr;
|
2003-10-07 20:25:10 +00:00
|
|
|
|
|
|
|
if (!et.automaticProduction)
|
|
|
|
return; // NOT_NEEDED
|
|
|
|
|
2003-10-07 21:44:59 +00:00
|
|
|
Template::Formats::const_iterator cit = et.formats.find(format);
|
2003-10-07 20:25:10 +00:00
|
|
|
if (cit == et.formats.end())
|
|
|
|
return; // FAILURE
|
|
|
|
|
2003-10-07 21:44:59 +00:00
|
|
|
Template::Format const & outputFormat = cit->second;
|
2003-10-07 20:25:10 +00:00
|
|
|
if (outputFormat.updateResult.empty())
|
|
|
|
return; // NOT_NEEDED
|
|
|
|
|
|
|
|
string from_format = et.inputFormat;
|
|
|
|
if (from_format.empty())
|
|
|
|
return; // NOT_NEEDED
|
|
|
|
|
2004-04-06 21:07:27 +00:00
|
|
|
string abs_from_file = params.filename.absFilename();
|
2003-10-07 20:25:10 +00:00
|
|
|
|
|
|
|
if (from_format == "*") {
|
2004-04-06 21:07:27 +00:00
|
|
|
if (abs_from_file.empty())
|
2003-10-07 20:25:10 +00:00
|
|
|
return; // NOT_NEEDED
|
|
|
|
|
|
|
|
// Try and ascertain the file format from its contents.
|
2004-11-09 19:08:34 +00:00
|
|
|
from_format = formats.getFormatFromFile(abs_from_file);
|
2003-10-07 20:25:10 +00:00
|
|
|
if (from_format.empty())
|
|
|
|
return; // FAILURE
|
2004-04-06 21:07:27 +00:00
|
|
|
|
2003-10-07 20:25:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
string const to_format = outputFormat.updateFormat;
|
|
|
|
if (to_format.empty())
|
|
|
|
return; // NOT_NEEDED
|
|
|
|
|
|
|
|
if (!converters.isReachable(from_format, to_format)) {
|
|
|
|
lyxerr[Debug::EXTERNAL]
|
2003-10-07 21:44:59 +00:00
|
|
|
<< "external::updateExternal. "
|
2003-10-07 20:25:10 +00:00
|
|
|
<< "Unable to convert from "
|
|
|
|
<< from_format << " to " << to_format << endl;
|
|
|
|
return; // FAILURE
|
|
|
|
}
|
|
|
|
|
2004-03-25 10:12:44 +00:00
|
|
|
// The master buffer. This is useful when there are multiple levels
|
|
|
|
// of include files
|
|
|
|
Buffer const * m_buffer = buffer.getMasterBuffer();
|
|
|
|
|
2004-11-01 08:50:42 +00:00
|
|
|
// We copy the source file to the temp dir and do the conversion
|
|
|
|
// there if necessary
|
|
|
|
string const temp_file =
|
|
|
|
support::MakeAbsPath(params.filename.mangledFilename(),
|
|
|
|
m_buffer->temppath());
|
|
|
|
if (!abs_from_file.empty()) {
|
2004-04-06 21:07:27 +00:00
|
|
|
unsigned long const from_checksum = support::sum(abs_from_file);
|
2003-10-07 20:25:10 +00:00
|
|
|
unsigned long const temp_checksum = support::sum(temp_file);
|
|
|
|
|
|
|
|
if (from_checksum != temp_checksum) {
|
2004-10-26 18:39:13 +00:00
|
|
|
Mover const & mover = movers(from_format);
|
|
|
|
if (!mover.copy(abs_from_file, temp_file)) {
|
2004-04-06 21:07:27 +00:00
|
|
|
lyxerr[Debug::EXTERNAL]
|
|
|
|
<< "external::updateExternal. "
|
|
|
|
<< "Unable to copy "
|
|
|
|
<< abs_from_file << " to " << temp_file << endl;
|
2003-10-07 20:25:10 +00:00
|
|
|
return; // FAILURE
|
2004-04-06 21:07:27 +00:00
|
|
|
}
|
2003-10-07 20:25:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-01 08:50:42 +00:00
|
|
|
// the generated file (always in the temp dir)
|
2003-10-07 20:25:10 +00:00
|
|
|
string const to_file = doSubstitution(params, buffer,
|
|
|
|
outputFormat.updateResult,
|
2004-11-01 08:50:42 +00:00
|
|
|
true);
|
2003-10-07 20:25:10 +00:00
|
|
|
string const abs_to_file =
|
2004-11-01 08:50:42 +00:00
|
|
|
support::MakeAbsPath(to_file, m_buffer->temppath());
|
2003-10-07 20:25:10 +00:00
|
|
|
|
2004-11-01 08:50:42 +00:00
|
|
|
// Record the referenced files for the exporter.
|
|
|
|
// The exporter will copy them to the export dir.
|
2004-06-01 13:39:33 +00:00
|
|
|
typedef Template::Format::FileMap FileMap;
|
|
|
|
FileMap::const_iterator rit = outputFormat.referencedFiles.begin();
|
|
|
|
FileMap::const_iterator rend = outputFormat.referencedFiles.end();
|
|
|
|
for (; rit != rend; ++rit) {
|
|
|
|
vector<string>::const_iterator fit = rit->second.begin();
|
|
|
|
vector<string>::const_iterator fend = rit->second.end();
|
|
|
|
for (; fit != fend; ++fit) {
|
2004-11-01 08:50:42 +00:00
|
|
|
string const source = support::MakeAbsPath(
|
|
|
|
doSubstitution(params, buffer, *fit,
|
|
|
|
true),
|
|
|
|
m_buffer->temppath());
|
2005-01-14 08:52:35 +00:00
|
|
|
// The path of the referenced file is never the
|
|
|
|
// temp path, but the filename may be the mangled
|
|
|
|
// or the real name. Therefore we substitute the
|
|
|
|
// paths and names separately.
|
|
|
|
string file = support::subst(*fit, "$$FName",
|
|
|
|
"$$FPath$$Basename$$Extension");
|
|
|
|
file = doSubstitution(params, buffer, file, false,
|
|
|
|
PATHS);
|
|
|
|
file = doSubstitution(params, buffer, file,
|
|
|
|
external_in_tmpdir,
|
|
|
|
ALL_BUT_PATHS);
|
2004-11-01 08:50:42 +00:00
|
|
|
// if file is a relative name, it is interpreted
|
|
|
|
// relative to the master document.
|
|
|
|
exportdata.addExternalFile(rit->first, source, file);
|
2004-06-01 13:39:33 +00:00
|
|
|
}
|
|
|
|
}
|
2004-10-05 10:11:42 +00:00
|
|
|
|
2003-10-07 20:25:10 +00:00
|
|
|
// Do we need to perform the conversion?
|
|
|
|
// Yes if to_file does not exist or if from_file is newer than to_file
|
2004-11-01 08:50:42 +00:00
|
|
|
if (support::compare_timestamps(temp_file, abs_to_file) < 0)
|
2003-10-07 20:25:10 +00:00
|
|
|
return; // SUCCESS
|
|
|
|
string const to_file_base =
|
|
|
|
support::ChangeExtension(to_file, string());
|
|
|
|
/* bool const success = */
|
2004-11-01 08:50:42 +00:00
|
|
|
converters.convert(&buffer, temp_file, to_file_base,
|
2003-10-07 20:25:10 +00:00
|
|
|
from_format, to_format);
|
|
|
|
// return success
|
|
|
|
}
|
|
|
|
|
2003-10-07 22:59:58 +00:00
|
|
|
|
|
|
|
string const substituteCommands(InsetExternalParams const & params,
|
|
|
|
string const & input, string const & format);
|
|
|
|
|
|
|
|
string const substituteOptions(InsetExternalParams const & params,
|
|
|
|
string const & input, string const & format);
|
|
|
|
|
2003-10-07 20:25:10 +00:00
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
|
|
|
int writeExternal(InsetExternalParams const & params,
|
|
|
|
string const & format,
|
|
|
|
Buffer const & buffer, ostream & os,
|
2004-06-01 13:39:33 +00:00
|
|
|
ExportData & exportdata,
|
2003-10-07 20:25:10 +00:00
|
|
|
bool external_in_tmpdir)
|
|
|
|
{
|
2003-10-07 21:44:59 +00:00
|
|
|
Template const * const et_ptr = getTemplatePtr(params);
|
2003-10-07 20:25:10 +00:00
|
|
|
if (!et_ptr)
|
|
|
|
return 0;
|
2003-10-07 21:44:59 +00:00
|
|
|
Template const & et = *et_ptr;
|
2003-10-07 20:25:10 +00:00
|
|
|
|
2003-10-07 21:44:59 +00:00
|
|
|
Template::Formats::const_iterator cit = et.formats.find(format);
|
2003-10-07 20:25:10 +00:00
|
|
|
if (cit == et.formats.end()) {
|
|
|
|
lyxerr[Debug::EXTERNAL]
|
|
|
|
<< "External template format '" << format
|
|
|
|
<< "' not specified in template "
|
|
|
|
<< params.templatename() << endl;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-06-01 13:39:33 +00:00
|
|
|
updateExternal(params, format, buffer, exportdata, external_in_tmpdir);
|
2003-10-13 02:10:45 +00:00
|
|
|
|
2003-10-07 22:59:58 +00:00
|
|
|
string str = doSubstitution(params, buffer, cit->second.product,
|
2004-06-01 13:39:33 +00:00
|
|
|
external_in_tmpdir);
|
2003-10-07 22:59:58 +00:00
|
|
|
str = substituteCommands(params, str, format);
|
|
|
|
str = substituteOptions(params, str, format);
|
2003-10-07 20:25:10 +00:00
|
|
|
os << str;
|
|
|
|
return int(lyx::count(str.begin(), str.end(),'\n') + 1);
|
|
|
|
}
|
|
|
|
|
2003-10-07 22:59:58 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
// Empty template, specialised below.
|
|
|
|
template <typename TransformType>
|
|
|
|
string const substituteIt(string const &,
|
|
|
|
TransformID,
|
|
|
|
string const &,
|
|
|
|
Template::Format const &,
|
|
|
|
InsetExternalParams const &);
|
|
|
|
|
|
|
|
|
|
|
|
template <>
|
|
|
|
string const substituteIt<TransformCommand>(string const & input,
|
|
|
|
TransformID id,
|
|
|
|
string const & /* formatname */,
|
|
|
|
Template::Format const & format,
|
|
|
|
InsetExternalParams const & params)
|
|
|
|
{
|
|
|
|
typedef std::map<TransformID, TransformStore> Transformers;
|
|
|
|
Transformers::const_iterator it = format.command_transformers.find(id);
|
|
|
|
if (it == format.command_transformers.end())
|
|
|
|
return input;
|
|
|
|
|
|
|
|
TransformStore const & store = it->second;
|
|
|
|
|
|
|
|
TransformCommand::ptr_type ptr;
|
|
|
|
if (id == Rotate)
|
|
|
|
ptr = store.getCommandTransformer(params.rotationdata);
|
|
|
|
else if (id == Resize)
|
|
|
|
ptr = store.getCommandTransformer(params.resizedata);
|
|
|
|
|
|
|
|
if (!ptr.get())
|
|
|
|
return input;
|
|
|
|
|
|
|
|
string result =
|
|
|
|
support::subst(input, ptr->front_placeholder(), ptr->front());
|
|
|
|
return support::subst(result, ptr->back_placeholder(), ptr->back());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <>
|
|
|
|
string const substituteIt<TransformOption>(string const & input,
|
|
|
|
TransformID id,
|
|
|
|
string const & fname,
|
|
|
|
Template::Format const & format,
|
|
|
|
InsetExternalParams const & params)
|
|
|
|
{
|
|
|
|
typedef std::map<TransformID, TransformStore> Transformers;
|
|
|
|
Transformers::const_iterator it = format.option_transformers.find(id);
|
|
|
|
if (it == format.option_transformers.end())
|
|
|
|
return input;
|
|
|
|
|
|
|
|
TransformStore const & store = it->second;
|
|
|
|
|
|
|
|
TransformOption::ptr_type ptr;
|
|
|
|
switch (id) {
|
|
|
|
case Clip:
|
|
|
|
ptr = store.getOptionTransformer(params.clipdata);
|
|
|
|
break;
|
|
|
|
case Extra:
|
|
|
|
ptr = store.getOptionTransformer(params.extradata.get(fname));
|
|
|
|
break;
|
|
|
|
case Rotate:
|
|
|
|
ptr = store.getOptionTransformer(params.rotationdata);
|
|
|
|
break;
|
|
|
|
case Resize:
|
|
|
|
ptr = store.getOptionTransformer(params.resizedata);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ptr.get())
|
|
|
|
return input;
|
|
|
|
|
|
|
|
return support::subst(input, ptr->placeholder(), ptr->option());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <typename TransformerType>
|
|
|
|
string const transformIt(InsetExternalParams const & params,
|
|
|
|
string const & s, string const & formatname)
|
|
|
|
{
|
|
|
|
Template const * const et = getTemplatePtr(params);
|
|
|
|
if (!et || et->transformIds.empty())
|
|
|
|
return s;
|
|
|
|
|
|
|
|
Template::Formats::const_iterator fit = et->formats.find(formatname);
|
|
|
|
if (fit == et->formats.end())
|
|
|
|
return s;
|
|
|
|
|
|
|
|
string result = s;
|
|
|
|
Template::Format const & format = fit->second;
|
|
|
|
|
|
|
|
typedef vector<TransformID> TransformsIDs;
|
|
|
|
TransformsIDs::const_iterator it = et->transformIds.begin();
|
|
|
|
TransformsIDs::const_iterator end = et->transformIds.end();
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
result = substituteIt<TransformerType>(result, *it, formatname,
|
|
|
|
format, params);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string const substituteCommands(InsetExternalParams const & params,
|
|
|
|
string const & input, string const & format)
|
|
|
|
{
|
|
|
|
return transformIt<TransformCommand>(params, input, format);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string const substituteOption(InsetExternalParams const & params,
|
|
|
|
string const & input, string const & format)
|
|
|
|
{
|
|
|
|
string opt = transformIt<TransformOption>(params, input, format);
|
|
|
|
|
|
|
|
if (format == "LaTeX" || format == "PDFLaTeX")
|
|
|
|
return sanitizeLatexOption(opt);
|
|
|
|
if (format == "DocBook")
|
|
|
|
return sanitizeDocBookOption(opt);
|
|
|
|
if (format == "LinuxDoc")
|
|
|
|
return sanitizeLinuxDocOption(opt);
|
|
|
|
return opt;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string const substituteOptions(InsetExternalParams const & params,
|
|
|
|
string const & input, string const & format)
|
|
|
|
{
|
|
|
|
string output = input;
|
|
|
|
|
|
|
|
Template const * const et = getTemplatePtr(params);
|
|
|
|
if (!et || et->transformIds.empty())
|
|
|
|
return output;
|
|
|
|
|
|
|
|
Template::Formats::const_iterator fit = et->formats.find(format);
|
|
|
|
if (fit == et->formats.end() || fit->second.options.empty())
|
|
|
|
return output;
|
|
|
|
|
|
|
|
typedef vector<Template::Option> Options;
|
|
|
|
Options const & options = fit->second.options;
|
|
|
|
Options::const_iterator it = options.begin();
|
|
|
|
Options::const_iterator end = options.end();
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
string const opt = substituteOption(params, it->option, format);
|
|
|
|
string const placeholder = "$$" + it->name;
|
|
|
|
output = support::subst(output, placeholder, opt);
|
|
|
|
}
|
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
2003-10-07 20:25:10 +00:00
|
|
|
} // namespace external
|
|
|
|
} // namespace lyx
|