diff --git a/server/AyaNova/biz/Search.cs b/server/AyaNova/biz/Search.cs index a700cfc9..44fa8762 100644 --- a/server/AyaNova/biz/Search.cs +++ b/server/AyaNova/biz/Search.cs @@ -20,6 +20,18 @@ namespace AyaNova.Biz { var StopWords = GetStopWords(ct, localeId); + //Get CJK index bool flag. + //TODO: should this be a property of the locale or a global setting as before?? + //if it's a locale property, it could be stored as just another word in the locale dictionary rather than getting into other aspects or maybe it belongs as a bool value on the + //locale record itself? + + + + + + + + // //get a db and logger // ILogger log = AyaNova.Util.ApplicationLogging.CreateLogger("PrimeData"); @@ -39,6 +51,8 @@ namespace AyaNova.Biz } + + //Get the current stopwords for the user's locale private static List GetStopWords(AyContext ct, long localeId) { //Get stopwords @@ -64,6 +78,10 @@ namespace AyaNova.Biz } return StopWords; } + + + + }//eoc }//eons \ No newline at end of file