Map<String, Integer> indexes = new TreeMap<String, Integer>(String.CASE_INSENSITIVE_ORDER);
//TODO: remove this asap too
File logo = new File(templateDir, "logo.png");
ResourceManipulator manipulator = resourceManipulatorFactory.build(this.currentFolder, indexes, logo);
for (Resource r : resources) {
r.copyTo(manipulator);
}
return this;