X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=www%2Ftdefine.egw;h=28f27c8dada7163825039f0a373e223dfab63a6c;hb=8bafbc608e1ffba9ee87f4856e586dffa57901b8;hp=bd8453bdce7f13f3650f2ed33c8b5799bab857e7;hpb=fa0ddb755d3a836e4e13cc05a6ba3eb6b0010958;p=egate.git diff --git a/www/tdefine.egw b/www/tdefine.egw index bd8453b..28f27c8 100644 --- a/www/tdefine.egw +++ b/www/tdefine.egw @@ -1,14 +1,23 @@ - - WWW/Z39.50 Gateway Target Definition Response - - { -# $Id: tdefine.egw,v 1.1 1996/01/24 14:14:19 adam Exp $ +# $Id: tdefine.egw,v 1.6 1996/03/14 11:50:49 adam Exp $ if {[info commands saveState] == ""} { source z39util.tcl + if {![info exists debug]} { + session-lost + egw_abort + } } + + html { WWW/Z39.50 Gateway Target Definition Response} + html {} + + set useIcons 1 + button-main + button-define-target + button-new-target + html "

Target definition response


\n" set name [lindex [egw_form name] 0] @@ -17,21 +26,27 @@ set databases [lindex [egw_form databases] 0] set authentication [egw_form authentication] set fields [lindex [egw_form fields] 0] + set recordType [lindex [egw_form recordtype] 0] set ok 1 if {[string length $name] == 0} { - html "You didn't specify a target name. You must specify" - html " a target name
\n" + html "You didn't specify a target name. A target name must " + html "be specified.
\n" set ok 0 } if {[string length $host] == 0} { - html "You didn't specify a target name. You must specify" - html " a host name
\n" + html "You didn't specify a target name. A host must " + html "be specified.
\n" set ok 0 } if {[string length $databases] == 0} { - html "You didn't specify any database(s). You must specify" - html " at least one database
\n" + html "You didn't specify any database(s). At least one database " + html "must be specified.
\n" + set ok 0 + } + if {[string length $recordType] == 0} { + html "You didn't specify any record type. One record type " + html "must be specified.
\n" set ok 0 } catch {unset item} @@ -62,30 +77,34 @@ html " search fields must be present
\n" set ok 0 } + if {![string compare recordType WAIS]} { + set attrList { {Free-text} {} } + } + set hostSpec [mergeHostSpec $host $databases] if {$ok} { global targets - set targets($host) [list \ + set targets($hostSpec) [list \ [join $name] \ - $databases \ + $recordType \ $attrList \ $authentication \ $description \ - 1 ] + 1 \ + user ] html "Target successfully defined
\n" } + html "

\n" + set useIcons 0 + button-main + button-define-target + button-new-target } { - button-europagate - button-define-target 1 - button-new-target 0 -} - -{ global debug if {!$debug} return - html "name=" $name "
\n" + html "\n
name=" $name "
\n" html "description=" $description "
\n" html "host=" $host "
\n" html "databases=" $databases "
\n"