You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ne...@apache.org on 2001/05/17 20:20:33 UTC

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

neilg       01/05/17 11:20:33

  Modified:    java     Makefile build.xml
               java/src Makefile
               java/docs install.xml api.xml
  Log:
  changed build scripts to allow our javaDoc-generated API documentation to live under docs/html instead of directly under docs; this should make the website more maintainable.
  
  Revision  Changes    Path
  1.23      +3 -3      xml-xerces/java/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/Makefile,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- Makefile	2001/03/13 20:28:51	1.22
  +++ Makefile	2001/05/17 18:20:18	1.23
  @@ -39,8 +39,8 @@
   	$(RM) -r ./tools/style-apachexml
   
   apidocs::
  -	@echo Building apiDocs in docs directory.
  -	${MKDIR} docs/apiDocs
  +	@echo Building apiDocs in docs/html directory.
  +	${MKDIR} docs/html/apiDocs
   	${MAKE} -C src apidocs
   
   package_bin:: jars apidocs ${BINZIPFILE}
  @@ -140,5 +140,5 @@
   clean::
   	${MAKE} -C src clean
   	${MAKE} -C samples clean
  -	${RM} -rf bin class source docs/apiDocs docs/html 
  +	${RM} -rf bin class source docs/html/apiDocs docs/html 
   	${RM} ${BINZIPFILE} ${SRCZIPFILE} ${BINGZFILE} ${SRCGZFILE}
  
  
  
  1.43      +4 -4      xml-xerces/java/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/build.xml,v
  retrieving revision 1.42
  retrieving revision 1.43
  diff -u -r1.42 -r1.43
  --- build.xml	2001/05/11 00:01:05	1.42
  +++ build.xml	2001/05/17 18:20:19	1.43
  @@ -52,7 +52,7 @@
   Copyright:
     Copyright (c) 2000 The Apache Software Foundation.
   
  -   $Id: build.xml,v 1.42 2001/05/11 00:01:05 lehors Exp $
  +   $Id: build.xml,v 1.43 2001/05/17 18:20:19 neilg Exp $
   
   ==================================================================== -->
   
  @@ -96,7 +96,7 @@
       <property name="build.samples" value="${build.dir}/samples"/>
       <property name="build.tests" value="${build.dir}/tests"/>
       <property name="build.data" value="${build.dir}/data"/>
  -    <property name="build.javadocs" value="${build.dir}/docs/apiDocs"/>
  +    <property name="build.javadocs" value="${build.dir}/docs/html/apiDocs"/>
       <property name="compilation.classpath" value="${build.dest}"/>
   
       <property name="distsrc.dir" value="${build.dir}/${name}-${appendit}"/>
  @@ -362,7 +362,7 @@
       <mkdir dir="${distbin.dir}/data"/>
       <mkdir dir="${distbin.dir}/docs"/>
       <mkdir dir="${distbin.dir}/docs/html"/>
  -    <mkdir dir="${distbin.dir}/docs/apiDocs"/>
  +    <mkdir dir="${distbin.dir}/docs/html/apiDocs"/>
       <mkdir dir="${distsrc.dir}/samples"/>
   
   
  @@ -377,7 +377,7 @@
           <fileset dir="${build.docs}" />
       </copy>
   
  -    <copy todir="${distbin.dir}/docs/apiDocs" >
  +    <copy todir="${distbin.dir}/docs/html/apiDocs" >
           <fileset dir="${build.javadocs}" />
       </copy>
   
  
  
  
  1.32      +3 -3      xml-xerces/java/src/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/Makefile,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- Makefile	2001/03/12 22:04:19	1.31
  +++ Makefile	2001/05/17 18:20:24	1.32
  @@ -6,14 +6,14 @@
   TOP = ..
   include $(TOP)/src/Makefile.incl
   
  -apidocs: ../docs/apiDocs/index.html
  -../docs/apiDocs/index.html: classfiles_updated
  +apidocs: ../docs/html/apiDocs/index.html
  +../docs/html/apiDocs/index.html: classfiles_updated
   
   	$(JAVADOC12) -classpath "$(CLPATH)" \
   		-windowtitle "Xerces ${PRODUCTVERSION_DOT} API" \
   		-splitindex -header "Xerces ${PRODUCTVERSION_DOT}" \
   		-version  \
  -		-d ../docs/apiDocs ${PACKAGES}
  +		-d ../docs/html/apiDocs ${PACKAGES}
   
   jars: source samples
   
  
  
  
  1.10      +1 -1      xml-xerces/java/docs/install.xml
  
  Index: install.xml
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/docs/install.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- install.xml	2000/05/23 20:28:58	1.9
  +++ install.xml	2001/05/17 18:20:29	1.10
  @@ -22,7 +22,7 @@
   			<tr><td>xercesSamples.jar</td><td>Jar file containing all sample class files</td></tr>
   			<tr><td>data/</td><td>Directory containing sample XML data files</td></tr>
   			<tr><td>docs/html/</td><td>Directory containing documentation</td></tr>
  -			<tr><td>docs/apiDocs/</td><td>Directory containing Javadoc API for parser framework</td></tr>
  +			<tr><td>docs/html/apiDocs/</td><td>Directory containing Javadoc API for parser framework</td></tr>
   		</table>
   		<note>To use &javaparsername; you do not need the source files. 
   		</note>
  
  
  
  1.6       +2 -2      xml-xerces/java/docs/api.xml
  
  Index: api.xml
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/docs/api.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- api.xml	2000/05/23 20:28:52	1.5
  +++ api.xml	2001/05/17 18:20:30	1.6
  @@ -13,8 +13,8 @@
       </s2>
       <s2 title="&javaparsername; API Documentation">
           <ul>
  -            <li><jump href="../apiDocs/index.html">Full API documentation</jump></li>
  -            <li><jump href="../apiDocs/overview-tree.html">Hierarchy for all the packages</jump></li>
  +            <li><jump href="apiDocs/index.html">Full API documentation</jump></li>
  +            <li><jump href="apiDocs/overview-tree.html">Hierarchy for all the packages</jump></li>
           </ul>
       <s3 title="Package org.apache.xerces.parsers">
         <s4 title="Classes">
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org