4fc8f45884d4633767abc0516f39a8f06fcc49e8
[egate.git] / www / mquery.egw
1 <html>
2 <head>
3 <title> WWW/Z39.50 Gateway Query Form</title>
4 </head>
5 <body>
6 {
7 # $Id: mquery.egw,v 1.10 1996/01/24 08:27:25 adam Exp $
8
9     if {[info commands saveState] == ""} {
10         source z39util.tcl
11     }
12
13     global setNo
14     global nextSetNo
15     global hist
16     global targets
17
18     if {[catch {set setNo $nextSetNo}]} {
19         set nextSetNo 1
20         set setNo 1
21     }
22
23     html {<form action="http:} $env(SCRIPT_NAME)
24     html / $sessionId {/msearch.egw/} $setNo {" method=get>} \n
25
26     set phost {}
27     set i 0
28     foreach t [lsort [egw_form target]] {
29         set host [lindex $t 0]
30         set base [lindex $t 1]
31         if {$host != $phost} {
32             set phost $host
33             incr i
34             set hist($setNo,$i,host) $host
35             set hist($setNo,$i,idAuthentication) [lindex $targets($host) 3]
36         }
37         lappend hist($setNo,$i,database) $base
38     }
39     if {$i == 0} {
40         html "<h2>No targets specified</h2></body></html>"
41         egw_abort 1
42     }
43     set hist($setNo,0,host) $i
44 }
45 <h2>Input your search criteria: </h2><br>
46 {
47     set fields [lindex $targets($host) 2]
48     for {set no 1} {$no < 4} {incr no} {
49         html {<select name="menu} $no {">} \n
50         foreach f $fields {
51             html {<option> } [lindex $f 0] \n
52         }
53         html "</select>\n"
54         html {<input type="text" name="entry} $no {" size=35>} \n
55         if {$no < 3} {
56             html {<select name="logic} $no {">} \n
57             html "<option> And\n"
58             html "<option> Or\n"
59             html "<option> And not\n"
60             html "</select>\n"
61         }
62         html "<br>\n"
63     }
64 }
65 <input type=submit value="Search"><input type=reset value="Reset">
66 <br>
67 {
68     html {Number of records to display in the result set list: }
69     html {<input type="text" name="hits" value="}
70     html 10
71     html {" size=3>}
72 }
73 </form>
74 {
75     global useIcons
76     if {$useIcons} {
77         html {<img src="/egwgif/button-egw.gif">}
78     }    
79     html {<a href="http:} $env(SCRIPT_NAME)
80     html / $sessionId {/mtargets.egw}
81     if {$useIcons} {
82         html {"><img src="/egwgif/button-new-target.gif" border=0></a>}
83     } else {
84         html {"> New target </a>}
85     }
86 }
87 {
88     catch maintenance
89     if {!$debug} return
90     html "<hr>\n"
91     html "<h3>Debug information</h3>\n"
92     html "sessionId: $sessionId <br>\n"
93     html "sessionParms: $sessionParms <br>\n"
94     foreach e {SERVER_NAME PATH_INFO SCRIPT_NAME} {
95         html $e {: } $env($e) {<br>} \n
96     }
97     set j $hist($setNo,0,host)
98     for {set i 1} {$i <= $j} {incr i} {
99         html "host=" $hist($setNo,$i,host) " " $hist($setNo,$i,database) 
100         html "<br>\n"
101     }
102     html "form: " [egw_form] " <br>\n"
103     html "target: " $host " <br>\n"
104     html "setNo: " $setNo " <br>\n"
105     html "nextSetNo: " $nextSetNo " <br>\n"
106 }
107 </body></html>