Bugzilla – Attachment 24608 Details for
Bug 11596
Missing indexing options in koha-conf.xml should be reported
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 11596: Missing indexing options in koha-conf.xml should be reported
Bug-11596-Missing-indexing-options-in-koha-confxml.patch (text/plain), 3.51 KB, created by
Tomás Cohen Arazi (tcohen)
on 2014-01-22 14:32:35 UTC
(
hide
)
Description:
Bug 11596: Missing indexing options in koha-conf.xml should be reported
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2014-01-22 14:32:35 UTC
Size:
3.51 KB
patch
obsolete
>From 1a5fb65a6a9e76e5429339d6c6c1876740d81c3a Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@gmail.com> >Date: Wed, 22 Jan 2014 11:27:07 -0300 >Subject: [PATCH] Bug 11596: Missing indexing options in koha-conf.xml should > be reported > >To test: >- Have a clean master install >- Verify that koha-conf.xml contains valid entries for: > zebra_bib_index_mode and > zebra_auth_index_mode >- Go to More > About Koha > System information >=> No "Warnings regarding the system configuration" >- Apply the patch >- Go to More > About Koha > System information >=> No "Warnings regarding the system configuration" >- Edit your koha-conf.xml file commenting one or both indexing mode > entries. >- Go to More > About Koha > System information >=> You get "XML configuration file" warnings for each commented entry. >- Sign off :-D > >Regards >To+ > >Sponsored-by: Universidad Nacional de Cordoba >--- > about.pl | 15 +++++++++++++++ > koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 11 +++++++++++ > 2 files changed, 26 insertions(+) > >diff --git a/about.pl b/about.pl >index 6b44ea8..e23e945 100755 >--- a/about.pl >+++ b/about.pl >@@ -77,6 +77,20 @@ my $errZebraConnection = C4::Context->Zconn("biblioserver",0)->errcode(); > > my $warnIsRootUser = (! $loggedinuser); > >+my @xml_config_warnings; >+ >+if ( ! defined C4::Context->config('zebra_bib_index_mode') ) { >+ push @xml_config_warnings, { >+ error => 'zebra_bib_index_mode_warn' >+ }; >+} >+ >+if ( ! defined C4::Context->config('zebra_auth_index_mode') ) { >+ push @xml_config_warnings, { >+ error => 'zebra_auth_index_mode_warn' >+ }; >+} >+ > $template->param( > kohaVersion => $kohaVersion, > osVersion => $osVersion, >@@ -93,6 +107,7 @@ $template->param( > warnPrefAnonymousPatron => $warnPrefAnonymousPatron, > errZebraConnection => $errZebraConnection, > warnIsRootUser => $warnIsRootUser, >+ xml_config_warnings => \@xml_config_warnings > ); > > my @components = (); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >index 21db9d3..847047b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >@@ -117,6 +117,17 @@ > <tr><th scope="row"><b>Warning</b> </th><td>System preference 'OPACPrivacy' set, but AnonymousPatron preference is set to '0'. Set it to a valid borrower number if you want that this feature works correctly.</td></tr> > [% END %] > </table> >+ [% ELSIF xml_config_warnings.size %] >+ <table> >+ <caption>XML configuration file</caption> >+ [% FOREACH config_entry IN xml_config_warnings %] >+ [% IF config_entry.error == 'zebra_bib_index_mode_warn' %] >+ <tr><th scope="row"><b>Warning</b> </th><td>The <zebra_bib_index_mode> entry is missing in your configuration file. It should be set to <strong>dom</strong> or <strong>grs1</strong>. It will default to <strong>grs1</strong> but this could change in the future.</td></tr> >+ [% ELSIF config_entry.error == 'zebra_auth_index_mode_warn' %] >+ <tr><th scope="row"><b>Warning</b> </th><td>The <zebra_auth_index_mode> entry is missing in your configuration file. It should be set to <strong>dom</strong> or <strong>grs1</strong>. It will default to <strong>dom</strong> but this could change in the future.</td></tr> >+ [% END %] >+ [% END %] >+ </table> > [% ELSE %] > <p>No warnings</p> > [% END %] >-- >1.8.3.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 11596
:
24608
|
24632
|
24673
|
24674
|
24679