DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26225>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26225 mixed case macro elements don't work Summary: mixed case macro elements don't work Product: Ant Version: 1.6.0 Platform: PC OS/Version: Linux Status: NEW Severity: Normal Priority: Other Component: Core tasks AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] Below is my test buildfile. I get the error "unsupported element mixedcase" at line 12. If I search/replace mixedCase with mixedcase, there's no problem. <?xml version="1.0" encoding="UTF-8"?> <project name="test" default="test"> <macrodef name="testMacro"> <element name="mixedCase"/> <sequential> <mixedCase/> </sequential> </macrodef> <target name="test"> <testMacro> <mixedCase> <echo>success</echo> </mixedCase> </testMacro> </target> </project> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
