Bugzilla – Attachment 148038 Details for
Bug 33144
Authority lookup in advanced editor overencodes HTML
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33144: Unescape text from authority lookup for advanced editor
Bug-33144-Unescape-text-from-authority-lookup-for-.patch (text/plain), 2.57 KB, created by
Katrin Fischer
on 2023-03-09 22:16:46 UTC
(
hide
)
Description:
Bug 33144: Unescape text from authority lookup for advanced editor
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2023-03-09 22:16:46 UTC
Size:
2.57 KB
patch
obsolete
>From ed254551a5bd9238265b92c9a1d750aa655ca6ec Mon Sep 17 00:00:00 2001 >From: Phil Ringnalda <phil@chetcolibrary.org> >Date: Sun, 5 Mar 2023 21:24:56 -0800 >Subject: [PATCH] Bug 33144: Unescape text from authority lookup for advanced > editor >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >While the basic editor is happy with an array of subfields it can >stuff into separate fields, the advanced editor needs to get a JS >string back from the authority lookup plugin, because it is going >to just add the whole thing as text. The string has to be HTML >entity encoded, both to not allow XSS and just to not break the >window, but it needs to then be unencoded before being inserted >into the editor. > >Test plan: >1. Set the system preference EnableAdvancedCatalogingEditor to > Enable >2. Edit any Topical Term authority, and at the end of tag 150 > subfield a, add & </script> >3. Cataloging - Advanced editor >4. Press return in the editor to get a new blank line, type 650 > and press tab three times, then type Ctrl-Shift-L >5. Search for your modified authority, and click Choose >6. Verify that the tiny popup opened by the search window finished > its job and closed itself >7. Verify that your 650 now shows as "â¡aAbduction & > </script>â¡vDrama" rather than "â¡aAbduction & > </script>â¡vDrama." > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > .../prog/en/modules/authorities/blinddetail-biblio-search.tt | 2 ++ > 1 file changed, 2 insertions(+) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/blinddetail-biblio-search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/blinddetail-biblio-search.tt >index ee27c4c886..d72d51650c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/blinddetail-biblio-search.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/blinddetail-biblio-search.tt >@@ -22,6 +22,8 @@ > [% IF rancor %] > function RancorReplaceField( new_text, ind_1, ind_2 ){ > var cur_field = opener.opener.jQuery(".CodeMirror")[0].CodeMirror.marceditor.getCurrentField(); >+ // The new_text is entity-encoded and we want decoded text >+ new_text = new DOMParser().parseFromString(new_text, 'text/html').body.innerText; > cur_field.setText(new_text); > [% IF update_ind1 %]cur_field.setIndicator1(ind_1);[% END %] > [% IF update_ind2 %]cur_field.setIndicator2(ind_2);[% END %] >-- >2.30.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 33144
:
147776
|
147817
| 148038