Refbase update_2021-01-28_15_58

This commit is contained in:
root
2021-01-28 15:58:21 +01:00
commit 64e7261da6
300 changed files with 164739 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
<?php
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).
//
// This code is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY. Please see the GNU General Public
// License for more details.
//
// File: ./export/bibutils/export_xml2ads.php
// Repository: $HeadURL$
// Author(s): Matthias Steffens <mailto:refbase@extracts.de>
//
// Created: 04-Jun-08, 21:15
// Modified: $Date: 2008-06-19 17:47:19 +0000 (Thu, 19 Jun 2008) $
// $Author$
// $Revision: 1143 $
// This is an export format file (which must reside within the 'export/' sub-directory of your refbase root directory). It contains a version of the
// 'exportRecords()' function that outputs records according to the export format used by the SAO/NASA Astrophysics Data System (http://adsabs.harvard.edu/).
// This function is basically a wrapper for the bibutils 'xml2ads' command line tool (http://www.scripps.edu/~cdputnam/software/bibutils/bibutils.html).
// --------------------------------------------------------------------
// --- BEGIN EXPORT FORMAT ---
// Export found records in 'ADS' format:
// Requires the following packages (available under the GPL):
// - bibutils v3.40 or greater <http://www.scripps.edu/~cdputnam/software/bibutils/bibutils.html>
// - ActiveLink PHP XML Package <http://www.active-link.com/software/>
function exportRecords($result, $rowOffset, $showRows, $exportStylesheet, $displayType)
{
// function 'exportBibutils()' is defined in 'execute.inc.php'
return exportBibutils($result,"xml2ads");
}
// --- END EXPORT FORMAT ---
// --------------------------------------------------------------------
?>

View File

@@ -0,0 +1,45 @@
<?php
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).
//
// This code is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY. Please see the GNU General Public
// License for more details.
//
// File: ./export/bibutils/export_xml2bib.php
// Repository: $HeadURL: file:///svn/p/refbase/code/branches/bleeding-edge/export/bibutils/export_xml2bib.php $
// Author(s): Matthias Steffens <mailto:refbase@extracts.de>
//
// Created: 28-Sep-04, 22:14
// Modified: $Date: 2007-02-17 01:10:14 +0000 (Sat, 17 Feb 2007) $
// $Author: msteffens $
// $Revision: 894 $
// This is an export format file (which must reside within the 'export/' sub-directory of your refbase root directory). It contains a version of the
// 'exportRecords()' function that outputs records according to the export format used by 'BibTeX', the bibliographic companion to the LaTeX macro package.
// This function is basically a wrapper for the bibutils 'xml2bib' command line tool (http://www.scripps.edu/~cdputnam/software/bibutils/bibutils.html).
// --------------------------------------------------------------------
// --- BEGIN EXPORT FORMAT ---
// Export found records in 'BibTeX' format:
// Requires the following packages (available under the GPL):
// - bibutils <http://www.scripps.edu/~cdputnam/software/bibutils/bibutils.html>
// - ActiveLink PHP XML Package <http://www.active-link.com/software/>
function exportRecords($result, $rowOffset, $showRows, $exportStylesheet, $displayType)
{
// function 'exportBibutils()' is defined in 'execute.inc.php'
$bibtexSourceText = exportBibutils($result,"xml2bib");
// function 'standardizeBibtexOutput()' is defined in 'export.inc.php'
return standardizeBibtexOutput($bibtexSourceText);
}
// --- END EXPORT FORMAT ---
// --------------------------------------------------------------------
?>

View File

@@ -0,0 +1,42 @@
<?php
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).
//
// This code is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY. Please see the GNU General Public
// License for more details.
//
// File: ./export/bibutils/export_xml2end.php
// Repository: $HeadURL: file:///svn/p/refbase/code/branches/bleeding-edge/export/bibutils/export_xml2end.php $
// Author(s): Matthias Steffens <mailto:refbase@extracts.de>
//
// Created: 28-Sep-04, 22:14
// Modified: $Date: 2007-02-17 01:10:14 +0000 (Sat, 17 Feb 2007) $
// $Author: msteffens $
// $Revision: 894 $
// This is an export format file (which must reside within the 'export/' sub-directory of your refbase root directory). It contains a version of the
// 'exportRecords()' function that outputs records according to the export format used by the commercial bibliographic package 'Endnote' (http://www.endnote.com).
// This function is basically a wrapper for the bibutils 'xml2end' command line tool (http://www.scripps.edu/~cdputnam/software/bibutils/bibutils.html).
// --------------------------------------------------------------------
// --- BEGIN EXPORT FORMAT ---
// Export found records in 'Endnote' format:
// Requires the following packages (available under the GPL):
// - bibutils <http://www.scripps.edu/~cdputnam/software/bibutils/bibutils.html>
// - ActiveLink PHP XML Package <http://www.active-link.com/software/>
function exportRecords($result, $rowOffset, $showRows, $exportStylesheet, $displayType)
{
// function 'exportBibutils()' is defined in 'execute.inc.php'
return exportBibutils($result,"xml2end");
}
// --- END EXPORT FORMAT ---
// --------------------------------------------------------------------
?>

View File

