some notes and docs...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2015-10-02 17:37:18 +03:00
parent 980f24f2f8
commit 320444e107

View File

@ -22,7 +22,8 @@ var browse = require('./browse')
// XXX need a root management to do OS-specific root dir management... // XXX need a root management to do OS-specific root dir management...
// e.g. X:/.. and /Volume/.. // e.g. X:/.. and /Volume/..
// XXX does not list drive letter root dirs, deeper paths work... // XXX mostly works, does not list drive letter root dirs, deeper paths
// work...
var listDirGlob = var listDirGlob =
module.listDirGlob = module.listDirGlob =
function(path, make){ function(path, make){
@ -54,7 +55,7 @@ function(path, make){
}) })
} }
// XXX this has trouble with drives... // XXX mostly works, this has trouble with drives...
var listDirfs = var listDirfs =
module.listDirfs = module.listDirfs =
function(path, make){ function(path, make){
@ -85,6 +86,8 @@ function(path, make){
}) })
} }
// NOTE: this should work from a chrome app and does not require anything
// but fs access...
// XXX for some reason this breaks with a 404... // XXX for some reason this breaks with a 404...
var listDirBrowser = var listDirBrowser =
module.listDirBrowser = module.listDirBrowser =