X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=www%2Fz39util.tcl;h=aa5378202b21b4ded38f4edb51340988c5e66e0b;hb=25db261b6bbbfcc7bc26f679f195b51d31b9d7d7;hp=855351958d64d9423f5ac32a1d1d1c69512ce0cc;hpb=3871eda3b3a1518d4d18c1ffc0ed0375cb88bdf5;p=egate.git diff --git a/www/z39util.tcl b/www/z39util.tcl index 8553519..aa53782 100644 --- a/www/z39util.tcl +++ b/www/z39util.tcl @@ -1,5 +1,5 @@ # -# $Id: z39util.tcl,v 1.33 1996/02/21 16:57:39 adam Exp $ +# $Id: z39util.tcl,v 1.34 1996/02/29 15:41:40 adam Exp $ # proc saveState {} { uplevel #0 { @@ -70,7 +70,6 @@ proc display-brief {zset no tno} { global setNo global sessionId - html {
  • } set type [$zset type $no] if {$type == "SD"} { @@ -90,7 +89,15 @@ proc display-brief {zset no tno} { html [join [$zset getSutrs $no]] html "
    \n" return - } + } + if {$rtype == "WAIS"} { + html { } + html [join [$zset getWAIS $no headline]] + html {} + html "
    \n" + return + } if {![catch { set author [$zset getMarc $no field 100 * a] set corp [$zset getMarc $no field 110 * a] @@ -297,6 +304,84 @@ proc dl-marc-field-rec {zset no tag lead start stop startid sep} { } } +proc display-full-wais {zset no} { + set i0 0 + set i1 0 + set refNo 0 + set body [$zset getWAIS $no text] + + while {[string length [set c [string index $body $i1]]]} { + if {[string compare $c \n]} { + incr i1 + continue + } + set l [string trim [string range $body $i0 $i1]] + egw_log debug "line=$l" + incr i1 + set i0 $i1 + if {[string compare [string index $l 0] {<}]} { + egw_log "xxxxxxxxxxxxxxxx" + continue + } + if {[set mark [string first > $l ]] < 1} { + egw_log "yyyyyyyyyyyyyyyy" + continue + } + set data [string trim [string range $l [expr $mark +1] end]] + incr mark -1 + set sw [string range $l 1 $mark] + egw_log debug "sw=$sw" + egw_log debug "data=$data" + switch -exact $sw { + ti { + set title $data + } + dm { + set dateOfLastModification $data + } + ci { + set controlIdentifier $data + } + lc { + set lastChecked $data + } + by { + set bytes $data + } + avli { + set linkage $data + } + cr { + incr refNo + } + li { + set crossRef($refNo,linkage) $data + } + cp { + set crossRef($refNo,title) $data + } + } + } + html {Title: } {} $title "
    \n" + html {URL: } $linkage "
    \n" + if {[info exists bytes]} { + html {Bytes: } $bytes "
    \n" + } + if {[info exists dateOfLastModification]} { + html {Last modified: } $dateOfLastModification "
    \n" + } + if {[info exists lastChecked]} { + html {Last checked: } $lastChecked "
    \n" + } + html "\n" +} + proc display-full {zset no tno} { set type [$zset type $no] if {$type == "SD"} { @@ -315,7 +400,11 @@ proc display-full {zset no tno} { if {$rtype == "SUTRS"} { html [join [$zset getSutrs $no]] "
    \n" return - } + } + if {$rtype == "WAIS"} { + display-full-wais $zset $no + return + } if {[catch {set r [$zset getMarc $no line * * *]}]} { html "Unknown record type: $rtype
    \n" return @@ -453,6 +542,15 @@ proc build-query {t ilines} { set q {} for {set i 1} {$i <= $ilines} {incr i} { set term [join [egw_form entry$i]] + if {[lindex $targets($t) 6] == "1"} { + if {[string length $op] == 0} { + set q $term + } else { + set q "$term $q" + } + set op [egw_form logic$i] + continue + } if {[string length $term] > 0} { set field [join [egw_form menu$i]] foreach x [lindex $targets($t) 2] { @@ -496,9 +594,7 @@ proc z39scan {setNo scanNo tno scanLines scanPos cache} { set scanAttr $hist($setNo,scanAttr) set scanTerm $hist($setNo,$scanNo,scanTerm) } - if {[catch [list $zz failback fail-response]]} { - ir $zz - } + mkAssoc $zz $host if {[catch [list set oldHost [$zz connect]]]} { set oldHost "" } @@ -656,9 +752,7 @@ proc z39search {setNo piggy tno elements} { set database $hist($setNo,database) set query $hist($setNo,query) } - if {[catch [list $zz failback fail-response]]} { - ir $zz - } + mkAssoc $zz $host if {[catch [list set oldHost [$zz connect]]]} { set oldHost "" } @@ -690,7 +784,7 @@ proc z39search {setNo piggy tno elements} { $zz disconnect return 0 } - if {[catch {egw_wait sessionWait 60}]} { + if {$sessionWait == 0 && [catch {egw_wait sessionWait 60}]} { displayError "Cannot initialize target" $thisHost $zz disconnect return 0 @@ -717,8 +811,12 @@ proc z39search {setNo piggy tno elements} { } } } - ir-set $zz.$setNo $zz - + + if {[lindex $targets($host) 6] == "1"} { + wais-set $zz.$setNo $zz + } else { + ir-set $zz.$setNo $zz + } if {![lindex $targets($host) 5]} { set elements {} } @@ -858,9 +956,7 @@ proc z39msearch {setNo elements start number cache} { egw_log debug "z39msearch start=$start number=$number elements=$elements" for {set i 1} {$i <= $not} {incr i} { set host $hist($setNo,$i,host) - if {[catch [list z39$i failback fail-m-response $i]]} { - ir z39$i - } + mkAssoc z39$i $host set oldHost [z39$i connect] set thisHost [splitHostSpec $host] if {[string compare $oldHost $thisHost]} { @@ -874,7 +970,7 @@ proc z39msearch {setNo elements start number cache} { set oldHost [z39$i connect] set host $hist($setNo,$i,host) set thisHost [splitHostSpec $host] - if {![string compare $oldhost $thisHost]} { + if {![string compare $oldHost $thisHost]} { continue } egw_log debug "old=$oldHost this=$thisHost" @@ -893,8 +989,9 @@ proc z39msearch {setNo elements start number cache} { } set zleft 0 for {set i 1} {$i <= $not} {incr i} { + set host $hist($setNo,$i,host) if {$debug} { - html "host " [splitHostSpec $hist($setNo,$i,host)] ": " + html "host " [splitHostSpec $host] ": " } egw_log debug "i=$i zstatus=$zstatus($i)" if {$zstatus($i) < 1} { @@ -907,7 +1004,12 @@ proc z39msearch {setNo elements start number cache} { if {$debug} { html "ok
    \n" } - ir-set z39$i.$setNo z39$i + + if {[lindex $targets($host) 6] == "1"} { + wais-set z39$i.$setNo z39$i + } else { + ir-set z39$i.$setNo z39$i + } set hist($setNo,$i,offset) 0 eval z39$i.$setNo databaseNames $hist($setNo,$i,database) @@ -1305,3 +1407,23 @@ proc splitHostSpec {host} { proc mergeHostSpec {host databases} { return ${host}.[join $databases -] } + +proc mkAssoc {assoc host} { + global targets + + if {[catch {$assoc failback fail-response}]} { + if {[lindex $targets($host) 6] == "1"} { + wais $assoc + } else { + ir $assoc + } + } else { + if {[lindex $targets($host) 6] == "1"} { + if {[$assoc comstack] == "wais"} return + wais $assoc + } else { + if {[$assoc comstack] == "tcpip"} return + ir $assoc + } + } +} \ No newline at end of file