Bugzilla – Attachment 36074 Details for
Bug 12858
Syndetics index apreciably slow page load for items without result at Syndetics
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA] Bug 12858 [QA Followup] - Don't call webservice if we have no data
PASSED-QA-Bug-12858-QA-Followup---Dont-call-webser.patch (text/plain), 1.49 KB, created by
Kyle M Hall (khall)
on 2015-02-20 12:27:37 UTC
(
hide
)
Description:
[PASSED QA] Bug 12858 [QA Followup] - Don't call webservice if we have no data
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2015-02-20 12:27:37 UTC
Size:
1.49 KB
patch
obsolete
>From 16cb55c77bf2648dbde1e6158d5a0ece7631b220 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Fri, 20 Feb 2015 07:23:15 -0500 >Subject: [PATCH] [PASSED QA] Bug 12858 [QA Followup] - Don't call webservice if we have no data > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > C4/External/Syndetics.pm | 6 ++++-- > 1 files changed, 4 insertions(+), 2 deletions(-) > >diff --git a/C4/External/Syndetics.pm b/C4/External/Syndetics.pm >index 2d14674..50f1e64 100644 >--- a/C4/External/Syndetics.pm >+++ b/C4/External/Syndetics.pm >@@ -63,7 +63,9 @@ Get Summary data from Syndetics > =cut > > sub get_syndetics_index { >- my ( $isbn,$upc,$oclc ) = @_; >+ my ( $isbn, $upc, $oclc ) = @_; >+ >+ return unless ( $isbn || $upc || $oclc ); > > my $response = _fetch_syndetics_content('INDEX.XML', $isbn, $upc, $oclc); > unless ($response->content_type =~ /xml/) { >@@ -80,9 +82,9 @@ sub get_syndetics_index { > for my $available_type ('SUMMARY','TOC','FICTION','AWARDS1','SERIES1','SPSUMMARY','SPREVIEW', 'AVPROFILE', 'AVSUMMARY','DBCHAPTER','LJREVIEW','PWREVIEW','SLJREVIEW','CHREVIEW','BLREVIEW','HBREVIEW','KIREVIEW','CRITICASREVIEW','ANOTES') { > if (exists $response->{$available_type} && $response->{$available_type} =~ /$available_type/) { > $syndetics_elements->{$available_type} = $available_type; >- #warn "RESPONSE: $available_type : $response->{$available_type}"; > } > } >+ > return $syndetics_elements if $syndetics_elements; > } > >-- >1.7.2.5
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 12858
:
31318
|
36010
|
36072
|
36073
| 36074