View | Details | Raw Unified | Return to bug 32693
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (-1234 / +1251 lines)
Lines 42-1324 Link Here
42
                    [% WRAPPER tab_item linktab = 1 tabname = "history" bt_active = tab == "history" %] <span>Timeline</span> [% END %]
42
                    [% WRAPPER tab_item linktab = 1 tabname = "history" bt_active = tab == "history" %] <span>Timeline</span> [% END %]
43
                    [% WRAPPER tab_item linktab = 1 tabname = "dedications" bt_active = tab == "dedications" %] <span>Dedications</span> [% END %]
43
                    [% WRAPPER tab_item linktab = 1 tabname = "dedications" bt_active = tab == "dedications" %] <span>Dedications</span> [% END %]
44
                [% END %]
44
                [% END %]
45
46
                [% WRAPPER tab_panels %]
45
                [% WRAPPER tab_panels %]
47
                    [% WRAPPER tab_panel tabname= "about" bt_active= 1 %]
46
                    [% SWITCH tab %]
48
                        <table>
47
                        [% CASE 'about' %] [% PROCESS about_panel %]
49
                            <caption>Server information</caption>
48
                        [% CASE 'perl' %] [% PROCESS perl_panel %]
49
                        [% CASE 'sysinfo' %] [% PROCESS sysinfo_panel %]
50
                        [% CASE 'team' %] [% PROCESS team_panel %]
51
                        [% CASE 'licenses' %] [% PROCESS licenses_panel %]
52
                        [% CASE 'translations' %] [% PROCESS translations_panel %]
53
                        [% CASE 'history' %] [% PROCESS history_panel %]
54
                        [% CASE 'dedications' %] [% PROCESS dedications_panel %]
55
                        [% CASE %] [% PROCESS about_panel %]
56
                    [% END %]
57
                [% END %]
