<?php
// $Id: phpbib.inc.php,v 1.1.1.1 2005/02/08 11:03:22 rdmpage Exp $
require_once('config.inc.php');
require_once($config['adodb_dir']);
// Specific configuration for this module
// Database details----------------------------------------
// In this case the same use the settings in the root configuration module
$config['db_name'] = $config['db_name'];
$config['db_user'] = $config['db_user'];
$config['db_passwd'] = $config['db_passwd'];
// External service URLs-----------------------------------
// NCBI E-Utilities for accessing PubMed
$config['ncbi_url'] = 'www.ncbi.nlm.nih.gov';
$config['eutils'] = '/entrez/eutils/efetch.fcgi?';
// MIME types for exporting references---------------------
$config['mime_endnote'] = 'application/x-endnote-refer';
$config['mime_RIS'] = 'application/x-Research-Info-Systems';
$config['mime_bibtex'] = 'application/x-bibtex';
// Include files
require_once('pubmed.php');
require_once('reference.php');
require_once('refmanager.php');
?>