2007-08-14 16:50:51 +00:00
|
|
|
/**
|
2007-08-20 16:30:02 +00:00
|
|
|
* \file BiblioInfo.cpp
|
2007-08-14 16:50:51 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Angus Leeming
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Herbert Voß
|
2007-08-20 16:30:02 +00:00
|
|
|
* \author Richard Heck
|
2013-01-07 14:51:19 +00:00
|
|
|
* \author Julien Rioux
|
2007-08-14 16:50:51 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
2007-08-14 22:18:27 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2007-08-20 17:04:36 +00:00
|
|
|
#include "BiblioInfo.h"
|
2007-08-20 16:30:02 +00:00
|
|
|
#include "Buffer.h"
|
|
|
|
#include "BufferParams.h"
|
2007-08-15 08:57:58 +00:00
|
|
|
#include "buffer_funcs.h"
|
2017-01-07 16:12:08 +00:00
|
|
|
#include "Citation.h"
|
2009-01-16 23:42:16 +00:00
|
|
|
#include "Encoding.h"
|
2007-08-14 16:50:51 +00:00
|
|
|
#include "InsetIterator.h"
|
2010-03-29 20:21:30 +00:00
|
|
|
#include "Language.h"
|
2013-03-27 19:46:32 +00:00
|
|
|
#include "output_xhtml.h"
|
2007-08-14 16:50:51 +00:00
|
|
|
#include "Paragraph.h"
|
2010-03-29 18:37:25 +00:00
|
|
|
#include "TextClass.h"
|
2010-01-08 16:40:41 +00:00
|
|
|
#include "TocBackend.h"
|
2007-08-14 16:50:51 +00:00
|
|
|
|
2010-01-08 18:19:13 +00:00
|
|
|
#include "support/convert.h"
|
2010-03-27 12:58:26 +00:00
|
|
|
#include "support/debug.h"
|
2007-11-01 22:17:22 +00:00
|
|
|
#include "support/docstream.h"
|
2007-11-29 07:04:28 +00:00
|
|
|
#include "support/gettext.h"
|
2008-11-19 03:52:22 +00:00
|
|
|
#include "support/lassert.h"
|
2007-11-29 07:04:28 +00:00
|
|
|
#include "support/lstrings.h"
|
2010-06-29 17:09:40 +00:00
|
|
|
#include "support/regex.h"
|
2011-10-29 11:22:17 +00:00
|
|
|
#include "support/textutils.h"
|
2007-08-14 22:18:27 +00:00
|
|
|
|
2010-01-08 16:40:41 +00:00
|
|
|
#include <set>
|
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2007-12-12 18:57:56 +00:00
|
|
|
using namespace lyx::support;
|
2007-08-14 16:50:51 +00:00
|
|
|
|
2007-11-05 20:33:20 +00:00
|
|
|
|
2008-04-20 15:00:11 +00:00
|
|
|
namespace lyx {
|
2007-08-14 16:50:51 +00:00
|
|
|
|
2009-04-09 12:55:47 +00:00
|
|
|
namespace {
|
2009-01-17 00:16:31 +00:00
|
|
|
|
2009-04-09 12:55:47 +00:00
|
|
|
// gets the "family name" from an author-type string
|
2008-04-25 20:03:03 +00:00
|
|
|
docstring familyName(docstring const & name)
|
2007-11-05 20:33:20 +00:00
|
|
|
{
|
|
|
|
if (name.empty())
|
|
|
|
return docstring();
|
2007-08-14 16:50:51 +00:00
|
|
|
|
2009-01-04 23:35:08 +00:00
|
|
|
// first we look for a comma, and take the last name to be everything
|
|
|
|
// preceding the right-most one, so that we also get the "jr" part.
|
|
|
|
docstring::size_type idx = name.rfind(',');
|
2007-11-05 20:33:20 +00:00
|
|
|
if (idx != docstring::npos)
|
2009-01-04 23:35:08 +00:00
|
|
|
return ltrim(name.substr(0, idx));
|
|
|
|
|
|
|
|
// OK, so now we want to look for the last name. We're going to
|
|
|
|
// include the "von" part. This isn't perfect.
|
|
|
|
// Split on spaces, to get various tokens.
|
|
|
|
vector<docstring> pieces = getVectorFromString(name, from_ascii(" "));
|
|
|
|
// If we only get two, assume the last one is the last name
|
|
|
|
if (pieces.size() <= 2)
|
|
|
|
return pieces.back();
|
|
|
|
|
|
|
|
// Now we look for the first token that begins with a lower case letter.
|
|
|
|
vector<docstring>::const_iterator it = pieces.begin();
|
|
|
|
vector<docstring>::const_iterator en = pieces.end();
|
|
|
|
for (; it != en; ++it) {
|
2012-10-21 19:14:16 +00:00
|
|
|
if ((*it).empty())
|
2009-01-04 23:35:08 +00:00
|
|
|
continue;
|
|
|
|
char_type const c = (*it)[0];
|
|
|
|
if (isLower(c))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (it == en) // we never found a "von"
|
|
|
|
return pieces.back();
|
|
|
|
|
|
|
|
// reconstruct what we need to return
|
|
|
|
docstring retval;
|
|
|
|
bool first = true;
|
|
|
|
for (; it != en; ++it) {
|
|
|
|
if (!first)
|
|
|
|
retval += " ";
|
2011-12-03 22:15:11 +00:00
|
|
|
else
|
2009-01-04 23:35:08 +00:00
|
|
|
first = false;
|
|
|
|
retval += *it;
|
|
|
|
}
|
|
|
|
return retval;
|
2007-11-05 20:33:20 +00:00
|
|
|
}
|
2007-08-14 16:50:51 +00:00
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
|
2009-04-09 12:55:47 +00:00
|
|
|
// converts a string containing LaTeX commands into unicode
|
|
|
|
// for display.
|
|
|
|
docstring convertLaTeXCommands(docstring const & str)
|
|
|
|
{
|
|
|
|
docstring val = str;
|
|
|
|
docstring ret;
|
|
|
|
|
|
|
|
bool scanning_cmd = false;
|
|
|
|
bool scanning_math = false;
|
|
|
|
bool escaped = false; // used to catch \$, etc.
|
2012-10-21 19:14:16 +00:00
|
|
|
while (!val.empty()) {
|
2009-04-09 12:55:47 +00:00
|
|
|
char_type const ch = val[0];
|
|
|
|
|
|
|
|
// if we're scanning math, we output everything until we
|
|
|
|
// find an unescaped $, at which point we break out.
|
|
|
|
if (scanning_math) {
|
|
|
|
if (escaped)
|
|
|
|
escaped = false;
|
|
|
|
else if (ch == '\\')
|
|
|
|
escaped = true;
|
2011-12-03 22:15:11 +00:00
|
|
|
else if (ch == '$')
|
2009-04-09 12:55:47 +00:00
|
|
|
scanning_math = false;
|
|
|
|
ret += ch;
|
|
|
|
val = val.substr(1);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if we're scanning a command name, then we just
|
|
|
|
// discard characters until we hit something that
|
|
|
|
// isn't alpha.
|
|
|
|
if (scanning_cmd) {
|
|
|
|
if (isAlphaASCII(ch)) {
|
|
|
|
val = val.substr(1);
|
|
|
|
escaped = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// so we're done with this command.
|
|
|
|
// now we fall through and check this character.
|
|
|
|
scanning_cmd = false;
|
|
|
|
}
|
|
|
|
|
2009-12-13 21:14:36 +00:00
|
|
|
// was the last character a \? If so, then this is something like:
|
|
|
|
// \\ or \$, so we'll just output it. That's probably not always right...
|
2009-04-09 12:55:47 +00:00
|
|
|
if (escaped) {
|
2009-12-13 09:50:30 +00:00
|
|
|
// exception: output \, as THIN SPACE
|
|
|
|
if (ch == ',')
|
|
|
|
ret.push_back(0x2009);
|
|
|
|
else
|
|
|
|
ret += ch;
|
2009-04-09 12:55:47 +00:00
|
|
|
val = val.substr(1);
|
|
|
|
escaped = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ch == '$') {
|
|
|
|
ret += ch;
|
|
|
|
val = val.substr(1);
|
|
|
|
scanning_math = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we just ignore braces
|
|
|
|
if (ch == '{' || ch == '}') {
|
|
|
|
val = val.substr(1);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we're going to check things that look like commands, so if
|
|
|
|
// this doesn't, just output it.
|
|
|
|
if (ch != '\\') {
|
|
|
|
ret += ch;
|
|
|
|
val = val.substr(1);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ok, could be a command of some sort
|
|
|
|
// let's see if it corresponds to some unicode
|
|
|
|
// unicodesymbols has things in the form: \"{u},
|
|
|
|
// whereas we may see things like: \"u. So we'll
|
|
|
|
// look for that and change it, if necessary.
|
2012-03-25 13:36:00 +00:00
|
|
|
// FIXME: This is a sort of mini-tex2lyx.
|
|
|
|
// Use the real tex2lyx instead!
|
2010-06-29 17:09:40 +00:00
|
|
|
static lyx::regex const reg("^\\\\\\W\\w");
|
|
|
|
if (lyx::regex_search(to_utf8(val), reg)) {
|
2009-04-09 12:55:47 +00:00
|
|
|
val.insert(3, from_ascii("}"));
|
|
|
|
val.insert(2, from_ascii("{"));
|
|
|
|
}
|
2012-03-25 13:36:00 +00:00
|
|
|
bool termination;
|
2009-04-09 12:55:47 +00:00
|
|
|
docstring rem;
|
2011-12-08 20:05:51 +00:00
|
|
|
docstring const cnvtd = Encodings::fromLaTeXCommand(val,
|
2012-03-25 13:36:00 +00:00
|
|
|
Encodings::TEXT_CMD, termination, rem);
|
2009-04-09 12:55:47 +00:00
|
|
|
if (!cnvtd.empty()) {
|
|
|
|
// it did, so we'll take that bit and proceed with what's left
|
|
|
|
ret += cnvtd;
|
|
|
|
val = rem;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// it's a command of some sort
|
|
|
|
scanning_cmd = true;
|
|
|
|
escaped = true;
|
|
|
|
val = val.substr(1);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-01-08 14:35:50 +00:00
|
|
|
|
|
|
|
// Escape '<' and '>' and remove richtext markers (e.g. {!this is richtext!}) from a string.
|
|
|
|
docstring processRichtext(docstring const & str, bool richtext)
|
|
|
|
{
|
|
|
|
docstring val = str;
|
|
|
|
docstring ret;
|
|
|
|
|
|
|
|
bool scanning_rich = false;
|
|
|
|
while (!val.empty()) {
|
|
|
|
char_type const ch = val[0];
|
|
|
|
if (ch == '{' && val.size() > 1 && val[1] == '!') {
|
|
|
|
// beginning of rich text
|
|
|
|
scanning_rich = true;
|
|
|
|
val = val.substr(2);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (scanning_rich && ch == '!' && val.size() > 1 && val[1] == '}') {
|
|
|
|
// end of rich text
|
|
|
|
scanning_rich = false;
|
|
|
|
val = val.substr(2);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (richtext) {
|
|
|
|
if (scanning_rich)
|
|
|
|
ret += ch;
|
|
|
|
else {
|
|
|
|
// we need to escape '<' and '>'
|
|
|
|
if (ch == '<')
|
|
|
|
ret += "<";
|
|
|
|
else if (ch == '>')
|
|
|
|
ret += ">";
|
|
|
|
else
|
|
|
|
ret += ch;
|
|
|
|
}
|
|
|
|
} else if (!scanning_rich /* && !richtext */)
|
|
|
|
ret += ch;
|
|
|
|
// else the character is discarded, which will happen only if
|
|
|
|
// richtext == false and we are scanning rich text
|
|
|
|
val = val.substr(1);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-04-09 12:55:47 +00:00
|
|
|
} // anon namespace
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// BibTeXInfo
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
BibTeXInfo::BibTeXInfo(docstring const & key, docstring const & type)
|
2010-01-11 16:11:55 +00:00
|
|
|
: is_bibtex_(true), bib_key_(key), entry_type_(type), info_(),
|
|
|
|
modifier_(0)
|
2009-04-09 12:55:47 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
2017-01-07 16:32:45 +00:00
|
|
|
docstring const BibTeXInfo::getAuthorList(
|
|
|
|
Buffer const * buf, bool full, bool forceshort) const
|
2007-08-14 16:50:51 +00:00
|
|
|
{
|
2017-01-07 16:32:45 +00:00
|
|
|
// Maxnames treshold depend on engine
|
|
|
|
size_t maxnames = buf ?
|
|
|
|
buf->params().documentClass().max_citenames() : 2;
|
|
|
|
|
2008-11-19 03:52:22 +00:00
|
|
|
if (!is_bibtex_) {
|
2009-06-11 20:29:37 +00:00
|
|
|
docstring const opt = label();
|
2008-11-19 03:52:22 +00:00
|
|
|
if (opt.empty())
|
|
|
|
return docstring();
|
|
|
|
|
|
|
|
docstring authors;
|
2010-01-21 19:48:53 +00:00
|
|
|
docstring const remainder = trim(split(opt, authors, '('));
|
|
|
|
if (remainder.empty())
|
2011-12-03 22:15:11 +00:00
|
|
|
// in this case, we didn't find a "(",
|
2010-01-21 19:48:53 +00:00
|
|
|
// so we don't have author (year)
|
|
|
|
return docstring();
|
2008-11-19 03:52:22 +00:00
|
|
|
return authors;
|
|
|
|
}
|
|
|
|
|
2014-02-11 04:11:35 +00:00
|
|
|
docstring author = operator[]("author");
|
2007-08-14 16:50:51 +00:00
|
|
|
if (author.empty()) {
|
2014-02-11 04:11:35 +00:00
|
|
|
author = operator[]("editor");
|
2007-08-20 16:30:02 +00:00
|
|
|
if (author.empty())
|
2012-03-01 00:41:30 +00:00
|
|
|
return author;
|
2007-08-14 16:50:51 +00:00
|
|
|
}
|
|
|
|
|
2010-03-27 12:58:26 +00:00
|
|
|
// FIXME Move this to a separate routine that can
|
|
|
|
// be called from elsewhere.
|
2011-12-03 22:15:11 +00:00
|
|
|
//
|
2007-11-05 20:33:20 +00:00
|
|
|
// OK, we've got some names. Let's format them.
|
|
|
|
// Try to split the author list on " and "
|
2007-08-20 16:30:02 +00:00
|
|
|
vector<docstring> const authors =
|
|
|
|
getVectorFromString(author, from_ascii(" and "));
|
2008-11-19 03:52:22 +00:00
|
|
|
|
2017-01-07 16:32:45 +00:00
|
|
|
docstring retval;
|
2012-03-01 00:41:30 +00:00
|
|
|
|
2017-01-07 16:32:45 +00:00
|
|
|
CiteEngineType const engine_type = buf ? buf->params().citeEngineType()
|
|
|
|
: ENGINE_TYPE_DEFAULT;
|
|
|
|
|
|
|
|
// These are defined in the styles
|
|
|
|
string const etal =
|
|
|
|
buf ? buf->params().documentClass().getCiteMacro(engine_type, "_etal")
|
|
|
|
: " et al.";
|
|
|
|
string const namesep =
|
|
|
|
buf ? buf->params().documentClass().getCiteMacro(engine_type, "_namesep")
|
|
|
|
: ", ";
|
|
|
|
string const lastnamesep =
|
|
|
|
buf ? buf->params().documentClass().getCiteMacro(engine_type, "_lastnamesep")
|
|
|
|
: ", and ";
|
|
|
|
string const pairnamesep =
|
|
|
|
buf ? buf->params().documentClass().getCiteMacro(engine_type, "_pairnamesep")
|
|
|
|
: " and ";
|
|
|
|
|
|
|
|
// Shorten the list (with et al.) if forceshort is set
|
|
|
|
// and the list can actually be shorten, else if maxcitenames
|
|
|
|
// is passed and full is not set.
|
|
|
|
bool shorten = forceshort && authors.size() > 1;
|
|
|
|
vector<docstring>::const_iterator it = authors.begin();
|
|
|
|
vector<docstring>::const_iterator en = authors.end();
|
|
|
|
for (size_t i = 0; it != en; ++it, ++i) {
|
|
|
|
if (i >= maxnames && !full) {
|
|
|
|
shorten = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (*it == "others") {
|
|
|
|
retval += buf ? buf->B_(etal) : from_ascii(etal);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i > 0 && i == authors.size() - 1) {
|
|
|
|
if (authors.size() == 2)
|
|
|
|
retval += buf ? buf->B_(pairnamesep) : from_ascii(pairnamesep);
|
|
|
|
else
|
|
|
|
retval += buf ? buf->B_(lastnamesep) : from_ascii(lastnamesep);
|
|
|
|
} else if (i > 0)
|
|
|
|
retval += buf ? buf->B_(namesep) : from_ascii(namesep);
|
|
|
|
retval += familyName(*it);
|
2016-07-18 02:50:17 +00:00
|
|
|
}
|
2017-01-07 16:32:45 +00:00
|
|
|
if (shorten)
|
|
|
|
retval = familyName(authors[0]) + (buf ? buf->B_(etal) : from_ascii(etal));
|
2007-11-05 20:33:20 +00:00
|
|
|
|
2014-02-11 04:11:35 +00:00
|
|
|
return convertLaTeXCommands(retval);
|
2007-08-14 16:50:51 +00:00
|
|
|
}
|
|
|
|
|
2007-11-05 20:33:20 +00:00
|
|
|
|
2007-08-20 16:30:02 +00:00
|
|
|
docstring const BibTeXInfo::getYear() const
|
2007-08-14 16:50:51 +00:00
|
|
|
{
|
2016-09-18 08:33:33 +00:00
|
|
|
if (is_bibtex_) {
|
|
|
|
// first try legacy year field
|
|
|
|
docstring year = operator[]("year");
|
|
|
|
if (!year.empty())
|
|
|
|
return year;
|
|
|
|
// now try biblatex's date field
|
|
|
|
year = operator[]("date");
|
|
|
|
// Format is [-]YYYY-MM-DD*/[-]YYYY-MM-DD*
|
|
|
|
// We only want the years.
|
|
|
|
static regex const yreg("[-]?([\\d]{4}).*");
|
2016-09-18 10:59:43 +00:00
|
|
|
static regex const ereg(".*/[-]?([\\d]{4}).*");
|
2016-09-18 08:33:33 +00:00
|
|
|
smatch sm;
|
|
|
|
string const date = to_utf8(year);
|
|
|
|
regex_match(date, sm, yreg);
|
|
|
|
year = from_ascii(sm[1]);
|
|
|
|
// check for an endyear
|
|
|
|
if (regex_match(date, sm, ereg))
|
|
|
|
year += char_type(0x2013) + from_ascii(sm[1]);
|
|
|
|
return year;
|
|
|
|
}
|
2008-11-19 03:52:22 +00:00
|
|
|
|
2009-06-11 20:29:37 +00:00
|
|
|
docstring const opt = label();
|
2009-04-04 21:04:26 +00:00
|
|
|
if (opt.empty())
|
|
|
|
return docstring();
|
2008-11-19 03:52:22 +00:00
|
|
|
|
2009-04-04 21:04:26 +00:00
|
|
|
docstring authors;
|
2010-01-21 19:48:53 +00:00
|
|
|
docstring tmp = split(opt, authors, '(');
|
2011-12-03 22:15:11 +00:00
|
|
|
if (tmp.empty())
|
2010-01-21 19:48:53 +00:00
|
|
|
// we don't have author (year)
|
|
|
|
return docstring();
|
2009-04-04 21:04:26 +00:00
|
|
|
docstring year;
|
2010-01-21 19:48:53 +00:00
|
|
|
tmp = split(tmp, year, ')');
|
2007-08-14 16:50:51 +00:00
|
|
|
return year;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-27 12:58:26 +00:00
|
|
|
namespace {
|
2012-10-27 13:45:27 +00:00
|
|
|
|
2013-07-20 14:05:52 +00:00
|
|
|
docstring parseOptions(docstring const & format, string & optkey,
|
|
|
|
docstring & ifpart, docstring & elsepart);
|
2012-10-27 13:45:27 +00:00
|
|
|
|
|
|
|
// Calls parseOptions to deal with an embedded option, such as:
|
|
|
|
// {%number%[[, no.~%number%]]}
|
|
|
|
// which must appear at the start of format. ifelsepart gets the
|
|
|
|
// whole of the option, and we return what's left after the option.
|
|
|
|
// we return format if there is an error.
|
2013-07-20 14:05:52 +00:00
|
|
|
docstring parseEmbeddedOption(docstring const & format, docstring & ifelsepart)
|
2012-10-27 13:45:27 +00:00
|
|
|
{
|
|
|
|
LASSERT(format[0] == '{' && format[1] == '%', return format);
|
|
|
|
string optkey;
|
2013-07-20 14:05:52 +00:00
|
|
|
docstring ifpart;
|
|
|
|
docstring elsepart;
|
|
|
|
docstring const rest = parseOptions(format, optkey, ifpart, elsepart);
|
2012-10-27 13:45:27 +00:00
|
|
|
if (format == rest) { // parse error
|
|
|
|
LYXERR0("ERROR! Couldn't parse `" << format <<"'.");
|
|
|
|
return format;
|
2010-03-27 12:58:26 +00:00
|
|
|
}
|
2013-04-25 21:27:10 +00:00
|
|
|
LASSERT(rest.size() <= format.size(),
|
2013-07-20 14:05:52 +00:00
|
|
|
{ ifelsepart = docstring(); return format; });
|
2012-10-27 13:45:27 +00:00
|
|
|
ifelsepart = format.substr(0, format.size() - rest.size());
|
2013-04-25 21:27:10 +00:00
|
|
|
return rest;
|
2012-10-27 13:45:27 +00:00
|
|
|
}
|
2011-12-03 22:15:11 +00:00
|
|
|
|
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
// Gets a "clause" from a format string, where the clause is
|
|
|
|
// delimited by '[[' and ']]'. Returns what is left after the
|
|
|
|
// clause is removed, and returns format if there is an error.
|
2013-07-20 14:05:52 +00:00
|
|
|
docstring getClause(docstring const & format, docstring & clause)
|
2012-10-27 13:45:27 +00:00
|
|
|
{
|
2013-07-20 14:05:52 +00:00
|
|
|
docstring fmt = format;
|
2012-10-27 13:45:27 +00:00
|
|
|
// remove '[['
|
|
|
|
fmt = fmt.substr(2);
|
|
|
|
// we'll remove characters from the front of fmt as we
|
|
|
|
// deal with them
|
|
|
|
while (!fmt.empty()) {
|
|
|
|
if (fmt[0] == ']' && fmt.size() > 1 && fmt[1] == ']') {
|
|
|
|
// that's the end
|
|
|
|
fmt = fmt.substr(2);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// check for an embedded option
|
|
|
|
if (fmt[0] == '{' && fmt.size() > 1 && fmt[1] == '%') {
|
2013-07-20 14:05:52 +00:00
|
|
|
docstring part;
|
|
|
|
docstring const rest = parseEmbeddedOption(fmt, part);
|
2012-10-27 13:45:27 +00:00
|
|
|
if (fmt == rest) {
|
|
|
|
LYXERR0("ERROR! Couldn't parse embedded option in `" << format <<"'.");
|
|
|
|
return format;
|
2010-03-27 12:58:26 +00:00
|
|
|
}
|
2012-10-27 13:45:27 +00:00
|
|
|
clause += part;
|
|
|
|
fmt = rest;
|
|
|
|
} else { // it's just a normal character
|
2010-03-27 12:58:26 +00:00
|
|
|
clause += fmt[0];
|
|
|
|
fmt = fmt.substr(1);
|
|
|
|
}
|
|
|
|
}
|
2012-10-27 13:45:27 +00:00
|
|
|
return fmt;
|
|
|
|
}
|
2010-03-27 12:58:26 +00:00
|
|
|
|
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
// parse an options string, which must appear at the start of the
|
|
|
|
// format parameter. puts the parsed bits in optkey, ifpart, and
|
|
|
|
// elsepart and returns what's left after the option is removed.
|
|
|
|
// if there's an error, it returns format itself.
|
2013-07-20 14:05:52 +00:00
|
|
|
docstring parseOptions(docstring const & format, string & optkey,
|
|
|
|
docstring & ifpart, docstring & elsepart)
|
2012-10-27 13:45:27 +00:00
|
|
|
{
|
|
|
|
LASSERT(format[0] == '{' && format[1] == '%', return format);
|
|
|
|
// strip '{%'
|
2013-07-20 14:05:52 +00:00
|
|
|
docstring fmt = format.substr(2);
|
2012-10-27 13:45:27 +00:00
|
|
|
size_t pos = fmt.find('%'); // end of key
|
|
|
|
if (pos == string::npos) {
|
|
|
|
LYXERR0("Error parsing `" << format <<"'. Can't find end of key.");
|
|
|
|
return format;
|
|
|
|
}
|
2013-07-20 14:05:52 +00:00
|
|
|
optkey = to_utf8(fmt.substr(0, pos));
|
2012-10-27 13:45:27 +00:00
|
|
|
fmt = fmt.substr(pos + 1);
|
|
|
|
// [[format]] should be next
|
|
|
|
if (fmt[0] != '[' || fmt[1] != '[') {
|
|
|
|
LYXERR0("Error parsing `" << format <<"'. Can't find '[[' after key.");
|
|
|
|
return format;
|
|
|
|
}
|
2010-03-27 12:58:26 +00:00
|
|
|
|
2013-07-20 14:05:52 +00:00
|
|
|
docstring curfmt = fmt;
|
2012-10-27 13:45:27 +00:00
|
|
|
fmt = getClause(curfmt, ifpart);
|
|
|
|
if (fmt == curfmt) {
|
|
|
|
LYXERR0("Error parsing `" << format <<"'. Couldn't get if clause.");
|
|
|
|
return format;
|
|
|
|
}
|
2010-03-27 12:58:26 +00:00
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
if (fmt[0] == '}') // we're done, no else clause
|
|
|
|
return fmt.substr(1);
|
2011-12-03 22:15:11 +00:00
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
// else part should follow
|
|
|
|
if (fmt[0] != '[' || fmt[1] != '[') {
|
|
|
|
LYXERR0("Error parsing `" << format <<"'. Can't find else clause.");
|
|
|
|
return format;
|
|
|
|
}
|
2011-12-03 22:15:11 +00:00
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
curfmt = fmt;
|
|
|
|
fmt = getClause(curfmt, elsepart);
|
|
|
|
// we should be done
|
|
|
|
if (fmt == curfmt || fmt[0] != '}') {
|
|
|
|
LYXERR0("Error parsing `" << format <<"'. Can't find end of option.");
|
|
|
|
return format;
|
|
|
|
}
|
|
|
|
return fmt.substr(1);
|
2010-03-27 12:58:26 +00:00
|
|
|
}
|
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
|
2010-03-27 12:58:26 +00:00
|
|
|
} // anon namespace
|
|
|
|
|
2014-05-23 15:36:12 +00:00
|
|
|
/* FIXME
|
|
|
|
Bug #9131 revealed an oddity in how we are generating citation information
|
|
|
|
when more than one key is given. We end up building a longer and longer format
|
|
|
|
string as we go, which we then have to re-parse, over and over and over again,
|
|
|
|
rather than generating the information for the individual keys and then putting
|
|
|
|
all of that together. We do that to deal with the way separators work, from what
|
|
|
|
I can tell, but it still feels like a hack. Fixing this would require quite a
|
|
|
|
bit of work, however.
|
|
|
|
*/
|
2013-07-20 14:05:52 +00:00
|
|
|
docstring BibTeXInfo::expandFormat(docstring const & format,
|
Improve info display for biblatex databases, part II
In addition to the classic crossref, biblatex introduces xdata
references in order to source-out common data of entries. Entries
that have "xdata = {somekey}" just inherit all fields from the
respective @xdata entry, if the field is not already defined in
the entry itself (just like crossref, with the exception that @xdata
entries themselves are _never_ output on their own). @xdata entries can
themselves inherit to other @xdata entries (ad infinitum). So you can,
for instance, setup an xdata entry for a book series with series name
that inherits an xdata entry with information of the publisher
(publisher, address). Any book of that series would just need to refer
to the series xdata and add the number.
BiblioInfo now checks, in addition to crossrefs, for such xdata
references and inherits missing fields.
Nte that biblatex also introduces an "xref" field as an alternative to
crossref. We must not care about that, since the point of xref is that
it does not inherit fields from the target (just cites that one if a
given number of refs to it exist)
2016-09-18 10:44:12 +00:00
|
|
|
BibTeXInfoList const xrefs, int & counter, Buffer const & buf,
|
2017-01-07 16:12:08 +00:00
|
|
|
CiteItem const & ci, bool next, bool second) const
|
2010-03-27 12:58:26 +00:00
|
|
|
{
|
2010-03-29 20:01:28 +00:00
|
|
|
// incorrect use of macros could put us in an infinite loop
|
2013-10-07 22:59:05 +00:00
|
|
|
static int const max_passes = 5000;
|
2014-02-11 04:11:35 +00:00
|
|
|
// the use of overly large keys can lead to performance problems, due
|
|
|
|
// to eventual attempts to convert LaTeX macros to unicode. See bug
|
|
|
|
// #8944. This is perhaps not the best solution, but it will have to
|
|
|
|
// do for now.
|
2014-02-13 22:51:43 +00:00
|
|
|
static size_t const max_keysize = 128;
|
2013-07-20 14:05:52 +00:00
|
|
|
odocstringstream ret; // return value
|
2010-03-27 22:51:38 +00:00
|
|
|
string key;
|
2010-03-27 12:58:26 +00:00
|
|
|
bool scanning_key = false;
|
2010-03-27 13:54:14 +00:00
|
|
|
bool scanning_rich = false;
|
2010-03-27 12:58:26 +00:00
|
|
|
|
2012-03-01 00:41:30 +00:00
|
|
|
CiteEngineType const engine_type = buf.params().citeEngineType();
|
2013-07-20 14:05:52 +00:00
|
|
|
docstring fmt = format;
|
2011-12-03 22:15:11 +00:00
|
|
|
// we'll remove characters from the front of fmt as we
|
2010-03-27 12:58:26 +00:00
|
|
|
// deal with them
|
2012-10-21 19:14:16 +00:00
|
|
|
while (!fmt.empty()) {
|
2014-05-23 14:59:12 +00:00
|
|
|
if (counter > max_passes) {
|
2011-12-03 22:15:11 +00:00
|
|
|
LYXERR0("Recursion limit reached while parsing `"
|
2010-03-29 20:01:28 +00:00
|
|
|
<< format << "'.");
|
|
|
|
return _("ERROR!");
|
|
|
|
}
|
2011-12-03 22:15:11 +00:00
|
|
|
|
2010-03-27 12:58:26 +00:00
|
|
|
char_type thischar = fmt[0];
|
2011-12-03 22:15:11 +00:00
|
|
|
if (thischar == '%') {
|
2010-03-27 12:58:26 +00:00
|
|
|
// beginning or end of key
|
2011-12-03 22:15:11 +00:00
|
|
|
if (scanning_key) {
|
2010-03-27 12:58:26 +00:00
|
|
|
// end of key
|
|
|
|
scanning_key = false;
|
|
|
|
// so we replace the key with its value, which may be empty
|
2010-03-29 20:01:28 +00:00
|
|
|
if (key[0] == '!') {
|
|
|
|
// macro
|
2011-12-03 22:15:11 +00:00
|
|
|
string const val =
|
2012-03-01 00:41:30 +00:00
|
|
|
buf.params().documentClass().getCiteMacro(engine_type, key);
|
2013-07-20 14:05:52 +00:00
|
|
|
fmt = from_utf8(val) + fmt.substr(1);
|
2014-05-23 14:59:12 +00:00
|
|
|
counter += 1;
|
2010-03-29 20:01:28 +00:00
|
|
|
continue;
|
|
|
|
} else if (key[0] == '_') {
|
|
|
|
// a translatable bit
|
2011-12-03 22:15:11 +00:00
|
|
|
string const val =
|
2012-03-01 00:41:30 +00:00
|
|
|
buf.params().documentClass().getCiteMacro(engine_type, key);
|
2011-12-03 22:15:11 +00:00
|
|
|
docstring const trans =
|
2013-01-14 14:25:26 +00:00
|
|
|
translateIfPossible(from_utf8(val), buf.params().language->code());
|
2013-07-20 14:05:52 +00:00
|
|
|
ret << trans;
|
2010-03-29 20:01:28 +00:00
|
|
|
} else {
|
2013-01-07 14:51:19 +00:00
|
|
|
docstring const val =
|
2017-01-07 16:12:08 +00:00
|
|
|
getValueForKey(key, buf, ci, xrefs, max_keysize);
|
2013-01-10 14:24:53 +00:00
|
|
|
if (!scanning_rich)
|
2013-07-20 14:05:52 +00:00
|
|
|
ret << from_ascii("{!<span class=\"bib-" + key + "\">!}");
|
|
|
|
ret << val;
|
2013-01-10 14:24:53 +00:00
|
|
|
if (!scanning_rich)
|
2013-07-20 14:05:52 +00:00
|
|
|
ret << from_ascii("{!</span>!}");
|
2010-03-29 20:01:28 +00:00
|
|
|
}
|
2010-03-27 12:58:26 +00:00
|
|
|
} else {
|
|
|
|
// beginning of key
|
2010-03-29 20:01:28 +00:00
|
|
|
key.clear();
|
2010-03-27 12:58:26 +00:00
|
|
|
scanning_key = true;
|
|
|
|
}
|
2010-03-29 20:01:28 +00:00
|
|
|
}
|
2011-12-03 22:15:11 +00:00
|
|
|
else if (thischar == '{') {
|
2010-03-27 12:58:26 +00:00
|
|
|
// beginning of option?
|
|
|
|
if (scanning_key) {
|
|
|
|
LYXERR0("ERROR: Found `{' when scanning key in `" << format << "'.");
|
|
|
|
return _("ERROR!");
|
|
|
|
}
|
2010-03-27 13:54:14 +00:00
|
|
|
if (fmt.size() > 1) {
|
|
|
|
if (fmt[1] == '%') {
|
|
|
|
// it is the beginning of an optional format
|
2010-03-27 22:51:38 +00:00
|
|
|
string optkey;
|
2013-07-20 14:05:52 +00:00
|
|
|
docstring ifpart;
|
|
|
|
docstring elsepart;
|
|
|
|
docstring const newfmt =
|
2010-03-27 12:58:26 +00:00
|
|
|
parseOptions(fmt, optkey, ifpart, elsepart);
|
2010-03-27 13:54:14 +00:00
|
|
|
if (newfmt == fmt) // parse error
|
|
|
|
return _("ERROR!");
|
|
|
|
fmt = newfmt;
|
2013-01-07 14:51:19 +00:00
|
|
|
docstring const val =
|
2017-01-07 16:12:08 +00:00
|
|
|
getValueForKey(optkey, buf, ci, xrefs);
|
2012-03-01 00:41:30 +00:00
|
|
|
if (optkey == "next" && next)
|
2013-07-20 14:05:52 +00:00
|
|
|
ret << ifpart; // without expansion
|
2014-05-23 14:59:12 +00:00
|
|
|
else if (!val.empty()) {
|
|
|
|
int newcounter = 0;
|
Improve info display for biblatex databases, part II
In addition to the classic crossref, biblatex introduces xdata
references in order to source-out common data of entries. Entries
that have "xdata = {somekey}" just inherit all fields from the
respective @xdata entry, if the field is not already defined in
the entry itself (just like crossref, with the exception that @xdata
entries themselves are _never_ output on their own). @xdata entries can
themselves inherit to other @xdata entries (ad infinitum). So you can,
for instance, setup an xdata entry for a book series with series name
that inherits an xdata entry with information of the publisher
(publisher, address). Any book of that series would just need to refer
to the series xdata and add the number.
BiblioInfo now checks, in addition to crossrefs, for such xdata
references and inherits missing fields.
Nte that biblatex also introduces an "xref" field as an alternative to
crossref. We must not care about that, since the point of xref is that
it does not inherit fields from the target (just cites that one if a
given number of refs to it exist)
2016-09-18 10:44:12 +00:00
|
|
|
ret << expandFormat(ifpart, xrefs, newcounter, buf,
|
2017-01-07 16:12:08 +00:00
|
|
|
ci, next);
|
2014-05-23 14:59:12 +00:00
|
|
|
} else if (!elsepart.empty()) {
|
|
|
|
int newcounter = 0;
|
Improve info display for biblatex databases, part II
In addition to the classic crossref, biblatex introduces xdata
references in order to source-out common data of entries. Entries
that have "xdata = {somekey}" just inherit all fields from the
respective @xdata entry, if the field is not already defined in
the entry itself (just like crossref, with the exception that @xdata
entries themselves are _never_ output on their own). @xdata entries can
themselves inherit to other @xdata entries (ad infinitum). So you can,
for instance, setup an xdata entry for a book series with series name
that inherits an xdata entry with information of the publisher
(publisher, address). Any book of that series would just need to refer
to the series xdata and add the number.
BiblioInfo now checks, in addition to crossrefs, for such xdata
references and inherits missing fields.
Nte that biblatex also introduces an "xref" field as an alternative to
crossref. We must not care about that, since the point of xref is that
it does not inherit fields from the target (just cites that one if a
given number of refs to it exist)
2016-09-18 10:44:12 +00:00
|
|
|
ret << expandFormat(elsepart, xrefs, newcounter, buf,
|
2017-01-07 16:12:08 +00:00
|
|
|
ci, next);
|
2014-05-23 14:59:12 +00:00
|
|
|
}
|
2010-03-27 13:54:14 +00:00
|
|
|
// fmt will have been shortened for us already
|
2011-12-03 22:15:11 +00:00
|
|
|
continue;
|
2010-03-27 13:54:14 +00:00
|
|
|
}
|
|
|
|
if (fmt[1] == '!') {
|
|
|
|
// beginning of rich text
|
|
|
|
scanning_rich = true;
|
|
|
|
fmt = fmt.substr(2);
|
2013-07-20 14:05:52 +00:00
|
|
|
ret << from_ascii("{!");
|
2010-03-27 13:54:14 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2011-12-03 22:15:11 +00:00
|
|
|
// we are here if '{' was not followed by % or !.
|
2010-03-29 20:01:28 +00:00
|
|
|
// So it's just a character.
|
2013-07-20 14:05:52 +00:00
|
|
|
ret << thischar;
|
2010-03-27 13:54:14 +00:00
|
|
|
}
|
2011-12-03 22:15:11 +00:00
|
|
|
else if (scanning_rich && thischar == '!'
|
2010-03-27 13:54:14 +00:00
|
|
|
&& fmt.size() > 1 && fmt[1] == '}') {
|
|
|
|
// end of rich text
|
|
|
|
scanning_rich = false;
|
|
|
|
fmt = fmt.substr(2);
|
2013-07-20 14:05:52 +00:00
|
|
|
ret << from_ascii("!}");
|
2010-03-27 13:54:14 +00:00
|
|
|
continue;
|
|
|
|
}
|
2010-03-27 12:58:26 +00:00
|
|
|
else if (scanning_key)
|
2010-03-28 22:22:24 +00:00
|
|
|
key += char(thischar);
|
2013-07-20 14:05:52 +00:00
|
|
|
else {
|
|
|
|
try {
|
|
|
|
ret.put(thischar);
|
|
|
|
} catch (EncodingException & /* e */) {
|
|
|
|
LYXERR0("Uncodable character '" << docstring(1, thischar) << " in citation label!");
|
|
|
|
}
|
|
|
|
}
|
2010-03-27 12:58:26 +00:00
|
|
|
fmt = fmt.substr(1);
|
|
|
|
} // for loop
|
|
|
|
if (scanning_key) {
|
|
|
|
LYXERR0("Never found end of key in `" << format << "'!");
|
|
|
|
return _("ERROR!");
|
|
|
|
}
|
2010-03-27 13:54:14 +00:00
|
|
|
if (scanning_rich) {
|
|
|
|
LYXERR0("Never found end of rich text in `" << format << "'!");
|
|
|
|
return _("ERROR!");
|
|
|
|
}
|
2013-07-20 14:05:52 +00:00
|
|
|
return ret.str();
|
2010-03-27 12:58:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
Improve info display for biblatex databases, part II
In addition to the classic crossref, biblatex introduces xdata
references in order to source-out common data of entries. Entries
that have "xdata = {somekey}" just inherit all fields from the
respective @xdata entry, if the field is not already defined in
the entry itself (just like crossref, with the exception that @xdata
entries themselves are _never_ output on their own). @xdata entries can
themselves inherit to other @xdata entries (ad infinitum). So you can,
for instance, setup an xdata entry for a book series with series name
that inherits an xdata entry with information of the publisher
(publisher, address). Any book of that series would just need to refer
to the series xdata and add the number.
BiblioInfo now checks, in addition to crossrefs, for such xdata
references and inherits missing fields.
Nte that biblatex also introduces an "xref" field as an alternative to
crossref. We must not care about that, since the point of xref is that
it does not inherit fields from the target (just cites that one if a
given number of refs to it exist)
2016-09-18 10:44:12 +00:00
|
|
|
docstring const & BibTeXInfo::getInfo(BibTeXInfoList const xrefs,
|
2017-01-07 16:12:08 +00:00
|
|
|
Buffer const & buf, CiteItem const & ci) const
|
2007-08-14 16:50:51 +00:00
|
|
|
{
|
2017-01-07 16:12:08 +00:00
|
|
|
bool const richtext = ci.richtext;
|
|
|
|
|
2013-01-08 15:20:52 +00:00
|
|
|
if (!richtext && !info_.empty())
|
2009-01-16 23:40:37 +00:00
|
|
|
return info_;
|
2013-01-08 15:20:52 +00:00
|
|
|
if (richtext && !info_richtext_.empty())
|
|
|
|
return info_richtext_;
|
2009-01-16 23:40:37 +00:00
|
|
|
|
2008-02-14 17:00:40 +00:00
|
|
|
if (!is_bibtex_) {
|
2007-08-20 16:30:02 +00:00
|
|
|
BibTeXInfo::const_iterator it = find(from_ascii("ref"));
|
2009-01-16 23:40:37 +00:00
|
|
|
info_ = it->second;
|
|
|
|
return info_;
|
2007-08-14 16:50:51 +00:00
|
|
|
}
|
2007-11-05 20:33:20 +00:00
|
|
|
|
2012-03-01 00:41:30 +00:00
|
|
|
CiteEngineType const engine_type = buf.params().citeEngineType();
|
2010-03-29 18:37:25 +00:00
|
|
|
DocumentClass const & dc = buf.params().documentClass();
|
2013-07-20 14:05:52 +00:00
|
|
|
docstring const & format =
|
|
|
|
from_utf8(dc.getCiteFormat(engine_type, to_utf8(entry_type_)));
|
2010-03-29 20:52:07 +00:00
|
|
|
int counter = 0;
|
Improve info display for biblatex databases, part II
In addition to the classic crossref, biblatex introduces xdata
references in order to source-out common data of entries. Entries
that have "xdata = {somekey}" just inherit all fields from the
respective @xdata entry, if the field is not already defined in
the entry itself (just like crossref, with the exception that @xdata
entries themselves are _never_ output on their own). @xdata entries can
themselves inherit to other @xdata entries (ad infinitum). So you can,
for instance, setup an xdata entry for a book series with series name
that inherits an xdata entry with information of the publisher
(publisher, address). Any book of that series would just need to refer
to the series xdata and add the number.
BiblioInfo now checks, in addition to crossrefs, for such xdata
references and inherits missing fields.
Nte that biblatex also introduces an "xref" field as an alternative to
crossref. We must not care about that, since the point of xref is that
it does not inherit fields from the target (just cites that one if a
given number of refs to it exist)
2016-09-18 10:44:12 +00:00
|
|
|
info_ = expandFormat(format, xrefs, counter, buf,
|
2017-01-07 16:12:08 +00:00
|
|
|
ci, false, false);
|
2007-11-05 20:33:20 +00:00
|
|
|
|
2014-05-23 14:48:22 +00:00
|
|
|
if (info_.empty()) {
|
|
|
|
// this probably shouldn't happen
|
|
|
|
return info_;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (richtext) {
|
2013-01-08 15:20:52 +00:00
|
|
|
info_richtext_ = convertLaTeXCommands(processRichtext(info_, true));
|
2014-05-23 14:48:22 +00:00
|
|
|
return info_richtext_;
|
2013-01-08 15:20:52 +00:00
|
|
|
}
|
2014-05-23 14:48:22 +00:00
|
|
|
|
|
|
|
info_ = convertLaTeXCommands(processRichtext(info_, false));
|
2010-03-27 12:58:26 +00:00
|
|
|
return info_;
|
2007-08-14 16:50:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
Improve info display for biblatex databases, part II
In addition to the classic crossref, biblatex introduces xdata
references in order to source-out common data of entries. Entries
that have "xdata = {somekey}" just inherit all fields from the
respective @xdata entry, if the field is not already defined in
the entry itself (just like crossref, with the exception that @xdata
entries themselves are _never_ output on their own). @xdata entries can
themselves inherit to other @xdata entries (ad infinitum). So you can,
for instance, setup an xdata entry for a book series with series name
that inherits an xdata entry with information of the publisher
(publisher, address). Any book of that series would just need to refer
to the series xdata and add the number.
BiblioInfo now checks, in addition to crossrefs, for such xdata
references and inherits missing fields.
Nte that biblatex also introduces an "xref" field as an alternative to
crossref. We must not care about that, since the point of xref is that
it does not inherit fields from the target (just cites that one if a
given number of refs to it exist)
2016-09-18 10:44:12 +00:00
|
|
|
docstring const BibTeXInfo::getLabel(BibTeXInfoList const xrefs,
|
2017-01-07 16:12:08 +00:00
|
|
|
Buffer const & buf, docstring const & format,
|
|
|
|
CiteItem const & ci, bool next, bool second) const
|
2012-03-01 00:41:30 +00:00
|
|
|
{
|
2012-05-11 13:13:07 +00:00
|
|
|
docstring loclabel;
|
2012-03-01 00:41:30 +00:00
|
|
|
|
|
|
|
int counter = 0;
|
2017-01-07 16:12:08 +00:00
|
|
|
loclabel = expandFormat(format, xrefs, counter, buf, ci, next, second);
|
2012-03-01 00:41:30 +00:00
|
|
|
|
2013-01-08 14:35:50 +00:00
|
|
|
if (!loclabel.empty() && !next) {
|
2017-01-07 16:12:08 +00:00
|
|
|
loclabel = processRichtext(loclabel, ci.richtext);
|
2012-05-11 13:13:07 +00:00
|
|
|
loclabel = convertLaTeXCommands(loclabel);
|
2013-01-08 14:35:50 +00:00
|
|
|
}
|
2013-07-20 14:05:52 +00:00
|
|
|
|
2012-05-11 13:13:07 +00:00
|
|
|
return loclabel;
|
2012-03-01 00:41:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-09 12:55:47 +00:00
|
|
|
docstring const & BibTeXInfo::operator[](docstring const & field) const
|
|
|
|
{
|
|
|
|
BibTeXInfo::const_iterator it = find(field);
|
|
|
|
if (it != end())
|
|
|
|
return it->second;
|
|
|
|
static docstring const empty_value = docstring();
|
|
|
|
return empty_value;
|
|
|
|
}
|
2011-12-03 22:15:11 +00:00
|
|
|
|
|
|
|
|
2009-04-09 12:55:47 +00:00
|
|
|
docstring const & BibTeXInfo::operator[](string const & field) const
|
|
|
|
{
|
|
|
|
return operator[](from_ascii(field));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-27 19:46:32 +00:00
|
|
|
docstring BibTeXInfo::getValueForKey(string const & oldkey, Buffer const & buf,
|
2017-01-07 16:12:08 +00:00
|
|
|
CiteItem const & ci, BibTeXInfoList const xrefs, size_t maxsize) const
|
2009-04-09 12:55:47 +00:00
|
|
|
{
|
2014-02-11 04:11:35 +00:00
|
|
|
// anything less is pointless
|
|
|
|
LASSERT(maxsize >= 16, maxsize = 16);
|
2013-03-27 19:46:32 +00:00
|
|
|
string key = oldkey;
|
|
|
|
bool cleanit = false;
|
|
|
|
if (prefixIs(oldkey, "clean:")) {
|
|
|
|
key = oldkey.substr(6);
|
|
|
|
cleanit = true;
|
|
|
|
}
|
2013-05-13 18:58:12 +00:00
|
|
|
|
2012-03-01 00:41:30 +00:00
|
|
|
docstring ret = operator[](key);
|
Improve info display for biblatex databases, part II
In addition to the classic crossref, biblatex introduces xdata
references in order to source-out common data of entries. Entries
that have "xdata = {somekey}" just inherit all fields from the
respective @xdata entry, if the field is not already defined in
the entry itself (just like crossref, with the exception that @xdata
entries themselves are _never_ output on their own). @xdata entries can
themselves inherit to other @xdata entries (ad infinitum). So you can,
for instance, setup an xdata entry for a book series with series name
that inherits an xdata entry with information of the publisher
(publisher, address). Any book of that series would just need to refer
to the series xdata and add the number.
BiblioInfo now checks, in addition to crossrefs, for such xdata
references and inherits missing fields.
Nte that biblatex also introduces an "xref" field as an alternative to
crossref. We must not care about that, since the point of xref is that
it does not inherit fields from the target (just cites that one if a
given number of refs to it exist)
2016-09-18 10:44:12 +00:00
|
|
|
if (ret.empty() && !xrefs.empty()) {
|
|
|
|
vector<BibTeXInfo const *>::const_iterator it = xrefs.begin();
|
|
|
|
vector<BibTeXInfo const *>::const_iterator en = xrefs.end();
|
|
|
|
for (; it != en; ++it) {
|
|
|
|
if (*it && !(**it)[key].empty()) {
|
|
|
|
ret = (**it)[key];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-03-27 19:46:32 +00:00
|
|
|
if (ret.empty()) {
|
|
|
|
// some special keys
|
|
|
|
// FIXME: dialog, textbefore and textafter have nothing to do with this
|
2017-01-07 16:12:08 +00:00
|
|
|
if (key == "dialog" && ci.context == CiteItem::Dialog)
|
|
|
|
ret = from_ascii("x"); // any non-empty string will do
|
2017-01-07 16:32:45 +00:00
|
|
|
else if (key == "ifstar" && ci.Starred)
|
|
|
|
ret = from_ascii("x"); // any non-empty string will do
|
2013-03-27 19:46:32 +00:00
|
|
|
else if (key == "entrytype")
|
|
|
|
ret = entry_type_;
|
|
|
|
else if (key == "key")
|
|
|
|
ret = bib_key_;
|
|
|
|
else if (key == "label")
|
|
|
|
ret = label_;
|
2013-05-13 18:58:12 +00:00
|
|
|
else if (key == "modifier" && modifier_ != 0)
|
|
|
|
ret = modifier_;
|
2013-05-14 19:50:13 +00:00
|
|
|
else if (key == "numericallabel")
|
|
|
|
ret = cite_number_;
|
2017-01-07 16:32:45 +00:00
|
|
|
else if (key == "abbrvauthor") {
|
|
|
|
// Special key to provide abbreviated author names,
|
|
|
|
// with respect to maxcitenames.
|
|
|
|
ret = getAuthorList(&buf, false, false);
|
|
|
|
if (ci.forceUpperCase && isLowerCase(ret[0]))
|
|
|
|
ret[0] = uppercase(ret[0]);
|
|
|
|
} else if (key == "fullauthor") {
|
|
|
|
// Return a full author list
|
|
|
|
ret = getAuthorList(&buf, true, false);
|
|
|
|
if (ci.forceUpperCase && isLowerCase(ret[0]))
|
|
|
|
ret[0] = uppercase(ret[0]);
|
|
|
|
} else if (key == "forceabbrvauthor") {
|
|
|
|
// Special key to provide abbreviated author names,
|
|
|
|
// irrespective of maxcitenames.
|
|
|
|
ret = getAuthorList(&buf, false, true);
|
2017-01-07 16:21:41 +00:00
|
|
|
if (ci.forceUpperCase && isLowerCase(ret[0]))
|
|
|
|
ret[0] = uppercase(ret[0]);
|
2013-03-27 19:46:32 +00:00
|
|
|
} else if (key == "bibentry") {
|
|
|
|
// Special key to provide the full bibliography entry: see getInfo()
|
|
|
|
CiteEngineType const engine_type = buf.params().citeEngineType();
|
|
|
|
DocumentClass const & dc = buf.params().documentClass();
|
2013-07-20 14:05:52 +00:00
|
|
|
docstring const & format =
|
|
|
|
from_utf8(dc.getCiteFormat(engine_type, to_utf8(entry_type_)));
|
2013-03-27 19:46:32 +00:00
|
|
|
int counter = 0;
|
2017-01-07 16:12:08 +00:00
|
|
|
ret = expandFormat(format, xrefs, counter, buf, ci, false, false);
|
2013-03-27 19:46:32 +00:00
|
|
|
} else if (key == "textbefore")
|
2017-01-07 16:12:08 +00:00
|
|
|
ret = ci.textBefore;
|
2013-03-27 19:46:32 +00:00
|
|
|
else if (key == "textafter")
|
2017-01-07 16:12:08 +00:00
|
|
|
ret = ci.textAfter;
|
2013-03-27 19:46:32 +00:00
|
|
|
else if (key == "year")
|
|
|
|
ret = getYear();
|
|
|
|
}
|
2014-02-11 04:11:35 +00:00
|
|
|
|
2013-03-27 19:46:32 +00:00
|
|
|
if (cleanit)
|
2014-02-11 04:11:35 +00:00
|
|
|
ret = html::cleanAttr(ret);
|
2013-05-13 18:58:12 +00:00
|
|
|
|
2014-02-11 04:11:35 +00:00
|
|
|
// make sure it is not too big
|
2015-10-04 18:38:47 +00:00
|
|
|
support::truncateWithEllipsis(ret, maxsize);
|
2012-03-01 00:41:30 +00:00
|
|
|
return ret;
|
2009-04-09 12:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-05 20:33:20 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
2007-08-20 16:30:02 +00:00
|
|
|
//
|
|
|
|
// BiblioInfo
|
|
|
|
//
|
2007-11-05 20:33:20 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
2007-08-20 16:30:02 +00:00
|
|
|
|
2007-08-14 16:50:51 +00:00
|
|
|
namespace {
|
2012-10-27 13:45:27 +00:00
|
|
|
|
2007-12-12 19:28:07 +00:00
|
|
|
// A functor for use with sort, leading to case insensitive sorting
|
2012-10-27 13:45:27 +00:00
|
|
|
class compareNoCase: public binary_function<docstring, docstring, bool>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
bool operator()(docstring const & s1, docstring const & s2) const {
|
|
|
|
return compare_no_case(s1, s2) < 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-08-20 16:30:02 +00:00
|
|
|
} // namespace anon
|
|
|
|
|
2007-08-14 16:50:51 +00:00
|
|
|
|
Improve info display for biblatex databases, part II
In addition to the classic crossref, biblatex introduces xdata
references in order to source-out common data of entries. Entries
that have "xdata = {somekey}" just inherit all fields from the
respective @xdata entry, if the field is not already defined in
the entry itself (just like crossref, with the exception that @xdata
entries themselves are _never_ output on their own). @xdata entries can
themselves inherit to other @xdata entries (ad infinitum). So you can,
for instance, setup an xdata entry for a book series with series name
that inherits an xdata entry with information of the publisher
(publisher, address). Any book of that series would just need to refer
to the series xdata and add the number.
BiblioInfo now checks, in addition to crossrefs, for such xdata
references and inherits missing fields.
Nte that biblatex also introduces an "xref" field as an alternative to
crossref. We must not care about that, since the point of xref is that
it does not inherit fields from the target (just cites that one if a
given number of refs to it exist)
2016-09-18 10:44:12 +00:00
|
|
|
vector<docstring> const BiblioInfo::getXRefs(BibTeXInfo const & data, bool const nested) const
|
|
|
|
{
|
|
|
|
vector<docstring> result;
|
|
|
|
if (!data.isBibTeX())
|
|
|
|
return result;
|
|
|
|
// Legacy crossref field. This is not nestable.
|
2016-09-20 09:34:17 +00:00
|
|
|
if (!nested && !data["crossref"].empty()) {
|
|
|
|
docstring const xrefkey = data["crossref"];
|
|
|
|
result.push_back(xrefkey);
|
|
|
|
// However, check for nested xdatas
|
|
|
|
BiblioInfo::const_iterator it = find(xrefkey);
|
|
|
|
if (it != end()) {
|
|
|
|
BibTeXInfo const & xref = it->second;
|
|
|
|
vector<docstring> const nxdata = getXRefs(xref, true);
|
|
|
|
if (!nxdata.empty())
|
|
|
|
result.insert(result.end(), nxdata.begin(), nxdata.end());
|
|
|
|
}
|
|
|
|
}
|
Improve info display for biblatex databases, part II
In addition to the classic crossref, biblatex introduces xdata
references in order to source-out common data of entries. Entries
that have "xdata = {somekey}" just inherit all fields from the
respective @xdata entry, if the field is not already defined in
the entry itself (just like crossref, with the exception that @xdata
entries themselves are _never_ output on their own). @xdata entries can
themselves inherit to other @xdata entries (ad infinitum). So you can,
for instance, setup an xdata entry for a book series with series name
that inherits an xdata entry with information of the publisher
(publisher, address). Any book of that series would just need to refer
to the series xdata and add the number.
BiblioInfo now checks, in addition to crossrefs, for such xdata
references and inherits missing fields.
Nte that biblatex also introduces an "xref" field as an alternative to
crossref. We must not care about that, since the point of xref is that
it does not inherit fields from the target (just cites that one if a
given number of refs to it exist)
2016-09-18 10:44:12 +00:00
|
|
|
// Biblatex's xdata field. Infinitely nestable.
|
2016-09-19 17:09:42 +00:00
|
|
|
// XData field can consist of a comma-separated list of keys
|
|
|
|
vector<docstring> const xdatakeys = getVectorFromString(data["xdata"]);
|
|
|
|
if (!xdatakeys.empty()) {
|
|
|
|
vector<docstring>::const_iterator xit = xdatakeys.begin();
|
|
|
|
vector<docstring>::const_iterator xen = xdatakeys.end();
|
|
|
|
for (; xit != xen; ++xit) {
|
|
|
|
docstring const xdatakey = *xit;
|
|
|
|
result.push_back(xdatakey);
|
|
|
|
BiblioInfo::const_iterator it = find(xdatakey);
|
|
|
|
if (it != end()) {
|
|
|
|
BibTeXInfo const & xdata = it->second;
|
|
|
|
vector<docstring> const nxdata = getXRefs(xdata, true);
|
|
|
|
if (!nxdata.empty())
|
|
|
|
result.insert(result.end(), nxdata.begin(), nxdata.end());
|
|
|
|
}
|
Improve info display for biblatex databases, part II
In addition to the classic crossref, biblatex introduces xdata
references in order to source-out common data of entries. Entries
that have "xdata = {somekey}" just inherit all fields from the
respective @xdata entry, if the field is not already defined in
the entry itself (just like crossref, with the exception that @xdata
entries themselves are _never_ output on their own). @xdata entries can
themselves inherit to other @xdata entries (ad infinitum). So you can,
for instance, setup an xdata entry for a book series with series name
that inherits an xdata entry with information of the publisher
(publisher, address). Any book of that series would just need to refer
to the series xdata and add the number.
BiblioInfo now checks, in addition to crossrefs, for such xdata
references and inherits missing fields.
Nte that biblatex also introduces an "xref" field as an alternative to
crossref. We must not care about that, since the point of xref is that
it does not inherit fields from the target (just cites that one if a
given number of refs to it exist)
2016-09-18 10:44:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-20 16:30:02 +00:00
|
|
|
vector<docstring> const BiblioInfo::getKeys() const
|
2007-08-14 16:50:51 +00:00
|
|
|
{
|
2007-08-20 16:30:02 +00:00
|
|
|
vector<docstring> bibkeys;
|
|
|
|
BiblioInfo::const_iterator it = begin();
|
|
|
|
for (; it != end(); ++it)
|
|
|
|
bibkeys.push_back(it->first);
|
2007-12-12 19:28:07 +00:00
|
|
|
sort(bibkeys.begin(), bibkeys.end(), compareNoCase());
|
2007-08-20 16:30:02 +00:00
|
|
|
return bibkeys;
|
2007-08-14 16:50:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-20 16:30:02 +00:00
|
|
|
vector<docstring> const BiblioInfo::getFields() const
|
2007-08-14 16:50:51 +00:00
|
|
|
{
|
2007-08-20 16:30:02 +00:00
|
|
|
vector<docstring> bibfields;
|
2008-02-14 17:00:40 +00:00
|
|
|
set<docstring>::const_iterator it = field_names_.begin();
|
|
|
|
set<docstring>::const_iterator end = field_names_.end();
|
2007-08-20 16:30:02 +00:00
|
|
|
for (; it != end; ++it)
|
|
|
|
bibfields.push_back(*it);
|
2007-12-12 19:28:07 +00:00
|
|
|
sort(bibfields.begin(), bibfields.end());
|
2007-08-20 16:30:02 +00:00
|
|
|
return bibfields;
|
|
|
|
}
|
2007-08-14 16:50:51 +00:00
|
|
|
|
2007-08-20 16:30:02 +00:00
|
|
|
|
|
|
|
vector<docstring> const BiblioInfo::getEntries() const
|
|
|
|
{
|
|
|
|
vector<docstring> bibentries;
|
2008-02-14 17:00:40 +00:00
|
|
|
set<docstring>::const_iterator it = entry_types_.begin();
|
|
|
|
set<docstring>::const_iterator end = entry_types_.end();
|
2007-08-20 16:30:02 +00:00
|
|
|
for (; it != end; ++it)
|
|
|
|
bibentries.push_back(*it);
|
2007-12-12 19:28:07 +00:00
|
|
|
sort(bibentries.begin(), bibentries.end());
|
2007-08-20 16:30:02 +00:00
|
|
|
return bibentries;
|
|
|
|
}
|
2007-08-14 16:50:51 +00:00
|
|
|
|
|
|
|
|
2017-01-07 16:32:45 +00:00
|
|
|
docstring const BiblioInfo::getAuthorList(docstring const & key, Buffer const & buf) const
|
2007-08-14 16:50:51 +00:00
|
|
|
{
|
2007-08-20 16:30:02 +00:00
|
|
|
BiblioInfo::const_iterator it = find(key);
|
|
|
|
if (it == end())
|
|
|
|
return docstring();
|
|
|
|
BibTeXInfo const & data = it->second;
|
2017-01-07 16:32:45 +00:00
|
|
|
return data.getAuthorList(&buf, false);
|
2007-08-20 16:30:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-11 16:11:55 +00:00
|
|
|
docstring const BiblioInfo::getCiteNumber(docstring const & key) const
|
|
|
|
{
|
|
|
|
BiblioInfo::const_iterator it = find(key);
|
|
|
|
if (it == end())
|
|
|
|
return docstring();
|
|
|
|
BibTeXInfo const & data = it->second;
|
|
|
|
return data.citeNumber();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-14 14:25:26 +00:00
|
|
|
docstring const BiblioInfo::getYear(docstring const & key, bool use_modifier) const
|
2007-08-20 16:30:02 +00:00
|
|
|
{
|
|
|
|
BiblioInfo::const_iterator it = find(key);
|
|
|
|
if (it == end())
|
|
|
|
return docstring();
|
|
|
|
BibTeXInfo const & data = it->second;
|
2009-01-17 00:16:31 +00:00
|
|
|
docstring year = data.getYear();
|
2010-01-11 16:11:55 +00:00
|
|
|
if (year.empty()) {
|
Improve info display for biblatex databases, part II
In addition to the classic crossref, biblatex introduces xdata
references in order to source-out common data of entries. Entries
that have "xdata = {somekey}" just inherit all fields from the
respective @xdata entry, if the field is not already defined in
the entry itself (just like crossref, with the exception that @xdata
entries themselves are _never_ output on their own). @xdata entries can
themselves inherit to other @xdata entries (ad infinitum). So you can,
for instance, setup an xdata entry for a book series with series name
that inherits an xdata entry with information of the publisher
(publisher, address). Any book of that series would just need to refer
to the series xdata and add the number.
BiblioInfo now checks, in addition to crossrefs, for such xdata
references and inherits missing fields.
Nte that biblatex also introduces an "xref" field as an alternative to
crossref. We must not care about that, since the point of xref is that
it does not inherit fields from the target (just cites that one if a
given number of refs to it exist)
2016-09-18 10:44:12 +00:00
|
|
|
// let's try the crossrefs
|
|
|
|
vector<docstring> const xrefs = getXRefs(data);
|
|
|
|
if (xrefs.empty())
|
2013-01-07 14:51:19 +00:00
|
|
|
// no luck
|
2013-01-14 14:25:26 +00:00
|
|
|
return docstring();
|
Improve info display for biblatex databases, part II
In addition to the classic crossref, biblatex introduces xdata
references in order to source-out common data of entries. Entries
that have "xdata = {somekey}" just inherit all fields from the
respective @xdata entry, if the field is not already defined in
the entry itself (just like crossref, with the exception that @xdata
entries themselves are _never_ output on their own). @xdata entries can
themselves inherit to other @xdata entries (ad infinitum). So you can,
for instance, setup an xdata entry for a book series with series name
that inherits an xdata entry with information of the publisher
(publisher, address). Any book of that series would just need to refer
to the series xdata and add the number.
BiblioInfo now checks, in addition to crossrefs, for such xdata
references and inherits missing fields.
Nte that biblatex also introduces an "xref" field as an alternative to
crossref. We must not care about that, since the point of xref is that
it does not inherit fields from the target (just cites that one if a
given number of refs to it exist)
2016-09-18 10:44:12 +00:00
|
|
|
vector<docstring>::const_iterator it = xrefs.begin();
|
|
|
|
vector<docstring>::const_iterator en = xrefs.end();
|
|
|
|
for (; it != en; ++it) {
|
|
|
|
BiblioInfo::const_iterator const xrefit = find(*it);
|
|
|
|
if (xrefit == end())
|
|
|
|
continue;
|
|
|
|
BibTeXInfo const & xref_data = xrefit->second;
|
|
|
|
year = xref_data.getYear();
|
|
|
|
if (!year.empty())
|
|
|
|
// success!
|
|
|
|
break;
|
|
|
|
}
|
2010-01-11 16:11:55 +00:00
|
|
|
}
|
|
|
|
if (use_modifier && data.modifier() != 0)
|
|
|
|
year += data.modifier();
|
|
|
|
return year;
|
2007-08-14 16:50:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-14 14:25:26 +00:00
|
|
|
docstring const BiblioInfo::getYear(docstring const & key, Buffer const & buf, bool use_modifier) const
|
|
|
|
{
|
|
|
|
docstring const year = getYear(key, use_modifier);
|
|
|
|
if (year.empty())
|
|
|
|
return buf.B_("No year");
|
|
|
|
return year;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-03 22:15:11 +00:00
|
|
|
docstring const BiblioInfo::getInfo(docstring const & key,
|
2017-01-07 16:12:08 +00:00
|
|
|
Buffer const & buf, CiteItem const & ci) const
|
2007-08-14 16:50:51 +00:00
|
|
|
{
|
2007-08-20 16:30:02 +00:00
|
|
|
BiblioInfo::const_iterator it = find(key);
|
|
|
|
if (it == end())
|
2011-12-05 13:17:55 +00:00
|
|
|
return docstring(_("Bibliography entry not found!"));
|
2007-08-20 16:30:02 +00:00
|
|
|
BibTeXInfo const & data = it->second;
|
Improve info display for biblatex databases, part II
In addition to the classic crossref, biblatex introduces xdata
references in order to source-out common data of entries. Entries
that have "xdata = {somekey}" just inherit all fields from the
respective @xdata entry, if the field is not already defined in
the entry itself (just like crossref, with the exception that @xdata
entries themselves are _never_ output on their own). @xdata entries can
themselves inherit to other @xdata entries (ad infinitum). So you can,
for instance, setup an xdata entry for a book series with series name
that inherits an xdata entry with information of the publisher
(publisher, address). Any book of that series would just need to refer
to the series xdata and add the number.
BiblioInfo now checks, in addition to crossrefs, for such xdata
references and inherits missing fields.
Nte that biblatex also introduces an "xref" field as an alternative to
crossref. We must not care about that, since the point of xref is that
it does not inherit fields from the target (just cites that one if a
given number of refs to it exist)
2016-09-18 10:44:12 +00:00
|
|
|
BibTeXInfoList xrefptrs;
|
|
|
|
vector<docstring> const xrefs = getXRefs(data);
|
|
|
|
if (!xrefs.empty()) {
|
|
|
|
vector<docstring>::const_iterator it = xrefs.begin();
|
|
|
|
vector<docstring>::const_iterator en = xrefs.end();
|
|
|
|
for (; it != en; ++it) {
|
|
|
|
BiblioInfo::const_iterator const xrefit = find(*it);
|
|
|
|
if (xrefit != end())
|
|
|
|
xrefptrs.push_back(&(xrefit->second));
|
|
|
|
}
|
2009-01-17 00:16:31 +00:00
|
|
|
}
|
2017-01-07 16:12:08 +00:00
|
|
|
return data.getInfo(xrefptrs, buf, ci);
|
2007-08-20 16:30:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-23 14:59:12 +00:00
|
|
|
docstring const BiblioInfo::getLabel(vector<docstring> keys,
|
2017-01-07 16:12:08 +00:00
|
|
|
Buffer const & buf, string const & style, CiteItem const & ci) const
|
2012-03-01 00:41:30 +00:00
|
|
|
{
|
2017-01-07 16:12:08 +00:00
|
|
|
size_t max_size = ci.max_size;
|
2014-05-23 14:59:12 +00:00
|
|
|
// shorter makes no sense
|
|
|
|
LASSERT(max_size >= 16, max_size = 16);
|
|
|
|
|
|
|
|
// we can't display more than 10 of these, anyway
|
|
|
|
bool const too_many_keys = keys.size() > 10;
|
|
|
|
if (too_many_keys)
|
|
|
|
keys.resize(10);
|
|
|
|
|
2012-03-01 00:41:30 +00:00
|
|
|
CiteEngineType const engine_type = buf.params().citeEngineType();
|
|
|
|
DocumentClass const & dc = buf.params().documentClass();
|
2013-07-20 14:05:52 +00:00
|
|
|
docstring const & format = from_utf8(dc.getCiteFormat(engine_type, style, "cite"));
|
|
|
|
docstring ret = format;
|
2012-03-01 00:41:30 +00:00
|
|
|
vector<docstring>::const_iterator key = keys.begin();
|
|
|
|
vector<docstring>::const_iterator ken = keys.end();
|
|
|
|
for (; key != ken; ++key) {
|
|
|
|
BiblioInfo::const_iterator it = find(*key);
|
|
|
|
BibTeXInfo empty_data;
|
|
|
|
empty_data.key(*key);
|
|
|
|
BibTeXInfo & data = empty_data;
|
Improve info display for biblatex databases, part II
In addition to the classic crossref, biblatex introduces xdata
references in order to source-out common data of entries. Entries
that have "xdata = {somekey}" just inherit all fields from the
respective @xdata entry, if the field is not already defined in
the entry itself (just like crossref, with the exception that @xdata
entries themselves are _never_ output on their own). @xdata entries can
themselves inherit to other @xdata entries (ad infinitum). So you can,
for instance, setup an xdata entry for a book series with series name
that inherits an xdata entry with information of the publisher
(publisher, address). Any book of that series would just need to refer
to the series xdata and add the number.
BiblioInfo now checks, in addition to crossrefs, for such xdata
references and inherits missing fields.
Nte that biblatex also introduces an "xref" field as an alternative to
crossref. We must not care about that, since the point of xref is that
it does not inherit fields from the target (just cites that one if a
given number of refs to it exist)
2016-09-18 10:44:12 +00:00
|
|
|
vector<BibTeXInfo const *> xrefptrs;
|
2012-03-01 00:41:30 +00:00
|
|
|
if (it != end()) {
|
|
|
|
data = it->second;
|
Improve info display for biblatex databases, part II
In addition to the classic crossref, biblatex introduces xdata
references in order to source-out common data of entries. Entries
that have "xdata = {somekey}" just inherit all fields from the
respective @xdata entry, if the field is not already defined in
the entry itself (just like crossref, with the exception that @xdata
entries themselves are _never_ output on their own). @xdata entries can
themselves inherit to other @xdata entries (ad infinitum). So you can,
for instance, setup an xdata entry for a book series with series name
that inherits an xdata entry with information of the publisher
(publisher, address). Any book of that series would just need to refer
to the series xdata and add the number.
BiblioInfo now checks, in addition to crossrefs, for such xdata
references and inherits missing fields.
Nte that biblatex also introduces an "xref" field as an alternative to
crossref. We must not care about that, since the point of xref is that
it does not inherit fields from the target (just cites that one if a
given number of refs to it exist)
2016-09-18 10:44:12 +00:00
|
|
|
vector<docstring> const xrefs = getXRefs(data);
|
|
|
|
if (!xrefs.empty()) {
|
|
|
|
vector<docstring>::const_iterator it = xrefs.begin();
|
|
|
|
vector<docstring>::const_iterator en = xrefs.end();
|
|
|
|
for (; it != en; ++it) {
|
|
|
|
BiblioInfo::const_iterator const xrefit = find(*it);
|
|
|
|
if (xrefit != end())
|
|
|
|
xrefptrs.push_back(&(xrefit->second));
|
|
|
|
}
|
2012-03-01 00:41:30 +00:00
|
|
|
}
|
|
|
|
}
|
2017-01-07 16:12:08 +00:00
|
|
|
ret = data.getLabel(xrefptrs, buf, ret, ci, key + 1 != ken, i == 1);
|
2014-05-23 14:59:12 +00:00
|
|
|
}
|
|
|
|
|
2015-10-04 18:38:47 +00:00
|
|
|
if (too_many_keys)
|
|
|
|
ret.push_back(0x2026);//HORIZONTAL ELLIPSIS
|
|
|
|
support::truncateWithEllipsis(ret, max_size);
|
2012-03-01 00:41:30 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-13 15:22:49 +00:00
|
|
|
bool BiblioInfo::isBibtex(docstring const & key) const
|
2010-02-12 16:08:30 +00:00
|
|
|
{
|
2014-10-14 19:41:42 +00:00
|
|
|
docstring key1;
|
|
|
|
split(key, key1, ',');
|
|
|
|
BiblioInfo::const_iterator it = find(key1);
|
2010-02-12 16:08:30 +00:00
|
|
|
if (it == end())
|
|
|
|
return false;
|
|
|
|
return it->second.isBibTeX();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-20 16:30:02 +00:00
|
|
|
vector<docstring> const BiblioInfo::getCiteStrings(
|
2012-03-01 00:41:30 +00:00
|
|
|
vector<docstring> const & keys, vector<CitationStyle> const & styles,
|
2017-01-07 16:12:08 +00:00
|
|
|
Buffer const & buf, CiteItem const & ci) const
|
2007-08-20 16:30:02 +00:00
|
|
|
{
|
|
|
|
if (empty())
|
|
|
|
return vector<docstring>();
|
|
|
|
|
2012-03-01 00:41:30 +00:00
|
|
|
string style;
|
2007-08-20 16:30:02 +00:00
|
|
|
vector<docstring> vec(styles.size());
|
2008-04-20 15:00:11 +00:00
|
|
|
for (size_t i = 0; i != vec.size(); ++i) {
|
2017-01-03 12:11:11 +00:00
|
|
|
style = styles[i].name;
|
2017-01-07 16:12:08 +00:00
|
|
|
vec[i] = getLabel(keys, buf, style, ci);
|
2007-08-20 16:30:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return vec;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-25 20:03:03 +00:00
|
|
|
void BiblioInfo::mergeBiblioInfo(BiblioInfo const & info)
|
|
|
|
{
|
|
|
|
bimap_.insert(info.begin(), info.end());
|
2011-04-12 17:32:16 +00:00
|
|
|
field_names_.insert(info.field_names_.begin(), info.field_names_.end());
|
|
|
|
entry_types_.insert(info.entry_types_.begin(), info.entry_types_.end());
|
2007-08-20 16:30:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-08 16:40:41 +00:00
|
|
|
namespace {
|
2012-10-27 13:45:27 +00:00
|
|
|
|
|
|
|
// used in xhtml to sort a list of BibTeXInfo objects
|
|
|
|
bool lSorter(BibTeXInfo const * lhs, BibTeXInfo const * rhs)
|
|
|
|
{
|
2017-01-07 16:32:45 +00:00
|
|
|
docstring const lauth = lhs->getAuthorList();
|
|
|
|
docstring const rauth = rhs->getAuthorList();
|
2012-10-27 13:45:27 +00:00
|
|
|
docstring const lyear = lhs->getYear();
|
|
|
|
docstring const ryear = rhs->getYear();
|
|
|
|
docstring const ltitl = lhs->operator[]("title");
|
|
|
|
docstring const rtitl = rhs->operator[]("title");
|
|
|
|
return (lauth < rauth)
|
|
|
|
|| (lauth == rauth && lyear < ryear)
|
|
|
|
|| (lauth == rauth && lyear == ryear && ltitl < rtitl);
|
|
|
|
}
|
|
|
|
|
2010-01-08 16:40:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BiblioInfo::collectCitedEntries(Buffer const & buf)
|
|
|
|
{
|
|
|
|
cited_entries_.clear();
|
|
|
|
// We are going to collect all the citation keys used in the document,
|
|
|
|
// getting them from the TOC.
|
|
|
|
// FIXME We may want to collect these differently, in the first case,
|
|
|
|
// so that we might have them in order of appearance.
|
|
|
|
set<docstring> citekeys;
|
2015-09-01 16:08:35 +00:00
|
|
|
shared_ptr<Toc const> toc = buf.tocBackend().toc("citation");
|
|
|
|
Toc::const_iterator it = toc->begin();
|
|
|
|
Toc::const_iterator const en = toc->end();
|
2010-01-08 16:40:41 +00:00
|
|
|
for (; it != en; ++it) {
|
|
|
|
if (it->str().empty())
|
|
|
|
continue;
|
|
|
|
vector<docstring> const keys = getVectorFromString(it->str());
|
|
|
|
citekeys.insert(keys.begin(), keys.end());
|
|
|
|
}
|
|
|
|
if (citekeys.empty())
|
|
|
|
return;
|
2011-12-03 22:15:11 +00:00
|
|
|
|
2010-01-08 16:40:41 +00:00
|
|
|
// We have a set of the keys used in this document.
|
2011-12-03 22:15:11 +00:00
|
|
|
// We will now convert it to a list of the BibTeXInfo objects used in
|
2010-01-08 16:40:41 +00:00
|
|
|
// this document...
|
|
|
|
vector<BibTeXInfo const *> bi;
|
|
|
|
set<docstring>::const_iterator cit = citekeys.begin();
|
|
|
|
set<docstring>::const_iterator const cen = citekeys.end();
|
|
|
|
for (; cit != cen; ++cit) {
|
|
|
|
BiblioInfo::const_iterator const bt = find(*cit);
|
|
|
|
if (bt == end() || !bt->second.isBibTeX())
|
|
|
|
continue;
|
|
|
|
bi.push_back(&(bt->second));
|
|
|
|
}
|
|
|
|
// ...and sort it.
|
|
|
|
sort(bi.begin(), bi.end(), lSorter);
|
2011-12-03 22:15:11 +00:00
|
|
|
|
2010-01-08 16:40:41 +00:00
|
|
|
// Now we can write the sorted keys
|
|
|
|
vector<BibTeXInfo const *>::const_iterator bit = bi.begin();
|
|
|
|
vector<BibTeXInfo const *>::const_iterator ben = bi.end();
|
|
|
|
for (; bit != ben; ++bit)
|
|
|
|
cited_entries_.push_back((*bit)->key());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-08 18:19:13 +00:00
|
|
|
void BiblioInfo::makeCitationLabels(Buffer const & buf)
|
|
|
|
{
|
|
|
|
collectCitedEntries(buf);
|
2012-01-09 13:16:38 +00:00
|
|
|
CiteEngineType const engine_type = buf.params().citeEngineType();
|
2013-05-16 14:00:54 +00:00
|
|
|
bool const numbers = (engine_type & ENGINE_TYPE_NUMERICAL);
|
2010-01-11 16:11:55 +00:00
|
|
|
|
|
|
|
int keynumber = 0;
|
|
|
|
char modifier = 0;
|
|
|
|
// used to remember the last one we saw
|
|
|
|
// we'll be comparing entries to see if we need to add
|
|
|
|
// modifiers, like "1984a"
|
|
|
|
map<docstring, BibTeXInfo>::iterator last;
|
|
|
|
|
2010-01-08 18:19:13 +00:00
|
|
|
vector<docstring>::const_iterator it = cited_entries_.begin();
|
|
|
|
vector<docstring>::const_iterator const en = cited_entries_.end();
|
|
|
|
for (; it != en; ++it) {
|
|
|
|
map<docstring, BibTeXInfo>::iterator const biit = bimap_.find(*it);
|
|
|
|
// this shouldn't happen, but...
|
|
|
|
if (biit == bimap_.end())
|
2010-01-11 16:11:55 +00:00
|
|
|
// ...fail gracefully, anyway.
|
2010-01-08 18:19:13 +00:00
|
|
|
continue;
|
|
|
|
BibTeXInfo & entry = biit->second;
|
2010-01-11 16:11:55 +00:00
|
|
|
if (numbers) {
|
|
|
|
docstring const num = convert<docstring>(++keynumber);
|
|
|
|
entry.setCiteNumber(num);
|
|
|
|
} else {
|
2016-06-12 04:31:33 +00:00
|
|
|
// coverity complains about our derefercing the iterator last,
|
|
|
|
// which was not initialized above. but it does get initialized
|
|
|
|
// after the first time through the loop, which is the point of
|
|
|
|
// the first test.
|
|
|
|
// coverity[FORWARD_NULL]
|
2010-01-11 16:11:55 +00:00
|
|
|
if (it != cited_entries_.begin()
|
2017-01-07 16:32:45 +00:00
|
|
|
&& entry.getAuthorList() == last->second.getAuthorList()
|
2010-01-11 16:11:55 +00:00
|
|
|
// we access the year via getYear() so as to get it from the xref,
|
|
|
|
// if we need to do so
|
|
|
|
&& getYear(entry.key()) == getYear(last->second.key())) {
|
|
|
|
if (modifier == 0) {
|
|
|
|
// so the last one should have been 'a'
|
|
|
|
last->second.setModifier('a');
|
|
|
|
modifier = 'b';
|
|
|
|
} else if (modifier == 'z')
|
|
|
|
modifier = 'A';
|
|
|
|
else
|
|
|
|
modifier++;
|
|
|
|
} else {
|
|
|
|
modifier = 0;
|
|
|
|
}
|
2011-12-03 22:15:11 +00:00
|
|
|
entry.setModifier(modifier);
|
2010-01-11 16:11:55 +00:00
|
|
|
// remember the last one
|
|
|
|
last = biit;
|
|
|
|
}
|
2010-01-08 18:19:13 +00:00
|
|
|
}
|
2013-02-01 15:18:37 +00:00
|
|
|
// Set the labels
|
|
|
|
it = cited_entries_.begin();
|
|
|
|
for (; it != en; ++it) {
|
|
|
|
map<docstring, BibTeXInfo>::iterator const biit = bimap_.find(*it);
|
|
|
|
// this shouldn't happen, but...
|
|
|
|
if (biit == bimap_.end())
|
|
|
|
// ...fail gracefully, anyway.
|
|
|
|
continue;
|
|
|
|
BibTeXInfo & entry = biit->second;
|
|
|
|
if (numbers) {
|
|
|
|
entry.label(entry.citeNumber());
|
|
|
|
} else {
|
2017-01-07 16:32:45 +00:00
|
|
|
docstring const auth = entry.getAuthorList(&buf, false);
|
2013-02-01 15:18:37 +00:00
|
|
|
// we do it this way so as to access the xref, if necessary
|
|
|
|
// note that this also gives us the modifier
|
|
|
|
docstring const year = getYear(*it, buf, true);
|
|
|
|
if (!auth.empty() && !year.empty())
|
|
|
|
entry.label(auth + ' ' + year);
|
|
|
|
else
|
|
|
|
entry.label(entry.key());
|
|
|
|
}
|
|
|
|
}
|
2010-01-08 18:19:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-05 20:33:20 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
2007-08-20 16:30:02 +00:00
|
|
|
//
|
|
|
|
// CitationStyle
|
|
|
|
//
|
2007-11-05 20:33:20 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
2007-08-20 16:30:02 +00:00
|
|
|
|
2007-08-14 16:50:51 +00:00
|
|
|
|
2017-01-03 12:11:11 +00:00
|
|
|
CitationStyle citationStyleFromString(string const & command,
|
|
|
|
BufferParams const & params)
|
2007-08-14 16:50:51 +00:00
|
|
|
{
|
2012-03-01 00:41:30 +00:00
|
|
|
CitationStyle cs;
|
2007-08-14 16:50:51 +00:00
|
|
|
if (command.empty())
|
2012-03-01 00:41:30 +00:00
|
|
|
return cs;
|
2007-08-14 16:50:51 +00:00
|
|
|
|
2017-01-03 12:11:11 +00:00
|
|
|
string const alias = params.getCiteAlias(command);
|
|
|
|
string cmd = alias.empty() ? command : alias;
|
|
|
|
if (isUpperCase(command[0])) {
|
2012-03-01 00:41:30 +00:00
|
|
|
cs.forceUpperCase = true;
|
2017-01-03 09:17:09 +00:00
|
|
|
cmd[0] = lowercase(cmd[0]);
|
2007-08-14 16:50:51 +00:00
|
|
|
}
|
|
|
|
|
2017-01-03 12:11:11 +00:00
|
|
|
size_t const n = command.size() - 1;
|
|
|
|
if (command[n] == '*') {
|
2017-01-03 16:25:41 +00:00
|
|
|
cs.hasStarredVersion = true;
|
2017-01-03 12:11:11 +00:00
|
|
|
if (suffixIs(cmd, '*'))
|
|
|
|
cmd = cmd.substr(0, cmd.size() - 1);
|
2007-08-14 16:50:51 +00:00
|
|
|
}
|
|
|
|
|
2017-01-03 12:11:11 +00:00
|
|
|
cs.name = cmd;
|
2012-03-01 00:41:30 +00:00
|
|
|
return cs;
|
2007-08-14 16:50:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-01-03 12:11:11 +00:00
|
|
|
string citationStyleToString(const CitationStyle & cs, bool const latex)
|
2007-08-14 16:50:51 +00:00
|
|
|
{
|
2017-01-03 12:11:11 +00:00
|
|
|
string cmd = latex ? cs.cmd : cs.name;
|
2012-03-01 00:41:30 +00:00
|
|
|
if (cs.forceUpperCase)
|
2016-07-12 23:38:28 +00:00
|
|
|
cmd[0] = uppercase(cmd[0]);
|
2017-01-03 16:25:41 +00:00
|
|
|
if (cs.hasStarredVersion)
|
2012-03-01 00:41:30 +00:00
|
|
|
cmd += '*';
|
|
|
|
return cmd;
|
2007-08-14 16:50:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace lyx
|