@@ -0,0 +1,42 @@
<?php
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).
//
// This code is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY. Please see the GNU General Public
// License for more details.
//
// File: ./export/bibutils/export_xml2isi.php
// Repository: $HeadURL$
// Author(s): Matthias Steffens <mailto:refbase@extracts.de>
//
// Created: 21-Mar-07, 23:17
// Modified: $Date: 2007-03-21 22:36:40 +0000 (Wed, 21 Mar 2007) $
// $Author$
// $Revision: 908 $
// This is an export format file (which must reside within the 'export/' sub-directory of your refbase root directory). It contains a version of the
// 'exportRecords()' function that outputs records according to the export format used by the ISI Web of Science Internet Database Service (http://scientific.thomson.com/products/wos/).
// This function is basically a wrapper for the bibutils 'xml2isi' command line tool (http://www.scripps.edu/~cdputnam/software/bibutils/bibutils.html).
// --------------------------------------------------------------------
// --- BEGIN EXPORT FORMAT ---
// Export found records in 'ISI' format:
// Requires the following packages (available under the GPL):
// - bibutils <http://www.scripps.edu/~cdputnam/software/bibutils/bibutils.html>
// - ActiveLink PHP XML Package <http://www.active-link.com/software/>
function exportRecords($result, $rowOffset, $showRows, $exportStylesheet, $displayType)
{
// function 'exportBibutils()' is defined in 'execute.inc.php'
return exportBibutils($result,"xml2isi");
}
// --- END EXPORT FORMAT ---
// --------------------------------------------------------------------
?>

View File

@@ -0,0 +1,48 @@
<?php
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).
//
// This code is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY. Please see the GNU General Public
// License for more details.
//
// File: ./export/bibutils/export_xml2ris.php
// Repository: $HeadURL: file:///svn/p/refbase/code/branches/bleeding-edge/export/bibutils/export_xml2ris.php $
// Author(s): Matthias Steffens <mailto:refbase@extracts.de>
//
// Created: 28-Sep-04, 22:14
// Modified: $Date: 2008-08-19 17:13:01 +0000 (Tue, 19 Aug 2008) $
// $Author: msteffens $
// $Revision: 1198 $
// This is an export format file (which must reside within the 'export/' sub-directory of your refbase root directory). It contains a version of the
// 'exportRecords()' function that outputs records according to the standard export format used e.g. by commercial bibliographic packages like 'Reference Manager' (http://www.refman.com).
// This function is basically a wrapper for the bibutils 'xml2ris' command line tool (http://www.scripps.edu/~cdputnam/software/bibutils/bibutils.html).
// --------------------------------------------------------------------
// --- BEGIN EXPORT FORMAT ---
// Export found records in 'RIS' format:
// Requires the following packages (available under the GPL):
// - bibutils <http://www.scripps.edu/~cdputnam/software/bibutils/bibutils.html>
// - ActiveLink PHP XML Package <http://www.active-link.com/software/>
function exportRecords($result, $rowOffset, $showRows, $exportStylesheet, $displayType)
{
// function 'exportBibutils()' is defined in 'execute.inc.php'
$risSourceText = exportBibutils($result,"xml2ris");
// NOTE: the 'exec()' command that is used in function 'execute()' in file 'execute.inc.php'
// does not include trailing whitespace in its '$output' array [*]; since this would
// chop off trailing whitespace from closing RIS 'ER - ' tags, we add it back here
// [*] see <http://www.php.net/manual/en/function.exec.php>
return preg_replace("/^ER -$/m", "ER - ", $risSourceText);
}
// --- END EXPORT FORMAT ---
// --------------------------------------------------------------------
?>

View File

@@ -0,0 +1,44 @@
<?php
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).
//
// This code is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY. Please see the GNU General Public
// License for more details.
//
// File: ./export/bibutils/export_xml2word.php
// Repository: $HeadURL$
// Author(s): Matthias Steffens <mailto:refbase@extracts.de>
//
// Created: 21-Mar-07, 23:17
// Modified: $Date: 2008-04-14 17:00:27 +0000 (Mon, 14 Apr 2008) $
// $Author$
// $Revision: 1075 $
// This is an export format file (which must reside within the 'export/' sub-directory of your refbase root directory). It contains a version of the
// 'exportRecords()' function that outputs records according to the Word 2007 bibliography XML format (http://office.microsoft.com/word/).
// This function is basically a wrapper for the bibutils 'xml2wordbib' command line tool (http://www.scripps.edu/~cdputnam/software/bibutils/bibutils.html).
// --------------------------------------------------------------------
// --- BEGIN EXPORT FORMAT ---
// Export found records in Word 2007 bibliography format:
// Requires the following packages (available under the GPL):
// - bibutils <http://www.scripps.edu/~cdputnam/software/bibutils/bibutils.html>
// - ActiveLink PHP XML Package <http://www.active-link.com/software/>
function exportRecords($result, $rowOffset, $showRows, $exportStylesheet, $displayType)
{
// function 'exportBibutils()' is defined in 'execute.inc.php'
// NOTE: if you're using a Bibutils version prior to Bibutils v3.40,
// you must rename "xml2wordbib" to "xml2word" in the line below
return exportBibutils($result,"xml2wordbib");
}
// --- END EXPORT FORMAT ---
// --------------------------------------------------------------------
?>