Bugzilla – Attachment 117420 Details for
Bug 24623
Phase out jquery.cookie.js: Advanced MARC editor
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 24623: Phase out jquery.cookie.js: Advanced MARC editor
Bug-24623-Phase-out-jquerycookiejs-Advanced-MARC-e.patch (text/plain), 2.98 KB, created by
Katrin Fischer
on 2021-02-28 17:45:34 UTC
(
hide
)
Description:
Bug 24623: Phase out jquery.cookie.js: Advanced MARC editor
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2021-02-28 17:45:34 UTC
Size:
2.98 KB
patch
obsolete
>From b4584ae2d818acd190f2cb345debb39eae25c7e6 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Fri, 19 Feb 2021 00:01:26 +0000 >Subject: [PATCH] Bug 24623: Phase out jquery.cookie.js: Advanced MARC editor > >This patch changes cookie handling in the MARC editor templates so that >the js-cookie plugin is used instead of jquery.cookie. > >To test, apply the patch and go to Cataloging. > > - Search for a title using the cataloging search in the header search > form. > - In the search results, choose "Edit record" from the "Actions" menu. > - By default you should be taken to the "basic" MARC editor. > - From the "Settings" menu button, choose "Switch to advanced editor." > - Return to the cataloging home page and perform another search. > - Now when you choose "Edit record" you should be taken directly to the > advanced editor. > - In the advanced editor, choose "Switch to basic editor" from the > "Settings" menu. > - The basic editor should now be saved as the default. > - Test also with "Edit record" links in catalog search results. > >Signed-off-by: David Nind <david@davidnind.com> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc | 2 +- > koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc >index 62bbe96a94..39f03f75b5 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc >@@ -1207,7 +1207,7 @@ require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr > $( '#switch-editor' ).click( function() { > if ( !confirm( _("Any changes will not be saved. Continue?") ) ) return; > >- $.cookie( 'catalogue_editor_[% logged_in_user.borrowernumber | html %]', 'basic', { expires: 365, path: '/' } ); >+ Cookies.set( "catalogue_editor_[% logged_in_user.borrowernumber | html %]", "basic", { expires: 365, path: '/' } ); > > if ( state.backend == 'catalog' ) { > window.location = '/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=' + state.recordID; >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt >index d6cc00d9f4..6a2b34e6ac 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt >@@ -247,7 +247,7 @@ > }); > > $("#useadvanced").click(function(){ >- $.cookie( 'catalogue_editor_[% logged_in_user.borrowernumber | html %]', 'advanced', { expires: 365, path: '/' } ); >+ Cookies.set( "catalogue_editor_[% logged_in_user.borrowernumber | html %]", "advanced", { expires: 365, path: '/' } ); > return true; > }); > >-- >2.11.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 24623
:
117154
|
117191
| 117420