--- search/config.pm 2002/06/24 16:16:15 1.3 +++ search/config.pm 2002/10/27 21:20:47 1.14 @@ -10,7 +10,7 @@ '200+', '610', '210+', - 'ISBN', + 'ISN', ); $main::NormalSearchDropdowns = 3 ; @@ -28,9 +28,10 @@ '686', '990', '991', - 'ISBN', + 'ISN', 'MFN', '215+', + '101', ); $main::AdvancedSearchDropdowns = 4 ; @@ -43,6 +44,7 @@ '205', 'Izdanje', '210+', 'Izdavanje', '215+', 'Materijalni opis', + '101', 'Jezik', '225', 'Nakladnička cjelina', '300+', 'Napomena', '330', 'Sadržaj', @@ -53,20 +55,27 @@ '990', 'Signatura', '991', 'Inventarni broj', 'ISBN', 'ISBN', - 'MFN', 'MFN', - '994a', 'Knjižnica', + 'knjiz','Knjižnica', 'sv', 'Podaci o svescima', + 'ISSN', 'ISSN', + '326', 'Učestalost izlaženja', + '992', 'Podaci o fondu', + 'tip', 'Tip građe', + '856', 'URI', ); # Field Display Order @default::FieldDisplayOrder = ( 'ISBN', + 'ISSN', '700+', '200+', '205', '210+', + '326', '215+', + '101', '225', '300+', '330', @@ -76,10 +85,11 @@ '675+', '990', '991', - 'MFN', - '994a', + '992', 'sv', - + '856', + 'knjiz', + 'tip', ); # separators @@ -90,9 +100,29 @@ '300+', '.- ', '225', ', ', '610', ' * ', + '101', '; ' + +); + +# tip gradje (we'll try to read all those directories in your isis data dirs) +%default::tip = ( + 'LIBRI', "Knjiga", +# 'ARTI', "Članak/poglavlje", + 'PERI', "Časopis", +); +# define mapping from types to html output and define order of display +@default::tip_html = ( + # tip # html output + 'Knjiga', "Knjiga", +# 'Članak/poglavlje', "Članak/poglavlje", + 'Časopis', "Časopis", + 'on-line', "on-line izdanje", ); +# chop URL to this len and add ... +$default::max_display_url_len = 80; + # Search.cgi Configuration Constrants # List of default configuration settings @@ -112,5 +142,39 @@ 'database-for-SearchFieldDescriptions','ps', ); +# Hash of icon/images names that we use +%main::ImageNames = ( + 'banner', 'banner.gif', + 'collapse', 'collapse.gif', + 'expand', 'expand.gif', +); + +# Javascript magic +$main::JavaScript_SetChecked = ' + '; + +# databases which don't have to be in database.cf (for example filled by +# other external script like web crawler) +@main::always_selected_databases = ( + "sciencedirect", + "ebsco-buh-ft", + "ebsco-hch-ft", + "ebsco-aph-ft", + "ebsco-f5h-ft", + "ebsco-hph-ft", +); 1;