File: rlook.html

package info (click to toggle)
picolisp 3.1.0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,100 kB
  • sloc: ansic: 14,205; lisp: 795; makefile: 290; sh: 13
file content (67 lines) | stat: -rw-r--r-- 1,352 bytes parent folder | download | duplicates (3)
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>