From dcc8cfb097df087334a707c69fbdacbedc6973ce Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Tue, 17 Jul 2007 13:04:45 +0000 Subject: [PATCH] Port number for new services is guessed from protocol if not specified. --- web/htdocs/details/edit.mc | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/web/htdocs/details/edit.mc b/web/htdocs/details/edit.mc index 0389235..e435624 100644 --- a/web/htdocs/details/edit.mc +++ b/web/htdocs/details/edit.mc @@ -1,4 +1,4 @@ -%# $Id: edit.mc,v 1.35 2007-07-16 11:56:14 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 "" && -- 1.7.10.4