--- search/config.pm 2002/07/17 18:37:39 1.8 +++ search/config.pm 2002/10/24 18:42:18 1.12 @@ -61,6 +61,7 @@ '326', 'Učestalost izlaženja', '992', 'Podaci o fondu', 'tip', 'Tip građe', + '856', 'URI', ); @@ -86,6 +87,7 @@ '991', '992', 'sv', + '856', 'knjiz', 'tip', ); @@ -102,13 +104,25 @@ ); -# tip gradje +# tip gradje (we'll try to read all those directories in your isis data dirs) %default::tip = ( 'LIBRI', "Knjiga", - 'ARTI', "Članak/poglavlje", +# '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 @@ -152,4 +166,10 @@ '; +# 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", +); + 1;