]> granicus.if.org Git - docbook-dsssl/commitdiff
Fix for missing "No results found for..." bug
authorKasun Gajasinghe <kasunbg@gmail.com>
Fri, 30 Sep 2011 18:30:14 +0000 (18:30 +0000)
committerKasun Gajasinghe <kasunbg@gmail.com>
Fri, 30 Sep 2011 18:30:14 +0000 (18:30 +0000)
xsl/webhelp/template/content/search/nwSearchFnt.js

index 062bf7df878f6e80f56081c072c3d7e1317ba29a..0b49b5a06c20dbbd15a6988884ac06255492ae33 100644 (file)
@@ -671,26 +671,31 @@ function SortResults(mots) {
     var scoringArr = Array();\r
     for (var t in mots) {\r
         // get the list of the indices of the files.\r
-        var listNumerosDesFicStr = w[mots[t].toString()];        \r
-        //alert ("listNumerosDesFicStr "+listNumerosDesFicStr);\r
-        var tab = listNumerosDesFicStr.split(",");\r
-        //for each file (file's index):\r
-        for (var t2 in tab) {\r
-            var tmp = '';\r
-            var idx = '';\r
-            var temp = tab[t2].toString();\r
-            if (temp.indexOf('*') != -1){\r
-                idx = temp.indexOf('*');\r
-                tmp = temp.substring(idx + 3, temp.length);\r
-                temp = temp.substring(0,idx);\r
-            }\r
-            scoringArr.push(tmp);\r
-            if (fileAndWordList[temp] == undefined) {\r
-                fileAndWordList[temp] = "" + mots[t];\r
-            } else {\r
-                fileAndWordList[temp] += "," + mots[t];\r
+        var listNumerosDesFicStr = w[mots[t].toString()];\r
+\r
+        if (listNumerosDesFicStr != undefined) {\r
+\r
+            //alert ("listNumerosDesFicStr "+listNumerosDesFicStr);\r
+            var tab = listNumerosDesFicStr.split(",");\r
+            //for each file (file's index):\r
+            for (var t2 in tab) {\r
+                var tmp = '';\r
+                var idx = '';\r
+                var temp = tab[t2].toString();\r
+                if (temp.indexOf('*') != -1) {\r
+                    idx = temp.indexOf('*');\r
+                    tmp = temp.substring(idx + 3, temp.length);\r
+                    temp = temp.substring(0, idx);\r
+                }\r
+                scoringArr.push(tmp);\r
+                if (fileAndWordList[temp] == undefined) {\r
+                    fileAndWordList[temp] = "" + mots[t];\r
+                } else {\r
+                    fileAndWordList[temp] += "," + mots[t];\r
+                }\r
+                //console.info("fileAndWordList[" + temp + "]=" + fileAndWordList[temp] + " : " + tmp);\r
             }\r
-            //console.info("fileAndWordList[" + temp + "]=" + fileAndWordList[temp] + " : " + tmp);\r
+\r
         }\r
     }\r
     var fileAndWordListValuesOnly = new Array();\r
@@ -881,4 +886,4 @@ function rtrim(str, chars) {
        return str.replace(new RegExp("[" + chars + "]+$", "g"), "");\r
 }\r
 \r
-//-------------------------OXYGEN PATCH END-------------------------
\ No newline at end of file
+//-------------------------OXYGEN PATCH END-------------------------\r