Aw: Re: MacroDef: Setting attribute via API should convert to lowercase

2016-04-17 Thread Al Le
> Thanks, should be fixed in git, will be fixed in 1.9.8 and 1.10.0. That's not fair! I've needed so long to identify the problem and create a bug report, and you fix it so quickly! :-) - To unsubscribe, e-mail: user-unsubscr...

Re: MacroDef: Setting attribute via API should convert to lowercase

2016-04-16 Thread Stefan Bodewig
On 2016-04-17, Al Le wrote: >> Please open a bug ticket. > Created the bug report 59339. Thanks, should be fixed in git, will be fixed in 1.9.8 and 1.10.0. Stefan - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For

Re: MacroDef: Setting attribute via API should convert to lowercase

2016-04-16 Thread Al Le
My guess is that you are the first person who's trying what you do and you've simply hit a bug. [...] Please open a bug ticket. Created the bug report 59339. - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For addit

Re: MacroDef: Setting attribute via API should convert to lowercase

2016-04-16 Thread Stefan Bodewig
On 2016-04-12, Al Le wrote: > in my ant script, I define a task "MyTask" via "macrodef". The task > has a mandatory attribute "nodeName" (not the camelCase name). > Then I call the task from a javascript snippet: > var myTask = project.createTask('myTask'); > myTask.setDynamicAttribute("nodeName

MacroDef: Setting attribute via API should convert to lowercase

2016-04-12 Thread Al Le
Hello, in my ant script, I define a task "MyTask" via "macrodef". The task has a mandatory attribute "nodeName" (not the camelCase name). Then I call the task from a javascript snippet: var myTask = project.createTask('myTask'); myTask.setDynamicAttribute("nodeName", "blah"); myTask.perform();