diff options
author | Mark Phillips <mark@probably.co.uk> | 2016-07-30 10:32:38 +0100 |
---|---|---|
committer | Mark Phillips <mark@probably.co.uk> | 2016-07-30 10:32:38 +0100 |
commit | ee65c7d1105722c9d84c144ea38850e3e63d6ffe (patch) | |
tree | 54b211aec0e7d360434a4a581e056b57abbf767f /pelican-bootstrap3/static/tipuesearch/tipuesearch_set.js | |
parent | fd0a6ceb4158701ca63e9b40169d5a1be4ba7772 (diff) | |
download | pelican-themes-ee65c7d1105722c9d84c144ea38850e3e63d6ffe.tar.gz |
Updated tipue_search in pelican-bootstrap3 to v5
Diffstat (limited to 'pelican-bootstrap3/static/tipuesearch/tipuesearch_set.js')
-rw-r--r-- | pelican-bootstrap3/static/tipuesearch/tipuesearch_set.js | 58 |
1 files changed, 48 insertions, 10 deletions
diff --git a/pelican-bootstrap3/static/tipuesearch/tipuesearch_set.js b/pelican-bootstrap3/static/tipuesearch/tipuesearch_set.js index cbbd676..eab3f6e 100644 --- a/pelican-bootstrap3/static/tipuesearch/tipuesearch_set.js +++ b/pelican-bootstrap3/static/tipuesearch/tipuesearch_set.js @@ -1,21 +1,59 @@ /* -Tipue Search 4.0 -Copyright (c) 2014 Tipue +Tipue Search 5.0 +Copyright (c) 2015 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"]; +/* +Stop words +Stop words list from http://www.ranks.nl/stopwords +*/ + +var tipuesearch_stop_words = ["a", "about", "above", "after", "again", "against", "all", "am", "an", "and", "any", "are", "aren't", "as", "at", "be", "because", "been", "before", "being", "below", "between", "both", "but", "by", "can't", "cannot", "could", "couldn't", "did", "didn't", "do", "does", "doesn't", "doing", "don't", "down", "during", "each", "few", "for", "from", "further", "had", "hadn't", "has", "hasn't", "have", "haven't", "having", "he", "he'd", "he'll", "he's", "her", "here", "here's", "hers", "herself", "him", "himself", "his", "how", "how's", "i", "i'd", "i'll", "i'm", "i've", "if", "in", "into", "is", "isn't", "it", "it's", "its", "itself", "let's", "me", "more", "most", "mustn't", "my", "myself", "no", "nor", "not", "of", "off", "on", "once", "only", "or", "other", "ought", "our", "ours", "ourselves", "out", "over", "own", "same", "shan't", "she", "she'd", "she'll", "she's", "should", "shouldn't", "so", "some", "such", "than", "that", "that's", "the", "their", "theirs", "them", "themselves", "then", "there", "there's", "these", "they", "they'd", "they'll", "they're", "they've", "this", "those", "through", "to", "too", "under", "until", "up", "very", "was", "wasn't", "we", "we'd", "we'll", "we're", "we've", "were", "weren't", "what", "what's", "when", "when's", "where", "where's", "which", "while", "who", "who's", "whom", "why", "why's", "with", "won't", "would", "wouldn't", "you", "you'd", "you'll", "you're", "you've", "your", "yours", "yourself", "yourselves"]; + + +// Word replace + +var tipuesearch_replace = {'words': [ + {'word': 'tipua', 'replace_with': 'tipue'}, + {'word': 'javscript', 'replace_with': 'javascript'}, + {'word': 'jqeury', 'replace_with': 'jquery'} +]}; -var tipuesearch_replace = {"words": [ - {"word": "tipua", "replace_with": "tipue"}, - {"word": "javscript", "replace_with": "javascript"} + +// Weighting + +var tipuesearch_weight = {'weight': [ + {'url': 'http://www.tipue.com', 'score': 200}, + {'url': 'http://www.tipue.com/search', 'score': 100}, + {'url': 'http://www.tipue.com/about', 'score': 100} ]}; -var tipuesearch_stem = {"words": [ - {"word": "e-mail", "stem": "email"}, - {"word": "javascript", "stem": "script"}, - {"word": "javascript", "stem": "js"} + +// Stemming + +var tipuesearch_stem = {'words': [ + {'word': 'e-mail', 'stem': 'email'}, + {'word': 'javascript', 'stem': 'jquery'}, + {'word': 'javascript', 'stem': 'js'} ]}; + + +// Internal strings + +var tipuesearch_string_1 = 'No title'; +var tipuesearch_string_2 = 'Showing results for'; +var tipuesearch_string_3 = 'Search instead for'; +var tipuesearch_string_4 = '1 result'; +var tipuesearch_string_5 = 'results'; +var tipuesearch_string_6 = 'Prev'; +var tipuesearch_string_7 = 'Next'; +var tipuesearch_string_8 = 'Nothing found'; +var tipuesearch_string_9 = 'Common words are largely ignored'; +var tipuesearch_string_10 = 'Search too short'; +var tipuesearch_string_11 = 'Should be one character or more'; +var tipuesearch_string_12 = 'Should be'; +var tipuesearch_string_13 = 'characters or more'; |