|
<?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 ---
|
|
|
|
// --------------------------------------------------------------------
|
|
?>
|