X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=web%2Fhtdocs%2Fdetails%2Fedit.mc;h=c3ed2245e04a01a7ee6afd9aae8e55e9f68881fb;hb=d936a731b7d2221c9e6932a0354bcc5a2f094943;hp=38737dfb455adef3b1f3a761be3d36ae5a2d43bd;hpb=b3131b1fc7f1a37e362f1ac342f3bf5833f049a0;p=irspy-moved-to-github.git diff --git a/web/htdocs/details/edit.mc b/web/htdocs/details/edit.mc index 38737df..c3ed224 100644 --- a/web/htdocs/details/edit.mc +++ b/web/htdocs/details/edit.mc @@ -1,4 +1,4 @@ -%# $Id: edit.mc,v 1.2 2006-10-27 00:47:24 mike Exp $ +%# $Id: edit.mc,v 1.4 2006-10-27 17:16:20 mike Exp $ <%args> $id @@ -6,7 +6,8 @@ $id use ZOOM; <%perl> -my $conn = new ZOOM::Connection("localhost:3313/IR-Explain---1"); +my $conn = new ZOOM::Connection("localhost:3313/IR-Explain---1", 0, + user => "admin", password => "fruitbat"); $conn->option(elementSetName => "zeerex"); my $qid = $id; $qid =~ s/"/\\"/g; @@ -38,8 +39,41 @@ if ($n == 0) { [ subjects => 2, "Subjects", "e:databaseInfo/e:subjects" ], ### Remember to set e:metaInfo/e:dateModified ); + my %fieldsByKey = map { ( $_->[0], $_) } @fields; + my $update = $r->param("update"); + if (defined $update) { + # Update record with submitted data + foreach my $key ($r->param()) { + next if grep { $key eq $_ } qw(id update); + my $value = $r->param($key); + my $ref = $fieldsByKey{$key} or die "no field '$key'"; + my($name, $nlines, $caption, $xpath, %attrs) = @$ref; + my @nodes = $xc->findnodes($xpath); + if (@nodes) { + warn scalar(@nodes), " nodes match '$xpath'" if @nodes > 1; + my $node = $nodes[0]; + if ($node->isa("XML::LibXML::Attr")) { + $node->setValue($value); + print "Attr $key <- '$value' ($xpath)
\n"; + } elsif ($node->isa("XML::LibXML::Element")) { + my $child = $node->firstChild(); + die "element child $child is not text" + if !ref $child || !$child->isa("XML::LibXML::Text"); + $child->setData($value); + print "Elem $key <- '$value' ($xpath)
\n"; + } else { + warn "unexpected node type $node"; + } + } else { + print "$key='$value' ($xpath) no nodes
\n"; + ### Make new node ... heaven knows how ... + } + } + ZOOM::IRSpy::_really_rewrite_record($conn, $xc->getContextNode()); + }

<% xml_encode($id) %>

+% print "

The record has been updated.

\n" if defined $update;
<%perl> @@ -59,8 +93,7 @@ if ($n == 0) { % } - -
+