2 # $Id: z39util.tcl,v 1.30 1996/02/12 13:39:41 adam Exp $
6 set f [open "tcl.state.${sessionId}" w]
7 foreach var [info globals] {
8 if {$var == "f"} continue
9 if {$var == "sessionId"} continue
10 if {$var == "errorInfo"} continue
11 if {[catch {set names [array names $var]}]} {
13 puts $f "set ${var} \{$v\}"
16 eval "set v \$${var}(\$n)"
17 puts $f "set ${var}($n) \{$v\}"
21 puts $f "set ${var} \{$v\}"
29 proc search-response {zz} {
32 set status [$zz responseStatus]
33 if {[lindex $status 0] == "NSD"} {
34 $zz nextResultSetPosition 0
35 set code [lindex $status 1]
36 set msg [lindex $status 2]
37 set addinfo [lindex $status 3]
38 displayError "Diagnostic message" \
39 "$msg: $addinfo<br>\n(error code $code)"
46 proc scan-response {zz} {
49 set status [$zz scanStatus]
51 displayError "Scan fail" ""
63 proc fail-response {} {
68 proc display-brief {zset no tno} {
75 set type [$zset type $no]
77 set err [lindex [$zset diag $no] 1]
78 set add [lindex [$zset diag $no] 2]
82 html "${no} Error ${err}${add} <br>\n"
88 set rtype [$zset recordType $no]
89 if {$rtype == "SUTRS"} {
90 html [join [$zset getSutrs $no]]
95 set author [$zset getMarc $no field 100 * a]
96 set corp [$zset getMarc $no field 110 * a]
97 set meet [$zset getMarc $no field 111 * a]
98 set title [$zset getMarc $no field 245 * a]
99 if {[llength $author] == 0} {
100 set cover [$zset getMarc $no field 245 * {[bc]}]
102 set cover [$zset getMarc $no field 245 * b]
104 set location [$zset getMarc $no field 260 * a]
105 set publisher [$zset getMarc $no field 260 * b]
106 set year [$zset getMarc $no field 260 * c]
108 html { <a href="http:} $env(SCRIPT_NAME) /
109 html $sessionId {/showfull.egw/} $setNo + $tno + $no + full {">}
141 set v [join $cover ""]
142 if {[string length $v] > 40} {
144 html [string range $v 0 38] "..."
145 } elseif {[string length $v] > 0} {
154 html { <a href="http:} $env(SCRIPT_NAME) /
155 html $sessionId {/showfull.egw/} $setNo + $tno + $no + full {">}
158 html "Error: " $dispError "\n"
163 proc display-raw {zset no tno} {
164 set type [$zset type $no]
166 set err [lindex [$zset diag $no] 1]
167 set add [lindex [$zset diag $no] 2]
171 html "<h3>${no}</h3>\n"
172 html "Error ${err}${add} <br>\n"
178 set rtype [$zset recordType $no]
179 if {$rtype == "SUTRS"} {
180 html [join [$zset getSutrs $no]] "<br>\n"
183 if {[catch {set r [$zset getMarc $no line * * *]}]} {
184 html "Unknown record type: $rtype <br>\n"
188 set tag [lindex $line 0]
189 set indicator [lindex $line 1]
190 set fields [lindex $line 2]
191 set l [string length $indicator]
194 for {set i 0} {$i < $l} {incr i} {
195 if {[string index $indicator $i] == " "} {
198 html [string index $tag $i]
203 foreach field $fields {
204 set id [lindex $field 0]
205 set data [lindex $field 1]
207 html " <b>\$$id</b> "
215 proc put-marc-contents {cc} {
217 if {[string first :// $cc] > 0} {
218 foreach urltype {gopher http ftp mailto} {
219 if {[string first ${urltype}:// $cc] == 0} {
234 proc dl-marc-field {zset no tag id la lb sep} {
236 set c [$zset getMarc $no field $tag * $id]
241 if {$len > 1 && "x$lb" != "x"} {
242 html "<dt><b>$lb</b>\n<dd>"
244 html "<dt><b>$la</b>\n<dd>"
250 put-marc-contents $cc
256 proc dd-marc-field {zset no tag id start stop} {
258 set c [$zset getMarc $no field $tag * $id]
265 put-marc-contents $cc
272 proc dl-marc-field-rec {zset no tag lead start stop startid sep} {
274 set lines [$zset getMarc $no line $tag * *]
275 foreach line $lines {
276 foreach field [lindex $line 2] {
278 html "<dt><b>$lead</b>"
281 set id [lindex $field 0]
282 if {$id == $startid} {
288 html [lindex $field 1]
291 html [lindex $field 1]
300 proc display-full {zset no tno} {
301 set type [$zset type $no]
303 set err [lindex [$zset diag $no] 1]
304 set add [lindex [$zset diag $no] 2]
308 html "Error ${err}${add} <br>\n"
314 set rtype [$zset recordType $no]
315 if {$rtype == "SUTRS"} {
316 html [join [$zset getSutrs $no]] "<br>\n"
319 if {[catch {set r [$zset getMarc $no line * * *]}]} {
320 html "Unknown record type: $rtype <br>\n"
324 set n [dl-marc-field $zset $no 700 a "Author" "Authors" "<br>\n"]
326 set n [dl-marc-field $zset $no 100 a "Author" "Authors" "<br>\n"]
328 set n [dl-marc-field $zset $no 710 a "Corporate Name" {} ", "]
330 set n [dl-marc-field $zset $no 110 a "Corporate Name" {} ", "]
332 set n [dl-marc-field $zset $no 711 a "Meeting Name" {} ", "]
334 dd-marc-field $zset $no 711 {[bndc]} " " ""
336 set n [dl-marc-field $zset $no 111 a "Meeting Name" {} ", "]
338 dd-marc-field $zset $no 111 {[bndc]} " " " "
341 set n [dl-marc-field $zset $no 245 {a} "Title" {} " "]
343 dd-marc-field $zset $no 245 b "<em>" "</em>"
344 dd-marc-field $zset $no 245 c " " ""
346 dl-marc-field $zset $no 245 {[ab]} "Title" {} " "
348 dl-marc-field $zset $no 520 a "Abstract" {} ", "
349 dl-marc-field $zset $no 072 * "Subject code" "Subject codes" ", "
350 dl-marc-field $zset $no 650 * "Subject" {} ", "
351 dl-marc-field $zset $no 260 * "Publisher" {} " "
352 dl-marc-field $zset $no 300 * "Physical Description" {} " "
354 dl-marc-field-rec $zset $no 500 "Notes" "" "<br>\n" "a" ", "
356 dl-marc-field-rec $zset $no 510 "References" "" "<br>\n" "a" ", "
358 dl-marc-field-rec $zset $no 511 "Participant note" "" "<br>\n" "a" ", "
360 dl-marc-field $zset $no 513 a "Report type" {} ", "
361 dl-marc-field $zset $no 513 b "Period covered" {} ", "
362 dl-marc-field-rec $zset $no 515 "Numbering notes" "" "<br>\n" "a" ", "
363 dl-marc-field-rec $zset $no 516 "Data notes" "" "<br>\n" "a" ", "
364 dl-marc-field-rec $zset $no 518 "Date/time notes" "" "<br>\n" "a" ", "
366 dl-marc-field $zset $no 350 a "Price" {} ", "
367 dl-marc-field $zset $no 362 a "Dates of publication" {} ", "
368 dl-marc-field $zset $no 850 a "Holdings" {} ", "
370 dl-marc-field-rec $zset $no 270 "Contact name" "" "<br>\n" p ", "
372 set n [dl-marc-field $zset $no 270 p "Contact name" {} ", "]
377 dl-marc-field $zset $no 270 a "Street" {} ", "
378 dl-marc-field $zset $no 270 b "City" {} ", "
379 dl-marc-field $zset $no 270 c "State" {} ", "
380 dl-marc-field $zset $no 270 e "Zip code" {} ", "
381 dl-marc-field $zset $no 270 d "Country" {} ", "
382 dl-marc-field $zset $no 270 m "Network address" {} ", "
383 dl-marc-field $zset $no 301 a "Service hours" {} ", "
384 dl-marc-field $zset $no 270 k "Phone" {} ", "
385 dl-marc-field $zset $no 270 l "Fax" {} ", "
387 dl-marc-field $zset $no 270 {[abcedmakl]} "Address" {} "<br>\n"
393 dl-marc-field $zset $no 010 a "LC control number" {} ", "
394 dl-marc-field $zset $no 010 b "NUCMC control number" {} ", "
395 dl-marc-field $zset $no 020 a "ISBN" {} ", "
396 dl-marc-field $zset $no 022 a "ISSN" {} ", "
397 set url [$zset getMarc $no field 856 * u]
398 set sp [$zset getMarc $no field 856 * 3]
399 if {"x$url" != "x"} {
400 html "<dt><b>URL</b>\n"
404 html {<dd><a href="} $url {">} [join $sp] "</a>\n"
406 dl-marc-field $zset $no 037 {[abc]} "Acquisition" {} "<br>\n"
407 dl-marc-field $zset $no 037 {[f6]} "Form of issue" {} "<br>\n"
408 dl-marc-field $zset $no 537 * "Source of data" {} "<br>\n"
409 dl-marc-field $zset $no 538 * "System details" {} "<br>\n"
410 dl-marc-field $zset $no 787 {[rstw6]} "Related information" {} "<br>\n"
411 dl-marc-field $zset $no 001 * "Local control number" {} ", "
416 proc display-rec {from to dfunc tno} {
420 while {$from <= $to} {
421 eval "$dfunc z39${tno}.${setNo} $from $tno"
425 while {$from <= $to} {
426 eval "$dfunc z39.${setNo} $from 0"
432 proc build-scan {t i} {
435 set term [egw_form entry$i]
437 set field [join [egw_form menu$i]]
439 foreach x [lindex $targets($t) 2] {
440 if {[lindex $x 0] == $field} {
441 set attr [lindex $x 1]
444 return [list $term $attr]
449 proc build-query {t ilines} {
454 for {set i 1} {$i <= $ilines} {incr i} {
455 set term [join [egw_form entry$i]]
456 if {[string length $term] > 0} {
457 set field [join [egw_form menu$i]]
458 foreach x [lindex $targets($t) 2] {
459 if {[lindex $x 0] == $field} {
460 set attr [lindex $x 1]
465 { set q "@and $q ${attr} \"${term}\"" }
467 { set q "@or $q ${attr} \"${term}\"" }
469 { set q "@not $q ${attr} \"${term}\"" }
471 { set q "${attr} \"${term}\"" }
473 set op [egw_form logic$i]
479 proc z39scan {setNo scanNo tno scanLines scanPos cache} {
486 set host $hist($setNo,$tno,host)
487 set idAuth $hist($setNo,$tno,idAuthentication)
488 set database $hist($setNo,$tno,database)
489 set scanAttr $hist($setNo,$tno,scanAttr)
490 set scanTerm $hist($setNo,$tno,$scanNo,scanTerm)
493 set host $hist($setNo,host)
494 set idAuth $hist($setNo,idAuthentication)
495 set database $hist($setNo,database)
496 set scanAttr $hist($setNo,scanAttr)
497 set scanTerm $hist($setNo,$scanNo,scanTerm)
499 if {[catch [list $zz failback fail-response]]} {
502 if {[catch [list set oldHost [$zz connect]]]} {
505 set zs $zz.s$scanNo.$setNo
506 $zz callback ok-response
507 $zz failback fail-response
508 set thisHost [splitHostSpec $host]
509 if {$oldHost != $thisHost} {
510 catch [list $zz disconnect]
513 if {[catch [list $zz connect $thisHost]]} {
514 displayError "Cannot connect to target" $thisHost
516 } elseif {$sessionWait == 0} {
517 if {[catch {egw_wait sessionWait 300}]} {
519 displayError "Cannot connect to target" $thisHost
522 if {$sessionWait != 1} {
523 displayError "Cannot connect to target" $thisHost
527 $zz idAuthentication $idAuth
529 if {[catch {$zz init}]} {
530 displayError "Cannot initialize target" $thisHost
534 if {[catch {egw_wait sessionWait 60}]} {
535 displayError "Cannot initialize target" $thisHost
539 if {$sessionWait != "1"} {
540 displayError "Cannot initialize target" $thisHost
544 if {![$zz initResult]} {
545 set u [$zz userInformationField]
547 displayError "Cannot initialize target $thisHost" $u
551 if {$cache && ![catch [list $zs numberOfTermsRequested 5]]} {
555 eval $zz databaseNames $database
559 $zs numberOfTermsRequested $scanLines
560 $zs preferredPositionInResponse $scanPos
562 $zz callback [list scan-response $zs]
564 egw_log debug "scan: ${scanAttr} ${scanTerm}"
566 $zs scan "${scanAttr} ${scanTerm}"
568 if {[catch {egw_wait sessionWait 60}]} {
569 egw_log debug "timeout/cancel in scan"
570 displayError "Timeout in scan" {}
571 html "</body></html>\n"
575 if {$sessionWait == -1} {
576 displayError "Scan fail" "Connection closed"
577 html "</body></html>\n"
580 if {$sessionWait != 1} {
586 proc display-scan {setNo scanNo tno} {
597 set zs $zz.s$scanNo.$setNo
598 set m [$zs numberOfEntriesReturned]
601 set t [lindex [$zs scanLine 0] 1]
603 set hist($setNo,$tno,[expr $scanNo - 1],scanTerm) $t
605 set hist($setNo,[expr $scanNo - 1],scanTerm) $t
607 set t [lindex [$zs scanLine [expr $m - 1]] 1]
609 set hist($setNo,$tno,[expr $scanNo + 1],scanTerm) $t
611 set hist($setNo,[expr $scanNo + 1],scanTerm) $t
614 html {<table width=500 border=0><tr>}
615 html {<td align=left><b>Scan term</b>}
616 html {<td align=right><b>Hits</b>}
619 for {set i 0} {$i < $m} {incr i} {
620 html {<td align=left>}
622 regsub -all {\ } [lindex [$zs scanLine $i] 1] + tterm
623 html {<a href="http:} $env(SCRIPT_NAME)
624 html / $sessionId {/query.egw/} $hist($setNo,host) + $setNo +
625 html $hist($setNo,scan) + $tterm {">}
627 regsub -all {\ } [lindex [$zs scanLine $i] 1] + tterm
628 html {<a href="http:} $env(SCRIPT_NAME)
629 html / $sessionId {/search.egw/} $setNo +
630 html hyper + $tterm {">}
632 html [lindex [$zs scanLine $i] 1]
634 html {<td align=right>}
635 html [lindex [$zs scanLine $i] 2]
641 proc z39search {setNo piggy tno elements} {
648 set host $hist($setNo,$tno,host)
649 set idAuth $hist($setNo,$tno,idAuthentication)
650 set database $hist($setNo,$tno,database)
651 set query $hist($setNo,$tno,query)
654 set host $hist($setNo,host)
655 set idAuth $hist($setNo,idAuthentication)
656 set database $hist($setNo,database)
657 set query $hist($setNo,query)
659 if {[catch [list $zz failback fail-response]]} {
662 if {[catch [list set oldHost [$zz connect]]]} {
665 $zz callback ok-response
666 $zz failback fail-response
667 set thisHost [splitHostSpec $host]
668 if {$oldHost != $thisHost} {
669 catch [list $zz disconnect]
672 if {[catch [list $zz connect $thisHost]]} {
673 displayError "Cannot connect to target" $thisHost
675 } elseif {$sessionWait == 0} {
676 if {[catch {egw_wait sessionWait 300}]} {
678 displayError "Cannot connect to target" $thisHost
681 if {$sessionWait != 1} {
682 displayError "Cannot connect to target" $thisHost
686 $zz idAuthentication $idAuth
688 if {[catch {$zz init}]} {
689 displayError "Cannot initialize target" $thisHost
693 if {[catch {egw_wait sessionWait 60}]} {
694 displayError "Cannot initialize target" $thisHost
698 if {$sessionWait != "1"} {
699 displayError "Cannot initialize target" $thisHost
703 if {![$zz initResult]} {
704 set u [$zz userInformationField]
706 displayError "Cannot initialize target $thisHost" $u
710 if {[info exists hist($setNo,hits)] && \
711 ![catch [list $zz.$setNo smallSetUpperBound 0]]} {
716 ir-set $zz.$setNo $zz
718 if {![lindex $targets($host) 5]} {
721 $zz.$setNo smallSetElementSetNames $elements
722 $zz.$setNo mediumSetElementSetNames $elements
723 $zz.$setNo recordElements $elements
725 egw_log debug "database=$database"
726 eval $zz.$setNo databaseNames $database
728 $zz.$setNo preferredRecordSyntax USMARC
730 $zz callback [list search-response $zz.$setNo]
732 $zz.$setNo largeSetLowerBound 999999
733 $zz.$setNo smallSetUpperBound 0
734 $zz.$setNo mediumSetPresentNumber $hist($setNo,maxPresent)
736 $zz.$setNo largeSetLowerBound 2
737 $zz.$setNo smallSetUpperBound 0
738 $zz.$setNo mediumSetPresentNumber 0
741 egw_log debug "search: $query"
742 $zz.$setNo search $query
744 if {[catch {egw_wait sessionWait 600}]} {
745 egw_log debug "timeout/cancel in search"
746 displayError "Timeout in search" {}
747 html "</body></html>\n"
752 if {$sessionWait == -1} {
753 displayError "Search fail" "Connection closed"
754 html "</body></html>\n"
757 if {$sessionWait != 1} {
760 set hist($setNo,hits) [$zz.$setNo resultCount]
764 proc init-m-response {i} {
768 egw_log debug "init-m-response"
774 proc connect-m-response {i} {
778 egw_log debug "connect-m-response"
779 z39$i callback [list init-m-response $i]
780 if {[catch {z39$i init}]} {
786 proc fail-m-response {i} {
790 egw_log debug "fail-m-response"
795 proc search-m-response {setNo i start number} {
800 egw_log debug "search-m-response"
801 set status [z39$i.$setNo responseStatus]
802 egw_log debug "search-m-response1"
803 if {[lindex $status 0] != "DBOSD"} {
804 egw_log debug "search-m-response2"
809 set nor [z39$i.$setNo numberOfRecordsReturned]
810 egw_log debug "search-m-response3"
811 set hist($setNo,$i,offset) [expr $start + $nor -1]
812 if {[expr $nor + $start] >= [z39$i.$setNo resultCount]} {
813 egw_log debug "search-m-response4"
818 egw_log debug "search-m-response5"
819 if {$nor >= $number} {
820 egw_log debug "search-m-response6"
825 egw_log debug "search-m-response7"
826 set start [expr $start + $nor]
827 set number [expr $number - $nor]
828 if {[expr $start + $number - 1] > [z39$i.$setNo resultCount]} {
829 set number [expr [z39$i.$setNo resultCount] - $start + 1]
831 z39$i callback [list search-m-response $setNo $i $start $number]
832 egw_log debug "mpresent start=$number number=$number"
833 z39$i.$setNo present $start $number
836 proc z39msearch {setNo elements start number cache} {
842 set not $hist($setNo,0,host)
844 for {set i 1} {$i <= $not} {incr i} {
845 set host $hist($setNo,$i,host)
846 if {[catch [list z39$i failback fail-m-response $i]]} {
849 set oldHost [z39$i connect]
850 set thisHost [splitHostSpec $host]
851 if {$oldHost != $thisHost} {
852 catch {z39$i disconnect}
854 z39$i callback [list connect-m-response $i]
855 z39$i failback [list fail-m-response $i]
858 for {set i 1} {$i <= $not} {incr i} {
859 set oldHost [z39$i connect]
860 set host $hist($setNo,$i,host)
861 set thisHost [splitHostSpec $host]
862 if {$oldHost == $thisHost} {
865 egw_log debug "old=$oldHost this=$thisHost"
866 z39$i idAuthentication $hist($setNo,$i,idAuthentication)
867 html "Connecting to target " $thisHost " <br>\n"
869 if {![catch {z39$i connect $thisHost}]} {
874 egw_log debug "Waiting for init response"
875 if {[catch {egw_wait zleft 20}]} {
880 for {set i 1} {$i <= $not} {incr i} {
881 html "host " [splitHostSpec $hist($setNo,$i,host)] ": "
882 egw_log debug "i=$i zstatus=$zstatus($i)"
883 if {$zstatus($i) < 1} {
887 if {[catch [list z39$i.$setNo preferredRecordSyntax USMARC]]} {
889 ir-set z39$i.$setNo z39$i
890 set hist($setNo,$i,offset) 0
891 eval z39$i.$setNo databaseNames $hist($setNo,$i,database)
893 if {![lindex $targets($hist($setNo,$i,host)) 5]} {
896 set thisElements $elements
898 z39$i.$setNo smallSetElementSetNames $thisElements
899 z39$i.$setNo mediumSetElementSetNames $thisElements
900 z39$i.$setNo elementSetNames $thisElements
901 z39$i.$setNo recordElements $thisElements
903 z39$i.$setNo preferredRecordSyntax USMARC
904 z39$i callback [list search-m-response $setNo $i $start $number]
907 z39$i.$setNo largeSetLowerBound 999999
908 z39$i.$setNo smallSetUpperBound 0
909 z39$i.$setNo mediumSetPresentNumber $number
911 z39$i.$setNo largeSetLowerBound 2
912 z39$i.$setNo smallSetUpperBound 0
913 z39$i.$setNo mediumSetPresentNumber 0
917 egw_log debug "setNo=$setNo msearch " $hist($setNo,$i,query)
918 z39$i.$setNo search $hist($setNo,$i,query)
919 } elseif {[z39$i.$setNo resultCount] >= $start} {
920 if {[expr $start + $number - 1] > [z39$i.$setNo resultCount]} {
921 set tnumber [expr [z39$i.$setNo resultCount] - $start + 1]
925 if {![lindex $targets($hist($setNo,$i,host)) 5]} {
928 set thisElements $elements
930 z39$i.$setNo smallSetElementSetNames $thisElements
931 z39$i.$setNo mediumSetElementSetNames $thisElements
932 z39$i.$setNo elementSetNames $thisElements
933 z39$i.$setNo recordElements $thisElements
935 for {set n 0} {$n < $tnumber} {incr n} {
936 if {[z39$i.$setNo type [expr $start + $n]] == ""} {
938 egw_log debug "failed on $n"
943 if {$n == $tnumber} {
949 z39$i.$setNo preferredRecordSyntax USMARC
950 z39$i callback [list search-m-response $setNo $i $start $tnumber]
952 egw_log debug "mpresent start=$start number=$tnumber"
953 z39$i.$setNo present $start $tnumber
959 egw_log debug "Waiting for search/present response"
960 if {[catch {egw_wait zleft 60}]} {
964 for {set i 1} {$i <= $not} {incr i} {
965 if {$zstatus($i) != 2} continue
966 set status [z39$i.$setNo responseStatus]
967 if {0 && [lindex $status 0] != "NSD"} {
968 set hist($setNo,$i,offset) [z39$i.$setNo numberOfRecordsReturned]
973 proc z39present {setNo tno setOffset setMax dfunc elements} {
980 set host $hist($setNo,$tno,host)
983 set host $hist($setNo,host)
986 if {![lindex $targets($host) 5]} {
990 $zz.$setNo elementSetNames $elements
991 $zz.$setNo recordElements $elements
992 set toGet [expr 1 + $setMax - $setOffset]
994 $zz callback [list search-response $zz.$setNo]
996 while {$setMax > 0 && $toGet > 0} {
997 for {set got 0} {$got < $toGet} {incr got} {
998 if {[$zz.$setNo type [expr $setOffset + $got]] == ""} {
1002 if {$got < $toGet} {
1004 $zz.$setNo present $setOffset $toGet
1005 if {[catch {egw_wait sessionWait 300}]} {
1006 egw_log debug "timeout/cancel in present"
1010 if {$sessionWait == "0"} {
1013 if {$sessionWait != "1"} {
1016 set got [$zz.$setNo numberOfRecordsReturned]
1021 display-rec $setOffset [expr $got + $setOffset - 1] $dfunc $tno
1022 set setOffset [expr $got + $setOffset]
1023 set toGet [expr 1 + $setMax - $setOffset]
1028 proc z39history {} {
1036 if {![info exists nextSetNo]} {
1039 html "<h2>History</h2><br>\n"
1041 html {<table width=500 border=1><tr>}
1042 html {<td align=center><b>Target</b>}
1043 html {<td align=center><b>Database</b>}
1044 html {<td align=center><b>Hits</b>}
1045 html {<td align=center><b>Query</b>}
1050 for {set setNo 1} {$setNo < $nextSetNo} {incr setNo} {
1051 if {$hist($setNo,scan) > 0} continue
1052 set host $hist($setNo,host)
1054 html {<td align=left>}
1058 html [lindex $targets($host) 0]
1060 html {<td align=left>} [join $hist($setNo,database)]
1062 if {[llength [lindex $targets($host) 1]] > 1} {
1064 foreach b $hist($setNo,database) {
1071 html {<td align=right>}
1073 if {[info exists hist($setNo,hits)]} {
1074 html { <a href="http:} $env(SCRIPT_NAME)
1075 html / $sessionId {/search.egw/} $setNo + 1
1076 html + $hist($setNo,maxPresent)
1078 html {">} $hist($setNo,hits) {</a>}
1080 html {">Result</a>: } $hist($setNo,hits) { hits.}
1086 html {Search failed.}
1090 html {<td align=left>}
1094 html { <a href="http:} $env(SCRIPT_NAME)
1095 html / $sessionId {/query.egw/} $host + $setNo
1099 html {">Query</a>: }
1102 for {set i 1} {$i <= 3} {incr i} {
1103 if {[string length $hist($setNo,form,entry$i)] > 0} {
1104 html " <b>" [join $op " "] "</b> "
1105 html [join $hist($setNo,form,menu$i)] "="
1106 html $hist($setNo,form,entry$i)
1107 set op $hist($setNo,form,logic$i)
1111 html {</a><tr>} "\n"
1122 proc displayError {msga msgb} {
1123 html "<p><center>\n"
1124 html {<img src="/egwgif/noway.gif" alt="Error">}
1125 html "<h2>" $msga "</h2>\n"
1127 html "<h3>" $msgb "</h3>\n"
1129 html "</center><p>\n"
1132 proc button-europagate {} {
1134 html {<a href="http://europagate.dtv.dk/">}
1136 html {<img src="/egwgif/button-egw.gif" alt="Europagate" border=0></a>}
1138 html {Europagate</a> | }
1142 proc button-define-target {more} {
1147 html {<a href="http:} $env(SCRIPT_NAME)
1148 html / $sessionId {/tform.egw}
1150 html {"><img src="/egwgif/button-define-target.gif" }
1151 html {alt="Define Target" border=0></a>}
1153 html {">Define Target</a>}
1162 proc button-new-target {more} {
1168 html {<a href="http:} $env(SCRIPT_NAME)
1171 html {/mtargets.egw}
1176 html {"><img src="/egwgif/button-new-target.gif" }
1177 html {alt="New Target" border=0></a>}
1179 html {">New Target</a>}
1188 proc button-view-history {more} {
1194 html {<a href="http:} $env(SCRIPT_NAME)
1195 html / $sessionId {/history.egw;}
1196 catch { html "/" $nextSetNo}
1198 html {"><img src="/egwgif/button-view-history.gif" alt="View History" }
1199 html {border=0></a>}
1201 html {">View History</a>}
1210 proc button-new-query {more setNo} {
1217 html {<a href="http:} $env(SCRIPT_NAME)
1220 html {/mquery.egw/} $setNo
1222 html {/query.egw/} $hist($setNo,host) + $setNo
1226 html {<img src="/egwgif/button-new-query.gif" }
1227 html {alt="New Query" border=0></a>}
1229 html {New Query</a>}
1238 proc button-scan-window {more setNo} {
1244 html {<a href="http:} $env(SCRIPT_NAME)
1245 html / $sessionId {/search.egw/} $setNo + {scan} {">}
1247 html {<img src="/egwgif/button-scan-window.gif" }
1248 html {alt="Scan" border=0></a>}
1259 proc maintenance {} {
1260 html {<hr>This page is maintained by }
1261 html {<a href="mailto:pwh@dtv.dk"> Peter Wad Hansen </a>.}
1262 html {Last modified 29. january 1996. <br>}
1263 html {<em> This and the following pages are under construction and }
1264 html {will continue to be so until the end of January 1996.</em>}
1267 proc splitHostSpec {host} {
1268 set i [string last . $host]
1271 return [string range $host 0 $i]
1276 proc mergeHostSpec {host databases} {
1277 return ${host}.[join $databases -]