remm        2004/09/01 06:03:00

  Modified:    .        build.xml
  Log:
  - Build a baseline _en resource bundle.
  
  Revision  Changes    Path
  1.204     +17 -0     jakarta-tomcat-5/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-5/build.xml,v
  retrieving revision 1.203
  retrieving revision 1.204
  diff -u -r1.203 -r1.204
  --- build.xml 1 Sep 2004 10:10:48 -0000       1.203
  +++ build.xml 1 Sep 2004 13:03:00 -0000       1.204
  @@ -536,6 +536,20 @@
         </fileset>
       </jar>
   
  +     <!-- Build baseline _en bundle to ease -->
  +    <copy todir="${tomcat.build}/classes" includeemptydirs="false">
  +      <fileset dir="${tomcat.build}/classes">
  +        <include name="**/LocalStrings.properties"/>
  +      </fileset>
  +      <mapper type="glob" from="*.properties" to="*_en.properties"/>
  +    </copy>
  +    <jar jarfile="${tomcat.build}/common/i18n/tomcat-i18n-en.jar">
  +      <fileset dir="${tomcat.build}/classes">
  +        <include name="**/LocalStrings_en.properties" />
  +        <exclude name="**/tomcat4/**" />
  +      </fileset>
  +    </jar>
  +     
     </target>
        
     <!-- ====================== Build dependent code =================== -->
  @@ -1321,6 +1335,9 @@
       </copy>
       <copy todir="${tomcat.dist}/common/endorsed">
         <fileset dir="${tomcat.build}/common/endorsed" />
  +    </copy>
  +    <copy todir="${tomcat.dist}/common/i18n">
  +      <fileset dir="${tomcat.build}/common/i18n" />
       </copy>
       <copy todir="${tomcat.dist}/common/lib">
         <fileset dir="${tomcat.build}/common/lib" />
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to