You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by re...@apache.org on 2003/11/19 21:20:50 UTC

cvs commit: cocoon-2.1/tools/targets docs-build.xml init-build.xml webapp-build.xml

reinhard    2003/11/19 12:20:50

  Modified:    tools/targets docs-build.xml init-build.xml webapp-build.xml
  Log:
  - removing build targets for out-dated IDL documentation
  
  Revision  Changes    Path
  1.2       +1 -13     cocoon-2.1/tools/targets/docs-build.xml
  
  Index: docs-build.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/tools/targets/docs-build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- docs-build.xml	18 Nov 2003 17:20:23 -0000	1.1
  +++ docs-build.xml	19 Nov 2003 20:20:50 -0000	1.2
  @@ -138,19 +138,7 @@
       </java>
     </target>
   -->
  -<!-- === Javadoc/IDLDoc Targets ================================================ -->
  -
  -  <!-- Create IDL API documentation -->
  -  <target name="idldocs" depends="prepare" unless="unless.exclude.idldocs" description="Builds the IDL API documentation for non-java language bindings">
  -    <mkdir dir="${build.idldocs}"/>
  -    <java classname="org.openorb.compiler.doc.IdlDoc">
  -      <arg value="-I${idl}"/>
  -      <arg value="-outdir:${build.idldocs}"/>
  -      <arg value="-all"/>
  -      <arg value="-html"/>
  -      <arg value="${idl}/main.idl"/>
  -    </java>
  -  </target>
  +<!-- === Javadoc ============================================================= -->
   
     <!-- Check if javadocs have to be generated -->
     <!-- Obsolete:
  
  
  
  1.2       +0 -9      cocoon-2.1/tools/targets/init-build.xml
  
  Index: init-build.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/tools/targets/init-build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- init-build.xml	18 Nov 2003 17:20:23 -0000	1.1
  +++ init-build.xml	19 Nov 2003 20:20:50 -0000	1.2
  @@ -47,12 +47,6 @@
           <istrue value="${exclude.webapp.javadocs}"/>
         </or>
       </condition>
  -    <condition property="unless.exclude.webapp.idldocs">
  -      <or>
  -        <istrue value="${exclude.idldocs}"/>
  -        <istrue value="${exclude.webapp.idldocs}"/>
  -      </or>
  -    </condition>
       <condition property="unless.exclude.webapp.samples">
         <istrue value="${exclude.webapp.samples}"/>
       </condition>
  @@ -62,9 +56,6 @@
       </condition>
       <condition property="unless.exclude.javadocs">
         <istrue value="${exclude.javadocs}"/>
  -    </condition>
  -    <condition property="unless.exclude.idldocs">
  -      <istrue value="${exclude.idldocs}"/>
       </condition>
       <condition property="exclude.validate.jars">
         <isfalse value="${validate.jars}"/>
  
  
  
  1.2       +1 -14     cocoon-2.1/tools/targets/webapp-build.xml
  
  Index: webapp-build.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/tools/targets/webapp-build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- webapp-build.xml	18 Nov 2003 17:20:23 -0000	1.1
  +++ webapp-build.xml	19 Nov 2003 20:20:50 -0000	1.2
  @@ -79,19 +79,6 @@
               includes="**/*.xconf"
               addComments="true"/>
     </target>
  -
  -  <target name="prepare-webapp-idldocs" depends="idldocs" unless="unless.exclude.webapp.idldocs">
  -    <mkdir dir="${build.webapp.idldocs}"/>
  -
  -    <copy todir="${build.webapp.idldocs}" filtering="off">
  -      <fileset dir="${build.idldocs}"/>
  -    </copy>
  -
  -    <!-- patch the welcome page to tell we have idldocs to show -->
  -    <xpatch file="${build.webapp}/welcome.xml"
  -            srcdir="${idl}" 
  -            includes="**/*.xwelcome"/>
  -  </target>
     
     <target name="prepare-webapp-javadocs" depends="javadocs" unless="unless.exclude.webapp.javadocs">
       <mkdir dir="${build.webapp.javadocs}"/>
  @@ -141,7 +128,7 @@
               includes="**/*.xwelcome"/>    
     </target>
     
  -  <target name="webapp" depends="prepare-webapp,prepare-webapp-samples,prepare-webapp-docs,prepare-webapp-javadocs,prepare-webapp-idldocs,prepare-webapp-deprecated,validate-jars,validate-config,custom-conf" description="Builds web application folder">
  +  <target name="webapp" depends="prepare-webapp,prepare-webapp-samples,prepare-webapp-docs,prepare-webapp-javadocs,prepare-webapp-deprecated,validate-jars,validate-config,custom-conf" description="Builds web application folder">
       <!-- Add some other documents -->
       <copy file="${build.temp}/jars.xml"
         tofile="${build.webapp.docs}/xdocs/installing/jars.xml"