2002-09-25 14:26:13 +00:00
|
|
|
/**
|
|
|
|
* \file insetexternal.C
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-03-12 11:22:26 +00:00
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
* \author Asger Alstrup Nielsen
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
* Full author contact details are available in file CREDITS
|
|
|
|
*/
|
2000-06-12 11:27:15 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "insetexternal.h"
|
|
|
|
#include "ExternalTemplate.h"
|
|
|
|
#include "BufferView.h"
|
|
|
|
#include "buffer.h"
|
2003-03-05 11:30:35 +00:00
|
|
|
#include "funcrequest.h"
|
2000-06-12 11:27:15 +00:00
|
|
|
#include "lyx_main.h"
|
|
|
|
#include "LaTeXFeatures.h"
|
2002-02-16 15:59:55 +00:00
|
|
|
#include "gettext.h"
|
|
|
|
#include "debug.h"
|
2002-07-21 21:21:06 +00:00
|
|
|
#include "lyxlex.h"
|
2003-05-13 09:48:57 +00:00
|
|
|
#include "Lsstream.h"
|
2002-02-16 15:59:55 +00:00
|
|
|
|
2003-03-05 11:30:35 +00:00
|
|
|
#include "frontends/LyXView.h"
|
2002-02-16 15:59:55 +00:00
|
|
|
#include "frontends/Dialogs.h"
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
#include "support/filetools.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include "support/path.h"
|
2002-02-18 19:13:48 +00:00
|
|
|
#include "support/systemcall.h"
|
2001-11-02 16:18:07 +00:00
|
|
|
#include "support/FileInfo.h"
|
2000-11-28 06:46:06 +00:00
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
using std::ostream;
|
2000-06-12 11:27:15 +00:00
|
|
|
using std::endl;
|
2000-06-15 15:44:39 +00:00
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
|
2002-03-21 17:09:55 +00:00
|
|
|
InsetExternal::InsetExternal()
|
2001-04-11 17:14:20 +00:00
|
|
|
: view_(0)
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-04-11 17:14:20 +00:00
|
|
|
tempname_ = lyx::tempName(string(), "lyxext");
|
2001-03-14 14:53:55 +00:00
|
|
|
//ExternalTemplateManager::Templates::const_iterator i1;
|
2001-03-12 11:22:26 +00:00
|
|
|
params_.templ = ExternalTemplateManager::get().getTemplates().begin()->second;
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
2000-06-15 15:44:39 +00:00
|
|
|
|
|
|
|
InsetExternal::~InsetExternal()
|
|
|
|
{
|
2001-04-11 17:14:20 +00:00
|
|
|
lyx::unlink(tempname_);
|
2003-03-05 11:30:35 +00:00
|
|
|
InsetExternalMailer mailer(*this);
|
|
|
|
mailer.hideDialog();
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-05 11:30:35 +00:00
|
|
|
InsetExternal::Params const & InsetExternal::params() const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
return params_;
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
|
|
|
2003-03-05 11:30:35 +00:00
|
|
|
dispatch_result InsetExternal::localDispatch(FuncRequest const & cmd)
|
|
|
|
{
|
2003-03-07 15:58:02 +00:00
|
|
|
switch (cmd.action) {
|
2003-05-16 07:44:00 +00:00
|
|
|
|
2003-03-07 15:58:02 +00:00
|
|
|
case LFUN_INSET_MODIFY: {
|
|
|
|
InsetExternal::Params p;
|
|
|
|
InsetExternalMailer::string2params(cmd.argument, p);
|
2003-05-16 07:44:00 +00:00
|
|
|
if (!p.filename.empty()) {
|
|
|
|
setFromParams(p);
|
|
|
|
cmd.view()->updateInset(this);
|
|
|
|
}
|
|
|
|
return DISPATCHED;
|
2003-03-07 15:58:02 +00:00
|
|
|
}
|
|
|
|
|
2003-05-16 07:44:00 +00:00
|
|
|
case LFUN_INSET_DIALOG_UPDATE:
|
|
|
|
InsetExternalMailer(*this).updateDialog(cmd.view());
|
|
|
|
return DISPATCHED;
|
2003-03-07 15:58:02 +00:00
|
|
|
|
2003-03-09 09:38:47 +00:00
|
|
|
case LFUN_MOUSE_RELEASE:
|
2003-05-16 07:44:00 +00:00
|
|
|
case LFUN_INSET_EDIT:
|
|
|
|
InsetExternalMailer(*this).showDialog(cmd.view());
|
|
|
|
return DISPATCHED;
|
2003-03-09 09:38:47 +00:00
|
|
|
|
2003-03-07 15:58:02 +00:00
|
|
|
default:
|
2003-05-16 07:44:00 +00:00
|
|
|
return UNDISPATCHED;
|
2003-03-07 15:58:02 +00:00
|
|
|
}
|
2003-03-05 11:30:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-30 09:51:46 +00:00
|
|
|
void InsetExternal::setFromParams(Params const & p)
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
params_.filename = p.filename;
|
|
|
|
params_.parameters = p.parameters;
|
|
|
|
params_.templ = p.templ;
|
2002-03-21 17:09:55 +00:00
|
|
|
}
|
2000-06-12 11:27:15 +00:00
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
string const InsetExternal::editMessage() const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
return doSubstitution(0, params_.templ.guiName);
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
void InsetExternal::write(Buffer const *, ostream & os) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2002-02-16 15:59:55 +00:00
|
|
|
os << "External " << params_.templ.lyxName << ",\""
|
|
|
|
<< params_.filename << "\",\"" << params_.parameters << "\"\n";
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetExternal::read(Buffer const *, LyXLex & lex)
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
string format;
|
|
|
|
string token;
|
|
|
|
|
|
|
|
// Read inset data from lex and store in format
|
2001-08-06 19:13:25 +00:00
|
|
|
if (lex.eatLine()) {
|
|
|
|
format = lex.getString();
|
|
|
|
} else {
|
2001-03-12 11:22:26 +00:00
|
|
|
lex.printError("InsetExternal: Parse error: `$$Token'");
|
2001-08-06 19:13:25 +00:00
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-08-06 19:13:25 +00:00
|
|
|
while (lex.isOK()) {
|
2001-03-12 11:22:26 +00:00
|
|
|
lex.nextToken();
|
2001-08-06 19:13:25 +00:00
|
|
|
token = lex.getString();
|
2001-03-12 11:22:26 +00:00
|
|
|
if (token == "\\end_inset")
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (token != "\\end_inset") {
|
|
|
|
lex.printError("Missing \\end_inset at this point. "
|
|
|
|
"Read: `$$Token'");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse string format...
|
2002-11-27 10:30:28 +00:00
|
|
|
string::size_type const pos1 = format.find(',');
|
2001-03-12 11:22:26 +00:00
|
|
|
params_.templ = ExternalTemplateManager::get().getTemplateByName(format.substr(0, pos1));
|
2000-09-27 18:13:30 +00:00
|
|
|
string::size_type const pos2 = format.find("\",\"", pos1);
|
2001-03-12 11:22:26 +00:00
|
|
|
params_.filename = format.substr(pos1 + 2, pos2 - (pos1 + 2));
|
|
|
|
params_.parameters = format.substr(pos2 + 3, format.length() - (pos2 + 4));
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2001-03-12 11:22:26 +00:00
|
|
|
lyxerr[Debug::INFO] << "InsetExternal::Read: " << params_.templ.lyxName
|
2002-11-27 10:30:28 +00:00
|
|
|
<< ' ' << params_.filename
|
|
|
|
<< ' ' << params_.parameters << endl;
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
2000-06-15 15:44:39 +00:00
|
|
|
|
|
|
|
int InsetExternal::write(string const & format,
|
2002-02-16 15:59:55 +00:00
|
|
|
Buffer const * buf, ostream & os) const
|
2000-06-15 15:44:39 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
ExternalTemplate const & et = params_.templ;
|
2000-06-12 11:27:15 +00:00
|
|
|
ExternalTemplate::Formats::const_iterator cit =
|
|
|
|
et.formats.find(format);
|
2000-06-15 15:44:39 +00:00
|
|
|
if (cit == et.formats.end()) {
|
|
|
|
lyxerr << "External template format '" << format
|
2002-02-16 15:59:55 +00:00
|
|
|
<< "' not specified in template "
|
|
|
|
<< params_.templ.lyxName << endl;
|
2000-06-15 15:44:39 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-11-02 16:18:07 +00:00
|
|
|
updateExternal(format, buf);
|
2001-07-12 11:11:10 +00:00
|
|
|
os << doSubstitution(buf, cit->second.product);
|
2001-03-12 11:22:26 +00:00
|
|
|
return 0; // CHECK (FIXME check what ? - jbl)
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
2000-06-15 15:44:39 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
int InsetExternal::latex(Buffer const * buf,
|
2002-02-16 15:59:55 +00:00
|
|
|
ostream & os, bool, bool) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
|
|
|
return write("LaTeX", buf, os);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
int InsetExternal::ascii(Buffer const * buf, ostream & os, int) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
|
|
|
return write("Ascii", buf, os);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
int InsetExternal::linuxdoc(Buffer const * buf, ostream & os) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
|
|
|
return write("LinuxDoc", buf, os);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
int InsetExternal::docbook(Buffer const * buf, ostream & os, bool) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
|
|
|
return write("DocBook", buf, os);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetExternal::validate(LaTeXFeatures & features) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
ExternalTemplate const & et = params_.templ;
|
2000-06-12 11:27:15 +00:00
|
|
|
ExternalTemplate::Formats::const_iterator cit =
|
|
|
|
et.formats.find("LaTeX");
|
2001-03-12 11:22:26 +00:00
|
|
|
|
|
|
|
if (cit == et.formats.end())
|
2000-06-15 15:44:39 +00:00
|
|
|
return;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-07-12 11:11:10 +00:00
|
|
|
if (!cit->second.requirement.empty()) {
|
|
|
|
features.require(cit->second.requirement);
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
2001-07-12 11:11:10 +00:00
|
|
|
if (!cit->second.preamble.empty()) {
|
2001-11-19 15:34:11 +00:00
|
|
|
features.addExternalPreamble(cit->second.preamble + "\n");
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-06 15:57:54 +00:00
|
|
|
Inset * InsetExternal::clone(Buffer const &, bool same_id) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2002-05-30 09:43:29 +00:00
|
|
|
InsetExternal * inset = new InsetExternal;
|
2001-03-12 11:22:26 +00:00
|
|
|
inset->params_ = params_;
|
2001-04-11 17:14:20 +00:00
|
|
|
inset->view_ = view_;
|
2001-07-06 15:57:54 +00:00
|
|
|
if (same_id)
|
|
|
|
inset->id_ = id_;
|
2000-06-12 11:27:15 +00:00
|
|
|
return inset;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-28 12:24:16 +00:00
|
|
|
string const InsetExternal::getScreenLabel(Buffer const *) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
ExternalTemplate const & et = params_.templ;
|
|
|
|
if (et.guiName.empty())
|
2000-06-12 11:27:15 +00:00
|
|
|
return _("External");
|
2001-03-12 11:22:26 +00:00
|
|
|
else
|
|
|
|
return doSubstitution(0, et.guiName);
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-15 15:44:39 +00:00
|
|
|
void InsetExternal::executeCommand(string const & s,
|
|
|
|
Buffer const * buffer) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2002-01-14 23:31:23 +00:00
|
|
|
Path p(buffer->filePath());
|
2002-02-18 19:13:48 +00:00
|
|
|
Systemcall one;
|
2000-06-12 11:27:15 +00:00
|
|
|
if (lyxerr.debugging()) {
|
2000-06-15 15:44:39 +00:00
|
|
|
lyxerr << "Executing '" << s << "' in '"
|
2002-11-27 10:30:28 +00:00
|
|
|
<< buffer->filePath() << '\'' << endl;
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
2002-02-18 19:13:48 +00:00
|
|
|
one.startscript(Systemcall::Wait, s);
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
string const InsetExternal::doSubstitution(Buffer const * buffer,
|
2002-02-16 15:59:55 +00:00
|
|
|
string const & s) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
|
|
|
string result;
|
2001-03-12 11:22:26 +00:00
|
|
|
string const basename = ChangeExtension(params_.filename, string());
|
2002-01-14 23:31:23 +00:00
|
|
|
string filepath;
|
2002-03-07 16:03:36 +00:00
|
|
|
if (buffer && !buffer->tmppath.empty() && !buffer->niceFile) {
|
2002-01-14 23:31:23 +00:00
|
|
|
filepath = buffer->filePath();
|
2001-10-31 17:16:35 +00:00
|
|
|
}
|
2001-03-12 11:22:26 +00:00
|
|
|
result = subst(s, "$$FName", params_.filename);
|
2000-06-12 11:27:15 +00:00
|
|
|
result = subst(result, "$$Basename", basename);
|
2001-03-12 11:22:26 +00:00
|
|
|
result = subst(result, "$$Parameters", params_.parameters);
|
2001-10-31 15:19:49 +00:00
|
|
|
result = subst(result, "$$FPath", filepath);
|
2001-04-11 17:14:20 +00:00
|
|
|
result = subst(result, "$$Tempname", tempname_);
|
2000-06-12 11:27:15 +00:00
|
|
|
result = subst(result, "$$Sysdir", system_lyxdir);
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
// Handle the $$Contents(filename) syntax
|
|
|
|
if (contains(result, "$$Contents(\"")) {
|
|
|
|
|
2000-09-27 18:13:30 +00:00
|
|
|
string::size_type const pos = result.find("$$Contents(\"");
|
|
|
|
string::size_type const end = result.find("\")", pos);
|
2000-09-26 13:54:57 +00:00
|
|
|
string const file = result.substr(pos + 12, end - (pos + 12));
|
2000-06-12 11:27:15 +00:00
|
|
|
string contents;
|
|
|
|
if (buffer) {
|
|
|
|
// Make sure we are in the directory of the buffer
|
2002-01-14 23:31:23 +00:00
|
|
|
Path p(buffer->filePath());
|
2000-06-12 11:27:15 +00:00
|
|
|
contents = GetFileContents(file);
|
|
|
|
} else {
|
|
|
|
contents = GetFileContents(file);
|
|
|
|
}
|
2000-06-15 15:44:39 +00:00
|
|
|
result = subst(result,
|
|
|
|
("$$Contents(\"" + file + "\")").c_str(),
|
|
|
|
contents);
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-12 11:22:26 +00:00
|
|
|
void InsetExternal::updateExternal() const
|
2001-11-02 16:18:07 +00:00
|
|
|
{
|
2002-03-21 17:09:55 +00:00
|
|
|
updateExternal("LaTeX", view_->buffer());
|
2001-11-02 16:18:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void InsetExternal::updateExternal(string const & format,
|
|
|
|
Buffer const * buf) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
ExternalTemplate const & et = params_.templ;
|
|
|
|
ExternalTemplate::Formats::const_iterator cit =
|
2001-11-02 16:18:07 +00:00
|
|
|
et.formats.find(format);
|
|
|
|
|
|
|
|
if (cit == et.formats.end() ||
|
|
|
|
cit->second.updateCommand.empty() ||
|
|
|
|
!et.automaticProduction)
|
2001-03-12 11:22:26 +00:00
|
|
|
return;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-11-02 16:18:07 +00:00
|
|
|
if (!cit->second.updateResult.empty()) {
|
|
|
|
string const resultfile = doSubstitution(buf,
|
|
|
|
cit->second.updateResult);
|
|
|
|
FileInfo fi(params_.filename);
|
|
|
|
FileInfo fi2(resultfile);
|
|
|
|
if (fi2.exist() && fi.exist() &&
|
2002-05-30 16:47:45 +00:00
|
|
|
difftime(fi2.getModificationTime(),
|
|
|
|
fi.getModificationTime()) >= 0) {
|
2002-03-21 17:09:55 +00:00
|
|
|
lyxerr[Debug::FILES] << resultfile
|
2001-11-02 16:18:07 +00:00
|
|
|
<< " is up to date" << endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
executeCommand(doSubstitution(buf, cit->second.updateCommand), buf);
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-12 11:22:26 +00:00
|
|
|
void InsetExternal::viewExternal() const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
ExternalTemplate const & et = params_.templ;
|
2001-11-02 16:18:07 +00:00
|
|
|
if (et.viewCommand.empty())
|
|
|
|
return;
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2001-11-02 16:18:07 +00:00
|
|
|
updateExternal();
|
2001-04-11 17:14:20 +00:00
|
|
|
executeCommand(doSubstitution(view_->buffer(),
|
2001-03-30 13:47:39 +00:00
|
|
|
et.viewCommand),
|
2001-04-11 17:14:20 +00:00
|
|
|
view_->buffer());
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-12 11:22:26 +00:00
|
|
|
void InsetExternal::editExternal() const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
ExternalTemplate const & et = params_.templ;
|
2001-11-02 16:18:07 +00:00
|
|
|
if (et.editCommand.empty())
|
|
|
|
return;
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2001-11-02 16:18:07 +00:00
|
|
|
updateExternal();
|
2001-04-11 17:14:20 +00:00
|
|
|
executeCommand(doSubstitution(view_->buffer(),
|
2001-03-30 13:47:39 +00:00
|
|
|
et.editCommand),
|
2001-04-11 17:14:20 +00:00
|
|
|
view_->buffer());
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
2001-03-30 09:51:46 +00:00
|
|
|
|
|
|
|
|
2003-03-07 14:08:10 +00:00
|
|
|
string const InsetExternalMailer::name_("external");
|
|
|
|
|
2003-03-05 11:30:35 +00:00
|
|
|
InsetExternalMailer::InsetExternalMailer(InsetExternal & inset)
|
2003-03-07 14:08:10 +00:00
|
|
|
: inset_(inset)
|
2003-03-05 11:30:35 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
string const InsetExternalMailer::inset2string() const
|
|
|
|
{
|
2003-03-07 14:08:10 +00:00
|
|
|
return params2string(inset_.params());
|
2003-03-05 11:30:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetExternalMailer::string2params(string const & in,
|
|
|
|
InsetExternal::Params & params)
|
|
|
|
{
|
|
|
|
params = InsetExternal::Params();
|
|
|
|
|
2003-04-24 20:02:49 +00:00
|
|
|
if (in.empty())
|
|
|
|
return;
|
|
|
|
|
2003-05-13 16:24:49 +00:00
|
|
|
istringstream data(STRCONV(in));
|
2003-03-07 14:08:10 +00:00
|
|
|
LyXLex lex(0,0);
|
|
|
|
lex.setStream(data);
|
2003-03-05 11:30:35 +00:00
|
|
|
|
2003-03-07 14:08:10 +00:00
|
|
|
if (lex.isOK()) {
|
|
|
|
lex.next();
|
|
|
|
string const token = lex.getString();
|
|
|
|
if (token != name_)
|
|
|
|
return;
|
|
|
|
}
|
2003-03-05 11:30:35 +00:00
|
|
|
|
|
|
|
// This is part of the inset proper that is usually swallowed
|
|
|
|
// by Buffer::readInset
|
2003-03-07 14:08:10 +00:00
|
|
|
if (lex.isOK()) {
|
|
|
|
lex.next();
|
|
|
|
string const token = lex.getString();
|
|
|
|
if (token != "External")
|
|
|
|
return;
|
|
|
|
}
|
2003-03-05 11:30:35 +00:00
|
|
|
|
2003-03-10 03:11:54 +00:00
|
|
|
if (lex.isOK()) {
|
2003-04-24 20:02:49 +00:00
|
|
|
InsetExternal inset;
|
2003-03-10 03:11:54 +00:00
|
|
|
inset.read(0, lex);
|
|
|
|
params = inset.params();
|
|
|
|
}
|
2003-03-05 11:30:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string const
|
2003-03-07 14:08:10 +00:00
|
|
|
InsetExternalMailer::params2string(InsetExternal::Params const & params)
|
2003-03-05 11:30:35 +00:00
|
|
|
{
|
|
|
|
InsetExternal inset;
|
|
|
|
inset.setFromParams(params);
|
|
|
|
ostringstream data;
|
2003-03-07 14:08:10 +00:00
|
|
|
data << name_ << ' ';
|
2003-03-05 11:30:35 +00:00
|
|
|
inset.write(0, data);
|
|
|
|
data << "\\end_inset\n";
|
2003-05-13 16:24:49 +00:00
|
|
|
return STRCONV(data.str());
|
2003-03-05 11:30:35 +00:00
|
|
|
}
|