[
https://issues.apache.org/jira/browse/TRB-89?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Thomas Vandahl resolved TRB-89.
-------------------------------
Resolution: Duplicate
Fix Version/s: (was: Core 2.3.2)
This is already fixed in Turbine 4.0-M1
> template file name can't contain "."
> ------------------------------------
>
> Key: TRB-89
> URL: https://issues.apache.org/jira/browse/TRB-89
> Project: Turbine
> Issue Type: Bug
> Components: Turbine 2.3
> Affects Versions: Core 2.3.2
> Reporter: kxlzx
> Original Estimate: 12h
> Remaining Estimate: 12h
>
> I wan't template file name like "user.money.vm".
> but TurbineTemplateService getExtension function use "indexof()" get the file
> extension.
> It should be "lastindexof()"....
> can you do it?
> org.apache.turbine.services.template.TurbineTemplateService{
> public String getExtension(String template)
> {
> if (StringUtils.isEmpty(template))
> {
> return getDefaultExtension();
> }
> //at here ,change to int dotIndex =
> template.lastindexOf(EXTENSION_SEPARATOR);
> int dotIndex = template.indexOf(EXTENSION_SEPARATOR);
> return (dotIndex < 0) ? getDefaultExtension() :
> template.substring(dotIndex + 1);
> }
> }
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira