X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Fedit.mc;h=95686a176d80cd6908fc7894781df500a09cfd06;hp=73a938a91c2a5000cfcf89042626d77eb2ed6330;hb=0807cc79ae72ca49352a6f1e4d1f0e4cab46fb5b;hpb=0fbe0bc10fd34d1dcb77864272ca0ba331e579b9 diff --git a/web/htdocs/details/edit.mc b/web/htdocs/details/edit.mc index 73a938a..95686a1 100644 --- a/web/htdocs/details/edit.mc +++ b/web/htdocs/details/edit.mc @@ -1,4 +1,4 @@ -%# $Id: edit.mc,v 1.33 2007-05-03 12:43:04 mike Exp $ +%# $Id: edit.mc,v 1.37 2007-08-23 14:29:18 mike Exp $ <%args> $op $id => undef ### should be extracted using utf8param() @@ -40,6 +40,15 @@ my $protocol = utf8param($r, "protocol"); my $host = utf8param($r, "host"); my $port = utf8param($r, "port"); my $dbname = utf8param($r, "dbname"); + +if ((!defined $port || $port eq "") && + (defined $protocol && $protocol ne "")) { + # Port-guessing based on defaults for each protocol + $port = $protocol eq "Z39.50" ? 210 : 80; + warn "guessed port $port"; + $r->param(port => $port); +} + my $newid; if (defined $protocol && $protocol ne "" && defined $host && $host ne "" && @@ -59,6 +68,14 @@ if (!defined $id) { print qq[

Please specify protocol, host, port and database name.

\n]; undef $update; + } elsif ($host !~ /^\w+\.[\w.]*\w$/i) { + print qq[

+ This host name is not valid.

\n]; + undef $update; + } elsif ($port !~ /^\d*$/i) { + print qq[

+ This port number is not valid.

\n]; + undef $update; } else { # Creating new record, all necessary data is present. Check # that the new record is not a duplicate of an existing one. @@ -346,7 +363,14 @@ if ($update && @changedFields) { Changed <% $nchanges %> field<% $nchanges == 1 ? "" : "s" %>: <% join(", ", map { xml_encode($_->[2]) } @changedFields) %>.

+% return if $op eq "new"; % } +

+ Although anyone is allowed to add a new target, please note that + you will not be able to edit the newly added target unless you + have administrator privileges. So please be sure that the + details are correct before submitting them. +

<%perl> @@ -380,6 +404,7 @@ foreach my $ref (@fields) {
+% $op = "edit" if $op eq "new" && defined $update; % $id = $newid if defined $newid; % if (defined $id) {