X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=www%2Fshowfull.egw;h=4c708dd01023fd6b1f599e60ad3f0e01e6aa08a3;hb=4938d0c2e8f4e1eec397c2bfbbc7e23fd150c369;hp=0ec8051105cf932fbaa3fb2484e292ce745ee74c;hpb=705b88300e427db47dd933f2ee615e73bf3c3754;p=egate.git diff --git a/www/showfull.egw b/www/showfull.egw index 0ec8051..4c708dd 100644 --- a/www/showfull.egw +++ b/www/showfull.egw @@ -1,71 +1,112 @@ { -# $Id: showfull.egw,v 1.8 1995/11/10 10:20:25 adam Exp $ +# $Id: showfull.egw,v 1.20 1996/03/07 12:46:09 adam Exp $ -proc buttons {setNo no format} { +proc buttons {setNo tno no format count host after} { global sessionId + global useIcons global env global hist html "

\n" - if {$no < [z39.$setNo resultCount]} { + button-europagate + if {$no < $count} { html {Next record} " | \n" + html / $sessionId {/showfull.egw/} $setNo + $tno + + html [expr $no + 1] + $format + if {$useIcons} { + html {">} + } else { + html {">Next} " | \n" + } } if {$no > 1} { html {Previous record} " | \n" + html / $sessionId {/showfull.egw/} $setNo + $tno + + html [expr $no - 1] + $format + if {$useIcons} { + html {">} + } else { + html {">Previous} " | \n" + } } html {Raw format} " | \n" + html raw + if {$useIcons} { + html {">} + } else { + html {">Raw Format} " | \n" + } } else { - html full {">Full format} " | \n" + html full + if {$useIcons} { + html {">} + } else { + html {">Full Format} " | \n" + } } - html {Result} " | \n" - - html {New target} " | \n" - html {New query} "

\n" + html {} + } else { + html {">Result Set} " | \n" + } + button-new-query 1 $setNo + button-new-target 0 + html "

\n" } if {[info commands saveState] == ""} { source z39util.tcl } - html " WWW/Z39.50 Gateway Record " $host " \n" - html "\n" - global setNo global hist set sno [lindex $sessionParms 0] - set no [lindex $sessionParms 1] - set format [lindex $sessionParms 2] + set tno [lindex $sessionParms 1] + set no [lindex $sessionParms 2] + set format [lindex $sessionParms 3] set setNo $sno + + set zz z39$tno + set host $hist($setNo,$tno,host) - if {[z39search $setNo 0] != "1"} { + html " WWW/Z39.50 Gateway Record " [splitHostSpec $host] + html " \n" + html "\n" + + if {[z39search $setNo 0 $tno F] != "1"} { return } - set total [z39.$setNo resultCount] - html "

Record \#$no out of $total


\n" - buttons $setNo $no $format + set count [$zz.$setNo resultCount] + + set useIcons 1 + buttons $setNo $tno $no $format $count $host 0 + + html "

Record \#$no out of $count


\n" - eval {z39present $setNo $no $no display-$format} - buttons $setNo $no $format + eval {z39present $setNo $tno $no $no display-$format F} + set useIcons 0 + buttons $setNo $tno $no $format $count $host 1 }