Path path = Vfs.lookup(realPath);
Path toc = path.lookup("toc.xml");
if (toc.canRead()) {
Config config = new Config();
config.setEL(false);
Navigation navigation = new Navigation(this, uri, path, 0);
navigation.setChild(child);
try {
config.configure(navigation, toc);
navList.add(navigation);
} catch (Exception e) {
log.log(Level.FINE, e.toString(), e);