What steps will reproduce the problem?
1. Look in Config class, no templates attribute
2.
3.
What is the expected output? What do you see instead?
Config.templates is a String containing a comma delimited list of the template
groups in Config.template_files.
What version of the product are you using? On what operating system?
0.9.4 Centos5.6/Tomcat 6
Please provide any additional information below.
Need to add to Config.java:
private String templates;
public Config templates(String templates) {
setTemplates(templates);
return this;
}
public String getTemplates() {
return templates;
}
private void setTemplates(String templates) {
this.templates = templates;
}
Original issue reported on code.google.com by
eddyg.o....@gmail.comon 12 Mar 2012 at 1:01