Arrow gifs.
[egate.git] / www / showfull.egw
index 4a05178..5791e16 100644 (file)
 <html>
 {
-# $Id: showfull.egw,v 1.2 1995/11/01 16:15:46 adam Exp $
+# $Id: showfull.egw,v 1.10 1995/11/13 15:41:44 adam Exp $
 
-    htmlr {<head><title> WWW/Z39.50 Gateway Record } $host { </title>}
-    htmlr {</head><body>}
-    htmlr {sessionParms: } $sessionParms {<br>}
-    wflush
+proc buttons {setNo tno no format count host after} {
+    global sessionId
+    global env
+    global hist
+
+    if {$after && $no < $count} {
+        html "<p><center>\n"
+        html {<a href="http:} $env(SCRIPT_NAME)
+        html / $sessionId {/showfull.egw/} $setNo + $tno + 
+        html [expr $no + 1] + $format
+        html {"><img src="/gif/darrw.gif"></a>}
+        html "</center>\n"
+    }
+    html "<p>\n"
+    if {$no < $count} {
+        html {<a href="http:} $env(SCRIPT_NAME)
+        html / $sessionId {/showfull.egw/} $setNo + $tno + 
+        html [expr $no + 1] + $format
+        html {">Next record</a>} " | \n"
+    }
+    if {$no > 1} {
+        html {<a href="http:} $env(SCRIPT_NAME)
+        html / $sessionId {/showfull.egw/} $setNo + $tno +
+        html [expr $no - 1] + $format
+        html {">Previous record</a>} " | \n"
+    }
+
+    html {<a href="http:} $env(SCRIPT_NAME)
+    html / $sessionId {/showfull.egw/} $setNo + $tno + $no +
+    if {$format == "full"} {
+       html raw {">Raw format</a>} " | \n"
+    } else {
+       html full {">Full format</a>} " | \n"
+    }
+
+    html {<a href="http:} $env(SCRIPT_NAME) / $sessionId 
+    if {$tno > 0} {
+        html {/msearch.egw/} 
+    } else {
+        html {/search.egw/}
+    }
+    html $setNo + 1
+    html + $hist($setNo,maxPresent)
+    html {">Result set</a>} " | \n"
+       
+    html {<a href="http:} $env(SCRIPT_NAME) / $sessionId 
+    if {$tno > 0} {
+        html {/mquery.egw/} 
+    } else {
+        html {/query.egw/} 
+    }
+    html $host + $setNo 
+    html {">New query</a>} " | \n"
+
+    html {<a href="http:} $env(SCRIPT_NAME) / $sessionId 
+    if {$tno > 0} {
+        html {/mtargets.egw} 
+    } else {
+        html {/targets.egw} 
+    }
+    html {">New target</a>} "<p>\n"
+
+    if {!$after && $no > 1} {
+        html "<p><center>\n"
+        html {<a href="http:} $env(SCRIPT_NAME)
+        html / $sessionId {/showfull.egw/} $setNo + $tno +
+        html [expr $no - 1] + $format
+        html {"><img src="/gif/uarrw.gif"></a>}
+        html "</center>\n"
+    }
+}
+
+    if {[info commands saveState] == ""} {
+        source z39util.tcl
+    }
+
+    html "<head><title> WWW/Z39.50 Gateway Record " $host " </title>\n"
+    html "</head><body>\n"
+
+    global setNo
+    global hist
 
     set sno [lindex $sessionParms 0]
-    set no [lindex $sessionParms 1]
+    set tno [lindex $sessionParms 1]
+    set no [lindex $sessionParms 2]
+    set format [lindex $sessionParms 3]
+
+    set setNo $sno
+
+    if {$tno > 0} {
+        set zz z39$tno
+        set host $hist($setNo,$tno,host)
+    } else {
+        set zz z39
+        set host $hist($setNo,host)
+    }
+    
+    if {[z39search $setNo 0 $tno F] != "1"} {
+        return
+    }
+    set count [$zz.$setNo resultCount]
+    html "<h2>Record \#$no out of $count </h2><br>\n"
+
+    buttons $setNo $tno $no $format $count $host 0
 
-    display-full z39.$sno $no
+    eval {z39present $setNo $tno $no $no display-$format F}
+    buttons $setNo $tno $no $format $count $host 1
 }
 </body>
 </html>