X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=www%2Ftargets.egw;h=55d8189d7892da8e5d3150674947df1aabd7118d;hb=25db261b6bbbfcc7bc26f679f195b51d31b9d7d7;hp=cd5cdf580ea36b6f05c02654f229c17e377265bb;hpb=150d836eb46d0dde8fedeb77fc7fd4ef6eafba4f;p=egate.git diff --git a/www/targets.egw b/www/targets.egw index cd5cdf5..55d8189 100644 --- a/www/targets.egw +++ b/www/targets.egw @@ -1,47 +1,79 @@ { -# $Id: targets.egw,v 1.4 1995/11/02 16:35:36 adam Exp $ - source /usr/local/etc/httpd/conf/ztargets.conf +# $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 -
-Welcome to EUROPAGATE -
-Part of Europagate is a World Wide Web to Z39.50 gateway. The gateway provides search and -retrieve facilities in the databases of various libraries.

- Europagate is a -project in the -EU libraries Programme carried out by:
- University College Dublin
-Technical University & Library of Denmark
-Library Council
-Consejo Superior de Investigaciones Científicas
-


- Choose a Z39.50 target:
-
{ - foreach t [array names targets] { - html {
} $t "\n" - html "
" [lindex $targets($t) 0] \n + 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 } -
-
-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 "

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" } }