From bugzilla-daemon@bugs.koha-community.org Wed Apr 25 16:44:17 2018 From: bugzilla-daemon@bugs.koha-community.org To: koha-bugs@lists.koha-community.org Subject: [Koha-bugs] [Bug 20657] New: Globally enable PRE_CHOMP and POST_CHOMP in Template Toolkit configuration Date: Wed, 25 Apr 2018 14:44:14 +0000 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4108798419478940596==" --===============4108798419478940596== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D20657 Bug ID: 20657 Summary: Globally enable PRE_CHOMP and POST_CHOMP in Template Toolkit configuration Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs@lists.koha-community.org Reporter: oleonard@myacpl.org QA Contact: testopia@bugs.koha-community.org As it currently stands, the HTML output by Template Toolkit includes whitespa= ce anywhere there was a template tag. For example, this is a portion of the generated source of the staff client home page: 1 2 3 4 5 6 7 8 9 10 11 12 13 Koha staff client Developer tools report: 26.69 KB / 5.83 KB transferred In contrast, this what the same content looks like with PRE_CHOMP and=20 POST_CHOMP enabled: 1 2 3 4 Koha staff client Developer tools report: 23.29 KB / 5.65 KB transferred In the samples I looked at this change did not make the HTML source significantly more difficult to read. --=20 You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. --===============4108798419478940596==-- From bugzilla-daemon@bugs.koha-community.org Wed Jun 8 09:11:17 2022 From: bugzilla-daemon@bugs.koha-community.org To: koha-bugs@lists.koha-community.org Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in Template Toolkit configuration Date: Wed, 08 Jun 2022 07:11:16 +0000 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8525528572604667753==" --===============8525528572604667753== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart+koha@gmail. | |com --- Comment #1 from Jonathan Druart --- I've suggested that yesterday: diff --git a/C4/Templates.pm b/C4/Templates.pm index 789495f3fae..7f7b36e3dc6 100644 --- a/C4/Templates.pm +++ b/C4/Templates.pm @@ -72,6 +72,9 @@ sub new { INCLUDE_PATH => \@includes, FILTERS => {}, ENCODING => 'UTF-8', + PRE_CHOMP => 3, + POST_CHOMP => 3, + TRIM => 1, } ) or die Template->error(); my $self = { @@ -126,6 +129,8 @@ sub output { binmode( STDOUT, ":encoding(UTF-8)" ); $template->process( $self->filename, $vars, \$data ) || die "Template process failed: ", $template->error(); + + $data =~ tr/ //s; return $data; } -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. --===============8525528572604667753==-- From bugzilla-daemon@bugs.koha-community.org Wed Jun 8 09:21:55 2022 From: bugzilla-daemon@bugs.koha-community.org To: koha-bugs@lists.koha-community.org Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in Template Toolkit configuration Date: Wed, 08 Jun 2022 07:21:54 +0000 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3136190263292114346==" --===============3136190263292114346== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D20657 Julian Maurice changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |julian.maurice@biblibre.com --- Comment #2 from Julian Maurice --- + $data =3D~ tr/ //s; This would squash *every* sequences of space into a single space, right ? I'm not sure if it's appropriate for every template (sometimes spaces have meanin= g, like in some MARC fields, or we want them, like in
 blocks, ...)

--=20
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.

--===============3136190263292114346==--


From bugzilla-daemon@bugs.koha-community.org Wed Jun  8 11:15:25 2022
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Wed, 08 Jun 2022 09:15:24 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============4750325069750193973=="

--===============4750325069750193973==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657

