/[webpac-proto]/search/config.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /search/config.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.5 by dpavlin, Mon Jun 24 18:07:29 2002 UTC revision 1.11 by dpavlin, Thu Oct 24 18:25:20 2002 UTC
# Line 10  use strict; Line 10  use strict;
10          '200+',          '200+',
11          '610',          '610',
12          '210+',          '210+',
13          'ISBN',          'ISN',
14  );  );
15  $main::NormalSearchDropdowns = 3 ;  $main::NormalSearchDropdowns = 3 ;
16    
# Line 28  $main::NormalSearchDropdowns = 3 ; Line 28  $main::NormalSearchDropdowns = 3 ;
28          '686',          '686',
29          '990',          '990',
30          '991',          '991',
31          'ISBN',          'ISN',
32          'MFN',          'MFN',
33          '215+',          '215+',
34          '101',          '101',
# Line 57  $main::AdvancedSearchDropdowns = 4 ; Line 57  $main::AdvancedSearchDropdowns = 4 ;
57          'ISBN', 'ISBN',          'ISBN', 'ISBN',
58          'knjiz','Knjižnica',          'knjiz','Knjižnica',
59          'sv',   'Podaci o svescima',          'sv',   'Podaci o svescima',
60            'ISSN', 'ISSN',
61            '326',  'Učestalost izlaženja',
62            '992',  'Podaci o fondu',
63            'tip',  'Tip građe',
64            '856',  'URI',
65  );  );
66    
67    
68  # Field Display Order  # Field Display Order
69  @default::FieldDisplayOrder = (  @default::FieldDisplayOrder = (
70          'ISBN',          'ISBN',
71            'ISSN',
72          '700+',          '700+',
73          '200+',          '200+',
74          '205',          '205',
75          '210+',          '210+',
76            '326',
77          '215+',          '215+',
78          '101',          '101',
79          '225',          '225',
# Line 78  $main::AdvancedSearchDropdowns = 4 ; Line 85  $main::AdvancedSearchDropdowns = 4 ;
85          '675+',          '675+',
86          '990',          '990',
87          '991',          '991',
88            '992',
89          'sv',          'sv',
90            '856',
91          'knjiz',          'knjiz',
92            'tip',
93  );  );
94    
95  # separators  # separators
# Line 95  $main::AdvancedSearchDropdowns = 4 ; Line 104  $main::AdvancedSearchDropdowns = 4 ;
104    
105  );  );
106    
107    # tip gradje
108    %default::tip = (
109            'LIBRI',        "Knjiga",
110    #       'ARTI',         "Članak/poglavlje",
111            'PERI',         "Časopis",
112            'online',       "On-line časopisi",
113    );
114    $default::max_display_url_len = 80;
115    
116  # Search.cgi Configuration Constrants  # Search.cgi Configuration Constrants
117    
118  # List of default configuration settings  # List of default configuration settings
# Line 114  $main::AdvancedSearchDropdowns = 4 ; Line 132  $main::AdvancedSearchDropdowns = 4 ;
132          'database-for-SearchFieldDescriptions','ps',          'database-for-SearchFieldDescriptions','ps',
133  );  );
134    
135    # Hash of icon/images names that we use
136    %main::ImageNames = (
137            'banner',       'banner.gif',
138            'collapse',     'collapse.gif',
139            'expand',       'expand.gif',
140    );
141    
142    # Javascript magic
143    $main::JavaScript_SetChecked = '<SCRIPT LANGUAGE="JavaScript">
144                    <!-- hide
145                    function SetChecked(val) {
146                            dml=document.Search;
147                            len = dml.elements.length;
148                            var i=0;
149                            for( i=0 ; i<len ; i++) {
150                                    if (dml.elements[i].name==\'Database\') {
151                                            dml.elements[i].checked=val;
152                                    }
153                            }
154                    }
155                    // -->
156                    </SCRIPT>
157                    ';
158    
159    # databases which don't have to be in database.cf (for example filled by
160    # other external script like web crawler)
161    @main::always_selected_databases = (
162            "sciencedirect",
163    );
164    
165  1;  1;

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.11

  ViewVC Help
Powered by ViewVC 1.1.26