/** Display settings of active configuration **/
outpt += "<H2>Parameters of " + currentConfig + "</H2>";
/** Parse **/
DataFetchConfig conf = DataFetchConfig.parse(new File(currentConfig));
outpt = "Settings of " + currentConfig + "<BR/>";
outpt = conf.toHTMLString();
/** Display results **/
outpt += "<a href=\"?config=" + currentConfig + "&execute=true\">execute</a>";
}
} else{
outpt += "<H1>Please wait, data is being imported..</H1>";
/** Parse **/
DataFetchConfig conf = DataFetchConfig.parse(new File(currentConfig));
DataFetcher df = new DataFetcher(conf);
Model model = Util.getModel();
df.executeImport(model);
Util.writeModelToFile(model);
outpt += "<span >import successful</span>";