|
<?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/import_ris2refbase.php
|
|
// Repository: $HeadURL: file:///svn/p/refbase/code/branches/bleeding-edge/import/import_ris2refbase.php $
|
|
// Author(s): Matthias Steffens <mailto:refbase@extracts.de>
|
|
//
|
|
// Created: 23-Feb-06, 02:35
|
|
// Modified: $Date: 2007-02-17 01:10:14 +0000 (Sat, 17 Feb 2007) $
|
|
// $Author: msteffens $
|
|
// $Revision: 894 $
|
|
|
|
// 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 'RIS'-formatted data, i.e. data formatted according to the standard export format used e.g.
|
|
// by commercial bibliographic packages like 'Reference Manager' (http://www.refman.com).
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
// --- BEGIN IMPORT FORMAT ---
|
|
|
|
// Import records from RIS-formatted source data:
|
|
|
|
function importRecords($sourceText, $importRecordsRadio, $importRecordNumbersArray)
|
|
{
|
|
// parse RIS format:
|
|
return risToRefbase($sourceText, $importRecordsRadio, $importRecordNumbersArray); // function 'risToRefbase()' is defined in 'import.inc.php'
|
|
}
|
|
|
|
// --- END IMPORT FORMAT ---
|
|
|
|
// --------------------------------------------------------------------
|
|
?>
|