Bugzilla – Attachment 67648 Details for
Bug 19417
Improve display of errors from background job during stage for import
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19417 - Display full error text when problem importing records
Bug-19417---Display-full-error-text-when-problem-i.patch (text/plain), 2.86 KB, created by
Nick Clemens (kidclamp)
on 2017-10-05 15:29:22 UTC
(
hide
)
Description:
Bug 19417 - Display full error text when problem importing records
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2017-10-05 15:29:22 UTC
Size:
2.86 KB
patch
obsolete
>From 3166b050404a93c7fc60e055f041d54147563bfc Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Thu, 5 Oct 2017 15:26:46 +0000 >Subject: [PATCH] Bug 19417 - Display full error text when problem importing > records > >To test: >1 - Upload a file to stage >2 - Select your import options >3 - Delete the file form the server, example: >sudo rm /tmp/koha_kohadev_uploads/ >4 - 'Click stage for import' >5 - Get an alert 'Failed to submit form: error' >6 - Apply patches >7 - Repeat 1-4 >8 - Get a pretty error with all osrt of info >--- > koha-tmpl/intranet-tmpl/lib/jquery/plugins/humanmsg.js | 1 - > koha-tmpl/intranet-tmpl/prog/en/modules/tools/stage-marc-import.tt | 2 ++ > koha-tmpl/intranet-tmpl/prog/js/background-job-progressbar.js | 2 +- > 3 files changed, 3 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/lib/jquery/plugins/humanmsg.js b/koha-tmpl/intranet-tmpl/lib/jquery/plugins/humanmsg.js >index 347d345..a4c1ab9 100644 >--- a/koha-tmpl/intranet-tmpl/lib/jquery/plugins/humanmsg.js >+++ b/koha-tmpl/intranet-tmpl/lib/jquery/plugins/humanmsg.js >@@ -75,7 +75,6 @@ var humanMsg = { > bindEvents: function() { > // Remove message if mouse is moved or key is pressed > jQuery(document) >- .mousemove(humanMsg.removeMsg) > .click(humanMsg.removeMsg) > .keypress(humanMsg.removeMsg) > }, >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stage-marc-import.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stage-marc-import.tt >index 3229ea6..233b527 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stage-marc-import.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stage-marc-import.tt >@@ -2,6 +2,8 @@ > <title>Koha › Tools › Stage MARC records for import</title> > [% INCLUDE 'doc-head-close.inc' %] > >+<link rel="stylesheet" href="[% interface %]/[% theme %]/css/humanmsg.css" /> >+<script src="[% interface %]/lib/jquery/plugins/humanmsg.js" type="text/javascript"></script> > <script type="text/javascript" src="[% interface %]/[% theme %]/js/background-job-progressbar.js"></script> > <script type="text/javascript" src="[% interface %]/[% theme %]/js/file-upload.js"></script> > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/background-job-progressbar.js b/koha-tmpl/intranet-tmpl/prog/js/background-job-progressbar.js >index cc08618..0bdd887 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/background-job-progressbar.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/background-job-progressbar.js >@@ -69,7 +69,7 @@ function submitBackgroundJob(f) { > backgroundJobProgressTimer = setInterval("updateJobProgress()", 500); > }, > error: function(xml, textStatus) { >- alert('Failed to submit form: ' + textStatus); >+ humanMsg.displayMsg( '<p>Failed to submit form: '+textStatus+'</p></br>'+xml.responseText, { className: 'humanError' } ); > } > > }); >-- >2.1.4
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 19417
:
67648
|
85353
|
85367
|
86033
|
86037
|
86038
|
86039
|
86042
|
86528
|
86529
|
86530