--- search/config.pm 2002/10/24 16:34:09 1.10 +++ search/config.pm 2002/10/24 18:42:18 1.12 @@ -104,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", '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 @@ -154,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;