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 2003/02/10 17:28:03 UTC

DO NOT REPLY [Bug 16931] New: - Filterset task changes GIF-Images

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: dev@ant.apache.org
        ReportedBy: skunde@inverso.de


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>