X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=www%2Ftargets.egw;h=2708dc0140089b19436d8bf9ef5800e8cb1b507f;hb=fa0ddb755d3a836e4e13cc05a6ba3eb6b0010958;hp=9726f97f88d2d7dc78f8d302660a4a159e592a81;hpb=09f416a26c1c7e35ead317106f985774ec0c97bd;p=egate.git diff --git a/www/targets.egw b/www/targets.egw index 9726f97..2708dc0 100644 --- a/www/targets.egw +++ b/www/targets.egw @@ -1,7 +1,7 @@ { -# $Id: targets.egw,v 1.9 1995/12/21 15:49:53 adam Exp $ - source /usr/local/etc/httpd/conf/ztargets.conf +# $Id: targets.egw,v 1.17 1996/01/24 14:14:19 adam Exp $ + source ztargets.conf if {[info commands saveState] == ""} { source z39util.tcl } @@ -10,16 +10,35 @@ Europagate, WWW/Z39.50 Gateway -
-EUROPAGATE -
- -

Choose Z39.50 target

+

Choose a server


{ - foreach t [array names targets] { + if {![info exists debug]} { + if {[lindex $sessionParms 0] == "1"} { + set debug 1 + } else { + set debug 0 + } + } + + if {![info exists useIcons]} { + if {[lindex $sessionParms 1] == "1"} { + set useIcons 0 + } else { + set useIcons 1 + } + } + proc targetsCmp {l r} { + global targets + return [string compare [string tolower [lindex $targets($l) 0]] \ + [string tolower [lindex $targets($r) 0]]] + } + set tt [array names targets] + set tn [lsort -command targetsCmp $tt] + foreach t $tn { + if {[string index $t 0] == "."} continue html {
} [lindex $targets($t) 0] " \n" + html "$sessionId/query.egw;/$t" {"> } [lindex $targets($t) 0] " \n" set desc [lindex $targets($t) 4] if {$desc != ""} { html "
$desc\n" @@ -27,21 +46,23 @@ } }
+ { - z39history + button-europagate + button-define-target 1 + button-view-history 0 } -
-This page is maintained by Peter Wad Hansen . -Last modified 25. september 1995.
- This and the following pages are under construction and will continue to be so -until the end of December 1995. + { + catch maintenance + global debug + if {!$debug} return html "
\n" html "

Debug information

\n" html "sessionId: $sessionId
\n" html "sessionParms: $sessionParms
\n" - foreach e {SERVER_NAME PATH_INFO SCRIPT_NAME} { - html $e {: } $env($e) {
} \n + foreach n [array names env] { + html "env($n) = " $env($n) "
\n" } }