From 915caf2a18a3d9dd0ef07cb153db208e4665876f Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Wed, 17 Oct 2012 14:57:13 +0100 Subject: [PATCH] Improvements and fixes to search --- core/modules/filters.js | 4 ++-- core/modules/wiki.js | 36 +++++++++++++++++++++++++----------- 2 files changed, 27 insertions(+), 13 deletions(-) diff --git a/core/modules/filters.js b/core/modules/filters.js index 6c79fc373..7ba3c0147 100644 --- a/core/modules/filters.js +++ b/core/modules/filters.js @@ -211,12 +211,12 @@ exports.operators = { selector: function(operator) { var op = operator.prefix === "!" ? "true" : "false"; return "var term = this.getTiddler(\"" + $tw.utils.stringify(operator.operand) + "\").fields.text;" + - "$tw.utils.pushTop(subResults,this.search(term,source," + op + "));"; + "$tw.utils.pushTop(subResults,this.search(term,{titles: source, invert: " + op + ", exclude: [\"" + $tw.utils.stringify(operator.operand) + "\"]}));"; }, filter: function(operator) { var op = operator.prefix === "!" ? "true" : "false"; return "var term = this.getTiddler(\"" + $tw.utils.stringify(operator.operand) + "\").fields.text;" + - "$tw.utils.pushTop(subResults,this.search(term,subResults," + op + "));"; + "subResults = this.search(term,{titles: subResults, invert: " + op + ", exclude: [\"" + $tw.utils.stringify(operator.operand) + "\"]});" } }, "field": { // Special handler for field comparisons diff --git a/core/modules/wiki.js b/core/modules/wiki.js index 9d3aba298..03cd70b88 100644 --- a/core/modules/wiki.js +++ b/core/modules/wiki.js @@ -596,32 +596,46 @@ exports.saveWiki = function(options) { /* Return an array of tiddler titles that match a search string text: The text string to search for - titles: Optional hashmap or array of tiddler titles to limit search - exclude: Optional; if true returns tiddlers that do not contain the specified string + options: see below +Options available: + titles: Hashmap or array of tiddler titles to limit search + exclude: An array of tiddler titles to exclude from the search + invert: If true returns tiddlers that do not contain the specified string */ -exports.search = function(text,titles,exclude) { +exports.search = function(text,options) { + options = options || {}; var me = this; // Function to check a given tiddler for the search term var searchTiddler = function(title) { - var tiddler = me.getTiddler(title); - return tiddler ? tiddler.fields.text.indexOf(text) !== -1 : false; + var tiddler = me.getTiddler(title), + match = tiddler ? tiddler.fields.text.indexOf(text) !== -1 : false; + return options.invert ? !match : match; } // Loop through all the tiddlers doing the search var results = [],t; - if($tw.utils.isArray(titles)) { - for(t=0; t