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