diff options
author | Matěj Cepl <mcepl@redhat.com> | 2012-02-16 16:24:51 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2012-02-16 16:24:51 +0100 |
commit | 7d08baca38827b59af9592e415bc4778fb8c4958 (patch) | |
tree | f6ad4a356235367d6a741d197e04f619f65c70a2 /pyyaml/PyYAMLDocumentation_files/search.js | |
parent | d7e73ec4c238d0eb1c5493bb90c022d683123296 (diff) | |
download | yamlish-7d08baca38827b59af9592e415bc4778fb8c4958.tar.gz |
Start building tests.
Diffstat (limited to 'pyyaml/PyYAMLDocumentation_files/search.js')
-rw-r--r-- | pyyaml/PyYAMLDocumentation_files/search.js | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/pyyaml/PyYAMLDocumentation_files/search.js b/pyyaml/PyYAMLDocumentation_files/search.js new file mode 100644 index 0000000..5ba8e48 --- /dev/null +++ b/pyyaml/PyYAMLDocumentation_files/search.js @@ -0,0 +1,62 @@ +(function($){ + + /* Adapted from http://www.kryogenix.org/code/browser/searchhi/ */ + $.fn.highlightText = function(text, className) { + function highlight(node) { + if (node.nodeType == 3) { // Node.TEXT_NODE + var val = node.nodeValue; + var pos = val.toLowerCase().indexOf(text); + if (pos >= 0 && !$.className.has(node.parentNode, className)) { + var span = document.createElement("span"); + span.className = className; + var txt = document.createTextNode(val.substr(pos, text.length)); + span.appendChild(txt); + node.parentNode.insertBefore(span, node.parentNode.insertBefore( + document.createTextNode(val.substr(pos + text.length)), + node.nextSibling)); + node.nodeValue = val.substr(0, pos); + } + } else if (!$(node).is("button, select, textarea")) { + $.each(node.childNodes, function() { highlight(this) }); + } + } + return this.each(function() { highlight(this) }); + } + + $(document).ready(function() { + var elems = $(".searchable"); + if (!elems.length) return; + + function getSearchTerms(url) { + if (url.indexOf("?") == -1) return []; + var params = url.substr(url.indexOf("?") + 1).split("&"); + for (var p in params) { + var param = params[p].split("="); + if (param.length < 2) continue; + if (param[0] == "q" || param[0] == "p") {// q= for Google, p= for Yahoo + var query = decodeURIComponent(param[1].replace(/\+/g, " ")); + if (query[0] == "!") query = query.slice(1); + var terms = []; + $.each(query.split(/(".*?"|'.*?'|\s+)/), function() { + if (terms.length < 10) { + term = this.replace(/^\s+$/, "") + .replace(/^['"]/, "") + .replace(/['"]$/, ""); + if (term.length >= 3) + terms.push(term); + } + }); + return terms; + } + } + return []; + } + + var terms = getSearchTerms(document.URL); + if (!terms.length) terms = getSearchTerms(document.referrer); + $.each(terms, function(idx) { + elems.highlightText(this.toLowerCase(), "searchword" + (idx % 5)); + }); + }); + +})(jQuery); |