From 596c50a7feb9adc6bbde16ea6170f32d569bce46 Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Thu, 15 Feb 2024 13:15:09 -0100 Subject: [PATCH] Bug 32693: Update tab_panels Each tab panel's content has now been moved to its own BLOCK. Each tab panel's content is now only loaded if said tab is the one being viewed Signed-off-by: David Nind --- .../intranet-tmpl/prog/en/modules/about.tt | 2484 +++++++++-------- 1 file changed, 1251 insertions(+), 1233 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt index 65c67426da..c7b802b144 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt @@ -42,1283 +42,1301 @@ [% WRAPPER tab_item linktab = 1 tabname = "history" bt_active = tab == "history" %] Timeline [% END %] [% WRAPPER tab_item linktab = 1 tabname = "dedications" bt_active = tab == "dedications" %] Dedications [% END %] [% END %] - [% WRAPPER tab_panels %] - [% WRAPPER tab_panel tabname= "about" bt_active= 1 %] - - + [% SWITCH tab %] + [% CASE 'about' %] [% PROCESS about_panel %] + [% CASE 'perl' %] [% PROCESS perl_panel %] + [% CASE 'sysinfo' %] [% PROCESS sysinfo_panel %] + [% CASE 'team' %] [% PROCESS team_panel %] + [% CASE 'licenses' %] [% PROCESS licenses_panel %] + [% CASE 'translations' %] [% PROCESS translations_panel %] + [% CASE 'history' %] [% PROCESS history_panel %] + [% CASE 'dedications' %] [% PROCESS dedications_panel %] + [% CASE %] [% PROCESS about_panel %] + [% END %] + [% END %] + [% END # /WRAPPER abouttabs %] + + + +[% INCLUDE 'intranet-bottom.inc' %] + +[% BLOCK about_panel %] + [% WRAPPER tab_panel tabname= "about" bt_active = 1 %] +
Server information
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [% IF (is_psgi) %] + + + + + [% END %] + [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' %] + + + [% IF elasticsearch_fatal_config_error %] + + [% ELSE %] + [% IF elasticsearch_status.running %] + + [% END # /IF elasticsearch_fatal_config_error %] + + [% END %] + + + [% IF memcached_running AND is_memcached_still_active AND where_is_memcached_config == 'config_only' %] + + + + + + + + + [% IF (errZebraConnection == 10000) %] + + [% ELSIF (errZebraConnection) %] + + [% ELSE %] + + [% END %] + + + + [% IF warnConnectBroker %] + + [% ELSE %] + + [% END %] + + + + + + + [% timezone_config_class = (time_zone.config_invalid) ? 'bg-warning' : '' %] + [% timezone_env_class = (time_zone.env_invalid) ? 'bg-warning' : '' %] + + + +
Server information
Koha version: [% kohaVersion | html %][% IF kohaCodename %] [% kohaCodename | html %][% END %]
OS version ('uname -a'): [% osVersion | html %]
Perl interpreter: [% perlPath | html %]
Perl version: [% perlVersion | html %]
Perl @INC: + [% FOREACH perlIncPat IN perlIncPath %] + [% perlIncPat.perlinc | html %]
+ [% END %] +
MySQL version: [% mysqlVersion | html %]
Apache version: [% apacheVersion | html %]
PSGI: [% psgi_server | html %]
Elasticsearch: [% elasticsearch_fatal_config_error | html %] + [% ELSE %] + + [% END %] + Version: + [% elasticsearch_status.version | html %] + | + Nodes: + [% elasticsearch_status.nodes.join(' / ') | html %] + | + Status: + [% IF elasticsearch_status.running %] + running + | + Indices: + [% FOREACH index IN elasticsearch_status.indexes %] + [% index.index_name | html %] + (count: [% index.index_count | html %]) + [% UNLESS loop.last %], [% END %] + [% END %] + [% ELSE %] + not running + [% END %] +
Memcached: + [% ELSE %] + + [% END %] + Servers: + [% IF memcached_servers %] + [% memcached_servers | html %] + [% ELSE %] + undefined + [% END %] | + Namespace: + [% IF memcached_namespace %] + [% memcached_namespace | html %] + [% ELSE %] + undefined + [% END %] | + Status: + [% IF memcached_servers %] + [% IF memcached_running and is_memcached_still_active %] + running. + [% ELSE %] + not running. + [% IF is_psgi %] + Remember memcached needs to be started before Plack. + [% END %] + [% END %] + [% ELSE %] + unknown + [% END %] | + Config read from: + [% SWITCH where_is_memcached_config %] + [% CASE 'config_only' %] + koha-conf.xml + [% CASE 'ENV_only' %] + ENV Note that the right place to define the memcached config is in your $KOHA_CONF file + [% CASE 'both' %] + ENV and koha-conf.xml 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. + [% CASE # nowhere %] + Nowhere 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. + [% END %] + [% IF effective_caching_method != 'Cache::Memcached::Fast::Safe' %] + | Effective caching method: [% effective_caching_method | html %] + [% END %] +
Zebra version: [% zebraVersion | html %]
Zebra status: Zebra server seems not to be available. Is it started?Error message from Zebra: [% ( errZebraConnection ) | html %]Running
Message broker: Using SQL pollingUsing RabbitMQ
Date and time: [% current_date_and_time | $KohaDates with_hours => 1 %]
Time zone: + Used: [% time_zone.actual | html %] + [% IF time_zone.actual_bad_tz_fallback %] + (This is a fallback value due to a bad configuration) + [% END %] + | + Config: + [% IF time_zone.config != '' %] + [% time_zone.config | html %] + [% ELSE %] + Undefined + [% END %] | + Environment (TZ): + [% IF time_zone.environment != '' %] + [% time_zone.environment | html %] + [% ELSE %] + Undefined + [% END %] +
+ [% END # tab=about %] +[% END %] + +[% BLOCK perl_panel %] + [% WRAPPER tab_panel tabname= "perl" bt_active = 1 %] + + + [% FOREACH tabl IN table %] + + [% FOREACH ro IN tabl.row %] + [% IF ( ro.current ) %] + [% IF ( ro.require ) %] + + [% IF ( ro.name == '' ) %] + + [% END # /FOREACH ro %] + + [% END # /FOREACH tabl %] +
Perl modules
+ [% ELSE %] + + [% END %] + [% ELSIF ( ro.upgrade ) %] + [% IF ( ro.require ) %] + + [% ELSE %] + + [% END %] + [% ELSE %] + [% IF ( ro.name == '' ) %] + + [% ELSIF ( ro.require ) %] + + [% ELSE %] + + [% END %] + [% END # /IF ro.current %] + [% IF ( ro.name ) %] + [% ro.name | html %] + + ([% ro.reqversion | html %] + [% IF ro.maxversion %] - [% ro.maxversion | html %][% END %] + [% IF ro.excversion %][% FOR v IN ro.excversion %], ![% v | html %][% END %][% END %]) + + [% END %] + + [% ELSIF ( ro.version ) %] + [% ro.version | html %] + [% ELSE %] + Not Installed + [% END %] +
+ [% END # tab=perl %] +[% END %] + +[% BLOCK sysinfo_panel %] + [% IF Asset.css("css/staff-global.css") == "" || Asset.js("js/vue/dist/erm.js") == "" %] + [% SET warnMissingCompiledFiles = 1 %] + [% END %] + [% WRAPPER tab_panel tabname= "sysinfo" bt_active = 1 %] + [% 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 %] + [% IF ( warnDbRowFormat ) %] +

Database row format incorrect

+

Database tables with a row format other than 'DYNAMIC': [% warnDbRowFormat | html %]

+

You may experience problems upgrading to newer versions of Koha unless you update the row format for your database tables.

+

To know how to avoid this problem see the related wiki page: + Database row format +

+ [% END %] + + [% IF (warnIsRootUser) %] +

Warning regarding current user

+

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.

+

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.

+ [% END # /IF warnIsRootUser %] + + [% IF has_ai_issues %] +

Data problems

+

+ Some of your tables have problems with their auto_increment values which may lead to data loss. +

+

+ You should not ignore this warning. +

+

+ 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. +

+

To know how to avoid this problem see the related wiki page: + DBMS auto increment fix +

+ +

Problems found

+ [% IF ai_patrons %] +

Patrons

+

The following IDs exist in both tables [% "borrowers" | $HtmlTags tag="strong" %] and [% "deletedborrowers" | $HtmlTags tag="strong" %]:

+

+ [% FOR p IN ai_patrons %] + [% p.borrowernumber | html %] + [% UNLESS loop.last %], [% END %] + [% END %] +

+ [% END %] + [% IF ai_biblios %] +

Bibliographic records

+

The following IDs exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblio" | $HtmlTags tag="strong" %]:

+

+ [% FOR b IN ai_biblios %] + [% b.biblionumber | html %] + [% UNLESS loop.last %], [% END %] + [% END %] +

+ [% END %] + [% IF ai_biblioitems %] +

Bibliographic records

+

The following IDs exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblioitems" | $HtmlTags tag="strong" %]:

+

+ [% FOR b IN ai_biblioitems %] + [% b.biblioitemnumber | html %] + [% UNLESS loop.last %], [% END %] + [% END %] +

+ [% END %] + [% IF ai_items %] +

Items

+

The following IDs exist in both tables [% "items" | $HtmlTags tag="strong" %] and [% "deleteditems" | $HtmlTags tag="strong" %]:

+

+ [% FOR i IN ai_items %] + [% i.itemnumber | html %] + [% UNLESS loop.last %], [% END %] + [% END %] +

+ [% END %] + [% IF ai_checkouts %] +

Checkouts

+

The following IDs exist in both tables [% "issues" | $HtmlTags tag="strong" %] and [% "old_issues" | $HtmlTags tag="strong" %]:

+

+ [% FOR c IN ai_checkouts %] + [% c.issue_id | html %] + [% UNLESS loop.last %], [% END %] + [% END %] +

+ [% END %] + [% IF ai_holds %] +

Holds

+

The following IDs exist in both tables [% "reserves" | $HtmlTags tag="strong" %] and [% "old_reserves" | $HtmlTags tag="strong" %]:

+

+ [% FOR h IN ai_holds %] + [% h.reserve_id | html %] + [% UNLESS loop.last %], [% END %] + [% END %] +

+ [% END %] +
+ [% END # /IF has_ai_issues %] + + [% IF warnRelationships %] +

Patron relationship problems

+ [% IF bad_relationships_count %] +

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.

+ [% END # /IF bad_relationships_count %] + + [% IF wrong_relationships %] +

The following values have been used for guarantee/guarantor relationships, but do not exist in the 'borrowerRelationship' system preference:

+ +

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.

+ [% END # /IF wrong_relationships %] + [% END # /IF warnRelationships %] + + [% IF log4perl_errors %] +

Logging system does not behave correctly

+ [% FOR e IN log4perl_errors %] + [% SWITCH e %] + [% CASE 'missing_config_entry' %]There is no 'log4perl_conf' entry in the config file. + [% CASE 'cannot_read_config_file' %]The log4perl config file cannot be opened. + [% CASE 'logfile_not_writable' %]One of the logfiles listed in the config file is not writable. + [% CASE 'cannot_init_module' %]The Koha::Logger module cannot be initiated correctly (check the log file). + [% CASE %]Unknown error '[% e | html %]'. + [% END %] + [% END # /FOR e %] + [% END # /IF log4perl_errors %] + + [% IF warnConnectBroker %] +

Impossible to connect to the message broker

+ There is an error when trying to connect to the message broker (RabbitMQ), check the Koha log files. +
+ Maybe it is not installed and configured correctly? +
+ Contact your system administrator. + [% END # /IF warnConnectBroker %] + + [% 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 %] +

Warnings regarding the system configuration

+ + + [% IF (warnFastCataloging) %] + + + + + [% END %] + [% IF (warnPrefRequireChoosingExistingAuthority) %] + + + + + [% END %] + [% IF (warnPrefEasyAnalyticalRecords) %] + + + + + [% END %] + [% IF warnPrefAnonymousPatronOPACPrivacy %] + + + + + [% END %] + [% IF warnPrefAnonymousPatronAnonSuggestions %] + + + + + [% END %] + [% IF warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist %] + + + + + [% END %] + [% IF warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist %] + + + + + [% END %] + [% IF warnPrefKohaAdminEmailAddress %] + + + + + [% END %] + [% IF warnPrefOpacHiddenItems %] + + + + [% END %] + [% IF warnPrefPatronSelfRegistrationDefaultCategory %] + + [% END %] + [% IF warnXSLT %] + [% FOR p IN warnXSLT %] + + + + [% END %] + [% END %] + [% IF invalid_yesno.count %] + [% FOR p IN invalid_yesno %] - - + + + [% END %] + [% END %] + [% IF warnNoActiveCurrency %] + + + + + [% END %] + [% IF warnStatisticsFieldsError %] + + + + + [% END %] + [% IF AutoSelfCheckPatronDoesNotHaveSelfCheckPerm %] + + + + + [% END %] + [% IF AutoSelfCheckPatronHasTooManyPerm %] + + + + + [% END %] + [% IF warnNoTemplateCaching %] + + + + + [% END %] + [% IF warnI18nMissing %] + + + + + [% END %] + [% IF warnILLConfiguration %] + [% IF no_ill_backends %] - - + + + [% END %] + [% IF ill_partner_code_not_defined %] - - + + + [% END %] + [% IF ill_partner_code_no_patrons %] - - + + + [% END %] + [% IF ill_branch_not_defined %] - + + [% END %] + [% IF ill_partner_code_doesnt_exist %] - - + + + [% END %] + [% END %] + + [% IF weasyprint_missing %] + + [% END %] + + [% IF oauth2_missing_deps %] + + + + + [% END %] + [% IF bad_yaml_prefs %] + + + + + [% END %] + [% IF config_bcrypt_settings_no_set %] + + + + + [% END %] + [% IF warnHiddenBiblionumbers.size %] + + + + + [% END %] + [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' && elasticsearch_status.version.substr(0,1) < 6 %] + + + + + [% END %] +
Preferences and parameters
Warning There is no "Fast add" (FA) framework defined in administration->MARC frameworks. This disables the 'Fast cataloging' feature in cataloging/circulation.
Warning System preference 'RequireChoosingExistingAuthority' is disabled, but needs 'AutoCreateAuthorites' enabled. Otherwise catalogers can add headings that will not be linked to authorities.
Warning 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.
Error 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.
Warning 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.
Error 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.
Warning 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.
Warning System preference 'KohaAdminEmailAddress' does not contain a valid email address. Emails will not be sent.
Warning System preference 'OpacHiddenItems' generates a warning and will produce unexpected behaviors: [% warnPrefOpacHiddenItems | html %]
Warning System preference 'PatronSelfRegistration' is set, but 'PatronSelfRegistrationDefaultCategory' does not contain a valid patron category code. Patron self-registration is disabled.
Warning System preference '[% p.syspref | html %]' is '[% p.value | html %]', but the file '[% p.filename | html %]' does not exist.
Koha version: [% kohaVersion | html %][% IF kohaCodename %] [% kohaCodename | html %][% END %]Warning System preference '[% p.variable | html %]' must be '0' or '1', but is [% IF p.value.defined %]'[% p.value | html%]'[% ELSE %]NULL[% END %].
Warning No active currency is defined. Please go to Administration > Currencies and exchange rates and mark one currency as active.
Warning System preference 'StatisticsFields' contains field names not belonging to the items database table: [% warnStatisticsFieldsError | html %]
Warning + The patron used for the self checkout module at the OPAC does not have the self_check => self_checkout_module permission. +
Warning + The patron used for the self checkout module at the OPAC has too many permissions. They should only have self_check => self_checkout_module. +
Warning + You are missing the <template_cache_dir> entry in your koha-conf.xml file. + That will bring a performance boost to enable it. +
Warning + The PO directory has not been found. See the dedicated wiki page for more information. +
OS version ('uname -a'): [% osVersion | html %]Warning + The ILL module is enabled, but there are no backends available. +
Perl interpreter: [% perlPath | html %]Warning + The ILL module is enabled, but ILLPartnerCode system preference is empty. Falling back to the hardcoded 'IL'. +
Perl version: [% perlVersion | html %]Warning + The ILL module is enabled and ILLPartnerCode system preference configured, but there are no patrons in [% ill_partner_code_no_patrons | html %] category. +
Perl @INC: Warning - [% FOREACH perlIncPat IN perlIncPath %] - [% perlIncPat.perlinc | html %]
- [% END %] + The ILL module is enabled, but no 'branch' block is defined in koha-conf.xml. You must define this block before use.
MySQL version: [% mysqlVersion | html %]Warning + The ILL module is enabled, but the configured ILLPartnerCode ([% ill_partner_code_doesnt_exist | html %]) is not defined on the system. +
Warning + The weasyprint tool is not installed. +
Warning + System preference 'RESTOAuth2ClientCredentials' is set, but the required Net::OAuth2::AuthorizationServer dependency is missing. The feature is disabled. +
Warning + Some system preferences have badly formatted YAML content: [% bad_yaml_prefs.join(', ') | html %] +
Warning + System preference 'Pseudonymization' is set, but there is not 'bcrypt_settings' entry defined in the $KOHA_CONF file. +
Warning + [% FOR w IN warnHiddenBiblionumbers %] + Bibliographic framework "[% w.frameworkcode | html %]" has the biblionumber field hidden at the interface [% w.interface | html %]
+ [% END %] +
Deprecation warning + Elasticsearch version 5.x is not supported in Koha 20.11 and greater. Please upgrade your Elasticsearch cluster +
+ [% END # /IF warnPrefRequireChoosingExistingAuthority %] + + [% IF xml_config_warnings.size %] + + + [% FOREACH config_entry IN xml_config_warnings %] + [% IF config_entry.error == 'zebra_bib_index_mode_is_grs1' %] - - + + - [% IF (is_psgi) %] - - - - - [% END %] - [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' %] - - - [% IF elasticsearch_fatal_config_error %] - - [% ELSE %] - [% IF elasticsearch_status.running %] - - [% END # /IF elasticsearch_fatal_config_error %] - - [% END %] + [% ELSIF config_entry.error == 'zebra_auth_index_mode_is_grs1' %] - - [% IF memcached_running AND is_memcached_still_active AND where_is_memcached_config == 'config_only' %] - + + [% ELSIF config_entry.error == 'use_zebra_facets_entry_missing' %] - - + + + [% ELSIF config_entry.error == 'log4perl_entry_missing' %] - - [% IF (errZebraConnection == 10000) %] - - [% ELSIF (errZebraConnection) %] - - [% ELSE %] - - [% END %] + + + [% ELSIF config_entry.error == 'lockdir_entry_missing' %] - - [% IF warnConnectBroker %] - - [% ELSE %] - - [% END %] + + + [% ELSIF config_entry.error == 'lockdir_not_writable' %] - - + + + [% ELSIF config_entry.error == 'uploadpath_entry_missing' %] - [% timezone_config_class = (time_zone.config_invalid) ? 'bg-warning' : '' %] - [% timezone_env_class = (time_zone.env_invalid) ? 'bg-warning' : '' %] - + -
XML configuration file
Apache version: [% apacheVersion | html %]Warning + The <zebra_bib_index_mode> entry set to 'grs1', which is no longer supported. + Please use DOM instead. To switch follow this page of wiki: + Switching to dom indexing +
PSGI: [% psgi_server | html %]
Elasticsearch: [% elasticsearch_fatal_config_error | html %] - [% ELSE %] - - [% END %] - Version: - [% elasticsearch_status.version | html %] - | - Nodes: - [% elasticsearch_status.nodes.join(' / ') | html %] - | - Status: - [% IF elasticsearch_status.running %] - running - | - Indices: - [% FOREACH index IN elasticsearch_status.indexes %] - [% index.index_name | html %] - (count: [% index.index_count | html %]) - [% UNLESS loop.last %], [% END %] - [% END %] - [% ELSE %] - not running - [% END %] -
Memcached: - [% ELSE %] - - [% END %] - Servers: - [% IF memcached_servers %] - [% memcached_servers | html %] - [% ELSE %] - undefined - [% END %] | - Namespace: - [% IF memcached_namespace %] - [% memcached_namespace | html %] - [% ELSE %] - undefined - [% END %] | - Status: - [% IF memcached_servers %] - [% IF memcached_running and is_memcached_still_active %] - running. - [% ELSE %] - not running. - [% IF is_psgi %] - Remember memcached needs to be started before Plack. - [% END %] - [% END %] - [% ELSE %] - unknown - [% END %] | - Config read from: - [% SWITCH where_is_memcached_config %] - [% CASE 'config_only' %] - koha-conf.xml - [% CASE 'ENV_only' %] - ENV Note that the right place to define the memcached config is in your $KOHA_CONF file - [% CASE 'both' %] - ENV and koha-conf.xml 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. - [% CASE # nowhere %] - Nowhere 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. - [% END %] - [% IF effective_caching_method != 'Cache::Memcached::Fast::Safe' %] - | Effective caching method: [% effective_caching_method | html %] - [% END %] + Warning + The <zebra_auth_index_mode> entry set to 'grs1', which is no longer supported. + Please use DOM instead. To switch follow this page of wiki: + Switching to dom indexing
Zebra version: [% zebraVersion | html %]Warning + The <use_zebra_facets> entry is missing in your configuration file. Falling back + to legacy facet calculation. +
Zebra status: Zebra server seems not to be available. Is it started?Error message from Zebra: [% ( errZebraConnection ) | html %]RunningWarning + You are missing the <log4perl_conf> entry in your koha-conf.xml file. Please + add it, pointing to the log4perl.conf file for your Koha instance. +
Message broker: Using SQL pollingUsing RabbitMQWarning + You are missing the <lockdir> entry in your koha-conf.xml file. Please + add it, pointing to your Koha instance's lock dir. +
Date and time: [% current_date_and_time | $KohaDates with_hours => 1 %]Warning + The configured <lockdir> entry in your koha-conf.xml file points to a + non-writable directory ([% config_entry.lockdir | html %]). +
Time zone: Warning - Used: [% time_zone.actual | html %] - [% IF time_zone.actual_bad_tz_fallback %] - (This is a fallback value due to a bad configuration) - [% END %] - | - Config: - [% IF time_zone.config != '' %] - [% time_zone.config | html %] - [% ELSE %] - Undefined - [% END %] | - Environment (TZ): - [% IF time_zone.environment != '' %] - [% time_zone.environment | html %] - [% ELSE %] - Undefined - [% END %] + You are missing the <upload_path> entry in your koha-conf.xml file. Please + add it, pointing to the configured file upload directory for your Koha instance.
- [% END # /WRAPPER tab_item about %] - - [% WRAPPER tab_panel tabname= "perl" %] - - - [% FOREACH tabl IN table %] - - [% FOREACH ro IN tabl.row %] - [% IF ( ro.current ) %] - [% IF ( ro.require ) %] - - [% IF ( ro.name == '' ) %] - - [% END # /FOREACH ro %] - - [% END # /FOREACH tabl %] -
Perl modules
- [% ELSE %] - - [% END %] - [% ELSIF ( ro.upgrade ) %] - [% IF ( ro.require ) %] - - [% ELSE %] - - [% END %] - [% ELSE %] - [% IF ( ro.name == '' ) %] - - [% ELSIF ( ro.require ) %] - - [% ELSE %] - - [% END %] - [% END # /IF ro.current %] - [% IF ( ro.name ) %] - [% ro.name | html %] - - ([% ro.reqversion | html %] - [% IF ro.maxversion %] - [% ro.maxversion | html %][% END %] - [% IF ro.excversion %][% FOR v IN ro.excversion %], ![% v | html %][% END %][% END %]) - - [% END %] - - [% ELSIF ( ro.version ) %] - [% ro.version | html %] - [% ELSE %] - Not Installed - [% END %] -
- [% END # /WRAPPER tab_item perl %] - - [% IF Asset.css("css/staff-global.css") == "" || Asset.js("js/vue/dist/erm.js") == "" %] - [% SET warnMissingCompiledFiles = 1 %] + [% ELSIF config_entry.error == 'uploadpath_and_opacbaseurl_entry_missing' %] + + Warning + + You are missing the <upload_path> entry in your koha-conf.xml file. Please + add it, pointing to the configured file upload directory for your Koha instance. + Also note that you need to properly set the OPACBaseURL preference for the file upload plugin to work. + + + [% ELSIF config_entry.error == 'tmp_path_missing' %] + + Warning + + You are missing the <tmp_path> entry in your koha-conf.xml file. Please + add it, pointing to the configured temporary directory for your Koha instance. + The effective temporary directory is '[% config_entry.effective_tmp_dir | html %]'. + + + [% ELSIF config_entry.error == 'encryption_key_missing' %] + + Warning + + You are missing the <encryption_key> entry in your koha-conf.xml file. + Please generate a key. We recommend one of at least 32 bytes. (You might use 'pwgen 32' to do so.) + + + [% END # /IF config_entry.error %] + [% END # /FOREACH config_entry %] + + [% END # /IF xml_config_warnings.size %] + + [% IF warnIssuingRules %] + + + [% FOREACH unit IN ir_units %] + + + + + [% END # /FOREACH unit %] +
Issuing rules
Warning + 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 %]. +
+ [% END # /IF warnIssuingRules %] + + [% IF elasticsearch_has_missing %] + + + [% FOREACH index IN elasticsearch_status.indexes %] + [% IF index.missing_count %] + + + + + [% END %] [% END %] - [% WRAPPER tab_panel tabname= "sysinfo" %] - [% 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 %] - [% IF ( warnDbRowFormat ) %] -

Database row format incorrect

-

Database tables with a row format other than 'DYNAMIC': [% warnDbRowFormat | html %]

-

You may experience problems upgrading to newer versions of Koha unless you update the row format for your database tables.

-

To know how to avoid this problem see the related wiki page: - Database row format -

- [% END %] +
Records are not indexed in Elasticsearch
Warning + [% index.missing_count | html %] record(s) missing on a total of [% index.index_count | html %] in index [% index.index_name | html %]. +
+ [% END # /IF elasticsearch_has_missing %] + + [% IF warnMissingCompiledFiles %] + Error + Compiled CSS and/or JS files are not present. Please run `yarn build` to generate them. + + [% END # /IF warnMissingCompiledFiles %] + + [% ELSE %] +

No warnings.

+ [% END # /IF warnRequireChoosingExistingAuthority... %] + [% END # tab=sysinfo %] +[% END %] - [% IF (warnIsRootUser) %] -

Warning regarding current user

-

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.

-

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.

- [% END # /IF warnIsRootUser %] - - [% IF has_ai_issues %] -

Data problems

-

- Some of your tables have problems with their auto_increment values which may lead to data loss. -

-

- You should not ignore this warning. -

-

- 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. -

-

To know how to avoid this problem see the related wiki page: - DBMS auto increment fix -

- -

Problems found

- [% IF ai_patrons %] -

Patrons

-

The following IDs exist in both tables [% "borrowers" | $HtmlTags tag="strong" %] and [% "deletedborrowers" | $HtmlTags tag="strong" %]:

-

- [% FOR p IN ai_patrons %] - [% p.borrowernumber | html %] - [% UNLESS loop.last %], [% END %] - [% END %] -

- [% END %] - [% IF ai_biblios %] -

Bibliographic records

-

The following IDs exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblio" | $HtmlTags tag="strong" %]:

-

- [% FOR b IN ai_biblios %] - [% b.biblionumber | html %] - [% UNLESS loop.last %], [% END %] - [% END %] -

- [% END %] - [% IF ai_biblioitems %] -

Bibliographic records

-

The following IDs exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblioitems" | $HtmlTags tag="strong" %]:

-

- [% FOR b IN ai_biblioitems %] - [% b.biblioitemnumber | html %] - [% UNLESS loop.last %], [% END %] - [% END %] -

- [% END %] - [% IF ai_items %] -

Items

-

The following IDs exist in both tables [% "items" | $HtmlTags tag="strong" %] and [% "deleteditems" | $HtmlTags tag="strong" %]:

-

- [% FOR i IN ai_items %] - [% i.itemnumber | html %] - [% UNLESS loop.last %], [% END %] - [% END %] -

- [% END %] - [% IF ai_checkouts %] -

Checkouts

-

The following IDs exist in both tables [% "issues" | $HtmlTags tag="strong" %] and [% "old_issues" | $HtmlTags tag="strong" %]:

-

- [% FOR c IN ai_checkouts %] - [% c.issue_id | html %] - [% UNLESS loop.last %], [% END %] - [% END %] -

- [% END %] - [% IF ai_holds %] -

Holds

-

The following IDs exist in both tables [% "reserves" | $HtmlTags tag="strong" %] and [% "old_reserves" | $HtmlTags tag="strong" %]:

-

- [% FOR h IN ai_holds %] - [% h.reserve_id | html %] - [% UNLESS loop.last %], [% END %] - [% END %] -

- [% END %] -
- [% END # /IF has_ai_issues %] - - [% IF warnRelationships %] -

Patron relationship problems

- [% IF bad_relationships_count %] -

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.

- [% END # /IF bad_relationships_count %] - - [% IF wrong_relationships %] -

The following values have been used for guarantee/guarantor relationships, but do not exist in the 'borrowerRelationship' system preference:

- -

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.

- [% END # /IF wrong_relationships %] - [% END # /IF warnRelationships %] - - [% IF log4perl_errors %] -

Logging system does not behave correctly

- [% FOR e IN log4perl_errors %] - [% SWITCH e %] - [% CASE 'missing_config_entry' %]There is no 'log4perl_conf' entry in the config file. - [% CASE 'cannot_read_config_file' %]The log4perl config file cannot be opened. - [% CASE 'logfile_not_writable' %]One of the logfiles listed in the config file is not writable. - [% CASE 'cannot_init_module' %]The Koha::Logger module cannot be initiated correctly (check the log file). - [% CASE %]Unknown error '[% e | html %]'. - [% END %] - [% END # /FOR e %] - [% END # /IF log4perl_errors %] - - [% IF warnConnectBroker %] -

Impossible to connect to the message broker

- There is an error when trying to connect to the message broker (RabbitMQ), check the Koha log files. -
- Maybe it is not installed and configured correctly? -
- Contact your system administrator. - [% END # /IF warnConnectBroker %] - - [% 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 %] -

Warnings regarding the system configuration

- - - [% IF (warnFastCataloging) %] - - - - - [% END %] - [% IF (warnPrefRequireChoosingExistingAuthority) %] - - - - - [% END %] - [% IF (warnPrefEasyAnalyticalRecords) %] - - - - - [% END %] - [% IF warnPrefAnonymousPatronOPACPrivacy %] - - - - - [% END %] - [% IF warnPrefAnonymousPatronAnonSuggestions %] - - - - - [% END %] - [% IF warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist %] - - - - - [% END %] - [% IF warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist %] - - - - - [% END %] - [% IF warnPrefKohaAdminEmailAddress %] - - - - - [% END %] - [% IF warnPrefOpacHiddenItems %] - - - - [% END %] - [% IF warnPrefPatronSelfRegistrationDefaultCategory %] - - [% END %] - [% IF warnXSLT %] - [% FOR p IN warnXSLT %] - - - - [% END %] - [% END %] - [% IF invalid_yesno.count %] - [% FOR p IN invalid_yesno %] - - - - - [% END %] - [% END %] - [% IF warnNoActiveCurrency %] - - - - - [% END %] - [% IF warnStatisticsFieldsError %] - - - - - [% END %] - [% IF AutoSelfCheckPatronDoesNotHaveSelfCheckPerm %] - - - - - [% END %] - [% IF AutoSelfCheckPatronHasTooManyPerm %] - - - - - [% END %] - [% IF warnNoTemplateCaching %] - - - - - [% END %] - [% IF warnI18nMissing %] - - - - - [% END %] - [% IF warnILLConfiguration %] - [% IF no_ill_backends %] - - - - - [% END %] - [% IF ill_partner_code_not_defined %] - - - - - [% END %] - [% IF ill_partner_code_no_patrons %] - - - - - [% END %] - [% IF ill_branch_not_defined %] - - - - - [% END %] - [% IF ill_partner_code_doesnt_exist %] - - - - +[% BLOCK team_panel %] + [% WRAPPER tab_panel tabname= "team" bt_active = 1 %] +

Special thanks to the following organizations

+ + +

Koha release teams

+ [% IF maintenance_team %] +
+
+

Koha [% short_version | html %][% IF kohaCodename %] ([% kohaCodename | html %])[% END %] release team

+ [% IF development_version %] +

You are running a development version of Koha

+ [% ELSE %] + [% INCLUDE team t=release_team v='release' %] + [% END %] +
+ +
+

Current maintenance team

+ [% INCLUDE team t=maintenance_team v=short_version %] + [% IF development_version %] +
  • Release maintainers: +
      + [% FOREACH m IN maintenance_team.maintainer %] +
    • [% m.version | html %] - [% INCLUDE person p=m %]
    • + [% IF maintenance_team.maintainer_assistants %] + [% FOREACH ma IN maintenance_team.maintainer_assistants %] + [% IF ma.version == ( m.version ) %] +
      • Assistant: [% INCLUDE person p=ma %]
      [% END %] [% END %] - - [% IF weasyprint_missing %] -
  • [% END %] - [% IF oauth2_missing_deps %] - - - - - [% END %] - [% IF bad_yaml_prefs %] - - - - - [% END %] - [% IF config_bcrypt_settings_no_set %] - - - - - [% END %] - [% IF warnHiddenBiblionumbers.size %] - - - - - [% END %] - [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' && elasticsearch_status.version.substr(0,1) < 6 %] - - - - - [% END %] -
    Preferences and parameters
    Warning There is no "Fast add" (FA) framework defined in administration->MARC frameworks. This disables the 'Fast cataloging' feature in cataloging/circulation.
    Warning System preference 'RequireChoosingExistingAuthority' is disabled, but needs 'AutoCreateAuthorites' enabled. Otherwise catalogers can add headings that will not be linked to authorities.
    Warning 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.
    Error 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.
    Warning 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.
    Error 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.
    Warning 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.
    Warning System preference 'KohaAdminEmailAddress' does not contain a valid email address. Emails will not be sent.
    Warning System preference 'OpacHiddenItems' generates a warning and will produce unexpected behaviors: [% warnPrefOpacHiddenItems | html %]
    Warning System preference 'PatronSelfRegistration' is set, but 'PatronSelfRegistrationDefaultCategory' does not contain a valid patron category code. Patron self-registration is disabled.
    Warning System preference '[% p.syspref | html %]' is '[% p.value | html %]', but the file '[% p.filename | html %]' does not exist.
    Warning System preference '[% p.variable | html %]' must be '0' or '1', but is [% IF p.value.defined %]'[% p.value | html%]'[% ELSE %]NULL[% END %].
    Warning No active currency is defined. Please go to Administration > Currencies and exchange rates and mark one currency as active.
    Warning System preference 'StatisticsFields' contains field names not belonging to the items database table: [% warnStatisticsFieldsError | html %]
    Warning - The patron used for the self checkout module at the OPAC does not have the self_check => self_checkout_module permission. -
    Warning - The patron used for the self checkout module at the OPAC has too many permissions. They should only have self_check => self_checkout_module. -
    Warning - You are missing the <template_cache_dir> entry in your koha-conf.xml file. - That will bring a performance boost to enable it. -
    Warning - The PO directory has not been found. See the dedicated wiki page for more information. -
    Warning - The ILL module is enabled, but there are no backends available. -
    Warning - The ILL module is enabled, but ILLPartnerCode system preference is empty. Falling back to the hardcoded 'IL'. -
    Warning - The ILL module is enabled and ILLPartnerCode system preference configured, but there are no patrons in [% ill_partner_code_no_patrons | html %] category. -
    Warning - The ILL module is enabled, but no 'branch' block is defined in koha-conf.xml. You must define this block before use. -
    Warning - The ILL module is enabled, but the configured ILLPartnerCode ([% ill_partner_code_doesnt_exist | html %]) is not defined on the system. -
    Warning - The weasyprint tool is not installed. -
    Warning - System preference 'RESTOAuth2ClientCredentials' is set, but the required Net::OAuth2::AuthorizationServer dependency is missing. The feature is disabled. -
    Warning - Some system preferences have badly formatted YAML content: [% bad_yaml_prefs.join(', ') | html %] -
    Warning - System preference 'Pseudonymization' is set, but there is not 'bcrypt_settings' entry defined in the $KOHA_CONF file. -
    Warning - [% FOR w IN warnHiddenBiblionumbers %] - Bibliographic framework "[% w.frameworkcode | html %]" has the biblionumber field hidden at the interface [% w.interface | html %]
    - [% END %] -
    Deprecation warning - Elasticsearch version 5.x is not supported in Koha 20.11 and greater. Please upgrade your Elasticsearch cluster -
    - [% END # /IF warnPrefRequireChoosingExistingAuthority %] - - [% IF xml_config_warnings.size %] - - - [% FOREACH config_entry IN xml_config_warnings %] - [% IF config_entry.error == 'zebra_bib_index_mode_is_grs1' %] - - - - - [% ELSIF config_entry.error == 'zebra_auth_index_mode_is_grs1' %] - - - - - [% ELSIF config_entry.error == 'use_zebra_facets_entry_missing' %] - - - - - [% ELSIF config_entry.error == 'log4perl_entry_missing' %] - - - - - [% ELSIF config_entry.error == 'lockdir_entry_missing' %] - - - - - [% ELSIF config_entry.error == 'lockdir_not_writable' %] - - - - - [% ELSIF config_entry.error == 'uploadpath_entry_missing' %] - - - - - [% ELSIF config_entry.error == 'uploadpath_and_opacbaseurl_entry_missing' %] - - - - - [% ELSIF config_entry.error == 'tmp_path_missing' %] - - - - - [% ELSIF config_entry.error == 'encryption_key_missing' %] - - - - - [% END # /IF config_entry.error %] - [% END # /FOREACH config_entry %] -
    XML configuration file
    Warning - The <zebra_bib_index_mode> entry set to 'grs1', which is no longer supported. - Please use DOM instead. To switch follow this page of wiki: - Switching to dom indexing -
    Warning - The <zebra_auth_index_mode> entry set to 'grs1', which is no longer supported. - Please use DOM instead. To switch follow this page of wiki: - Switching to dom indexing -
    Warning - The <use_zebra_facets> entry is missing in your configuration file. Falling back - to legacy facet calculation. -
    Warning - You are missing the <log4perl_conf> entry in your koha-conf.xml file. Please - add it, pointing to the log4perl.conf file for your Koha instance. -
    Warning - You are missing the <lockdir> entry in your koha-conf.xml file. Please - add it, pointing to your Koha instance's lock dir. -
    Warning - The configured <lockdir> entry in your koha-conf.xml file points to a - non-writable directory ([% config_entry.lockdir | html %]). -
    Warning - You are missing the <upload_path> entry in your koha-conf.xml file. Please - add it, pointing to the configured file upload directory for your Koha instance. -
    Warning - You are missing the <upload_path> entry in your koha-conf.xml file. Please - add it, pointing to the configured file upload directory for your Koha instance. - Also note that you need to properly set the OPACBaseURL preference for the file upload plugin to work. -
    Warning - You are missing the <tmp_path> entry in your koha-conf.xml file. Please - add it, pointing to the configured temporary directory for your Koha instance. - The effective temporary directory is '[% config_entry.effective_tmp_dir | html %]'. -
    Warning - You are missing the <encryption_key> entry in your koha-conf.xml file. - Please generate a key. We recommend one of at least 32 bytes. (You might use 'pwgen 32' to do so.) -
    - [% END # /IF xml_config_warnings.size %] - - [% IF warnIssuingRules %] - - - [% FOREACH unit IN ir_units %] - - - - - [% END # /FOREACH unit %] -
    Issuing rules
    Warning - 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 %]. -
    - [% END # /IF warnIssuingRules %] - - [% IF elasticsearch_has_missing %] - - - [% FOREACH index IN elasticsearch_status.indexes %] - [% IF index.missing_count %] - - - - + [% IF maintenance_team.maintainer_mentors %] + [% FOREACH mm IN maintenance_team.maintainer_mentors %] + [% IF m.version == ( mm.version ) %] + [% END %] [% END %] -
    Records are not indexed in Elasticsearch
    Warning - [% index.missing_count | html %] record(s) missing on a total of [% index.index_count | html %] in index [% index.index_name | html %]. -
    - [% END # /IF elasticsearch_has_missing %] - - [% IF warnMissingCompiledFiles %] - Error - Compiled CSS and/or JS files are not present. Please run `yarn build` to generate them. - - [% END # /IF warnMissingCompiledFiles %] - - [% ELSE %] -

    No warnings.

    - [% END # /IF warnRequireChoosingExistingAuthority... %] - [% END # /WRAPPER tab_item sysinfo %] - - [% WRAPPER tab_panel tabname= "team" %] -

    Special thanks to the following organizations

    - - -

    Koha release teams

    - [% IF maintenance_team %] -
    -
    -

    Koha [% short_version | html %][% IF kohaCodename %] ([% kohaCodename | html %])[% END %] release team

    - [% IF development_version %] -

    You are running a development version of Koha

    - [% ELSE %] - [% INCLUDE team t=release_team v='release' %] [% END %] -
    - -
    -

    Current maintenance team

    - [% INCLUDE team t=maintenance_team v=short_version %] - [% IF development_version %] -
  • Release maintainers: -
      - [% FOREACH m IN maintenance_team.maintainer %] -
    • [% m.version | html %] - [% INCLUDE person p=m %]
    • - [% IF maintenance_team.maintainer_assistants %] - [% FOREACH ma IN maintenance_team.maintainer_assistants %] - [% IF ma.version == ( m.version ) %] -
      • Assistant: [% INCLUDE person p=ma %]
      - [% END %] - [% END %] - [% END %] - - [% IF maintenance_team.maintainer_mentors %] - [% FOREACH mm IN maintenance_team.maintainer_mentors %] - [% IF m.version == ( mm.version ) %] -
      • Mentor: [% INCLUDE person p=mm %]
      - [% END %] - [% END %] - [% END %] - [% END %] -
    -
  • - [% END %] -
    -
    - [% ELSE %] -
    - Could not read the teams.yaml file. Please make sure <docdir> is correctly defined in koha-conf.xml. -
    - [% END # /maintenance_team %] - -

    Koha development team

    - [% IF contributors.size %] - - [% ELSE %] -
    - Could not read the contributors.yaml file. Please make sure <docdir> is correctly defined in koha-conf.xml. -
    - [% END # /IF contributors.size %] -
    - -

    Contributing companies and institutions

    - - -

    Additional thanks to...

    - - [% END # /WRAPPER tab_item team %] - - [% WRAPPER tab_panel tabname= "licenses" %] -

    Koha

    -

    - This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. -

    - -

    Bootstrap

    -

    - Bootstrap, Glyphicons Free: MIT License -

    - -

    Bootstrap Icons

    -

    - Bootstrap Icons: MIT License -

    - -

    Bridge Material Type Icon Set

    -

    - Bridge Material Type Icons Project: Creative Commons Attribution-ShareAlike 2.5 License -

    - -

    Chocolat.js

    -

    - Chocolat.js v1.1.0: GNU General Public License v3.0 -

    - -

    CodeMirror

    -

    - CodeMirror v5.40.2: MIT License -

    - -

    C3.js

    -

    - C3.js D3-based reusable chart library v0.4.11: MIT Licence -

    - -

    CSSLint

    -

    - CSSLint v0.9.8: License -

    - -

    D3

    -

    - D3 JavaScript library for visualizing data v3.5.17: ISC Licence -

    - -

    DataTables

    -

    - DataTables v.1.10.18: MIT Licence -

    - -

    Day.js

    -

    - Day.js v1.11.2: MIT License -

    - -

    Enquire.js

    -

    - Enquire.js v2.0.1: MIT License -

    - -

    FamFamFam icons

    -

    - FamFamFam Silk icons: Creative Commons Attribution 2.5 License -

    - -

    FileSaver.js

    -

    - FileSaver.js: MIT License

    - -

    Flatpicker

    -

    - Flatpickr v4.6.9: MIT License -

    - -

    Font Awesome

    -

    - Font Awesome v6.3.0: Creative Commons Attribution 4.0 International License, SIL Open Font License Version 1.1, MIT License -

    - -

    Font Face Observer

    -

    - Font Face Observer JavaScript library v2.0.3: BSD License -

    - -

    GreyBox

    -

    - GreyBox JavaScript Library v5.54: GNU Lesser General Public License, version 2.1 -

    - -

    HC Sticky

    -

    - HC Sticky JavaScript library v2.2.3: MIT License -

    - -

    Highlight

    -

    - Highlight jQuery Plugin v5.0: MIT License -

    - -

    HTMLHint

    -

    - HTMLHint v0.9.12: MIT License -

    - -

    Humanized Messages

    -

    - Humanized Messages v1.0: Apache License, Version 2.0 -

    - -

    JavaScript Cookie

    -

    - JavaScript Cookie v3.0.1: MIT License -

    - -

    JavaScript Diff Algorithm

    -

    - JavaScript Diff Algorithm: MIT License -

    - -

    jQuery, jQuery Migrate, and jQuery UI

    -

    - jQuery v3.6.0, jQuery Migrate, jQuery UI v1.13.2: MIT License -

    - -

    jQuery Bar Rating Plugin

    -

    - jQuery Bar Rating plugin v1.2.2: MIT License -

    - -

    jQuery Emojiarea Plugin

    -

    - Emojiarea plugin for jQuery: Apache License, Version 2.0 -

    - -

    jQuery insertAtCaret Plugin

    -

    - jQuery insertAtCaret Plugin v1.0 by the phpMyAdmin development team: GNU General Public License -

    - -

    jQuery jEditable

    -

    - jQuery jEditable: MIT Licence -

    - -

    jQuery jsTree Plugin

    -

    - jQuery jsTree Plugin v3.3.12: MIT License -

    - -

    jQuery Multiple Select Plugin

    -

    - jQuery Multiple Select plugin v1.6.0: MIT License -

    - -

    jQuery TableDnD Plugin

    -

    - Table drag and drop JQuery plugin: MIT License -

    - -

    jQuery Treetable Plugin

    -

    - jQuery Treetable Plugin 3.1.0: GNU General Public License v2.0, MIT License -

    - -

    jQuery Validation Plugin

    -

    - jQuery Validation Plugin v1.19.3: MIT License -

    - -

    JS-YAML

    -

    - JS-YAML v3.13.1: MIT License -

    - -

    JSHint

    -

    - JSHint v2.9.7: MIT License -

    - -

    JSZip

    -

    - JSZip JavaScript library v3.1.3: MIT License, GNU General Public License v3.0 -

    - -

    kjua

    -

    - kjua JavaScript library v0.6.0: MIT License -

    - -

    Leaflet

    -

    - Leaflet JavaScript library v1.0.3: BSD License -

    - -

    Noto fonts

    -

    - Noto: SIL Open Font License Version 1.1 -

    - -

    OAI XSLT stylesheet

    -

    - Adapted from the DSpace project: BSD License -

    - -

    OpenAPI 2.0 schema

    -

    - JSON Schema for Swagger 2.0 API: Apache License, Version 2.0, OpenAPI Initiative (OAI) -

    - -

    OpenJS Keyboard Shortcuts Library

    -

    - OpenJS keyboard shortcuts library: BSD License -

    - -

    RequireJS

    -

    - RequireJS JavaScript file and module loader v2.1.8: BSD License or MIT License -

    - -

    Select2

    -

    - Select2 library v4.0.13: Apache License, Version 2.0 or GNU General Public License v2.0 -

    - -

    Sortable

    -

    - Sortable JavaScript Library v1.15.0: MIT Licence -

    - -

    TinyMCE WYSIWYG Editor

    -

    - TinyMCE WYSIWYG editor v5.9.2: GNU Lesser General Public License v2.1 -

    - -

    Verovio

    -

    - Verovio: GNU General Public License v3.0, GNU Lesser General Public License v3.0 -

    - -

    Virtual Keyboard

    -

    - Virtual Keyboard v1.30.1: MIT Licence -

    - - [% END # /WRAPPER tab_item licenses %] - - [% WRAPPER tab_panel tabname= "translations" %] -

    Translation

    - - [% END # /WRAPPER tab_item translations %] - - [% WRAPPER tab_panel tabname= "history" %] -

    Koha history timeline

    - [% IF ! timeline_read_error %] - - - - - - - - [% FOREACH tabl IN table2 %] - - [% FOREACH ro IN tabl.row2 %] - - - [% END %] - - [% END %] -
    DateDescription
    [% ro.date | html %][% ro.desc | html %]
    - [% ELSE %] -
    - Could not read the history.txt file. Please make sure <docdir> is correctly defined in koha-conf.xml. -
    - [% END %] - [% END # /WRAPPER tab_item history %] - - [% WRAPPER tab_panel tabname= "dedications" %] -

    22.11

    -

    - The Koha Community would like to dedicate the release of Koha 22.11 to Rosalie Blake. -

    -

    - Rosalie was the Head Librarian at Horowhenua Library Trust when Koha was started and without her Koha - would not exist. She was an inspiring leader and innovator and took the risk of her career entrusting - Chris, Joanne, Rachel and Simon to deliver the original project that became the international sensation - we all know and love. -

    -

    - She was also a practicing Justice of the Peace, a stalwart of the Levin Pottery Club and much loved - mother of Simon and Jeremy, and grandmother of Ben, Toby, Anna, Charlotte and Billy. -

    - [% END # /WRAPPER tab_item dedications %] + + [% END %] + + + [% ELSE %] +
    + Could not read the teams.yaml file. Please make sure <docdir> is correctly defined in koha-conf.xml. +
    + [% END # /maintenance_team %] + +

    Koha development team

    + [% IF contributors.size %] + + [% ELSE %] +
    + Could not read the contributors.yaml file. Please make sure <docdir> is correctly defined in koha-conf.xml. +
    + [% END # /IF contributors.size %] +
    + +

    Contributing companies and institutions

    + + +

    Additional thanks to...

    + + [% END # tab=team %] +[% END %] -[% MACRO jsinclude BLOCK %] - +[% BLOCK licenses_panel %] + [% WRAPPER tab_panel tabname= "licenses" bt_active = 1 %] +

    Koha

    +

    + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. +

    + +

    Bootstrap

    +

    + Bootstrap, Glyphicons Free: MIT License +

    + +

    Bootstrap Icons

    +

    + Bootstrap Icons: MIT License +

    + +

    Bridge Material Type Icon Set

    +

    + Bridge Material Type Icons Project: Creative Commons Attribution-ShareAlike 2.5 License +

    + +

    Chocolat.js

    +

    + Chocolat.js v1.1.0: GNU General Public License v3.0 +

    + +

    CodeMirror

    +

    + CodeMirror v5.40.2: MIT License +

    + +

    C3.js

    +

    + C3.js D3-based reusable chart library v0.4.11: MIT Licence +

    + +

    CSSLint

    +

    + CSSLint v0.9.8: License +

    + +

    D3

    +

    + D3 JavaScript library for visualizing data v3.5.17: ISC Licence +

    + +

    DataTables

    +

    + DataTables v.1.10.18: MIT Licence +

    + +

    Day.js

    +

    + Day.js v1.11.2: MIT License +

    + +

    Enquire.js

    +

    + Enquire.js v2.0.1: MIT License +

    + +

    FamFamFam icons

    +

    + FamFamFam Silk icons: Creative Commons Attribution 2.5 License +

    + +

    FileSaver.js

    +

    + FileSaver.js: MIT License

    + +

    Flatpicker

    +

    + Flatpickr v4.6.9: MIT License +

    + +

    Font Awesome

    +

    + Font Awesome v6.3.0: Creative Commons Attribution 4.0 International License, SIL Open Font License Version 1.1, MIT License +

    + +

    Font Face Observer

    +

    + Font Face Observer JavaScript library v2.0.3: BSD License +

    + +

    GreyBox

    +

    + GreyBox JavaScript Library v5.54: GNU Lesser General Public License, version 2.1 +

    + +

    HC Sticky

    +

    + HC Sticky JavaScript library v2.2.3: MIT License +

    + +

    Highlight

    +

    + Highlight jQuery Plugin v5.0: MIT License +

    + +

    HTMLHint

    +

    + HTMLHint v0.9.12: MIT License +

    + +

    Humanized Messages

    +

    + Humanized Messages v1.0: Apache License, Version 2.0 +

    + +

    JavaScript Cookie

    +

    + JavaScript Cookie v3.0.1: MIT License +

    + +

    JavaScript Diff Algorithm

    +

    + JavaScript Diff Algorithm: MIT License +

    + +

    jQuery, jQuery Migrate, and jQuery UI

    +

    + jQuery v3.6.0, jQuery Migrate, jQuery UI v1.13.2: MIT License +

    + +

    jQuery Bar Rating Plugin

    +

    + jQuery Bar Rating plugin v1.2.2: MIT License +

    + +

    jQuery Emojiarea Plugin

    +

    + Emojiarea plugin for jQuery: Apache License, Version 2.0 +

    + +

    jQuery insertAtCaret Plugin

    +

    + jQuery insertAtCaret Plugin v1.0 by the phpMyAdmin development team: GNU General Public License +

    + +

    jQuery jEditable

    +

    + jQuery jEditable: MIT Licence +

    + +

    jQuery jsTree Plugin

    +

    + jQuery jsTree Plugin v3.3.12: MIT License +

    + +

    jQuery Multiple Select Plugin

    +

    + jQuery Multiple Select plugin v1.6.0: MIT License +

    + +

    jQuery TableDnD Plugin

    +

    + Table drag and drop JQuery plugin: MIT License +

    + +

    jQuery Treetable Plugin

    +

    + jQuery Treetable Plugin 3.1.0: GNU General Public License v2.0, MIT License +

    + +

    jQuery Validation Plugin

    +

    + jQuery Validation Plugin v1.19.3: MIT License +

    + +

    JS-YAML

    +

    + JS-YAML v3.13.1: MIT License +

    + +

    JSHint

    +

    + JSHint v2.9.7: MIT License +

    + +

    JSZip

    +

    + JSZip JavaScript library v3.1.3: MIT License, GNU General Public License v3.0 +

    + +

    kjua

    +

    + kjua JavaScript library v0.6.0: MIT License +

    + +

    Leaflet

    +

    + Leaflet JavaScript library v1.0.3: BSD License +

    + +

    Noto fonts

    +

    + Noto: SIL Open Font License Version 1.1 +

    + +

    OAI XSLT stylesheet

    +

    + Adapted from the DSpace project: BSD License +

    + +

    OpenAPI 2.0 schema

    +

    + JSON Schema for Swagger 2.0 API: Apache License, Version 2.0, OpenAPI Initiative (OAI) +

    + +

    OpenJS Keyboard Shortcuts Library

    +

    + OpenJS keyboard shortcuts library: BSD License +

    + +

    RequireJS

    +

    + RequireJS JavaScript file and module loader v2.1.8: BSD License or MIT License +

    + +

    Select2

    +

    + Select2 library v4.0.13: Apache License, Version 2.0 or GNU General Public License v2.0 +

    + +

    Sortable

    +

    + Sortable JavaScript Library v1.15.0: MIT Licence +

    + +

    TinyMCE WYSIWYG Editor

    +

    + TinyMCE WYSIWYG editor v5.9.2: GNU Lesser General Public License v2.1 +

    + +

    Verovio

    +

    + Verovio: GNU General Public License v3.0, GNU Lesser General Public License v3.0 +

    + +

    Virtual Keyboard

    +

    + Virtual Keyboard v1.30.1: MIT Licence +

    + + [% END # tab=licenses %] [% END %] - -[% INCLUDE 'intranet-bottom.inc' %] +[% BLOCK translations_panel %] + [% WRAPPER tab_panel tabname= "translations" bt_active = 1 %] +

    Translation

    + + [% END #tab=translations %] +[% END %] + +[% BLOCK history_panel %] + [% WRAPPER tab_panel tabname= "history" bt_active = 1 %] +

    Koha history timeline

    + [% IF ! timeline_read_error %] + + + + + + + + [% FOREACH tabl IN table2 %] + + [% FOREACH ro IN tabl.row2 %] + + + [% END %] + + [% END %] +
    DateDescription
    [% ro.date | html %][% ro.desc | html %]
    + [% ELSE %] +
    + Could not read the history.txt file. Please make sure <docdir> is correctly defined in koha-conf.xml. +
    + [% END %] + [% END %] +[% END %] + +[% BLOCK dedications_panel %] + [% WRAPPER tab_panel tabname= "dedications" bt_active = 1 %] +

    22.11

    +

    + The Koha Community would like to dedicate the release of Koha 22.11 to Rosalie Blake. +

    +

    + Rosalie was the Head Librarian at Horowhenua Library Trust when Koha was started and without her Koha + would not exist. She was an inspiring leader and innovator and took the risk of her career entrusting + Chris, Joanne, Rachel and Simon to deliver the original project that became the international sensation + we all know and love. +

    +

    + She was also a practicing Justice of the Peace, a stalwart of the Levin Pottery Club and much loved + mother of Simon and Jeremy, and grandmother of Ben, Toby, Anna, Charlotte and Billy. +

    + [% END # tab=dedications %] +[% END %] \ No newline at end of file -- 2.30.2