Bugzilla – Attachment 7615 Details for
Bug 6140
Set a timeout to z3950 servers that could have network problems occasionally
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch to apply in current master
0001-Set-a-timeout-to-z3950-servers-that-could-have-netwo.patch (text/plain), 10.36 KB, created by
Juan Romay Sieira
on 2012-02-13 10:47:36 UTC
(
hide
)
Description:
Patch to apply in current master
Filename:
MIME Type:
Creator:
Juan Romay Sieira
Created:
2012-02-13 10:47:36 UTC
Size:
10.36 KB
patch
obsolete
>From bfd75128959052a5bc27c5cfe36149cf434fdc44 Mon Sep 17 00:00:00 2001 >From: Juan Romay Sieira <juan.sieira@xercode.es> >Date: Mon, 13 Feb 2012 11:46:30 +0100 >Subject: [PATCH] Set a timeout to z3950 servers that could have network problems occasionally >Content-Type: text/plain; charset="utf-8" > >--- > admin/z3950servers.pl | 24 +++++++++++-------- > cataloguing/z3950_search.pl | 1 + > installer/data/mysql/kohastructure.sql | 1 + > installer/data/mysql/updatedatabase.pl | 9 +++++++ > .../prog/en/modules/admin/z3950servers.tt | 8 +++++- > 5 files changed, 31 insertions(+), 12 deletions(-) > >diff --git a/admin/z3950servers.pl b/admin/z3950servers.pl >index 44b3967..9a83021 100755 >--- a/admin/z3950servers.pl >+++ b/admin/z3950servers.pl >@@ -32,7 +32,7 @@ sub StringSearch { > $searchstring=~ s/\'/\\\'/g; > my @data=split(' ',$searchstring); > my $count=@data; >- my $sth=$dbh->prepare("Select host,port,db,userid,password,name,id,checked,rank,syntax,encoding from z3950servers where (name like ?) order by rank,name"); >+ my $sth=$dbh->prepare("Select host,port,db,userid,password,name,id,checked,rank,syntax,encoding,timeout from z3950servers where (name like ?) order by rank,name"); > $sth->execute("$data[0]\%"); > my @results; > while (my $data=$sth->fetchrow_hashref) { >@@ -74,13 +74,13 @@ if ($op eq 'add_form') { > my $data; > if ($searchfield) { > my $dbh = C4::Context->dbh; >- my $sth=$dbh->prepare("select host,port,db,userid,password,name,id,checked,rank,syntax,encoding from z3950servers where (name = ?) order by rank,name"); >+ my $sth=$dbh->prepare("select host,port,db,userid,password,name,id,checked,rank,syntax,encoding,timeout from z3950servers where (name = ?) order by rank,name"); > $sth->execute($searchfield); > $data=$sth->fetchrow_hashref; > $sth->finish; > } > $template->param( $_ => $data->{$_} ) >- for ( qw( host port db userid password checked rank ) ); >+ for ( qw( host port db userid password checked rank timeout ) ); > $template->param( $_ . $data->{$_} => 1) > for ( qw( syntax encoding ) ); > # END $OP eq ADD_FORM >@@ -92,7 +92,7 @@ if ($op eq 'add_form') { > my $sth=$dbh->prepare("select * from z3950servers where name=?"); > $sth->execute($input->param('searchfield')); > if ($sth->rows) { >- $sth=$dbh->prepare("update z3950servers set host=?, port=?, db=?, userid=?, password=?, name=?, checked=?, rank=?,syntax=?,encoding=? where name=?"); >+ $sth=$dbh->prepare("update z3950servers set host=?, port=?, db=?, userid=?, password=?, name=?, checked=?, rank=?,syntax=?,encoding=?,timeout=? where name=?"); > $sth->execute($input->param('host'), > $input->param('port'), > $input->param('db'), >@@ -103,14 +103,15 @@ if ($op eq 'add_form') { > $input->param('rank'), > $input->param('syntax'), > $input->param('encoding'), >+ $input->param('timeout'), > $input->param('searchfield'), > ); > } > else { > $sth=$dbh->prepare( > "INSERT INTO z3950servers " . >- "(host,port,db,userid,password,name,checked,rank,syntax,encoding) " . >- "VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)" ); >+ "(host,port,db,userid,password,name,checked,rank,syntax,encoding,timeout) " . >+ "VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)" ); > $sth->execute( > $input->param( 'host' ), > $input->param( 'port' ), >@@ -121,7 +122,8 @@ if ($op eq 'add_form') { > $input->param( 'checked' ), > $input->param( 'rank' ), > $input->param( 'syntax' ), >- $input->param( 'encoding' ) ); >+ $input->param( 'encoding' ), >+ $input->param( 'timeout' ) ); > } > $sth->finish; > # END $OP eq ADD_VALIDATE >@@ -131,7 +133,7 @@ if ($op eq 'add_form') { > $template->param(delete_confirm => 1); > my $dbh = C4::Context->dbh; > >- my $sth2=$dbh->prepare("select host,port,db,userid,password,name,id,checked,rank,syntax,encoding from z3950servers where (name = ?) order by rank,name"); >+ my $sth2=$dbh->prepare("select host,port,db,userid,password,name,id,checked,rank,syntax,encoding,timeout from z3950servers where (name = ?) order by rank,name"); > $sth2->execute($searchfield); > my $data=$sth2->fetchrow_hashref; > $sth2->finish; >@@ -144,7 +146,8 @@ if ($op eq 'add_form') { > checked => $data->{'checked'}, > rank => $data->{'rank'}, > syntax => $data->{'syntax'}, >- encoding => $data->{'encoding'} ); >+ encoding => $data->{'encoding'}, >+ timeout => $data->{'timeout'} ); > > # END $OP eq DELETE_CONFIRM > ################## DELETE_CONFIRMED ################################## >@@ -174,7 +177,8 @@ if ($op eq 'add_form') { > checked => $results->[$i]{'checked'}, > rank => $results->[$i]{'rank'}, > syntax => $results->[$i]{'syntax'}, >- encoding => $results->[$i]{'encoding'}); >+ encoding => $results->[$i]{'encoding'}, >+ timeout => $results->[$i]{'timeout'}); > push @loop, \%row; > > } >diff --git a/cataloguing/z3950_search.pl b/cataloguing/z3950_search.pl >index b12a9c9..d66945c 100755 >--- a/cataloguing/z3950_search.pl >+++ b/cataloguing/z3950_search.pl >@@ -179,6 +179,7 @@ warn "query ".$query if $DEBUG; > $option1->option('user', $server->{userid} ) if $server->{userid}; > $option1->option('password', $server->{password}) if $server->{password}; > $option1->option('preferredRecordSyntax', $server->{syntax}); >+ $option1->option( 'timeout', $server->{timeout} ) if ($server->{timeout}); > $oConnection[$s] = create ZOOM::Connection($option1) > || $DEBUG > && warn( "" . $oConnection[$s]->errmsg() ); >diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql >index 37113c2..4b0c337 100644 >--- a/installer/data/mysql/kohastructure.sql >+++ b/installer/data/mysql/kohastructure.sql >@@ -2018,6 +2018,7 @@ CREATE TABLE `z3950servers` ( -- connection information for the Z39.50 targets u > `checked` smallint(6) default NULL, -- whether this target is checked by default (1 for yes, 0 for no) > `rank` int(11) default NULL, -- where this target appears in the list of targets > `syntax` varchar(80) default NULL, -- marc format provided by this target >+ `timeout` int(11) NOT NULL DEFAULT '0', > `icon` text, -- unused in Koha > `position` enum('primary','secondary','') NOT NULL default 'primary', > `type` enum('zed','opensearch') NOT NULL default 'zed', >diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl >index d4ac31d..76bb8fd 100755 >--- a/installer/data/mysql/updatedatabase.pl >+++ b/installer/data/mysql/updatedatabase.pl >@@ -4671,6 +4671,15 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { > SetVersion ($DBversion); > } > >+$DBversion = "3.07.00.xxx"; >+if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { >+ $dbh->do(qq{ >+ ALTER TABLE `z3950servers` ADD `timeout` INT( 11 ) NOT NULL DEFAULT '0' AFTER `syntax`; >+ }); >+ print "Upgrade to $DBversion done (New timeout field in z3950servers)\n"; >+ SetVersion($DBversion); >+} >+ > =head1 FUNCTIONS > > =head2 DropAllForeignKeys($table) >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt >index e565acf..c65035e 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt >@@ -226,6 +226,9 @@ > [% END %] > </select> > </li> >+ <li><label for="timeout">Timeout (0 its like not set): </label> >+ <input type="text" name="timeout" id="timeout" size="4" value="[% timeout %]" onblur="isNum(this)" /> >+ </li> > </ol> > </fieldset> > >@@ -254,6 +257,7 @@ > <li><strong>Rank: </strong>[% rank %]</li> > <li><strong>Syntax: </strong>[% syntax %]</li> > <li><strong>Encoding: </strong>[% encoding %]</li> >+ <li><strong>Timeout: </strong>[% timeout %]</li> > </ul> <form action="[% script_name %]" method="post"><input type="hidden" name="op" value="delete_confirmed" /><input type="hidden" name="searchfield" value="[% searchfield %]" /><input type="submit" value="Delete this Server" /></form> <form action="[% script_name %]" method="post"><input type="submit" value="Do Not Delete" /></form> > > >@@ -297,7 +301,7 @@ > You searched for [% searchfield %] > [% END %] > <table id="serverst"> >- <thead><tr><th>Target</th><th>Hostname/Port</th><th>Database</th><th>Userid</th><th>Password</th><th>Checked</th><th>Rank</th> <th>Syntax</th><th>Encoding</th><th colspan="2"> </th> >+ <thead><tr><th>Target</th><th>Hostname/Port</th><th>Database</th><th>Userid</th><th>Password</th><th>Checked</th><th>Rank</th> <th>Syntax</th><th>Encoding</th><th>Timeout</th><th colspan="2"> </th> > </tr></thead> > <tbody>[% FOREACH loo IN loop %] > [% UNLESS ( loop.odd ) %] >@@ -305,7 +309,7 @@ > [% ELSE %] > <tr> > [% END %] >-<td><a href="[% loo.script_name %]?op=add_form&searchfield=[% loo.name |url %]">[% loo.name %]</a></td><td>[% loo.host %]:[% loo.port %]</td><td>[% loo.db %]</td><td>[% loo.userid %]</td><td>[% loo.password %]</td><td>[% loo.checked %]</td><td>[% loo.rank %]</td> <td>[% loo.syntax %]</td><td>[% loo.encoding %]</td><td><a href="[% loo.script_name %]?op=add_form&searchfield=[% loo.name |url %]">Edit</a></td><td><a href="[% loo.script_name %]?op=delete_confirm&searchfield=[% loo.name |url %]">Delete</a></td> </tr> >+<td><a href="[% loo.script_name %]?op=add_form&searchfield=[% loo.name |url %]">[% loo.name %]</a></td><td>[% loo.host %]:[% loo.port %]</td><td>[% loo.db %]</td><td>[% loo.userid %]</td><td>[% loo.password %]</td><td>[% loo.checked %]</td><td>[% loo.rank %]</td> <td>[% loo.syntax %]</td><td>[% loo.encoding %]</td><td>[% loo.timeout %]</td><td><a href="[% loo.script_name %]?op=add_form&searchfield=[% loo.name |url %]">Edit</a></td><td><a href="[% loo.script_name %]?op=delete_confirm&searchfield=[% loo.name |url %]">Delete</a></td> </tr> > [% END %]</tbody> > </table> > >-- >1.7.1 >
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 6140
:
3832
|
7615
|
8414
|
8453