Hi all,
I think that did find a problem at roller I was working at
ThemeManagerImpl.java :
public void initialize() throws InitializationException {
log.debug("Initializing Theme Manager");
if(themeDir != null) {
// rather than be lazy we are going to load all themes from
// the disk preemptively and cache them
this.themes = loadAllThemesFromDisk();
log.info("Loaded "+this.themes.size()+" themes from disk.");
}
}
but the this.themes = loadAllThemesFromDisk();
would verify if the cache.sitewide.enabled is true because otherwise for
development new theme(site front) I need always restart tomcat,
it is very bad.
thanks