58
            [% END # /WRAPPER abouttabs %]
59
        </div> <!-- /.col-md-12 -->
60
    </div> <!-- /.row -->
61
<!-- the main div is closed in intranet-bottom.inc -->
62
[% INCLUDE 'intranet-bottom.inc' %]
63
64
[% BLOCK about_panel %]
65
    [% WRAPPER tab_panel tabname= "about" bt_active = 1 %]
66
        <table>
67
            <caption>Server information</caption>
68
            <tr>
69
                <th scope="row">Koha version: </th>
70
                <td>[% kohaVersion | html %][% IF kohaCodename %] <strong>[% kohaCodename | html %]</strong>[% END %]</td>
71
            </tr>
72
            <tr>
73
                <th scope="row">OS version ('uname -a'): </th>
74
                <td>[% osVersion | html %]</td>
75
            </tr>
76
            <tr>
77
                <th scope="row">Perl interpreter: </th>
78
                <td>[% perlPath | html %]</td>
79
            </tr>
80
            <tr>
81
                <th scope="row">Perl version: </th>
82
                <td>[% perlVersion | html %]</td>
83
            </tr>
84
            <tr>
85
                <th scope="row">Perl @INC: </th>
86
                <td>
87
                    [% FOREACH perlIncPat IN perlIncPath %]
88
                        [% perlIncPat.perlinc | html %] <br />
89
                    [% END %]
90
                </td>
91
            </tr>
92
            <tr>
93
                <th scope="row">MySQL version: </th>
94
                <td>[% mysqlVersion | html %]</td>
95
            </tr>
96
            <tr>
97
                <th scope="row">Apache version: </th>
98
                <td>[% apacheVersion | html %]</td>
99
            </tr>
100
            [% IF (is_psgi) %]
101
                <tr>
102
                    <th scope="row">PSGI: </th>
103
                    <td>[% psgi_server | html %]</td>
104
                </tr>
105
            [% END %]
106
            [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' %]
107
                <tr>
108
                    <th scope="row">Elasticsearch: </th>
109
                    [% IF elasticsearch_fatal_config_error %]
110
                        <td><span class="bg-warning">[% elasticsearch_fatal_config_error | html %]</span></td>
111
                    [% ELSE %]
112
                        [% IF elasticsearch_status.running %]
113
                            <td class="bg-success">
114
                        [% ELSE %]
115
                            <td>
116
                        [% END %]
117
                            <span>Version:</span>
118
                            <span>[% elasticsearch_status.version | html %]</span>
119
                            |
120
                            <span>Nodes:</span>
121
                            <span>[% elasticsearch_status.nodes.join(' / ') | html %]</span>
122
                            |
123
                            <span>Status:</span>
124
                        [% IF elasticsearch_status.running %]
125
                            <span>running</span>
126
                            |
127
                            <span>Indices:</span>
128
                            [% FOREACH index IN elasticsearch_status.indexes %]
129
                                [% index.index_name | html %]
130
                                (<span>count:</span> <em>[% index.index_count | html %]</em>)
131
                                [% UNLESS loop.last %], [% END %]
132
                            [% END %]
133
                        [% ELSE %]
134
                            <span class="bg-warning">not running</span>
135
                        [% END %]
136
                        </td>
137
                    [% END # /IF elasticsearch_fatal_config_error %]
138
                </tr>
139
            [% END %]
140
            <tr>
141
                <th scope="row">Memcached: </th>
142
                [% IF memcached_running AND is_memcached_still_active AND where_is_memcached_config == 'config_only' %]
143
                    <td class="bg-success">
144
                [% ELSE %]
145
                    <td>
146
                [% END %]
147
                    <span>Servers:</span>
148
                    [% IF memcached_servers %]
149
                        <span>[% memcached_servers | html %]</span>
150
                    [% ELSE %]
151
                        <span>undefined</span>
152
                    [% END %] |
153
                    <span>Namespace:</span>
154
                    [% IF memcached_namespace %]
155
                        <span>[% memcached_namespace | html %]</span>
156
                    [% ELSE %]
157
                        <span>undefined</span>
158
                    [% END %] |
159
                    <span>Status:</span>
160
                    [% IF memcached_servers %]
161
                        [% IF memcached_running and is_memcached_still_active %]
162
                            <span class="bg-success">running</span>.
163
                        [% ELSE %]
164
                            <span class="bg-warning">not running</span>.
165
                            [% IF is_psgi %]
166
                                <span>Remember memcached needs to be started before Plack.</span>
167
                            [% END %]
168
                        [% END %]
169
                    [% ELSE %]
170
                        <span>unknown</span>
171
                    [% END %] |
172
                    <span>Config read from:</span>
173
                    [% SWITCH where_is_memcached_config %]
174
                        [% CASE 'config_only' %]
175
                            <span class="bg-success">koha-conf.xml</span>
176
                        [% CASE 'ENV_only' %]
177
                            <span class="bg-warning">ENV</span> <span>Note that the right place to define the memcached config is in your $KOHA_CONF file</span>
178
                        [% CASE 'both' %]
179
                            <span class="bg-warning">ENV and koha-conf.xml</span> <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.</span>
180
                        [% CASE # nowhere %]
181
                            <span class="bg-warning">Nowhere</span> <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.</span>
182
                    [% END %]
183
                    [% IF effective_caching_method != 'Cache::Memcached::Fast::Safe' %]
184
                        | <span>Effective caching method:</span> [% effective_caching_method | html %]
185
                    [% END %]
186
                </td>
187
            </tr>
188
            <tr>
189
                <th scope="row">Zebra version: </th>
190
                <td>[% zebraVersion | html %]</td>
191
            </tr>
192
            <tr>
193
                <th scope="row">Zebra status: </th>
194
                [% IF (errZebraConnection == 10000) %]
195
                    <td class="bg-danger"><strong>Zebra server seems not to be available. Is it started?</strong></td>
196
                [% ELSIF (errZebraConnection) %]
197
                    <td class="bg-warning"><strong>Error message from Zebra: [% ( errZebraConnection ) | html %]</strong></td>
198
                [% ELSE %]
199
                    <td class="bg-success">Running</td>
200
                [% END %]
201
            </tr>
202
            <tr>
203
                <th scope="row">Message broker: </th>
204
                [% IF warnConnectBroker %]
205
                    <td class="bg-warning"><strong>Using SQL polling</strong></td>
206
                [% ELSE %]
207
                    <td class="bg-success">Using RabbitMQ</td>
208
                [% END %]
209
            </tr>
210
            <tr>
211
                <th scope="row">Date and time: </th>
212
                <td>[% current_date_and_time | $KohaDates  with_hours => 1 %]</td>
213
            </tr>
214
            <tr>
215
                [% timezone_config_class = (time_zone.config_invalid) ? 'bg-warning' : '' %]
216
                [% timezone_env_class    = (time_zone.env_invalid)    ? 'bg-warning' : '' %]
217
                <th scope="row">Time zone: </th>
218
                <td>
219
                    <span>Used:</span> <span>[% time_zone.actual | html %]</span>
220
                    [% IF time_zone.actual_bad_tz_fallback %]
221
                        <span>(This is a fallback value due to a bad configuration)</span>
222
                    [% END %]
223
                    |
224
                    <span>Config:</span>
225
                    [% IF time_zone.config != '' %]
226
                        <span class="[% timezone_config_class | html %]">[% time_zone.config | html %]</span>
227
                    [% ELSE %]
228
                        <span>Undefined</span>
229
                    [% END %] |
230
                    <span>Environment (TZ):</span>
231
                    [% IF time_zone.environment != '' %]
232
                        <span class="[% timezone_env_class | html %]">[% time_zone.environment | html %]</span>
233
                    [% ELSE %]
234
                        <span>Undefined</span>
235
                    [% END %]
236
                </td>
237
            </tr>
238
        </table>
239
    [% END # tab=about %]
240
[% END %]
241
242
[% BLOCK perl_panel %]
243
    [% WRAPPER tab_panel tabname= "perl" bt_active = 1 %]
244
        <table style="cursor:pointer">
245
            <caption>Perl modules</caption>
246
            [% FOREACH tabl IN table %]
247
                <tr>
248
                    [% FOREACH ro IN tabl.row %]
249
                        [% IF ( ro.current ) %]
250
                            [% IF ( ro.require ) %]
251
                                <th scope="row" style="font-weight:bold;" title="Module current">
252
                            [% ELSE %]
253
                                <th scope="row" style="font-weight:normal" title="Module current">
254
                            [% END %]
255
                        [% ELSIF ( ro.upgrade ) %]
256
                            [% IF ( ro.require ) %]
257
                                <th scope="row" style="background-color:#FFCB2F;font-weight:bold;" title="Module upgrade needed">
258
                            [% ELSE %]
259
                                <th scope="row" style="background-color:#FFCB2F;font-weight:normal" title="Module upgrade needed">
260
                            [% END %]
261
                        [% ELSE %]
262
                            [% IF ( ro.name == '' ) %]
263
                                <th>
264
                            [% ELSIF ( ro.require ) %]
265
                                <th scope="row" style="background-color:#FF8A8A;font-weight:bold;" title="Required module missing">
266
                            [% ELSE %]
267
                                <th scope="row" style="background-color:#FF8A8A;font-weight:normal" title="Optional module missing">
268
                            [% END %]
269
                        [% END # /IF ro.current %]
270
                        [% IF ( ro.name ) %]
271
                            [% ro.name | html %]
272
                            <span style="font-weight:normal; font-size:smaller">
273
                                ([% ro.reqversion | html %]
274
                                [% IF ro.maxversion %] - [% ro.maxversion | html %][% END %]
275
                                [% IF ro.excversion %][% FOR v IN ro.excversion %], ![% v | html %][% END %][% END %])
276
                            </span>
277
                        [% END %]
278
                        </th>
279
                        [% IF ( ro.name == '' ) %]
280
                            <td>
281
                        [% ELSIF ( ro.version ) %]
282
                            <td>[% ro.version | html %]
283
                        [% ELSE %]
284
                            <td style="font-weight:bold">Not Installed
285
                        [% END %]
286
                            </td>
287
                    [% END # /FOREACH ro %]
288
                </tr>
289
            [% END # /FOREACH tabl %]
290
        </table>
291
    [% END # tab=perl %]
292
[% END %]
293
294
[% BLOCK sysinfo_panel %]
295
    [% IF Asset.css("css/staff-global.css") == "" || Asset.js("js/vue/dist/erm.js") == "" %]
296
        [% SET warnMissingCompiledFiles = 1 %]
297
    [% END %]
298
    [% WRAPPER tab_panel tabname= "sysinfo" bt_active = 1 %]
299
        [% IF weasyprint_missing || warnPrefRequireChoosingExistingAuthority || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatronOPACPrivacy || warnPrefAnonymousPatronAnonSuggestions || warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist || warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist || warnPrefKohaAdminEmailAddress || warnPrefOpacHiddenItems || warnPrefPatronSelfRegistrationDefaultCategory || invalid_yesno.count || warnNoActiveCurrency || warnIsRootUser || xml_config_warnings.size || warnI18nMissing || 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 || elasticsearch_has_missing || warnMissingCompiledFiles || warnDbRowFormat %]
300
            [% IF ( warnDbRowFormat ) %]
301
                <h2>Database row format incorrect</h2>
302
                <p>Database tables with a row format other than 'DYNAMIC': [% warnDbRowFormat | html %]</p>
303
                <p>You may experience problems upgrading to newer versions of Koha unless you update the row format for your database tables.</p>
304
                <p>To know how to avoid this problem see the related wiki page:
305
                    <a href="https://wiki.koha-community.org/wiki/Database_row_format">Database row format</a>
306
                </p>
307
            [% END %]
308
309
            [% IF (warnIsRootUser) %]
310
                <h2>Warning regarding current user</h2>
311
                <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>
312
                <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>
313
            [% END # /IF warnIsRootUser %]
314
315
            [% IF has_ai_issues %]
316
                <h2>Data problems</h2>
317
                <p>
318
                    Some of your tables have problems with their auto_increment values which may lead to data loss.
319
                </p>
320
                <p>
321
                    <strong>You should not ignore this warning.</strong>
322
                </p>
323
                <p>
324
                    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.
325
                </p>
326
                <p>To know how to avoid this problem see the related wiki page:
327
                    <a href="https://wiki.koha-community.org/wiki/DBMS_auto_increment_fix">DBMS auto increment fix</a>
328
                </p>
329
330
                <h3>Problems found</h3>
331
                [% IF ai_patrons %]
332
                    <h4>Patrons</h4>
333
                    <p>The following IDs exist in both tables [% "borrowers" | $HtmlTags tag="strong" %] and [% "deletedborrowers" | $HtmlTags tag="strong" %]:</p>
334
                    <p>
335
                        [% FOR p IN ai_patrons %]
336
                            [% p.borrowernumber | html %]
337
                            [% UNLESS loop.last %], [% END %]
338
                        [% END %]
339
                    </p>
340
                [% END %]
341
                [% IF ai_biblios %]
342
                    <h4>Bibliographic records</h4>
343
                    <p>The following IDs exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblio" | $HtmlTags tag="strong" %]:</p>
344
                    <p>
345
                        [% FOR b IN ai_biblios %]
346
                            [% b.biblionumber | html %]
347
                            [% UNLESS loop.last %], [% END %]
348
                        [% END %]
349
                    </p>
350
                [% END %]
351
                [% IF ai_biblioitems %]
352
                    <h4>Bibliographic records</h4>
353
                    <p>The following IDs exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblioitems" | $HtmlTags tag="strong" %]:</p>
354
                    <p>
355
                        [% FOR b IN ai_biblioitems %]
356
                            [% b.biblioitemnumber | html %]
357
                            [% UNLESS loop.last %], [% END %]
358
                        [% END %]
359
                    </p>
360
                [% END %]
361
                [% IF ai_items %]
362
                    <h4>Items</h4>
363
                    <p>The following IDs exist in both tables [% "items" | $HtmlTags tag="strong" %] and [% "deleteditems" | $HtmlTags tag="strong" %]:</p>
364
                    <p>
365
                        [% FOR i IN ai_items %]
366
                            [% i.itemnumber | html %]
367
                            [% UNLESS loop.last %], [% END %]
368
                        [% END %]
369
                    </p>
370
                [% END %]
371
                [% IF ai_checkouts %]
372
                    <h4>Checkouts</h4>
373
                    <p>The following IDs exist in both tables [% "issues" | $HtmlTags tag="strong" %] and [% "old_issues" | $HtmlTags tag="strong" %]:</p>
374
                    <p>
375
                        [% FOR c IN ai_checkouts %]
376
                            [% c.issue_id | html %]
377
                            [% UNLESS loop.last %], [% END %]
378
                        [% END %]
379
                    </p>
380
                [% END %]
381
                [% IF ai_holds %]
382
                    <h4>Holds</h4>
383
                    <p>The following IDs exist in both tables [% "reserves" | $HtmlTags tag="strong" %] and [% "old_reserves" | $HtmlTags tag="strong" %]:</p>
384
                    <p>
385
                        [% FOR h IN ai_holds %]
386
                            [% h.reserve_id | html %]
387
                            [% UNLESS loop.last %], [% END %]
388
                        [% END %]
389
                    </p>
390
                [% END %]
391
                <br/>
392
            [% END # /IF has_ai_issues %]
393
394
            [% IF warnRelationships %]
395
                <h2>Patron relationship problems</h2>
396
                [% IF bad_relationships_count %]
397
                    <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>
398
                [% END # /IF bad_relationships_count %]
399
400
                [% IF wrong_relationships %]
401
                    <p>The following values have been used for guarantee/guarantor relationships, but do not exist in the 'borrowerRelationship' system preference:</p>
402
                    <ul>
403
                        [% FOR rel IN wrong_relationships %]
404
                            <li>[% rel.0 | html %]</li>
405
                        [% END %]
406
                    </ul>
407
                    <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>
408
                [% END # /IF wrong_relationships %]
409
            [% END # /IF warnRelationships %]
410
411
            [% IF log4perl_errors %]
412
                <h2>Logging system does not behave correctly</h2>
413
                [% FOR e IN log4perl_errors %]
414
                    [% SWITCH e %]
415
                        [% CASE 'missing_config_entry' %]<span>There is no 'log4perl_conf' entry in the config file.</span>
416
                        [% CASE 'cannot_read_config_file' %]<span>The log4perl config file cannot be opened.</span>
417
                        [% CASE 'logfile_not_writable' %]<span>One of the logfiles listed in the config file is not writable.</span>
418
                        [% CASE 'cannot_init_module' %]<span>The Koha::Logger module cannot be initiated correctly (check the log file).</span>
419
                        [% CASE %]<span>Unknown error '[% e | html %]'.</span>
420
                    [% END %]
421
                [% END # /FOR e %]
422
            [% END # /IF log4perl_errors %]
423
424
            [% IF warnConnectBroker %]
425
                <h2>Impossible to connect to the message broker</h2>
426
                There is an error when trying to connect to the message broker (RabbitMQ), check the Koha log files.
427
                <br/>
428
                Maybe it is not installed and configured correctly?
429
                <br/>
430
                Contact your system administrator.
431
            [% END # /IF warnConnectBroker %]
432
433
            [% IF weasyprint_missing || warnPrefRequireChoosingExistingAuthority || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatronOPACPrivacy || warnPrefAnonymousPatronAnonSuggestions || warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist || warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist || warnPrefKohaAdminEmailAddress || warnPrefOpacHiddenItems || warnPrefPatronSelfRegistrationDefaultCategory || invalid_yesno.count || warnNoActiveCurrency || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || warnXSLT || oauth2_missing_deps || bad_yaml_prefs || warnIssuingRules || config_bcrypt_settings_no_set || warnHiddenBiblionumbers.size || warnFastCataloging %]
434
                <h2>Warnings regarding the system configuration</h2>
435
                <table>
436
                    <caption>Preferences and parameters</caption>
437
                    [% IF (warnFastCataloging) %]
438
                        <tr>
439
                            <th scope="row"><strong>Warning</strong> </th>
440
                            <td>There is no "Fast add" (FA) framework defined in administration->MARC frameworks. This disables the 'Fast cataloging' feature in cataloging/circulation.</td>
441
                        </tr>
442
                    [% END %]
443
                    [% IF (warnPrefRequireChoosingExistingAuthority) %]
444
                        <tr>
445
                            <th scope="row"><strong>Warning</strong> </th>
446
                            <td>System preference 'RequireChoosingExistingAuthority' is disabled, but needs 'AutoCreateAuthorites' enabled. Otherwise catalogers can add headings that will not be linked to authorities.</td>
447
                        </tr>
448
                    [% END %]
449
                    [% IF (warnPrefEasyAnalyticalRecords) %]
450
                        <tr>
451
                            <th scope="row"><strong>Warning</strong> </th>
452
                            <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>
453
                        </tr>
454
                    [% END %]
455
                    [% IF warnPrefAnonymousPatronOPACPrivacy %]
456
                        <tr>
457
                            <th scope="row"><strong class="error">Error</strong> </th>
458
                            <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>
459
                        </tr>
460
                    [% END %]
461
                    [% IF warnPrefAnonymousPatronAnonSuggestions %]
462
                        <tr>
463
                            <th scope="row"><strong>Warning</strong> </th>
464
                            <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>
465
                        </tr>
466
                    [% END %]
467
                    [% IF warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist %]
468
                        <tr>
469
                            <th scope="row"><strong class="error">Error</strong> </th>
470
                            <td>Some patrons have requested privacy after their items are checked in, but the AnonymousPatron preference is not set correctly. Set it to a valid borrower number or checkins for these patrons will fail.</td>
471
                        </tr>
472
                    [% END %]
473
                    [% IF warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist %]
474
                        <tr>
475
                            <th scope="row"><strong>Warning</strong> </th>
476
                            <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>
477
                        </tr>
478
                    [% END %]
479
                    [% IF warnPrefKohaAdminEmailAddress %]
480
                        <tr>
481
                            <th scope="row"><strong>Warning</strong> </th>
482
                            <td>System preference 'KohaAdminEmailAddress' does not contain a valid email address. Emails will not be sent.</td>
483
                        </tr>
484
                    [% END %]
485
                    [% IF warnPrefOpacHiddenItems %]
486
                        <tr>
487
                            <th scope="row"><strong>Warning</strong> </th>
488
                            <td>System preference 'OpacHiddenItems' generates a warning and will produce unexpected behaviors: [% warnPrefOpacHiddenItems | html %]</th></tr>
489
                    [% END %]
490
                    [% IF warnPrefPatronSelfRegistrationDefaultCategory %]
491
                        <tr><th scope="row"><strong>Warning</strong> </th><td>System preference 'PatronSelfRegistration' is set, but 'PatronSelfRegistrationDefaultCategory' does not contain a valid patron category code. Patron self-registration is disabled.</td></tr>
492
                    [% END %]
493
                    [% IF warnXSLT %]
494
                        [% FOR p IN warnXSLT %]
495
                            <tr>
496
                                <th scope="row"><strong>Warning</strong> </th>
497
                                <td>System preference '[% p.syspref | html %]' is '[% p.value | html %]', but the file '[% p.filename | html %]' does not exist.</th></tr>
498
                        [% END %]
499
                    [% END %]
500
                    [% IF invalid_yesno.count %]
501
                        [% FOR p IN invalid_yesno %]
50
                            <tr>
502
                            <tr>
51
                                <th scope="row">Koha version: </th>
503
                                <th scope="row"><strong>Warning</strong> </th>
52
                                <td>[% kohaVersion | html %][% IF kohaCodename %] <strong>[% kohaCodename | html %]</strong>[% END %]</td>
504
                                <td>System preference '[% p.variable | html %]' must be '0' or '1', but is [% IF p.value.defined %]'[% p.value | html%]'[% ELSE %]NULL[% END %].</td>
53
                            </tr>
505
                            </tr>
506
                        [% END %]
507
                    [% END %]
508
                    [% IF warnNoActiveCurrency %]
509
                        <tr>
510
                            <th scope="row"><strong>Warning</strong> </th>
511
                            <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>
512
                        </tr>
513
                    [% END %]
514
                    [% IF warnStatisticsFieldsError %]
515
                        <tr>
516
                            <th scope="row"><strong>Warning</strong> </th>
517
                            <td>System preference 'StatisticsFields' contains field names not belonging to the items database table: [% warnStatisticsFieldsError | html %] </td>
518
                        </tr>
519
                    [% END %]
520
                    [% IF AutoSelfCheckPatronDoesNotHaveSelfCheckPerm %]
521
                        <tr>
522
                            <th scope="row"><strong>Warning</strong> </th>
523
                            <td>
524
                                The patron used for the self checkout module at the OPAC does not have the self_check => self_checkout_module permission.
525
                            </td>
526
                        </tr>
527
                    [% END %]
528
                    [% IF AutoSelfCheckPatronHasTooManyPerm %]
529
                        <tr>
530
                            <th scope="row"><strong>Warning</strong> </th>
531
                            <td>
532
                                The patron used for the self checkout module at the OPAC has too many permissions. They should only have self_check => self_checkout_module.
533
                            </td>
534
                        </tr>
535
                    [% END %]
536
                    [% IF warnNoTemplateCaching %]
537
                        <tr>
538
                            <th scope="row"><strong>Warning</strong> </th>
539
                            <td>
540
                                You are missing the &lt;template_cache_dir&gt; entry in your koha-conf.xml file.
541
                                That will bring a performance boost to enable it.
542
                            </td>
543
                        </tr>
544
                    [% END %]
545
                    [% IF warnI18nMissing %]
546
                        <tr>
547
                            <th scope="row"><strong>Warning</strong> </th>
548
                            <td>
549
                                The PO directory has not been found. See <a href="https://wiki.koha-community.org/wiki/Translation_files">the dedicated wiki page</a> for more information.
550
                            </td>
551
                        </tr>
552
                    [% END %]
553
                    [% IF warnILLConfiguration %]
554
                        [% IF no_ill_backends %]
54
                            <tr>
555
                            <tr>
55
                                <th scope="row">OS version ('uname -a'): </th>
556
                                <th scope="row"><strong>Warning</strong> </th>
56
                                <td>[% osVersion | html %]</td>
557
                                <td>
558
                                    The ILL module is enabled, but there are no backends available.
559
                                </td>
57
                            </tr>
560
                            </tr>
561
                        [% END %]
562
                        [% IF ill_partner_code_not_defined %]
58
                            <tr>
563
                            <tr>
59
                                <th scope="row">Perl interpreter: </th>
564
                                <th scope="row"><strong>Warning</strong> </th>
60
                                <td>[% perlPath | html %]</td>
565
                                <td>
566
                                    The ILL module is enabled, but ILLPartnerCode system preference is empty. Falling back to the hardcoded 'IL'.
567
                                </td>
61
                            </tr>
568
                            </tr>
569
                        [% END %]
570
                        [% IF ill_partner_code_no_patrons %]
62
                            <tr>
571
                            <tr>
63
                                <th scope="row">Perl version: </th>
572
                                <th scope="row"><strong>Warning</strong> </th>
64
                                <td>[% perlVersion | html %]</td>
573
                                <td>
574
                                    The ILL module is enabled and ILLPartnerCode system preference configured, but there are no patrons in [% ill_partner_code_no_patrons | html %] category.
575
                                </td>
65
                            </tr>
576
                            </tr>
577
                        [% END %]
578
                        [% IF ill_branch_not_defined %]
66
                            <tr>
579
                            <tr>
67
                                <th scope="row">Perl @INC: </th>
580
                                <th scope="row"><strong>Warning</strong> </th>
68
                                <td>
581
                                <td>
69
                                    [% FOREACH perlIncPat IN perlIncPath %]
582
                                    The ILL module is enabled, but no 'branch' block is defined in koha-conf.xml. You must define this block before use.
70
                                        [% perlIncPat.perlinc | html %] <br />
71
                                    [% END %]
72
                                </td>
583
                                </td>
73
                            </tr>
584
                            </tr>
585
                        [% END %]
586
                        [% IF ill_partner_code_doesnt_exist %]
74
                            <tr>
587
                            <tr>
75
                                <th scope="row">MySQL version: </th>
588
                                <th scope="row"><strong>Warning</strong> </th>
76
                                <td>[% mysqlVersion | html %]</td>
589
                                <td>
590
                                    The ILL module is enabled, but the configured ILLPartnerCode ([% ill_partner_code_doesnt_exist | html %]) is not defined on the system.
591
                                </td>
77
                            </tr>
592
                            </tr>
593
                        [% END %]
594
                    [% END %]
595
596
                    [% IF weasyprint_missing %]
597
                        <tr><th scope="row"><strong>Warning</strong> </th><td>
598
                        The <strong>weasyprint</strong> tool is not installed.
599
                        </td></tr>
600
                    [% END %]
601
602
                    [% IF oauth2_missing_deps %]
603
                        <tr>
604
                            <th scope="row"><strong>Warning</strong> </th>
605
                            <td>
606
                                System preference 'RESTOAuth2ClientCredentials' is set, but the required Net::OAuth2::AuthorizationServer dependency is missing. The feature is disabled.
607
                            </td>
608
                        </tr>
609
                    [% END %]
610
                    [% IF bad_yaml_prefs %]
611
                        <tr>
612
                            <th scope="row"><strong>Warning</strong> </th>
613
                            <td>
614
                                Some system preferences have badly formatted YAML content: [% bad_yaml_prefs.join(', ') | html %]
615
                            </td>
616
                        </tr>
617
                    [% END %]
618
                    [% IF config_bcrypt_settings_no_set %]
619
                        <tr>
620
                            <th scope="row"><strong>Warning</strong> </th>
621
                            <td>
622
                                System preference 'Pseudonymization' is set, but there is not 'bcrypt_settings' entry defined in the $KOHA_CONF file.
623
                            </td>
624
                        </tr>
625
                    [% END %]
626
                    [% IF warnHiddenBiblionumbers.size %]
627
                        <tr>
628
                            <th scope="row"><strong>Warning</strong> </th>
629
                            <td>
630
                                [% FOR w IN warnHiddenBiblionumbers %]
631
                                    <span>Bibliographic framework "[% w.frameworkcode | html %]" has the biblionumber field hidden at the interface [% w.interface | html %]</span><br/>
632
                                [% END %]
633
                            </td>
634
                        </tr>
635
                    [% END %]
636
                    [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' && elasticsearch_status.version.substr(0,1) < 6 %]
637
                        <tr>
638
                            <th scope="row"><strong>Deprecation warning</strong></th>
639
                            <td>
640
                                Elasticsearch version 5.x is not supported in Koha 20.11 and greater. Please upgrade your Elasticsearch cluster
641
                            </td>
642
                        </tr>
643
                    [% END %]
644
                </table>
645
            [% END # /IF warnPrefRequireChoosingExistingAuthority %]
646
647
            [% IF xml_config_warnings.size %]
648
                <table>
649
                    <caption>XML configuration file</caption>
650
                    [% FOREACH config_entry IN xml_config_warnings %]
651
                        [% IF config_entry.error == 'zebra_bib_index_mode_is_grs1' %]
78
                            <tr>
652
                            <tr>
79
                                <th scope="row">Apache version: </th>
653
                                <th scope="row"><strong>Warning</strong></th>
80
                                <td>[% apacheVersion | html %]</td>
654
                                <td>
655
                                    The &lt;zebra_bib_index_mode&gt; entry set to 'grs1', which is no longer supported.
656
                                    Please use DOM instead. To switch follow this page of wiki:
657
                                    <a href="https://wiki.koha-community.org/wiki/Switching_to_dom_indexing">Switching to dom indexing</a>
658
                                </td>
81
                            </tr>
659
                            </tr>
82
                            [% IF (is_psgi) %]
660
                        [% ELSIF config_entry.error == 'zebra_auth_index_mode_is_grs1' %]
83
                                <tr>
84
                                    <th scope="row">PSGI: </th>
85
                                    <td>[% psgi_server | html %]</td>
86
                                </tr>
87
                            [% END %]
88
                            [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' %]
89
                                <tr>
90
                                    <th scope="row">Elasticsearch: </th>
91
                                    [% IF elasticsearch_fatal_config_error %]
92
                                        <td><span class="bg-warning">[% elasticsearch_fatal_config_error | html %]</span></td>
93
                                    [% ELSE %]
94
                                        [% IF elasticsearch_status.running %]
95
                                            <td class="bg-success">
96
                                        [% ELSE %]
97
                                            <td>
98
                                        [% END %]
99
                                                <span>Version:</span>
100
                                                <span>[% elasticsearch_status.version | html %]</span>
101
                                                |
102
                                                <span>Nodes:</span>
103
                                                <span>[% elasticsearch_status.nodes.join(' / ') | html %]</span>
104
                                                |
105
                                                <span>Status:</span>
106
                                            [% IF elasticsearch_status.running %]
107
                                                <span>running</span>
108
                                                |
109
                                                <span>Indices:</span>
110
                                                [% FOREACH index IN elasticsearch_status.indexes %]
111
                                                    [% index.index_name | html %]
112
                                                    (<span>count:</span> <em>[% index.index_count | html %]</em>)
113
                                                    [% UNLESS loop.last %], [% END %]
114
                                                [% END %]
115
                                            [% ELSE %]
116
                                                <span class="bg-warning">not running</span>
117
                                            [% END %]
118
                                            </td>
119
                                    [% END # /IF elasticsearch_fatal_config_error %]
120
                                </tr>
121
                            [% END %]
122
                            <tr>
661
                            <tr>
123
                                <th scope="row">Memcached: </th>
662
                                <th scope="row"><strong>Warning</strong></th>
124
                                [% IF memcached_running AND is_memcached_still_active AND where_is_memcached_config == 'config_only' %]
663
                                <td>
125
                                    <td class="bg-success">
664
                                    The &lt;zebra_auth_index_mode&gt; entry set to 'grs1', which is no longer supported.
126
                                [% ELSE %]
665
                                    Please use DOM instead. To switch follow this page of wiki:
127
                                    <td>
666
                                    <a href="https://wiki.koha-community.org/wiki/Switching_to_dom_indexing">Switching to dom indexing</a>
128
                                [% END %]
129
                                        <span>Servers:</span>
130
                                        [% IF memcached_servers %]
131
                                            <span>[% memcached_servers | html %]</span>
132
                                        [% ELSE %]
133
                                            <span>undefined</span>
134
                                        [% END %] |
135
                                        <span>Namespace:</span>
136
                                        [% IF memcached_namespace %]
137
                                            <span>[% memcached_namespace | html %]</span>
138
                                        [% ELSE %]
139
                                            <span>undefined</span>
140
                                        [% END %] |
141
                                        <span>Status:</span>
142
                                        [% IF memcached_servers %]
143
                                            [% IF memcached_running and is_memcached_still_active %]
144
                                                <span class="bg-success">running</span>.
145
                                            [% ELSE %]
146
                                                <span class="bg-warning">not running</span>.
147
                                                [% IF is_psgi %]
148
                                                    <span>Remember memcached needs to be started before Plack.</span>
149
                                                [% END %]
150
                                            [% END %]
151
                                        [% ELSE %]
152
                                            <span>unknown</span>
153
                                        [% END %] |
154
                                        <span>Config read from:</span>
155
                                        [% SWITCH where_is_memcached_config %]
156
                                            [% CASE 'config_only' %]
157
                                                <span class="bg-success">koha-conf.xml</span>
158
                                            [% CASE 'ENV_only' %]
159
                                                <span class="bg-warning">ENV</span> <span>Note that the right place to define the memcached config is in your $KOHA_CONF file</span>
160
                                            [% CASE 'both' %]
161
                                                <span class="bg-warning">ENV and koha-conf.xml</span> <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.</span>
162
                                            [% CASE # nowhere %]
163
                                                <span class="bg-warning">Nowhere</span> <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.</span>
164
                                        [% END %]
165
                                    [% IF effective_caching_method != 'Cache::Memcached::Fast::Safe' %]
166
                                        | <span>Effective caching method:</span> [% effective_caching_method | html %]
167
                                    [% END %]
168
                                </td>
667
                                </td>
169
                            </tr>
668
                            </tr>
669
                        [% ELSIF config_entry.error == 'use_zebra_facets_entry_missing' %]
170
                            <tr>
670
                            <tr>
171
                                <th scope="row">Zebra version: </th>
671
                                <th scope="row"><strong>Warning</strong></th>
172
                                <td>[% zebraVersion | html %]</td>
672
                                <td>
673
                                    The &lt;use_zebra_facets&gt; entry is missing in your configuration file. Falling back
674
                                    to legacy facet calculation.
675
                                </td>
173
                            </tr>
676
                            </tr>
677
                        [% ELSIF config_entry.error == 'log4perl_entry_missing' %]
174
                            <tr>
678
                            <tr>
175
                                <th scope="row">Zebra status: </th>
679
                                <th scope="row"><strong>Warning</strong></th>
176
                                [% IF (errZebraConnection == 10000) %]
680
                                <td>
177
                                    <td class="bg-danger"><strong>Zebra server seems not to be available. Is it started?</strong></td>
681
                                    You are missing the &lt;log4perl_conf&gt; entry in your koha-conf.xml file. Please
178
                                [% ELSIF (errZebraConnection) %]
682
                                    add it, pointing to the log4perl.conf file for your Koha instance.
179
                                    <td class="bg-warning"><strong>Error message from Zebra: [% ( errZebraConnection ) | html %]</strong></td>
683
                                </td>
180
                                [% ELSE %]
181
                                    <td class="bg-success">Running</td>
182
                                [% END %]
183
                            </tr>
684
                            </tr>
685
                        [% ELSIF config_entry.error == 'lockdir_entry_missing' %]
184
                            <tr>
686
                            <tr>
185
                                <th scope="row">Message broker: </th>
687
                                <th scope="row"><strong>Warning</strong></th>
186
                                [% IF warnConnectBroker %]
688
                                <td>
187
                                    <td class="bg-warning"><strong>Using SQL polling</strong></td>
689
                                    You are missing the &lt;lockdir&gt; entry in your koha-conf.xml file. Please
188
                                [% ELSE %]
690
                                    add it, pointing to your Koha instance's lock dir.
189
                                    <td class="bg-success">Using RabbitMQ</td>
691
                                </td>
190
                                [% END %]
191
                            </tr>
692
                            </tr>
693
                        [% ELSIF config_entry.error == 'lockdir_not_writable' %]
192
                            <tr>
694
                            <tr>
193
                                <th scope="row">Date and time: </th>
695
                                <th scope="row"><strong>Warning</strong></th>
194
                                <td>[% current_date_and_time | $KohaDates  with_hours => 1 %]</td>
696
                                <td>
697
                                    The configured &lt;lockdir&gt; entry in your koha-conf.xml file points to a
698
                                    non-writable directory ([% config_entry.lockdir | html %]).
699
                                </td>
195
                            </tr>
700
                            </tr>
701
                        [% ELSIF config_entry.error == 'uploadpath_entry_missing' %]
196
                            <tr>
702
                            <tr>
197
                                [% timezone_config_class = (time_zone.config_invalid) ? 'bg-warning' : '' %]
703
                                <th scope="row"><strong>Warning</strong></th>
198
                                [% timezone_env_class    = (time_zone.env_invalid)    ? 'bg-warning' : '' %]
199
                                <th scope="row">Time zone: </th>
200
                                <td>
704
                                <td>
201
                                    <span>Used:</span> <span>[% time_zone.actual | html %]</span>
705
                                    You are missing the &lt;upload_path&gt; entry in your koha-conf.xml file. Please
202
                                    [% IF time_zone.actual_bad_tz_fallback %]
706
                                    add it, pointing to the configured file upload directory for your Koha instance.
203
                                        <span>(This is a fallback value due to a bad configuration)</span>
204
                                    [% END %]
205
                                    |
206
                                    <span>Config:</span>
207
                                    [% IF time_zone.config != '' %]
208
                                        <span class="[% timezone_config_class | html %]">[% time_zone.config | html %]</span>
209
                                    [% ELSE %]
210
                                        <span>Undefined</span>
211
                                    [% END %] |
212
                                    <span>Environment (TZ):</span>
213
                                    [% IF time_zone.environment != '' %]
214
                                        <span class="[% timezone_env_class | html %]">[% time_zone.environment | html %]</span>
215
                                    [% ELSE %]
216
                                        <span>Undefined</span>
217
                                    [% END %]
218
                                </td>
707
                                </td>
219
                            </tr>
708
                            </tr>
220
                        </table>
709
                        [% ELSIF config_entry.error == 'uploadpath_and_opacbaseurl_entry_missing' %]
221
                    [% END # /WRAPPER tab_item about %]
710
                            <tr>
222
711
                                <th scope="row"><strong>Warning</strong></th>
223
                    [% WRAPPER tab_panel tabname= "perl" %]
712
                                <td>
224
                        <table style="cursor:pointer">
713
                                    You are missing the &lt;upload_path&gt; entry in your koha-conf.xml file. Please
225
                            <caption>Perl modules</caption>
714
                                    add it, pointing to the configured file upload directory for your Koha instance.
226
                            [% FOREACH tabl IN table %]
715
                                    Also note that you need to properly set the OPACBaseURL preference for the file upload plugin to work.
227
                                <tr>
716
                                </td>
228
                                    [% FOREACH ro IN tabl.row %]
717
                            </tr>
229
                                        [% IF ( ro.current ) %]
718
                        [% ELSIF config_entry.error == 'tmp_path_missing' %]
230
                                            [% IF ( ro.require ) %]
719
                            <tr>
231
                                                <th scope="row" style="font-weight:bold;" title="Module current">
720
                                <th scope="row"><strong>Warning</strong></th>
232
                                            [% ELSE %]
721
                                <td>
233
                                                <th scope="row" style="font-weight:normal" title="Module current">
722
                                    You are missing the &lt;tmp_path&gt; entry in your koha-conf.xml file. Please
234
                                            [% END %]
723
                                    add it, pointing to the configured temporary directory for your Koha instance.
235
                                        [% ELSIF ( ro.upgrade ) %]
724
                                    The effective temporary directory is '[% config_entry.effective_tmp_dir | html %]'.
236
                                            [% IF ( ro.require ) %]
725
                                </td>
237
                                                <th scope="row" style="background-color:#FFCB2F;font-weight:bold;" title="Module upgrade needed">
726
                            </tr>
238
                                            [% ELSE %]
727
                        [% ELSIF config_entry.error == 'encryption_key_missing' %]
239
                                                <th scope="row" style="background-color:#FFCB2F;font-weight:normal" title="Module upgrade needed">
728
                            <tr>
240
                                            [% END %]
729
                                <th scope="row"><strong>Warning</strong></th>
241
                                        [% ELSE %]
730
                                <td>
242
                                            [% IF ( ro.name == '' ) %]
731
                                    You are missing the &lt;encryption_key&gt; entry in your koha-conf.xml file.
243
                                                <th>
732
                                    Please generate a key. We recommend one of at least 32 bytes. (You might use 'pwgen 32' to do so.)
244
                                            [% ELSIF ( ro.require ) %]
733
                                </td>
245
                                                <th scope="row" style="background-color:#FF8A8A;font-weight:bold;" title="Required module missing">
734
                            </tr>
246
                                            [% ELSE %]
735
                        [% END # /IF config_entry.error %]
247
                                                <th scope="row" style="background-color:#FF8A8A;font-weight:normal" title="Optional module missing">
736
                    [% END # /FOREACH config_entry %]
248
                                            [% END %]
737
                </table>
249
                                        [% END # /IF ro.current %]
738
            [% END # /IF xml_config_warnings.size %]
250
                                        [% IF ( ro.name ) %]
739
251
                                            [% ro.name | html %]
740
            [% IF warnIssuingRules %]
252
                                            <span style="font-weight:normal; font-size:smaller">
741
                <table>
253
                                                ([% ro.reqversion | html %]
742
                    <caption>Issuing rules</caption>
254
                                                [% IF ro.maxversion %] - [% ro.maxversion | html %][% END %]
743
                    [% FOREACH unit IN ir_units %]
255
                                                [% IF ro.excversion %][% FOR v IN ro.excversion %], ![% v | html %][% END %][% END %])
744
                        <tr>
256
                                            </span>
745
                            <th scope="row"><strong>Warning</strong></th>
257
                                        [% END %]
746
                            <td>
258
                                        </th>
747
                                The [% unit.branchcode || 'branchcode=default' | html %], [% unit.categorycode || 'categorycode=default' | html %], [% unit.itemtype || 'itemtype=default' | html %]issuingrule will fallback to 'days' for 'lengthunit' as it is incorrectly defined as [% unit.rule_value | html %].
259
                                        [% IF ( ro.name == '' ) %]
748
                            </td>
260
                                            <td>
749
                        </tr>
261
                                        [% ELSIF ( ro.version ) %]
750
                    [% END # /FOREACH unit %]
262
                                            <td>[% ro.version | html %]
751
                </table>
263
                                        [% ELSE %]
752
            [% END # /IF warnIssuingRules %]
264
                                            <td style="font-weight:bold">Not Installed
753
265
                                        [% END %]
754
            [% IF elasticsearch_has_missing %]
266
                                            </td>
755
                <table>
267
                                    [% END # /FOREACH ro %]
756
                    <caption>Records are not indexed in Elasticsearch</caption>
268
                                </tr>
757
                    [% FOREACH index IN elasticsearch_status.indexes %]
269
                            [% END # /FOREACH tabl %]
758
                        [% IF index.missing_count %]
270
                        </table>
759
                            <tr>
271
                    [% END # /WRAPPER tab_item perl %]
760
                                <th scope="row"><strong>Warning</strong></th>
272
761
                                <td>
273
                    [% IF Asset.css("css/staff-global.css") == "" || Asset.js("js/vue/dist/erm.js") == "" %]
762
                                    [% index.missing_count | html %] record(s) missing on a total of [% index.index_count | html %] in index [% index.index_name | html %].
274
                        [% SET warnMissingCompiledFiles = 1 %]
763
                                </td>
764
                            </tr>
765
                        [% END %]
275
                    [% END %]
766
                    [% END %]
276
                    [% WRAPPER tab_panel tabname= "sysinfo" %]
767
                </table>
277
                        [% IF weasyprint_missing || warnPrefRequireChoosingExistingAuthority || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatronOPACPrivacy || warnPrefAnonymousPatronAnonSuggestions || warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist || warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist || warnPrefKohaAdminEmailAddress || warnPrefOpacHiddenItems || warnPrefPatronSelfRegistrationDefaultCategory || invalid_yesno.count || warnNoActiveCurrency || warnIsRootUser || xml_config_warnings.size || warnI18nMissing || 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 || elasticsearch_has_missing || warnMissingCompiledFiles || warnDbRowFormat %]
768
            [% END # /IF elasticsearch_has_missing %]
278
                            [% IF ( warnDbRowFormat ) %]
769
279
                                <h2>Database row format incorrect</h2>
770
            [% IF warnMissingCompiledFiles %]
280
                                <p>Database tables with a row format other than 'DYNAMIC': [% warnDbRowFormat | html %]</p>
771
                <tr><th scope="row"><strong class="error">Error</strong></th><td>
281
                                <p>You may experience problems upgrading to newer versions of Koha unless you update the row format for your database tables.</p>
772
                    Compiled CSS and/or JS files are not present. Please run `yarn build` to generate them.
282
                                <p>To know how to avoid this problem see the related wiki page:
773
                </td></tr>
283
                                    <a href="https://wiki.koha-community.org/wiki/Database_row_format">Database row format</a>
774
            [% END # /IF warnMissingCompiledFiles %]
284
                                </p>
775
285
                            [% END %]
776
        [% ELSE %]
777
            <p>No warnings.</p>
778
        [% END # /IF warnRequireChoosingExistingAuthority... %]
779
    [% END # tab=sysinfo %]
780
[% END %]
286
781
287
                            [% IF (warnIsRootUser) %]
782
[% BLOCK team_panel %]
288
                                <h2>Warning regarding current user</h2>
783
    [% WRAPPER tab_panel tabname= "team" bt_active = 1 %]
289
                                <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>
784
        <h2>Special thanks to the following organizations</h2>
290
                                <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>
785
        <ul>
291
                            [% END # /IF warnIsRootUser %]
786
            <li>
292
787
                <a href="http://library.org.nz">Horowhenua Library Trust</a>, New Zealand, and Rosalie Blake, Head of Libraries, (Koha 1.0)
293
                            [% IF has_ai_issues %]
788
            </li>
294
                                <h2>Data problems</h2>
789
            <li>
295
                                <p>
790
                The <a href="http://www.myacpl.org/">Athens County Public Libraries</a>, Ohio, USA (MARC sponsorship, documentation, template maintenance)</li>
296
                                    Some of your tables have problems with their auto_increment values which may lead to data loss.
791
            <li>
297
                                </p>
792
                <a href="http://www.emn.fr">EMN (Ecole des Mines de Nantes)</a>, France (Suggestions, Stats wizards and improved LDAP sponsorship)
298
                                <p>
793
            </li>
299
                                    <strong>You should not ignore this warning.</strong>
794
            <li>
300
                                </p>
795
                <a href="http://www.mines-paristech.fr">Mines Paristech (previously Ecole Nationale Supérieure des Mines de Paris)</a>, France (bibliographic frameworks, MARC authorities, OPAC basket, Serials sponsorship)
301
                                <p>
796
            </li>
302
                                    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.
797
            <li>
303
                                </p>
798
                <a href="http://www.mediathequeouestprovence.fr/">SAN-Ouest Provence</a>, France (Koha 3.0 enhancements to patrons and holds modules)
304
                                <p>To know how to avoid this problem see the related wiki page:
799
            </li>
305
                                    <a href="https://wiki.koha-community.org/wiki/DBMS_auto_increment_fix">DBMS auto increment fix</a>
800
            <li>
306
                                </p>
801
                The <a href="http://ccfls.org">Crawford County Federated Library System</a>, PA, USA (Koha 3.0 Zebra Integration sponsorship)</li>
307
802
            <li>
308
                                <h3>Problems found</h3>
803
                The <a href="http://www.geauga.lib.oh.us/">Geauga County Public Library</a>, OH, USA (Koha 3.0 beta testing)</li>
309
                                [% IF ai_patrons %]
804
            <li>
310
                                    <h4>Patrons</h4>
805
                The <a href="http://library.neu.edu.tr">Near East University</a>, Cyprus</li>
311
                                    <p>The following IDs exist in both tables [% "borrowers" | $HtmlTags tag="strong" %] and [% "deletedborrowers" | $HtmlTags tag="strong" %]:</p>
806
            <li>
312
                                    <p>
807
                OPUS International Consultants, Wellington, New Zealand (Corporate Serials sponsorship)</li>
313
                                        [% FOR p IN ai_patrons %]
808
            <li>
314
                                            [% p.borrowernumber | html %]
809
                <a href="http://www.famfamfam.com/">famfamfam.com</a> Birmingham (UK) based developer Mark James for the famfamfam Silk iconset.
315
                                            [% UNLESS loop.last %], [% END %]
810
            </li>
316
                                        [% END %]
811
            <li>
317
                                    </p>
812
                <a href="http://www.ashs.school.nz/">Albany Senior High School</a>, Auckland, New Zealand (OPAC 'star-ratings' sponsorship)
318
                                [% END %]
813
            </li>
319
                                [% IF ai_biblios %]
814
        </ul>
320
                                    <h4>Bibliographic records</h4>
815
321
                                    <p>The following IDs exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblio" | $HtmlTags tag="strong" %]:</p>
816
        <h2>Koha release teams</h2>
322
                                    <p>
817
        [% IF maintenance_team %]
323
                                        [% FOR b IN ai_biblios %]
818
            <div class="row">
324
                                            [% b.biblionumber | html %]
819
                <div class="col-md-6">
325
                                            [% UNLESS loop.last %], [% END %]
820
                    <h3>Koha [% short_version | html %][% IF kohaCodename %] ([% kohaCodename | html %])[% END %] release team</h3>
326
                                        [% END %]
821
                    [% IF development_version %]
327
                                    </p>
822
                        <p>You are running a development version of Koha</p>
328
                                [% END %]
823
                    [% ELSE %]
329
                                [% IF ai_biblioitems %]
824
                        [% INCLUDE team t=release_team v='release' %]
330
                                    <h4>Bibliographic records</h4>
825
                    [% END %]
331
                                    <p>The following IDs exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblioitems" | $HtmlTags tag="strong" %]:</p>
826
                </div>
332
                                    <p>
827
333
                                        [% FOR b IN ai_biblioitems %]
828
                <div class="col-md-6">
334
                                            [% b.biblioitemnumber | html %]
829
                    <h3>Current maintenance team</h3>
335
                                            [% UNLESS loop.last %], [% END %]
830
                    [% INCLUDE team t=maintenance_team v=short_version %]
336
                                        [% END %]
831
                    [% IF development_version %]
337
                                    </p>
832
                            <li><strong>Release maintainers:</strong>
338
                                [% END %]
833
                            <ul>
339
                                [% IF ai_items %]
834
                                [% FOREACH m IN maintenance_team.maintainer %]
340
                                    <h4>Items</h4>
835
                                <li>[% m.version | html %] - [% INCLUDE person p=m %]</li>
341
                                    <p>The following IDs exist in both tables [% "items" | $HtmlTags tag="strong" %] and [% "deleteditems" | $HtmlTags tag="strong" %]:</p>
836
                                    [% IF maintenance_team.maintainer_assistants %]
342
                                    <p>
837
                                    [% FOREACH ma IN maintenance_team.maintainer_assistants %]
343
                                        [% FOR i IN ai_items %]
838
                                        [% IF ma.version == ( m.version ) %]
344
                                            [% i.itemnumber | html %]
839
                                        <ul><li><strong>Assistant:</strong> [% INCLUDE person p=ma %]</li></ul>
345
                                            [% UNLESS loop.last %], [% END %]
346
                                        [% END %]
347
                                    </p>
348
                                [% END %]
349
                                [% IF ai_checkouts %]
350
                                    <h4>Checkouts</h4>
351
                                    <p>The following IDs exist in both tables [% "issues" | $HtmlTags tag="strong" %] and [% "old_issues" | $HtmlTags tag="strong" %]:</p>
352
                                    <p>
353
                                        [% FOR c IN ai_checkouts %]
354
                                            [% c.issue_id | html %]
355
                                            [% UNLESS loop.last %], [% END %]
356
                                        [% END %]
357
                                    </p>
358
                                [% END %]
359
                                [% IF ai_holds %]
360
                                    <h4>Holds</h4>
361
                                    <p>The following IDs exist in both tables [% "reserves" | $HtmlTags tag="strong" %] and [% "old_reserves" | $HtmlTags tag="strong" %]:</p>
362
                                    <p>
363
                                        [% FOR h IN ai_holds %]
364
                                            [% h.reserve_id | html %]
365
                                            [% UNLESS loop.last %], [% END %]
366
                                        [% END %]
367
                                    </p>
368
                                [% END %]
369
                                <br/>
370
                            [% END # /IF has_ai_issues %]
371
372
                            [% IF warnRelationships %]
373
                                <h2>Patron relationship problems</h2>
374
                                [% IF bad_relationships_count %]
375
                                    <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>
376
                                [% END # /IF bad_relationships_count %]
377
378
                                [% IF wrong_relationships %]
379
                                    <p>The following values have been used for guarantee/guarantor relationships, but do not exist in the 'borrowerRelationship' system preference:</p>
380
                                    <ul>
381
                                        [% FOR rel IN wrong_relationships %]
382
                                            <li>[% rel.0 | html %]</li>
383
                                        [% END %]
384
                                    </ul>
385
                                    <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>
386
                                [% END # /IF wrong_relationships %]
387
                            [% END # /IF warnRelationships %]
388
389
                            [% IF log4perl_errors %]
390
                                <h2>Logging system does not behave correctly</h2>
391
                                [% FOR e IN log4perl_errors %]
392
                                    [% SWITCH e %]
393
                                        [% CASE 'missing_config_entry' %]<span>There is no 'log4perl_conf' entry in the config file.</span>
394
                                        [% CASE 'cannot_read_config_file' %]<span>The log4perl config file cannot be opened.</span>
395
                                        [% CASE 'logfile_not_writable' %]<span>One of the logfiles listed in the config file is not writable.</span>
396
                                        [% CASE 'cannot_init_module' %]<span>The Koha::Logger module cannot be initiated correctly (check the log file).</span>
397
                                        [% CASE %]<span>Unknown error '[% e | html %]'.</span>
398
                                    [% END %]
399
                                [% END # /FOR e %]
400
                            [% END # /IF log4perl_errors %]
401
402
                            [% IF warnConnectBroker %]
403
                                <h2>Impossible to connect to the message broker</h2>
404
                                There is an error when trying to connect to the message broker (RabbitMQ), check the Koha log files.
405
                                <br/>
406
                                Maybe it is not installed and configured correctly?
407
                                <br/>
408
                                Contact your system administrator.
409
                            [% END # /IF warnConnectBroker %]
410
411
                            [% IF weasyprint_missing || warnPrefRequireChoosingExistingAuthority || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatronOPACPrivacy || warnPrefAnonymousPatronAnonSuggestions || warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist || warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist || warnPrefKohaAdminEmailAddress || warnPrefOpacHiddenItems || warnPrefPatronSelfRegistrationDefaultCategory || invalid_yesno.count || warnNoActiveCurrency || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || warnXSLT || oauth2_missing_deps || bad_yaml_prefs || warnIssuingRules || config_bcrypt_settings_no_set || warnHiddenBiblionumbers.size || warnFastCataloging %]
412
                                <h2>Warnings regarding the system configuration</h2>
413
                                <table>
414
                                    <caption>Preferences and parameters</caption>
415
                                    [% IF (warnFastCataloging) %]
416
                                        <tr>
417
                                            <th scope="row"><strong>Warning</strong> </th>
418
                                            <td>There is no "Fast add" (FA) framework defined in administration->MARC frameworks. This disables the 'Fast cataloging' feature in cataloging/circulation.</td>
419
                                        </tr>
420
                                    [% END %]
421
                                    [% IF (warnPrefRequireChoosingExistingAuthority) %]
422
                                        <tr>
423
                                            <th scope="row"><strong>Warning</strong> </th>
424
                                            <td>System preference 'RequireChoosingExistingAuthority' is disabled, but needs 'AutoCreateAuthorites' enabled. Otherwise catalogers can add headings that will not be linked to authorities.</td>
425
                                        </tr>
426
                                    [% END %]
427
                                    [% IF (warnPrefEasyAnalyticalRecords) %]
428
                                        <tr>
429
                                            <th scope="row"><strong>Warning</strong> </th>
430
                                            <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>
431
                                        </tr>
432
                                    [% END %]
433
                                    [% IF warnPrefAnonymousPatronOPACPrivacy %]
434
                                        <tr>
435
                                            <th scope="row"><strong class="error">Error</strong> </th>
436
                                            <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>
437
                                        </tr>
438
                                    [% END %]
439
                                    [% IF warnPrefAnonymousPatronAnonSuggestions %]
440
                                        <tr>
441
                                            <th scope="row"><strong>Warning</strong> </th>
442
                                            <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>
443
                                        </tr>
444
                                    [% END %]
445
                                    [% IF warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist %]
446
                                        <tr>
447
                                            <th scope="row"><strong class="error">Error</strong> </th>
448
                                            <td>Some patrons have requested privacy after their items are checked in, but the AnonymousPatron preference is not set correctly. Set it to a valid borrower number or checkins for these patrons will fail.</td>
449
                                        </tr>
450
                                    [% END %]
451
                                    [% IF warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist %]
452
                                        <tr>
453
                                            <th scope="row"><strong>Warning</strong> </th>
454
                                            <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>
455
                                        </tr>
456
                                    [% END %]
457
                                    [% IF warnPrefKohaAdminEmailAddress %]
458
                                        <tr>
459
                                            <th scope="row"><strong>Warning</strong> </th>
460
                                            <td>System preference 'KohaAdminEmailAddress' does not contain a valid email address. Emails will not be sent.</td>
461
                                        </tr>
462
                                    [% END %]
463
                                    [% IF warnPrefOpacHiddenItems %]
464
                                        <tr>
465
                                            <th scope="row"><strong>Warning</strong> </th>
466
                                            <td>System preference 'OpacHiddenItems' generates a warning and will produce unexpected behaviors: [% warnPrefOpacHiddenItems | html %]</th></tr>
467
                                    [% END %]
468
                                    [% IF warnPrefPatronSelfRegistrationDefaultCategory %]
469
                                        <tr><th scope="row"><strong>Warning</strong> </th><td>System preference 'PatronSelfRegistration' is set, but 'PatronSelfRegistrationDefaultCategory' does not contain a valid patron category code. Patron self-registration is disabled.</td></tr>
470
                                    [% END %]
471
                                    [% IF warnXSLT %]
472
                                        [% FOR p IN warnXSLT %]
473
                                            <tr>
474
                                                <th scope="row"><strong>Warning</strong> </th>
475
                                                <td>System preference '[% p.syspref | html %]' is '[% p.value | html %]', but the file '[% p.filename | html %]' does not exist.</th></tr>
476
                                        [% END %]
477
                                    [% END %]
478
                                    [% IF invalid_yesno.count %]
479
                                        [% FOR p IN invalid_yesno %]
480
                                            <tr>
481
                                                <th scope="row"><strong>Warning</strong> </th>
482
                                                <td>System preference '[% p.variable | html %]' must be '0' or '1', but is [% IF p.value.defined %]'[% p.value | html%]'[% ELSE %]NULL[% END %].</td>
483
                                            </tr>
484
                                        [% END %]
485
                                    [% END %]
486
                                    [% IF warnNoActiveCurrency %]
487
                                        <tr>
488
                                            <th scope="row"><strong>Warning</strong> </th>
489
                                            <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>
490
                                        </tr>
491
                                    [% END %]
492
                                    [% IF warnStatisticsFieldsError %]
493
                                        <tr>
494
                                            <th scope="row"><strong>Warning</strong> </th>
495
                                            <td>System preference 'StatisticsFields' contains field names not belonging to the items database table: [% warnStatisticsFieldsError | html %] </td>
496
                                        </tr>
497
                                    [% END %]
498
                                    [% IF AutoSelfCheckPatronDoesNotHaveSelfCheckPerm %]
499
                                        <tr>
500
                                            <th scope="row"><strong>Warning</strong> </th>
501
                                            <td>
502
                                                The patron used for the self checkout module at the OPAC does not have the self_check => self_checkout_module permission.
503
                                            </td>
504
                                        </tr>
505
                                    [% END %]
506
                                    [% IF AutoSelfCheckPatronHasTooManyPerm %]
507
                                        <tr>
508
                                            <th scope="row"><strong>Warning</strong> </th>
509
                                            <td>
510
                                                The patron used for the self checkout module at the OPAC has too many permissions. They should only have self_check => self_checkout_module.
511
                                            </td>
512
                                        </tr>
513
                                    [% END %]
514
                                    [% IF warnNoTemplateCaching %]
515
                                        <tr>
516
                                            <th scope="row"><strong>Warning</strong> </th>
517
                                            <td>
518
                                                You are missing the &lt;template_cache_dir&gt; entry in your koha-conf.xml file.
519
                                                That will bring a performance boost to enable it.
520
                                            </td>
521
                                        </tr>
522
                                    [% END %]
523
                                    [% IF warnI18nMissing %]
524
                                        <tr>
525
                                            <th scope="row"><strong>Warning</strong> </th>
526
                                            <td>
527
                                                The PO directory has not been found. See <a href="https://wiki.koha-community.org/wiki/Translation_files">the dedicated wiki page</a> for more information.
528
                                            </td>
529
                                        </tr>
530
                                    [% END %]
531
                                    [% IF warnILLConfiguration %]
532
                                        [% IF no_ill_backends %]
533
                                            <tr>
534
                                                <th scope="row"><strong>Warning</strong> </th>
535
                                                <td>
536
                                                    The ILL module is enabled, but there are no backends available.
537
                                                </td>
538
                                            </tr>
539
                                        [% END %]
540
                                        [% IF ill_partner_code_not_defined %]
541
                                            <tr>
542
                                                <th scope="row"><strong>Warning</strong> </th>
543
                                                <td>
544
                                                    The ILL module is enabled, but ILLPartnerCode system preference is empty. Falling back to the hardcoded 'IL'.
545
                                                </td>
546
                                            </tr>
547
                                        [% END %]
548
                                        [% IF ill_partner_code_no_patrons %]
549
                                            <tr>
550
                                                <th scope="row"><strong>Warning</strong> </th>
551
                                                <td>
552
                                                    The ILL module is enabled and ILLPartnerCode system preference configured, but there are no patrons in [% ill_partner_code_no_patrons | html %] category.
553
                                                </td>
554
                                            </tr>
555
                                        [% END %]
556
                                        [% IF ill_branch_not_defined %]
557
                                            <tr>
558
                                                <th scope="row"><strong>Warning</strong> </th>
559
                                                <td>
560
                                                    The ILL module is enabled, but no 'branch' block is defined in koha-conf.xml. You must define this block before use.
561
                                                </td>
562
                                            </tr>
563
                                        [% END %]
564
                                        [% IF ill_partner_code_doesnt_exist %]
565
                                            <tr>
566
                                                <th scope="row"><strong>Warning</strong> </th>
567
                                                <td>
568
                                                    The ILL module is enabled, but the configured ILLPartnerCode ([% ill_partner_code_doesnt_exist | html %]) is not defined on the system.
569
                                                </td>
570
                                            </tr>
571
                                        [% END %]
840
                                        [% END %]
572
                                    [% END %]
841
                                    [% END %]
573
574
                                    [% IF weasyprint_missing %]
575
                                        <tr><th scope="row"><strong>Warning</strong> </th><td>
576
                                        The <strong>weasyprint</strong> tool is not installed.
577
                                        </td></tr>
578
                                    [% END %]
842
                                    [% END %]
579
843
580
                                    [% IF oauth2_missing_deps %]
844
                                    [% IF maintenance_team.maintainer_mentors %]
581
                                        <tr>
845
                                    [% FOREACH mm IN maintenance_team.maintainer_mentors %]
582
                                            <th scope="row"><strong>Warning</strong> </th>
846
                                        [% IF m.version == ( mm.version ) %]
583
                                            <td>
847
                                        <ul><li><strong>Mentor:</strong> [% INCLUDE person p=mm %]</li></ul>
584
                                                System preference 'RESTOAuth2ClientCredentials' is set, but the required Net::OAuth2::AuthorizationServer dependency is missing. The feature is disabled.
585
                                            </td>
586
                                        </tr>
587
                                    [% END %]
588
                                    [% IF bad_yaml_prefs %]
589
                                        <tr>
590
                                            <th scope="row"><strong>Warning</strong> </th>
591
                                            <td>
592
                                                Some system preferences have badly formatted YAML content: [% bad_yaml_prefs.join(', ') | html %]
593
                                            </td>
594
                                        </tr>
595
                                    [% END %]
596
                                    [% IF config_bcrypt_settings_no_set %]
597
                                        <tr>
598
                                            <th scope="row"><strong>Warning</strong> </th>
599
                                            <td>
600
                                                System preference 'Pseudonymization' is set, but there is not 'bcrypt_settings' entry defined in the $KOHA_CONF file.
601
                                            </td>
602
                                        </tr>
603
                                    [% END %]
604
                                    [% IF warnHiddenBiblionumbers.size %]
605
                                        <tr>
606
                                            <th scope="row"><strong>Warning</strong> </th>
607
                                            <td>
608
                                                [% FOR w IN warnHiddenBiblionumbers %]
609
                                                    <span>Bibliographic framework "[% w.frameworkcode | html %]" has the biblionumber field hidden at the interface [% w.interface | html %]</span><br/>
610
                                                [% END %]
611
                                            </td>
612
                                        </tr>
613
                                    [% END %]
614
                                    [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' && elasticsearch_status.version.substr(0,1) < 6 %]
615
                                        <tr>
616
                                            <th scope="row"><strong>Deprecation warning</strong></th>
617
                                            <td>
618
                                                Elasticsearch version 5.x is not supported in Koha 20.11 and greater. Please upgrade your Elasticsearch cluster
619
                                            </td>
620
                                        </tr>
621
                                    [% END %]
622
                                </table>
623
                            [% END # /IF warnPrefRequireChoosingExistingAuthority %]
624
625
                            [% IF xml_config_warnings.size %]
626
                                <table>
627
                                    <caption>XML configuration file</caption>
628
                                    [% FOREACH config_entry IN xml_config_warnings %]
629
                                        [% IF config_entry.error == 'zebra_bib_index_mode_is_grs1' %]
630
                                            <tr>
631
                                                <th scope="row"><strong>Warning</strong></th>
632
                                                <td>
633
                                                    The &lt;zebra_bib_index_mode&gt; entry set to 'grs1', which is no longer supported.
634
                                                    Please use DOM instead. To switch follow this page of wiki:
635
                                                    <a href="https://wiki.koha-community.org/wiki/Switching_to_dom_indexing">Switching to dom indexing</a>
636
                                                </td>
637
                                            </tr>
638
                                        [% ELSIF config_entry.error == 'zebra_auth_index_mode_is_grs1' %]
639
                                            <tr>
640
                                                <th scope="row"><strong>Warning</strong></th>
641
                                                <td>
642
                                                    The &lt;zebra_auth_index_mode&gt; entry set to 'grs1', which is no longer supported.
643
                                                    Please use DOM instead. To switch follow this page of wiki:
644
                                                    <a href="https://wiki.koha-community.org/wiki/Switching_to_dom_indexing">Switching to dom indexing</a>
645
                                                </td>
646
                                            </tr>
647
                                        [% ELSIF config_entry.error == 'use_zebra_facets_entry_missing' %]
648
                                            <tr>
649
                                                <th scope="row"><strong>Warning</strong></th>
650
                                                <td>
651
                                                    The &lt;use_zebra_facets&gt; entry is missing in your configuration file. Falling back
652
                                                    to legacy facet calculation.
653
                                                </td>
654
                                            </tr>
655
                                        [% ELSIF config_entry.error == 'log4perl_entry_missing' %]
656
                                            <tr>
657
                                                <th scope="row"><strong>Warning</strong></th>
658
                                                <td>
659
                                                    You are missing the &lt;log4perl_conf&gt; entry in your koha-conf.xml file. Please
660
                                                    add it, pointing to the log4perl.conf file for your Koha instance.
661
                                                </td>
662
                                            </tr>
663
                                        [% ELSIF config_entry.error == 'lockdir_entry_missing' %]
664
                                            <tr>
665
                                                <th scope="row"><strong>Warning</strong></th>
666
                                                <td>
667
                                                    You are missing the &lt;lockdir&gt; entry in your koha-conf.xml file. Please
668
                                                    add it, pointing to your Koha instance's lock dir.
669
                                                </td>
670
                                            </tr>
671
                                        [% ELSIF config_entry.error == 'lockdir_not_writable' %]
672
                                            <tr>
673
                                                <th scope="row"><strong>Warning</strong></th>
674
                                                <td>
675
                                                    The configured &lt;lockdir&gt; entry in your koha-conf.xml file points to a
676
                                                    non-writable directory ([% config_entry.lockdir | html %]).
677
                                                </td>
678
                                            </tr>
679
                                        [% ELSIF config_entry.error == 'uploadpath_entry_missing' %]
680
                                            <tr>
681
                                                <th scope="row"><strong>Warning</strong></th>
682
                                                <td>
683
                                                    You are missing the &lt;upload_path&gt; entry in your koha-conf.xml file. Please
684
                                                    add it, pointing to the configured file upload directory for your Koha instance.
685
                                                </td>
686
                                            </tr>
687
                                        [% ELSIF config_entry.error == 'uploadpath_and_opacbaseurl_entry_missing' %]
688
                                            <tr>
689
                                                <th scope="row"><strong>Warning</strong></th>
690
                                                <td>
691
                                                    You are missing the &lt;upload_path&gt; entry in your koha-conf.xml file. Please
692
                                                    add it, pointing to the configured file upload directory for your Koha instance.
693
                                                    Also note that you need to properly set the OPACBaseURL preference for the file upload plugin to work.
694
                                                </td>
695
                                            </tr>
696
                                        [% ELSIF config_entry.error == 'tmp_path_missing' %]
697
                                            <tr>
698
                                                <th scope="row"><strong>Warning</strong></th>
699
                                                <td>
700
                                                    You are missing the &lt;tmp_path&gt; entry in your koha-conf.xml file. Please
701
                                                    add it, pointing to the configured temporary directory for your Koha instance.
702
                                                    The effective temporary directory is '[% config_entry.effective_tmp_dir | html %]'.
703
                                                </td>
704
                                            </tr>
705
                                        [% ELSIF config_entry.error == 'encryption_key_missing' %]
706
                                            <tr>
707
                                                <th scope="row"><strong>Warning</strong></th>
708
                                                <td>
709
                                                    You are missing the &lt;encryption_key&gt; entry in your koha-conf.xml file.
710
                                                    Please generate a key. We recommend one of at least 32 bytes. (You might use 'pwgen 32' to do so.)
711
                                                </td>
712
                                            </tr>
713
                                        [% END # /IF config_entry.error %]
714
                                    [% END # /FOREACH config_entry %]
715
                                </table>
716
                            [% END # /IF xml_config_warnings.size %]
717
718
                            [% IF warnIssuingRules %]
719
                                <table>
720
                                    <caption>Issuing rules</caption>
721
                                    [% FOREACH unit IN ir_units %]
722
                                        <tr>
723
                                            <th scope="row"><strong>Warning</strong></th>
724
                                            <td>
725
                                                The [% unit.branchcode || 'branchcode=default' | html %], [% unit.categorycode || 'categorycode=default' | html %], [% unit.itemtype || 'itemtype=default' | html %]issuingrule will fallback to 'days' for 'lengthunit' as it is incorrectly defined as [% unit.rule_value | html %].
726
                                            </td>
727
                                        </tr>
728
                                    [% END # /FOREACH unit %]
729
                                </table>
730
                            [% END # /IF warnIssuingRules %]
731
732
                            [% IF elasticsearch_has_missing %]
733
                                <table>
734
                                    <caption>Records are not indexed in Elasticsearch</caption>
735
                                    [% FOREACH index IN elasticsearch_status.indexes %]
736
                                        [% IF index.missing_count %]
737
                                            <tr>
738
                                                <th scope="row"><strong>Warning</strong></th>
739
                                                <td>
740
                                                    [% index.missing_count | html %] record(s) missing on a total of [% index.index_count | html %] in index [% index.index_name | html %].
741
                                                </td>
742
                                            </tr>
743
                                        [% END %]
848
                                        [% END %]
744
                                    [% END %]
849
                                    [% END %]
745
                                </table>
746
                            [% END # /IF elasticsearch_has_missing %]
747
748
                            [% IF warnMissingCompiledFiles %]
749
                                <tr><th scope="row"><strong class="error">Error</strong></th><td>
750
                                    Compiled CSS and/or JS files are not present. Please run `yarn build` to generate them.
751
                                </td></tr>
752
                            [% END # /IF warnMissingCompiledFiles %]
753
754
                        [% ELSE %]
755
                            <p>No warnings.</p>
756
                        [% END # /IF warnRequireChoosingExistingAuthority... %]
757
                    [% END # /WRAPPER tab_item sysinfo %]
758
759
                    [% WRAPPER tab_panel tabname= "team" %]
760
                        <h2>Special thanks to the following organizations</h2>
761
                        <ul>
762
                            <li>
763
                                <a href="http://library.org.nz">Horowhenua Library Trust</a>, New Zealand, and Rosalie Blake, Head of Libraries, (Koha 1.0)
764
                            </li>
765
                            <li>
766
                                The <a href="http://www.myacpl.org/">Athens County Public Libraries</a>, Ohio, USA (MARC sponsorship, documentation, template maintenance)</li>
767
                            <li>
768
                                <a href="http://www.emn.fr">EMN (Ecole des Mines de Nantes)</a>, France (Suggestions, Stats wizards and improved LDAP sponsorship)
769
                            </li>
770
                            <li>
771
                                <a href="http://www.mines-paristech.fr">Mines Paristech (previously Ecole Nationale Supérieure des Mines de Paris)</a>, France (bibliographic frameworks, MARC authorities, OPAC basket, Serials sponsorship)
772
                            </li>
773
                            <li>
774
                                <a href="http://www.mediathequeouestprovence.fr/">SAN-Ouest Provence</a>, France (Koha 3.0 enhancements to patrons and holds modules)
775
                            </li>
776
                            <li>
777
                                The <a href="http://ccfls.org">Crawford County Federated Library System</a>, PA, USA (Koha 3.0 Zebra Integration sponsorship)</li>
778
                            <li>
779
                                The <a href="http://www.geauga.lib.oh.us/">Geauga County Public Library</a>, OH, USA (Koha 3.0 beta testing)</li>
780
                            <li>
781
                                The <a href="http://library.neu.edu.tr">Near East University</a>, Cyprus</li>
782
                            <li>
783
                                OPUS International Consultants, Wellington, New Zealand (Corporate Serials sponsorship)</li>
784
                            <li>
785
                                <a href="http://www.famfamfam.com/">famfamfam.com</a> Birmingham (UK) based developer Mark James for the famfamfam Silk iconset.
786
                            </li>
787
                            <li>
788
                                <a href="http://www.ashs.school.nz/">Albany Senior High School</a>, Auckland, New Zealand (OPAC 'star-ratings' sponsorship)
789
                            </li>
790
                        </ul>
791
792
                        <h2>Koha release teams</h2>
793
                        [% IF maintenance_team %]
794
                            <div class="row">
795
                                <div class="col-md-6">
796
                                    <h3>Koha [% short_version | html %][% IF kohaCodename %] ([% kohaCodename | html %])[% END %] release team</h3>
797
                                    [% IF development_version %]
798
                                        <p>You are running a development version of Koha</p>
799
                                    [% ELSE %]
800
                                        [% INCLUDE team t=release_team v='release' %]
801
                                    [% END %]
850
                                    [% END %]
802
                                </div>
803
804
                                <div class="col-md-6">
805
                                    <h3>Current maintenance team</h3>
806
                                    [% INCLUDE team t=maintenance_team v=short_version %]
807
                                    [% IF development_version %]
808
                                         <li><strong>Release maintainers:</strong>
809
                                            <ul>
810
                                                [% FOREACH m IN maintenance_team.maintainer %]
811
                                                <li>[% m.version | html %] - [% INCLUDE person p=m %]</li>
812
                                                  [% IF maintenance_team.maintainer_assistants %]
813
                                                    [% FOREACH ma IN maintenance_team.maintainer_assistants %]
814
                                                      [% IF ma.version == ( m.version ) %]
815
                                                      <ul><li><strong>Assistant:</strong> [% INCLUDE person p=ma %]</li></ul>
816
                                                      [% END %]
817
                                                    [% END %]
818
                                                  [% END %]
819
820
                                                  [% IF maintenance_team.maintainer_mentors %]
821
                                                    [% FOREACH mm IN maintenance_team.maintainer_mentors %]
822
                                                      [% IF m.version == ( mm.version ) %]
823
                                                      <ul><li><strong>Mentor:</strong> [% INCLUDE person p=mm %]</li></ul>
824
                                                      [% END %]
825
                                                    [% END %]
826
                                                  [% END %]
827
                                                [% END %]
828
                                            </ul>
829
                                        </li>
830
                                    [% END %]
831
                                </div>
832
                            </div>
833
                        [% ELSE %]
834
                            <div class="dialog alert">
835
                                Could not read the teams.yaml file. Please make sure &lt;docdir&gt; is correctly defined in koha-conf.xml.
836
                            </div>
837
                        [% END # /maintenance_team %]
838
839
                        <h2>Koha development team</h2>
840
                        [% IF contributors.size %]
841
                            <ul class="columns-4">
842
                                [% FOREACH contributor IN contributors %]
843
                                    <li>[% INCLUDE person p=contributor %][% INCLUDE contributions p=contributor %]</li>
844
                                [% END %]
851
                                [% END %]
845
                            </ul>
852
                            </ul>
846
                        [% ELSE %]
853
                        </li>
847
                            <div class="dialog alert">
854
                    [% END %]
848
                                Could not read the contributors.yaml file. Please make sure &lt;docdir&gt; is correctly defined in koha-conf.xml.
855
                </div>
849
                            </div>
856
            </div>
850
                        [% END # /IF contributors.size %]
857
        [% ELSE %]
851
                        <hr>
858
            <div class="dialog alert">
852
859
                Could not read the teams.yaml file. Please make sure &lt;docdir&gt; is correctly defined in koha-conf.xml.
853
                        <h2>Contributing companies and institutions</h2>
860
            </div>
854
                        <ul class="columns-4">
861
        [% END # /maintenance_team %]
855
                            <li>Allen Ginsberg Library, USA</li>
862
856
                            <li>Alingsås Public Library, Sweden</li>
863
        <h2>Koha development team</h2>
857
                            <li>American Numismatic Society, USA</li>
864
        [% IF contributors.size %]
858
                            <li>Arcadia Public Library, USA</li>
865
            <ul class="columns-4">
859
                            <li>Athens County Public Libraries, USA</li>
866
                [% FOREACH contributor IN contributors %]
860
                            <li>BdP de la Meuse, France</li>
867
                    <li>[% INCLUDE person p=contributor %][% INCLUDE contributions p=contributor %]</li>
861
                            <li>BibLibre, France</li>
862
                            <li>Biblioteca Provincial Fr. Mamerto Esquiú (Provincia Franciscana de la Asunción), Argentina</li>
863
                            <li>Bibliotheksservice-Zentrum Baden-Württemberg (BSZ), Germany</li>
864
                            <li>Briar Cliff University, USA</li>
865
                            <li>Brimbank City Council, Australia</li>
866
                            <li>Brooklyn Law School Library, USA</li>
867
                            <li>Bibliothèque Universitaire des Langues et Civilisations (<a href="https://www.bulac.fr">BULAC</a>), France</li>
868
                            <li>ByWater Solutions, USA</li>
869
                            <li>California College of the Arts, USA</li>
870
                            <li>Camden County, USA</li>
871
                            <li>Carnegie Stout Library, USA</li>
872
                            <li>Calyx, Australia</li>
873
                            <li>Catalyst IT, New Zealand</li>
874
                            <li>Central Kansas Library System (CKLS), USA</li>
875
                            <li>Centre collégial des services regroupés (CCSR), Canada</li>
876
                            <li>Cheshire Libraries, United Kingdom</li>
877
                            <li>Coeur d'Alene Public Library, USA</li>
878
                            <li>Corpus Christi Public Libraries, USA</li>
879
                            <li>C &amp; P Bibliography Services, USA</li>
880
                            <li>Dataly Tech, Greece</li>
881
                            <li>Devinim, Turkey</li>
882
                            <li>Do Space, USA</li>
883
                            <li>DoverNet, USA</li>
884
                            <li>doXulting</li>
885
                            <li>Duchesne County Library, USA</li>
886
                            <li>Escuela de Orientacion Lacaniana, Argentina</li>
887
                            <li>Fenway Library Organization, USA</li>
888
                            <li>Fargo Public Library, USA</li>
889
                            <li>Farmington Public Library, USA</li>
890
                            <li>FIT</li>
891
                            <li>Foundations Bible College &amp; Seminary, USA</li>
892
                            <li>Goethe-Institut, Germany</li>
893
                            <li>Gothenburg University Library, Sweden</li>
894
                            <li>Halland County Library, Sweden</li>
895
                            <li>Harrison Carmel Public Library, USA</li>
896
                            <li>Hauraki District Libraries, New Zealand</li>
897
                            <li>Higher Education Libraries of Massachusetts, USA</li>
898
                            <li>Hochschule für Gesundheit (hsg), Germany</li>
899
                            <li>Hotchkiss School, USA</li>
900
                            <li>Katipo Communications, New Zealand</li>
901
                            <li>KEEP SOLUTIONS, Portugal</li>
902
                            <li>KohaAloha, New Zealand</li>
903
                            <li>Koha-Suomi Oy, Finland</li>
904
                            <li>LibLime, USA</li>
905
                            <li>Library of the Józef Piłsudski Institute of America, USA</li>
906
                            <li>Libriotech, Norway</li>
907
                            <li>Los Gatos Public Library, USA</li>
908
                            <li>Lund University Library, Sweden</li>
909
                            <li>MassCat, USA</li>
910
                            <li>Middletown Township Public Library, USA</li>
911
                            <li>National Library of Finland, Finland</li>
912
                            <li>Newcastle City Council, United Kingdom</li>
913
                            <li>New Zealand Central Agencies Library, New Zealand</li>
914
                            <li>New Zealand Ministry of Education Library, New Zealand</li>
915
                            <li>North Central Regional Library (NCRL), USA</li>
916
                            <li>Northeast Kansas Library System (NEKLS), USA</li>
917
                            <li>OPUS</li>
918
                            <li>Orex Digital, Spain</li>
919
                            <li>Oslo Public Library, Norway</li>
920
                            <li>Plano Independent School, USA</li>
921
                            <li>Plant and Food Research Limited, New Zealand</li>
922
                            <li>Prosentient Systems, Australia</li>
923
                            <li>PTFS, Maryland, USA</li>
924
                            <li>PTFS Europe Ltd, United Kingdom</li>
925
                            <li>Rijksmuseum, Amsterdam, The Netherlands</li>
926
                            <li>Rolling Hills Consolidated Libraries, USA</li>
927
                            <li>Round Rock Public Library, USA</li>
928
                            <li>SAN-Ouest Provence, France</li>
929
                            <li>Sefton Council, United Kingdom</li>
930
                            <li>software.coop, United Kingdom</li>
931
                            <li>South-East Kansas Library System (SEKLS), USA</li>
932
                            <li>South Taranaki District Council, New Zealand</li>
933
                            <li>Stockholm University Library, Sweden</li>
934
                            <li>SWITCH Library Consortium, USA</li>
935
                            <li>Talking Tech, Global</li>
936
                            <li>Tamil, France</li>
937
                            <li>Theke Solutions, Argentina</li>
938
                            <li>Tulong Aklatan, Philippines</li>
939
                            <li>Uintah Library System, USA</li>
940
                            <li>Universidad de El Salvador, El Salvador</li>
941
                            <li>Universidad Empresarial Siglo 21, Argentina</li>
942
                            <li>Universidad Nacional de Córdoba, Argentina</li>
943
                            <li>Universidad ORT Uruguay</li>
944
                            <li>Université d'Aix-Marseille, France</li>
945
                            <li>Université de Lyon 3, France</li>
946
                            <li>Université de Rennes 2, France</li>
947
                            <li>Université de St Etienne, France</li>
948
                            <li>University of the Arts London, United Kingdom</li>
949
                            <li>Vaara-kirjastot, Finland</li>
950
                            <li>Vanier College, Canada</li>
951
                            <li>Vermont Organization of Koha Automated Libraries (VOKAL), USA</li>
952
                            <li>Ville de Victoriaville, Canada</li>
953
                            <li>Virginia Tech, USA</li>
954
                            <li>Washoe County Library System, USA</li>
955
                            <li>Xercode, Spain</li>
956
                        </ul>
957
958
                        <h2>Additional thanks to...</h2>
959
                        <ul>
960
                            <li>Irma Birchall</li>
961
                            <li>Rachel Hamilton-Williams (Kaitiaki from 2004 to present)</li>
962
                            <li>Stephen Hedges (early Documentation Manager)</li>
963
                            <li>Brooke Johnson</li>
964
                            <li>Jo Ransom</li>
965
                            <li>Nicholas Rosasco (Documentation Compiler)</li>
966
                            <li>Regula Sebastiao</li>
967
                        </ul>
968
                    [% END # /WRAPPER tab_item team %]
969
970
                    [% WRAPPER tab_panel tabname= "licenses" %]
971
                        <h2>Koha</h2>
972
                        <p>
973
                            This program is free software: you can redistribute it and/or modify it under the terms of the <a rel="license" href="https://www.gnu.org/licenses/gpl-3.0.html">GNU General Public License</a> as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
974
                        </p>
975
976
                        <h2>Bootstrap</h2>
977
                        <p>
978
                            <a href="https://getbootstrap.com/">Bootstrap</a>, <a href="https://glyphicons.com">Glyphicons Free</a>: <a href="https://github.com/twbs/bootstrap/blob/master/LICENSE">MIT License</a>
979
                        </p>
980
981
                        <h2>Bootstrap Icons</h2>
982
                        <p>
983
                            <a href="https://icons.getbootstrap.com/">Bootstrap Icons</a>: <a href="https://github.com/twbs/icons/blob/main/LICENSE">MIT License</a>
984
                        </p>
985
986
                        <h2>Bridge Material Type Icon Set</h2>
987
                        <p>
988
                            <a href="http://apps.carleton.edu/campus/library/bridge_icons/">Bridge Material Type Icons Project</a>: <a href="https://creativecommons.org/licenses/by-sa/2.5/">Creative Commons Attribution-ShareAlike 2.5 License</a>
989
                        </p>
990
991
                        <h2>Chocolat.js</h2>
992
                        <p>
993
                            <a href="http://chocolat.insipi.de">Chocolat.js v1.1.0</a>: <a href="https://github.com/nicolas-t/Chocolat/blob/v1.1.0/LICENSE">GNU General Public License v3.0</a>
994
                        </p>
995
996
                        <h2>CodeMirror</h2>
997
                        <p>
998
                            <a href="https://codemirror.net/">CodeMirror v5.40.2</a>: <a href="https://github.com/codemirror/codemirror5/blob/5.40.2/LICENSE">MIT License</a>
999
                        </p>
1000
1001
                        <h2>C3.js</h2>
1002
                        <p>
1003
                            <a href="https://c3js.org/">C3.js D3-based reusable chart library v0.4.11</a>: <a href="https://github.com/c3js/c3/blob/0.4.11/LICENSE">MIT Licence</a>
1004
                        </p>
1005
1006
                        <h2>CSSLint</h2>
1007
                        <p>
1008
                            <a href="">CSSLint v0.9.8</a>: <a href="https://github.com/CSSLint/csslint/blob/v0.9.8/LICENSE">License</a>
1009
                        </p>
1010
1011
                        <h2>D3</h2>
1012
                        <p>
1013
                            <a href="https://d3js.org/">D3 JavaScript library for visualizing data v3.5.17</a>: <a href="https://github.com/d3/d3/blob/v3.5.17/LICENSE">ISC Licence</a>
1014
                        </p>
1015
1016
                        <h2>DataTables</h2>
1017
                        <p>
1018
                            <a href="https://datatables.net/">DataTables v.1.10.18</a>: <a href="https://datatables.net/license/mit">MIT Licence</a>
1019
                        </p>
1020
1021
                        <h2>Day.js</h2>
1022
                        <p>
1023
                            <a href="https://day.js.org/">Day.js v1.11.2</a>: <a href="https://github.com/iamkun/dayjs/blob/v1.11.2/LICENSE">MIT License</a>
1024
                        </p>
1025
1026
                        <h2>Enquire.js</h2>
1027
                        <p>
1028
                            <a href="https://wicky.nillia.ms/enquire.js">Enquire.js v2.0.1</a>:  <a href="https://github.com/WickyNilliams/enquire.js/blob/master/LICENSE">MIT License</a>
1029
                        </p>
1030
1031
                        <h2>FamFamFam icons</h2>
1032
                        <p>
1033
                            <a href="https://web.archive.org/web/20221224123234/http://www.famfamfam.com/lab/icons/silk/">FamFamFam Silk icons</a>: <a href="https://creativecommons.org/licenses/by/2.5/">Creative Commons Attribution 2.5 License</a>
1034
                        </p>
1035
1036
                        <h2>FileSaver.js</h2>
1037
                        <p>
1038
                            <a href="https://github.com/eligrey/FileSaver.js">FileSaver.js</a>: <a href="https://github.com/eligrey/FileSaver.js/blob/master/LICENSE.md">MIT License</p>
1039
1040
                        <h2>Flatpicker</h2>
1041
                        <p>
1042
                            <a href="https://flatpickr.js.org/">Flatpickr v4.6.9</a>: <a href="https://github.com/flatpickr/flatpickr/blob/v4.6.9/LICENSE.md">MIT License</a>
1043
                        </p>
1044
1045
                        <h2>Font Awesome</h2>
1046
                        <p>
1047
                            <a href="https://fontawesome.com/">Font Awesome v6.3.0</a>: <a href="https://github.com/FortAwesome/Font-Awesome/blob/6.3.0/LICENSE.txt">Creative Commons Attribution 4.0 International License, SIL Open Font License Version 1.1, MIT License </a>
1048
                        </p>
1049
1050
                        <h2>Font Face Observer</h2>
1051
                        <p>
1052
                            <a href="https://github.com/bramstein/fontfaceobserver">Font Face Observer JavaScript library v2.0.3</a>: <a href="https://github.com/bramstein/fontfaceobserver/blob/v2.0.3/LICENSE">BSD License</a>
1053
                        </p>
1054
1055
                        <h2>GreyBox</h2>
1056
                        <p>
1057
                            <a href="https://web.archive.org/web/20160819153233/http://orangoo.com:80/labs/GreyBox">GreyBox JavaScript Library v5.54</a>: <a href="https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html">GNU Lesser General Public License, version 2.1</a>
1058
                        </p>
1059
1060
                        <h2>HC Sticky</h2>
1061
                        <p>
1062
                            <a href="https://somewebmedia.github.io/hc-sticky/">HC Sticky JavaScript library v2.2.3</a>: <a href="https://github.com/somewebmedia/hc-sticky/blob/v2.2.3/LICENSE">MIT License</a>
1063
                        </p>
1064
1065
                        <h2>Highlight</h2>
1066
                        <p>
1067
                            <a href="https://johannburkard.de/blog/programming/javascript/highlight-javascript-text-higlighting-jquery-plugin.html">Highlight jQuery Plugin v5.0</a>: MIT License
1068
                        </p>
1069
1070
                        <h2>HTMLHint</h2>
1071
                        <p>
1072
                            <a href="https://htmlhint.com/">HTMLHint v0.9.12</a>: <a href="https://github.com/htmlhint/HTMLHint/blob/v0.9.12/LICENSE.md">MIT License</a>
1073
                        </p>
1074
1075
                        <h2>Humanized Messages</h2>
1076
                        <p>
1077
                            <a href="https://code.google.com/archive/p/humanmsg/">Humanized Messages v1.0</a>: <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>
1078
                        </p>
1079
1080
                        <h2>JavaScript Cookie</h2>
1081
                        <p>
1082
                            <a href="https://github.com/js-cookie/js-cookie">JavaScript Cookie v3.0.1</a>: <a href="https://github.com/js-cookie/js-cookie/blob/v3.0.1/LICENSE">MIT License</a>
1083
                        </p>
1084
1085
                        <h2>JavaScript Diff Algorithm</h2>
1086
                        <p>
1087
                            <a href="https://johnresig.com/projects/javascript-diff-algorithm/">JavaScript Diff Algorithm</a>: <a href="https://opensource.org/license/mit/">MIT License</a>
1088
                        </p>
1089
1090
                        <h2>jQuery, jQuery Migrate, and jQuery UI</h2>
1091
                        <p>
1092
                            <a href="https://jquery.com/">jQuery v3.6.0</a>, <a href="https://github.com/jquery/jquery-migrate">jQuery Migrate</a>, <a href="https://jqueryui.com/">jQuery UI v1.13.2</a>: <a href="https://github.com/jquery/jquery/blob/3.6.0/LICENSE.txt">MIT License</a>
1093
                        </p>
1094
1095
                        <h2>jQuery Bar Rating Plugin</h2>
1096
                        <p>
1097
                            <a href="https://antennaio.github.io/jquery-bar-rating/">jQuery Bar Rating plugin v1.2.2</a>: <a href="https://github.com/antennaio/jquery-bar-rating/blob/v1.2.2/LICENSE.txt">MIT License</a>
1098
                        </p>
1099
1100
                        <h2>jQuery Emojiarea Plugin</h2>
1101
                        <p>
1102
                            <a href="https://github.com/diy/jquery-emojiarea">Emojiarea plugin for jQuery</a>: <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>
1103
                        </p>
1104
1105
                        <h2>jQuery insertAtCaret Plugin</h2>
1106
                        <p>
1107
                            jQuery insertAtCaret Plugin v1.0 by the phpMyAdmin development team: <a href="https://www.gnu.org/licenses/gpl-3.0.html">GNU General Public License</a>
1108
                        </p>
1109
1110
                        <h2>jQuery jEditable</h2>
1111
                        <p>
1112
                            <a href="https://github.com/NicolasCARPi/jquery_jeditable">jQuery jEditable</a>: <a href="https://github.com/NicolasCARPi/jquery_jeditable/blob/master/LICENSE">MIT Licence</a>
1113
                        </p>
1114
1115
                        <h2>jQuery jsTree Plugin</h2>
1116
                        <p>
1117
                            <a href="https://www.jstree.com/">jQuery jsTree Plugin v3.3.12</a>: <a href="https://github.com/vakata/jstree/blob/3.3.12/LICENSE-MIT">MIT License</a>
1118
                        </p>
1119
1120
                        <h2>jQuery Multiple Select Plugin</h2>
1121
                        <p>
1122
                            <a href="https://multiple-select.wenzhixin.net.cn/">jQuery Multiple Select plugin v1.6.0</a>: <a href="https://github.com/wenzhixin/multiple-select/blob/1.6.0/LICENSE">MIT License</a>
1123
                        </p>
1124
1125
                        <h2>jQuery TableDnD Plugin</h2>
1126
                        <p>
1127
                           <a href="https://github.com/isocra/TableDnD">Table drag and drop JQuery plugin</a>: <a href="https://github.com/isocra/TableDnD/blob/master/MIT-LICENSE.txt">MIT License</a>
1128
                        </p>
1129
1130
                        <h2>jQuery Treetable Plugin</h2>
1131
                        <p>
1132
                            <a href="https://github.com/ludo/jquery-treetable">jQuery Treetable Plugin 3.1.0</a>: <a href="https://github.com/ludo/jquery-treetable/blob/3.1.0/GPL-LICENSE.txt"> GNU General Public License v2.0</a>, <a href="https://github.com/ludo/jquery-treetable/blob/3.1.0/MIT-LICENSE.txt">MIT License</a>
1133
                        </p>
1134
1135
                        <h2>jQuery Validation Plugin</h2>
1136
                        <p>
1137
                            <a href="https://jqueryvalidation.org/">jQuery Validation Plugin v1.19.3</a>: <a href="https://github.com/jquery-validation/jquery-validation/blob/1.19.3/LICENSE.md">MIT License</a>
1138
                        </p>
1139
1140
                        <h2>JS-YAML</h2>
1141
                        <p>
1142
                            <a href="https://nodeca.github.io/js-yaml/">JS-YAML v3.13.1</a>: <a href="https://github.com/nodeca/js-yaml/blob/3.13.1/LICENSE">MIT License</a>
1143
                        </p>
1144
1145
                        <h2>JSHint</h2>
1146
                        <p>
1147
                            <a href="https://jshint.com/">JSHint v2.9.7</a>: <a href="https://github.com/jshint/jshint/blob/2.9.7/LICENSE">MIT License</a>
1148
                        </p>
1149
1150
                        <h2>JSZip</h2>
1151
                        <p>
1152
                            <a href="https://stuk.github.io/jszip/">JSZip JavaScript library v3.1.3</a>: <a href="https://github.com/Stuk/jszip/blob/v3.1.3/LICENSE.markdown">MIT License, GNU General Public License v3.0</a>
1153
                        </p>
1154
1155
                        <h2>kjua</h2>
1156
                        <p>
1157
                            <a href="https://larsjung.de/kjua/">kjua JavaScript library v0.6.0</a>: <a href="https://github.com/lrsjng/kjua/blob/v0.6.0/README.md">MIT License</a>
1158
                        </p>
1159
1160
                        <h2>Leaflet</h2>
1161
                        <p>
1162
                            <a href="https://leafletjs.com/">Leaflet JavaScript library v1.0.3</a>: <a href="https://github.com/Leaflet/Leaflet/blob/v1.0.3/LICENSE">BSD License</a>
1163
                        </p>
1164
1165
                        <h2>Noto fonts</h2>
1166
                        <p>
1167
                            <a href="https://github.com/googlei18n/noto-fonts">Noto</a>: <a href="https://github.com/notofonts/noto-fonts/blob/main/LICENSE">SIL Open Font License Version 1.1</a>
1168
                        </p>
1169
1170
                        <h2>OAI XSLT stylesheet</h2>
1171
                        <p>
1172
                           Adapted from the <a href="https://dspace.lyrasis.org/">DSpace project</a>: <a href="https://dspace.lyrasis.org/license/">BSD License</a>
1173
                        </p>
1174
1175
                        <h2>OpenAPI 2.0 schema</h2>
1176
                        <p>
1177
                            <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/schemas/v2.0/schema.json">JSON Schema for Swagger 2.0 API</a>: <a href="https://github.com/OAI/OpenAPI-Specification/tree/master/schemas/v2.0">Apache License, Version 2.0</a>, <a href="https://www.openapis.org/about">OpenAPI Initiative (OAI)</a>
1178
                        </p>
1179
1180
                        <h2>OpenJS Keyboard Shortcuts Library</h2>
1181
                        <p>
1182
                            <a href="http://www.openjs.com/scripts/events/keyboard_shortcuts/">OpenJS keyboard shortcuts library</a>: BSD License
1183
                        </p>
1184
1185
                        <h2>RequireJS</h2>
1186
                        <p>
1187
                            <a href="https://requirejs.org/">RequireJS JavaScript file and module loader v2.1.8</a>: <a href="https://github.com/requirejs/requirejs/blob/2.1.8/LICENSE">BSD License or MIT License</a>
1188
                        </p>
1189
1190
                        <h2>Select2</h2>
1191
                        <p>
1192
                            <a href="https://select2.github.io/select2/">Select2 library v4.0.13</a>: <a href="https://github.com/select2/select2/blob/4.0.13/LICENSE">Apache License, Version 2.0 or GNU General Public License v2.0</a>
1193
                        </p>
1194
1195
                        <h2>Sortable</h2>
1196
                        <p>
1197
                            <a href="https://sortablejs.github.io/Sortable/">Sortable JavaScript Library v1.15.0</a>: <a href="https://github.com/SortableJS/Sortable/blob/1.15.0/LICENSE">MIT Licence</a>
1198
                        </p>
1199
1200
                        <h2>TinyMCE WYSIWYG Editor</h2>
1201
                        <p>
1202
                            <a href="https://www.tiny.cloud/">TinyMCE WYSIWYG editor v5.9.2</a>: <a href="https://github.com/tinymce/tinymce/blob/5.9.2/LICENSE.TXT">GNU Lesser General Public License v2.1</a>
1203
                        </p>
1204
1205
                        <h2>Verovio</h2>
1206
                        <p>
1207
                            <a href="https://www.verovio.org/">Verovio</a>: <a href="https://github.com/rism-digital/verovio/blob/develop/COPYING">GNU General Public License v3.0</a>, <a href="https://github.com/rism-digital/verovio/blob/develop/COPYING.LESSER">GNU Lesser General Public License v3.0</a>
1208
                        </p>
1209
1210
                        <h2>Virtual Keyboard</h2>
1211
                        <p>
1212
                            <a href="https://mottie.github.io/Keyboard/index.html">Virtual Keyboard v1.30.1</a>: <a href="https://github.com/Mottie/Keyboard/blob/v1.30.1/LICENSE">MIT Licence</a>
1213
                        </p>
1214
1215
                    [% END # /WRAPPER tab_item licenses %]
1216
1217
                    [% WRAPPER tab_panel tabname= "translations" %]
1218
                        <h2>Translation</h2>
1219
                        <ul>
1220
                            <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.
1221
                            <li>&#4768;&#4635;&#4653;&#4763; (Amharic) Getway II Ethiopia Co. (Yohannes Mulugeta (Team Leader), Tegene Assefa, Abiyot Bayou)</li>
1222
                            <li>Armenian Tigran Zargaryan</li>
1223
                            <li>&#1041;&#1098;&#1083;&#1075;&#1072;&#1088;&#1089;&#1082;&#1080; (Bulgarian) Radoslav Kolev</li>
1224
                            <li>euskara (Basque) Fernando Berrizbeitia, the librarians of Eima Katalogoa, Tabakalera International Contemporary Culture Centre, and Nere Erkiaga</li>
1225
                            <li>&#2476;&#2494;&#2434;&#2482;&#2494; (Bengali) Parthasarathi Mukhopadhyay</li>
1226
                            <li>&#20013;&#25991; (Chinese)</li>
1227
                            <li>Hrvatski (Croatian)</li>
1228
                            <li>&#x010D;e&#353;tina (Czech)</li>
1229
                            <li>D&aelig;nsk (Danish)</li>
1230
                            <li>Nederlands-Nederland (Dutch-The Netherlands) Ronald Wijlens, Saxion University</li>
1231
                            <li>Nederlands-Belgi&euml; (Dutch-Belgium)</li>
1232
                            <li>English</li>
1233
                            <li>suomi, suomen kieli (Finnish) Pasi Korkalo</li>
1234
                            <li>Fran&ccedil;ais (French) <a href="http://www.koha-fr.org/content/lassociation-kohala">Kohala</a>, Pascale Nalon (ENSMP), and many more </li>
1235
                            <li>Galego (Galician) Ignacio Javier</li>
1236
                            <li>Deutsch (German) Friedrich zur Hellen, Robert Hillig, Katrin Fischer, Beda Szukics, Mirko Tietgen and Marc Véron</li>
1237
                            <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>
1238
                            <li>&#1506;&#1489;&#1512;&#1497;&#1514; (Hebrew)</li>
1239
                            <li>&#2361;&#2367;&#2344;&#2381;&#2342;&#2368; (Hindi)</li>
1240
                            <li>Magyar (Hungarian)Agnes Imecs</li>
1241
                            <li>Norsk Bokmål (Norwegian) Axel Bojer and Thomas Gramstad</li>
1242
                            <li>Norsk Nynorsk (Norwegian) Unni Knutsen and Marit Kristine Ådland</li>
1243
                            <li>(Indonesian)</li>
1244
                            <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>
1245
                            <li>&#26085;&#26412;&#35486; (Japanese)</li>
1246
                            <li>&#54620;&#44397;&#50612; (Korean)</li>
1247
                            <li>&#3221;&#3240;&#3277;&#3240;&#3233; (kanna&#7693;a)</li>
1248
                            <li>Latina (Latin)</li>
1249
                            <li>Lao Anousak Anthony Souphavanh</li>
1250
                            <li>M&#257;ori</li>
1251
                            <li>&#3374;&#3378;&#3375;&#3390;&#3379;&#3330; (Malayalam)</li>
1252
                            <li>&#1601;&#1575;&#1585;&#1587;&#1609; (Persian)</li>
1253
                            <li>&#2835;&#2908;&#2879;&#2822; (&#x014D;&#7771;iy&#257;)</li>
1254
                            <li>Polski (Polish)</li>
1255
                            <li>Portugu&ecirc;s (Portuguese)</li>
1256
                            <li>Rom&acirc;n&#259; (Romanian)</li>
1257
                            <li>&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081; (Russian) Victor Titarchuk and Serhij Dubyk</li>
1258
                            <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>
1259
                            <li>Svenska (Swedish)</li>
1260
                            <li>Tetun (Tetum) Karen Myers</li>
1261
                            <li>&#3616;&#3634;&#3625;&#3634;&#3652;&#3607;&#3618; (Thai)</li>
1262
                            <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>
1263
                            <li>&#1575;&#1585;&#1583;&#1608;(Urdu) Ata ur Rehman</li>
1264
                            <li>&#1059;&#1082;&#1088;&#1072;&#1111;&#1085;&#1089;&#1100;&#1082;&#1072; (Ukrainian) Victor Titarchuk and Serhij Dubyk</li>
1265
                        </ul>
1266
                    [% END # /WRAPPER tab_item translations %]
1267
1268
                    [% WRAPPER tab_panel tabname= "history" %]
1269
                        <h2>Koha history timeline</h2>
1270
                        [% IF ! timeline_read_error %]
1271
                            <table style="cursor:pointer">
1272
                                <thead>
1273
                                    <tr>
1274
                                        <td  style="font-weight:bold;" >Date</td>
1275
                                        <td  style="font-weight:bold;" >Description</td>
1276
                                    </tr>
1277
                                </thead>
1278
                                [% FOREACH tabl IN table2 %]
1279
                                    <tr class="[% loop.parity | html %]">
1280
                                        [% FOREACH ro IN tabl.row2 %]
1281
                                            <td>[% ro.date | html %]</td>
1282
                                            <td>[% ro.desc | html %]</td>
1283
                                        [% END %]
1284
                                    </tr>
1285
                                [% END %]
1286
                            </table>
1287
                        [% ELSE %]
1288
                            <div class="dialog alert">
1289
                                Could not read the history.txt file. Please make sure &lt;docdir&gt; is correctly defined in koha-conf.xml.
1290
                            </div>
1291
                        [% END %]
1292
                    [% END # /WRAPPER tab_item history %]
1293
1294
                    [% WRAPPER tab_panel tabname= "dedications" %]
1295
                        <h2>22.11</h2>
1296
                        <p>
1297
                            The Koha Community would like to dedicate the release of Koha 22.11 to Rosalie Blake.
1298
                        </p>
1299
                        <p>
1300
                            Rosalie was the Head Librarian at Horowhenua Library Trust when Koha was started and without her Koha
1301
                            would not exist. She was an inspiring leader and innovator and took the risk of her career entrusting
1302
                            Chris, Joanne, Rachel and Simon to deliver the original project that became the international sensation
1303
                            we all know and love.
1304
                        </p>
1305
                        <p>
1306
                            She was also a practicing Justice of the Peace, a stalwart of the Levin Pottery Club and much loved
1307
                            mother of Simon and Jeremy, and grandmother of Ben, Toby, Anna, Charlotte and Billy.
1308
                        </p>
1309
                    [% END # /WRAPPER tab_item dedications %]
1310
                [% END %]
868
                [% END %]
1311
            [% END # /WRAPPER abouttabs %]
869
            </ul>
1312
        </div> <!-- /.col-md-12 -->
870
        [% ELSE %]
1313
    </div> <!-- /.row -->
871
            <div class="dialog alert">
872
                Could not read the contributors.yaml file. Please make sure &lt;docdir&gt; is correctly defined in koha-conf.xml.
873
            </div>
874
        [% END # /IF contributors.size %]
875
        <hr>
876
877
        <h2>Contributing companies and institutions</h2>
878
        <ul class="columns-4">
879
            <li>Allen Ginsberg Library, USA</li>
880
            <li>Alingsås Public Library, Sweden</li>
881
            <li>American Numismatic Society, USA</li>
882
            <li>Arcadia Public Library, USA</li>
883
            <li>Athens County Public Libraries, USA</li>
884
            <li>BdP de la Meuse, France</li>
885
            <li>BibLibre, France</li>
886
            <li>Biblioteca Provincial Fr. Mamerto Esquiú (Provincia Franciscana de la Asunción), Argentina</li>
887
            <li>Bibliotheksservice-Zentrum Baden-Württemberg (BSZ), Germany</li>
888
            <li>Briar Cliff University, USA</li>
889
            <li>Brimbank City Council, Australia</li>
890
            <li>Brooklyn Law School Library, USA</li>
891
            <li>Bibliothèque Universitaire des Langues et Civilisations (<a href="https://www.bulac.fr">BULAC</a>), France</li>
892
            <li>ByWater Solutions, USA</li>
893
            <li>California College of the Arts, USA</li>
894
            <li>Camden County, USA</li>
895
            <li>Carnegie Stout Library, USA</li>
896
            <li>Calyx, Australia</li>
897
            <li>Catalyst IT, New Zealand</li>
898
            <li>Central Kansas Library System (CKLS), USA</li>
899
            <li>Centre collégial des services regroupés (CCSR), Canada</li>
900
            <li>Cheshire Libraries, United Kingdom</li>
901
            <li>Coeur d'Alene Public Library, USA</li>
902
            <li>Corpus Christi Public Libraries, USA</li>
903
            <li>C &amp; P Bibliography Services, USA</li>
904
            <li>Dataly Tech, Greece</li>
905
            <li>Devinim, Turkey</li>
906
            <li>Do Space, USA</li>
907
            <li>DoverNet, USA</li>
908
            <li>doXulting</li>
909
            <li>Duchesne County Library, USA</li>
910
            <li>Escuela de Orientacion Lacaniana, Argentina</li>
911
            <li>Fenway Library Organization, USA</li>
912
            <li>Fargo Public Library, USA</li>
913
            <li>Farmington Public Library, USA</li>
914
            <li>FIT</li>
915
            <li>Foundations Bible College &amp; Seminary, USA</li>
916
            <li>Goethe-Institut, Germany</li>
917
            <li>Gothenburg University Library, Sweden</li>
918
            <li>Halland County Library, Sweden</li>
919
            <li>Harrison Carmel Public Library, USA</li>
920
            <li>Hauraki District Libraries, New Zealand</li>
921
            <li>Higher Education Libraries of Massachusetts, USA</li>
922
            <li>Hochschule für Gesundheit (hsg), Germany</li>
923
            <li>Hotchkiss School, USA</li>
924
            <li>Katipo Communications, New Zealand</li>
925
            <li>KEEP SOLUTIONS, Portugal</li>
926
            <li>KohaAloha, New Zealand</li>
927
            <li>Koha-Suomi Oy, Finland</li>
928
            <li>LibLime, USA</li>
929
            <li>Library of the Józef Piłsudski Institute of America, USA</li>
930
            <li>Libriotech, Norway</li>
931
            <li>Los Gatos Public Library, USA</li>
932
            <li>Lund University Library, Sweden</li>
933
            <li>MassCat, USA</li>
934
            <li>Middletown Township Public Library, USA</li>
935
            <li>National Library of Finland, Finland</li>
936
            <li>Newcastle City Council, United Kingdom</li>
937
            <li>New Zealand Central Agencies Library, New Zealand</li>
938
            <li>New Zealand Ministry of Education Library, New Zealand</li>
939
            <li>North Central Regional Library (NCRL), USA</li>
940
            <li>Northeast Kansas Library System (NEKLS), USA</li>
941
            <li>OPUS</li>
942
            <li>Orex Digital, Spain</li>
943
            <li>Oslo Public Library, Norway</li>
944
            <li>Plano Independent School, USA</li>
945
            <li>Plant and Food Research Limited, New Zealand</li>
946
            <li>Prosentient Systems, Australia</li>
947
            <li>PTFS, Maryland, USA</li>
948
            <li>PTFS Europe Ltd, United Kingdom</li>
949
            <li>Rijksmuseum, Amsterdam, The Netherlands</li>
950
            <li>Rolling Hills Consolidated Libraries, USA</li>
951
            <li>Round Rock Public Library, USA</li>
952
            <li>SAN-Ouest Provence, France</li>
953
            <li>Sefton Council, United Kingdom</li>
954
            <li>software.coop, United Kingdom</li>
955
            <li>South-East Kansas Library System (SEKLS), USA</li>
956
            <li>South Taranaki District Council, New Zealand</li>
957
            <li>Stockholm University Library, Sweden</li>
958
            <li>SWITCH Library Consortium, USA</li>
959
            <li>Talking Tech, Global</li>
960
            <li>Tamil, France</li>
961
            <li>Theke Solutions, Argentina</li>
962
            <li>Tulong Aklatan, Philippines</li>
963
            <li>Uintah Library System, USA</li>
964
            <li>Universidad de El Salvador, El Salvador</li>
965
            <li>Universidad Empresarial Siglo 21, Argentina</li>
966
            <li>Universidad Nacional de Córdoba, Argentina</li>
967
            <li>Universidad ORT Uruguay</li>
968
            <li>Université d'Aix-Marseille, France</li>
969
            <li>Université de Lyon 3, France</li>
970
            <li>Université de Rennes 2, France</li>
971
            <li>Université de St Etienne, France</li>
972
            <li>University of the Arts London, United Kingdom</li>
973
            <li>Vaara-kirjastot, Finland</li>
974
            <li>Vanier College, Canada</li>
975
            <li>Vermont Organization of Koha Automated Libraries (VOKAL), USA</li>
976
            <li>Ville de Victoriaville, Canada</li>
977
            <li>Virginia Tech, USA</li>
978
            <li>Washoe County Library System, USA</li>
979
            <li>Xercode, Spain</li>
980
        </ul>
981
982
        <h2>Additional thanks to...</h2>
983
        <ul>
984
            <li>Irma Birchall</li>
985
            <li>Rachel Hamilton-Williams (Kaitiaki from 2004 to present)</li>
986
            <li>Stephen Hedges (early Documentation Manager)</li>
987
            <li>Brooke Johnson</li>
988
            <li>Jo Ransom</li>
989
            <li>Nicholas Rosasco (Documentation Compiler)</li>
990
            <li>Regula Sebastiao</li>
991
        </ul>
992
    [% END # tab=team %]
993
[% END %]
1314
994
1315
[% MACRO jsinclude BLOCK %]
995
[% BLOCK licenses_panel %]
1316
    <script>
996
    [% WRAPPER tab_panel tabname= "licenses" bt_active = 1 %]
1317
        $(document).ready(function(){
997
        <h2>Koha</h2>
1318
            selectBsTabByHash( "abouttabs" );
998
        <p>
1319
        });
999
            This program is free software: you can redistribute it and/or modify it under the terms of the <a rel="license" href="https://www.gnu.org/licenses/gpl-3.0.html">GNU General Public License</a> as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
1320
    </script>
1000
        </p>
1001
1002
        <h2>Bootstrap</h2>
1003
        <p>
1004
            <a href="https://getbootstrap.com/">Bootstrap</a>, <a href="https://glyphicons.com">Glyphicons Free</a>: <a href="https://github.com/twbs/bootstrap/blob/master/LICENSE">MIT License</a>
1005
        </p>
1006
1007
        <h2>Bootstrap Icons</h2>
1008
        <p>
1009
            <a href="https://icons.getbootstrap.com/">Bootstrap Icons</a>: <a href="https://github.com/twbs/icons/blob/main/LICENSE">MIT License</a>
1010
        </p>
1011
1012
        <h2>Bridge Material Type Icon Set</h2>
1013
        <p>
1014
            <a href="http://apps.carleton.edu/campus/library/bridge_icons/">Bridge Material Type Icons Project</a>: <a href="https://creativecommons.org/licenses/by-sa/2.5/">Creative Commons Attribution-ShareAlike 2.5 License</a>
1015
        </p>
1016
1017
        <h2>Chocolat.js</h2>
1018
        <p>
1019
            <a href="http://chocolat.insipi.de">Chocolat.js v1.1.0</a>: <a href="https://github.com/nicolas-t/Chocolat/blob/v1.1.0/LICENSE">GNU General Public License v3.0</a>
1020
        </p>
1021
1022
        <h2>CodeMirror</h2>
1023
        <p>
1024
            <a href="https://codemirror.net/">CodeMirror v5.40.2</a>: <a href="https://github.com/codemirror/codemirror5/blob/5.40.2/LICENSE">MIT License</a>
1025
        </p>
1026
1027
        <h2>C3.js</h2>
1028
        <p>
1029
            <a href="https://c3js.org/">C3.js D3-based reusable chart library v0.4.11</a>: <a href="https://github.com/c3js/c3/blob/0.4.11/LICENSE">MIT Licence</a>
1030
        </p>
1031
1032
        <h2>CSSLint</h2>
1033
        <p>
1034
            <a href="">CSSLint v0.9.8</a>: <a href="https://github.com/CSSLint/csslint/blob/v0.9.8/LICENSE">License</a>
1035
        </p>
1036
1037
        <h2>D3</h2>
1038
        <p>
1039
            <a href="https://d3js.org/">D3 JavaScript library for visualizing data v3.5.17</a>: <a href="https://github.com/d3/d3/blob/v3.5.17/LICENSE">ISC Licence</a>
1040
        </p>
1041
1042
        <h2>DataTables</h2>
1043
        <p>
1044
            <a href="https://datatables.net/">DataTables v.1.10.18</a>: <a href="https://datatables.net/license/mit">MIT Licence</a>
1045
        </p>
1046
1047
        <h2>Day.js</h2>
1048
        <p>
1049
            <a href="https://day.js.org/">Day.js v1.11.2</a>: <a href="https://github.com/iamkun/dayjs/blob/v1.11.2/LICENSE">MIT License</a>
1050
        </p>
1051
1052
        <h2>Enquire.js</h2>
1053
        <p>
1054
            <a href="https://wicky.nillia.ms/enquire.js">Enquire.js v2.0.1</a>:  <a href="https://github.com/WickyNilliams/enquire.js/blob/master/LICENSE">MIT License</a>
1055
        </p>
1056
1057
        <h2>FamFamFam icons</h2>
1058
        <p>
1059
            <a href="https://web.archive.org/web/20221224123234/http://www.famfamfam.com/lab/icons/silk/">FamFamFam Silk icons</a>: <a href="https://creativecommons.org/licenses/by/2.5/">Creative Commons Attribution 2.5 License</a>
1060
        </p>
1061
1062
        <h2>FileSaver.js</h2>
1063
        <p>
1064
            <a href="https://github.com/eligrey/FileSaver.js">FileSaver.js</a>: <a href="https://github.com/eligrey/FileSaver.js/blob/master/LICENSE.md">MIT License</p>
1065
1066
        <h2>Flatpicker</h2>
1067
        <p>
1068
            <a href="https://flatpickr.js.org/">Flatpickr v4.6.9</a>: <a href="https://github.com/flatpickr/flatpickr/blob/v4.6.9/LICENSE.md">MIT License</a>
1069
        </p>
1070
1071
        <h2>Font Awesome</h2>
1072
        <p>
1073
            <a href="https://fontawesome.com/">Font Awesome v6.3.0</a>: <a href="https://github.com/FortAwesome/Font-Awesome/blob/6.3.0/LICENSE.txt">Creative Commons Attribution 4.0 International License, SIL Open Font License Version 1.1, MIT License </a>
1074
        </p>
1075
1076
        <h2>Font Face Observer</h2>
1077
        <p>
1078
            <a href="https://github.com/bramstein/fontfaceobserver">Font Face Observer JavaScript library v2.0.3</a>: <a href="https://github.com/bramstein/fontfaceobserver/blob/v2.0.3/LICENSE">BSD License</a>
1079
        </p>
1080
1081
        <h2>GreyBox</h2>
1082
        <p>
1083
            <a href="https://web.archive.org/web/20160819153233/http://orangoo.com:80/labs/GreyBox">GreyBox JavaScript Library v5.54</a>: <a href="https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html">GNU Lesser General Public License, version 2.1</a>
1084
        </p>
1085
1086
        <h2>HC Sticky</h2>
1087
        <p>
1088
            <a href="https://somewebmedia.github.io/hc-sticky/">HC Sticky JavaScript library v2.2.3</a>: <a href="https://github.com/somewebmedia/hc-sticky/blob/v2.2.3/LICENSE">MIT License</a>
1089
        </p>
1090
1091
        <h2>Highlight</h2>
1092
        <p>
1093
            <a href="https://johannburkard.de/blog/programming/javascript/highlight-javascript-text-higlighting-jquery-plugin.html">Highlight jQuery Plugin v5.0</a>: MIT License
1094
        </p>
1095
1096
        <h2>HTMLHint</h2>
1097
        <p>
1098
            <a href="https://htmlhint.com/">HTMLHint v0.9.12</a>: <a href="https://github.com/htmlhint/HTMLHint/blob/v0.9.12/LICENSE.md">MIT License</a>
1099
        </p>
1100
1101
        <h2>Humanized Messages</h2>
1102
        <p>
1103
            <a href="https://code.google.com/archive/p/humanmsg/">Humanized Messages v1.0</a>: <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>
1104
        </p>
1105
1106
        <h2>JavaScript Cookie</h2>
1107
        <p>
1108
            <a href="https://github.com/js-cookie/js-cookie">JavaScript Cookie v3.0.1</a>: <a href="https://github.com/js-cookie/js-cookie/blob/v3.0.1/LICENSE">MIT License</a>
1109
        </p>
1110
1111
        <h2>JavaScript Diff Algorithm</h2>
1112
        <p>
1113
            <a href="https://johnresig.com/projects/javascript-diff-algorithm/">JavaScript Diff Algorithm</a>: <a href="https://opensource.org/license/mit/">MIT License</a>
1114
        </p>
1115
1116
        <h2>jQuery, jQuery Migrate, and jQuery UI</h2>
1117
        <p>
1118
            <a href="https://jquery.com/">jQuery v3.6.0</a>, <a href="https://github.com/jquery/jquery-migrate">jQuery Migrate</a>, <a href="https://jqueryui.com/">jQuery UI v1.13.2</a>: <a href="https://github.com/jquery/jquery/blob/3.6.0/LICENSE.txt">MIT License</a>
1119
        </p>
1120
1121
        <h2>jQuery Bar Rating Plugin</h2>
1122
        <p>
1123
            <a href="https://antennaio.github.io/jquery-bar-rating/">jQuery Bar Rating plugin v1.2.2</a>: <a href="https://github.com/antennaio/jquery-bar-rating/blob/v1.2.2/LICENSE.txt">MIT License</a>
1124
        </p>
1125
1126
        <h2>jQuery Emojiarea Plugin</h2>
1127
        <p>
1128
            <a href="https://github.com/diy/jquery-emojiarea">Emojiarea plugin for jQuery</a>: <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>
1129
        </p>
1130
1131
        <h2>jQuery insertAtCaret Plugin</h2>
1132
        <p>
1133
            jQuery insertAtCaret Plugin v1.0 by the phpMyAdmin development team: <a href="https://www.gnu.org/licenses/gpl-3.0.html">GNU General Public License</a>
1134
        </p>
1135
1136
        <h2>jQuery jEditable</h2>
1137
        <p>
1138
            <a href="https://github.com/NicolasCARPi/jquery_jeditable">jQuery jEditable</a>: <a href="https://github.com/NicolasCARPi/jquery_jeditable/blob/master/LICENSE">MIT Licence</a>
1139
        </p>
1140
1141
        <h2>jQuery jsTree Plugin</h2>
1142
        <p>
1143
            <a href="https://www.jstree.com/">jQuery jsTree Plugin v3.3.12</a>: <a href="https://github.com/vakata/jstree/blob/3.3.12/LICENSE-MIT">MIT License</a>
1144
        </p>
1145
1146
        <h2>jQuery Multiple Select Plugin</h2>
1147
        <p>
1148
            <a href="https://multiple-select.wenzhixin.net.cn/">jQuery Multiple Select plugin v1.6.0</a>: <a href="https://github.com/wenzhixin/multiple-select/blob/1.6.0/LICENSE">MIT License</a>
1149
        </p>
1150
1151
        <h2>jQuery TableDnD Plugin</h2>
1152
        <p>
1153
            <a href="https://github.com/isocra/TableDnD">Table drag and drop JQuery plugin</a>: <a href="https://github.com/isocra/TableDnD/blob/master/MIT-LICENSE.txt">MIT License</a>
1154
        </p>
1155
1156
        <h2>jQuery Treetable Plugin</h2>
1157
        <p>
1158
            <a href="https://github.com/ludo/jquery-treetable">jQuery Treetable Plugin 3.1.0</a>: <a href="https://github.com/ludo/jquery-treetable/blob/3.1.0/GPL-LICENSE.txt"> GNU General Public License v2.0</a>, <a href="https://github.com/ludo/jquery-treetable/blob/3.1.0/MIT-LICENSE.txt">MIT License</a>
1159
        </p>
1160
1161
        <h2>jQuery Validation Plugin</h2>
1162
        <p>
1163
            <a href="https://jqueryvalidation.org/">jQuery Validation Plugin v1.19.3</a>: <a href="https://github.com/jquery-validation/jquery-validation/blob/1.19.3/LICENSE.md">MIT License</a>
1164
        </p>
1165
1166
        <h2>JS-YAML</h2>
1167
        <p>
1168
            <a href="https://nodeca.github.io/js-yaml/">JS-YAML v3.13.1</a>: <a href="https://github.com/nodeca/js-yaml/blob/3.13.1/LICENSE">MIT License</a>
1169
        </p>
1170
1171
        <h2>JSHint</h2>
1172
        <p>
1173
            <a href="https://jshint.com/">JSHint v2.9.7</a>: <a href="https://github.com/jshint/jshint/blob/2.9.7/LICENSE">MIT License</a>
1174
        </p>
1175
1176
        <h2>JSZip</h2>
1177
        <p>
1178
            <a href="https://stuk.github.io/jszip/">JSZip JavaScript library v3.1.3</a>: <a href="https://github.com/Stuk/jszip/blob/v3.1.3/LICENSE.markdown">MIT License, GNU General Public License v3.0</a>
1179
        </p>
1180
1181
        <h2>kjua</h2>
1182
        <p>
1183
            <a href="https://larsjung.de/kjua/">kjua JavaScript library v0.6.0</a>: <a href="https://github.com/lrsjng/kjua/blob/v0.6.0/README.md">MIT License</a>
1184
        </p>
1185
1186
        <h2>Leaflet</h2>
1187
        <p>
1188
            <a href="https://leafletjs.com/">Leaflet JavaScript library v1.0.3</a>: <a href="https://github.com/Leaflet/Leaflet/blob/v1.0.3/LICENSE">BSD License</a>
1189
        </p>
1190
1191
        <h2>Noto fonts</h2>
1192
        <p>
1193
            <a href="https://github.com/googlei18n/noto-fonts">Noto</a>: <a href="https://github.com/notofonts/noto-fonts/blob/main/LICENSE">SIL Open Font License Version 1.1</a>
1194
        </p>
1195
1196
        <h2>OAI XSLT stylesheet</h2>
1197
        <p>
1198
            Adapted from the <a href="https://dspace.lyrasis.org/">DSpace project</a>: <a href="https://dspace.lyrasis.org/license/">BSD License</a>
1199
        </p>
1200
1201
        <h2>OpenAPI 2.0 schema</h2>
1202
        <p>
1203
            <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/schemas/v2.0/schema.json">JSON Schema for Swagger 2.0 API</a>: <a href="https://github.com/OAI/OpenAPI-Specification/tree/master/schemas/v2.0">Apache License, Version 2.0</a>, <a href="https://www.openapis.org/about">OpenAPI Initiative (OAI)</a>
1204
        </p>
1205
1206
        <h2>OpenJS Keyboard Shortcuts Library</h2>
1207
        <p>
1208
            <a href="http://www.openjs.com/scripts/events/keyboard_shortcuts/">OpenJS keyboard shortcuts library</a>: BSD License
1209
        </p>
1210
1211
        <h2>RequireJS</h2>
1212
        <p>
1213
            <a href="https://requirejs.org/">RequireJS JavaScript file and module loader v2.1.8</a>: <a href="https://github.com/requirejs/requirejs/blob/2.1.8/LICENSE">BSD License or MIT License</a>
1214
        </p>
1215
1216
        <h2>Select2</h2>
1217
        <p>
1218
            <a href="https://select2.github.io/select2/">Select2 library v4.0.13</a>: <a href="https://github.com/select2/select2/blob/4.0.13/LICENSE">Apache License, Version 2.0 or GNU General Public License v2.0</a>
1219
        </p>
1220
1221
        <h2>Sortable</h2>
1222
        <p>
1223
            <a href="https://sortablejs.github.io/Sortable/">Sortable JavaScript Library v1.15.0</a>: <a href="https://github.com/SortableJS/Sortable/blob/1.15.0/LICENSE">MIT Licence</a>
1224
        </p>
1225
1226
        <h2>TinyMCE WYSIWYG Editor</h2>
1227
        <p>
1228
            <a href="https://www.tiny.cloud/">TinyMCE WYSIWYG editor v5.9.2</a>: <a href="https://github.com/tinymce/tinymce/blob/5.9.2/LICENSE.TXT">GNU Lesser General Public License v2.1</a>
1229
        </p>
1230
1231
        <h2>Verovio</h2>
1232
        <p>
1233
            <a href="https://www.verovio.org/">Verovio</a>: <a href="https://github.com/rism-digital/verovio/blob/develop/COPYING">GNU General Public License v3.0</a>, <a href="https://github.com/rism-digital/verovio/blob/develop/COPYING.LESSER">GNU Lesser General Public License v3.0</a>
1234
        </p>
1235
1236
        <h2>Virtual Keyboard</h2>
1237
        <p>
1238
            <a href="https://mottie.github.io/Keyboard/index.html">Virtual Keyboard v1.30.1</a>: <a href="https://github.com/Mottie/Keyboard/blob/v1.30.1/LICENSE">MIT Licence</a>
1239
        </p>
1240
1241
    [% END # tab=licenses %]
1321
[% END %]
1242
[% END %]
1322
1243
1323
<!-- the main div is closed in intranet-bottom.inc -->
1244
[% BLOCK translations_panel %]
1324
[% INCLUDE 'intranet-bottom.inc' %]
1245
    [% WRAPPER tab_panel tabname= "translations" bt_active = 1 %]
1246
        <h2>Translation</h2>
1247
        <ul>
1248
            <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.
1249
            <li>&#4768;&#4635;&#4653;&#4763; (Amharic) Getway II Ethiopia Co. (Yohannes Mulugeta (Team Leader), Tegene Assefa, Abiyot Bayou)</li>
1250
            <li>Armenian Tigran Zargaryan</li>
1251
            <li>&#1041;&#1098;&#1083;&#1075;&#1072;&#1088;&#1089;&#1082;&#1080; (Bulgarian) Radoslav Kolev</li>
1252
            <li>euskara (Basque) Fernando Berrizbeitia, the librarians of Eima Katalogoa, Tabakalera International Contemporary Culture Centre, and Nere Erkiaga</li>
1253
            <li>&#2476;&#2494;&#2434;&#2482;&#2494; (Bengali) Parthasarathi Mukhopadhyay</li>
1254
            <li>&#20013;&#25991; (Chinese)</li>
1255
            <li>Hrvatski (Croatian)</li>
1256
            <li>&#x010D;e&#353;tina (Czech)</li>
1257
            <li>D&aelig;nsk (Danish)</li>
1258
            <li>Nederlands-Nederland (Dutch-The Netherlands) Ronald Wijlens, Saxion University</li>
1259
            <li>Nederlands-Belgi&euml; (Dutch-Belgium)</li>
1260
            <li>English</li>
1261
            <li>suomi, suomen kieli (Finnish) Pasi Korkalo</li>
1262
            <li>Fran&ccedil;ais (French) <a href="http://www.koha-fr.org/content/lassociation-kohala">Kohala</a>, Pascale Nalon (ENSMP), and many more </li>
1263
            <li>Galego (Galician) Ignacio Javier</li>
1264
            <li>Deutsch (German) Friedrich zur Hellen, Robert Hillig, Katrin Fischer, Beda Szukics, Mirko Tietgen and Marc Véron</li>
1265
            <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>
1266
            <li>&#1506;&#1489;&#1512;&#1497;&#1514; (Hebrew)</li>
1267
            <li>&#2361;&#2367;&#2344;&#2381;&#2342;&#2368; (Hindi)</li>
1268
            <li>Magyar (Hungarian)Agnes Imecs</li>
1269
            <li>Norsk Bokmål (Norwegian) Axel Bojer and Thomas Gramstad</li>
1270
            <li>Norsk Nynorsk (Norwegian) Unni Knutsen and Marit Kristine Ådland</li>
1271
            <li>(Indonesian)</li>
1272
            <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>
1273
            <li>&#26085;&#26412;&#35486; (Japanese)</li>
1274
            <li>&#54620;&#44397;&#50612; (Korean)</li>
1275
            <li>&#3221;&#3240;&#3277;&#3240;&#3233; (kanna&#7693;a)</li>
1276
            <li>Latina (Latin)</li>
1277
            <li>Lao Anousak Anthony Souphavanh</li>
1278
            <li>M&#257;ori</li>
1279
            <li>&#3374;&#3378;&#3375;&#3390;&#3379;&#3330; (Malayalam)</li>
1280
            <li>&#1601;&#1575;&#1585;&#1587;&#1609; (Persian)</li>
1281
            <li>&#2835;&#2908;&#2879;&#2822; (&#x014D;&#7771;iy&#257;)</li>
1282
            <li>Polski (Polish)</li>
1283
            <li>Portugu&ecirc;s (Portuguese)</li>
1284
            <li>Rom&acirc;n&#259; (Romanian)</li>
1285
            <li>&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081; (Russian) Victor Titarchuk and Serhij Dubyk</li>
1286
            <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>
1287
            <li>Svenska (Swedish)</li>
1288
            <li>Tetun (Tetum) Karen Myers</li>
1289
            <li>&#3616;&#3634;&#3625;&#3634;&#3652;&#3607;&#3618; (Thai)</li>
1290
            <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>
1291
            <li>&#1575;&#1585;&#1583;&#1608;(Urdu) Ata ur Rehman</li>
1292
            <li>&#1059;&#1082;&#1088;&#1072;&#1111;&#1085;&#1089;&#1100;&#1082;&#1072; (Ukrainian) Victor Titarchuk and Serhij Dubyk</li>
1293
        </ul>
1294
    [% END #tab=translations %]
1295
[% END %]
1296
1297
[% BLOCK history_panel %]
1298
    [% WRAPPER tab_panel tabname= "history" bt_active = 1 %]
1299
        <h2>Koha history timeline</h2>
1300
        [% IF ! timeline_read_error %]
1301
            <table style="cursor:pointer">
1302
                <thead>
1303
                    <tr>
1304
                        <td  style="font-weight:bold;" >Date</td>
1305
                        <td  style="font-weight:bold;" >Description</td>
1306
                    </tr>
1307
                </thead>
1308
                [% FOREACH tabl IN table2 %]
1309
                    <tr class="[% loop.parity | html %]">
1310
                        [% FOREACH ro IN tabl.row2 %]
1311
                            <td>[% ro.date | html %]</td>
1312
                            <td>[% ro.desc | html %]</td>
1313
                        [% END %]
1314
                    </tr>
1315
                [% END %]
1316
            </table>
1317
        [% ELSE %]
1318
            <div class="dialog alert">
1319
                Could not read the history.txt file. Please make sure &lt;docdir&gt; is correctly defined in koha-conf.xml.
1320
            </div>
1321
        [% END %]
1322
    [% END %]
1323
[% END %]
1324
1325
[% BLOCK dedications_panel %]
1326
    [% WRAPPER tab_panel tabname= "dedications" bt_active = 1 %]
1327
        <h2>22.11</h2>
1328
        <p>
1329
            The Koha Community would like to dedicate the release of Koha 22.11 to Rosalie Blake.
1330
        </p>
1331
        <p>
1332
            Rosalie was the Head Librarian at Horowhenua Library Trust when Koha was started and without her Koha
1333
            would not exist. She was an inspiring leader and innovator and took the risk of her career entrusting
1334
            Chris, Joanne, Rachel and Simon to deliver the original project that became the international sensation
1335
            we all know and love.
1336
        </p>
1337
        <p>
1338
            She was also a practicing Justice of the Peace, a stalwart of the Levin Pottery Club and much loved
1339
            mother of Simon and Jeremy, and grandmother of Ben, Toby, Anna, Charlotte and Billy.
1340
        </p>
1341
    [% END # tab=dedications %]
1342
[% END %]
1325
- 

Return to bug 32693