Major revision. Single-target result set can be reached from the
[egate.git] / www / showfull.egw
index 0ec8051..8b33a18 100644 (file)
 <html>
 {
-# $Id: showfull.egw,v 1.8 1995/11/10 10:20:25 adam Exp $
+# $Id: showfull.egw,v 1.23 1996/03/13 14:07:31 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 "<p>\n"
-    if {$no < [z39.$setNo resultCount]} {
+    button-main
+    if {$no < $count} {
+        if {!$useIcons} {
+            html "\n | "
+        }
         html {<a href="http:} $env(SCRIPT_NAME)
-        html / $sessionId {/showfull.egw/} $setNo + [expr $no + 1] + $format
-        html {">Next record</a>} " | \n"
+        html / $sessionId {/showfull.egw/} $setNo + $tno + 
+        html [expr $no + 1] + $format
+        if {$useIcons} {
+            html {"><img src="/egwgif/button-next-record.gif" }
+           html {alt="Next Record" border=0></a>}
+        } else {
+            html {">Next</a>}
+        }
     }
     if {$no > 1} {
+        if {!$useIcons} {
+            html "\n | "
+        }
         html {<a href="http:} $env(SCRIPT_NAME)
-        html / $sessionId {/showfull.egw/} $setNo + [expr $no - 1] + $format
-        html {">Previous record</a>} " | \n"
+        html / $sessionId {/showfull.egw/} $setNo + $tno +
+        html [expr $no - 1] + $format
+        if {$useIcons} {
+            html {"><img src="/egwgif/button-previous-record.gif" }
+           html {alt="Previous Record" border=0></a>}
+        } else {
+            html {">Previous</a>}
+        }
     }
 
+    if {!$useIcons} {
+        html "\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"
+        html raw 
+        if {$useIcons} {        
+            html {"><img src="/egwgif/button-raw-marc.gif" }
+           html {alt="Raw Format" border=0></a>}
+        } else {
+            html {">Raw Format</a>}
+        }
     } else {
-       html full {">Full format</a>} " | \n"
+        html full
+        if {$useIcons} {
+            html {"><img src="/egwgif/button-full-format.gif" }
+           html {alt="Full Format" border=0></a>}
+        } else {
+            html {">Full Format</a>}
+        }
     }
 
-    html {<a href="http:} $env(SCRIPT_NAME)
-    html / $sessionId {/search.egw/} $setNo + 1
-    html + $hist($setNo,maxPresent)
-    html {">Result</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"
-
+    button-result-set $setNo $tno
+    button-new-query $setNo
+    button-new-target
+    html "<p>\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 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 "<head><title> WWW/Z39.50 Gateway Record " [lindex $targets($host) 0]
+    html " </title>\n"
+    html "</head><body>\n"
+
+    if {[z39search $setNo 0 $tno F] != "1"} {
         return
     }
-    set total [z39.$setNo resultCount]
-    html "<h2>Record \#$no out of $total </h2><br>\n"
 
-    buttons $setNo $no $format
+    set count [$zz.$setNo resultCount]
+
+    set useIcons 1
+    buttons $setNo $tno $no $format $count $host 0
+
+    html "<h3>Record \#$no out of $count in " [lindex $targets($host) 0]
+    html "</h3><br>\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
 }
 </body>
 </html>