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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
|
// ----------------------------------------------------------------------------
// Zoom Search Engine 4.3 (27/6/2006)
// Highlight & auto-scroll script
//
// email: zoom@wrensoft.com
// www: http://www.wrensoft.com
//
// Copyright (C) Wrensoft 2006
// ----------------------------------------------------------------------------
// Use this script to allow your search matches to highlight and scroll to
// the matched word on the actual web page where it was found.
//
// You will need to link to this JS file from each page of your site
// which requires the "highlight/jump to matched word" feature.
//
// For example, you could paste the following HTML in your site's header or
// footer:
//
// <style>.highlight { background: #FFFF40; }</style>
// <script type="text/javascript" src="highlight.js"></script>
//
// Note: You will need to specify the correct path to "highlight.js" depending
// on where the file is located.
//
// You will then need to modify the BODY tag on your page to include an "onLoad"
// attribute, such as:
//
// <body onload="highlight();">
//
// If for some reason you can not modify the body tag of your page, an alternative
// would be to put the following line after the </body> tag of your page:
//
// <script type="text/javascript">highlight();</script>
//
// For more information, consult the Users Guide and our support website at:
// http://www.wrensoft.com/zoom/support
//
//
// This script is licensed for use with the Zoom Search Engine. Original
// development by Brett Alcock, VBasys Limited. To licence other applications
// email highlight@vbasys.com with the subject "license".
var CatchJSErrors = true;
function catcherror() { return true; }
if (CatchJSErrors)
{
window.onerror = catcherror;
}
function QueryString(key)
{
var value = null;
for (var i=0;i<QueryString.keys.length;i++)
{
if (QueryString.keys[i]==key)
{
value = QueryString.values[i];
break;
}
}
return value;
}
function QueryString_Parse()
{
var query = window.location.search.substring(1);
var pairs = query.split("&");
for (var i=0;i<pairs.length;i++)
{
var pos = pairs[i].indexOf('=');
if (pos >= 0)
{
var argname = pairs[i].substring(0,pos);
var value = pairs[i].substring(pos+1);
QueryString.keys[QueryString.keys.length] = argname;
QueryString.values[QueryString.values.length] = value;
}
}
}
QueryString.keys = new Array();
QueryString.values = new Array();
QueryString_Parse();
function getElement(id)
{
if (document.getElementById)
return(document.getElementById(id));
else if (document.all)
return(document.all[id]);
}
function findPosY(obj)
{
var curtop = 0;
if (obj.offsetParent)
{
while (obj.offsetParent)
{
curtop += obj.offsetTop
obj = obj.offsetParent;
}
}
else if (obj.y)
curtop += obj.y;
return curtop;
}
// regular expression version
function SearchHiLite(text)
{
var SearchAsSubstring = 0;
var hl;
hl = QueryString("zoom_highlight");
if (hl == "" || hl == null)
{
hl = QueryString("zoom_highlightsub");
if (hl == "" || hl == null)
return false;
else
SearchAsSubstring = 1;
}
if ((document.charset && document.charset == "utf-8") ||
(document.characterSet && document.characterSet == "UTF-8"))
hl = decodeURIComponent(hl);
else
hl = unescape(hl);
hl = hl.toLowerCase();
// create array of terms
//var term = hl.split("+");
var re = /\"(.*?)\"|[^\\+\"]+/g;
var term = hl.match(re);
// convert terms in regexp patterns
for (var i=0;i<term.length;i++) // take each term in turn
{
if(term[i] != "")
{
if (term[i].indexOf("\"") != -1)
{
// contains double quotes
term[i]=term[i].replace(/\"/g,"");
term[i]=term[i].replace(/\+/g," ");
}
else
{
term[i]=term[i].replace(/\+/g,"");
}
if (term[i].indexOf("*") != -1 || term[i].indexOf("?") != -1)
{
// convert wildcard pattern to regexp
term[i] = term[i].replace(/\\/g, " ");
term[i] = term[i].replace(/\^/g, " ");
//term[i] = term[i].replace(/\+/g, " "); // split on this so no point in looking
term[i] = term[i].replace(/\#/g, " ");
term[i] = term[i].replace(/\$/g, " ");
term[i] = term[i].replace(/\./g, " ");
// check if search term only contains only wildcards
// if so, we will not attempt to highlight this term
var wildcards = /\w/;
if (wildcards.test(term[i]))
{
term[i] = term[i].replace(/\*/g, "[^\\s]*");
term[i] = term[i].replace(/\?/g, "[^\\s]"); // insist upon one non whitespace
}
else
term[i] = "";
}
if (term[i] != "")
{
if (SearchAsSubstring == 0)
{
term[i] = "(>[\\s]*|>[^<]+[\\b\\W])("+term[i]+")(<|[\\b\\W][^>]*<)";
}
else
{
// if term leads with wildcard then allow it to match preceeding text in word
var strWB="";
if(term[i].substr(0,7)=="[^\\s]*") strWB="\\b";
term[i] = "(>|>[^<]+)"+strWB+"("+term[i]+")([^>]*<)";
}
}
}
}
text=text.replace(/&/ig, '&');
text=text.replace(/ /ig, '');
for (var i=0;i<term.length;i++) // take each term in turn
{
if(term[i] != "")
{
// we need a loop for the main search to catch all between ><
// and we add before each found to ignore those done etc
// todo: develop reliable single pass regexp and dispose of loop
var l = 0;
re = new RegExp(term[i], "gi");
var count = 0; // just incase
text = ">" + text + "<"; // temporary tag marks
do
{
l=text.length;
text=text.replace(re, '$1<span style="background:#FFFF40;" class="highlight" id="highlight" name="highlight">$2</span id="highlight">$3');
count++;
}
//while(re.lastIndex>0 && count<100); lastIndex not set properly under netscape
while(l!=text.length && count<100);
text = text.substring(1, text.length-1); // remove temporary tags
}
}
text = text.replace(eval("//g"), '');
text = text.replace(eval("//g"), ' ');
return(text);
}
function jumpHL()
{
var d=getElement("highlight");
if(d)
{
var y=findPosY(d);
// if element near top of page
if(y < 100)
window.scrollTo(0,0); // go to top of page
else
window.scrollTo(0,y-50); // show space of 50 above
}
}
function highlight()
{
var x = document.body;
if (x)
{
var strHTML=SearchHiLite(x.innerHTML);
if (strHTML!=false) x.innerHTML = strHTML;
jumpHL();
}
}
|