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=16931>.
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=16931

Filterset task changes GIF-Images

           Summary: Filterset task changes GIF-Images
           Product: Ant
           Version: 1.5.1
          Platform: PC
        OS/Version: Other
            Status: NEW
          Severity: Critical
          Priority: Other
         Component: Core tasks
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


GIF images are damaged (byte length) on copying tasks like this

<propertyfile file="${build.properties}" comment="${ant.project.name} build 
values">
                        <entry  key="build.date" type="date" value="now"/>
                        <entry  key="build.number" type="int" default="000000" 
operation="+" pattern="000000"/>
                        <entry  key="build.version" value="{LATEST;MAIN}"/>
                        <entry  key="web.xml.display.name" 
value="${ant.project.name}"/>
                        <entry  key="web.xml.description" 
value="${ant.project.name} description"/>
                </propertyfile>
                <property file="${build.properties}"/>
                <filterset id="build.filter.set" begintoken="@" endtoken="@">
                                <filtersfile file="${build.properties}"/>
                </filterset>

<copy todir="${html.src.dir}">
                        <fileset dir="${scm.src.dir}/html">
                                <include name="**/*"/>
                                <exclude name="img/*"/>
                                <exclude name="**/.rvi"/>
                        </fileset>
                        <filterset refid="build.filter.set"/>
                </copy>

Reply via email to