* Update the list of weblibs
*/
if (weblib.exists()) {
for (String folderName : weblib.list()) {
if (folderName.startsWith("adaptrex")) {
AdaptrexJS fw = new AdaptrexJS(env.getWebrootPath() + "/weblib/" + folderName);
if (fw != null && fw.getVersion() != null)
this.env.getAdaptrexFrameworks().put(folderName,fw);
}
if (folderName.startsWith("ext")) {
ExtJS fw = new ExtJS(env.getWebrootPath() + "/weblib/" + folderName);
if (fw != null && fw.getVersion() != null)
this.env.getExtFrameworks().put(folderName,fw);
}
if (folderName.startsWith("sencha")) {
SenchaTouch fw = new SenchaTouch(env.getWebrootPath() + "/weblib/" + folderName);
if (fw != null && fw.getVersion() != null)
this.env.getSenchaTouchFrameworks().put(folderName,fw);
}
}
}