X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=web%2Fhtdocs%2Fchrome%2Flayout.mc;h=a5b9f08368b41b02e0cba2f5073dc6d60968c24a;hp=9eeec531d9817d23aeb3ff107339e20d9ad4403d;hb=6110460cccb92cf046644c9271dd5f89daf96d90;hpb=8880e0b5418ce987c73a3acfd5f51d554bc8ab89 diff --git a/web/htdocs/chrome/layout.mc b/web/htdocs/chrome/layout.mc index 9eeec53..a5b9f08 100644 --- a/web/htdocs/chrome/layout.mc +++ b/web/htdocs/chrome/layout.mc @@ -1,15 +1,17 @@ -%# $Id: layout.mc,v 1.21 2006-12-18 15:36:43 mike Exp $ +%# $Id: layout.mc,v 1.31 2007-05-03 09:33:10 mike Exp $ <%args> $debug => undef $title $component <%once> -use URI::Escape; +use URI::Escape qw(uri_escape uri_escape_utf8); use ZOOM; use ZOOM::IRSpy::Web; -use ZOOM::IRSpy::Utils qw(isodate xml_encode cql_quote cql_target - irspy_xpath_context modify_xml_document +use ZOOM::IRSpy::Utils qw(isodate xml_encode cql_target cql_quote + irspy_xpath_context irspy_make_identifier + irspy_record2identifier + irspy_identifier2target modify_xml_document bib1_access_point); % $r->content_type("text/html; charset=utf-8"); @@ -25,6 +27,9 @@ use ZOOM::IRSpy::Utils qw(isodate xml_encode cql_quote cql_target + +
@@ -55,9 +63,9 @@ use ZOOM::IRSpy::Utils qw(isodate xml_encode cql_quote cql_target

Home
- Test all targets
+ Test all targets
Find a target
- Add a target
+ Add a target
Statistics

@@ -66,40 +74,44 @@ use ZOOM::IRSpy::Utils qw(isodate xml_encode cql_quote cql_target % foreach my $i ('a' .. 'z') { <% uc($i) %> % } + [Others]

<%perl> +# Find the identifier to use in the record-specific menu, if any. If +# the identifier components are all present (e.g. because a record has +# just been edited or copied) we make an ID from those; otherwise we +# use the "id" parameter, if specified. my $id = $r->param("id"); { - # Make up ID for newly created records. It would be more - # rigorously correct, but insanely inefficient, to submit the - # record to Zebra and then search for it; but since we know the - # formula for IDs anyway, we just build one by hand. - my $id = $r->param("id"); + # Make up ID for newly created records. + my $protocol = $r->param("protocol"); my $host = $r->param("host"); my $port = $r->param("port"); my $dbname = $r->param("dbname"); - #warn "id='$id', host='$host', port='$port', dbname='$dbname'"; + #warn "id='$id', protocol='$protocol' host='$host', port='$port', dbname='$dbname'"; #warn "%ARGS = {\n" . join("", map { "\t'$_' => '" . $ARGS{$_} . ",'\n" } sort keys %ARGS) . "}\n"; - if ((!defined $id || $id eq "") && - defined $host && defined $port && defined $dbname) { - $id = "$host:$port/$dbname"; + if (defined $protocol && defined $host && + defined $port && defined $dbname) { + $id = irspy_make_identifier($protocol, $host, $port, $dbname); #warn "id set to '$id'"; } } -% if (defined $id && $r->param("op") ne "copy") { +% if (defined $id) {