X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=www%2Ftargets.egw;h=f954c23b553e3f36b112c40e0434bdbc2ffd2b92;hb=df7b985601de6c729147a6fd6588adba6f905480;hp=0111e42a7151d2af8d7791a40697e87443da6e9d;hpb=94e0e8ff10cdb5142f983cd76156310461f9eb89;p=egate.git diff --git a/www/targets.egw b/www/targets.egw index 0111e42..f954c23 100644 --- a/www/targets.egw +++ b/www/targets.egw @@ -1,6 +1,6 @@ { -# $Id: targets.egw,v 1.5 1995/11/06 17:44:21 adam Exp $ +# $Id: targets.egw,v 1.10 1996/01/02 10:52:30 adam Exp $ source /usr/local/etc/httpd/conf/ztargets.conf if {[info commands saveState] == ""} { source z39util.tcl @@ -11,25 +11,26 @@
-Welcome to EUROPAGATE +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 Z39.50 target


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