From cc84e69c5811d57c318291ccb9721a537bfb0c62 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Fri, 27 Oct 2006 16:58:41 +0000 Subject: [PATCH] Actual editing (storing new values) at least for those fields that already existed. Making new fields is going to be a lot harder. --- web/htdocs/details/edit.mc | 41 +++++++++++++++++++++++++++++++++++++---- 1 file changed, 37 insertions(+), 4 deletions(-) diff --git a/web/htdocs/details/edit.mc b/web/htdocs/details/edit.mc index 38737df..6987d88 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.3 2006-10-27 16:58:41 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 "

Thanks for the update!

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