You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by rj...@apache.org on 2009/09/08 13:34:35 UTC

svn commit: r812469 - in /tomcat/sandbox/tomcat-oacc/trunk: build.xml docs/build.xml

Author: rjung
Date: Tue Sep  8 11:34:35 2009
New Revision: 812469

URL: http://svn.apache.org/viewvc?rev=812469&view=rev
Log:
Port r791810 from TC5.5.x.

Specify explicit encoding when performing filtering in copy and replace tasks.

Modified:
    tomcat/sandbox/tomcat-oacc/trunk/build.xml
    tomcat/sandbox/tomcat-oacc/trunk/docs/build.xml

Modified: tomcat/sandbox/tomcat-oacc/trunk/build.xml
URL: http://svn.apache.org/viewvc/tomcat/sandbox/tomcat-oacc/trunk/build.xml?rev=812469&r1=812468&r2=812469&view=diff
==============================================================================
--- tomcat/sandbox/tomcat-oacc/trunk/build.xml (original)
+++ tomcat/sandbox/tomcat-oacc/trunk/build.xml Tue Sep  8 11:34:35 2009
@@ -256,7 +256,8 @@
     <filter token="VERSION" value="${version}"/>
     <copy file="RELEASE-NOTES"
          todir="${final.dir}"
-     filtering="true"/>
+     filtering="true"
+     encoding="ISO-8859-1"/>
     <chmod dir="${oacc.release}" includes="**" perm="oug+rX" type="both"/>
 
   </target>

Modified: tomcat/sandbox/tomcat-oacc/trunk/docs/build.xml
URL: http://svn.apache.org/viewvc/tomcat/sandbox/tomcat-oacc/trunk/docs/build.xml?rev=812469&r1=812468&r2=812469&view=diff
==============================================================================
--- tomcat/sandbox/tomcat-oacc/trunk/docs/build.xml (original)
+++ tomcat/sandbox/tomcat-oacc/trunk/docs/build.xml Tue Sep  8 11:34:35 2009
@@ -50,7 +50,9 @@
 
     <!-- Top Level Static Files -->
     <filter token="VERSION" value="${version}"/>
-    <copy todir="${docs.build}/${docs.dir}" filtering="true">
+    <copy todir="${docs.build}/${docs.dir}"
+      filtering="true"
+      encoding="ISO-8859-1">
       <fileset dir="..">
         <include name="RELEASE-NOTES"/>
         <include name="RUNNING.txt"/>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org