<div class="panel2">
<b>This Target</b>
<br/>
- <a href="<% xml_encode("/full.html?id=" . uri_escape($id)) %>">Show details</a>
+ <a href="<% xml_encode("/full.html?id=" . uri_escape_utf8($id)) %>">Show details</a>
<br/>
- <a href="<% xml_encode("/admin/edit.html?op=edit&id=" . uri_escape($id)) %>">Edit details</a>
+ <a href="<% xml_encode("/admin/edit.html?op=edit&id=" . uri_escape_utf8($id)) %>">Edit details</a>
<br/>
- <a href="<% xml_encode("/admin/edit.html?op=copy&id=" . uri_escape($id)) %>">Copy target</a>
+ <a href="<% xml_encode("/admin/edit.html?op=copy&id=" . uri_escape_utf8($id)) %>">Copy target</a>
<br/>
- <a href="<% xml_encode("/admin/delete.html?id=" . uri_escape($id)) %>">Delete target</a>
+ <a href="<% xml_encode("/admin/delete.html?id=" . uri_escape_utf8($id)) %>">Delete target</a>
<p>
- <a href="<% xml_encode("/admin/check.html?id=" . uri_escape($id)) . "&test=Quick" %>">Quick Test</a>
+ <a href="<% xml_encode("/admin/check.html?id=" . uri_escape_utf8($id)) . "&test=Quick" %>">Quick Test</a>
<br/>
- <a href="<% xml_encode("/admin/check.html?id=" . uri_escape($id)) . "&test=Main" %>">Full Test</a>
+ <a href="<% xml_encode("/admin/check.html?id=" . uri_escape_utf8($id)) . "&test=Main" %>">Full Test</a>
</p>
<p>
- <a href="<% xml_encode("/raw.html?id=" . uri_escape($id)) %>">XML</a>
+ <a href="<% xml_encode("/raw.html?id=" . uri_escape_utf8($id)) %>">XML</a>
</p>
<%doc><!-- Maybe this would be too heavyweight -->
<br/>
<% xml_encode($id) %>?
</p>
<p>
- <a href="?really=1&id=<% xml_encode(uri_escape($id)) %>">Yes</a><br/>
- <a href="/full.html?id=<% xml_encode(uri_escape($id)) %>">No</a><br/>
+ <a href="?really=1&id=<% xml_encode(uri_escape_utf8($id)) %>">Yes</a><br/>
+ <a href="/full.html?id=<% xml_encode(uri_escape_utf8($id)) %>">No</a><br/>
</p>
% } else {
<%perl>
# 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[<p class="error">
There is already
<a href='?op=edit&id=$newid'>a record</a>
</%perl>
<tr style="background: <% ($i % 2) ? '#ffffc0' : 'white' %>">
<td><% $i %></td>
- <td><a href="<% xml_encode("/full.html?id=" . uri_escape($id))
+ <td><a href="<% xml_encode("/full.html?id=" . uri_escape_utf8($id))
%>"><% xml_encode($title) %></a></td>
<td><% xml_encode($reliability, "", { nbsp => 1 }) %></td>
<td><% xml_encode($host, "") %></td>
<td><% xml_encode($port, "") %></td>
<td><% xml_encode($db, "") %></td>
<td>
- <a href="<% xml_encode("/admin/check.html?id=" . uri_escape($id))
+ <a href="<% xml_encode("/admin/check.html?id=" . uri_escape_utf8($id))
%>" title="Test this target">Test</a
> <a href="<% xml_encode("/admin/edit.html?op=edit&id=" .
- uri_escape($id))
+ uri_escape_utf8($id))
%>" title="Edit this target's record">Edit</a
- > <a href="<% xml_encode("/raw.html?id=" . uri_escape($id))
+ > <a href="<% xml_encode("/raw.html?id=" . uri_escape_utf8($id))
%>" title="Raw XML record">XML</a>
</td>
</tr>
</%perl>
<p>
<a href="<% "/admin/check.html?" .
- xml_encode(join("&", map { "id=" . uri_escape($_) } @ids))
+ xml_encode(join("&", map { "id=" . uri_escape_utf8($_) } @ids))
%>">[Test all targets on this list]</a>
</p>
<p>
- <a href="<% "/stats.html?query=" . xml_encode(uri_escape($query))
+ <a href="<% "/stats.html?query=" . xml_encode(uri_escape_utf8($query))
%>">[Statistics for targets on this list]</a>
</p>
% }
</p>
<p>
Proceed to
- <a href="<% xml_encode("/full.html?id=" . uri_escape($id))
+ <a href="<% xml_encode("/full.html?id=" . uri_escape_utf8($id))
%>">the new record</a>.
</p>