/* Tipue Search 7.0 Copyright (c) 2018 Tipue Tipue Search is released under the MIT License http://www.tipue.com/search */ (function($) { $.fn.tipuesearch = function(options) { var set = $.extend( { 'contentLocation' : 'tipuesearch/tipuesearch_content.json', 'contextBuffer' : 60, 'contextLength' : 60, 'contextStart' : 90, 'debug' : false, 'descriptiveWords' : 25, 'footerPages' : 3, 'highlightTerms' : true, 'imageZoom' : true, 'minimumLength' : 3, 'newWindow' : false, 'show' : 10, 'showContext' : true, 'showRelated' : true, 'showTime' : true, 'showTitleCount' : true, 'showURL' : true, 'wholeWords' : true, 'tipue_search_content' : '#tipue_search_content' }, options); return this.each(function() { var tipuesearch = null; $.ajaxSetup({ async: false }); $.getJSON(set.contentLocation).done(function(json) {tipuesearch = $.extend({}, json);}); var tipuesearch_t_c = 0; var tipue_search_w = ''; if (set.newWindow) { tipue_search_w = ' target="_blank"'; } function getURLP(name) { var locSearch = location.search; var splitted = (new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(locSearch)||[,""]); var searchString = splitted[1].replace(/\+/g, '%20'); try { searchString = decodeURIComponent(searchString); } catch(e) { searchString = unescape(searchString); } return searchString || null; } if (getURLP('q')) { $('#tipue_search_input').val(getURLP('q')); getTipueSearch(0, true); } $(this).keyup(function(event) { if(event.keyCode == '13') { getTipueSearch(0, true); } }); function getTipueSearch(start, replace) { window.scrollTo(0, 0); var out = ''; var show_replace = false; var show_stop = false; var standard = true; var c = 0; var found = []; var d_o = $('#tipue_search_input').val(); d_o = d_o.replace(/\+/g, ' ').replace(/\s\s+/g, ' '); d_o = $.trim(d_o); var d = d_o.toLowerCase(); if ((d.match("^\"") && d.match("\"$")) || (d.match("^'") && d.match("'$"))) { standard = false; } var d_w = d.split(' '); if (standard) { d = ''; for (var i = 0; i < d_w.length; i++) { var a_w = true; for (var f = 0; f < tipuesearch_stop_words.length; f++) { if (d_w[i] == tipuesearch_stop_words[f]) { a_w = false; show_stop = true; } } if (a_w) { d = d + ' ' + d_w[i]; } } d = $.trim(d); d_w = d.split(' '); } else { d = d.substring(1, d.length - 1); } if (d.length >= set.minimumLength) { if (standard) { if (replace) { var d_r = d; for (var i = 0; i < d_w.length; i++) { for (var f = 0; f < tipuesearch_replace.words.length; f++) { if (d_w[i] == tipuesearch_replace.words[f].word) { d = d.replace(d_w[i], tipuesearch_replace.words[f].replace_with); show_replace = true; } } } d_w = d.split(' '); } var d_t = d; for (var i = 0; i < d_w.length; i++) { for (var f = 0; f < tipuesearch_stem.words.length; f++) { if (d_w[i] == tipuesearch_stem.words[f].word) { d_t = d_t + ' ' + tipuesearch_stem.words[f].stem; } } } d_w = d_t.split(' '); for (var i = 0; i < tipuesearch.pages.length; i++) { var score = 0; var s_t = tipuesearch.pages[i].text; for (var f = 0; f < d_w.length; f++) { if (set.wholeWords) { var pat = new RegExp('\\b' + d_w[f] + '\\b', 'gi'); } else { var pat = new RegExp(d_w[f], 'gi'); } if (tipuesearch.pages[i].title.search(pat) != -1) { var m_c = tipuesearch.pages[i].title.match(pat).length; score += (20 * m_c); } if (tipuesearch.pages[i].text.search(pat) != -1) { var m_c = tipuesearch.pages[i].text.match(pat).length; score += (20 * m_c); } if (tipuesearch.pages[i].tags) { if (tipuesearch.pages[i].tags.search(pat) != -1) { var m_c = tipuesearch.pages[i].tags.match(pat).length; score += (10 * m_c); } } if (tipuesearch.pages[i].url.search(pat) != -1) { score += 20; } if (score != 0) { for (var e = 0; e < tipuesearch_weight.weight.length; e++) { if (tipuesearch.pages[i].url == tipuesearch_weight.weight[e].url) { score += tipuesearch_weight.weight[e].score; } } } if (d_w[f].match('^-')) { pat = new RegExp(d_w[f].substring(1), 'i'); if (tipuesearch.pages[i].title.search(pat) != -1 || tipuesearch.pages[i].text.search(pat) != -1 || tipuesearch.pages[i].tags.search(pat) != -1) { score = 0; } } } if (score != 0) { found.push( { "score": score, "title": tipuesearch.pages[i].title, "desc": s_t, "img": tipuesearch.pages[i].img, "url": tipuesearch.pages[i].url, "note": tipuesearch.pages[i].note }); c++; } } } else { for (var i = 0; i < tipuesearch.pages.length; i++) { var score = 0; var s_t = tipuesearch.pages[i].text; var pat = new RegExp(d, 'gi'); if (tipuesearch.pages[i].title.search(pat) != -1) { var m_c = tipuesearch.pages[i].title.match(pat).length; score += (20 * m_c); } if (tipuesearch.pages[i].text.search(pat) != -1) { var m_c = tipuesearch.pages[i].text.match(pat).length; score += (20 * m_c); } if (tipuesearch.pages[i].tags) { if (tipuesearch.pages[i].tags.search(pat) != -1) { var m_c = tipuesearch.pages[i].tags.match(pat).length; score += (10 * m_c); } } if (tipuesearch.pages[i].url.search(pat) != -1) { score += 20; } if (score != 0) { for (var e = 0; e < tipuesearch_weight.weight.length; e++) { if (tipuesearch.pages[i].url == tipuesearch_weight.weight[e].url) { score += tipuesearch_weight.weight[e].score; } } } if (score != 0) { found.push( { "score": score, "title": tipuesearch.pages[i].title, "desc": s_t, "img": tipuesearch.pages[i].img, "url": tipuesearch.pages[i].url, "note": tipuesearch.pages[i].note }); c++; } } } if (c !== 0) { if (set.showTitleCount && tipuesearch_t_c === 0) { var title = document.title; document.title = '(' + c + ') ' + title; tipuesearch_t_c++; } if (c === 1) { out += '