|
<?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: ./import/bibutils/import_endx2refbase.php
|
|
// Repository: $HeadURL$
|
|
// Author(s): Matthias Steffens <mailto:refbase@extracts.de>
|
|
//
|
|
// Created: 21-Mar-07, 22:57
|
|
// Modified: $Date: 2007-09-27 14:11:28 +0000 (Thu, 27 Sep 2007) $
|
|
// $Author$
|
|
// $Revision: 992 $
|
|
|
|
// This is an import format file (which must reside within the 'import/' sub-directory of your refbase root directory). It contains a version of the
|
|
// 'importRecords()' function that imports records from 'Endnote XML'-formatted data, i.e. data that were formatted according to the XML export format
|
|
// used by the commercial bibliographic package 'Endnote' (http://www.endnote.com).
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
// --- BEGIN IMPORT FORMAT ---
|
|
|
|
// Import records from Endnote XML-formatted source data:
|
|
|
|
// Requires the following packages (available under the GPL):
|
|
// - bibutils <http://www.scripps.edu/~cdputnam/software/bibutils/bibutils.html>
|
|
|
|
function importRecords($sourceText, $importRecordsRadio, $importRecordNumbersArray)
|
|
{
|
|
// convert Endnote XML text style markup into proper refbase markup:
|
|
$sourceText = standardizeEndnoteXMLInput($sourceText); // function 'standardizeEndnoteXMLInput()' is defined in 'import.inc.php'
|
|
|
|
// convert Endnote format to MODS XML format:
|
|
$sourceText = importBibutils($sourceText,"endx2xml"); // function 'importBibutils()' is defined in 'execute.inc.php'
|
|
|
|
// convert MODS XML format to RIS format:
|
|
$sourceText = importBibutils($sourceText,"xml2ris"); // function 'importBibutils()' is defined in 'execute.inc.php'
|
|
|
|
// parse RIS format:
|
|
return risToRefbase($sourceText, $importRecordsRadio, $importRecordNumbersArray); // function 'risToRefbase()' is defined in 'import.inc.php'
|
|
}
|
|
|
|
// --- END IMPORT FORMAT ---
|
|
|
|
// --------------------------------------------------------------------
|
|
?>
|