Attempt to inform user if session has really terminated.
[egate.git] / www / query.egw
index 3e11570..74ad296 100644 (file)
@@ -1,13 +1,13 @@
 <html>
-<head>
-<title> WWW/Z39.50 Gateway Query Form</title>
-</head>
-<body>
 {
-# $Id: query.egw,v 1.36 1996/03/08 16:47:05 adam Exp $
+# $Id: query.egw,v 1.39 1996/03/14 11:50:47 adam Exp $
 
     if {[info commands saveState] == ""} {
         source z39util.tcl
+        if {![info exists debug]} {
+            session-lost
+            egw_abort
+        }
     }
 
 proc fail-response {} {
@@ -24,8 +24,10 @@ proc ok-response {} {
     global nextSetNo
     global hist
 
-    set host [lindex $sessionParms 0]
-    set initSet [lindex $sessionParms 1]
+    html {<head><title> WWW/Z39.50 Gateway Query Form</title></head><body>}
+
+    set initSet [lindex $sessionParms 0]
+    set host [lindex $sessionParms 1]
     set scanLine [lindex $sessionParms 2]
     set scanTerm [lrange $sessionParms 3 end]
 
@@ -95,19 +97,19 @@ proc ok-response {} {
     }
 
     set useIcons 1
-    button-europagate
-    button-new-target 1
+    button-main
+    button-new-target
     if {[lsearch [z390 options] scan] >= 0} {
-        button-scan-window 1 $setNo
+        button-scan-window $setNo
     }
-    button-view-history 0 
+    button-view-history
 
     html "<h2>" [lindex $targets($host) 0] "</h2><br>\n"
 
     html [lindex $targets($host) 4] "<br>\n"
 
     set databases [splitDatabaseSpec $host]
-    if {$initSet == ""} {
+    if {$initSet == -1} {
         set databaseDefault [lindex $databases 0]
         set oSetNo 0
     } else {
@@ -139,7 +141,7 @@ proc ok-response {} {
             html [concat $databases] {"> All <br>} \n
         }
     }
-    html "Input your search criteria:<br>\n"
+    html "<b>Fill-in this search form:</b><br>\n"
     set fields [lindex $targets($host) 2]
     for {set no 1} {$no < 4} {incr no} {
         html {<select name="menu} $no {">} \n
@@ -166,7 +168,7 @@ proc ok-response {} {
         if {[string length $template] > 0} {
             html { value="} $template {"}
         }
-        html { size=43> }
+        html { size=35> }
         if {0 && [lsearch [z390 options] scan] >= 0} {
             html {<input type="checkbox" name="scan} $no {" value="1" scan>}
         }
@@ -205,12 +207,12 @@ proc ok-response {} {
     html "<p>\n"
 
     set useIcons 0
-    button-europagate
-    button-new-target 1
+    button-main
+    button-new-target
     if {[lsearch [z390 options] scan] >= 0} {
-        button-scan-window 1 $setNo
+        button-scan-window $setNo
     }
-    button-view-history 0 
+    button-view-history
 }
 
 {