--- Comment #3 from Jonathan Druart  ---
(In reply to Julian Maurice from comment #2)
> +    $data =~ tr/ //s;
> 
> This would squash *every* sequences of space into a single space, right ?
> I'm not sure if it's appropriate for every template (sometimes spaces have
> meaning, like in some MARC fields, or we want them, like in 

> blocks, ...)

Yes, agreed, we should go with pre/post chomp first.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.

--===============4750325069750193973==--


From bugzilla-daemon@bugs.koha-community.org Tue Mar 14 15:46:59 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Tue, 14 Mar 2023 14:46:58 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============4486599133465214381=="

--===============4486599133465214381==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657

Tomás Cohen Arazi  changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|koha-bugs@lists.koha-commun |tomascohen@gmail.com
                   |ity.org                     |
             Status|NEW                         |Needs Signoff
                 CC|                            |tomascohen@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.

--===============4486599133465214381==--


From bugzilla-daemon@bugs.koha-community.org Tue Mar 14 15:48:57 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Tue, 14 Mar 2023 14:48:56 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============1683843736335363839=="

--===============1683843736335363839==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657

--- Comment #4 from Tomás Cohen Arazi  ---
Created attachment 148167
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=148167&action=edit
Bug 20657: Enable PRE_CHOMP, POST_CHOMP and TRIM by default it TT

Signed-off-by: Tomas Cohen Arazi 

-- 
You are receiving this mail because:
You are watching all bug changes.

--===============1683843736335363839==--


From bugzilla-daemon@bugs.koha-community.org Tue Mar 14 15:49:23 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Tue, 14 Mar 2023 14:49:23 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============8983287479098988566=="

--===============8983287479098988566==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657

--- Comment #5 from Tomás Cohen Arazi  ---
Submitting to get the ball rolling.

-- 
You are receiving this mail because:
You are watching all bug changes.

--===============8983287479098988566==--


From bugzilla-daemon@bugs.koha-community.org Tue Mar 14 15:51:00 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Tue, 14 Mar 2023 14:50:59 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============5838126425322629037=="

--===============5838126425322629037==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D20657

Tom=C3=A1s Cohen Arazi  changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |lucas@bywatersolutions.com,
                   |                            |martin.renvoize@ptfs-europe
                   |                            |.com,
                   |                            |nick@bywatersolutions.com

--- Comment #6 from Tom=C3=A1s Cohen Arazi  ---
For reference to the values picked by Jonathan on his proposal:

http://template-toolkit.org/docs/manual/Config.html#section_PRE_CHOMP_POST_CH=
OMP

--=20
You are receiving this mail because:
You are watching all bug changes.

--===============5838126425322629037==--


From bugzilla-daemon@bugs.koha-community.org Wed Mar 15 13:07:23 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Wed, 15 Mar 2023 12:07:23 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============5796076437200972023=="

--===============5796076437200972023==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D20657

--- Comment #7 from Nick Clemens  ---
Two issues I noticed on a quick test:
1 - Holdings tab on staff details is collapsed after this, you have to click =
to
open/view
2 - Messages with spaces are affected by this:
    In transit fromCentervilletoSpringfieldsince03/09/2023

--=20
You are receiving this mail because:
You are watching all bug changes.

--===============5796076437200972023==--


From bugzilla-daemon@bugs.koha-community.org Wed Mar 15 14:10:23 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Wed, 15 Mar 2023 13:10:22 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============5640623571801590210=="

--===============5640623571801590210==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657

--- Comment #8 from Tomás Cohen Arazi  ---
(In reply to Nick Clemens from comment #7)
> Two issues I noticed on a quick test:
> 1 - Holdings tab on staff details is collapsed after this, you have to click
> to open/view
> 2 - Messages with spaces are affected by this:
>     In transit fromCentervilletoSpringfieldsince03/09/2023

Yes, we would need to use this syntax on special cases [%+ +%] or so

-- 
You are receiving this mail because:
You are watching all bug changes.

--===============5640623571801590210==--


From bugzilla-daemon@bugs.koha-community.org Wed Mar 15 14:12:34 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Wed, 15 Mar 2023 13:12:33 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============8586582336272044571=="

--===============8586582336272044571==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D20657

--- Comment #9 from Martin Renvoize  ---
I faced some challenges with chomping in bug 31028.. this patch kind of moves
the problem really.

We've historically not been very good at being explicit about chomping flags =
in
our templates and I've often found myself adding '-' to the opening or closing
tags of template markers.  This patch changes the default from 'no chomp' to
'chomp always'.. I think this is an improvement given our general use.. but we
will likely need to explicitly disable the chomping in a number of cases to
keep intended whitespace as Nick spotted.  It also might be nice to clean up
all uses of `-` as that's now effectively the detault.

--=20
You are receiving this mail because:
You are watching all bug changes.

--===============8586582336272044571==--


From bugzilla-daemon@bugs.koha-community.org Wed Mar 15 14:13:56 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Wed, 15 Mar 2023 13:13:56 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============3314512987418485762=="

--===============3314512987418485762==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D20657

--- Comment #10 from Martin Renvoize  ---
I think this is probably a case of push early and fix occurences we spot in t=
he
wild quickly after.. it's going to be hard to test all pages to fix things
inline here.

--=20
You are receiving this mail because:
You are watching all bug changes.

--===============3314512987418485762==--


From bugzilla-daemon@bugs.koha-community.org Wed Mar 15 14:22:08 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Wed, 15 Mar 2023 13:22:08 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============4442648795607138946=="

--===============4442648795607138946==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657

--- Comment #11 from Martin Renvoize  ---
We do, however, also allow the use of our includes within notices.. we could
end up "fixing" includes for this and breaking notices that use them.. perhaps
we should also make this change in C4::Letters?

-- 
You are receiving this mail because:
You are watching all bug changes.

--===============4442648795607138946==--


From bugzilla-daemon@bugs.koha-community.org Wed Mar 15 23:31:59 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Wed, 15 Mar 2023 22:31:58 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============3251728069183239452=="

--===============3251728069183239452==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D20657

--- Comment #12 from Katrin Fischer  ---
The translation process also removes spaces in some cases, so we'd need to te=
st
really well using translated templates too. I agree with Martin about the ear=
ly
push.

--=20
You are receiving this mail because:
You are watching all bug changes.

--===============3251728069183239452==--


From bugzilla-daemon@bugs.koha-community.org Thu Mar 16 12:59:30 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Thu, 16 Mar 2023 11:59:28 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============1617696330466049886=="

--===============1617696330466049886==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657

--- Comment #13 from Martin Renvoize  ---
Perhaps this is another one to go for before hackfest and use some hackfest
time to work through tidying up.?

-- 
You are receiving this mail because:
You are watching all bug changes.

--===============1617696330466049886==--


From bugzilla-daemon@bugs.koha-community.org Thu Mar 16 13:07:33 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Thu, 16 Mar 2023 12:07:32 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============2265210931856748569=="

--===============2265210931856748569==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657

--- Comment #14 from Tomás Cohen Arazi  ---
(In reply to Martin Renvoize from comment #13)
> Perhaps this is another one to go for before hackfest and use some hackfest
> time to work through tidying up.?

Should we change this setting for notices?

-- 
You are receiving this mail because:
You are watching all bug changes.

--===============2265210931856748569==--


From bugzilla-daemon@bugs.koha-community.org Fri Sep 15 18:55:38 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Fri, 15 Sep 2023 16:55:37 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============3858110775774196242=="

--===============3858110775774196242==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657

--- Comment #15 from Lucas Gass  ---
Is this ready for testing now?

-- 
You are receiving this mail because:
You are watching all bug changes.

--===============3858110775774196242==--


From bugzilla-daemon@bugs.koha-community.org Fri Mar 15 14:52:30 2024
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Fri, 15 Mar 2024 13:52:29 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============3140238584273549547=="

--===============3140238584273549547==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657

--- Comment #16 from Jonathan Druart  ---
Created attachment 163235
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163235&action=edit
Bug 20657: Remove explicit chomp in patronfields.inc

-- 
You are receiving this mail because:
You are watching all bug changes.

--===============3140238584273549547==--


From bugzilla-daemon@bugs.koha-community.org Fri Mar 15 15:07:57 2024
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Fri, 15 Mar 2024 14:07:57 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============3630417986471915055=="

--===============3630417986471915055==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657

--- Comment #17 from Jonathan Druart  ---
Created attachment 163239
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163239&action=edit
Bug 20657: Explicit + in class

We need a script to catch those ones

-- 
You are receiving this mail because:
You are watching all bug changes.

--===============3630417986471915055==--


From bugzilla-daemon@bugs.koha-community.org Fri Mar 15 15:08:07 2024
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Fri, 15 Mar 2024 14:07:59 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============5628240703254784813=="

--===============5628240703254784813==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657

--- Comment #18 from Jonathan Druart  ---
Created attachment 163240
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163240&action=edit
Bug 20657: Explicit + for TT vars in sentences

If inside div and span?

-- 
You are receiving this mail because:
You are watching all bug changes.

--===============5628240703254784813==--


From bugzilla-daemon@bugs.koha-community.org Fri Mar 15 15:08:17 2024
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Fri, 15 Mar 2024 14:08:02 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============4881851873153916997=="

--===============4881851873153916997==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657

--- Comment #19 from Jonathan Druart  ---
Created attachment 163241
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163241&action=edit
Bug 20657: Add non-breaking space in alphabet list

-- 
You are receiving this mail because:
You are watching all bug changes.

--===============4881851873153916997==--


From bugzilla-daemon@bugs.koha-community.org Fri Mar 15 15:08:27 2024
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Fri, 15 Mar 2024 14:08:15 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============0747268507517400159=="

--===============0747268507517400159==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657

Jonathan Druart  changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Needs Signoff               |Failed QA

--- Comment #20 from Jonathan Druart  ---
We are clearly not ready for that.

-- 
You are receiving this mail because:
You are watching all bug changes.

--===============0747268507517400159==--


From bugzilla-daemon@bugs.koha-community.org Fri Mar 15 15:16:10 2024
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Fri, 15 Mar 2024 14:16:10 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============3625033022485616536=="

--===============3625033022485616536==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657

--- Comment #21 from Jonathan Druart  ---
I will address the original issue (comment 0) on bug 36333.

-- 
You are receiving this mail because:
You are watching all bug changes.

--===============3625033022485616536==--


From bugzilla-daemon@bugs.koha-community.org Mon Mar 18 00:21:14 2024
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in
 Template Toolkit configuration
Date: Sun, 17 Mar 2024 23:21:14 +0000
Message-ID: 
In-Reply-To: 
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============7301350874475442303=="

--===============7301350874475442303==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657

David Cook  changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dcook@prosentient.com.au

-- 
You are receiving this mail because:
You are watching all bug changes.

--===============7301350874475442303==--