jefft 2002/10/11 23:25:03
Modified: . forrest.build.xml
Log:
Remove the broken forrestbot targets.
Revision Changes Path
1.10 +0 -61 xml-forrest/forrest.build.xml
Index: forrest.build.xml
===================================================================
RCS file: /home/cvs/xml-forrest/forrest.build.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- forrest.build.xml 11 Oct 2002 15:48:27 -0000 1.9
+++ forrest.build.xml 12 Oct 2002 06:25:03 -0000 1.10
@@ -575,65 +575,4 @@
</echo>
</target>
-
-
-<!-- ***************************************************************** -->
-<!-- ***************************************************************** -->
-<!-- ** ** -->
-<!-- ** ** -->
-<!-- ** BOT EXECUTING ACTIONS ** -->
-<!-- ** ** -->
-<!-- ** ** -->
-<!-- ***************************************************************** -->
-<!-- ***************************************************************** -->
-
-
-<!-- currently just a cut and paste: none of this will work atm. -->
-<!-- TODO... COMPLETE THIS: -->
-
-
- <!-- TODO: nuke this target after handling what it did elsewhere -->
- <target name="bot.init" depends="init">
- <!-- TODO: moce this to main init, should cone from project.home/forrest.properties
-->
- <property name="bot.build.dir" value="${xlayout.build.bot.dir}"/>
- <property name="bot.forrestbot.xconf" value="forrestbot.conf.xml" />
-
- <!-- TODO: needs to be in the distribution -->
- <property name="bot.templates.build.xml"
- value="${xlayout.source.resources.forrestbot.ant.dir}/templates.build.xml"
/>
- <property name="bot.work.builder.xslt"
- value="${xlayout.source.resources.forrestbot.xslt.dir}/config2work.xsl" />
- <property name="bot.default.builder.xslt"
- value="${xlayout.source.resources.forrestbot.xslt.dir}/config2defaults.xsl"
/>
- </target>
-
-
- <target name="bot.conf2build" depends="bot.init" >
- <mkdir dir="${bot.build.dir}" />
- <echo message="Using config file: ${bot.forrestbot.xconf}" />
-
- <property name="bot.work.build.xml" value="${bot.build.dir}/work.build.xml"/>
- <property name="bot.default.parameters.xml" value="${bot.build.dir}/default.parameters.xml"/>
-
- <!-- remove previous versions to force generation again -->
- <delete file="${bot.work.build.xml}" />
- <delete file="${bot.default.parameters.xml}" />
-
- <!-- builds the different xml files this process needs. -->
- <style in="${bot.forrestbot.xconf}"
- out="${bot.work.build.xml}"
- style="${bot.work.builder.xslt}"/>
- <style in="${bot.forrestbot.xconf}"
- out="${bot.default.parameters.xml}"
- style="${bot.default.builder.xslt}"/>
- <copy todir="${bot.build.dir}" file="${bot.templates.build.xml}"/>
- </target>
-
-
- <target name="bot" depends="bot.conf2build, prepare-classpath" description="Run the
ForrestBot">
- <!-- delegates to the generated XML file -->
- <ant antfile="${bot.work.build.xml}" target="work" inheritRefs="true"/>
- </target>
-
-
</project>
|