Removed tabs extra stuff from build file

This commit is contained in:
Klaus Hartl 2007-01-25 14:06:43 +00:00
parent 0eb642cc1f
commit 216477bc57

322
build.xml
View file

@ -1,191 +1,175 @@
<project name="jQuery" default="all" basedir="."> <project name="jQuery" default="all" basedir=".">
<!--
- Using this build file to create your own custom distribution -
If you want to include jQuery on your site with a certain set of plugins,
follow these steps to create your custom build:
1. Copy the plugins you need to the plugins folder (if you haven't already, checkout
the plugins folder from SVN.
2. Modify the PLUGINS property to include all plugins you want, see PLUGINS_ALL for syntax
eg. if you need form and tabs plugin, set the value for PLUGINS to this:
form/*.js, tabs/*.js
3. Execute the standard jquery and packed targets to build your distribution
TODO Using this build file to create docs for a single plugin <!--
--> - Using this build file to create your own custom distribution -
<!-- SETUP --> If you want to include jQuery on your site with a certain set of plugins,
follow these steps to create your custom build:
<property description="Source Folder" name="SRC_DIR" value="src" /> 1. Copy the plugins you need to the plugins folder (if you haven't already, checkout
<property description="Files for parsing etc." name="BUILD_DIR" value="build" /> the plugins folder from SVN.
<property description="Rhino JS Engine" name="JAR" value="${BUILD_DIR}/js.jar" /> 2. Modify the PLUGINS property to include all plugins you want, see PLUGINS_ALL for syntax
eg. if you need form and tabs plugin, set the value for PLUGINS to this:
form/*.js, tabs/*.js
3. Execute the standard jquery and packed targets to build your distribution
<property description="Dir to look for plugins" name="PLUGIN_DIR" location="../plugins" /> TODO Using this build file to create docs for a single plugin
<property description="Add single plugins here" name="PLUGINS" value="none" /> -->
<property description="Add all plugins here" name="PLUGINS_ALL"
value="button/*.js,center/*.js,cookie/*.js,form/*.js,greybox/*.js,interface/*.js,pager/*.js,tablesorter/*.js,tabs/*.js,tooltip/*.js,accordion/*.js" />
<property description="Target parent folder for built files" name="PREFIX" value="." /> <!-- SETUP -->
<property description="Folder for docs target" name="DOCS_DIR" value="${PREFIX}/docs" />
<property description="Folder for test target" name="TEST_DIR" value="${PREFIX}/test" />
<property description="Folder for jquery, min, lite and packed target" name="DIST_DIR" value="${PREFIX}/dist" />
<!-- Files names for distribution --> <property description="Source Folder" name="SRC_DIR" value="src" />
<property name="JQ" value="${DIST_DIR}/jquery.js" /> <property description="Files for parsing etc." name="BUILD_DIR" value="build" />
<property name="JQ_LITE" value="${DIST_DIR}/jquery.lite.js" /> <property description="Rhino JS Engine" name="JAR" value="${BUILD_DIR}/js.jar" />
<property name="JQ_MIN" value="${DIST_DIR}/jquery.min.js" />
<property name="JQ_PACK" value="${DIST_DIR}/jquery.pack.js" />
<!-- MAIN --> <property description="Dir to look for plugins" name="PLUGIN_DIR" location="../plugins" />
<property description="Add single plugins here" name="PLUGINS" value="none" />
<property description="Add all plugins here" name="PLUGINS_ALL"
value="button/*.js,center/*.js,cookie/*.js,form/*.js,greybox/*.js,interface/*.js,pager/*.js,tablesorter/*.js,tabs/*.js,tooltip/*.js,accordion/*.js" />
<target name="jquery" description="Main jquery build, set PLUGINS property to include plugins"> <property description="Target parent folder for built files" name="PREFIX" value="." />
<echo message="Building ${JQ}" /> <property description="Folder for docs target" name="DOCS_DIR" value="${PREFIX}/docs" />
<mkdir dir="${DIST_DIR}" /> <property description="Folder for test target" name="TEST_DIR" value="${PREFIX}/test" />
<concat destfile="${JQ}"> <property description="Folder for jquery, min, lite and packed target" name="DIST_DIR" value="${PREFIX}/dist" />
<fileset dir="${SRC_DIR}" includes="intro.js" />
<fileset dir="${SRC_DIR}" includes="jquery/jquery.js" />
<fileset dir="${SRC_DIR}" includes="selector/selector.js" />
<fileset dir="${SRC_DIR}" includes="event/event.js" />
<fileset dir="${SRC_DIR}" includes="fx/fx.js" />
<fileset dir="${SRC_DIR}" includes="ajax/ajax.js" />
<fileset dir="${PLUGIN_DIR}" includes="${PLUGINS}" />
<fileset dir="${SRC_DIR}" includes="outro.js" />
</concat>
<echo message="${JQ} built." />
</target>
<target name="jquery_with_plugins" description="Build jquery with all plugins, useful to full documentation"> <!-- Files names for distribution -->
<antcall target="jquery"> <property name="JQ" value="${DIST_DIR}/jquery.js" />
<param name="PLUGINS" value="${PLUGINS_ALL}" /> <property name="JQ_LITE" value="${DIST_DIR}/jquery.lite.js" />
</antcall> <property name="JQ_MIN" value="${DIST_DIR}/jquery.min.js" />
</target> <property name="JQ_PACK" value="${DIST_DIR}/jquery.pack.js" />
<target name="lite" depends="jquery" description="Remove all /** */ comments"> <!-- MAIN -->
<echo message="Building ${JQ_LITE}" />
<java jar="${JAR}" fork="true">
<arg value="${BUILD_DIR}/build/lite.js" />
<arg value="${JQ}" />
<arg value="${JQ_LITE}" />
</java>
<echo message="${JQ_LITE} built." />
</target>
<target name="min" depends="jquery" description="Remove all comments and whitespace, no compression"> <target name="jquery" description="Main jquery build, set PLUGINS property to include plugins">
<echo message="Building ${JQ_MIN}" /> <echo message="Building ${JQ}" />
<java jar="${JAR}" fork="true"> <mkdir dir="${DIST_DIR}" />
<arg value="${BUILD_DIR}/build/min.js" /> <concat destfile="${JQ}">
<arg value="${JQ}" /> <fileset dir="${SRC_DIR}" includes="intro.js" />
<arg value="${JQ_MIN}" /> <fileset dir="${SRC_DIR}" includes="jquery/jquery.js" />
</java> <fileset dir="${SRC_DIR}" includes="selector/selector.js" />
<echo message="${JQ_MIN} built." /> <fileset dir="${SRC_DIR}" includes="event/event.js" />
</target> <fileset dir="${SRC_DIR}" includes="fx/fx.js" />
<fileset dir="${SRC_DIR}" includes="ajax/ajax.js" />
<fileset dir="${PLUGIN_DIR}" includes="${PLUGINS}" />
<fileset dir="${SRC_DIR}" includes="outro.js" />
</concat>
<echo message="${JQ} built." />
</target>
<target name="pack" depends="jquery" description="Remove all comments and whitespace and compress"> <target name="jquery_with_plugins" description="Build jquery with all plugins, useful to full documentation">
<echo message="Building ${JQ_PACK}" /> <antcall target="jquery">
<java jar="${JAR}" fork="true"> <param name="PLUGINS" value="${PLUGINS_ALL}" />
<arg value="${BUILD_DIR}/build/pack.js" /> </antcall>
<arg value="${JQ}" /> </target>
<arg value="${JQ_PACK}" />
</java>
<echo message="${JQ_PACK} built." />
</target>
<target name="pack_with_plugins" depends="jquery_with_plugins" description="Pack jquery with all plugins, not very useful"> <target name="lite" depends="jquery" description="Remove all /** */ comments">
<echo message="Building ${JQ_PACK}" /> <echo message="Building ${JQ_LITE}" />
<java jar="${JAR}" fork="true"> <java jar="${JAR}" fork="true">
<arg value="${BUILD_DIR}/build/pack.js" /> <arg value="${BUILD_DIR}/build/lite.js" />
<arg value="${JQ}" /> <arg value="${JQ}" />
<arg value="${JQ_PACK}" /> <arg value="${JQ_LITE}" />
</java> </java>
<echo message="${JQ_PACK} built." /> <echo message="${JQ_LITE} built." />
</target> </target>
<target name="test" depends="jquery" description="Copy files for the test suite into their own directory."> <target name="min" depends="jquery" description="Remove all comments and whitespace, no compression">
<echo message="Building Test Suite" /> <echo message="Building ${JQ_MIN}" />
<delete dir="${TEST_DIR}" /> <java jar="${JAR}" fork="true">
<mkdir dir="${TEST_DIR}/data" /> <arg value="${BUILD_DIR}/build/min.js" />
<copy todir="${TEST_DIR}/data"> <arg value="${JQ}" />
<fileset dir="${BUILD_DIR}/test/data/" /> <arg value="${JQ_MIN}" />
</copy> </java>
<copy todir="${TEST_DIR}" file="${BUILD_DIR}/test/index.html" /> <echo message="${JQ_MIN} built." />
<echo message="Test Suite built." /> </target>
</target>
<target name="docs" depends="jquery" description="Reads inline docs from source and compiles into xml file"> <target name="pack" depends="jquery" description="Remove all comments and whitespace and compress">
<echo message="Building Documentation" /> <echo message="Building ${JQ_PACK}" />
<delete dir="${DOCS_DIR}" /> <java jar="${JAR}" fork="true">
<mkdir dir="${DOCS_DIR}/data" /> <arg value="${BUILD_DIR}/build/pack.js" />
<copy todir="${DOCS_DIR}" file="${BUILD_DIR}/docs/.htaccess" /> <arg value="${JQ}" />
<mkdir dir="${DOCS_DIR}/js" /> <arg value="${JQ_PACK}" />
<copy todir="${DOCS_DIR}/js"> </java>
<fileset dir="${BUILD_DIR}/docs/js"> <echo message="${JQ_PACK} built." />
<include name="**/*.js" /> </target>
</fileset>
</copy>
<copy todir="${DOCS_DIR}/style">
<fileset dir="${BUILD_DIR}/docs/style">
<include name="**" />
</fileset>
</copy>
<java jar="${JAR}" fork="true">
<arg value="${BUILD_DIR}/docs/docs.js" />
<arg value="${JQ}" />
<arg value="${DOCS_DIR}" />
</java>
<echo message="Documentation built." />
</target>
<!-- TODO refactor to remove duplication with above --> <target name="pack_with_plugins" depends="jquery_with_plugins" description="Pack jquery with all plugins, not very useful">
<target name="docs_with_plugins" depends="jquery_with_plugins"> <echo message="Building ${JQ_PACK}" />
<echo message="Building Documentation" /> <java jar="${JAR}" fork="true">
<delete dir="${DOCS_DIR}" /> <arg value="${BUILD_DIR}/build/pack.js" />
<mkdir dir="${DOCS_DIR}/data" /> <arg value="${JQ}" />
<copy todir="${DOCS_DIR}" file="${BUILD_DIR}/docs/.htaccess" /> <arg value="${JQ_PACK}" />
<mkdir dir="${DOCS_DIR}/js" /> </java>
<copy todir="${DOCS_DIR}/js"> <echo message="${JQ_PACK} built." />
<fileset dir="${BUILD_DIR}/docs/js"> </target>
<include name="**/*.js" />
</fileset>
</copy>
<copy todir="${DOCS_DIR}/style">
<fileset dir="${BUILD_DIR}/docs/style">
<include name="**" />
</fileset>
</copy>
<java jar="${JAR}" fork="true">
<arg value="${BUILD_DIR}/docs/docs.js" />
<arg value="${JQ}" />
<arg value="${DOCS_DIR}" />
</java>
<echo message="Documentation built." />
</target>
<target name="clean"> <target name="test" depends="jquery" description="Copy files for the test suite into their own directory.">
<delete dir="${DOCS_DIR}" /> <echo message="Building Test Suite" />
<delete dir="${TEST_DIR}" /> <delete dir="${TEST_DIR}" />
<delete dir="${DIST_DIR}" /> <mkdir dir="${TEST_DIR}/data" />
</target> <copy todir="${TEST_DIR}/data">
<fileset dir="${BUILD_DIR}/test/data/" />
</copy>
<copy todir="${TEST_DIR}" file="${BUILD_DIR}/test/index.html" />
<echo message="Test Suite built." />
</target>
<target name="all" depends="clean,jquery,lite,min,pack,docs,test"> <target name="docs" depends="jquery" description="Reads inline docs from source and compiles into xml file">
<echo message="Build complete." /> <echo message="Building Documentation" />
</target> <delete dir="${DOCS_DIR}" />
<mkdir dir="${DOCS_DIR}/data" />
<!-- Extra stuff for Tabs plugin --> <copy todir="${DOCS_DIR}" file="${BUILD_DIR}/docs/.htaccess" />
<mkdir dir="${DOCS_DIR}/js" />
<property name="TABS" value="${PLUGIN_DIR}/tabs/tabs.js" /> <copy todir="${DOCS_DIR}/js">
<property name="TABS_PACK" value="${DIST_DIR}/jquery.tabs.pack.js" /> <fileset dir="${BUILD_DIR}/docs/js">
<include name="**/*.js" />
</fileset>
</copy>
<copy todir="${DOCS_DIR}/style">
<fileset dir="${BUILD_DIR}/docs/style">
<include name="**" />
</fileset>
</copy>
<java jar="${JAR}" fork="true">
<arg value="${BUILD_DIR}/docs/docs.js" />
<arg value="${JQ}" />
<arg value="${DOCS_DIR}" />
</java>
<echo message="Documentation built." />
</target>
<target name="pack_tabs"> <!-- TODO refactor to remove duplication with above -->
<echo message="Building ${TABS_PACK}" /> <target name="docs_with_plugins" depends="jquery_with_plugins">
<mkdir dir="${DIST_DIR}" /> <echo message="Building Documentation" />
<java jar="${JAR}" fork="true"> <delete dir="${DOCS_DIR}" />
<arg value="${BUILD_DIR}/build/pack.js" /> <mkdir dir="${DOCS_DIR}/data" />
<arg value="${TABS}" /> <copy todir="${DOCS_DIR}" file="${BUILD_DIR}/docs/.htaccess" />
<arg value="${TABS_PACK}" /> <mkdir dir="${DOCS_DIR}/js" />
</java> <copy todir="${DOCS_DIR}/js">
<echo message="${TABS_PACK} built." /> <fileset dir="${BUILD_DIR}/docs/js">
</target> <include name="**/*.js" />
</fileset>
</copy>
<copy todir="${DOCS_DIR}/style">
<fileset dir="${BUILD_DIR}/docs/style">
<include name="**" />
</fileset>
</copy>
<java jar="${JAR}" fork="true">
<arg value="${BUILD_DIR}/docs/docs.js" />
<arg value="${JQ}" />
<arg value="${DOCS_DIR}" />
</java>
<echo message="Documentation built." />
</target>
<target name="clean">
<delete dir="${DOCS_DIR}" />
<delete dir="${TEST_DIR}" />
<delete dir="${DIST_DIR}" />
</target>
<target name="all" depends="clean,jquery,lite,min,pack,docs,test">
<echo message="Build complete." />
</target>
</project> </project>