/[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

Diff of /trunk2/out/thesaurus.html

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 448 by dpavlin, Wed Sep 15 16:53:51 2004 UTC revision 465 by dpavlin, Thu Sep 23 18:23:13 2004 UTC
# Line 13  function myfilter() { Line 13  function myfilter() {
13          document.myfilter = new BFilter(headlines);          document.myfilter = new BFilter(headlines);
14    
15          document.myfilter.result = function (arr) {          document.myfilter.result = function (arr) {
16                    var r = element_id('results');
17                    if (r) {
18                            var e = document.createElement("a");
19                            e.setAttribute("href","thes/"+arr[1]+".html");
20                            //e.setAttribute("target","_blank");
21                            e.appendChild(document.createTextNode(arr[0]));
22                            r.appendChild(e);
23    
24                            r.appendChild(document.createTextNode(" "));
25    
26                            e = document.createElement("a");
27                            e.setAttribute("href","browse.html?o="+arr[1]);
28                            e.appendChild(document.createTextNode(">>"));
29                            r.appendChild(e);
30    
31                            r.appendChild(document.createElement("br"));
32    
33                            return null;
34                    } else {
35                            alert("can't find results div!");
36                    }
37    /*
38                  return '<li><a href="thes/'+arr[1]+'.html">'+arr[0]+'</a>'+                  return '<li><a href="thes/'+arr[1]+'.html">'+arr[0]+'</a>'+
39                  '&nbsp;<a href="browse.html?o='+arr[1]+'">&#8258;</a>' +                  '&nbsp;<a href="browse.html?o='+arr[1]+'">&curren;</a>' +
40                  '</li>';                  '</li>';
41    */
42          }          }
43    
44          // this function is called when updating innerHTML with results          // this function is called when updating innerHTML with results
45          document.myfilter.display = function (html) {          document.myfilter.display = function (html) {
46                  return '<ul>'+html+'</ul>';                  return null;
47    //              return '<ul>'+html+'</ul>';
48          }          }
49  }  }
50    
51  </script>  </script>
52  <!--  <script type="text/javascript" src="bfilter/hide.js"></script>
53  <link rel="stylesheet" href="style.css" type="text/css">  <link rel="stylesheet" href="style.css" type="text/css">
 -->  
54  <title>Thesaurus</title>  <title>Thesaurus</title>
55  </head>  </head>
56    
57  <body onload="myfilter(); ">  <body onload="myfilter(); ">
58    
59  <div style="width:20%; float: right; border: 1px solid red" id="debug">  <div style="float: right; width: 10em; text-align: center; margin: 0.5m">
60    <a href="#" onClick="toggle_display('debug');">debug</a>
61    
62    <div style="text-align: left; border: 1px dashed #c0c0c0; display: none;" id="debug">
63    </div>
64    
65  </div>  </div>
66    
67  <span style="background: #e0e0e0;">  <span style="background: #e0e0e0;">

Legend:
Removed from v.448  
changed lines
  Added in v.465

  ViewVC Help
Powered by ViewVC 1.1.26