1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>PicoLisp RefLook</title>
<meta name="generator" content="BBEdit 8.6">
<style type="text/css">
<!--
body {
margin-left: 0.5em;
margin-right: 0;
background-color: #eee;
}
ul {
margin-left: 0;
padding-left: 1.1em;
}
li {
margin-bottom: 0.4em;
}
ul.sub {
padding-left: 0.5em;
font-size: 75%;
}
ul.sub li {
margin-bottom: 0.3em;
}
input {
margin-top: 0.3em;
}
-->
</style>
<script type="text/javascript" language="javascript">
<!--
function searchKeyup(searchField) {
try {
var sWord = searchField.value;
if (sWord) {
var sUrl;
if (sWord == "NIL") {
sUrl = "ref.html#nilSym";
} else if (sWord.match(/^[a-zA-Z_]/)) {
sUrl = "ref" + sWord.substring(0, 1).toUpperCase() + ".html#" + sWord;
} else if (sWord.match(/^\*[a-zA-Z_]/)) {
sUrl = "ref" + sWord.substring(1, 2) + ".html#" + sWord;
} else {
sUrl = "ref_.html#" + sWord;
}
window.top.lower.location = sUrl;
}
} catch (e) {
alert(e);
}
}
//-->
</script>
</head>
<body>
<ul>
<li>
<a href="ref.html" target="lower">Reference</a> lookup<br>
<input type="text" size="13" onkeyup="searchKeyup(this)">
</li>
</ul>
</body>
</html>
|