X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Fedit.mc;h=92b5fa2c607b02d7879e65c4504771f51890cf70;hp=ad724a0e428b39f585a120494045f4ad1832a7c5;hb=fb20c8d1f17d39a4e01cc530668aa0a9f1342274;hpb=61d0705b4be65fc3c8482b84ee53e39c32c670f8 diff --git a/web/htdocs/details/edit.mc b/web/htdocs/details/edit.mc index ad724a0..92b5fa2 100644 --- a/web/htdocs/details/edit.mc +++ b/web/htdocs/details/edit.mc @@ -1,22 +1,44 @@ -%# $Id: edit.mc,v 1.14 2006-11-16 12:16:32 mike Exp $ +%# $Id: edit.mc,v 1.19 2006-11-16 17:52:06 mike Exp $ <%args> $id => undef <%perl> my $conn = new ZOOM::Connection("localhost:3313/IR-Explain---1", 0, - user => "admin", password => "fruitbat"); + user => "admin", password => "fruitbat", + elementSetName => "zeerex"); my $rec = ''; if (defined $id && $id ne "") { - $conn->option(elementSetName => "zeerex"); - my $qid = $id; - $qid =~ s/"/\\"/g; - my $query = qq[rec.id="$qid"]; + # Existing record + my $query = 'rec.id="' . cql_quote($id) . '"'; my $rs = $conn->search(new ZOOM::Query::CQL($query)); - my $n = $rs->size(); - if ($n == 0) { + if ($rs->size() > 0) { + $rec = $rs->record(0); + } else { $id = undef; + } + +} else { + # New record + my $host = $r->param("host"); + my $port = $r->param("port"); + my $dbname = $r->param("dbname"); + if (!defined $host || $host eq "" || + !defined $port || $port eq "" || + !defined $dbname || $dbname eq "") { + print qq[

+You must specify host, port and database name.

\n]; + $r->param(update => 0); } else { - $rec = $rs->record(0); + my $query = cql_target($host, $port, $dbname); + my $rs = $conn->search(new ZOOM::Query::CQL($query)); + if ($rs->size() > 0) { + my $fakeid = xml_encode(uri_escape("$host:$port/$dbname")); + print qq[

+There is already +a record +for this host, port and database name. +

\n]; + } } } @@ -59,7 +81,7 @@ my @fields = my $nchanges = 0; my $update = $r->param("update"); -if (defined $update) { + # Update record with submitted data my %fieldsByKey = map { ( $_->[0], $_) } @fields; my %data; @@ -67,8 +89,10 @@ if (defined $update) { next if grep { $key eq $_ } qw(id update new copy); $data{$key} = $r->param($key); } + my $mynchanges = modify_xml_document($xc, \%fieldsByKey, \%data); - $nchanges = modify_xml_document($xc, \%fieldsByKey, \%data); +if ($update) { + $nchanges = $mynchanges; if ($nchanges) { ### Set e:metaInfo/e:dateModified } @@ -102,7 +126,7 @@ foreach my $ref (@fields) { % } % } elsif ($nlines) { - + % } else { % }