Work on scan.
[egate.git] / www / msearch.egw
index ee40776..4ac4f3a 100644 (file)
@@ -1,6 +1,6 @@
 <html>
 {
-# $Id: msearch.egw,v 1.4 1995/11/10 14:47:31 adam Exp $
+# $Id: msearch.egw,v 1.6 1995/12/21 15:49:51 adam Exp $
 
     if {[info commands saveState] == ""} {
         source z39util.tcl
             set hist($nextSetNo,$i,host) $hist($setNo,$i,host)
             set hist($nextSetNo,$i,database) $hist($setNo,$i,database)
             set hist($nextSetNo,$i,idAuthentication) \
-                hist($setNo,$i,idAuthentication) 
+                $hist($setNo,$i,idAuthentication) 
         }
         set setNo $nextSetNo
         incr nextSetNo
 
         for {set i 1} {$i <= $hist($setNo,0,host)} {incr i} {
-            set hist($setNo,$i,query) [build-query $hist($setNo,$i,host)]
+            set hist($setNo,$i,query) [build-query $hist($setNo,$i,host)] 3
         }
         set hist($setNo,maxPresent) [wform hits]
         if {$hist($setNo,maxPresent) == ""} {
             set hist($setNo,maxPresent) 30
         }
     }
-    z39msearch $setNo 1
+    z39msearch $setNo 1 B
 
     html "<dl>\n"
     set not $hist($setNo,0,host)
     for {set i 1} {$i <= $not} {incr i} {
         if {$zstatus($i) != 2} continue
-        html "<dt> " $hist($setNo,$i,host) ": "
+        html "<dt><h3>" [lindex $targets($hist($setNo,$i,host)) 0] ": "
         set status [z39$i.$setNo responseStatus]
         if {[lindex $status 0] == "NSD"} {
             z39$i.$setNo nextResultSetPosition 0
             set code [lindex $status 1]
             set msg [lindex $status 2]
             set addinfo [lindex $status 3]
-            html "Error\n<dd>NSD$code: $msg: $addinfo"
+            html "Error</h3>\n<dd>NSD$code: $msg: $addinfo"
         } else {
             set r [z39$i.$setNo resultCount]
-            html "$r hits\n<dd>\n"
+            html "$r hits</h3>\n<dd>\n"
 
             display-rec 1 $hist($setNo,$i,offset) display-brief $i
         }
     html "</dl>\n"
 }
 
-
-<hr>
 {
+    global useIcons
+
+    if {$useIcons} {
+        html {<img src="/gif/button-egw.gif">}
+    }
     html {<a href="http:} $env(SCRIPT_NAME)
-    html / $sessionId {/mtargets.egw"> New target </a>} " | \n"
+    html / $sessionId {/mtargets.egw}
+    if {$useIcons} {
+       html {"><img src="/gif/button-new-target.gif" border=0></a>}
+    } else {
+       html {"> New target </a>} " | \n"
+    }
     html {<a href="http:} $env(SCRIPT_NAME)
-    html / $sessionId {/mquery.egw/} $host + $setNo {"> New query </a>}
+    html / $sessionId {/mquery.egw/} $host + $setNo
+    if {$useIcons} {
+        html {"><img src="/gif/button-new-query.gif" border=0></a>}
+    } else {
+        html {"> New query </a>}
+    }
 }
 
 {