2002-09-25 14:26:13 +00:00
|
|
|
/**
|
|
|
|
* \file insetbib.C
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Alejandro Aguilar Sierra
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
|
|
#include "insetbib.h"
|
|
|
|
#include "buffer.h"
|
1999-10-07 18:44:17 +00:00
|
|
|
#include "debug.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "BufferView.h"
|
|
|
|
#include "gettext.h"
|
|
|
|
#include "lyxtext.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
#include "lyxrc.h"
|
2002-07-21 21:21:06 +00:00
|
|
|
#include "lyxlex.h"
|
2002-05-24 14:34:32 +00:00
|
|
|
#include "frontends/font_metrics.h"
|
2002-05-23 12:08:47 +00:00
|
|
|
#include "frontends/LyXView.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
|
|
#include "frontends/Dialogs.h"
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
#include "support/filetools.h"
|
2000-05-17 13:40:40 +00:00
|
|
|
#include "support/path.h"
|
2001-05-17 15:11:01 +00:00
|
|
|
#include "support/os.h"
|
2001-07-29 17:39:01 +00:00
|
|
|
#include "support/lstrings.h"
|
2001-08-20 13:42:29 +00:00
|
|
|
#include "support/LAssert.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
#include <cstdlib>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-04-04 00:19:15 +00:00
|
|
|
using std::ostream;
|
2000-05-05 07:54:27 +00:00
|
|
|
using std::ifstream;
|
|
|
|
using std::getline;
|
2000-03-28 02:18:55 +00:00
|
|
|
using std::endl;
|
2000-06-07 08:53:40 +00:00
|
|
|
using std::vector;
|
|
|
|
using std::pair;
|
2001-01-31 11:46:13 +00:00
|
|
|
using std::max;
|
2000-03-28 02:18:55 +00:00
|
|
|
|
2001-01-31 11:46:13 +00:00
|
|
|
int InsetBibKey::key_counter = 0;
|
|
|
|
const string key_prefix = "key-";
|
|
|
|
|
2000-08-04 13:12:30 +00:00
|
|
|
InsetBibKey::InsetBibKey(InsetCommandParams const & p)
|
2001-07-24 15:07:09 +00:00
|
|
|
: InsetCommand(p), counter(1)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-01-31 11:46:13 +00:00
|
|
|
if (getContents().empty())
|
|
|
|
setContents(key_prefix + tostr(++key_counter));
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-11-22 16:19:48 +00:00
|
|
|
|
2001-07-06 15:57:54 +00:00
|
|
|
Inset * InsetBibKey::clone(Buffer const &, bool) const
|
2000-08-04 13:12:30 +00:00
|
|
|
{
|
|
|
|
InsetBibKey * b = new InsetBibKey(params());
|
|
|
|
b->setCounter(counter);
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-21 17:09:55 +00:00
|
|
|
void InsetBibKey::setCounter(int c)
|
|
|
|
{
|
|
|
|
counter = c;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// I'm sorry but this is still necessary because \bibitem is used also
|
|
|
|
// as a LyX 2.x command, and lyxlex is not enough smart to understand
|
2002-03-21 17:09:55 +00:00
|
|
|
// real LaTeX commands. Yes, that could be fixed, but would be a waste
|
1999-09-27 18:44:28 +00:00
|
|
|
// of time cause LyX3 won't use lyxlex anyway. (ale)
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetBibKey::write(Buffer const *, ostream & os) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2003-02-17 15:16:14 +00:00
|
|
|
os << "\n\\layout Bibliography\n\\bibitem ";
|
|
|
|
if (! getOptions().empty())
|
|
|
|
os << '[' << getOptions() << ']';
|
2000-03-06 02:42:40 +00:00
|
|
|
os << '{'
|
2000-06-07 08:53:40 +00:00
|
|
|
<< getContents() << "}\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-13 09:38:34 +00:00
|
|
|
// This is necessary here because this is written without begin_inset
|
|
|
|
// This should be changed!!! (Jug)
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetBibKey::read(Buffer const *, LyXLex & lex)
|
2001-08-06 19:13:25 +00:00
|
|
|
{
|
|
|
|
if (lex.eatLine()) {
|
|
|
|
string const token = lex.getString();
|
2000-07-13 09:38:34 +00:00
|
|
|
scanCommand(token);
|
2001-08-06 19:13:25 +00:00
|
|
|
} else {
|
2000-07-13 09:38:34 +00:00
|
|
|
lex.printError("InsetCommand: Parse error: `$$Token'");
|
2001-08-06 19:13:25 +00:00
|
|
|
}
|
2000-07-13 09:38:34 +00:00
|
|
|
|
2001-01-31 11:46:13 +00:00
|
|
|
if (prefixIs(getContents(), key_prefix)) {
|
|
|
|
int key = strToInt(getContents().substr(key_prefix.length()));
|
|
|
|
key_counter = max(key_counter, key);
|
|
|
|
}
|
|
|
|
}
|
2000-07-13 09:38:34 +00:00
|
|
|
|
2003-02-18 12:36:02 +00:00
|
|
|
|
2001-01-31 11:46:13 +00:00
|
|
|
string const InsetBibKey::getBibLabel() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2003-02-18 12:36:02 +00:00
|
|
|
return getOptions().empty() ? tostr(counter) : getOptions();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2003-02-18 12:36:02 +00:00
|
|
|
|
2001-07-28 12:24:16 +00:00
|
|
|
string const InsetBibKey::getScreenLabel(Buffer const *) const
|
2001-01-31 11:46:13 +00:00
|
|
|
{
|
2002-11-27 10:30:28 +00:00
|
|
|
return getContents() + " [" + getBibLabel() + ']';
|
2001-01-31 11:46:13 +00:00
|
|
|
}
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2002-05-26 17:33:14 +00:00
|
|
|
void InsetBibKey::edit(BufferView * bv, int, int, mouse_button::state)
|
2002-03-21 17:09:55 +00:00
|
|
|
{
|
2002-08-13 14:40:38 +00:00
|
|
|
bv->owner()->getDialogs().showBibitem(this);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-20 14:18:48 +00:00
|
|
|
void InsetBibKey::edit(BufferView * bv, bool)
|
|
|
|
{
|
2002-05-26 17:33:14 +00:00
|
|
|
edit(bv, 0, 0, mouse_button::none);
|
2001-07-20 14:18:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-18 12:36:02 +00:00
|
|
|
|
|
|
|
|
2001-07-06 15:57:54 +00:00
|
|
|
InsetBibtex::InsetBibtex(InsetCommandParams const & p, bool)
|
2000-10-03 09:13:34 +00:00
|
|
|
: InsetCommand(p)
|
2000-07-15 23:51:46 +00:00
|
|
|
{}
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-07-28 12:24:16 +00:00
|
|
|
string const InsetBibtex::getScreenLabel(Buffer const *) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
return _("BibTeX Generated References");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
int InsetBibtex::latex(Buffer const * buffer, ostream & os,
|
2000-04-19 01:42:55 +00:00
|
|
|
bool /*fragile*/, bool/*fs*/) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-08-20 13:42:29 +00:00
|
|
|
// changing the sequence of the commands
|
|
|
|
// 1. \bibliographystyle{style}
|
|
|
|
// 2. \addcontentsline{...} - if option bibtotoc set
|
|
|
|
// 3. \bibliography{database}
|
2002-03-02 16:39:54 +00:00
|
|
|
string adb;
|
2000-03-02 02:19:43 +00:00
|
|
|
string db_in = getContents();
|
|
|
|
db_in = split(db_in, adb, ',');
|
2001-08-20 13:42:29 +00:00
|
|
|
|
|
|
|
// Style-Options
|
|
|
|
string style = getOptions(); // maybe empty! and with bibtotoc
|
|
|
|
string bibtotoc;
|
2002-07-28 18:13:51 +00:00
|
|
|
if (prefixIs(style, "bibtotoc")) {
|
2001-08-20 13:42:29 +00:00
|
|
|
bibtotoc = "bibtotoc";
|
2002-07-28 18:13:51 +00:00
|
|
|
if (contains(style, ',')) {
|
|
|
|
style = split(style, bibtotoc, ',');
|
2001-08-20 13:42:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-03-21 17:09:55 +00:00
|
|
|
if (!buffer->niceFile
|
2002-01-14 23:31:23 +00:00
|
|
|
&& IsFileReadable(MakeAbsPath(style, buffer->filePath()) + ".bst")) {
|
|
|
|
style = MakeAbsPath(style, buffer->filePath());
|
2001-08-20 13:42:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!style.empty()) { // we want no \biblio...{}
|
|
|
|
os << "\\bibliographystyle{" << style << "}\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
// bibtotoc-Option
|
2002-03-21 17:09:55 +00:00
|
|
|
if (!bibtotoc.empty()) {
|
2001-08-20 13:42:29 +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
|
2002-07-21 21:21:06 +00:00
|
|
|
if (!contains(buffer->params.getLyXTextClass().name(),
|
2002-03-02 16:39:54 +00:00
|
|
|
"art")) {
|
2001-08-20 13:42:29 +00:00
|
|
|
if (buffer->params.sides == LyXTextClass::OneSide) {
|
|
|
|
// oneside
|
|
|
|
os << "\\clearpage";
|
|
|
|
} else {
|
|
|
|
// twoside
|
|
|
|
os << "\\cleardoublepage";
|
|
|
|
}
|
|
|
|
|
|
|
|
// bookclass
|
|
|
|
os << "\\addcontentsline{toc}{chapter}{\\bibname}";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// article class
|
2002-03-21 17:09:55 +00:00
|
|
|
os << "\\addcontentsline{toc}{section}{\\refname}";
|
2001-08-20 13:42:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// database
|
|
|
|
// If we generate in a temp dir, we might need to give an
|
|
|
|
// absolute path there. This is a bit complicated since we can
|
|
|
|
// have a comma-separated list of bibliographies
|
2002-03-02 16:39:54 +00:00
|
|
|
string db_out;
|
2001-12-05 08:04:20 +00:00
|
|
|
while (!adb.empty()) {
|
2000-10-03 09:13:34 +00:00
|
|
|
if (!buffer->niceFile &&
|
2002-03-21 17:09:55 +00:00
|
|
|
IsFileReadable(MakeAbsPath(adb, buffer->filePath())+".bib"))
|
|
|
|
adb = os::external_path(MakeAbsPath(adb, buffer->filePath()));
|
2000-03-02 02:19:43 +00:00
|
|
|
db_out += adb;
|
|
|
|
db_out += ',';
|
|
|
|
db_in= split(db_in, adb,',');
|
|
|
|
}
|
2002-07-28 22:50:13 +00:00
|
|
|
db_out = rtrim(db_out, ",");
|
2001-08-20 13:42:29 +00:00
|
|
|
os << "\\bibliography{" << db_out << "}\n";
|
2000-03-02 02:19:43 +00:00
|
|
|
return 2;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-01-16 22:17:38 +00:00
|
|
|
vector<string> const InsetBibtex::getFiles(Buffer const & buffer) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-08-20 13:42:29 +00:00
|
|
|
// Doesn't appear to be used (Angus, 31 July 2001)
|
2002-01-16 22:17:38 +00:00
|
|
|
Path p(buffer.filePath());
|
2001-08-20 13:42:29 +00:00
|
|
|
|
|
|
|
vector<string> vec;
|
2000-05-17 13:40:40 +00:00
|
|
|
|
2000-06-07 08:53:40 +00:00
|
|
|
string tmp;
|
1999-11-24 22:14:46 +00:00
|
|
|
string bibfiles = getContents();
|
|
|
|
bibfiles = split(bibfiles, tmp, ',');
|
2001-12-05 08:04:20 +00:00
|
|
|
while (!tmp.empty()) {
|
2001-08-20 13:42:29 +00:00
|
|
|
string file = findtexfile(ChangeExtension(tmp, "bib"), "bib");
|
|
|
|
lyxerr[Debug::LATEX] << "Bibfile: " << file << endl;
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// If we didn't find a matching file name just fail silently
|
2001-08-20 13:42:29 +00:00
|
|
|
if (!file.empty())
|
|
|
|
vec.push_back(file);
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-08-20 13:42:29 +00:00
|
|
|
// Get next file name
|
2002-03-21 17:09:55 +00:00
|
|
|
bibfiles = split(bibfiles, tmp, ',');
|
2001-08-20 13:42:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return vec;
|
|
|
|
}
|
|
|
|
|
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-02-18 12:36:02 +00:00
|
|
|
vector<pair<string, string> > const
|
|
|
|
InsetBibtex::getKeys(Buffer const * buffer) const
|
2001-08-20 13:42:29 +00:00
|
|
|
{
|
|
|
|
vector<pair<string,string> > keys;
|
|
|
|
|
|
|
|
lyx::Assert(buffer);
|
|
|
|
vector<string> const files = getFiles(*buffer);
|
|
|
|
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)) {
|
2002-07-28 22:50:13 +00:00
|
|
|
string linebuf = trim(linebuf0);
|
2002-02-16 15:59:55 +00:00
|
|
|
if (linebuf.empty()) continue;
|
2001-08-20 13:42:29 +00:00
|
|
|
if (prefixIs(linebuf, "@")) {
|
|
|
|
linebuf = subst(linebuf, '{', '(');
|
|
|
|
string tmp;
|
|
|
|
linebuf = split(linebuf, tmp, '(');
|
2002-07-16 21:17:10 +00:00
|
|
|
tmp = ascii_lowercase(tmp);
|
2001-08-20 13:42:29 +00:00
|
|
|
if (!prefixIs(tmp, "@string")
|
|
|
|
&& !prefixIs(tmp, "@preamble")) {
|
|
|
|
linebuf = split(linebuf, tmp, ',');
|
2002-07-28 22:50:13 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
return keys;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-11-24 22:14:46 +00:00
|
|
|
|
2002-05-26 17:33:14 +00:00
|
|
|
void InsetBibtex::edit(BufferView * bv, int, int, mouse_button::state)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2002-08-13 14:40:38 +00:00
|
|
|
bv->owner()->getDialogs().showBibtex(this);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-20 14:18:48 +00:00
|
|
|
void InsetBibtex::edit(BufferView * bv, bool)
|
|
|
|
{
|
2002-05-26 17:33:14 +00:00
|
|
|
edit(bv, 0, 0, mouse_button::none);
|
2001-07-20 14:18:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
bool InsetBibtex::addDatabase(string const & db)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2000-07-27 08:55:59 +00:00
|
|
|
string contents(getContents());
|
2000-09-26 13:54:57 +00:00
|
|
|
if (!contains(contents, db)) {
|
2002-03-21 17:09:55 +00:00
|
|
|
if (!contents.empty())
|
2002-11-27 10:30:28 +00:00
|
|
|
contents += ',';
|
2000-07-27 08:55:59 +00:00
|
|
|
setContents(contents + db);
|
1999-09-27 18:44:28 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
bool InsetBibtex::delDatabase(string const & db)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2000-09-26 13:54:57 +00:00
|
|
|
if (contains(getContents(), db)) {
|
1999-10-02 16:21:10 +00:00
|
|
|
string bd = db;
|
2000-11-22 18:38:31 +00:00
|
|
|
int const n = tokenPos(getContents(), ',', bd);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (n > 0) {
|
1999-10-26 23:33:30 +00:00
|
|
|
// Weird code, would someone care to explain this?(Lgb)
|
1999-11-15 10:58:38 +00:00
|
|
|
string tmp(", ");
|
1999-09-27 18:44:28 +00:00
|
|
|
tmp += bd;
|
2000-09-26 13:54:57 +00:00
|
|
|
setContents(subst(getContents(), tmp, ", "));
|
1999-11-15 10:58:38 +00:00
|
|
|
} else if (n == 0)
|
2000-06-07 08:53:40 +00:00
|
|
|
setContents(split(getContents(), bd, ','));
|
2002-03-21 17:09:55 +00:00
|
|
|
else
|
1999-09-27 18:44:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ale070405 This function maybe shouldn't be here. We'll fix this at 0.13.
|
2000-07-05 14:57:48 +00:00
|
|
|
int bibitemMaxWidth(BufferView * bv, LyXFont const & font)
|
2000-02-10 17:53:36 +00:00
|
|
|
{
|
|
|
|
int w = 0;
|
2001-08-19 13:13:47 +00:00
|
|
|
// Ha, now we are mainly at 1.2.0 and it is still here (Jug)
|
2000-02-10 17:53:36 +00:00
|
|
|
// Does look like a hack? It is! (but will change at 0.13)
|
2002-08-14 22:15:18 +00:00
|
|
|
ParagraphList::iterator it = bv->buffer()->paragraphs.begin();
|
|
|
|
ParagraphList::iterator end = bv->buffer()->paragraphs.end();
|
|
|
|
for (; it != end; ++it) {
|
2003-02-17 15:16:14 +00:00
|
|
|
if (it->bibkey()) {
|
|
|
|
int const wx = it->bibkey()->width(bv, font);
|
2002-08-14 22:15:18 +00:00
|
|
|
if (wx > w)
|
|
|
|
w = wx;
|
2000-02-10 17:53:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return w;
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
// ale070405
|
2000-10-03 18:38:10 +00:00
|
|
|
string const bibitemWidest(Buffer const * buffer)
|
2000-02-10 17:53:36 +00:00
|
|
|
{
|
|
|
|
int w = 0;
|
|
|
|
// Does look like a hack? It is! (but will change at 0.13)
|
2002-08-14 22:15:18 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
InsetBibKey * bkey = 0;
|
|
|
|
LyXFont font;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2002-08-14 22:15:18 +00:00
|
|
|
ParagraphList::iterator it = buffer->paragraphs.begin();
|
|
|
|
ParagraphList::iterator end = buffer->paragraphs.end();
|
|
|
|
for (; it != end; ++it) {
|
2003-02-17 15:16:14 +00:00
|
|
|
if (it->bibkey()) {
|
2001-01-25 15:32:35 +00:00
|
|
|
int const wx =
|
2003-02-17 15:16:14 +00:00
|
|
|
font_metrics::width(it->bibkey()->getBibLabel(),
|
2002-08-14 22:15:18 +00:00
|
|
|
font);
|
2000-02-10 17:53:36 +00:00
|
|
|
if (wx > w) {
|
|
|
|
w = wx;
|
2003-02-17 15:16:14 +00:00
|
|
|
bkey = it->bibkey();
|
2000-02-10 17:53:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-01-31 11:46:13 +00:00
|
|
|
if (bkey && !bkey->getBibLabel().empty())
|
|
|
|
return bkey->getBibLabel();
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
return "99";
|
|
|
|
}
|