--- search/config.pm 2002/06/25 15:59:52 1.7 +++ search/config.pm 2002/10/26 20:45:10 1.13 @@ -10,7 +10,7 @@ '200+', '610', '210+', - 'ISBN', + 'ISN', ); $main::NormalSearchDropdowns = 3 ; @@ -28,7 +28,7 @@ '686', '990', '991', - 'ISBN', + 'ISN', 'MFN', '215+', '101', @@ -57,16 +57,23 @@ 'ISBN', 'ISBN', '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', @@ -78,9 +85,11 @@ '675+', '990', '991', + '992', 'sv', + '856', 'knjiz', - + 'tip', ); # separators @@ -95,6 +104,25 @@ ); +# 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 @@ -138,4 +166,11 @@ '; +# 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", +); + 1;