Bugzilla – Attachment 173757 Details for
Bug 33766
Accessibility: Fix ambiguous form field in OPAC login form
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33766: Fix ambiguous "Login" field
Bug-33766-Fix-ambiguous-Login-field.patch (text/plain), 12.25 KB, created by
Martin Renvoize (ashimema)
on 2024-10-31 07:44:27 UTC
(
hide
)
Description:
Bug 33766: Fix ambiguous "Login" field
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2024-10-31 07:44:27 UTC
Size:
12.25 KB
patch
obsolete
>From 3ba7d25cabb48f65f587deffd647ec9cfec4c49a Mon Sep 17 00:00:00 2001 >From: Paul Derscheid <paul.derscheid@lmscloud.de> >Date: Thu, 17 Aug 2023 12:31:08 +0000 >Subject: [PATCH] Bug 33766: Fix ambiguous "Login" field > >This patch introduces a new syspref 'OPACLoginLabelTextContent' which can be set >to the following values >- Cardnumber >- Username >- Cardnumber or Username > >To test: >- Check that the label for > - The masthead inc > - The opac-auth template > - The opac-main template > - The opac-password-recovery template > - The opac-registration-confirmation template > - The opac-reset-password template > - The sco-main template > reflect the changes you made to the syspref > >Signed-off-by: Matt Blenkinsop <matt.blenkinsop@ptfs-europe.com> >Signed-off-by: Owen Leonard <oleonard@myacpl.org> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > ...1y_fix_ambiguous_form-field_in_opac-auth.tt | 18 ++++++++++++++++++ > installer/data/mysql/mandatory/sysprefs.sql | 1 + > .../en/modules/admin/preferences/opac.pref | 10 ++++++++++ > .../bootstrap/en/includes/masthead.inc | 2 +- > .../bootstrap/en/modules/opac-auth.tt | 2 +- > .../bootstrap/en/modules/opac-main.tt | 2 +- > .../en/modules/opac-password-recovery.tt | 2 +- > .../modules/opac-registration-confirmation.tt | 2 +- > .../en/modules/opac-reset-password.tt | 2 +- > .../bootstrap/en/modules/sco/sco-main.tt | 2 +- > 10 files changed, 36 insertions(+), 7 deletions(-) > create mode 100755 installer/data/mysql/atomicupdate/bug_33766-a11y_fix_ambiguous_form-field_in_opac-auth.tt > >diff --git a/installer/data/mysql/atomicupdate/bug_33766-a11y_fix_ambiguous_form-field_in_opac-auth.tt b/installer/data/mysql/atomicupdate/bug_33766-a11y_fix_ambiguous_form-field_in_opac-auth.tt >new file mode 100755 >index 00000000000..3bb5322875f >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug_33766-a11y_fix_ambiguous_form-field_in_opac-auth.tt >@@ -0,0 +1,18 @@ >+use Modern::Perl; >+ >+return { >+ bug_number => "33766", >+ description => "Add syspref to determine text content of userid input field's label.", >+ up => sub { >+ my ($args) = @_; >+ my ( $dbh, $out ) = @$args{qw(dbh out)}; >+ >+ # Do you stuffs here >+ $dbh->do( >+ q{INSERT IGNORE INTO systempreferences (variable,value) VALUES ('OPACLoginLabelTextContent','Cardnumber') } >+ ); >+ >+ # sysprefs >+ say $out "Added new system preference 'OPACLoginLabelTextContent'"; >+ }, >+}; >diff --git a/installer/data/mysql/mandatory/sysprefs.sql b/installer/data/mysql/mandatory/sysprefs.sql >index 1e0000cff65..db3678fa25c 100644 >--- a/installer/data/mysql/mandatory/sysprefs.sql >+++ b/installer/data/mysql/mandatory/sysprefs.sql >@@ -512,6 +512,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('OPACLocalCoverImages','0','1','Display local cover images on OPAC search and details pages.','YesNo'), > ('OpacLocationBranchToDisplay','holding','holding|home|both','In the OPAC, under location show which branch for Location in the record details.','Choice'), > ('OpacLocationOnDetail','holding','holding|home|both|column','In the OPAC detail, display the shelving location on its own column or under a library columns.', 'Choice'), >+('OPACLoginLabelTextContent','Cardnumber',NULL,NULL,NULL), > ('OpacMaintenance','0','','If ON, enables maintenance warning in OPAC','YesNo'), > ('OPACMandatoryHoldDates', '', '|start|end|both', 'Define which hold dates are required on OPAC reserve form', 'Choice'), > ('OpacMaxItemsToDisplay','50','','Max items to display at the OPAC on a biblio detail','Integer'), >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref >index 1be562220e0..a1a78620a53 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref >@@ -181,6 +181,15 @@ OPAC: > column: "on a separate column" > - "for items on the OPAC record details page." > - "<br />Note: If 'on a separate column' is selected, you still need to enable the item_shelving_location display on the <a href='/cgi-bin/koha/admin/columns_settings.pl'>configure columns</a> administration page." >+ - >+ - Use >+ - pref: OPACLoginLabelTextContent >+ default: Cardnumber >+ choices: >+ Cardnumber: Cardnumber >+ Username: Username >+ "Cardnumber or Username": Cardnumber or Username >+ - "as the text content of the userid input field's label." > - > - pref: OPACShowMusicalInscripts > default: 0 >@@ -533,6 +542,7 @@ OPAC: > type: textarea > syntax: text/html > class: code >+ > - > - pref: OpacBrowseSearch > default: 0 >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc >index e284d1ec9b1..201a1411b9c 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc >@@ -438,7 +438,7 @@ > <input type="hidden" name="koha_login_context" value="opac" /> > <fieldset class="brief"> > <div class="local-login"> >- <label for="muserid">Login:</label><input type="text" id="muserid" name="login_userid" autocomplete="off" /> >+ <label for="muserid">[% Koha.Preference('OPACLoginLabelTextContent') | html %]:</label><input type="text" id="muserid" name="login_userid" autocomplete="off" /> > <label for="mpassword">Password:</label><input type="password" id="mpassword" name="login_password" autocomplete="off" /> > <fieldset class="action"> > <input type="hidden" name="op" value="cud-login" /> >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt >index 632dab59cd9..4d5a29154d1 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt >@@ -236,7 +236,7 @@ > <input type="hidden" name="[% INPUT.name | html %]" value="[% INPUT.value | html %]" /> > [% END %] > <div class="form-group"> >- <label for="userid">Login:</label> >+ <label for="userid">[% Koha.Preference('OPACLoginLabelTextContent') | html %]:</label> > <input class="form-control" type="text" size="25" id="userid" name="login_userid" autocomplete="off" /> > </div> > <div class="form-group"> >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt >index 211e1e1419f..762e74ac8e3 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt >@@ -200,7 +200,7 @@ > <p>If you do not have an external account, but do have a local account, you can still log in: </p> > [% END # /IF identity_providers.size %] > <div class="local-login"> >- <label for="userid">Login:</label> >+ <label for="userid">[% Koha.Preference('OPACLoginLabelTextContent') | html %]:</label> > <input class="form-control" type="text" id="userid" name="login_userid" autocomplete="off" /> > <label for="password">Password:</label> > <input class="form-control" type="password" id="password" name="login_password" autocomplete="off" /> >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-password-recovery.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-password-recovery.tt >index 1fefb279649..f3c5ef3ebe5 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-password-recovery.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-password-recovery.tt >@@ -132,7 +132,7 @@ > <p>To reset your password, enter your login or your email address.</p> > <fieldset class="brief"> > <div class="form-group"> >- <label for="username">Login:</label> >+ <label for="username">[% Koha.Preference('OPACLoginLabelTextContent') | html %]:</label> > <input class="form-control" type="text" id="username" size="40" name="username" value="[% username | html %]" /> > </div> > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-registration-confirmation.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-registration-confirmation.tt >index 6fef58e72a1..09ccc99bfd9 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-registration-confirmation.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-registration-confirmation.tt >@@ -109,7 +109,7 @@ > <input type="hidden" name="op" value="cud-login"> > <fieldset class="brief"> > <legend>Log in to your account:</legend> >- <label for="userid">Login:</label> >+ <label for="userid">[% Koha.Preference('OPACLoginLabelTextContent') | html %]:</label> > [% IF Koha.Preference('PatronSelfRegistrationPrefillForm') %] > <input class="form-control" type="text" id="userid" size="10" name="login_userid" value="[% borrower.userid | html %]" autocomplete="off" /> > [% ELSE %] >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reset-password.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reset-password.tt >index c433c72cdb1..4abd96b6f15 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reset-password.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reset-password.tt >@@ -75,7 +75,7 @@ > > <fieldset class="brief"> > <div class="form-group"> >- <label for="userid">Login:</label> >+ <label for="userid">[% Koha.Preference('OPACLoginLabelTextContent') | html %]:</label> > <input class="form-control" autocomplete="off" type="text" size="25" id="userid" name="userid" /> > </div> > <div class="form-group"> >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt >index c57c2cadffd..df6280ffe2a 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt >@@ -466,7 +466,7 @@ > <fieldset> > [% IF ( Koha.Preference('SelfCheckoutByLogin') ) %] > <legend>Log in to your account</legend> >- <label for="patronlogin">Login:</label> >+ <label for="patronlogin">[% Koha.Preference('OPACLoginLabelTextContent') | html %]:</label> > <input type="text" id="patronlogin" class="focus noEnterSubmit" size="20" name="patronlogin" autocomplete="off"/> > <label for="patronpw">Password:</label> > <input type="password" id="patronpw" size="20" name="patronpw" autocomplete="off"/> >-- >2.47.0
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 33766
:
151416
|
151427
|
154566
|
154567
|
154570
|
155017
|
155018
|
155019
|
155022
|
155023
|
155024
|
155025
|
155026
|
157854
|
157855
|
157856
|
157857
|
157858
|
159342
|
159546
|
159547
|
159548
|
159549
|
159550
|
168600
|
168601
|
168602
|
168603
|
168604
|
168605
|
173757
|
173758
|
173759
|
173760
|
173761
|
173762
|
173972
|
173973
|
173974
|
173975
|
173976
|
173977
|
174037
|
174038
|
174039
|
174040
|
174041
|
174042