Bug 29960: Remove Modernizr dependency in the OPAC
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / about.tt
1 [% USE HtmlTags %]
2 [% USE Koha %]
3 [% USE KohaDates %]
4 [% SET footerjs = 1 %]
5 [% INCLUDE 'doc-head-open.inc' %]
6 <title>About Koha &rsaquo; Koha</title>
7 [% INCLUDE 'doc-head-close.inc' %]
8 </head>
9 <body id="about_about" class="about">
10 [% INCLUDE 'header.inc' %]
11 [% PROCESS 'about-team.inc' %]
12
13 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
14     <ol>
15         <li>
16             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
17         </li>
18         <li>
19             <a href="#" aria-current="page">About Koha</a>
20         </li>
21     </ol>
22 </nav>
23
24 <div class="main container-fluid">
25     <div class="row">
26         <div class="col-md-12">
27
28             <h1>About Koha</h1>
29
30     <div id="abouttabs" class="toptabs numbered">
31         <ul>
32         <li><a href="#about">Server information</a></li>
33         <li><a href="#perl">Perl modules</a></li>
34         <li><a href="#sysinfo">System information</a></li>
35         <li><a href="#team">Koha team</a></li>
36         <li><a href="#licenses">Licenses</a></li>
37         <li><a href="#translations">Translations</a></li>
38         <li><a href="#history">Timeline</a></li>
39         </ul>
40
41         <div id="about">
42
43         <table>
44             <caption>Server information</caption>
45             <tr><th scope="row">Koha version: </th><td>[% kohaVersion | html %]</td></tr>
46             <tr><th scope="row">OS version ('uname -a'): </th><td>[% osVersion | html %]</td></tr>
47             <tr><th scope="row">Perl interpreter: </th><td>[% perlPath | html %]</td></tr>
48             <tr><th scope="row">Perl version: </th><td>[% perlVersion | html %]</td></tr>
49             <tr><th scope="row">Perl @INC: </th><td>
50                 [% FOREACH perlIncPat IN perlIncPath %]
51                     [% perlIncPat.perlinc | html %] <br />
52                 [% END %]
53             </td></tr>
54             <tr><th scope="row">MySQL version: </th><td>[% mysqlVersion | html %]</td></tr>
55             <tr><th scope="row">Apache version: </th><td>[% apacheVersion | html %]</td></tr>
56           [% IF (is_psgi) %]
57             <tr><th scope="row">PSGI: </th><td>[% psgi_server | html %]</td></tr>
58           [% END %]
59           [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' %]
60             <tr>
61                 <th scope="row">Elasticsearch: </th>
62             [% IF elasticsearch_fatal_config_error %]
63                 <td><span class="bg-warning">[% elasticsearch_fatal_config_error | html %]</span></td>
64             [% ELSE %]
65                 [% IF elasticsearch_status.running %]
66                     <td class="bg-success">
67                 [% ELSE %]
68                     <td>
69                 [% END %]
70                     Version:
71                     <span>[% elasticsearch_status.version | html %]</span>
72                     |
73                     Nodes:
74                     <span>[% elasticsearch_status.nodes.join(' / ') | html %]</span>
75                     |
76                     Status:
77                 [% IF elasticsearch_status.running %]
78                     <span>running</span>
79                     |
80                     Indices:
81                   [% FOREACH index IN elasticsearch_status.indexes %]
82                       [% index.index_name | html %] (count: <emph>[% index.count | html %]</emph>)[% UNLESS loop.last %], [% END %]
83                   [% END %]
84                 [% ELSE %]
85                     <span class="bg-warning">not running</span>
86                 [% END %]
87                 </td>
88             [% END %]
89             </tr>
90           [% END %]
91             <tr><th scope="row">Memcached: </th>
92                 [% IF memcached_running AND is_memcached_still_active AND where_is_memcached_config == 'config_only' %]
93                     <td class="bg-success">
94                 [% ELSE %]
95                     <td>
96                 [% END %]
97                     Servers: [% IF memcached_servers %]<span>[% memcached_servers | html %]</span>
98                              [% ELSE %]<span>undefined</span>[% END %] |
99                     Namespace: [% IF memcached_namespace %]<span>[% memcached_namespace | html %]</span>
100                                [% ELSE %]<span>undefined</span>[% END %] |
101                     Status: [% IF memcached_servers %]
102                                 [% IF memcached_running and is_memcached_still_active %]
103                                     <span class="bg-success">running</span>.
104                                 [% ELSE %]
105                                     <span class="bg-warning">not running</span>.
106                                     [% IF is_psgi %]
107                                         <span>Remember memcached needs to be started before Plack.</span>
108                                     [% END %]
109                                 [% END %]
110                             [% ELSE %]
111                                 <span>unknown</span>
112                             [% END %] |
113                     Config read from:
114                     [% SWITCH where_is_memcached_config %]
115                         [% CASE 'config_only' %]
116                             <span class="bg-success">koha-conf.xml</span>
117                         [% CASE 'ENV_only' %]
118                             <span class="bg-warning">ENV</span> Note that the right place to define the memcached config is in your $KOHA_CONF file
119                         [% CASE 'both' %]
120                             <span class="bg-warning">ENV and koha-conf.xml</span> Note that the right place to define the memcached config is in your $KOHA_CONF file. To avoid any misunderstanding you should not export the memcached config from ENV.
121                         [% CASE # nowhere %]
122                             <span class="bg-warning">Nowhere</span> Note that the right place to define the memcached config is in your $KOHA_CONF file. Currently you do not have a valid memcached configuration defined.
123                     [% END %]
124                   [% IF effective_caching_method != 'Cache::Memcached::Fast::Safe' %]
125                     | Effective caching method: [% effective_caching_method | html %]
126                   [% END %]
127                 </td>
128             </tr>
129             <tr><th scope="row">Zebra version: </th><td>[% zebraVersion | html %]</td></tr>
130             <tr><th scope="row">Zebra status: </th>
131             [% IF (errZebraConnection == 10000) %]
132             <td class="bg-danger"><strong>Zebra server seems not to be available. Is it started?</strong></td>
133             [% ELSIF (errZebraConnection) %]
134             <td class="bg-warning"><strong>Error message from Zebra: [% ( errZebraConnection ) | html %]</strong></td>
135             [% ELSE %]
136             <td class="bg-success">Running</td>
137             [% END %]
138             </tr>
139             <tr>
140                 <th scope="row">Message broker: </th>
141                 [% IF warnConnectBroker %]
142                 <td class="bg-warning"><strong>Using SQL polling</strong></td>
143                 [% ELSE %]
144                 <td class="bg-success">Using RabbitMQ</td>
145                 [% END %]
146             </tr>
147             <tr>
148               <th scope="row">Date and time: </th>
149               <td>[% current_date_and_time | $KohaDates  with_hours => 1 %]</td>
150             </tr>
151             <tr>
152               [% timezone_config_class = (time_zone.config_invalid) ? 'bg-warning' : '' %]
153               [% timezone_env_class    = (time_zone.env_invalid)    ? 'bg-warning' : '' %]
154               <th scope="row">Time zone: </th>
155               <td>Used: <span>[% time_zone.actual | html %]</span>
156                           [% IF time_zone.actual_bad_tz_fallback %]
157                              <span>(This is a fallback value due to a bad configuration)</span>
158                           [% END %]
159                            |
160                   Config: [% IF time_zone.config != '' %]
161                             <span class="[% timezone_config_class | html %]">[% time_zone.config | html %]</span>
162                           [% ELSE %]
163                             <span>Undefined</span>
164                           [% END %] |
165                   Environment (TZ):  [% IF time_zone.environment != '' %]
166                           <span class="[% timezone_env_class | html %]">[% time_zone.environment | html %]</span>
167                         [% ELSE %]
168                           <span>Undefined</span>
169                         [% END %]
170               </td>
171             </tr>
172         </table>
173         </div>
174         <div id="perl">
175             <table style="cursor:pointer">
176                 <caption>Perl modules</caption>
177                 [% FOREACH tabl IN table %]
178                 <tr>
179                     [% FOREACH ro IN tabl.row %]
180                     [% IF ( ro.current ) %]
181                     [% IF ( ro.require ) %]
182                     <th scope="row" style="font-weight:bold;" title="Module current">
183                     [% ELSE %]
184                     <th scope="row" style="font-weight:normal" title="Module current">
185                     [% END %]
186                     [% ELSIF ( ro.upgrade ) %]
187                     [% IF ( ro.require ) %]
188                     <th scope="row" style="background-color:#FFCB2F;font-weight:bold;" title="Module upgrade needed">
189                     [% ELSE %]
190                     <th scope="row" style="background-color:#FFCB2F;font-weight:normal" title="Module upgrade needed">
191                     [% END %]
192                     [% ELSE %]
193                     [% IF ( ro.name == '' ) %]
194                     <th>
195                     [% ELSIF ( ro.require ) %]
196                     <th scope="row" style="background-color:#FF8A8A;font-weight:bold;" title="Required module missing">
197                     [% ELSE %]
198                     <th scope="row" style="background-color:#FF8A8A;font-weight:normal" title="Optional module missing">
199                     [% END %]
200                     [% END %]
201                     [% IF ( ro.name ) %]
202                     [% ro.name | html %] <span style="font-weight:normal; font-size:smaller"> ([% ro.reqversion | html %][% IF ro.maxversion %] - [% ro.maxversion | html %][% END %][% IF ro.excversion %][% FOR v IN ro.excversion %], ![% v | html %][% END %][% END %])</span>
203                     [% END %]
204                     </th>
205                     [% IF ( ro.name == '' ) %]
206                     <td>
207                     [% ELSIF ( ro.version ) %]
208                     <td>[% ro.version | html %]
209                     [% ELSE %]
210                     <td style="font-weight:bold">Not Installed [% END %]</td>
211                     [% END %]
212                 </tr>
213                 [% END %]
214             </table>
215         </div>
216
217         <div id="sysinfo">
218     [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatronOPACPrivacy || warnPrefAnonymousPatronAnonSuggestions || warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist || warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist || warnPrefKohaAdminEmailAddress || warnPrefOpacHiddenItems || invalid_yesno.count || warnNoActiveCurrency || warnIsRootUser || xml_config_warnings.size || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || has_ai_issues || oauth2_missing_deps || bad_yaml_prefs || warnRelationships || log4perl_errors || config_bcrypt_settings_no_set || warnHiddenBiblionumbers.size || warnConnectBroker %]
219         [% IF (warnIsRootUser) %]
220             <h2>Warning regarding current user</h2>
221             <p>You are logged in as the database administrative user. This is not recommended because some parts of Koha will not function as expected when using this account.</p>
222             <p>Please log in instead with a regular staff account. To create a staff account, create a library, a patron category 'Staff' and add a new patron. Then give this patron permissions from 'More' in the toolbar.</p>
223         [% END %]
224
225         [% IF has_ai_issues %]
226             <h2>Data problems</h2>
227             <p>Some of your tables have problems with their auto_increment values which may lead to data loss.</p>
228             <p><strong>You should not ignore this warning.</strong></p>
229             <p>The problem is that InnoDB does not keep auto_increment across SQL server restarts (it is only set in memory). So on server startup the auto_increment values are set to max(table.id)+1.</p>
230             <p>To know how to avoid this problem see the related wiki page:
231             <a href="https://wiki.koha-community.org/wiki/DBMS_auto_increment_fix">DBMS auto increment fix</a>
232             </p>
233
234             <h3>Problems found</h3>
235             [% IF ai_patrons %]
236                 <h4>Patrons</h4>
237                 <p>The following ids exist in both tables [% "borrowers" | $HtmlTags tag="strong" %] and [% "deletedborrowers" | $HtmlTags tag="strong" %]:</p>
238                 <p>[% FOR p IN ai_patrons %][% p.borrowernumber | html %][% UNLESS loop.last %], [% END %][% END %]</p>
239             [% END %]
240             [% IF ai_biblios %]
241                 <h4>Bibliographic records</h4>
242                 <p>The following ids exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblio" | $HtmlTags tag="strong" %]:</p>
243                 <p>[% FOR b IN ai_biblios %][% b.biblionumber | html %][% UNLESS loop.last %], [% END %][% END %]</p>
244             [% END %]
245             [% IF ai_items %]
246                 <h4>Items</h4>
247                 <p>The following ids exist in both tables [% "items" | $HtmlTags tag="strong" %] and [% "deleteditems" | $HtmlTags tag="strong" %]:</p>
248                 <p>[% FOR i IN ai_items %][% i.itemnumber | html %][% UNLESS loop.last %], [% END %][% END %]</p>
249             [% END %]
250             [% IF ai_checkouts %]
251                 <h4>Checkouts</h4>
252                 <p>The following ids exist in both tables [% "issues" | $HtmlTags tag="strong" %] and [% "old_issues" | $HtmlTags tag="strong" %]:</p>
253                 <p>[% FOR c IN ai_checkouts %][% c.issue_id | html %][% UNLESS loop.last %], [% END %][% END %]</p>
254             [% END %]
255             [% IF ai_holds %]
256                 <h4>Holds</h4>
257                 <p>The following ids exist in both tables [% "reserves" | $HtmlTags tag="strong" %] and [% "old_reserves" | $HtmlTags tag="strong" %]:</p>
258                 <p>[% FOR h IN ai_holds %][% h.reserve_id | html %][% UNLESS loop.last %], [% END %][% END %]</p>
259             [% END %]
260             <br/>
261         [% END %]
262
263         [% IF warnRelationships %]
264             <h2>Patron relationship problems</h2>
265             [% IF bad_relationships_count %]
266                 <p>Your database contained guarantee/guarantor pairs with no defined relationship. They have been set the value '_bad_data' in the [% "borrowers.relationship" | $HtmlTags tag="strong" %] and/or [% "borrower_relationships.relationship" | $HtmlTags tag="strong" %] columns. Fix them manually by recreating those relationships, or have your system's administrator correct the values.</p>
267             [% END %]
268
269             [% IF wrong_relationships %]
270                 <p>The following values have been used for guarantee/guarantor relationships, but do not exist in the 'borrowerRelationship' system preference:</p>
271                 <ul>
272                     [% FOR rel IN wrong_relationships %]
273                         <li>[% rel.0 | html %]</li>
274                     [% END %]
275                 </ul>
276                 <p>If the relationship is one you want, please add it to the 'borrowerRelationship' system preference, otherwise have your system's administrator correct the values in [% "borrowers.relationship" | $HtmlTags tag="strong" %] and/or [% "borrower_relationships.relationship" | $HtmlTags tag="strong" %] in the database.</p>
277             [% END %]
278         [% END %]
279
280         [% IF log4perl_errors %]
281             <h2>Logging system does not behave correctly</h2>
282             [% FOR e IN log4perl_errors %]
283                 [% SWITCH e %]
284                     [% CASE 'missing_config_entry' %]There is no 'log4perl_conf' entry in the config file.
285                     [% CASE 'cannot_read_config_file' %]The log4perl config file cannot be opened.
286                     [% CASE 'logfile_not_writable' %]One of the logfiles listed in the config file is not writable.
287                     [% CASE 'cannot_init_module' %]The Koha::Logger module cannot be initiated correctly (check the log file).
288                     [% CASE %]Unknown error "[% e | html %]"
289                 [% END %]
290             [% END %]
291         [% END %]
292
293         [% IF warnConnectBroker %]
294             <h2>Impossible to connect to the message broker</h2>
295             There is an error when trying to connect to the message broker (RabbitMQ), check the Koha log files.
296             <br/>
297             Maybe it is not installed and configured correctly?
298             <br/>
299             Contact your system administrator.
300         [% END %]
301
302         [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatronOPACPrivacy || warnPrefAnonymousPatronAnonSuggestions || warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist || warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist || warnPrefKohaAdminEmailAddress || warnPrefOpacHiddenItems || invalid_yesno.count || warnNoActiveCurrency || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || warnXSLT || oauth2_missing_deps || bad_yaml_prefs || warnIssuingRules || config_bcrypt_settings_no_set || warnHiddenBiblionumbers.size %]
303             <h2>Warnings regarding the system configuration</h2>
304             <table>
305                 <caption>Preferences and parameters</caption>
306                 [% IF (warnPrefBiblioAddsAuthorities) %]
307                 <tr><th scope="row"><strong>Warning</strong> </th><td>System preference 'AutoCreateAuthorities' set, but needs 'BiblioAddsAuthorities' set as well.</td></tr>
308                 [% END %]
309                 [% IF (warnPrefEasyAnalyticalRecords) %]
310                 <tr><th scope="row"><strong>Warning</strong> </th><td>System preference 'EasyAnalyticalRecords' set, but UseControlNumber preference is set to 'Use'. Set it to 'Don't use' or else the 'Show analytics' links in the staff interface and the OPAC will be broken.</td></tr>
311                 [% END %]
312                 [% IF warnPrefAnonymousPatronOPACPrivacy %]
313                     <tr><th scope="row"><strong class="error">Error</strong> </th><td>System preference 'OPACPrivacy' set, but AnonymousPatron preference is set to '0'. Set it to a valid borrower number or checkins for these patrons will fail.</td></tr>
314                 [% END %]
315                 [% IF warnPrefAnonymousPatronAnonSuggestions %]
316                     <tr><th scope="row"><strong>Warning</strong> </th><td>System preference 'AnonSuggestions' set, but AnonymousPatron preference is set to '0'. Set it to a valid borrower number if you want that this feature works correctly.</td></tr>
317                 [% END %]
318                 [% IF warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist %]
319                     <tr><th scope="row"><strong class="error">Error</strong> </th><td>Some patrons have requested a privacy on returning item but the AnonymousPatron pref is not set correctly. Set it to a valid borrower number or checkins for these patrons will fail.</td></tr>
320                 [% END %]
321                 [% IF warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist %]
322                     <tr><th scope="row"><strong>Warning</strong> </th><td>System preference 'AnonSuggestions' set, but AnonymousPatron preference is not set correctly. Set it to a valid borrower number if you want that this feature works correctly.</td></tr>
323                 [% END %]
324                 [% IF warnPrefKohaAdminEmailAddress %]
325                     <tr><th scope="row"><strong>Warning</strong> </th><td>System preference 'KohaAdminEmailAddress' does not contain a valid email address. Emails will not be sent.</td></tr>
326                 [% END %]
327                 [% IF warnPrefOpacHiddenItems %]
328                     <tr><th scope="row"><strong>Warning</strong> </th><td>System preference 'OpacHiddenItems' generates a warning and will produce unexpected behaviors: [% warnPrefOpacHiddenItems | html %]</th></tr>
329                 [% END %]
330                 [% IF warnXSLT %]
331                     [% FOR p IN warnXSLT %]
332                         <tr><th scope="row"><strong>Warning</strong> </th><td>System preference '[% p.syspref | html %]' is '[% p.value | html %]', but the file '[% p.filename | html %]' does not exist.</th></tr>
333                     [% END %]
334                 [% END %]
335                 [% IF invalid_yesno.count %]
336                     [% FOR p IN invalid_yesno %]
337                         <tr><th scope="row"><strong>Warning</strong> </th><td>System preference '[% p.variable | html %]' must be '0' or '1', but is [% IF p.value.defined %]'[% p.value | html%]'[% ELSE %]NULL[% END %].</td></tr>
338                     [% END %]
339                 [% END %]
340                 [% IF warnNoActiveCurrency %]
341                     <tr><th scope="row"><strong>Warning</strong> </th><td>No active currency is defined. Please go to <a href="/cgi-bin/koha/admin/currency.pl">Administration &gt; Currencies and exchange rates</a> and mark one currency as active.</td></tr>
342                 [% END %]
343                 [% IF warnStatisticsFieldsError %]
344                     <tr><th scope="row"><strong>Warning</strong> </th><td>System preference 'StatisticsFields' contains field names not belonging to the items database table: [% warnStatisticsFieldsError | html %] </td></tr>
345                 [% END %]
346                 [% IF AutoSelfCheckPatronDoesNotHaveSelfCheckPerm %]
347                     <tr><th scope="row"><strong>Warning</strong> </th><td>
348                     The patron used for the self checkout module at the OPAC does not have the self_check => self_checkout_module permission.
349                     </td></tr>
350                 [% END %]
351                 [% IF AutoSelfCheckPatronHasTooManyPerm %]
352                     <tr><th scope="row"><strong>Warning</strong> </th><td>
353                     The patron used for the self checkout module at the OPAC has too many permissions. They should only have self_check => self_checkout_module.
354                     </td></tr>
355                 [% END %]
356                 [% IF warnNoTemplateCaching %]
357                     <tr><th scope="row"><strong>Warning</strong> </th><td>
358                     You are missing the &lt;template_cache_dir&gt; entry in your koha-conf.xml file.
359                     That will bring a performance boost to enable it.
360                     </td></tr>
361                 [% END %]
362                 [% IF warnILLConfiguration %]
363                   [% IF no_ill_backends %]
364                     <tr><th scope="row"><strong>Warning</strong> </th><td>
365                     The ILL module is enabled, but there are no backends available.
366                     </td></tr>
367                   [% END %]
368                   [% IF ill_partner_code_not_defined %]
369                     <tr><th scope="row"><strong>Warning</strong> </th><td>
370                     The ILL module is enabled, but no 'partner_code' defined in koha-conf.xml. Falling back to the hardcoded 'ILLLIBS'.
371                     </td></tr>
372                   [%END %]
373                   [% IF ill_branch_not_defined %]
374                     <tr><th scope="row"><strong>Warning</strong> </th><td>
375                     The ILL module is enabled, but no 'branch' block is defined in koha-conf.xml. You must define this block before use.
376                     </td></tr>
377                   [%END %]
378                   [% IF ill_partner_code_doesnt_exist %]
379                     <tr><th scope="row"><strong>Warning</strong> </th><td>
380                     The ILL module is enabled, but the configured 'partner_code' ([% ill_partner_code_doesnt_exist | html %]) is not defined on the system.
381                     </td></tr>
382                   [% END %]
383                 [% END %]
384                 [% IF oauth2_missing_deps %]
385                     <tr><th scope="row"><strong>Warning</strong> </th><td>
386                     System preference 'RESTOAuth2ClientCredentials' is set, but the required Net::OAuth2::AuthorizationServer dependency is missing. The feature is disabled.
387                     </td></tr>
388                 [% END %]
389                 [% IF bad_yaml_prefs %]
390                     <tr><th scope="row"><strong>Warning</strong> </th><td>
391                     Some system preferences have badly formatted YAML content: [% bad_yaml_prefs.join(', ') | html %]
392                     </td></tr>
393                 [% END %]
394                 [% IF config_bcrypt_settings_no_set %]
395                     <tr><th scope="row"><strong>Warning</strong> </th><td>
396                     System preference 'Pseudonymization' is set, but there is not 'bcrypt_settings' entry defined in the $KOHA_CONF file.
397                     </td></tr>
398                 [% END %]
399                 [% IF warnHiddenBiblionumbers.size %]
400                     <tr><th scope="row"><strong>Warning</strong> </th><td>
401                     [% FOR w IN warnHiddenBiblionumbers %]
402                         Biblio framework "[% w.frameworkcode | html %]" has the biblionumber field hidden at the interface [% w.interface | html %]<br/>
403                     [% END %]
404                     </td></tr>
405                 [% END %]
406                 [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' && elasticsearch_status.version.substr(0,1) < 6 %]
407                     <tr><th scope="row"><strong>Deprecation warning</strong></th><td>
408                             Elasticsearch version 5.x is not supported in Koha 20.11 and greater. Please upgrade your Elasticsearch cluster
409                     </td></tr>
410                 [% END %]
411
412             </table>
413         [% END %]
414
415         [% IF xml_config_warnings.size %]
416             <table>
417                 <caption>XML configuration file</caption>
418             [% FOREACH config_entry IN xml_config_warnings %]
419                 [% IF config_entry.error == 'zebra_bib_index_mode_is_grs1' %]
420                 <tr>
421                     <th scope="row"><strong>Warning</strong></th>
422                     <td>The &lt;zebra_bib_index_mode&gt; entry set to 'grs1', which is no longer supported.
423                         Please use DOM instead. To switch follow this page of wiki:
424                         <a href="https://wiki.koha-community.org/wiki/Switching_to_dom_indexing">Switching to dom indexing</a>
425                     </td>
426                 </tr>
427                 [% ELSIF config_entry.error == 'zebra_auth_index_mode_is_grs1' %]
428                 <tr>
429                     <th scope="row"><strong>Warning</strong></th>
430                     <td>The &lt;zebra_auth_index_mode&gt; entry set to 'grs1', which is no longer supported.
431                         Please use DOM instead. To switch follow this page of wiki:
432                         <a href="https://wiki.koha-community.org/wiki/Switching_to_dom_indexing">Switching to dom indexing</a>
433                     </td>
434                 </tr>
435                 [% ELSIF config_entry.error == 'use_zebra_facets_entry_missing' %]
436                 <tr>
437                     <th scope="row"><strong>Warning</strong></th>
438                     <td>The &lt;use_zebra_facets&gt; entry is missing in your configuration file. Falling back
439                         to legacy facet calculation.
440                     </td>
441                 </tr>
442                 [% ELSIF config_entry.error == 'log4perl_entry_missing' %]
443                 <tr>
444                     <th scope="row"><strong>Warning</strong></th>
445                     <td>You are missing the &lt;log4perl_conf&gt; entry in your koha-conf.xml file. Please
446                         add it, pointing to the log4perl.conf file for your Koha instance.
447                     </td>
448                 </tr>
449                 [% ELSIF config_entry.error == 'lockdir_entry_missing' %]
450                 <tr>
451                     <th scope="row"><strong>Warning</strong></th>
452                     <td>You are missing the &lt;lockdir&gt; entry in your koha-conf.xml file. Please
453                         add it, pointing to your Koha instance's lock dir.
454                     </td>
455                 </tr>
456                 [% ELSIF config_entry.error == 'lockdir_not_writable' %]
457                 <tr>
458                     <th scope="row"><strong>Warning</strong></th>
459                     <td>The configured &lt;lockdir&gt; entry in your koha-conf.xml file points to a
460                         non-writable directory ([% config_entry.lockdir | html %]).
461                     </td>
462                 </tr>
463                 [% ELSIF config_entry.error == 'uploadpath_entry_missing' %]
464                 <tr>
465                     <th scope="row"><strong>Warning</strong></th>
466                     <td>You are missing the &lt;upload_path&gt; entry in your koha-conf.xml file. Please
467                         add it, pointing to the configured file upload directory for your Koha instance.
468                     </td>
469                 </tr>
470                 [% ELSIF config_entry.error == 'uploadpath_and_opacbaseurl_entry_missing' %]
471                 <tr>
472                     <th scope="row"><strong>Warning</strong></th>
473                     <td>You are missing the &lt;upload_path&gt; entry in your koha-conf.xml file. Please
474                         add it, pointing to the configured file upload directory for your Koha instance.
475                         Also note that you need to properly set the OPACBaseURL preference for the file upload plugin to work.
476                     </td>
477                 </tr>
478                 [% ELSIF config_entry.error == 'tmp_path_missing' %]
479                 <tr>
480                     <th scope="row"><strong>Warning</strong></th>
481                     <td>You are missing the &lt;tmp_path&gt; entry in your koha-conf.xml file. Please
482                         add it, pointing to the configured temporary directory for your Koha instance.
483                         The effective temporary directory is '[% config_entry.effective_tmp_dir | html %]'.
484                     </td>
485                 </tr>
486                 [% END %]
487             [% END %]
488             </table>
489         [% END %]
490
491         [% IF warnIssuingRules %]
492             <table>
493                 <caption>Issuing rules</caption>
494                 [% FOREACH unit IN ir_units %]
495                 <tr>
496                     <th scope="row"><strong>Warning</strong></th>
497                     <td>The [% unit.branchcode || 'branchcode=default' | html %], [% unit.categorycode || 'categorycode=default' | html %], [% unit.itemtype || 'itemtype=default' | html %]
498                         issuingrule will fallback to 'days' for 'lengthunit' as it is incorrectly defined as
499                         [% unit.rule_value | html %].
500                     </td>
501                 </tr>
502                 [% END %]
503             </table>
504         [% END %]
505
506     [% ELSE %]
507         <p>No warnings.</p>
508     [% END %]
509         </div>
510
511         <div id="team">
512             <h2>Special thanks to the following organizations</h2>
513             <ul>
514                 <li><a href="http://library.org.nz">Horowhenua Library Trust</a>, New Zealand, and Rosalie Blake, Head of Libraries, (Koha 1.0)</li>
515                 <li>The <a href="http://www.myacpl.org/">Athens County Public Libraries</a>, Ohio, USA (MARC sponsorship, documentation, template maintenance)</li>
516                 <li><a href="http://www.emn.fr">EMN (Ecole des Mines de Nantes)</a>, France (Suggestions, Stats wizards and improved LDAP sponsorship)</li>
517                 <li><a href="http://www.mines-paristech.fr">Mines Paristech (previously Ecole Nationale Supérieure des Mines de Paris)</a>, France (biblio frameworks, MARC authorities, OPAC basket, Serials sponsorship)</li>
518                 <li><a href="http://www.mediathequeouestprovence.fr/">SAN-Ouest Provence</a>, France (Koha 3.0 enhancements to patrons and holds modules)</li>
519                 <li>The <a href="http://ccfls.org">Crawford County Federated Library System</a>, PA, USA (Koha 3.0 Zebra Integration sponsorship)</li>
520                 <li>The <a href="http://www.geauga.lib.oh.us/">Geauga County Public Library</a>, OH, USA (Koha 3.0 beta testing)</li>
521                 <li>The <a href="http://library.neu.edu.tr">Near East University</a>, Cyprus</li>
522                 <li>OPUS International Consultants, Wellington, New Zealand (Corporate Serials sponsorship)</li>
523                 <li><a href="http://www.famfamfam.com/">famfamfam.com</a> Birmingham (UK) based developer Mark James for the famfamfam Silk iconset.</li>
524                 <li><a href="http://www.ashs.school.nz/">Albany Senior High School</a>, Auckland, New Zealand (OPAC 'star-ratings' sponsorship)</li>
525             </ul>
526
527             <h2>Koha release teams</h2>
528             [% IF maintenance_team %]
529                 <div class="row">
530                     <div class="col-md-6">
531                         <h3>Koha [% short_version | html %] release team</h3>
532                         [% IF development_version %]
533                             <p>You are running a development version of Koha</p>
534                         [% ELSE %]
535                             [% INCLUDE team t=release_team v='release' %]
536                         [% END %]
537                     </div>
538
539                     <div class="col-md-6">
540                         <h3>Current maintenance team</h3>
541                         [% INCLUDE team t=maintenance_team v=short_version %]
542                     </div>
543                 </div>
544             [% ELSE %]
545                 <div class="dialog alert">
546                     Could not read the teams.yaml file. Please make sure &lt;docdir&gt; is correctly defined in koha-conf.xml.
547                 </div>
548             [% END %]
549
550             <h2>Koha development team</h2>
551             [% IF contributors.size %]
552                 <ul class="columns-4">
553                     [% FOREACH contributor IN contributors %]
554                     <li>[% INCLUDE person p=contributor %][% INCLUDE contributions p=contributor %]</li>
555                     [% END %]
556                 </ul>
557             [% ELSE %]
558                 <div class="dialog alert">
559                     Could not read the contributors.yaml file. Please make sure &lt;docdir&gt; is correctly defined in koha-conf.xml.
560                 </div>
561             [% END %]
562             <hr>
563
564             <h2>Contributing companies and institutions</h2>
565             <ul class="columns-4">
566                 <li>Allen Ginsberg Library, USA</li>
567                 <li>Alingsås Public Library, Sweden</li>
568                 <li>American Numismatic Society, USA</li>
569                 <li>Arcadia Public Library, USA</li>
570                 <li>Athens County Public Libraries, USA</li>
571                 <li>BdP de la Meuse, France</li>
572                 <li>BibLibre, France</li>
573                 <li>Biblioteca Provincial Fr. Mamerto Esquiú (Provincia Franciscana de la Asunción), Argentina</li>
574                 <li>Bibliotheksservice-Zentrum Baden-Württemberg (BSZ), Germany</li>
575                 <li>Briar Cliff University, USA</li>
576                 <li>Brimbank City Council, Australia</li>
577                 <li>Brooklyn Law School Library, USA</li>
578                 <li>Bibliothèque Universitaire des Langues et Civilisations (<a href="https://www.bulac.fr">BULAC</a>), France</li>
579                 <li>ByWater Solutions, USA</li>
580                 <li>California College of the Arts, USA</li>
581                 <li>Camden County, USA</li>
582                 <li>Carnegie Stout Library, USA</li>
583                 <li>Calyx, Australia</li>
584                 <li>Catalyst IT, New Zealand</li>
585                 <li>Central Kansas Library System (CKLS), USA</li>
586                 <li>Centre collégial des services regroupés (CCSR), Canada</li>
587                 <li>Cheshire Libraries, United Kingdom</li>
588                 <li>Coeur d'Alene Public Library, USA</li>
589                 <li>Corpus Christi Public Libraries, USA</li>
590                 <li>C &amp; P Bibliography Services, USA</li>
591                 <li>Dataly Tech, Greece</li>
592                 <li>Devinim, Turkey</li>
593                 <li>Do Space, USA</li>
594                 <li>DoverNet, USA</li>
595                 <li>doXulting</li>
596                 <li>Duchesne County Library, USA</li>
597                 <li>Escuela de Orientacion Lacaniana, Argentina</li>
598                 <li>Fenway Library Organization, USA</li>
599                 <li>Fargo Public Library, USA</li>
600                 <li>Farmington Public Library, USA</li>
601                 <li>FIT</li>
602                 <li>Foundations Bible College &amp; Seminary, USA</li>
603                 <li>Goethe-Institut, Germany</li>
604                 <li>Gothenburg University Library, Sweden</li>
605                 <li>Halland County Library, Sweden</li>
606                 <li>Harrison Carmel Public Library, USA</li>
607                 <li>Hauraki District Libraries, New Zealand</li>
608                 <li>Higher Education Libraries of Massachusetts, USA</li>
609                 <li>Hochschule für Gesundheit (hsg), Germany</li>
610                 <li>Hotchkiss School, USA</li>
611                 <li>Katipo Communications, New Zealand</li>
612                 <li>KEEP SOLUTIONS, Portugal</li>
613                 <li>KohaAloha, New Zealand</li>
614                 <li>Koha-Suomi Oy, Finland</li>
615                 <li>LibLime, USA</li>
616                 <li>Library of the Józef Piłsudski Institute of America, USA</li>
617                 <li>Libriotech, Norway</li>
618                 <li>Los Gatos Public Library, USA</li>
619                 <li>Lund University Library, Sweden</li>
620                 <li>MassCat, USA</li>
621                 <li>Middletown Township Public Library, USA</li>
622                 <li>National Library of Finland, Finland</li>
623                 <li>Newcastle City Council, United Kingdom</li>
624                 <li>New Zealand Central Agencies Library, New Zealand</li>
625                 <li>New Zealand Ministry of Education Library, New Zealand</li>
626                 <li>North Central Regional Library (NCRL), USA</li>
627                 <li>Northeast Kansas Library System (NEKLS), USA</li>
628                 <li>OPUS</li>
629                 <li>Orex Digital, Spain</li>
630                 <li>Oslo Public Library, Norway</li>
631                 <li>Plano Independent School, USA</li>
632                 <li>Plant and Food Research Limited, New Zealand</li>
633                 <li>Prosentient Systems, Australia</li>
634                 <li>PTFS, Maryland, USA</li>
635                 <li>PTFS Europe Ltd, United Kingdom</li>
636                 <li>Rijksmuseum, Amsterdam, The Netherlands</li>
637                 <li>Rolling Hills Consolidated Libraries, USA</li>
638                 <li>Round Rock Public Library, USA</li>
639                 <li>SAN-Ouest Provence, France</li>
640                 <li>Sefton Council, United Kingdom</li>
641                 <li>software.coop, United Kingdom</li>
642                 <li>South-East Kansas Library System (SEKLS), USA</li>
643                 <li>South Taranaki District Council, New Zealand</li>
644                 <li>Stockholm University Library, Sweden</li>
645                 <li>SWITCH Library Consortium, USA</li>
646                 <li>Talking Tech, Global</li>
647                 <li>Tamil, France</li>
648                 <li>Theke Solutions, Argentina</li>
649                 <li>Tulong Aklatan, Philippines</li>
650                 <li>Uintah Library System, USA</li>
651                 <li>Universidad de El Salvador, El Salvador</li>
652                 <li>Universidad Empresarial Siglo 21, Argentina</li>
653                 <li>Universidad Nacional de Córdoba, Argentina</li>
654                 <li>Universidad ORT Uruguay</li>
655                 <li>Université d'Aix-Marseille, France</li>
656                 <li>Université de Lyon 3, France</li>
657                 <li>Université de Rennes 2, France</li>
658                 <li>Université de St Etienne, France</li>
659                 <li>University of the Arts London, United Kingdom</li>
660                 <li>Vaara-kirjastot, Finland</li>
661                 <li>Vanier College, Canada</li>
662                 <li>Vermont Organization of Koha Automated Libraries (VOKAL), USA</li>
663                 <li>Ville de Victoriaville, Canada</li>
664                 <li>Virginia Tech, USA</li>
665                 <li>Washoe County Library System, USA</li>
666                 <li>Xercode, Spain</li>
667             </ul>
668
669             <h2>Additional thanks to...</h2>
670             <ul>
671                 <li>Irma Birchall</li>
672                 <li>Rachel Hamilton-Williams (Kaitiaki from 2004 to present)</li>
673                 <li>Stephen Hedges (early Documentation Manager)</li>
674                 <li>Brooke Johnson</li>
675                 <li>Jo Ransom</li>
676                 <li>Nicholas Rosasco (Documentation Compiler)</li>
677                 <li>Regula Sebastiao</li>
678             </ul>
679         </div>
680
681         <div id="licenses">
682             <h2>Koha</h2>
683             <p>
684             <a href="http://www.gnu.org/licenses/gpl-3.0.html">Koha is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.</a>
685             </p>
686             <h2>jQuery and jQueryUI</h2>
687             <p><a href="http://jquery.com/">jQuery</a> and <a href="http://jqueryui.com/">jQueryUI</a> are licensed under the <a href="http://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt">MIT license</a></p>
688
689             <h2>Bootstrap</h2>
690             <p><a href="https://getbootstrap.com/">Bootstrap</a> code and <a href="http://glyphicons.com">Glyphicons Free</a> licensed under the <a href="https://github.com/twbs/bootstrap/blob/master/LICENSE">MIT license</a>.</p>
691
692             <h2>Bootstrap Icons</h2>
693             <p><a href="https://icons.getbootstrap.com/">Bootstrap Icons</a> licensed under the <a href="https://github.com/twbs/icons/blob/main/LICENSE.md">MIT license</a>.</p>
694
695             <h2>YUI</h2>
696             <p>
697             <a href="http://yuilibrary.com/license/">BSD License</a>
698             </p>
699             <h2>Famfamfam iconset</h2>
700               <ul>
701                 <li><a href="http://www.famfamfam.com/lab/icons/silk/">FamFamFam Site</a></li>
702                 <li><a href="http://creativecommons.org/licenses/by/2.5/">Creative Commons Attribution 2.5 License</a></li>
703               </ul>
704             <h2>The Bridge Material Type Icon Set</h2>
705               <ul>
706                 <li><a href="http://apps.carleton.edu/campus/library/bridge_icons/">Bridge Material Type Icons Project</a></li>
707                 <li>The Bridge Material Type Icon Set is licensed under a
708                   <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.5/">Creative Commons Attribution-ShareAlike 2.5 License</a>
709                   by the Bridge Consortium of Carleton College and St. Olaf College.</li>
710               </ul>
711
712             <h2>jQuery Bar Rating Plugin</h2>
713               <p>jQuery Bar Rating Plugin v1.22 by <a href="http://antenna.io/demo/jquery-bar-rating/examples/">Antenna.io</a> is licensed under the <a href="http://en.wikipedia.org/wiki/MIT_License">MIT License</a>.</p>
714
715             <p>Copyright &copy; 2012-2016 <a href="http://antenna.io">Kazik Pietruszewski</a></p>
716
717             <h2>jQuery insertAtCaret Plugin</h2>
718             <p>jQuery insertAtCaret Plugin v1.0 by the phpMyAdmin devel team is licensed under the <a href="http://www.gnu.org/licenses/gpl.html">GPL License</a>.</p>
719
720             <p>Copyright &copy; 2003-2010 phpMyAdmin devel team</p>
721
722             <h2>jQuery treetable Plugin</h2>
723
724             <p>The <a href="http://ludo.cubicphuse.nl/jquery-treetable/">jQuery treetable Plugin 3.1.0</a> is released under MIT license by Ludo van den Boom.</p>
725
726             <h2>OpenJS Keyboard Shortcuts Library</h2>
727
728             <p>The <a href="http://www.openjs.com/scripts/events/keyboard_shortcuts/">OpenJS keyboard shortcuts library</a>
729                by Binny V A is licensed under the BSD license.</p>
730
731             <h2>jquery.dataTables.grouping.js</h2>
732             <p>The <a href="https://code.google.com/p/jquery-datatables-row-grouping/">jquery.dataTables.grouping.js</a>
733                plugin by Jovan Popovic is licensed under the BSD and GPL v2 license.</p>
734
735             <h2>jQuery Colvis plugin</h2>
736             <p>The <a href="http://datatables.net/extensions/colvis/">controls for column visiblity in DataTables</a>
737                 by Allan Jardine is licensed under the BSD 3 and GPL v2 license.</p>
738
739             <h2>jquery.multiple.select.js</h2>
740             <p>The <a href="http://wenzhixin.net.cn/p/multiple-select/">jQuery multiple select plugin</a>
741                by Zhixin Wen is licensed under the MIT license.</p>
742
743             <h2>Javascript Diff Algorithm</h2>
744             <p>The <a href="http://ejohn.org/projects/javascript-diff-algorithm/">Javascript Diff Algorithm</a> plugin by John Resig is licensed under the <a href="http://opensource.org/licenses/mit-license.php">MIT License</a>.</p>
745
746             <h2>jQuery Validation Plugin</h2>
747             <p>The <a href="http://jqueryvalidation.org/">jQuery Validation Plugin</a> written and maintained by Jörn Zaefferer is licensed under the <a href="http://opensource.org/licenses/mit-license.php">MIT License</a>.</p>
748
749             <h2>TinyMCE WYSIWYG editor</h2>
750             <p>The <a href="https://www.tiny.cloud/">TinyMCE WYSIWYG editor v5.9.2 </a> by Tiny Technologies, Inc. is licensed under the <a href="http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt">LGPL v2.1</a>.</p>
751
752             <h2>Font Awesome</h2>
753             <p><a href="http://fontawesome.io">Font Awesome</a> by Dave Gandy is licensed under the <a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a> and the <a href="http://opensource.org/licenses/mit-license.html">MIT License</a>.</p>
754
755             <h2>CodeMirror editing library</h2>
756             <p>The <a href="http://codemirror.net/">CodeMirror editing library</a> by Marijn Haverbeke is licensed under an <a href="http://codemirror.net/LICENSE">MIT license</a>.</p>
757
758             <h2>FileSaver library</h2>
759             <p>The <a href="https://github.com/eligrey/FileSaver.js/">FileSaver library</a> by Eli Grey is licensed under an <a href="https://github.com/eligrey/FileSaver.js/blob/master/LICENSE.md">MIT license</a>.</p>
760
761             <h2>Require.js JS module system</h2>
762             <p>The <a href="http://requirejs.org/">Require.js JS module system</a> by The Dojo Foundation is licensed under an <a href="https://github.com/jrburke/requirejs/blob/master/LICENSE">MIT license</a>.</p>
763
764             <h2>OAI xslt stylesheet</h2>
765             <p>The included OAI.xslt file by the <a href="http://dspace.org/">DSpace project</a> is licensed under a <a href="http://www.dspace.org/license/">BSD License</a>.</p>
766
767             <h2>OpenAPI 2.0 schema</h2>
768             <p>The included <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/schemas/v2.0/schema.json">api/swagger-v2-schema.json</a> file is licensed under the <a href="https://github.com/OAI/OpenAPI-Specification/tree/master/schemas/v2.0">Apache License, Version 2.0</a>, by the <a href="https://www.openapis.org/about">OpenAPI Initiative (OAI)</a>.</p>
769
770             <h2>Select2</h2>
771             <p>The <a href="http://select2.github.io/select2/">Select2</a> library is licensed under <a href="https://github.com/select2/select2/blob/stable/3.5/LICENSE">the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License")</a>.</p>
772
773             <h2>jquery.tablednd.js</h2>
774             <p>The <a href="https://github.com/isocra/TableDnD">TableDnD plug-in for jQuery</a> by Denis Howlett is licensed under the <a href="http://opensource.org/licenses/mit-license.php">MIT License</a>.</p>
775
776             <h2>Leaflet</h2>
777             <p>The <a href="http://leafletjs.com">Leaflet</a> JavaScript library by Vladimir Agafonkinis licensed under the <a href="https://github.com/Leaflet/Leaflet/blob/master/LICENSE">BSD License</a>.</p>
778
779             <h2>jquery.emojiarea.js</h2>
780             <p>The <a href="https://github.com/diy/jquery-emojiarea">Emojiarea plug-in for jQuery</a> by DIY Co is licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">the Apache License, Version 2.0</a>.</p>
781
782             <h2>JSZip</h2>
783             <p>The <a href="https://stuk.github.io/jszip/">JSZip</a> JavaScript library is licensed under both the <a href="https://github.com/Stuk/jszip/blob/master/LICENSE.markdown">MIT and GPLv3 Licenses</a>.</p>
784
785             <h2>D3.js</h2>
786             <p><a href="https://d3js.org/">D3.js v3.5.17</a> is a JavaScript library for manipulating documents based on data. It is under the <a href="https://github.com/d3/d3/blob/master/LICENSE">BSD 3-clause Licence</a></p>
787
788             <h2>C3.js</h2>
789             <p><a href="http://c3js.org/">C3.js v0.4.11</a> is a D3-based reusable chart library under the <a href="https://opensource.org/licenses/mit-license.php">MIT licence</a></p>
790
791             <h2>Font Face Observer</h2>
792             <p><a href="https://github.com/bramstein/fontfaceobserver">Font Face Observer</a> is a JavaScript library by Bram Stein licensed under the <a href="https://github.com/bramstein/fontfaceobserver/blob/master/LICENSE">BSD License</a>.</p>
793
794             <h2>Noto fonts</h2>
795             <p><a href="https://github.com/googlei18n/noto-fonts">Noto</a> by Google is a family of fonts licensed under the <a href="http://scripts.sil.org/OFL">SIL Open Font License (OFL) v1.1</a>.</p>
796
797             <h2>HC Sticky</h2>
798             <p><a href="http://somewebmedia.com/hc-sticky/">HC Sticky</a> by Some Web Media is a JavaScript library that makes any element on your page visible while you scroll, licensed under the <a href="https://github.com/somewebmedia/hc-sticky/blob/master/LICENSE">MIT license</a>.</p>
799
800             <h2>kjua</h2>
801             <p><a href="https://larsjung.de/kjua/">kjua</a> by Lars Jung is a JavaScript library that generates QR codes, licensed under the <a href="https://github.com/lrsjng/kjua/blob/master/README.md">MIT license</a>.</p>
802
803             <h2>Verovio</h2>
804             <p><a href="https://www.verovio.org/index.xhtml">Verovio is developed by the Swiss RISM Office with the support of the Swiss National Science Foundation, licensed under the <a href="http://www.gnu.org/licenses/lgpl-3.0.html">LGPL v3.0</a>.</p>
805
806             <h2>jquery.cookie</h2>
807             <p><a href="https://github.com/carhartl/jquery-cookie">jquery.cookie</a> by Klaus Hartl is a jQuery plugin for setting, reading, and deleting browser cookies, licensed under the <a href="https://github.com/carhartl/jquery-cookie/blob/master/MIT-LICENSE.txt">MIT license</a>.</p>
808
809             <h2>JavaScript Cookie</h2>
810             <p><a href="https://github.com/js-cookie/js-cookie">JavaScript Cookie</a> is a "simple, lightweight JavaScript API for handling cookies," licensed under the <a href="https://github.com/js-cookie/js-cookie/blob/master/LICENSE">MIT license</a>.</p>
811
812             <h2>Moment.js</h2>
813             <p><a href="https://momentjs.com/">Moment.js</a> licensed under the <a href="https://github.com/moment/moment/blob/develop/LICENSE">MIT license</a>.</p>
814
815             <h2>Chocolat.js</h2>
816             <p><a href="http://chocolat.insipi.de">Chocolat.js</a> licensed under the <a href="https://github.com/nicolas-t/Chocolat/blob/master/LICENSE">GPL v3 license</a>.</p>
817
818             <h2>Enquire.js</h2>
819             <p><a href="https://wicky.nillia.ms/enquire.js">Enquire.js</a> licensed under the <a href="https://github.com/WickyNilliams/enquire.js/blob/master/LICENSE">MIT license</a>.</p>
820
821         </div>
822
823         <div id="translations">
824             <h2>Translation</h2>
825             <ul>
826 <li>العربية (Arabic) Version 3.2 to 3.4, 3.16 & 3.18 by KnowledgeWare Technologies; Versions 3.6 to 3.14 by Arabic Koha support team: Karam Qubsi, Kouider Bounama, Sham Bajaa, Ghofran Alshami, Chrestian Aboud, Fatema Salem and Duaa Bazzazi.
827 <li>&#4768;&#4635;&#4653;&#4763; (Amharic) Getway II Ethiopia Co. (Yohannes Mulugeta (Team Leader), Tegene Assefa, Abiyot Bayou)</li>
828 <li>Armenian Tigran Zargaryan</li>
829 <li>&#1041;&#1098;&#1083;&#1075;&#1072;&#1088;&#1089;&#1082;&#1080; (Bulgarian) Radoslav Kolev</li>
830 <li>euskara (Basque) Fernando Berrizbeitia, the librarians of Eima Katalogoa, Tabakalera International Contemporary Culture Centre, and Nere Erkiaga</li>
831 <li>&#2476;&#2494;&#2434;&#2482;&#2494; (Bengali) Parthasarathi Mukhopadhyay</li>
832 <li>&#20013;&#25991; (Chinese)</li>
833 <li>Hrvatski (Croatian)</li>
834 <li>&#x010D;e&#353;tina (Czech)</li>
835 <li>D&aelig;nsk (Danish)</li>
836 <li>Nederlands-Nederland (Dutch-The Netherlands) Ronald Wijlens, Saxion University</li>
837 <li>Nederlands-Belgi&euml; (Dutch-Belgium)</li>
838 <li>English</li>
839 <li>suomi, suomen kieli (Finnish) Pasi Korkalo</li>
840 <li>Fran&ccedil;ais (French) <a href="http://www.koha-fr.org/content/lassociation-kohala">Kohala</a>, Pascale Nalon (ENSMP), and many more </li>
841 <li>Galego (Galician) Ignacio Javier</li>
842 <li>Deutsch (German) Friedrich zur Hellen, Robert Hillig, Katrin Fischer, Beda Szukics, Mirko Tietgen and Marc Véron</li>
843 <li>&#949;&#955;&#955;&#951;&#957;&#953;&#954;&#940; (Greek, Modern [1453- ]) Koha Hellenic Users' Group (Georgia Katsarou, Dimitris Antonakis, Eugenios Papadopoulos), Theodoros Theodoropoulos, Panoraia Gaitanou and Kiriaki Roditi</li>
844 <li>&#1506;&#1489;&#1512;&#1497;&#1514; (Hebrew)</li>
845 <li>&#2361;&#2367;&#2344;&#2381;&#2342;&#2368; (Hindi)</li>
846 <li>Magyar (Hungarian)Agnes Imecs</li>
847 <li>Norsk Bokmål (Norwegian) Axel Bojer and Thomas Gramstad</li>
848 <li>Norsk Nynorsk (Norwegian) Unni Knutsen and Marit Kristine Ådland</li>
849 <li>(Indonesian)</li>
850 <li>Italiano (Italian) for 3.2: Zeno Tajoli, Pietro Gozzetti and Paolo Pozzan; for 3.4 and more: Zeno Tajoli, Stefano Bargioni, Paolo Bizzarri</li>
851 <li>&#26085;&#26412;&#35486; (Japanese)</li>
852 <li>&#54620;&#44397;&#50612; (Korean)</li>
853 <li>&#3221;&#3240;&#3277;&#3240;&#3233; (kanna&#7693;a)</li>
854 <li>Latina (Latin)</li>
855 <li>Lao Anousak Anthony Souphavanh</li>
856 <li>M&#257;ori</li>
857 <li>&#3374;&#3378;&#3375;&#3390;&#3379;&#3330; (Malayalam)</li>
858 <li>&#1601;&#1575;&#1585;&#1587;&#1609; (Persian)</li>
859 <li>&#2835;&#2908;&#2879;&#2822; (&#x014D;&#7771;iy&#257;)</li>
860 <li>Polski (Polish)</li>
861 <li>Portugu&ecirc;s (Portuguese)</li>
862 <li>Rom&acirc;n&#259; (Romanian)</li>
863 <li>&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081; (Russian) Victor Titarchuk and Serhij Dubyk</li>
864 <li>Espa&ntilde;ol (Spanish) Bernardo González Kriegel, Héctor Castro and Tomás Cohen Arazi, with the help of the koha-es community.</li>
865 <li>Svenska (Swedish)</li>
866 <li>Tetun (Tetum) Karen Myers</li>
867 <li>&#3616;&#3634;&#3625;&#3634;&#3652;&#3607;&#3618; (Thai)</li>
868 <li>T&uuml;rk&ccedil;e (Turkish) pre-3.8: Selma Aslan; for 3.8+, Suleyman Demirel University (Ugur Bulgan, Onur Erdem, Kemal Caner Bayrakci, and Alper Tutunsatar)</li>
869 <li>&#1575;&#1585;&#1583;&#1608;(Urdu) Ata ur Rehman</li>
870 <li>&#1059;&#1082;&#1088;&#1072;&#1111;&#1085;&#1089;&#1100;&#1082;&#1072; (Ukrainian) Victor Titarchuk and Serhij Dubyk</li>
871             </ul>
872
873         </div>
874
875         <div id="history">
876         <h2>Koha history timeline</h2>
877     [% IF ! timeline_read_error %]
878         <table style="cursor:pointer">
879         <thead>
880         <tr>
881             <td  style="font-weight:bold;" >Date</td>
882             <td  style="font-weight:bold;" >Description</td>
883         </tr>
884         </thead>
885         [% FOREACH tabl IN table2 %]
886             <tr class="[% loop.parity | html %]">
887                 [% FOREACH ro IN tabl.row2 %]
888                      <td>[% ro.date | html %]</td>
889                      <td>[% ro.desc | html %]</td>
890                 [% END %]
891             </tr>
892         [% END %]
893         </table>
894     [% ELSE %]
895         <div class="dialog alert">
896             Could not read the history.txt file. Please make sure &lt;docdir&gt; is correctly defined in koha-conf.xml.
897         </div>
898     [% END %]
899         </div>
900
901     </div>
902 </div>
903 </div>
904
905 [% MACRO jsinclude BLOCK %]
906     <script>
907          $(document).ready(function() {
908             $('#abouttabs').tabs();
909          });
910     </script>
911 [% END %]
912 <!-- the main div is closed in intranet-bottom.inc -->
913 [% INCLUDE 'intranet-bottom.inc' %]