You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bu...@apache.org on 2004/01/18 02:46:24 UTC

DO NOT REPLY [Bug 26225] New: - mixed case macro elements don't work

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: dev@ant.apache.org
        ReportedBy: jsichi@yahoo.com


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: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org