2002-09-25 14:26:13 +00:00
|
|
|
/**
|
2003-02-21 09:20:18 +00:00
|
|
|
* \file insetbibtex.C
|
2002-09-25 14:26:13 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Alejandro Aguilar Sierra
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-09-25 14:26:13 +00:00
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2003-06-02 10:03:27 +00:00
|
|
|
#include <config.h>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2003-02-21 09:20:18 +00:00
|
|
|
#include "insetbibtex.h"
|
2003-09-05 09:01:27 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "buffer.h"
|
2003-09-09 11:24:33 +00:00
|
|
|
#include "bufferparams.h"
|
2003-10-29 10:47:21 +00:00
|
|
|
#include "dispatchresult.h"
|
2003-02-21 09:20:18 +00:00
|
|
|
#include "debug.h"
|
2003-02-26 19:28:38 +00:00
|
|
|
#include "funcrequest.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "gettext.h"
|
2005-07-14 12:53:12 +00:00
|
|
|
#include "LaTeXFeatures.h"
|
2003-09-05 09:01:27 +00:00
|
|
|
#include "metricsinfo.h"
|
2003-11-05 12:06:20 +00:00
|
|
|
#include "outputparams.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
2005-07-14 12:53:12 +00:00
|
|
|
#include "frontends/Alert.h"
|
|
|
|
|
|
|
|
#include "support/filename.h"
|
1999-10-02 16:21:10 +00:00
|
|
|
#include "support/filetools.h"
|
2001-07-29 17:39:01 +00:00
|
|
|
#include "support/lstrings.h"
|
2005-07-14 12:53:12 +00:00
|
|
|
#include "support/lyxlib.h"
|
2003-09-05 09:01:27 +00:00
|
|
|
#include "support/os.h"
|
|
|
|
#include "support/path.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
2005-07-14 12:53:12 +00:00
|
|
|
#include <boost/tokenizer.hpp>
|
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
#include <fstream>
|
2005-07-14 12:53:12 +00:00
|
|
|
#include <sstream>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2006-10-11 19:40:50 +00:00
|
|
|
using lyx::docstring;
|
2006-10-19 16:51:30 +00:00
|
|
|
using lyx::odocstream;
|
2006-04-08 22:31:11 +00:00
|
|
|
using lyx::support::absolutePath;
|
2003-09-09 22:13:45 +00:00
|
|
|
using lyx::support::ascii_lowercase;
|
2006-04-08 22:31:11 +00:00
|
|
|
using lyx::support::changeExtension;
|
2003-09-09 22:13:45 +00:00
|
|
|
using lyx::support::contains;
|
2005-07-14 12:53:12 +00:00
|
|
|
using lyx::support::copy;
|
|
|
|
using lyx::support::FileName;
|
2003-09-09 22:13:45 +00:00
|
|
|
using lyx::support::findtexfile;
|
2006-04-08 09:09:57 +00:00
|
|
|
using lyx::support::isFileReadable;
|
2005-04-18 17:43:11 +00:00
|
|
|
using lyx::support::latex_path;
|
2003-09-09 22:13:45 +00:00
|
|
|
using lyx::support::ltrim;
|
2006-04-08 22:31:11 +00:00
|
|
|
using lyx::support::makeAbsPath;
|
|
|
|
using lyx::support::makeRelPath;
|
2003-09-09 22:13:45 +00:00
|
|
|
using lyx::support::Path;
|
|
|
|
using lyx::support::prefixIs;
|
2006-04-01 10:49:58 +00:00
|
|
|
using lyx::support::removeExtension;
|
2003-09-09 22:13:45 +00:00
|
|
|
using lyx::support::rtrim;
|
|
|
|
using lyx::support::split;
|
|
|
|
using lyx::support::subst;
|
|
|
|
using lyx::support::tokenPos;
|
|
|
|
using lyx::support::trim;
|
2003-06-30 23:56:22 +00:00
|
|
|
|
2006-10-07 16:47:54 +00:00
|
|
|
namespace Alert = lyx::frontend::Alert;
|
2003-09-16 11:03:20 +00:00
|
|
|
namespace os = lyx::support::os;
|
|
|
|
|
2000-03-28 02:18:55 +00:00
|
|
|
using std::endl;
|
2003-09-05 09:01:27 +00:00
|
|
|
using std::getline;
|
2003-10-06 15:43:21 +00:00
|
|
|
using std::string;
|
2003-09-05 09:01:27 +00:00
|
|
|
using std::ifstream;
|
|
|
|
using std::ostream;
|
2000-06-07 08:53:40 +00:00
|
|
|
using std::pair;
|
2003-09-05 09:01:27 +00:00
|
|
|
using std::vector;
|
2003-02-18 12:36:02 +00:00
|
|
|
|
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
InsetBibtex::InsetBibtex(InsetCommandParams const & p)
|
2003-12-11 15:23:15 +00:00
|
|
|
: InsetCommand(p, "bibtex")
|
2000-07-15 23:51:46 +00:00
|
|
|
{}
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2004-11-23 23:04:52 +00:00
|
|
|
std::auto_ptr<InsetBase> InsetBibtex::doClone() const
|
2003-09-03 17:28:39 +00:00
|
|
|
{
|
2003-09-03 17:40:58 +00:00
|
|
|
return std::auto_ptr<InsetBase>(new InsetBibtex(*this));
|
2003-09-03 17:28:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-11-24 21:58:42 +00:00
|
|
|
void InsetBibtex::doDispatch(LCursor & cur, FuncRequest & cmd)
|
2003-02-26 19:28:38 +00:00
|
|
|
{
|
2003-03-07 21:44:48 +00:00
|
|
|
switch (cmd.action) {
|
2003-05-16 07:44:00 +00:00
|
|
|
|
2003-03-07 21:44:48 +00:00
|
|
|
case LFUN_INSET_MODIFY: {
|
Rework InsetCommandParams interface and file storage
* src/insets/insetcommandparams.[Ch]:
(operator[]): New, access a parameter
(clear): New, clear all parameters
(info_): New, stire info about this command
(cmdname): Rename to name_
(contents, options, sec_options): Replace with params_. Parameters
are now stored as docstring.
(findInfo): New factor for command info for all commands
(read, write): Use new syntax
(parameter set and get methods): reimplemenmt for new parameter storage
* src/insets/insetcommand.h
(getParam): New, get a parameter
(setParam): New, set a parameter
(parameter set and get methods): Adjust to InsetCommandParams changes
* src/insets/insetbibitem.[Ch]
(write): Remove, not needed anymore
(directWrite): ditto
* src/insets/insetbibitem.C
(InsetBibitem::read): Use InsetCommand::read
* src/insets/insetref.C
(InsetRef::latex): Use new InsetCommandParams interface
* src/mathed/InsetMathHull.C
(InsetMathHull::doDispatch): ditto
* src/text3.C
(LyXText::dispatch): ditto
* src/factory.C
(createInset): Create InsetCommandParams with command name
(readInset): ditto
(readInset): Remove error message for bibitem, since bibitem is
now a normal command inset
* src/buffer.C: Bump file format number
* src/frontends/controllers/ControlCommand.[Ch]
(ControlCommand): take an additional command name parameter
* src/text.C
(readParToken): Remove code for \bibitem
* lib/lyx2lyx/LyX.py: Bump latest file format number
* lib/lyx2lyx/lyx_1_5.py
(convert_bibitem, convert_commandparams): new, convert to new format
(revert_commandparams): new, convert to old format
* development/FORMAT: document new format
* many other files: Adjust to the changes above
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15357 a592a061-630c-0410-9148-cb99ea01b6c8
2006-10-17 21:07:16 +00:00
|
|
|
InsetCommandParams p("bibtex");
|
2006-09-01 15:41:38 +00:00
|
|
|
InsetCommandMailer::string2params("bibtex", lyx::to_utf8(cmd.argument()), p);
|
2006-04-15 11:46:17 +00:00
|
|
|
if (!p.getCmdName().empty()) {
|
2003-11-03 19:52:47 +00:00
|
|
|
setParams(p);
|
2006-04-15 11:46:17 +00:00
|
|
|
cur.buffer().updateBibfilesCache();
|
|
|
|
} else
|
2005-05-17 11:11:45 +00:00
|
|
|
cur.noUpdate();
|
2004-02-16 11:58:51 +00:00
|
|
|
break;
|
2003-03-07 21:44:48 +00:00
|
|
|
}
|
2004-04-03 08:37:12 +00:00
|
|
|
|
2003-03-07 21:44:48 +00:00
|
|
|
default:
|
2004-11-24 21:58:42 +00:00
|
|
|
InsetCommand::doDispatch(cur, cmd);
|
2004-02-16 11:58:51 +00:00
|
|
|
break;
|
2003-02-26 19:28:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-03 19:52:47 +00:00
|
|
|
|
2006-10-11 19:40:50 +00:00
|
|
|
docstring const InsetBibtex::getScreenLabel(Buffer const &) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2006-10-11 19:40:50 +00:00
|
|
|
return _("BibTeX Generated Bibliography");
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-04-20 12:46:15 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
string normalize_name(Buffer const & buffer, OutputParams const & runparams,
|
|
|
|
string const & name, string const & ext)
|
|
|
|
{
|
2006-04-08 22:31:11 +00:00
|
|
|
string const fname = makeAbsPath(name, buffer.filePath());
|
|
|
|
if (absolutePath(name) || !isFileReadable(fname + ext))
|
2004-04-20 12:46:15 +00:00
|
|
|
return name;
|
2004-04-29 07:58:52 +00:00
|
|
|
else if (!runparams.nice)
|
2004-04-20 12:46:15 +00:00
|
|
|
return fname;
|
2004-04-29 07:58:52 +00:00
|
|
|
else
|
2006-04-08 22:31:11 +00:00
|
|
|
return makeRelPath(fname, buffer.getMasterBuffer()->filePath());
|
2004-04-20 12:46:15 +00:00
|
|
|
}
|
2004-04-29 07:58:52 +00:00
|
|
|
|
2004-04-20 12:46:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-19 16:51:30 +00:00
|
|
|
int InsetBibtex::latex(Buffer const & buffer, odocstream & os,
|
2003-11-05 12:06:20 +00:00
|
|
|
OutputParams const & runparams) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2004-03-29 13:17:25 +00:00
|
|
|
// the sequence of the commands:
|
2001-08-20 13:42:29 +00:00
|
|
|
// 1. \bibliographystyle{style}
|
2003-09-03 17:40:58 +00:00
|
|
|
// 2. \addcontentsline{...} - if option bibtotoc set
|
|
|
|
// 3. \bibliography{database}
|
2004-03-29 13:17:25 +00:00
|
|
|
// and with bibtopic:
|
|
|
|
// 1. \bibliographystyle{style}
|
|
|
|
// 2. \begin{btSect}{database}
|
|
|
|
// 3. \btPrint{Cited|NotCited|All}
|
|
|
|
// 4. \end{btSect}
|
2004-04-03 08:37:12 +00:00
|
|
|
|
2005-07-14 12:53:12 +00:00
|
|
|
// Database(s)
|
|
|
|
// If we are processing the LaTeX file in a temp directory then
|
|
|
|
// copy the .bib databases to this temp directory, mangling their
|
|
|
|
// names in the process. Store this mangled name in the list of
|
|
|
|
// all databases.
|
|
|
|
// (We need to do all this because BibTeX *really*, *really*
|
|
|
|
// can't handle "files with spaces" and Windows users tend to
|
|
|
|
// use such filenames.)
|
|
|
|
// Otherwise, store the (maybe absolute) path to the original,
|
|
|
|
// unmangled database name.
|
|
|
|
typedef boost::char_separator<char> Separator;
|
|
|
|
typedef boost::tokenizer<Separator> Tokenizer;
|
|
|
|
|
|
|
|
Separator const separator(",");
|
2006-10-20 16:12:49 +00:00
|
|
|
Tokenizer const tokens(lyx::to_utf8(getParam("bibfiles")), separator);
|
2005-07-14 12:53:12 +00:00
|
|
|
Tokenizer::const_iterator const begin = tokens.begin();
|
|
|
|
Tokenizer::const_iterator const end = tokens.end();
|
|
|
|
|
|
|
|
std::ostringstream dbs;
|
|
|
|
for (Tokenizer::const_iterator it = begin; it != end; ++it) {
|
|
|
|
string const input = trim(*it);
|
|
|
|
string database =
|
|
|
|
normalize_name(buffer, runparams, input, ".bib");
|
|
|
|
string const in_file = database + ".bib";
|
|
|
|
|
2006-04-10 16:27:59 +00:00
|
|
|
if (!runparams.inComment && !runparams.dryrun && !runparams.nice &&
|
2006-04-08 09:09:57 +00:00
|
|
|
isFileReadable(in_file)) {
|
2005-07-14 12:53:12 +00:00
|
|
|
|
2006-04-01 10:49:58 +00:00
|
|
|
// mangledFilename() needs the extension
|
|
|
|
database = removeExtension(FileName(in_file).mangledFilename());
|
2006-04-08 22:31:11 +00:00
|
|
|
string const out_file = makeAbsPath(database + ".bib",
|
2005-11-18 08:57:56 +00:00
|
|
|
buffer.getMasterBuffer()->temppath());
|
2005-07-14 12:53:12 +00:00
|
|
|
|
|
|
|
bool const success = copy(in_file, out_file);
|
|
|
|
if (!success) {
|
|
|
|
lyxerr << "Failed to copy '" << in_file
|
|
|
|
<< "' to '" << out_file << "'"
|
|
|
|
<< endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (it != begin)
|
|
|
|
dbs << ',';
|
|
|
|
dbs << latex_path(database);
|
|
|
|
}
|
2006-10-20 16:12:49 +00:00
|
|
|
// FIXME UNICODE
|
|
|
|
docstring const db_out = lyx::from_utf8(dbs.str());
|
2005-07-14 12:53:12 +00:00
|
|
|
|
|
|
|
// Post this warning only once.
|
|
|
|
static bool warned_about_spaces = false;
|
|
|
|
if (!warned_about_spaces &&
|
2006-10-20 16:12:49 +00:00
|
|
|
runparams.nice && db_out.find(' ') != docstring::npos) {
|
2005-07-14 12:53:12 +00:00
|
|
|
warned_about_spaces = true;
|
|
|
|
|
2006-09-11 08:54:10 +00:00
|
|
|
Alert::warning(_("Export Warning!"),
|
|
|
|
_("There are spaces in the paths to your BibTeX databases.\n"
|
|
|
|
"BibTeX will be unable to find them."));
|
2005-07-14 12:53:12 +00:00
|
|
|
|
2004-03-29 13:17:25 +00:00
|
|
|
}
|
2003-09-03 17:40:58 +00:00
|
|
|
|
|
|
|
// Style-Options
|
2006-10-20 16:12:49 +00:00
|
|
|
string style = lyx::to_utf8(getParam("options")); // maybe empty! and with bibtotoc
|
2003-09-03 17:40:58 +00:00
|
|
|
string bibtotoc;
|
|
|
|
if (prefixIs(style, "bibtotoc")) {
|
|
|
|
bibtotoc = "bibtotoc";
|
|
|
|
if (contains(style, ',')) {
|
|
|
|
style = split(style, bibtotoc, ',');
|
|
|
|
}
|
|
|
|
}
|
2004-04-03 08:37:12 +00:00
|
|
|
|
2004-03-29 13:17:25 +00:00
|
|
|
// line count
|
2005-07-14 12:53:12 +00:00
|
|
|
int nlines = 0;
|
2001-08-20 13:42:29 +00:00
|
|
|
|
2004-03-29 13:17:25 +00:00
|
|
|
if (!style.empty()) {
|
2006-04-01 10:49:58 +00:00
|
|
|
string base =
|
|
|
|
normalize_name(buffer, runparams, style, ".bst");
|
|
|
|
string const in_file = base + ".bst";
|
|
|
|
// If this style does not come from texmf and we are not
|
|
|
|
// exporting to .tex copy it to the tmp directory.
|
|
|
|
// This prevents problems with spaces and 8bit charcaters
|
|
|
|
// in the file name.
|
2006-04-10 16:27:59 +00:00
|
|
|
if (!runparams.inComment && !runparams.dryrun && !runparams.nice &&
|
2006-04-08 09:09:57 +00:00
|
|
|
isFileReadable(in_file)) {
|
2006-04-01 10:49:58 +00:00
|
|
|
// use new style name
|
|
|
|
base = removeExtension(
|
|
|
|
FileName(in_file).mangledFilename());
|
2006-04-08 22:31:11 +00:00
|
|
|
string const out_file = makeAbsPath(base + ".bst",
|
2006-04-01 10:49:58 +00:00
|
|
|
buffer.getMasterBuffer()->temppath());
|
|
|
|
bool const success = copy(in_file, out_file);
|
|
|
|
if (!success) {
|
|
|
|
lyxerr << "Failed to copy '" << in_file
|
|
|
|
<< "' to '" << out_file << "'"
|
|
|
|
<< endl;
|
|
|
|
}
|
|
|
|
}
|
2006-10-19 16:51:30 +00:00
|
|
|
// FIXME UNICODE
|
2004-04-20 12:46:15 +00:00
|
|
|
os << "\\bibliographystyle{"
|
2006-10-19 16:51:30 +00:00
|
|
|
<< lyx::from_utf8(latex_path(normalize_name(buffer, runparams, base, ".bst")))
|
2004-04-20 12:46:15 +00:00
|
|
|
<< "}\n";
|
2005-07-14 12:53:12 +00:00
|
|
|
nlines += 1;
|
2004-03-29 13:17:25 +00:00
|
|
|
}
|
2004-04-03 08:37:12 +00:00
|
|
|
|
2006-04-01 10:49:58 +00:00
|
|
|
// Post this warning only once.
|
|
|
|
static bool warned_about_bst_spaces = false;
|
|
|
|
if (!warned_about_bst_spaces && runparams.nice && contains(style, ' ')) {
|
|
|
|
warned_about_bst_spaces = true;
|
2006-09-11 08:54:10 +00:00
|
|
|
Alert::warning(_("Export Warning!"),
|
|
|
|
_("There are spaces in the path to your BibTeX style file.\n"
|
|
|
|
"BibTeX will be unable to find it."));
|
2006-04-01 10:49:58 +00:00
|
|
|
}
|
|
|
|
|
2005-07-14 12:53:12 +00:00
|
|
|
if (!db_out.empty() && buffer.params().use_bibtopic){
|
2006-10-20 16:12:49 +00:00
|
|
|
os << "\\begin{btSect}{" << db_out << "}\n";
|
2006-10-19 16:51:30 +00:00
|
|
|
docstring btprint = getParam("btprint");
|
2004-03-29 13:17:25 +00:00
|
|
|
if (btprint.empty())
|
|
|
|
// default
|
2006-10-19 16:51:30 +00:00
|
|
|
btprint = lyx::from_ascii("btPrintCited");
|
2004-03-29 13:17:25 +00:00
|
|
|
os << "\\" << btprint << "\n"
|
|
|
|
<< "\\end{btSect}\n";
|
2005-07-14 12:53:12 +00:00
|
|
|
nlines += 3;
|
2001-08-20 13:42:29 +00:00
|
|
|
}
|
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
// bibtotoc-Option
|
2004-03-29 13:17:25 +00:00
|
|
|
if (!bibtotoc.empty() && !buffer.params().use_bibtopic) {
|
2003-09-03 17:40:58 +00:00
|
|
|
// maybe a problem when a textclass has no "art" as
|
|
|
|
// part of its name, because it's than book.
|
|
|
|
// For the "official" lyx-layouts it's no problem to support
|
|
|
|
// all well
|
2003-09-09 09:47:59 +00:00
|
|
|
if (!contains(buffer.params().getLyXTextClass().name(),
|
2003-09-03 17:40:58 +00:00
|
|
|
"art")) {
|
2003-09-09 09:47:59 +00:00
|
|
|
if (buffer.params().sides == LyXTextClass::OneSide) {
|
2003-09-03 17:40:58 +00:00
|
|
|
// oneside
|
|
|
|
os << "\\clearpage";
|
2001-08-20 13:42:29 +00:00
|
|
|
} else {
|
2003-09-03 17:40:58 +00:00
|
|
|
// twoside
|
|
|
|
os << "\\cleardoublepage";
|
2001-08-20 13:42:29 +00:00
|
|
|
}
|
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
// bookclass
|
|
|
|
os << "\\addcontentsline{toc}{chapter}{\\bibname}";
|
|
|
|
|
2001-08-20 13:42:29 +00:00
|
|
|
} else {
|
|
|
|
// article class
|
2003-09-03 17:40:58 +00:00
|
|
|
os << "\\addcontentsline{toc}{section}{\\refname}";
|
2001-08-20 13:42:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-14 12:53:12 +00:00
|
|
|
if (!db_out.empty() && !buffer.params().use_bibtopic){
|
2006-10-20 16:12:49 +00:00
|
|
|
os << "\\bibliography{" << db_out << "}\n";
|
2005-07-14 12:53:12 +00:00
|
|
|
nlines += 1;
|
2000-03-02 02:19:43 +00:00
|
|
|
}
|
2004-04-03 08:37:12 +00:00
|
|
|
|
2005-07-14 12:53:12 +00:00
|
|
|
return nlines;
|
2003-09-03 17:28:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
vector<string> const InsetBibtex::getFiles(Buffer const & buffer) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2003-09-03 17:40:58 +00:00
|
|
|
Path p(buffer.filePath());
|
2001-08-20 13:42:29 +00:00
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
vector<string> vec;
|
2000-05-17 13:40:40 +00:00
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
string tmp;
|
2006-10-20 16:12:49 +00:00
|
|
|
// FIXME UNICODE
|
|
|
|
string bibfiles = lyx::to_utf8(getParam("bibfiles"));
|
2003-09-03 17:40:58 +00:00
|
|
|
bibfiles = split(bibfiles, tmp, ',');
|
|
|
|
while (!tmp.empty()) {
|
2006-04-08 22:31:11 +00:00
|
|
|
string file = findtexfile(changeExtension(tmp, "bib"), "bib");
|
2003-09-03 17:40:58 +00:00
|
|
|
lyxerr[Debug::LATEX] << "Bibfile: " << file << endl;
|
2001-08-20 13:42:29 +00:00
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
// If we didn't find a matching file name just fail silently
|
|
|
|
if (!file.empty())
|
|
|
|
vec.push_back(file);
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
// Get next file name
|
|
|
|
bibfiles = split(bibfiles, tmp, ',');
|
2001-08-20 13:42:29 +00:00
|
|
|
}
|
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
return vec;
|
2001-08-20 13:42:29 +00:00
|
|
|
}
|
|
|
|
|
2003-02-18 12:36:02 +00:00
|
|
|
|
2001-08-20 13:42:29 +00:00
|
|
|
// This method returns a comma separated list of Bibtex entries
|
2003-08-28 07:41:31 +00:00
|
|
|
void InsetBibtex::fillWithBibKeys(Buffer const & buffer,
|
2003-06-28 01:23:11 +00:00
|
|
|
std::vector<std::pair<string, string> > & keys) const
|
2001-08-20 13:42:29 +00:00
|
|
|
{
|
2003-08-28 07:41:31 +00:00
|
|
|
vector<string> const files = getFiles(buffer);
|
2001-08-20 13:42:29 +00:00
|
|
|
for (vector<string>::const_iterator it = files.begin();
|
|
|
|
it != files.end(); ++ it) {
|
|
|
|
// This is a _very_ simple parser for Bibtex database
|
|
|
|
// files. All it does is to look for lines starting
|
|
|
|
// in @ and not being @preamble and @string entries.
|
|
|
|
// It does NOT do any syntax checking!
|
|
|
|
ifstream ifs(it->c_str());
|
|
|
|
string linebuf0;
|
|
|
|
while (getline(ifs, linebuf0)) {
|
2003-09-03 17:40:58 +00:00
|
|
|
string linebuf = trim(linebuf0);
|
2002-02-16 15:59:55 +00:00
|
|
|
if (linebuf.empty()) continue;
|
2003-09-03 17:40:58 +00:00
|
|
|
if (prefixIs(linebuf, "@")) {
|
|
|
|
linebuf = subst(linebuf, '{', '(');
|
2001-08-20 13:42:29 +00:00
|
|
|
string tmp;
|
2003-09-03 17:40:58 +00:00
|
|
|
linebuf = split(linebuf, tmp, '(');
|
|
|
|
tmp = ascii_lowercase(tmp);
|
|
|
|
if (!prefixIs(tmp, "@string")
|
|
|
|
&& !prefixIs(tmp, "@preamble")) {
|
|
|
|
linebuf = split(linebuf, tmp, ',');
|
|
|
|
tmp = ltrim(tmp, " \t");
|
2001-08-20 13:42:29 +00:00
|
|
|
if (!tmp.empty()) {
|
|
|
|
keys.push_back(pair<string,string>(tmp,string()));
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
2001-08-20 13:42:29 +00:00
|
|
|
} else if (!keys.empty()) {
|
|
|
|
keys.back().second += linebuf + "\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-11-24 22:14:46 +00:00
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
bool InsetBibtex::addDatabase(string const & db)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2006-10-20 16:12:49 +00:00
|
|
|
// FIXME UNICODE
|
|
|
|
string bibfiles(lyx::to_utf8(getParam("bibfiles")));
|
|
|
|
if (tokenPos(bibfiles, ',', db) == -1) {
|
|
|
|
if (!bibfiles.empty())
|
|
|
|
bibfiles += ',';
|
|
|
|
setParam("bibfiles", lyx::from_utf8(bibfiles + db));
|
1999-09-27 18:44:28 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
bool InsetBibtex::delDatabase(string const & db)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2006-10-20 16:12:49 +00:00
|
|
|
// FIXME UNICODE
|
|
|
|
string bibfiles(lyx::to_utf8(getParam("bibfiles")));
|
|
|
|
if (contains(bibfiles, db)) {
|
|
|
|
int const n = tokenPos(bibfiles, ',', db);
|
1999-10-02 16:21:10 +00:00
|
|
|
string bd = db;
|
1999-09-27 18:44:28 +00:00
|
|
|
if (n > 0) {
|
2005-06-25 15:57:15 +00:00
|
|
|
// this is not the first database
|
|
|
|
string tmp = ',' + bd;
|
2006-10-20 16:12:49 +00:00
|
|
|
setParam("bibfiles", lyx::from_utf8(subst(bibfiles, tmp, string())));
|
1999-11-15 10:58:38 +00:00
|
|
|
} else if (n == 0)
|
2005-06-25 15:57:15 +00:00
|
|
|
// this is the first (or only) database
|
2006-10-20 16:12:49 +00:00
|
|
|
setParam("bibfiles", lyx::from_utf8(split(bibfiles, bd, ',')));
|
2002-03-21 17:09:55 +00:00
|
|
|
else
|
1999-09-27 18:44:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2004-03-29 13:17:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
void InsetBibtex::validate(LaTeXFeatures & features) const
|
|
|
|
{
|
|
|
|
if (features.bufferParams().use_bibtopic)
|
|
|
|
features.require("bibtopic");
|
|
|
|
}
|