/[webpac]/trunk2/out/thesaurus.html
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk2/out/thesaurus.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 448 - (show annotations)
Wed Sep 15 16:53:51 2004 UTC (19 years, 6 months ago) by dpavlin
File MIME type: text/html
File size: 1801 byte(s)
Major changes this time: updated for new bfilter (filtering on first
element), outline in sorted index when found in thesaurus.

1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html>
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2"/>
5 <script type="text/javascript" src="bfilter/bfilter.js"></script>
6 <script type="text/javascript" src="bfilter/DescriptorHR.js"></script>
7 <script type="text/javascript">
8
9 function myfilter() {
10 // document.getElementById('textfilter').focus();
11 // document.getElementById('textfilter').caretPos=1;
12 // document.getElementById('textfilter').select();
13 document.myfilter = new BFilter(headlines);
14
15 document.myfilter.result = function (arr) {
16 return '<li><a href="thes/'+arr[1]+'.html">'+arr[0]+'</a>'+
17 '&nbsp;<a href="browse.html?o='+arr[1]+'">&#8258;</a>' +
18 '</li>';
19 }
20
21 // this function is called when updating innerHTML with results
22 document.myfilter.display = function (html) {
23 return '<ul>'+html+'</ul>';
24 }
25 }
26
27 </script>
28 <!--
29 <link rel="stylesheet" href="style.css" type="text/css">
30 -->
31 <title>Thesaurus</title>
32 </head>
33
34 <body onload="myfilter(); ">
35
36 <div style="width:20%; float: right; border: 1px solid red" id="debug">
37 </div>
38
39 <span style="background: #e0e0e0;">
40 <a href="search.html">search</a> |
41 <a href="thesaurus.html"><b>thesarus</b></a> |
42 <a href="browse.html">browse</a>
43 </span>
44
45 <form method="get" onSubmit="return false;">
46 <div class="filters">
47 <input autocomplete="off" class="filters" id="textfilter" title="enter a regular expression to filter by" onKeyUp="document.myfilter.filter(document,this.value);">
48 <!-- this button is strictly for looks -->
49 <input class="filters" value="filter" type="button">
50 </div>
51 </form>
52
53 <div id="status" style="font-size: 80%; color: gray;">
54 <!--
55 Enter few letters to filter by them
56 -->
57 </div>
58
59 <div id="results">
60 </div>
61
62 </body>
63

  ViewVC Help
Powered by ViewVC 1.1.26