<!-- --- BEGIN COPYRIGHT BLOCK ---
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Copyright (C) 2007 Red Hat, Inc.
All rights reserved.
--- END COPYRIGHT BLOCK --- -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Search for Certificates</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" SRC="/ca/agent/funcs.js"></script>
<script type="text/javascript" SRC="/ca/agent/helpfun.js"></script>
</head>
<body bgcolor="#FFFFFF" link="#666699" vlink="#666699" alink="#333366">
<font size=+1 face="PrimaSans BT, Verdana, sans-serif">Search for Certificates
</font><br>
<font size=-1 face="PrimaSans BT, Verdana, sans-serif">
Use this form to compose queries based on properties of the certificate.
</font>
<table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%" BACKGROUND="/ca/agent/graphics/hr.gif" >
<tr>
<td> </td>
</tr>
</table>
<font size=-1 face="PrimaSans BT, Verdana, sans-serif">
Each section below filters the search. Check the box at the top of the
section if you want to use that filter in your search, then complete the fields.
Leave a box unchecked to ignore that filter. You can click more than one box
to get a combination of search criteria.
</font>
<table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%" BACKGROUND="/ca/agent/graphics/hr.gif" >
<tr>
<td> </td>
</tr>
</table>
<b><font size=-1 face="PrimaSans BT, Verdana, sans-serif">Serial Number Range</font></b>
<FORM NAME="serialNumberRangeCritForm">
<table border="0" cellspacing="2" cellpadding="2">
<tr>
<td><INPUT TYPE="CHECKBOX" NAME="inUse"></td>
<td colspan="3">
<font size=-1 face="PrimaSans BT, Verdana, sans-serif">
Show certificates that fall within the following range:</font>
</td>
</tr>
<tr>
<td> </td>
<td><font size=-1 face="PrimaSans BT, Verdana, sans-serif">
Lowest serial number:</font></td>
<td><INPUT TYPE="TEXT" NAME="serialFrom" SIZE=10 MAXLENGTH=99></td>
<td><font size=-1 face="PrimaSans BT, Verdana, sans-serif">
(leave blank for no lower limit)</font></td>
</tr>
<tr>
<td> </td>
<td><font size=-1 face="PrimaSans BT, Verdana, sans-serif">
Highest serial number:</font></td>
<td><INPUT TYPE="TEXT" NAME="serialTo" SIZE=10 MAXLENGTH=99></td>
<td><font size=-1 face="PrimaSans BT, Verdana, sans-serif">
(leave blank for no upper limit)</font></td>
</tr>
</table>
</FORM>
<font size=-1 face="PrimaSans BT, Verdana, sans-serif">
Enter a range of certificate serial numbers in hexadecimal form
(starting with 0x, as in the certificate list), or in decimal form.
</font>
<SCRIPT type="text/javascript">
//<!--
function serialNumberRangeCritInUse()
{
if (document.serialNumberRangeCritForm.inUse.checked) {
document.queryForm.serialNumberRangeInUse.value = 'on';
}
document.queryForm.serialFrom.value = document.serialNumberRangeCritForm.serialFrom.value;
document.queryForm.serialTo.value = document.serialNumberRangeCritForm.serialTo.value;
return document.serialNumberRangeCritForm.inUse.checked;
}
function serialNumberRangeCrit()
{
var crit = new Array;
var next = 0;
var canonicalFrom = "", canonicalTo = "";
if (document.serialNumberRangeCritForm.serialFrom.value != "") {
canonicalFrom =
trim(document.serialNumberRangeCritForm.serialFrom.value);
}
if (canonicalFrom != "") {
|