X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Fedit.mc;h=7f297b80279216d6ee2caadc3713b77632880479;hp=1e64568d02ce78effbb100903dedccf251820750;hb=f0030d177f58f280c6cd1019f9e26b81f9f8cbda;hpb=436be5810c926cf2db2eccb6e990435c06ed0ca3 diff --git a/web/htdocs/details/edit.mc b/web/htdocs/details/edit.mc index 1e64568..7f297b8 100644 --- a/web/htdocs/details/edit.mc +++ b/web/htdocs/details/edit.mc @@ -1,4 +1,3 @@ -%# $Id: edit.mc,v 1.39 2008-10-29 11:04:44 mike Exp $ <%args> $op $id => undef ### should be extracted using utf8param() @@ -32,7 +31,8 @@ duplicate ID. die "op = new but id defined" if $op eq "new" && defined $id; die "op != new but id undefined" if $op ne "new" && !defined $id; -my $conn = new ZOOM::Connection("localhost:8018/IR-Explain---1", 0, +my $db = ZOOM::IRSpy::connect_to_registry(); +my $conn = new ZOOM::Connection($db, 0, user => "admin", password => "fruitbat", elementSetName => "zeerex"); @@ -46,7 +46,7 @@ if ((!defined $port || $port eq "") && # Port-guessing based on defaults for each protocol $port = $protocol eq "Z39.50" ? 210 : 80; warn "guessed port $port"; - $r->param(port => $port); + &utf8param($r, port => $port); } my $newid; @@ -83,7 +83,7 @@ if (!defined $id) { # that the new record is not a duplicate of an existing one. my $rs = $conn->search(new ZOOM::Query::CQL(cql_target($newid))); if ($rs->size() > 0) { - my $qnewid = xml_encode(uri_escape($newid)); + my $qnewid = xml_encode(uri_escape_utf8($newid)); print qq[

There is already a record @@ -340,7 +340,7 @@ my @fields = # Update record with submitted data my %fieldsByKey = map { ( $_->[0], $_) } @fields; my %data; -foreach my $key ($r->param()) { +foreach my $key (&utf8param($r)) { next if grep { $key eq $_ } qw(op id update); $data{$key} = utf8param($r, $key); } @@ -352,7 +352,7 @@ if ($update && @changedFields) { "e:metaInfo/e:dateModified" ] }, { dateModified => isodate(time()) }); die "Didn't set dateModified!" if !@x; - ZOOM::IRSpy::_really_rewrite_record($conn, $xc->getContextNode(), + ZOOM::IRSpy::_rewrite_zeerex_record($conn, $xc->getContextNode(), $op eq "edit" ? $id : undef); }