Skip to content

Commit 7ebb0d7

Browse files
committed
Allow fuzzy searching
For #999
1 parent 97271a9 commit 7ebb0d7

File tree

3 files changed

+63
-1
lines changed

3 files changed

+63
-1
lines changed

html/js/levenshtein.js

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
/*
2+
Copyright (c) 2011 Andrei Mackenzie
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
6+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7+
8+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9+
*/
10+
11+
// Originally from https://gist.githubusercontent.com/andrei-m/982927/raw/9e30f7222f3488e72bc764c4ed5897c48d4fd3d0/levenshtein.js
12+
// Removed 'exports.'
13+
14+
// Compute the edit distance between the two given strings
15+
getEditDistance = function(a, b){
16+
if(a.length == 0) return b.length;
17+
if(b.length == 0) return a.length;
18+
19+
var matrix = [];
20+
21+
// increment along the first column of each row
22+
var i;
23+
for(i = 0; i <= b.length; i++){
24+
matrix[i] = [i];
25+
}
26+
27+
// increment each column in the first row
28+
var j;
29+
for(j = 0; j <= a.length; j++){
30+
matrix[0][j] = j;
31+
}
32+
33+
// Fill in the rest of the matrix
34+
for(i = 1; i <= b.length; i++){
35+
for(j = 1; j <= a.length; j++){
36+
if(b.charAt(i-1) == a.charAt(j-1)){
37+
matrix[i][j] = matrix[i-1][j-1];
38+
} else {
39+
matrix[i][j] = Math.min(matrix[i-1][j-1] + 1, // substitution
40+
Math.min(matrix[i][j-1] + 1, // insertion
41+
matrix[i-1][j] + 1)); // deletion
42+
}
43+
}
44+
}
45+
46+
return matrix[b.length][a.length];
47+
};

template/footer.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
<script type="text/javascript" src="/js/jquery-1.11.3.min.js"></script>
2626
<script type="text/javascript" src="/js/jquery-ui.min.js"></script>
27+
<script type="text/javascript" src="/js/levenshtein.js"></script>
2728
<script type="text/javascript" src="/js/search.js"></script>
2829
<script type="text/javascript" src="/js/jquery.cookie.js"></script>
2930
<script type="text/javascript" src="/js/main.js"></script>

template/search_template.js

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// WARNING
21
$(function(){
32
$.widget( "custom.catcomplete", $.ui.autocomplete, {
43
_create: function() {
@@ -85,3 +84,18 @@ $(function(){
8584
autoFocus: true
8685
});
8786
});
87+
88+
// allow for inexact searching via levenshtein
89+
90+
$.extend( $.ui.autocomplete, {
91+
filter: function( array, term ) {
92+
var OK_distance = 2;
93+
return $.grep( array, function( value ) {
94+
var lookup = value.value;
95+
if (lookup.length > term.length) {
96+
lookup = lookup.substr(0,term.length);
97+
}
98+
return getEditDistance( lookup, term) <= OK_distance;
99+
} );
100+
}
101+
} );

0 commit comments

Comments
 (0)