You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by an...@locus.apache.org on 2000/02/09 22:12:06 UTC

cvs commit: xml-xerces/java/docs install.xml

andyc       00/02/09 13:12:06

  Modified:    java     Makefile
               java/src Makefile.incl
               java/docs install.xml
  Log:
  Make changes to revert to creating ZIP files for distribution.
  
  Revision  Changes    Path
  1.8       +3 -3      xml-xerces/java/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/Makefile,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Makefile	2000/02/01 21:54:32	1.7
  +++ Makefile	2000/02/09 21:12:05	1.8
  @@ -41,7 +41,7 @@
   	${CP} LICENSE bin
   	${RM} bin/build.xml
   	mv bin xerces-${PRODUCTVERSION}
  -	jar cvfM ${BINJARFILE} xerces-${PRODUCTVERSION} 
  +	jar cvfM ${BINZIPFILE} xerces-${PRODUCTVERSION} 
   	mv xerces-${PRODUCTVERSION} bin
   
   package_src: ./source/src/Makefile
  @@ -57,13 +57,13 @@
   	${CP} LICENSE source
   	${RM} bin/build.xml
   	mv source xerces-${PRODUCTVERSION}
  -	jar cvfM ${SRCJARFILE} xerces-${PRODUCTVERSION} 
  +	jar cvfM ${SRCZIPFILE} xerces-${PRODUCTVERSION} 
   	mv xerces-${PRODUCTVERSION} source
   
   clean:
   	${MAKE} -C src clean
   	${MAKE} -C samples clean
   	${RM} -rf bin class source docs/apiDocs docs/html
  -	${RM} ${BINJARFILE} ${SRCJARFILE}
  +	${RM} ${BINZIPFILE} ${SRCZIPFILE}
   
   
  
  
  
  1.10      +1 -0      xml-xerces/java/src/Makefile.incl
  
  Index: Makefile.incl
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/Makefile.incl,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- Makefile.incl	2000/01/28 23:04:29	1.9
  +++ Makefile.incl	2000/02/09 21:12:05	1.10
  @@ -35,6 +35,7 @@
              org.w3c.dom.traversal \
              org.w3c.dom.html \
              org.xml.sax \
  +           org.xml.sax.ext \
              org.xml.sax.helpers
   
   
  
  
  
  1.6       +4 -4      xml-xerces/java/docs/install.xml
  
  Index: install.xml
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/docs/install.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- install.xml	2000/01/28 23:39:07	1.5
  +++ install.xml	2000/02/09 21:12:06	1.6
  @@ -3,12 +3,12 @@
   
   <s1 title="Installation">
   	<s2 title="Unpacking the files">
  -		<p>&javaparsername; is packaged as a JAR file for all
  -		platforms and operating systems.  You need to run the Java
  +		<p>&javaparsername; is packaged as a ZIP file for all
  +		platforms and operating systems.  You can run the Java
   		<ref>jar</ref> command to unpack the distribution.</p>
           <ul>
  -			<li>jar xf &javaparsername;-bin.&javaparserversion;.jar</li>
  -			<li>jar xf &javaparsername;-src.&javaparserversion;.jar</li>
  +			<li>jar xf &javaparsername;-bin.&javaparserversion;.zip</li>
  +			<li>jar xf &javaparsername;-src.&javaparserversion;.zip</li>
   			<li>This command creates a "&javaparserdirectory;" sub-directory in the current directory containing all the files.</li>
   		</ul>
   	</s2>