X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=iterate.tcl;h=91c9b8ab5448098a177df7a57d5932f8f649762d;hb=6ddbb3991cc5ad6089410078695f574b2bd8388e;hp=65c506ee48cc14c49c03124692ffb9ec28a97bab;hpb=38d3a59423e91dc9c0985c678afdfba1837cdb5f;p=ir-tcl-moved-to-github.git diff --git a/iterate.tcl b/iterate.tcl index 65c506e..91c9b8a 100644 --- a/iterate.tcl +++ b/iterate.tcl @@ -1,6 +1,15 @@ -# $Id: iterate.tcl,v 1.2 1995-05-26 11:44:10 adam Exp $ +# $Id: iterate.tcl,v 1.4 1995-08-04 11:32:40 adam Exp $ # # Small test script which searches for science ... +proc fail-back {} { + puts "Fail" +} + +proc connect-response {} { + z callback {init-response} + ir-set z.1 z + z init +} proc init-response {} { global count @@ -24,7 +33,11 @@ proc search-response {} { do-search } z callback {present-response} - z.1 present 1 $hits + if {$hits < 10} { + z.1 present 1 $hits + } else { + z.1 present 1 10 + } } proc present-response {} { @@ -32,9 +45,8 @@ proc present-response {} { } ir z -z databaseNames DEM -z connect localhost:9999 -z callback {init-response} -ir-set z.1 z -z init +z failback {fail-back} +z databaseNames dummy +z callback {connect-response} +z connect localhost:210