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,38 @@
<?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_refworks2refbase.php
// Repository: $HeadURL: file:///svn/p/refbase/code/branches/bleeding-edge/import/import_refworks2refbase.php $
// Author(s): Matthias Steffens <mailto:refbase@extracts.de>
//
// Created: 25-Aug-06, 13:10
// 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 'RefWorks'-formatted data, i.e. data formatted according to the tagged text format used
// by the commercial bibliographic web application 'RefWorks' (http://www.refworks.com).
// --------------------------------------------------------------------
// --- BEGIN IMPORT FORMAT ---
// Import records from RefWorks-formatted source data:
function importRecords($sourceText, $importRecordsRadio, $importRecordNumbersArray)
{
// parse RefWorks format:
return refworksToRefbase($sourceText, $importRecordsRadio, $importRecordNumbersArray); // function 'refworksToRefbase()' is defined in 'import.inc.php'
}
// --- END IMPORT FORMAT ---
// --------------------------------------------------------------------
?>