JSDOC/BuildDocs.js
authorAlan Knowles <alan@akbkhome.com>
Tue, 6 Jul 2010 10:15:45 +0000 (18:15 +0800)
committerAlan Knowles <alan@akbkhome.com>
Tue, 6 Jul 2010 10:15:45 +0000 (18:15 +0800)
JSDOC/BuildDocs.js

index 88ac9f1..eb39bf9 100644 (file)
@@ -68,19 +68,18 @@ BuildDocs = {
         
         for (var i = 0; i < Options.src.length; i++) {
             // add to sourcefiles..
-            this.srcFiles = this.srcFiles.concat(
             
-                File.list(Options.src[i] ).filter(
-                    function($) {
-                        if (Options['exclude-src'].indexOf($) > -1) {
-                            return false;
-                        }
-                        var thisExt = $.split(".").pop().toLowerCase();
-                        return (ext.indexOf(thisExt) > -1); // || thisExt in JSDOC.handlers);
-                            // we're only interested in files with certain extensions
-                    }
-                )
-            );
+            File.list(Options.src[i] ).forEach($) {
+                if (Options['exclude-src'].indexOf($) > -1) {
+                    return;
+                }
+                var thisExt = $.split(".").pop().toLowerCase();
+                if (ext.indexOf(thisExt) < 0) {
+                    return;
+                }
+                this.srcFiles.push(Options.src[i] + '/' + $);
+            });
+                
         }
         Seed.print(JSON.stringify(this.srcFiles, null,4));Seed.quit();
         return this.srcFiles;