40 lines
1.5 KiB
Plaintext
40 lines
1.5 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=utf-8" %>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<meta name="Copyright" content="Copyright (c) 2006 by IBM Corporation" />
|
|
<!-- All rights reserved. Licensed Materials Property of IBM -->
|
|
<!-- US Government Users Restricted Rights -->
|
|
<!-- Use, duplication or disclosure restricted by -->
|
|
<!-- GSA ADP Schedule Contract with IBM Corp. -->
|
|
<title>API finder</title>
|
|
<link rel="stylesheet" type="text/css" href="finder.css" />
|
|
<link rel="stylesheet" type="text/css" href="ic.css" />
|
|
<script language="javascript" type="text/javascript">
|
|
//START NON-TRANSLATABLE
|
|
function openFinder() {
|
|
window.location = "/help/topic/apifinder/finder.htm";
|
|
}
|
|
//END NON-TRANSLATABLE
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h2>API finder</h2>
|
|
<%
|
|
//START NON-TRANSLATABLE
|
|
String temp_string = (String)request.getParameter("query");
|
|
//END NON-TRANSLATABLE
|
|
|
|
String output1 = "Your search for '"+temp_string+"' did not find any results. Please <a href=\"javascript:openFinder()\">try again</a>.";
|
|
String output2 = "Your search did not find any results. Please <a href=\"javascript:openFinder()\">try again</a>.";
|
|
|
|
//START NON-TRANSLATABLE
|
|
if (temp_string != null)
|
|
out.print(output1);
|
|
else
|
|
out.print(output2);
|
|
//END NON-TRANSLATABLE
|
|
%>
|
|
</body></html>
|