ilene       2003/01/29 16:58:01

  Modified:    java     Tag: xslt20 build.xml License
  Log:
  Patch from Sarah McNamara ([EMAIL PROTECTED]) to update
  copyright statements.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.174.2.1.2.2 +5 -61     xml-xalan/java/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/build.xml,v
  retrieving revision 1.174.2.1.2.1
  retrieving revision 1.174.2.1.2.2
  diff -u -r1.174.2.1.2.1 -r1.174.2.1.2.2
  --- build.xml 12 Dec 2002 21:06:58 -0000      1.174.2.1.2.1
  +++ build.xml 30 Jan 2003 00:58:00 -0000      1.174.2.1.2.2
  @@ -41,7 +41,7 @@
     Scott Boag <[EMAIL PROTECTED]>
   
   Copyright:
  -  Copyright (c) 1999-2001 The Apache Software Foundation.
  +  Copyright (c) 1999-2003 The Apache Software Foundation.
      $Id$
   ==================================================================== -->
   
  @@ -90,7 +90,7 @@
     <property name="version" 
value="${version.VERSION}_${version.RELEASE}_${version.DEVELOPER}${version.MINOR}"/><!--
 GUMP: version # of dist file -->
     <property name="impl.version" 
value="${version.VERSION}.${version.RELEASE}.${version.DEVELOPER}${version.MINOR}"/><!--
 Used in jar task for filtering MANIFEST.MF file -->
     <property name="name" value="xalan"/><!-- GUMP: base name of jar target's 
file -->
  -  <property name="year" value="2001"/>
  +  <property name="year" value="2003"/>
     <property name="build.debug" value="on"/>
   
     <!-- Relative locations of source directories -->
  @@ -117,17 +117,6 @@
     <property name="dist.file" value="${name}-j_${version}"/><!-- GUMP: actual 
path/name of dist target .tar.gz/.zip-->
     <property name="dist.dir" value="${build.dir}/${dist.file}"/>
     
  -  <!-- Xalan-J1 compatability stuff.  -->
  -  <!-- TO BE REMOVED: 'skipcompat' flag allows you to optionally 
  -       skip 1.x compat layer; default to true, so we can  
  -       switch to Xerces 2.x which compat won't compile with -->
  -  <property name="skipcompat" value="true"/>
  -  <property name="compat.jar" value="xalanj1compat.jar"/>
  -  <property name="compat.src.dir" value="./compat_src"/>
  -  <property name="build.compat.classes" value="${build.dir}/compat_classes"/>
  -  <property name="build.compat.jar" value="${build.dir}/${compat.jar}"/>
  -  <property name="build.compat.apidocs" 
value="${build.docs}/compat_apidocs"/>
  -
      <!-- xml-commons sources (for Javadoc) -->                                
                                        
      <property name="xml-commons-srcs.tar.gz" 
value="${src.dir}/xml-commons-src.tar.gz"/>                                     
                                    
      <property name="xml-commons-srcs.tar" 
value="${build.dir}/xml-commons-src.tar"/>
  @@ -270,7 +259,7 @@
     <!-- Compile entire source tree                                          
-->
     <!-- =================================================================== 
-->
     <target name="compile" depends="prepare"
  -    description="Compile Xalan-J 2.x (skips 1.x compat and XSLTC)" >
  +    description="Compile Xalan-J 2.x (skips XSLTC)" >
       <echo message="compile entire source tree and copy .properties and .res 
files to build tree."/>
       <!-- Note: split compile into separate javac steps to avoid JDK 1.1.8 
bug reported at:
            http://developer.java.sun.com/developer/bugParade/bugs/4043508.html
  @@ -551,51 +540,6 @@
       <echo message="Redirect to jar target; please provide input on desired 
functionality of this target"/>
     </target>
     
  -  <!-- =================================================================== 
-->
  -  <!-- Creates the Xalan-J1 compatability JAR: being removed               
-->
  -  <!-- =================================================================== 
-->
  -  <target name="compat.jar" depends="jar"
  -    description="UNSUPPORTED:Compile and jar Xalan-J 1.x backwards compat 
classes" 
  -    unless="skipcompat" >
  -    <echo message="UNSUPPORTED:Compile and jar just the Xalan-J 1 
compability API"/>
  -    <mkdir dir="${build.compat.classes}"/>
  -    <javac srcdir="${compat.src.dir}" 
  -           destdir="${build.compat.classes}"
  -           includes="**/*.java"
  -           debug="${build.debug}"
  -           bootclasspathref="xslt.boot.class.path" >
  -      <classpath refid="docs.class.path" />
  -    </javac>           
  -    <copy todir="${build.compat.classes}">
  -          <fileset dir="${compat.src.dir}" 
includes="**/*.properties,**/*.res"/>
  -    </copy>  
  -    <jar jarfile="${build.compat.jar}" manifest="${manifest.mf}" 
basedir="${build.compat.classes}"/>
  -  </target>
  -  
  -  <!-- =================================================================== 
-->
  -  <!-- Creates the Xalan-J1 compatability javadoc: being removed           
-->
  -  <!-- =================================================================== 
-->
  -  <target name="compat.javadocs" depends="jar"
  -    description="UNSUPPORTED:Build javadocs for Xalan-J 1.x backwards compat 
classes" 
  -    unless="skipcompat" >
  -    <mkdir dir="${build.compat.apidocs}"/>
  -    <javadoc
  -         public="true"
  -         sourcepath="${compat.src.dir}"
  -         overview="${compat.src.dir}/compatOverview.html"         
  -         
packagenames="org.apache.xalan.xslt,org.apache.xalan.xpath,org.apache.xalan.xpath.xml"
  -         author="true"
  -         version="true"
  -         use="true"
  -         destdir="${build.compat.apidocs}"
  -         windowtitle="${Name-in-docs} 1 Compatability" 
  -         doctitle="${Name-in-docs} 1 Compatability"
  -         bottom="Copyright &#169; ${year} Apache XML Project. All Rights 
Reserved.">
  -      <classpath refid="docs.class.path" />
  -    </javadoc>
  -  </target>
  -    
  -
     <!-- =================================================================== 
-->
     <!-- Compiles the samples (servlet excluded) and jars the class files    
-->  
     <!-- =================================================================== 
-->
  
  
  
  1.1.12.1  +1 -1      xml-xalan/java/License
  
  Index: License
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/License,v
  retrieving revision 1.1
  retrieving revision 1.1.12.1
  diff -u -r1.1 -r1.1.12.1
  --- License   30 Jan 2001 16:30:14 -0000      1.1
  +++ License   30 Jan 2003 00:58:00 -0000      1.1.12.1
  @@ -1,7 +1,7 @@
   /*
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights 
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  

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

Reply via email to