stefano 2003/04/01 13:48:59
Modified: src/targets compile-build.xml docs-build.xml
Log:
refactored admin and gump targets
Revision Changes Path
1.8 +0 -8 cocoon-2.1/src/targets/compile-build.xml
Index: compile-build.xml
===================================================================
RCS file: /home/cvs/cocoon-2.1/src/targets/compile-build.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- compile-build.xml 24 Mar 2003 11:47:01 -0000 1.7
+++ compile-build.xml 1 Apr 2003 21:48:59 -0000 1.8
@@ -135,14 +135,6 @@
inheritRefs="false"
target="roles"/>
</target>
-
- <!-- compiles and packages a single block, used by Gump -->
- <target name="block" depends="compile, prepare-blocks">
- <ant antfile="${build.temp}/blocks-build.xml"
- inheritAll="true"
- inheritRefs="false"
- target="cocoon-block-${block-name}-compile"/>
- </target>
<!-- compiles and packages all blocks -->
<target name="blocks" depends="compile,prepare-blocks">
1.9 +0 -28 cocoon-2.1/src/targets/docs-build.xml
Index: docs-build.xml
===================================================================
RCS file: /home/cvs/cocoon-2.1/src/targets/docs-build.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- docs-build.xml 26 Mar 2003 21:26:28 -0000 1.8
+++ docs-build.xml 1 Apr 2003 21:48:59 -0000 1.9
@@ -208,31 +208,3 @@
</javadoc>
</target>
-
-<!-- === Admin targets ========================================================= -->
-
- <!-- The Gump Target -->
- <target name="gump" depends="package, javadocs"/>
-
- <!-- Creates the web site -->
- <target name="site" depends="docs, javadocs">
- <mkdir dir="${site}"/>
- <copy todir="${site}" filtering="off">
- <fileset dir="${build.docs}"/>
- </copy>
- <copy todir="${site}/apidocs" filtering="off">
- <fileset dir="${build.javadocs}"/>
- </copy>
- </target>
-
- <!-- Create the announcements -->
- <target name="announcement" depends="prepare-docs">
- <copy file="announcement.xml" tofile="${build.context}\xdocs\announcement.xml"
filtering="on"/>
- <xslt basedir="${build.context}\xdocs"
- destdir="${build}"
- style="${build.context}\stylesheets\announcement2txt.xsl"
- includes="announcement.xml"
- extension=".txt"
- force="true"/>
- </target>
-