1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /*
- Tipue Search 3.0.1
- Copyright (c) 2013 Tipue
- Tipue Search is released under the MIT License
- http://www.tipue.com/search
- */
- var tipuesearch_stop_words = ["and", "be", "by", "do", "for", "he", "how", "if", "is", "it", "my", "not", "of", "or", "the", "to", "up", "what", "when"];
- var tipuesearch_replace = {"words": [
- {"word": "tipua", replace_with: "tipue"},
- {"word": "javscript", replace_with: "javascript"}
- ]};
- var tipuesearch_stem = {"words": [
- {"word": "e-mail", stem: "email"},
- {"word": "javascript", stem: "script"},
- {"word": "javascript", stem: "js"}
- ]};
- var tipuesearch_pages;
- exclude_pages = ['/archives.html', '/tags.html', '/index.html', '/categories.html', '/search.html'];
- function showGetResult()
- {
- var result = new Array();
- var scriptUrl = 'sitemap.xml';
- $.ajax({
- url: scriptUrl,
- type: 'GET',
- dataType: 'xml',
- async: false,
- success: function(xml) {
- $(xml).find('url').each(function(){
- var loc = $(this).find('loc').text();
- if ($.inArray(loc, exclude_pages) < 0) {
- result.push(loc);
- }
- });
- },
- error: function() {
- alert('An error occurred while processing XML file.');
- }
- });
- return result;
- }
- var r = showGetResult();
- tipuesearch_pages = r;
|