X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Fedit.mc;h=e4356243921a7347edc10f56258d05f9d57fc5e4;hp=e813ae0aae87a7b320dd77a24cc090b230337d1e;hb=dcc8cfb097df087334a707c69fbdacbedc6973ce;hpb=da226fe4b453a29d047473c42ea8e17c21ceb431 diff --git a/web/htdocs/details/edit.mc b/web/htdocs/details/edit.mc index e813ae0..e435624 100644 --- a/web/htdocs/details/edit.mc +++ b/web/htdocs/details/edit.mc @@ -1,4 +1,4 @@ -%# $Id: edit.mc,v 1.34 2007-05-03 12:54:18 mike Exp $ +%# $Id: edit.mc,v 1.36 2007-07-17 13:04:45 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 "" && @@ -346,7 +355,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>