More verbose.
[egate.git] / www / z39util.tcl
index 9413385..4853f0a 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: z39util.tcl,v 1.16 1996/01/03 08:59:45 adam Exp $
+# $Id: z39util.tcl,v 1.18 1996/01/04 13:30:33 adam Exp $
 #
 proc saveState {} {
     uplevel #0 {
@@ -70,6 +70,8 @@ proc display-brief {zset no tno} {
     global setNo
     global sessionId
 
+
+    html {<li>}
     set type [$zset type $no]
     if {$type == "SD"} {
         set err [lindex [$zset diag $no] 1]
@@ -83,7 +85,6 @@ proc display-brief {zset no tno} {
     if {$type != "DB"} {
         return
     }
-    html "${no}"
     set rtype [$zset recordType $no]
     if {$rtype == "SUTRS"} {
         html [join [$zset getSutrs $no]]
@@ -91,12 +92,29 @@ proc display-brief {zset no tno} {
         return
     } 
     if {![catch {
+        set author [$zset getMarc $no field 100 * a]
         set title [lindex [$zset getMarc $no field 245 * a] 0]
         set year [lindex [$zset getMarc $no field 260 * c] 0]
     } ] } {
+        set p 0
+        foreach a $author {
+            if {$p} {
+                html ", "
+            }
+            html $a
+            set p 1
+        }
+        if {$p} {
+            html ": "
+        }
         html {<a href="http:} $env(SCRIPT_NAME) /
-        html $sessionId {/showfull.egw/} $setNo + $tno + $no + full 
-        html {"> } $title {</a>} " <i> ${year} </i>"
+        html $sessionId {/showfull.egw/} $setNo + $tno + $no + full {">}
+        if {[string length $title] == 0} {
+            html {No title}
+        } else {
+            html $title
+        }
+        html {</a>} " <i> ${year} </i>"
     }
     html "<br>\n"
 }
@@ -384,7 +402,7 @@ proc build-query {t ilines} {
     set q {}
     for {set i 1} {$i <= $ilines} {incr i} {
         set term [wform entry$i]
-        if {$term != ""} {
+        if {[string length $term] > 0} {
             set field [wform menu$i]
             foreach x [lindex $targets($t) 2] {
                 if {[lindex $x 0] == $field} {
@@ -541,9 +559,10 @@ proc display-scan {setNo scanNo tno} {
         }
     }
     for {set i 0} {$i < $m} {incr i} {
+        regsub -all {\ } [lindex [$zs scanLine $i] 1] + tterm
         html {<a href="http:} $env(SCRIPT_NAME)
         html / $sessionId {/query.egw/} $hist($setNo,host) + $setNo +
-        html $hist($setNo,scan) + [lindex [$zs scanLine $i] 1] {">}
+        html $hist($setNo,scan) +  $tterm {">}
         html [lindex [$zs scanLine $i] 1]
         html {</a>: <em>}
         html [lindex [$zs scanLine $i] 2]
@@ -872,26 +891,39 @@ proc z39history {} {
     if {![info exists nextSetNo]} {
         return
     }
-    html "<hr><h2>History</h2><dl><br>\n"
+    html "<h2>History</h2><dl><br>\n"
     for {set setNo 1} {$setNo < $nextSetNo} {incr setNo} {
-        html {<dt> <a href="http:} $env(SCRIPT_NAME)
-        html / $sessionId {/search.egw/} $setNo + 1
-        html + $hist($setNo,maxPresent)
-        html {"> } [lindex $targets($hist($setNo,host)) 0]
-        if {[llength $hist($setNo,database)] > 1} {
+        if {$hist($setNo,scan) > 0} continue
+        set host $hist($setNo,host)
+        html {<dt> } [lindex $targets($host) 0]
+        if {[llength [lindex $targets($host) 1]] > 1} {
             html ": "
             foreach b $hist($setNo,database) {
                 html " $b"
             }
         }
-        html "</a>\n"
-        html "<dd> "
+        html {. }
+
         if {[info exists hist($setNo,hits)]} {
-            html $hist($setNo,hits) " hits"
+            html { <a href="http:} $env(SCRIPT_NAME)
+            html / $sessionId {/search.egw/} $setNo + 1
+            html + $hist($setNo,maxPresent)
+            html {">Result</a>: } $hist($setNo,hits) { hits.}
         } else {
-            html failed
+            html {Search failed.}
+        }
+        html "<dd>\n"
+        html { <a href="http:} $env(SCRIPT_NAME)
+        html / $sessionId {/query.egw/} $host + $setNo 
+        html {">Query</a>: }
+        set op {}
+        for {set i 1} {$i <= 3} {incr i} {
+            if {[string length $hist($setNo,form,entry$i)] > 0} {
+                html " <b>" [join $op " "] "</b> "
+                html $hist($setNo,form,menu$i) "=" $hist($setNo,form,entry$i)
+                set op $hist($setNo,form,logic$i)
+            }
         }
-        html "\n"
     }
     html "</dl>\n"
 }
@@ -906,4 +938,80 @@ proc displayError {msga msgb} {
     html "</center><p>\n"
 }
 
-set useIcons 1
+proc button-europagate {} {
+    global useIcons
+    if {$useIcons} {
+        html {<img src="/gif/button-egw.gif" alt="Europagate" border=0></a>}
+    } else {
+        html {Europagate | }
+    }
+}
+
+proc button-new-target {more} {
+    global useIcons
+    global env
+    global sessionId
+
+    html {<a href="http:} $env(SCRIPT_NAME)
+    html / $sessionId {/targets.egw}
+    if {$useIcons} {
+        html {"><img src="/gif/button-new-target.gif" }
+       html {alt="New Target" border=0></a>}
+    } else {
+        html {">New Target</a>}
+        if {$more} {
+            html " | \n"
+        } else {
+            html "\n"
+        }
+    }
+}
+
+proc button-view-history {more} {
+    global useIcons
+    global env
+    global sessionId
+
+    html {<a href="http:} $env(SCRIPT_NAME)
+    html / $sessionId {/history.egw}
+    if {$useIcons} {
+        html {"><img src="/gif/button-view-history.gif" alt="View History" }
+        html {border=0></a>}
+    } else {
+        html {">View History</a>}
+        if {$more} {
+            html " | \n"
+        } else {
+            html "\n"
+        }
+    }
+}
+
+proc button-new-query {more setNo} {
+    global useIcons
+    global env
+    global sessionId
+    global hist
+
+    html {<a href="http:} $env(SCRIPT_NAME)
+    html / $sessionId {/query.egw/} $hist($setNo,host) + $setNo {">}
+    if {$useIcons} {
+        html {<img src="/gif/button-new-query.gif" }
+       html {alt="New Query" border=0></a>}
+    } else {
+        html {New Query</a>}
+        if {$more} {
+            html " | \n"
+        } else {
+            html "\n"
+        }
+    }
+}
+
+proc maintenance {} {
+    html {<hr>This page is maintained by }
+    html {<a href="mailto:pwh@dtv.dk"> Peter Wad Hansen </a>.}
+    html {Last modified 3. january 1996. <br>}
+    html {<em> This and the following pages are under construction and }
+    html {will continue to be so until the end of January 1996.</em>}
+}