{ # $Id: targets.egw,v 1.19 1996/01/26 17:41:26 adam Exp $ source ztargets.conf if {[info commands saveState] == ""} { source z39util.tcl } set mMode 0 if {![info exists debug]} { if {[lindex $sessionParms 1] == "1"} { set debug 1 } else { set debug 0 } } set html3 [lindex $sessionParms 0] if {$html3 == ""} { if {[string first Mozilla $env(HTTP_USER_AGENT)] == 0} { set html3 1 egw_log debug "New user using Netscape" } else { set html3 0 egw_log debug "New user Not using Netscape" } } } Europagate, WWW/Z39.50 Gateway { set useIcons 1 button-europagate if {[info exists nextSetNo]} { button-view-history 1 } button-define-target 0 html "

Choose a target


\n" html "
\n" 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" set desc [lindex $targets($t) 4] if {$desc != ""} { html "
$desc\n" } } html "

\n" set useIcons 0 button-europagate if {[info exists nextSetNo]} { button-view-history 1 } button-define-target 0 } { catch maintenance global debug if {!$debug} return html "
\n" html "

Debug information

\n" html "sessionId: $sessionId
\n" html "sessionParms: $sessionParms
\n" foreach n [array names env] { html "env($n) = " $env($n) "
\n" } }