|
@ -0,0 +1,34 @@ |
|
|
|
|
|
<?php |
|
|
|
|
|
define('ABBRV_TYPE','key'); |
|
|
|
|
|
// use tabular layout (HTML tables)
|
|
|
|
|
|
define('BIBTEXBROWSER_LAYOUT','table'); |
|
|
|
|
|
// URL to individual files
|
|
|
|
|
|
define('BIBTEXBROWSER_URL',"https://publications.zrd-saar.de/"); |
|
|
|
|
|
// target for links
|
|
|
|
|
|
define('BIBTEXBROWSER_LINKS_TARGET','_blank'); |
|
|
|
|
|
// use IEEE Transactions-like style, e.g. puts authors in front of title
|
|
|
|
|
|
define('BIBLIOGRAPHYSTYLE', 'JanosBibliographyStyle'); |
|
|
|
|
|
//define('BIBLIOGRAPHYSECTIONS','AGSorgeBibliographySections');
|
|
|
|
|
|
// Allow "Firstname Lastname" as well as "Lastname, Firstname" for authors
|
|
|
|
|
|
define('USE_FIRST_THEN_LAST',true); |
|
|
|
|
|
|
|
|
|
|
|
// Enable all metadata generation
|
|
|
|
|
|
define('METADATA_COINS',true); // see https://en.wikipedia.org/wiki/COinS
|
|
|
|
|
|
define('METADATA_GS',true); // metadata google scholar
|
|
|
|
|
|
define('METADATA_DC',true); // see http://dublincore.org/
|
|
|
|
|
|
define('METADATA_OPENGRAPH',true); // see http://ogp.me/
|
|
|
|
|
|
define('METADATA_EPRINTS',true); // see https://wiki.eprints.org/w/Category:EPrints_Metadata_Fields
|
|
|
|
|
|
|
|
|
|
|
|
// include language config
|
|
|
|
|
|
if(isset($_GET['language'])) |
|
|
|
|
|
{ |
|
|
|
|
|
include(preg_replace('/local\.php$/',$_GET['language'].'.php',__FILE__)); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Order entries by year, but reverse the order (newest on top)
|
|
|
|
|
|
define('ORDER_FUNCTION','compare_bib_entry_by_year_reverse'); |
|
|
|
|
|
function compare_bib_entry_by_year_reverse($a, $b) |
|
|
|
|
|
{ |
|
|
|
|
|
return 0 - compare_bib_entry_by_year($a, $b); |
|
|
|
|
|
} |
|
|
|
|
|
?>
|