Updated list of preconfigure targets.
authorAdam Dickmeiss <adam@indexdata.dk>
Sun, 12 Dec 1999 00:25:59 +0000 (00:25 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Sun, 12 Dec 1999 00:25:59 +0000 (00:25 +0000)
CHANGELOG
Makefile.in
client.tcl
ir-tcl.spec
irtdb.tcl
setup.tcl

index 6040cea..bd436e3 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,4 @@
-$Id: CHANGELOG,v 1.42 1999-12-10 10:42:25 adam Exp $
+$Id: CHANGELOG,v 1.43 1999-12-12 00:25:59 adam Exp $
 
 06/19/95 Release of ir-tcl-1.0b
 ------------------------------------------------------
@@ -131,3 +131,6 @@ $Id: CHANGELOG,v 1.42 1999-12-10 10:42:25 adam Exp $
          sortStatus (returns sort status - after response).
 
 12/10/99 Release of ir-tcl-1.3
+------------------------------------------------------
+
+12/12/99 Updated list of preconfigured targets for test client.
index a9281c7..63432ba 100644 (file)
@@ -1,8 +1,7 @@
 # IR toolkit for tcl/tk
 # (c) Index Data 1995-1999
 # See the file LICENSE for details.
-# Sebastian Hammer, Adam Dickmeiss
-# $Id: Makefile.in,v 1.52 1999-11-30 14:05:58 adam Exp $
+# $Id: Makefile.in,v 1.53 1999-12-12 00:25:59 adam Exp $
 SHELL=/bin/sh
 
 # IrTcl Version
@@ -102,6 +101,7 @@ install.man:
 install: @ALL_SPEC@
        $(INSTALL) -d $(BUILD)$(IRTCLDIR)/formats
        $(INSTALL) -d $(BUILD)$(IRTCLDIR)/bitmaps
+       $(INSTALL) -d $(BUILD)$(IRTCLDIR)/doc
        $(INSTALL) -d $(BUILD)$(BINDIR)
        @if [ -f ir-tcl ]; then \
                $(INSTALL_PROGRAM) ir-tcl $(BUILD)$(BINDIR); \
@@ -140,6 +140,11 @@ install: @ALL_SPEC@
                        $(INSTALL_DATA) $$b $(BUILD)$(IRTCLDIR)/bitmaps; \
                fi; \
        done
+       @for b in doc/*; do \
+               if [ -f $$b ]; then \
+                       $(INSTALL_DATA) $$b $(BUILD)$(IRTCLDIR)/doc; \
+               fi; \
+       done
 
 clean:
        rm -f *.[oa] ir-tk ir-tcl wais-tcl core 
@@ -150,22 +155,7 @@ autoconf:
        autoconf
        configure
 
-distribution:
-       echo "Making distribution version $(VERSION). Did you commit?"
-       if [ -d tmp ]; then \
-               rm -fr tmp; \
-       fi
-       mkdir tmp; cd tmp; cvs export -f -D now ir-tcl
-       rm tmp/ir-tcl/wais-tcl.c
-       cd tmp/ir-tcl/doc; make all
-       cp tmp/ir-tcl/doc/*.html .
-       cp tmp/ir-tcl/CHANGELOG .
-       mv tmp/ir-tcl tmp/ir-tcl-$(VERSION)
-       cd tmp; tar zcvf ../ir-tcl-$(VERSION).tar.gz ir-tcl-$(VERSION)
-       rm -fr tmp
-
 .c.o:
        $(CC) -c $(CFLAGS) $(SHLIB_CFLAGS) $(DEFS) $<
 
 $(O) tkmain.o tclmain.o wais-tcl.o waismain.o: ir-tcl.h ir-tclp.h
-
index 5346e93..236ba32 100644 (file)
@@ -4,7 +4,10 @@
 # Sebastian Hammer, Adam Dickmeiss
 #
 # $Log: client.tcl,v $
-# Revision 1.108  1999-11-30 14:05:58  adam
+# Revision 1.109  1999-12-12 00:25:59  adam
+# Updated list of preconfigure targets.
+#
+# Revision 1.108  1999/11/30 14:05:58  adam
 # Updated for new location of YAZ headers.
 #
 # Revision 1.107  1999/02/11 11:30:08  adam
@@ -509,8 +512,8 @@ set debugMode 0
 
 set queryTypes {Simple}
 set queryButtons { { {I 0} {I 1} {I 2} } }
-set queryInfo { { {Title {1=4 4=1}} {Author {1=1}} \
-        {Subject {1=21}} {Any {1=1016}} } }
+set queryInfo {{{Title {1=4}} {Author {1=1003}} \
+        {Subject {1=21}} {Any {1=1016}} {Abstract {1=62}}}}
 wm minsize . 0 0
 
 set setOffset 0
@@ -793,7 +796,7 @@ proc toplevelG {w} {
     toplevel $w
     if {[info exists windowGeometry($w)]} {
         set g $windowGeometry($w)
-        if {$g != ""} {
+        if {[string length $g]} {
             wm geometry $w $g
         }
     }
@@ -819,17 +822,6 @@ if {[catch {set g $windowGeometry(.)}]} {
     wm geometry . $g
 }
 
-# Init: The geometry information for the main window is set - either
-# to a default value or to the value in windowGeometry(.)
-toplevelG .init
-place-force .init .
-message .init.top -aspect 500 -text "IrTcl" -relief raised -border 1 -font $font(bb,normal)
-text .init.msg -width 40 -height 4
-pack .init.top -side top -fill x -expand yes
-pack .init.msg -side bottom -fill both -expand yes
-wm iconify .
-update
-
 # Procedure top-down-ok-cancel {w ok-action g}
 #  w          top level widget with $w.bot-frame
 #  ok-action  ok script
@@ -1572,6 +1564,7 @@ proc explain-crash {target base} {
     global profile settingsChanged
     
     set profile($target,timeLastInit) [clock seconds]
+    set profile($target,timeLastExplain) {}
     set settingsChanged 1
 
     show-message {}
@@ -2006,7 +1999,7 @@ proc scan-up {attr} {
 
 # Procedure search-response
 # This procedure handles search-responses. If the search is successful
-# this procedure will try to retrieve a total of 20 records from the target;
+# this procedure will try to retrieve a total of 50 records from the target;
 # however not more than $presentChunk records at a time. This procedure
 # affects the following globals:
 #   $setOffset        current record position offset
@@ -2053,8 +2046,8 @@ proc search-response {} {
     set l [format "%-4d %7d" $setNo $setMax]
     .top.rset.m add command -label $l \
             -command [list recall-set $setNo]
-    if {$setMax > 20} {
-        set setMax 20
+    if {$setMax > 50} {
+        set setMax 50
     }
     set no [z39.$setNo numberOfRecordsReturned]
     dputs "Returned $no records, setOffset $setOffset"
@@ -2361,6 +2354,7 @@ proc protocol-setup-action {target w} {
     set dataBases {}
     set settingsChanged 1
 
+    puts "protocol-setup-action"
     set timedef $profile($target,timeDefine)
     if {![string length $timedef]} {
         set timedef [clock seconds]
@@ -2920,6 +2914,7 @@ proc save-geometry {} {
     global hostid
 
     set windowGeometry(.) [wm geometry .]
+    puts "root=[wm geometry .]"
 
     if {[catch {set f [open ~/.clientrc.tcl w]}]} {
         return
@@ -2936,6 +2931,9 @@ proc save-geometry {} {
     puts $f "set recordSyntax $recordSyntax"
     puts $f "set elementSetNames $elementSetNames"
     foreach n [array names windowGeometry] {
+        puts -nonewline "set [list windowGeometry($n)] "
+        puts [list $windowGeometry($n)]
+
         puts -nonewline $f "set [list windowGeometry($n)] "
         puts $f [list $windowGeometry($n)]
     }
@@ -3394,6 +3392,7 @@ proc use-attr {init} {
         {Host item}                    1033 
         {Content type}                 1034 
         {Anywhere}                     1035 
+        {Author-Title-Subject}         1036 
     }
     set w .index-setup
     global useTmpValue
@@ -3979,8 +3978,8 @@ irmenu .top.service.m
 .top.service.m add cascade -label Database -menu .top.service.m.dblist
 .top.service.m add cascade -label Present -menu .top.service.m.present
 irmenu .top.service.m.present
-.top.service.m.present add command -label {10 More} \
-        -command [list present-more 10]
+.top.service.m.present add command -label {50 More} \
+        -command [list present-more 50]
 .top.service.m.present add command -label All \
         -command [list present-more {}]
 .top.service.m add command -label Search -command {search-request 0}
@@ -4081,8 +4080,6 @@ irmenu .top.options.m.elements
 menubutton .top.help -text "Help" -menu .top.help.m
 irmenu .top.help.m
 
-.top.help.m add command -label "Help on help" \
-        -command {tkerror "Help on help not available. Sorry"}
 .top.help.m add command -label "About" -command {about-origin}
 
 # Init: Pack menu bar items.
@@ -4096,7 +4093,7 @@ button .mid.search -text Search -command {search-request 0} \
         -state disabled
 button .mid.scan -text Scan \
         -command scan-request -state disabled 
-button .mid.present -text {Present} -command [list present-more 10] \
+button .mid.present -text {Present} -command [list present-more 50] \
         -state disabled
 
 button .mid.clear -text Clear -command index-clear
@@ -4165,15 +4162,12 @@ pack .bot.a.status .bot.a.set .bot.a.message \
 set logLevel all
 if {[catch {ir-version}]} {
     set e [info sharedlibextension]
-    .init.msg insert end "Loading irtcl$e.\n"
     catch {load ${libdir}/irtcl$e irtcl}
     if {[catch {ir-version}]} {
        catch {load irtcl$e irtcl}
     }
 }
 
-.init.msg insert end "IrTcl version [lindex [ir-version] 0]\n"
-.init.msg insert end "YAZ version [lindex [ir-version] 1]\n"
 if $debugMode {        
        ir-log-init all {} irtcl.log
 } else {
@@ -4191,12 +4185,10 @@ if {[file exists ${libdir}/setup.tcl]} {
     source ${libdir}/setup.tcl
 }
 
-after 900 activateMainWindow
+after 10 activateMainWindow
 
 proc activateMainWindow {} {
     global hostid hostbase
-    destroy .init
-    wm deiconify .
     if {[string compare $hostid Default]} {
        catch {open-target $hostid $hostbase}
     }
index 24a341d..f42aa66 100644 (file)
@@ -1,12 +1,12 @@
-Summary: IrTcl - Tcl module that implements the Z39.50 protocol.
+Summary: IrTcl - Tcl extension that implements the Z39.50 protocol.
 Name: ir-tcl
-Version: 1.5
+Version: 1.3
 Release: 1
 Copyright: none
 Group: Development/Libraries
 Vendor: Index Data ApS <info@indexdata.dk>
 Url: http://www.indexdata.dk/irtcl/
-Source: ir-tcl-1.5.tar.gz
+Source: ir-tcl-1.3.tar.gz
 Requires: tcl
 BuildRoot: /var/tmp/%{name}-%{version}-root
 Packager: Adam Dickmeiss <adam@indexdata.dk>
index 7f218e5..8d3c66e 100644 (file)
--- a/irtdb.tcl
+++ b/irtdb.tcl
@@ -1,9 +1,96 @@
 # Setup file
+set {profile(AGCI EarthPulse Notes,authentication)} {}
+set {profile(AGCI EarthPulse Notes,comstack)} tcpip
+set {profile(AGCI EarthPulse Notes,databases)} epnotes
+set {profile(AGCI EarthPulse Notes,description)} {}
+set {profile(AGCI EarthPulse Notes,host)} gcrio.org
+set {profile(AGCI EarthPulse Notes,idAuthentication)} {}
+set {profile(AGCI EarthPulse Notes,largeSetLowerBound)} 2
+set {profile(AGCI EarthPulse Notes,maxResultSets)} {}
+set {profile(AGCI EarthPulse Notes,maxResultSize)} {}
+set {profile(AGCI EarthPulse Notes,maxTerms)} {}
+set {profile(AGCI EarthPulse Notes,maximumRecordSize)} 50000
+set {profile(AGCI EarthPulse Notes,mediumSetPresentNumber)} 0
+set {profile(AGCI EarthPulse Notes,multipleDatabases)} 0
+set {profile(AGCI EarthPulse Notes,namedResultSets)} 1
+set {profile(AGCI EarthPulse Notes,port)} 6674
+set {profile(AGCI EarthPulse Notes,preferredMessageSize)} 30000
+set {profile(AGCI EarthPulse Notes,presentChunk)} 4
+set {profile(AGCI EarthPulse Notes,protocol)} Z39
+set {profile(AGCI EarthPulse Notes,queryCCL)} 0
+set {profile(AGCI EarthPulse Notes,queryRPN)} 1
+set {profile(AGCI EarthPulse Notes,recentNews)} {}
+set {profile(AGCI EarthPulse Notes,smallSetUpperBound)} 0
+set {profile(AGCI EarthPulse Notes,targetInfoName)} {}
+set {profile(AGCI EarthPulse Notes,timeDefine)} 944954141
+set {profile(AGCI EarthPulse Notes,timeLastExplain)} {}
+set {profile(AGCI EarthPulse Notes,timeLastInit)} 944957715
+set {profile(AGCI EarthPulse Notes,welcomeMessage)} {}
+set {profile(AGCI EarthPulse Notes,windowNumber)} 1
+set {profile(AGCI Elements of Change,authentication)} {}
+set {profile(AGCI Elements of Change,comstack)} tcpip
+set {profile(AGCI Elements of Change,databases)} eoc
+set {profile(AGCI Elements of Change,description)} {}
+set {profile(AGCI Elements of Change,host)} gcrio.org
+set {profile(AGCI Elements of Change,idAuthentication)} {}
+set {profile(AGCI Elements of Change,largeSetLowerBound)} 2
+set {profile(AGCI Elements of Change,maxResultSets)} {}
+set {profile(AGCI Elements of Change,maxResultSize)} {}
+set {profile(AGCI Elements of Change,maxTerms)} {}
+set {profile(AGCI Elements of Change,maximumRecordSize)} 50000
+set {profile(AGCI Elements of Change,mediumSetPresentNumber)} 0
+set {profile(AGCI Elements of Change,multipleDatabases)} 0
+set {profile(AGCI Elements of Change,namedResultSets)} 1
+set {profile(AGCI Elements of Change,port)} 6671
+set {profile(AGCI Elements of Change,preferredMessageSize)} 30000
+set {profile(AGCI Elements of Change,presentChunk)} 4
+set {profile(AGCI Elements of Change,protocol)} Z39
+set {profile(AGCI Elements of Change,queryCCL)} 0
+set {profile(AGCI Elements of Change,queryRPN)} 1
+set {profile(AGCI Elements of Change,recentNews)} {}
+set {profile(AGCI Elements of Change,smallSetUpperBound)} 0
+set {profile(AGCI Elements of Change,targetInfoName)} {}
+set {profile(AGCI Elements of Change,timeDefine)} 944954152
+set {profile(AGCI Elements of Change,timeLastExplain)} {}
+set {profile(AGCI Elements of Change,timeLastInit)} 944955721
+set {profile(AGCI Elements of Change,welcomeMessage)} {}
+set {profile(AGCI Elements of Change,windowNumber)} 2
+set profile(AGCI,authentication) {}
+set profile(AGCI,comstack) tcpip
+set profile(AGCI,description) {}
+set profile(AGCI,host) {}
+set profile(AGCI,idAuthentication) {}
+set profile(AGCI,largeSetLowerBound) 2
+set profile(AGCI,maxResultSets) {}
+set profile(AGCI,maxResultSize) {}
+set profile(AGCI,maxTerms) {}
+set profile(AGCI,maximumRecordSize) 50000
+set profile(AGCI,mediumSetPresentNumber) 0
+set profile(AGCI,multipleDatabases) 0
+set profile(AGCI,namedResultSets) 1
+set profile(AGCI,port) 210
+set profile(AGCI,preferredMessageSize) 30000
+set profile(AGCI,presentChunk) 4
+set profile(AGCI,protocol) Z39
+set profile(AGCI,queryCCL) 0
+set profile(AGCI,queryRPN) 1
+set profile(AGCI,recentNews) {}
+set profile(AGCI,smallSetUpperBound) 0
+set profile(AGCI,targetInfoName) {}
+set profile(AGCI,targetMaxResultSets) {}
+set profile(AGCI,targetMaxResultSize) {}
+set profile(AGCI,targetMaxTerms) {}
+set profile(AGCI,timeDefine) 944954173
+set profile(AGCI,timeLastExplain) {}
+set profile(AGCI,timeLastInit) {}
+set profile(AGCI,welcomeMessage) {}
+set profile(AGCI,windowNumber) 14
 set profile(BIBSYS,authentication) {}
 set profile(BIBSYS,comstack) tcpip
 set profile(BIBSYS,databases) {BIBSYS PERI}
-set profile(BIBSYS,description) BIBSYS
+set profile(BIBSYS,description) {}
 set profile(BIBSYS,host) z3950.bibsys.no
+set profile(BIBSYS,idAuthentication) {}
 set profile(BIBSYS,largeSetLowerBound) 2
 set profile(BIBSYS,maxResultSets) {}
 set profile(BIBSYS,maxResultSize) {}
@@ -12,7 +99,7 @@ set profile(BIBSYS,maximumRecordSize) 50000
 set profile(BIBSYS,mediumSetPresentNumber) 0
 set profile(BIBSYS,multipleDatabases) 0
 set profile(BIBSYS,namedResultSets) 1
-set profile(BIBSYS,port) 2100
+set profile(BIBSYS,port) 210
 set profile(BIBSYS,preferredMessageSize) 30000
 set profile(BIBSYS,presentChunk) 4
 set profile(BIBSYS,protocol) Z39
@@ -21,19 +108,20 @@ set profile(BIBSYS,queryRPN) 1
 set profile(BIBSYS,recentNews) {}
 set profile(BIBSYS,smallSetUpperBound) 0
 set profile(BIBSYS,targetInfoName) {}
-set profile(BIBSYS,timeDefine) 878567355
+set profile(BIBSYS,timeDefine) 944954177
 set profile(BIBSYS,timeLastExplain) {}
-set profile(BIBSYS,timeLastInit) 918732216
+set profile(BIBSYS,timeLastInit) {}
 set profile(BIBSYS,welcomeMessage) {}
-set profile(BIBSYS,windowNumber) 3
+set profile(BIBSYS,windowNumber) 4
 set {profile(Bell Laboratories Library Network,authentication)} {}
 set {profile(Bell Laboratories Library Network,comstack)} tcpip
-set {profile(Bell Laboratories Library Network,databases)} {ir-explain-1 books gils netlib ls-lr z39dbs acc1 acc2 acc3 factbook books}
-set {profile(Bell Laboratories Library Network,description)} {Bell Laboratories Library Network}
+set {profile(Bell Laboratories Library Network,databases)} {books factbook gils netlib}
+set {profile(Bell Laboratories Library Network,description)} {}
 set {profile(Bell Laboratories Library Network,host)} z3950.bell-labs.com
+set {profile(Bell Laboratories Library Network,idAuthentication)} {}
 set {profile(Bell Laboratories Library Network,largeSetLowerBound)} 2
-set {profile(Bell Laboratories Library Network,maxResultSets)} 100
-set {profile(Bell Laboratories Library Network,maxResultSize)} 600000
+set {profile(Bell Laboratories Library Network,maxResultSets)} {}
+set {profile(Bell Laboratories Library Network,maxResultSize)} {}
 set {profile(Bell Laboratories Library Network,maxTerms)} {}
 set {profile(Bell Laboratories Library Network,maximumRecordSize)} 50000
 set {profile(Bell Laboratories Library Network,mediumSetPresentNumber)} 0
@@ -47,97 +135,152 @@ set {profile(Bell Laboratories Library Network,queryCCL)} 0
 set {profile(Bell Laboratories Library Network,queryRPN)} 1
 set {profile(Bell Laboratories Library Network,recentNews)} {}
 set {profile(Bell Laboratories Library Network,smallSetUpperBound)} 0
-set {profile(Bell Laboratories Library Network,targetInfoName)} {Lucent Technologies Research Server}
-set {profile(Bell Laboratories Library Network,timeDefine)} 878567355
-set {profile(Bell Laboratories Library Network,timeLastExplain)} 891519770
-set {profile(Bell Laboratories Library Network,timeLastInit)} 943890883
-set {profile(Bell Laboratories Library Network,welcomeMessage)} {Salutations - this is Lucent Technologies experimental Z39.50 server. No guarentees, but free and unlimited access!}
-set {profile(Bell Laboratories Library Network,windowNumber)} 17
-set {profile(Bibliothèque Nationale du Québec,authentication)} {}
-set {profile(Bibliothèque Nationale du Québec,comstack)} tcpip
-set {profile(Bibliothèque Nationale du Québec,databases)} IRIS
-set {profile(Bibliothèque Nationale du Québec,description)} {Bibliothèque Nationale du Québec}
-set {profile(Bibliothèque Nationale du Québec,host)} www.biblinat.gouv.qc.ca
-set {profile(Bibliothèque Nationale du Québec,largeSetLowerBound)} 2
-set {profile(Bibliothèque Nationale du Québec,maxResultSets)} {}
-set {profile(Bibliothèque Nationale du Québec,maxResultSize)} {}
-set {profile(Bibliothèque Nationale du Québec,maxTerms)} {}
-set {profile(Bibliothèque Nationale du Québec,maximumRecordSize)} 50000
-set {profile(Bibliothèque Nationale du Québec,mediumSetPresentNumber)} 0
-set {profile(Bibliothèque Nationale du Québec,multipleDatabases)} 0
-set {profile(Bibliothèque Nationale du Québec,namedResultSets)} 1
-set {profile(Bibliothèque Nationale du Québec,port)} 210
-set {profile(Bibliothèque Nationale du Québec,preferredMessageSize)} 30000
-set {profile(Bibliothèque Nationale du Québec,presentChunk)} 4
-set {profile(Bibliothèque Nationale du Québec,protocol)} Z39
-set {profile(Bibliothèque Nationale du Québec,queryCCL)} 0
-set {profile(Bibliothèque Nationale du Québec,queryRPN)} 1
-set {profile(Bibliothèque Nationale du Québec,recentNews)} {}
-set {profile(Bibliothèque Nationale du Québec,smallSetUpperBound)} 0
-set {profile(Bibliothèque Nationale du Québec,targetInfoName)} {}
-set {profile(Bibliothèque Nationale du Québec,timeDefine)} 878567355
-set {profile(Bibliothèque Nationale du Québec,timeLastExplain)} {}
-set {profile(Bibliothèque Nationale du Québec,timeLastInit)} 887288466
-set {profile(Bibliothèque Nationale du Québec,welcomeMessage)} {}
-set {profile(Bibliothèque Nationale du Québec,windowNumber)} 8
-set {profile(British Library,authentication)} {}
-set {profile(British Library,comstack)} tcpip
-set {profile(British Library,databases)} {EXPLAIN MAR SRI}
-set {profile(British Library,description)} {}
-set {profile(British Library,descripton)} {The British Library Z3950 target provides access to two major BL files: the Science Reference Information Service (SRIS) and the Document Supply Centre (DSC) Monographs.}
-set {profile(British Library,host)} z3950.bl.uk
-set {profile(British Library,idAuthentication)} {}
-set {profile(British Library,largeSetLowerBound)} 2
-set {profile(British Library,maxResultSets)} -1
-set {profile(British Library,maxResultSize)} 10000
-set {profile(British Library,maxTerms)} 20
-set {profile(British Library,maximumRecordSize)} 50000
-set {profile(British Library,mediumSetPresentNumber)} 0
-set {profile(British Library,multipleDatabases)} 0
-set {profile(British Library,namedResultSets)} 1
-set {profile(British Library,port)} 2020
-set {profile(British Library,preferredMessageSize)} 30000
-set {profile(British Library,presentChunk)} 4
-set {profile(British Library,protocol)} Z39
-set {profile(British Library,queryCCL)} 0
-set {profile(British Library,queryRPN)} 1
-set {profile(British Library,recentNews)} {strings {language {text {This is the British Library's experimental Z3950 server developed as part of the Library's involvement  in the project OPAC Network in Europe (ONE)}} } }
-set {profile(British Library,smallSetUpperBound)} 0
-set {profile(British Library,targetInfoName)} LIB
-set {profile(British Library,timeDefine)} {}
-set {profile(British Library,timeLastExplain)} 895070887
-set {profile(British Library,timeLastInit)} 895070887
-set {profile(British Library,welcomeMessage)} {Welcome to the British Library's Z3950 target.}
-set {profile(British Library,windowNumber)} 2
-set profile(DanBib,authentication) {}
-set profile(DanBib,comstack) tcpip
-set profile(DanBib,databases) {}
-set profile(DanBib,description) {Danish Union Catalogue}
-set profile(DanBib,descripton) {This server allows access to various scandinavian OPAC's}
-set profile(DanBib,host) z3950.dbc.dk
-set profile(DanBib,idAuthentication) {}
-set profile(DanBib,largeSetLowerBound) 2
-set profile(DanBib,maxResultSets) {}
-set profile(DanBib,maxResultSize) {}
-set profile(DanBib,maxTerms) {}
-set profile(DanBib,maximumRecordSize) 50000
-set profile(DanBib,mediumSetPresentNumber) 0
-set profile(DanBib,multipleDatabases) {}
-set profile(DanBib,namedResultSets) {}
-set profile(DanBib,port) 210
-set profile(DanBib,preferredMessageSize) 30000
-set profile(DanBib,presentChunk) 4
-set profile(DanBib,protocol) Z39
-set profile(DanBib,queryCCL) 0
-set profile(DanBib,queryRPN) 1
-set profile(DanBib,recentNews) {}
-set profile(DanBib,smallSetUpperBound) 0
-set profile(DanBib,targetInfoName) {}
-set profile(DanBib,timeDefine) 878567355
-set profile(DanBib,timeLastExplain) 893854494
-set profile(DanBib,timeLastInit) 893854061
-set profile(DanBib,welcomeMessage) {}
-set profile(DanBib,windowNumber) 5
+set {profile(Bell Laboratories Library Network,targetInfoName)} {}
+set {profile(Bell Laboratories Library Network,timeDefine)} {}
+set {profile(Bell Laboratories Library Network,timeLastExplain)} {}
+set {profile(Bell Laboratories Library Network,timeLastInit)} 944953393
+set {profile(Bell Laboratories Library Network,welcomeMessage)} {}
+set {profile(Bell Laboratories Library Network,windowNumber)} 15
+set {profile(Bibliotheque Nationale du Quebec,authentication)} {}
+set {profile(Bibliotheque Nationale du Quebec,comstack)} tcpip
+set {profile(Bibliotheque Nationale du Quebec,databases)} IRIS
+set {profile(Bibliotheque Nationale du Quebec,description)} {}
+set {profile(Bibliotheque Nationale du Quebec,host)} www.biblinat.gouv.qc.ca
+set {profile(Bibliotheque Nationale du Quebec,idAuthentication)} {}
+set {profile(Bibliotheque Nationale du Quebec,largeSetLowerBound)} 2
+set {profile(Bibliotheque Nationale du Quebec,maxResultSets)} {}
+set {profile(Bibliotheque Nationale du Quebec,maxResultSize)} {}
+set {profile(Bibliotheque Nationale du Quebec,maxTerms)} {}
+set {profile(Bibliotheque Nationale du Quebec,maximumRecordSize)} 50000
+set {profile(Bibliotheque Nationale du Quebec,mediumSetPresentNumber)} 0
+set {profile(Bibliotheque Nationale du Quebec,multipleDatabases)} 0
+set {profile(Bibliotheque Nationale du Quebec,namedResultSets)} 1
+set {profile(Bibliotheque Nationale du Quebec,port)} 210
+set {profile(Bibliotheque Nationale du Quebec,preferredMessageSize)} 30000
+set {profile(Bibliotheque Nationale du Quebec,presentChunk)} 4
+set {profile(Bibliotheque Nationale du Quebec,protocol)} Z39
+set {profile(Bibliotheque Nationale du Quebec,queryCCL)} 0
+set {profile(Bibliotheque Nationale du Quebec,queryRPN)} 1
+set {profile(Bibliotheque Nationale du Quebec,recentNews)} {}
+set {profile(Bibliotheque Nationale du Quebec,smallSetUpperBound)} 0
+set {profile(Bibliotheque Nationale du Quebec,targetInfoName)} {}
+set {profile(Bibliotheque Nationale du Quebec,timeDefine)} 944954227
+set {profile(Bibliotheque Nationale du Quebec,timeLastExplain)} {}
+set {profile(Bibliotheque Nationale du Quebec,timeLastInit)} 944955787
+set {profile(Bibliotheque Nationale du Quebec,welcomeMessage)} {}
+set {profile(Bibliotheque Nationale du Quebec,windowNumber)} 8
+set {profile(Colorado Alliance of Research Libraries,authentication)} {}
+set {profile(Colorado Alliance of Research Libraries,comstack)} tcpip
+set {profile(Colorado Alliance of Research Libraries,databases)} {AIM ARA BEM CDE CSP DPL EST LAM LUT MCC MIN NEL NEU NJC OTE PPC PUE RGU RRC STR TKO TRI WYO}
+set {profile(Colorado Alliance of Research Libraries,description)} {}
+set {profile(Colorado Alliance of Research Libraries,host)} 192.54.81.3
+set {profile(Colorado Alliance of Research Libraries,idAuthentication)} {}
+set {profile(Colorado Alliance of Research Libraries,largeSetLowerBound)} 2
+set {profile(Colorado Alliance of Research Libraries,maxResultSets)} {}
+set {profile(Colorado Alliance of Research Libraries,maxResultSize)} {}
+set {profile(Colorado Alliance of Research Libraries,maxTerms)} {}
+set {profile(Colorado Alliance of Research Libraries,maximumRecordSize)} 50000
+set {profile(Colorado Alliance of Research Libraries,mediumSetPresentNumber)} 0
+set {profile(Colorado Alliance of Research Libraries,multipleDatabases)} 0
+set {profile(Colorado Alliance of Research Libraries,namedResultSets)} 1
+set {profile(Colorado Alliance of Research Libraries,port)} 210
+set {profile(Colorado Alliance of Research Libraries,preferredMessageSize)} 30000
+set {profile(Colorado Alliance of Research Libraries,presentChunk)} 4
+set {profile(Colorado Alliance of Research Libraries,protocol)} Z39
+set {profile(Colorado Alliance of Research Libraries,queryCCL)} 0
+set {profile(Colorado Alliance of Research Libraries,queryRPN)} 1
+set {profile(Colorado Alliance of Research Libraries,recentNews)} {}
+set {profile(Colorado Alliance of Research Libraries,smallSetUpperBound)} 0
+set {profile(Colorado Alliance of Research Libraries,targetInfoName)} {}
+set {profile(Colorado Alliance of Research Libraries,timeDefine)} 944954480
+set {profile(Colorado Alliance of Research Libraries,timeLastExplain)} {}
+set {profile(Colorado Alliance of Research Libraries,timeLastInit)} {}
+set {profile(Colorado Alliance of Research Libraries,welcomeMessage)} {}
+set {profile(Colorado Alliance of Research Libraries,windowNumber)} 13
+set {profile(DTV Alis,authentication)} {}
+set {profile(DTV Alis,comstack)} tcpip
+set {profile(DTV Alis,databases)} DTV01
+set {profile(DTV Alis,description)} {}
+set {profile(DTV Alis,host)} odin.dtv.dk
+set {profile(DTV Alis,idAuthentication)} {}
+set {profile(DTV Alis,largeSetLowerBound)} 2
+set {profile(DTV Alis,maxResultSets)} {}
+set {profile(DTV Alis,maxResultSize)} {}
+set {profile(DTV Alis,maxTerms)} {}
+set {profile(DTV Alis,maximumRecordSize)} 50000
+set {profile(DTV Alis,mediumSetPresentNumber)} 0
+set {profile(DTV Alis,multipleDatabases)} 0
+set {profile(DTV Alis,namedResultSets)} 1
+set {profile(DTV Alis,port)} 210
+set {profile(DTV Alis,preferredMessageSize)} 30000
+set {profile(DTV Alis,presentChunk)} 4
+set {profile(DTV Alis,protocol)} Z39
+set {profile(DTV Alis,queryCCL)} 0
+set {profile(DTV Alis,queryRPN)} 1
+set {profile(DTV Alis,recentNews)} {}
+set {profile(DTV Alis,smallSetUpperBound)} 0
+set {profile(DTV Alis,targetInfoName)} {}
+set {profile(DTV Alis,timeDefine)} 944954772
+set {profile(DTV Alis,timeLastExplain)} {}
+set {profile(DTV Alis,timeLastInit)} 944956585
+set {profile(DTV Alis,welcomeMessage)} {}
+set {profile(DTV Alis,windowNumber)} 6
+set {profile(DanBib V2,authentication)} {}
+set {profile(DanBib V2,comstack)} tcpip
+set {profile(DanBib V2,databases)} danbibv2
+set {profile(DanBib V2,description)} {}
+set {profile(DanBib V2,host)} z3950.dbc.dk
+set {profile(DanBib V2,idAuthentication)} {}
+set {profile(DanBib V2,largeSetLowerBound)} 2
+set {profile(DanBib V2,maxResultSets)} {}
+set {profile(DanBib V2,maxResultSize)} {}
+set {profile(DanBib V2,maxTerms)} {}
+set {profile(DanBib V2,maximumRecordSize)} 50000
+set {profile(DanBib V2,mediumSetPresentNumber)} 0
+set {profile(DanBib V2,multipleDatabases)} 0
+set {profile(DanBib V2,namedResultSets)} 1
+set {profile(DanBib V2,port)} 210
+set {profile(DanBib V2,preferredMessageSize)} 30000
+set {profile(DanBib V2,presentChunk)} 4
+set {profile(DanBib V2,protocol)} Z39
+set {profile(DanBib V2,queryCCL)} 0
+set {profile(DanBib V2,queryRPN)} 1
+set {profile(DanBib V2,recentNews)} {}
+set {profile(DanBib V2,smallSetUpperBound)} 0
+set {profile(DanBib V2,targetInfoName)} {}
+set {profile(DanBib V2,timeDefine)} 944954541
+set {profile(DanBib V2,timeLastExplain)} {}
+set {profile(DanBib V2,timeLastInit)} 944954561
+set {profile(DanBib V2,welcomeMessage)} {}
+set {profile(DanBib V2,windowNumber)} 12
+set {profile(Data Research Associates,authentication)} {}
+set {profile(Data Research Associates,comstack)} tcpip
+set {profile(Data Research Associates,databases)} DREWDB
+set {profile(Data Research Associates,description)} {}
+set {profile(Data Research Associates,host)} dranet.dra.com
+set {profile(Data Research Associates,idAuthentication)} {}
+set {profile(Data Research Associates,largeSetLowerBound)} 2
+set {profile(Data Research Associates,maxResultSets)} {}
+set {profile(Data Research Associates,maxResultSize)} {}
+set {profile(Data Research Associates,maxTerms)} {}
+set {profile(Data Research Associates,maximumRecordSize)} 50000
+set {profile(Data Research Associates,mediumSetPresentNumber)} 0
+set {profile(Data Research Associates,multipleDatabases)} 0
+set {profile(Data Research Associates,namedResultSets)} 1
+set {profile(Data Research Associates,port)} 210
+set {profile(Data Research Associates,preferredMessageSize)} 30000
+set {profile(Data Research Associates,presentChunk)} 4
+set {profile(Data Research Associates,protocol)} Z39
+set {profile(Data Research Associates,queryCCL)} 0
+set {profile(Data Research Associates,queryRPN)} 1
+set {profile(Data Research Associates,recentNews)} {}
+set {profile(Data Research Associates,smallSetUpperBound)} 0
+set {profile(Data Research Associates,targetInfoName)} {}
+set {profile(Data Research Associates,timeDefine)} 944954622
+set {profile(Data Research Associates,timeLastExplain)} {}
+set {profile(Data Research Associates,timeLastInit)} 944954715
+set {profile(Data Research Associates,welcomeMessage)} {}
+set {profile(Data Research Associates,windowNumber)} 5
 set profile(Default,authentication) {}
 set profile(Default,comstack) tcpip
 set profile(Default,description) {}
@@ -164,413 +307,256 @@ set profile(Default,timeLastExplain) {}
 set profile(Default,timeLastInit) {}
 set profile(Default,welcomeMessage) {}
 set profile(Default,windowNumber) 21
-set profile(LOC,authentication) {}
-set profile(LOC,comstack) tcpip
-set profile(LOC,databases) {BOOKS NAMES AUTH MAPS MUSIC BIB SERIALS SUBJECTS}
-set profile(LOC,description) {Library of Congress}
-set profile(LOC,host) IBM2.LOC.gov
-set profile(LOC,idAuthentication) {}
-set profile(LOC,largeSetLowerBound) 2
-set profile(LOC,maxResultSets) {}
-set profile(LOC,maxResultSize) {}
-set profile(LOC,maxTerms) {}
-set profile(LOC,maximumRecordSize) 16384
-set profile(LOC,mediumSetPresentNumber) 0
-set profile(LOC,multipleDatabases) 0
-set profile(LOC,namedResultSets) 0
-set profile(LOC,port) 2210
-set profile(LOC,preferredMessageSize) 16384
-set profile(LOC,presentChunk) 4
-set profile(LOC,protocol) Z39
-set profile(LOC,queryCCL) 0
-set profile(LOC,queryRPN) 1
-set profile(LOC,recentNews) {}
-set profile(LOC,smallSetUpperBound) 0
-set profile(LOC,targetInfoName) { }
-set profile(LOC,targetMaxResultSets) {}
-set profile(LOC,targetMaxResultSize) {}
-set profile(LOC,targetMaxTerms) {}
-set profile(LOC,timeDefine) 878567355
-set profile(LOC,timeLastExplain) {}
-set profile(LOC,timeLastInit) 918732361
-set profile(LOC,welcomeMessage) {}
-set profile(LOC,windowNumber) 12
-set {profile(OCLC FirstSearch,authentication)} {}
-set {profile(OCLC FirstSearch,comstack)} tcpip
-set {profile(OCLC FirstSearch,databases)} {AGRICOLA MEDLINE}
-set {profile(OCLC FirstSearch,description)} {}
-set {profile(OCLC FirstSearch,host)} Tikal.dev.oclc.org
-set {profile(OCLC FirstSearch,idAuthentication)} {}
-set {profile(OCLC FirstSearch,largeSetLowerBound)} 2
-set {profile(OCLC FirstSearch,maxResultSets)} {}
-set {profile(OCLC FirstSearch,maxResultSize)} {}
-set {profile(OCLC FirstSearch,maxTerms)} {}
-set {profile(OCLC FirstSearch,maximumRecordSize)} 50000
-set {profile(OCLC FirstSearch,mediumSetPresentNumber)} 0
-set {profile(OCLC FirstSearch,multipleDatabases)} 0
-set {profile(OCLC FirstSearch,namedResultSets)} 1
-set {profile(OCLC FirstSearch,port)} 210
-set {profile(OCLC FirstSearch,preferredMessageSize)} 30000
-set {profile(OCLC FirstSearch,presentChunk)} 4
-set {profile(OCLC FirstSearch,protocol)} Z39
-set {profile(OCLC FirstSearch,queryCCL)} 0
-set {profile(OCLC FirstSearch,queryRPN)} 1
-set {profile(OCLC FirstSearch,recentNews)} {}
-set {profile(OCLC FirstSearch,smallSetUpperBound)} 0
-set {profile(OCLC FirstSearch,targetInfoName)} {OCLC FirstSearch}
-set {profile(OCLC FirstSearch,targetMaxResultSets)} {}
-set {profile(OCLC FirstSearch,targetMaxResultSize)} {}
-set {profile(OCLC FirstSearch,targetMaxTerms)} {}
-set {profile(OCLC FirstSearch,timeDefine)} {}
-set {profile(OCLC FirstSearch,timeLastExplain)} {}
-set {profile(OCLC FirstSearch,timeLastInit)} 886167890
-set {profile(OCLC FirstSearch,welcomeMessage)} {}
-set {profile(OCLC FirstSearch,windowNumber)} 16
-set profile(Penn,authentication) {}
-set profile(Penn,comstack) tcpip
-set profile(Penn,databases) CATALOG
-set profile(Penn,description) {Penn State's Library}
-set profile(Penn,host) 128.118.88.200
-set profile(Penn,idAuthentication) {}
-set profile(Penn,largeSetLowerBound) 2
-set profile(Penn,maxResultSets) {}
-set profile(Penn,maxResultSize) {}
-set profile(Penn,maxTerms) {}
-set profile(Penn,maximumRecordSize) 16384
-set profile(Penn,mediumSetPresentNumber) 0
-set profile(Penn,multipleDatabases) 0
-set profile(Penn,namedResultSets) 0
-set profile(Penn,port) 210
-set profile(Penn,preferredMessageSize) 8192
-set profile(Penn,presentChunk) 4
-set profile(Penn,protocol) Z39
-set profile(Penn,queryCCL) 0
-set profile(Penn,queryRPN) 1
-set profile(Penn,recentNews) {}
-set profile(Penn,smallSetUpperBound) 0
-set profile(Penn,targetInfoName) {}
-set profile(Penn,targetMaxResultSets) {}
-set profile(Penn,targetMaxResultSize) {}
-set profile(Penn,targetMaxTerms) {}
-set profile(Penn,timeDefine) 878567355
-set profile(Penn,timeLastExplain) {}
-set profile(Penn,timeLastInit) 887289434
-set profile(Penn,welcomeMessage) {}
-set profile(Penn,windowNumber) 20
-set profile(Stein,authentication) {}
-set profile(Stein,comstack) tcpip
-set profile(Stein,databases) {lbopac miopac}
-set profile(Stein,description) {}
-set profile(Stein,descripton) {This is an demonstration service.}
-set profile(Stein,host) one.stmk.gv.at
-set profile(Stein,idAuthentication) {}
-set profile(Stein,largeSetLowerBound) 2
-set profile(Stein,maxResultSets) 25
-set profile(Stein,maxResultSize) 10000
-set profile(Stein,maxTerms) 15
-set profile(Stein,maximumRecordSize) 50000
-set profile(Stein,mediumSetPresentNumber) 0
-set profile(Stein,multipleDatabases) 0
-set profile(Stein,namedResultSets) 1
-set profile(Stein,port) 2100
-set profile(Stein,preferredMessageSize) 30000
-set profile(Stein,presentChunk) 4
-set profile(Stein,protocol) Z39
-set profile(Stein,queryCCL) 0
-set profile(Stein,queryRPN) 1
-set profile(Stein,recentNews) {strings {language {text {This is the experimental Z39.50 server of Steiermaerkische Landesbibliothek developed as part of the Library's envolvement in Project OPAC Network in Europe (ONE)}} } }
-set profile(Stein,smallSetUpperBound) 0
-set profile(Stein,targetInfoName) {LB Z39.50-server}
-set profile(Stein,timeDefine) {}
-set profile(Stein,timeLastExplain) 893857722
-set profile(Stein,timeLastInit) 897482265
-set profile(Stein,welcomeMessage) {Welcome to the Z39.50 target of Steiermaerkische Landesbibliothek, Graz, Austria.}
-set profile(Stein,windowNumber) 13
-set profile(arcatarget,authentication) {}
-set profile(arcatarget,comstack) tcpip
-set profile(arcatarget,databases) {IEI-books IR-Explain-1}
-set profile(arcatarget,description) {ARCA Target}
-set profile(arcatarget,host) arca.iei.pi.cnr.it
-set profile(arcatarget,idAuthentication) {}
-set profile(arcatarget,largeSetLowerBound) 2
-set profile(arcatarget,maxResultSets) 20
-set profile(arcatarget,maxResultSize) 4000
-set profile(arcatarget,maxTerms) 15
-set profile(arcatarget,maximumRecordSize) 50000
-set profile(arcatarget,mediumSetPresentNumber) 0
-set profile(arcatarget,multipleDatabases) 0
-set profile(arcatarget,namedResultSets) 1
-set profile(arcatarget,port) 2000
-set profile(arcatarget,preferredMessageSize) 30000
-set profile(arcatarget,presentChunk) 4
-set profile(arcatarget,protocol) Z39
-set profile(arcatarget,queryCCL) 0
-set profile(arcatarget,queryRPN) 1
-set profile(arcatarget,recentNews) {}
-set profile(arcatarget,smallSetUpperBound) 0
-set profile(arcatarget,targetInfoName) ARCA
-set profile(arcatarget,targetMaxResultSets) {}
-set profile(arcatarget,targetMaxResultSize) {}
-set profile(arcatarget,targetMaxTerms) {}
-set profile(arcatarget,timeDefine) 878567355
-set profile(arcatarget,timeLastExplain) 887289477
-set profile(arcatarget,timeLastInit) 887289477
-set profile(arcatarget,welcomeMessage) {buon lavoro}
-set profile(arcatarget,windowNumber) 9
-set profile(author,authentication) {}
-set profile(author,comstack) tcpip
-set profile(author,databases) {spain portugal france england belgium}
-set profile(author,description) {}
-set profile(author,host) mars.dtv.dk
-set profile(author,idAuthentication) {}
-set profile(author,largeSetLowerBound) 2
-set profile(author,maxResultSets) {}
-set profile(author,maxResultSize) {}
-set profile(author,maxTerms) {}
-set profile(author,maximumRecordSize) 50000
-set profile(author,mediumSetPresentNumber) 0
-set profile(author,multipleDatabases) 0
-set profile(author,namedResultSets) 1
-set profile(author,port) 8889
-set profile(author,preferredMessageSize) 30000
-set profile(author,presentChunk) 4
-set profile(author,protocol) Z39
-set profile(author,queryCCL) 0
-set profile(author,queryRPN) 1
-set profile(author,recentNews) {}
-set profile(author,smallSetUpperBound) 0
-set profile(author,targetInfoName) {}
-set profile(author,timeDefine) 878567355
-set profile(author,timeLastExplain) {}
-set profile(author,timeLastInit) 891519833
-set profile(author,welcomeMessage) {}
-set profile(author,windowNumber) 19
-set profile(bagel.indexdata.dk,authentication) {}
-set profile(bagel.indexdata.dk,comstack) tcpip
-set profile(bagel.indexdata.dk,databases) {dranet.dra.com IR-Explain-1 gils marc}
-set profile(bagel.indexdata.dk,description) {}
-set profile(bagel.indexdata.dk,host) bagel.indexdata.dk
-set profile(bagel.indexdata.dk,idAuthentication) {}
-set profile(bagel.indexdata.dk,largeSetLowerBound) 2
-set profile(bagel.indexdata.dk,maxResultSets) {}
-set profile(bagel.indexdata.dk,maxResultSize) {}
-set profile(bagel.indexdata.dk,maxTerms) {}
-set profile(bagel.indexdata.dk,maximumRecordSize) 50000
-set profile(bagel.indexdata.dk,mediumSetPresentNumber) 0
-set profile(bagel.indexdata.dk,multipleDatabases) 1
-set profile(bagel.indexdata.dk,namedResultSets) 1
-set profile(bagel.indexdata.dk,port) 210
-set profile(bagel.indexdata.dk,preferredMessageSize) 30000
-set profile(bagel.indexdata.dk,presentChunk) 4
-set profile(bagel.indexdata.dk,protocol) Z39
-set profile(bagel.indexdata.dk,queryCCL) 0
-set profile(bagel.indexdata.dk,queryRPN) 1
-set profile(bagel.indexdata.dk,recentNews) {}
-set profile(bagel.indexdata.dk,smallSetUpperBound) 0
-set profile(bagel.indexdata.dk,targetInfoName) Zebra
-set profile(bagel.indexdata.dk,timeDefine) {}
-set profile(bagel.indexdata.dk,timeLastExplain) 943890802
-set profile(bagel.indexdata.dk,timeLastInit) 943890791
-set profile(bagel.indexdata.dk,welcomeMessage) {}
-set profile(bagel.indexdata.dk,windowNumber) 4
-set profile(bagel9999,authentication) {}
-set profile(bagel9999,comstack) tcpip
-set profile(bagel9999,databases) Default
-set profile(bagel9999,description) {}
-set profile(bagel9999,host) bagel
-set profile(bagel9999,idAuthentication) {}
-set profile(bagel9999,largeSetLowerBound) 2
-set profile(bagel9999,maxResultSets) {}
-set profile(bagel9999,maxResultSize) {}
-set profile(bagel9999,maxTerms) {}
-set profile(bagel9999,maximumRecordSize) 50000
-set profile(bagel9999,mediumSetPresentNumber) 0
-set profile(bagel9999,multipleDatabases) 0
-set profile(bagel9999,namedResultSets) 1
-set profile(bagel9999,port) 9999
-set profile(bagel9999,preferredMessageSize) 30000
-set profile(bagel9999,presentChunk) 4
-set profile(bagel9999,protocol) Z39
-set profile(bagel9999,queryCCL) 0
-set profile(bagel9999,queryRPN) 1
-set profile(bagel9999,recentNews) {}
-set profile(bagel9999,smallSetUpperBound) 0
-set profile(bagel9999,targetInfoName) {}
-set profile(bagel9999,timeDefine) {}
-set profile(bagel9999,timeLastExplain) {}
-set profile(bagel9999,timeLastInit) 891524781
-set profile(bagel9999,welcomeMessage) {}
-set profile(bagel9999,windowNumber) 10
-set profile(dranet,authentication) {}
-set profile(dranet,comstack) tcpip
-set profile(dranet,databases) drewdb
-set profile(dranet,description) dranet
-set profile(dranet,host) dranet.dra.com
-set profile(dranet,idAuthentication) {}
-set profile(dranet,largeSetLowerBound) 2
-set profile(dranet,maxResultSets) {}
-set profile(dranet,maxResultSize) {}
-set profile(dranet,maxTerms) {}
-set profile(dranet,maximumRecordSize) 563840
-set profile(dranet,mediumSetPresentNumber) 0
-set profile(dranet,multipleDatabases) 0
-set profile(dranet,namedResultSets) 1
-set profile(dranet,port) 210
-set profile(dranet,preferredMessageSize) 563840
-set profile(dranet,presentChunk) 4
-set profile(dranet,protocol) Z39
-set profile(dranet,queryCCL) 0
-set profile(dranet,queryRPN) 1
-set profile(dranet,recentNews) {}
-set profile(dranet,smallSetUpperBound) 0
-set profile(dranet,targetInfoName) {}
-set profile(dranet,targetMaxResultSets) {}
-set profile(dranet,targetMaxResultSize) {}
-set profile(dranet,targetMaxTerms) {}
-set profile(dranet,timeDefine) 878567355
-set profile(dranet,timeLastExplain) {}
-set profile(dranet,timeLastInit) 887289573
-set profile(dranet,welcomeMessage) {}
-set profile(dranet,windowNumber) 7
-set profile(libris,authentication) {}
-set profile(libris,comstack) tcpip
-set profile(libris,databases) libr
-set profile(libris,description) LIBRIS
-set profile(libris,host) z3950.libris.kb.se
-set profile(libris,largeSetLowerBound) 2
-set profile(libris,maxResultSets) {}
-set profile(libris,maxResultSize) {}
-set profile(libris,maxTerms) {}
-set profile(libris,maximumRecordSize) 50000
-set profile(libris,mediumSetPresentNumber) 0
-set profile(libris,multipleDatabases) 0
-set profile(libris,namedResultSets) 1
-set profile(libris,port) 210
-set profile(libris,preferredMessageSize) 30000
-set profile(libris,presentChunk) 4
-set profile(libris,protocol) Z39
-set profile(libris,queryCCL) 0
-set profile(libris,queryRPN) 1
-set profile(libris,recentNews) {}
-set profile(libris,smallSetUpperBound) 0
-set profile(libris,targetInfoName) {}
-set profile(libris,timeDefine) 878567355
-set profile(libris,timeLastExplain) {}
-set profile(libris,timeLastInit) 887285394
-set profile(libris,welcomeMessage) {}
-set profile(libris,windowNumber) 6
-set profile(madison,authentication) {}
-set profile(madison,comstack) tcpip
-set profile(madison,databases) madison
-set profile(madison,description) {University of Wisconsin-Madison}
-set profile(madison,host) z3950.adp.wisc.edu
-set profile(madison,largeSetLowerBound) 2
-set profile(madison,maxResultSets) {}
-set profile(madison,maxResultSize) {}
-set profile(madison,maxTerms) {}
-set profile(madison,maximumRecordSize) 16384
-set profile(madison,mediumSetPresentNumber) 0
-set profile(madison,multipleDatabases) 0
-set profile(madison,namedResultSets) 1
-set profile(madison,port) 210
-set profile(madison,preferredMessageSize) 8192
-set profile(madison,presentChunk) 4
-set profile(madison,protocol) Z39
-set profile(madison,queryCCL) 0
-set profile(madison,queryRPN) 1
-set profile(madison,recentNews) {}
-set profile(madison,smallSetUpperBound) 0
-set profile(madison,targetInfoName) {}
-set profile(madison,timeDefine) 878567355
-set profile(madison,timeLastExplain) {}
-set profile(madison,timeLastInit) 887289602
-set profile(madison,welcomeMessage) {}
-set profile(madison,windowNumber) 11
-set profile(pica,authentication) {}
-set profile(pica,comstack) tcpip
-set profile(pica,databases) {IR-Explain-1 NCC-IBL OLC}
-set profile(pica,description) {}
-set profile(pica,host) tolk.pica.nl
-set profile(pica,idAuthentication) {}
-set profile(pica,largeSetLowerBound) 2
-set profile(pica,maxResultSets) 99
-set profile(pica,maxResultSize) 9999
-set profile(pica,maxTerms) 10
-set profile(pica,maximumRecordSize) 50000
-set profile(pica,mediumSetPresentNumber) 0
-set profile(pica,multipleDatabases) 0
-set profile(pica,namedResultSets) 1
-set profile(pica,port) 210
-set profile(pica,preferredMessageSize) 30000
-set profile(pica,presentChunk) 4
-set profile(pica,protocol) Z39
-set profile(pica,queryCCL) 0
-set profile(pica,queryRPN) 1
-set profile(pica,recentNews) {strings { language {text {Geen nieuws.}} } { language {text {}} } }
-set profile(pica,smallSetUpperBound) 0
-set profile(pica,targetInfoName) Tolk2
-set profile(pica,timeDefine) {}
-set profile(pica,timeLastExplain) 893841938
-set profile(pica,timeLastInit) 897485351
-set profile(pica,welcomeMessage) {Welkom bij Pica!}
-set profile(pica,windowNumber) 1
-set profile(zno,authentication) {}
-set profile(zno,comstack) tcpip
-set profile(zno,databases) Default
-set profile(zno,description) {}
-set profile(zno,host) sino.dtv.dk
-set profile(zno,idAuthentication) {}
-set profile(zno,largeSetLowerBound) 2
-set profile(zno,maxResultSets) {}
-set profile(zno,maxResultSize) {}
-set profile(zno,maxTerms) {}
-set profile(zno,maximumRecordSize) 50000
-set profile(zno,mediumSetPresentNumber) 0
-set profile(zno,multipleDatabases) 0
-set profile(zno,namedResultSets) 1
-set profile(zno,port) 9999
-set profile(zno,preferredMessageSize) 30000
-set profile(zno,presentChunk) 4
-set profile(zno,protocol) Z39
-set profile(zno,queryCCL) 0
-set profile(zno,queryRPN) 1
-set profile(zno,recentNews) {}
-set profile(zno,smallSetUpperBound) 0
-set profile(zno,targetInfoName) {}
-set profile(zno,timeDefine) {}
-set profile(zno,timeLastExplain) {}
-set profile(zno,timeLastInit) 891593773
-set profile(zno,welcomeMessage) {}
-set profile(zno,windowNumber) 14
-set profile(ztest9999,authentication) {}
-set profile(ztest9999,comstack) tcpip
-set profile(ztest9999,databases) {Default IR-Explain-1}
-set profile(ztest9999,description) {YAZ server on localhost}
-set profile(ztest9999,descripton) {This target is not a target with real bibliographic record - it just illustrates how Explain data might look like.}
-set profile(ztest9999,host) localhost
-set profile(ztest9999,idAuthentication) {}
-set profile(ztest9999,largeSetLowerBound) 2
-set profile(ztest9999,maxResultSets) {}
-set profile(ztest9999,maxResultSize) {}
-set profile(ztest9999,maxTerms) {}
-set profile(ztest9999,maximumRecordSize) 50000
-set profile(ztest9999,mediumSetPresentNumber) 0
-set profile(ztest9999,multipleDatabases) 1
-set profile(ztest9999,namedResultSets) 1
-set profile(ztest9999,port) 9999
-set profile(ztest9999,preferredMessageSize) 30000
-set profile(ztest9999,presentChunk) 4
-set profile(ztest9999,protocol) Z39
-set profile(ztest9999,queryCCL) 0
-set profile(ztest9999,queryRPN) 1
-set profile(ztest9999,recentNews) {}
-set profile(ztest9999,smallSetUpperBound) 0
-set profile(ztest9999,targetInfoName) Zebra
-set profile(ztest9999,timeDefine) 878567355
-set profile(ztest9999,timeLastExplain) 897392133
-set profile(ztest9999,timeLastInit) 897392253
-set profile(ztest9999,welcomeMessage) {}
-set profile(ztest9999,windowNumber) 15
-set queryTypes {Simple phrase}
-set queryButtons {{{I 3} {I 0} {I 0}} {{I 0} {I 1} {I 0}}}
-set queryInfo {{{Title {1=4}} {Author {1=1}} {Subject {1=21}} {Any {1=1016}} {Query 1=1016 2=102} {Title-rank 1=4 2=102} {Date/time 1=1012} {Title-regular 1=4 2=3 4=2 5=102} {Ranked 1=1016 2=102 3=3 4=1 6=1}} {{Title 1=4 4=1 6=2} {Author 1=1003 4=1 6=2} {ISBN 1=7} {ISSN 1=8} {Year 1=30 4=4 6=2} {Any {}}}}
+set {profile(Emory Library Catalog,authentication)} {}
+set {profile(Emory Library Catalog,comstack)} tcpip
+set {profile(Emory Library Catalog,databases)} unicorn
+set {profile(Emory Library Catalog,description)} {}
+set {profile(Emory Library Catalog,host)} library.cc.emory.edu
+set {profile(Emory Library Catalog,idAuthentication)} {}
+set {profile(Emory Library Catalog,largeSetLowerBound)} 2
+set {profile(Emory Library Catalog,maxResultSets)} {}
+set {profile(Emory Library Catalog,maxResultSize)} {}
+set {profile(Emory Library Catalog,maxTerms)} {}
+set {profile(Emory Library Catalog,maximumRecordSize)} 50000
+set {profile(Emory Library Catalog,mediumSetPresentNumber)} 0
+set {profile(Emory Library Catalog,multipleDatabases)} 0
+set {profile(Emory Library Catalog,namedResultSets)} 1
+set {profile(Emory Library Catalog,port)} 2200
+set {profile(Emory Library Catalog,preferredMessageSize)} 30000
+set {profile(Emory Library Catalog,presentChunk)} 4
+set {profile(Emory Library Catalog,protocol)} Z39
+set {profile(Emory Library Catalog,queryCCL)} 0
+set {profile(Emory Library Catalog,queryRPN)} 1
+set {profile(Emory Library Catalog,recentNews)} {}
+set {profile(Emory Library Catalog,smallSetUpperBound)} 0
+set {profile(Emory Library Catalog,targetInfoName)} {}
+set {profile(Emory Library Catalog,timeDefine)} 944954832
+set {profile(Emory Library Catalog,timeLastExplain)} {}
+set {profile(Emory Library Catalog,timeLastInit)} 944954836
+set {profile(Emory Library Catalog,welcomeMessage)} {}
+set {profile(Emory Library Catalog,windowNumber)} 9
+set {profile(OCLC First Search,authentication)} {}
+set {profile(OCLC First Search,comstack)} tcpip
+set {profile(OCLC First Search,databases)} {INSPEC HumanitiesIndex LibraryLiterature LegalPeriodicals MarcWorldCat Medline NewYorkTimes}
+set {profile(OCLC First Search,description)} {}
+set {profile(OCLC First Search,host)} Tikal.dev.oclc.org
+set {profile(OCLC First Search,idAuthentication)} {}
+set {profile(OCLC First Search,largeSetLowerBound)} 2
+set {profile(OCLC First Search,maxResultSets)} {}
+set {profile(OCLC First Search,maxResultSize)} {}
+set {profile(OCLC First Search,maxTerms)} {}
+set {profile(OCLC First Search,maximumRecordSize)} 50000
+set {profile(OCLC First Search,mediumSetPresentNumber)} 0
+set {profile(OCLC First Search,multipleDatabases)} 0
+set {profile(OCLC First Search,namedResultSets)} 1
+set {profile(OCLC First Search,port)} 210
+set {profile(OCLC First Search,preferredMessageSize)} 30000
+set {profile(OCLC First Search,presentChunk)} 4
+set {profile(OCLC First Search,protocol)} Z39
+set {profile(OCLC First Search,queryCCL)} 0
+set {profile(OCLC First Search,queryRPN)} 1
+set {profile(OCLC First Search,recentNews)} {}
+set {profile(OCLC First Search,smallSetUpperBound)} 0
+set {profile(OCLC First Search,targetInfoName)} {}
+set {profile(OCLC First Search,timeDefine)} 944955039
+set {profile(OCLC First Search,timeLastExplain)} {}
+set {profile(OCLC First Search,timeLastInit)} {}
+set {profile(OCLC First Search,welcomeMessage)} {}
+set {profile(OCLC First Search,windowNumber)} 11
+set {profile(Royal Library of Denmark,authentication)} {}
+set {profile(Royal Library of Denmark,comstack)} tcpip
+set {profile(Royal Library of Denmark,databases)} {BGF01 BHS01 DJM01 DRA01 GRB01 KAB01 KBB01 KBH01 KBK01 KDM01 KLG01 KUI01 KVF01 NIA01 SAB01}
+set {profile(Royal Library of Denmark,description)} {}
+set {profile(Royal Library of Denmark,host)} z3950.kb.dk
+set {profile(Royal Library of Denmark,idAuthentication)} {}
+set {profile(Royal Library of Denmark,largeSetLowerBound)} 2
+set {profile(Royal Library of Denmark,maxResultSets)} {}
+set {profile(Royal Library of Denmark,maxResultSize)} {}
+set {profile(Royal Library of Denmark,maxTerms)} {}
+set {profile(Royal Library of Denmark,maximumRecordSize)} 50000
+set {profile(Royal Library of Denmark,mediumSetPresentNumber)} 0
+set {profile(Royal Library of Denmark,multipleDatabases)} 0
+set {profile(Royal Library of Denmark,namedResultSets)} 1
+set {profile(Royal Library of Denmark,port)} 2100
+set {profile(Royal Library of Denmark,preferredMessageSize)} 30000
+set {profile(Royal Library of Denmark,presentChunk)} 4
+set {profile(Royal Library of Denmark,protocol)} Z39
+set {profile(Royal Library of Denmark,queryCCL)} 0
+set {profile(Royal Library of Denmark,queryRPN)} 1
+set {profile(Royal Library of Denmark,recentNews)} {}
+set {profile(Royal Library of Denmark,smallSetUpperBound)} 0
+set {profile(Royal Library of Denmark,targetInfoName)} {}
+set {profile(Royal Library of Denmark,timeDefine)} 944955289
+set {profile(Royal Library of Denmark,timeLastExplain)} {}
+set {profile(Royal Library of Denmark,timeLastInit)} 944955294
+set {profile(Royal Library of Denmark,welcomeMessage)} {}
+set {profile(Royal Library of Denmark,windowNumber)} 3
+set {profile(University of Arkansas,authentication)} {}
+set {profile(University of Arkansas,comstack)} tcpip
+set {profile(University of Arkansas,databases)} Marion
+set {profile(University of Arkansas,description)} {}
+set {profile(University of Arkansas,host)} libils.ualr.edu
+set {profile(University of Arkansas,idAuthentication)} {}
+set {profile(University of Arkansas,largeSetLowerBound)} 2
+set {profile(University of Arkansas,maxResultSets)} {}
+set {profile(University of Arkansas,maxResultSize)} {}
+set {profile(University of Arkansas,maxTerms)} {}
+set {profile(University of Arkansas,maximumRecordSize)} 50000
+set {profile(University of Arkansas,mediumSetPresentNumber)} 0
+set {profile(University of Arkansas,multipleDatabases)} 0
+set {profile(University of Arkansas,namedResultSets)} 1
+set {profile(University of Arkansas,port)} 210
+set {profile(University of Arkansas,preferredMessageSize)} 30000
+set {profile(University of Arkansas,presentChunk)} 4
+set {profile(University of Arkansas,protocol)} Z39
+set {profile(University of Arkansas,queryCCL)} 0
+set {profile(University of Arkansas,queryRPN)} 1
+set {profile(University of Arkansas,recentNews)} {}
+set {profile(University of Arkansas,smallSetUpperBound)} 0
+set {profile(University of Arkansas,targetInfoName)} {}
+set {profile(University of Arkansas,timeDefine)} 944956252
+set {profile(University of Arkansas,timeLastExplain)} {}
+set {profile(University of Arkansas,timeLastInit)} 944956270
+set {profile(University of Arkansas,welcomeMessage)} {}
+set {profile(University of Arkansas,windowNumber)} 16
+set {profile(University of Arkanses,authentication)} {}
+set {profile(University of Arkanses,comstack)} tcpip
+set {profile(University of Arkanses,description)} {}
+set {profile(University of Arkanses,host)} {}
+set {profile(University of Arkanses,largeSetLowerBound)} 2
+set {profile(University of Arkanses,maxResultSets)} {}
+set {profile(University of Arkanses,maxResultSize)} {}
+set {profile(University of Arkanses,maxTerms)} {}
+set {profile(University of Arkanses,maximumRecordSize)} 50000
+set {profile(University of Arkanses,mediumSetPresentNumber)} 0
+set {profile(University of Arkanses,multipleDatabases)} 0
+set {profile(University of Arkanses,namedResultSets)} 1
+set {profile(University of Arkanses,port)} 210
+set {profile(University of Arkanses,preferredMessageSize)} 30000
+set {profile(University of Arkanses,presentChunk)} 4
+set {profile(University of Arkanses,protocol)} Z39
+set {profile(University of Arkanses,queryCCL)} 0
+set {profile(University of Arkanses,queryRPN)} 1
+set {profile(University of Arkanses,recentNews)} {}
+set {profile(University of Arkanses,smallSetUpperBound)} 0
+set {profile(University of Arkanses,targetInfoName)} {}
+set {profile(University of Arkanses,timeDefine)} {}
+set {profile(University of Arkanses,timeLastExplain)} {}
+set {profile(University of Arkanses,timeLastInit)} {}
+set {profile(University of Arkanses,welcomeMessage)} {}
+set {profile(University of Arkanses,windowNumber)} 10
+set {profile(University of British Columbia,authentication)} {}
+set {profile(University of British Columbia,comstack)} tcpip
+set {profile(University of British Columbia,databases)} MARION
+set {profile(University of British Columbia,description)} {}
+set {profile(University of British Columbia,host)} dra.library.ubc.ca
+set {profile(University of British Columbia,idAuthentication)} {}
+set {profile(University of British Columbia,largeSetLowerBound)} 2
+set {profile(University of British Columbia,maxResultSets)} {}
+set {profile(University of British Columbia,maxResultSize)} {}
+set {profile(University of British Columbia,maxTerms)} {}
+set {profile(University of British Columbia,maximumRecordSize)} 50000
+set {profile(University of British Columbia,mediumSetPresentNumber)} 0
+set {profile(University of British Columbia,multipleDatabases)} 0
+set {profile(University of British Columbia,namedResultSets)} 1
+set {profile(University of British Columbia,port)} 210
+set {profile(University of British Columbia,preferredMessageSize)} 30000
+set {profile(University of British Columbia,presentChunk)} 4
+set {profile(University of British Columbia,protocol)} Z39
+set {profile(University of British Columbia,queryCCL)} 0
+set {profile(University of British Columbia,queryRPN)} 1
+set {profile(University of British Columbia,recentNews)} {}
+set {profile(University of British Columbia,smallSetUpperBound)} 0
+set {profile(University of British Columbia,targetInfoName)} {}
+set {profile(University of British Columbia,timeDefine)} 944955536
+set {profile(University of British Columbia,timeLastExplain)} {}
+set {profile(University of British Columbia,timeLastInit)} 944955627
+set {profile(University of British Columbia,welcomeMessage)} {}
+set {profile(University of British Columbia,windowNumber)} 20
+set {profile(University of California MELVYL,authentication)} {}
+set {profile(University of California MELVYL,comstack)} tcpip
+set {profile(University of California MELVYL,databases)} PE
+set {profile(University of California MELVYL,description)} {}
+set {profile(University of California MELVYL,host)} melvyl.ucop.edu
+set {profile(University of California MELVYL,idAuthentication)} {}
+set {profile(University of California MELVYL,largeSetLowerBound)} 2
+set {profile(University of California MELVYL,maxResultSets)} {}
+set {profile(University of California MELVYL,maxResultSize)} {}
+set {profile(University of California MELVYL,maxTerms)} {}
+set {profile(University of California MELVYL,maximumRecordSize)} 50000
+set {profile(University of California MELVYL,mediumSetPresentNumber)} 0
+set {profile(University of California MELVYL,multipleDatabases)} 0
+set {profile(University of California MELVYL,namedResultSets)} 1
+set {profile(University of California MELVYL,port)} 210
+set {profile(University of California MELVYL,preferredMessageSize)} 30000
+set {profile(University of California MELVYL,presentChunk)} 4
+set {profile(University of California MELVYL,protocol)} Z39
+set {profile(University of California MELVYL,queryCCL)} 0
+set {profile(University of California MELVYL,queryRPN)} 1
+set {profile(University of California MELVYL,recentNews)} {}
+set {profile(University of California MELVYL,smallSetUpperBound)} 0
+set {profile(University of California MELVYL,targetInfoName)} {}
+set {profile(University of California MELVYL,timeDefine)} 944955670
+set {profile(University of California MELVYL,timeLastExplain)} {}
+set {profile(University of California MELVYL,timeLastInit)} 944955675
+set {profile(University of California MELVYL,welcomeMessage)} {}
+set {profile(University of California MELVYL,windowNumber)} 18
+set {profile(University of Illinois,authentication)} {}
+set {profile(University of Illinois,comstack)} tcpip
+set {profile(University of Illinois,databases)} {UICOPAC2 UICOPAC1}
+set {profile(University of Illinois,description)} {}
+set {profile(University of Illinois,host)} owl.cc.uic.edu
+set {profile(University of Illinois,idAuthentication)} {}
+set {profile(University of Illinois,largeSetLowerBound)} 2
+set {profile(University of Illinois,maxResultSets)} {}
+set {profile(University of Illinois,maxResultSize)} {}
+set {profile(University of Illinois,maxTerms)} {}
+set {profile(University of Illinois,maximumRecordSize)} 50000
+set {profile(University of Illinois,mediumSetPresentNumber)} 0
+set {profile(University of Illinois,multipleDatabases)} 0
+set {profile(University of Illinois,namedResultSets)} 1
+set {profile(University of Illinois,port)} 210
+set {profile(University of Illinois,preferredMessageSize)} 30000
+set {profile(University of Illinois,presentChunk)} 4
+set {profile(University of Illinois,protocol)} Z39
+set {profile(University of Illinois,queryCCL)} 0
+set {profile(University of Illinois,queryRPN)} 1
+set {profile(University of Illinois,recentNews)} {}
+set {profile(University of Illinois,smallSetUpperBound)} 0
+set {profile(University of Illinois,targetInfoName)} {}
+set {profile(University of Illinois,timeDefine)} 944955869
+set {profile(University of Illinois,timeLastExplain)} {}
+set {profile(University of Illinois,timeLastInit)} 944956081
+set {profile(University of Illinois,welcomeMessage)} {}
+set {profile(University of Illinois,windowNumber)} 7
+set profile(indexdata,authentication) {}
+set profile(indexdata,comstack) tcpip
+set profile(indexdata,databases) {dranet.dra.com IR-Explain-1 gils marc}
+set profile(indexdata,description) {}
+set profile(indexdata,host) bagel.indexdata.dk
+set profile(indexdata,idAuthentication) {}
+set profile(indexdata,largeSetLowerBound) 2
+set profile(indexdata,maxResultSets) {}
+set profile(indexdata,maxResultSize) {}
+set profile(indexdata,maxTerms) {}
+set profile(indexdata,maximumRecordSize) 50000
+set profile(indexdata,mediumSetPresentNumber) 0
+set profile(indexdata,multipleDatabases) 1
+set profile(indexdata,namedResultSets) 1
+set profile(indexdata,port) 210
+set profile(indexdata,preferredMessageSize) 30000
+set profile(indexdata,presentChunk) 4
+set profile(indexdata,protocol) Z39
+set profile(indexdata,queryCCL) 0
+set profile(indexdata,queryRPN) 1
+set profile(indexdata,recentNews) {}
+set profile(indexdata,smallSetUpperBound) 0
+set profile(indexdata,targetInfoName) Zebra
+set profile(indexdata,timeDefine) 944954185
+set profile(indexdata,timeLastExplain) 944957119
+set profile(indexdata,timeLastInit) 944957157
+set profile(indexdata,welcomeMessage) {}
+set profile(indexdata,windowNumber) 19
+set queryTypes Simple
+set queryButtons {{ {I 0} {I 1} {I 2} }}
+set queryInfo {{{Title {1=4}} {Author {1=1003}}  {Subject {1=21}} {Any {1=1016}} {Abstract {1=62}}}}
index 227a7c5..8f44647 100644 (file)
--- a/setup.tcl
+++ b/setup.tcl
@@ -6,7 +6,10 @@
 # Configuration Driver
 #
 # $Log: setup.tcl,v $
-# Revision 1.5  1998-04-02 14:32:01  adam
+# Revision 1.6  1999-12-12 00:25:59  adam
+# Updated list of preconfigure targets.
+#
+# Revision 1.5  1998/04/02 14:32:01  adam
 # Minor changes to EXPLAIN driver.
 #
 # Revision 1.4  1998/02/12 13:32:42  adam
@@ -66,7 +69,7 @@ proc protocol-setup-action {target} {
     
     set timedef $profileS($target,timeDefine)
     if {![string length $timedef]} {
-        set timedef [clock seconds]
+       set profileS($target,timeDefine) [clock seconds]
     }
 
     foreach n [array names profileS $target,*] {