Arrow gifs.
[egate.git] / www / showfull.egw
index 0ec8051..5791e16 100644 (file)
@@ -1,43 +1,77 @@
 <html>
 {
-# $Id: showfull.egw,v 1.8 1995/11/10 10:20:25 adam Exp $
+# $Id: showfull.egw,v 1.10 1995/11/13 15:41:44 adam Exp $
 
-proc buttons {setNo no format} {
+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 < [z39.$setNo resultCount]} {
+    if {$no < $count} {
         html {<a href="http:} $env(SCRIPT_NAME)
-        html / $sessionId {/showfull.egw/} $setNo + [expr $no + 1] + $format
+        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 + [expr $no - 1] + $format
+        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 + $no +
+    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)
-    html / $sessionId {/search.egw/} $setNo + 1
+    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</a>} " | \n"
+    html {">Result set</a>} " | \n"
        
-    html {<a href="http:} $env(SCRIPT_NAME)
-    html / $sessionId {/targets.egw">New target</a>} " | \n"
-    html {<a href="http:} $env(SCRIPT_NAME)
-    html / $sessionId {/query.egw/} $hist($setNo,host) + $setNo 
-    html {">New query</a>} "<p>\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] == ""} {
@@ -51,21 +85,30 @@ proc buttons {setNo no format} {
     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
+
+    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] != "1"} {
+    if {[z39search $setNo 0 $tno F] != "1"} {
         return
     }
-    set total [z39.$setNo resultCount]
-    html "<h2>Record \#$no out of $total </h2><br>\n"
+    set count [$zz.$setNo resultCount]
+    html "<h2>Record \#$no out of $count </h2><br>\n"
 
-    buttons $setNo $no $format
+    buttons $setNo $tno $no $format $count $host 0
 
-    eval {z39present $setNo $no $no display-$format}
-    buttons $setNo $no $format
+    eval {z39present $setNo $tno $no $no display-$format F}
+    buttons $setNo $tno $no $format $count $host 1
 }
 </body>
 </html>