X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=www%2Ftargets.egw;h=2708dc0140089b19436d8bf9ef5800e8cb1b507f;hb=5b5e33eaf7afda11d555540e3f15ac2d49d245a6;hp=0111e42a7151d2af8d7791a40697e87443da6e9d;hpb=94e0e8ff10cdb5142f983cd76156310461f9eb89;p=egate.git diff --git a/www/targets.egw b/www/targets.egw index 0111e42..2708dc0 100644 --- a/www/targets.egw +++ b/www/targets.egw @@ -1,7 +1,7 @@ { -# $Id: targets.egw,v 1.5 1995/11/06 17:44:21 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,44 +10,59 @@ 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:

+

Choose a server


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