2008-06-07 20:02:49 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
jQuery UI Release!
|
2008-11-20 05:07:42 +00:00
|
|
|
|
2008-06-07 20:02:49 +00:00
|
|
|
Call task called 'deploy-release' to build a full release.
|
|
|
|
The release built will be stored on 'dist' dir.
|
2008-11-20 05:07:42 +00:00
|
|
|
|
2008-06-07 20:02:49 +00:00
|
|
|
-->
|
|
|
|
|
|
|
|
<project name="jquery-ui" default="deploy-release" basedir=".">
|
2008-12-22 18:26:26 +00:00
|
|
|
|
|
|
|
<taskdef resource="net/sf/antcontrib/antcontrib.properties">
|
|
|
|
<classpath>
|
|
|
|
<pathelement location="build/ant-contrib-0.6.jar"/>
|
|
|
|
</classpath>
|
|
|
|
</taskdef>
|
2009-01-08 19:01:26 +00:00
|
|
|
|
|
|
|
<property file="ant.properties" />
|
2008-11-20 05:07:42 +00:00
|
|
|
|
2009-01-16 11:19:18 +00:00
|
|
|
<loadfile failonerror="no" srcFile="../version.txt" property="release.version" />
|
2009-03-03 13:12:35 +00:00
|
|
|
<property name="release.filename" value="jquery-ui-${release.version}" />
|
2008-11-20 05:07:42 +00:00
|
|
|
|
2009-01-08 19:01:26 +00:00
|
|
|
<property name="dist.dir" value="dist/${release.filename}/" />
|
|
|
|
<property name="build.dir" value="build" />
|
|
|
|
<property name="ui.dir" value="../" />
|
|
|
|
<property name="src.dir" value="${ui.dir}/ui/" />
|
2009-03-03 13:26:01 +00:00
|
|
|
<property name="theme.dir" value="${ui.dir}/themes/base/" />
|
2009-02-06 19:44:44 +00:00
|
|
|
<property name="docs.dir" value="${ui.dir}/docs/" />
|
2008-11-20 05:07:42 +00:00
|
|
|
|
2009-01-08 19:01:26 +00:00
|
|
|
<property name="min.folder" value="${dist.dir}/ui/minified" />
|
2008-11-20 05:07:42 +00:00
|
|
|
|
2009-03-03 13:12:35 +00:00
|
|
|
<property name="concatenated" value="jquery-ui" />
|
|
|
|
<property name="concatenated.i18n" value="jquery-ui-i18n" />
|
2008-11-20 05:07:42 +00:00
|
|
|
|
2009-12-24 09:47:03 +00:00
|
|
|
<property name="core.files" value="jquery.ui.core.js, jquery.ui.widget.js, jquery.ui.mouse.js, jquery.ui.draggable.js, jquery.ui.droppable.js, jquery.ui.resizable.js, jquery.ui.selectable.js, jquery.ui.sortable.js, jquery.effects.core.js" />
|
2008-11-20 05:07:42 +00:00
|
|
|
|
2010-03-20 19:28:10 +00:00
|
|
|
<property description="Google Closure" name="closure-jar" value="${build.dir}/google-compiler-20091218.jar" />
|
2009-01-08 19:01:26 +00:00
|
|
|
|
2009-02-06 19:44:44 +00:00
|
|
|
<target name="deploy-release" depends="docs-download, concatenate, minify, copy, replace-version, prepend-header, zip" description="Release builder">
|
2008-11-20 05:07:42 +00:00
|
|
|
</target>
|
|
|
|
|
2009-01-08 19:01:26 +00:00
|
|
|
<target name="replace-version">
|
2008-11-20 13:42:56 +00:00
|
|
|
<replaceregexp match="@VERSION" replace="${release.version}" flags="g" byline="true">
|
2008-11-20 05:07:42 +00:00
|
|
|
<fileset dir="${dist.dir}/ui/" includes="*.js"/>
|
2008-12-18 19:02:36 +00:00
|
|
|
<fileset dir="${dist.dir}/ui/minified/" includes="*.js"/>
|
2008-11-20 05:07:42 +00:00
|
|
|
</replaceregexp>
|
2008-11-20 13:42:56 +00:00
|
|
|
<echo message="Replaced all @VERSION to ${release.version}." />
|
|
|
|
</target>
|
2008-12-22 18:26:26 +00:00
|
|
|
|
2009-01-08 19:01:26 +00:00
|
|
|
<target name="prepend-header">
|
2008-12-22 18:26:26 +00:00
|
|
|
<!-- TODO: refactor this ugly mess -->
|
|
|
|
<copy todir="${dist.dir}/headers/">
|
|
|
|
<fileset dir="${dist.dir}/ui/" includes="*.js" />
|
|
|
|
</copy>
|
|
|
|
<replaceregexp match="^(\/\*.*?\*\/\s).+" replace="\1" flags="s">
|
|
|
|
<fileset dir="${dist.dir}/headers/" includes="*.js"/>
|
|
|
|
</replaceregexp>
|
|
|
|
<for param="file">
|
|
|
|
<path><fileset dir="${dist.dir}/ui/minified/" includes="*.js" /></path>
|
|
|
|
<sequential>
|
2009-11-26 02:17:16 +00:00
|
|
|
<propertyregex override="yes" property="target" input="@{file}" regexp=".*[\\/](.+)\.min\.js$" replace="\1"/>
|
2008-12-22 18:26:26 +00:00
|
|
|
<concat destfile="${dist.dir}/ui-headered/${target}.min.js">
|
|
|
|
<header file="${dist.dir}/headers/${target}.js" />
|
|
|
|
<fileset file="@{file}" />
|
|
|
|
</concat>
|
|
|
|
</sequential>
|
|
|
|
</for>
|
|
|
|
<copy todir="${dist.dir}/ui/minified">
|
|
|
|
<fileset dir="${dist.dir}/ui-headered/" includes="*.js" />
|
|
|
|
</copy>
|
2009-01-30 07:00:27 +00:00
|
|
|
<delete dir="${dist.dir}/headers/" />
|
2008-12-22 18:26:26 +00:00
|
|
|
<delete dir="${dist.dir}/ui-headered/" />
|
|
|
|
</target>
|
2008-11-20 13:42:56 +00:00
|
|
|
|
|
|
|
<target description="Zip the package" name="zip">
|
|
|
|
<zip destfile="${dist.dir}/../${release.filename}.zip">
|
2009-01-01 01:24:55 +00:00
|
|
|
<zipfileset dir="dist/" />
|
2008-11-20 13:42:56 +00:00
|
|
|
</zip>
|
2008-06-07 20:02:49 +00:00
|
|
|
</target>
|
|
|
|
|
2009-01-08 19:01:26 +00:00
|
|
|
<target name="concatenate">
|
2008-06-07 20:02:49 +00:00
|
|
|
<echo message="Building concatenated" />
|
|
|
|
<mkdir dir="${dist.dir}/ui/" />
|
|
|
|
<delete file="${dist.dir}/ui/${concatenated}.js" />
|
2008-11-20 05:07:42 +00:00
|
|
|
|
2008-06-07 20:02:49 +00:00
|
|
|
<concat destfile="${dist.dir}/ui/${concatenated}.js">
|
|
|
|
<filelist dir="${src.dir}/" files="${core.files}" />
|
2010-01-29 20:06:33 +00:00
|
|
|
<fileset dir="${src.dir}/" includes="jquery.ui.*.js, jquery.effects.*.js" excludes="${core.files}" />
|
2008-06-07 20:02:49 +00:00
|
|
|
</concat>
|
|
|
|
<echo message="Concatenated built." />
|
2008-09-10 00:26:11 +00:00
|
|
|
|
2009-03-03 13:26:01 +00:00
|
|
|
<concat destfile="${dist.dir}/themes/base/${concatenated}.css">
|
2010-02-16 12:36:43 +00:00
|
|
|
<fileset dir="${theme.dir}/" includes="jquery.ui.core.css" />
|
|
|
|
<fileset dir="${theme.dir}/" includes="jquery.ui.*.css" excludes="jquery.ui.all.css, jquery.ui.core.css, jquery.ui.base.css, jquery.ui.theme.css" />
|
|
|
|
<fileset dir="${theme.dir}/" includes="jquery.ui.theme.css" />
|
2009-03-03 13:26:01 +00:00
|
|
|
</concat>
|
|
|
|
<echo message="Concatenated theme." />
|
|
|
|
|
2008-09-10 00:26:11 +00:00
|
|
|
<mkdir dir="${dist.dir}/ui/i18n/" />
|
|
|
|
<delete file="${dist.dir}/ui/i18n/${concatenated.i18n}.js" />
|
2008-11-20 05:07:42 +00:00
|
|
|
|
2008-09-10 00:26:11 +00:00
|
|
|
<concat destfile="${dist.dir}/ui/i18n/${concatenated.i18n}.js" encoding="utf-8">
|
2010-01-15 12:36:59 +00:00
|
|
|
<fileset dir="${src.dir}/i18n/" includes="jquery.ui.*.js" />
|
2008-09-10 00:26:11 +00:00
|
|
|
</concat>
|
|
|
|
<echo message="Concatenated i18n built." />
|
2008-06-07 20:02:49 +00:00
|
|
|
</target>
|
|
|
|
|
2009-01-08 19:01:26 +00:00
|
|
|
<target name="minify" depends="concatenate" description="Remove all comments and whitespace, no compression, great in combination with GZip">
|
2008-06-07 20:02:49 +00:00
|
|
|
<echo message="Building minified" />
|
|
|
|
<delete dir="${min.folder}/" />
|
|
|
|
<mkdir dir="${min.folder}" />
|
2008-11-20 05:07:42 +00:00
|
|
|
<delete dir="${min.folder}/i18n/" />
|
|
|
|
<mkdir dir="${min.folder}/i18n/" />
|
2010-03-20 19:28:10 +00:00
|
|
|
|
2008-06-07 20:02:49 +00:00
|
|
|
<apply executable="java" parallel="false">
|
2009-11-13 03:59:03 +00:00
|
|
|
<fileset dir="${src.dir}/" includes="jquery.ui.*.js, jquery.effects.*.js" />
|
2008-06-07 20:02:49 +00:00
|
|
|
<arg line="-jar" />
|
2010-03-20 19:28:10 +00:00
|
|
|
<arg path="build/google-compiler-20091218.jar" />
|
|
|
|
<arg value="--warning_level" />
|
|
|
|
<arg value="QUIET" />
|
|
|
|
<arg value="--js_output_file" />
|
2008-06-07 20:02:49 +00:00
|
|
|
<targetfile />
|
2010-03-20 19:28:10 +00:00
|
|
|
<arg value="--js" />
|
|
|
|
<mapper type="glob" from="*.js" to="${min.folder}/*.min.js" />
|
2008-06-07 20:02:49 +00:00
|
|
|
</apply>
|
2010-03-20 19:28:10 +00:00
|
|
|
|
|
|
|
<apply executable="java" parallel="false" verbose="true" dest="${dist.dir}">
|
|
|
|
<filelist dir="${dist.dir}/ui/" files="${concatenated}.js" />
|
2008-11-20 05:07:42 +00:00
|
|
|
<arg line="-jar" />
|
2010-03-20 19:28:10 +00:00
|
|
|
<arg path="build/google-compiler-20091218.jar" />
|
|
|
|
<arg value="--warning_level" />
|
|
|
|
<arg value="QUIET" />
|
|
|
|
<arg value="--js_output_file" />
|
2008-06-07 20:02:49 +00:00
|
|
|
<targetfile />
|
2010-03-20 19:28:10 +00:00
|
|
|
<arg value="--js" />
|
|
|
|
<mapper type="glob" from="${concatenated}.js" to="tmpmin" />
|
2008-06-07 20:02:49 +00:00
|
|
|
</apply>
|
2010-03-20 19:28:10 +00:00
|
|
|
<concat destfile="${min.folder}/jquery-ui.min.js">
|
|
|
|
<filelist files="${src.dir}/jquery.ui.core.js, ${dist.dir}/tmpmin"/>
|
|
|
|
<filterchain>
|
|
|
|
<headfilter lines="9"/>
|
|
|
|
</filterchain>
|
|
|
|
</concat>
|
|
|
|
<concat destfile="${min.folder}/jquery-ui.min.js" append="yes">
|
|
|
|
<filelist files="${dist.dir}/tmpmin"/>
|
|
|
|
</concat>
|
|
|
|
<delete file="${dist.dir}/tmpmin"/>
|
|
|
|
|
|
|
|
<echo message="Minified ui/ built." />
|
2008-06-07 20:02:49 +00:00
|
|
|
</target>
|
2008-11-20 05:07:42 +00:00
|
|
|
|
2009-01-08 19:01:26 +00:00
|
|
|
<target description="Copy needed folders" name="copy">
|
2008-06-07 20:02:49 +00:00
|
|
|
<echo message="Copying files" />
|
|
|
|
<mkdir dir="${dist.dir}" />
|
2008-11-20 05:07:42 +00:00
|
|
|
|
2008-06-09 08:06:59 +00:00
|
|
|
<copy overwrite="true" todir="${dist.dir}/">
|
|
|
|
<fileset dir="${ui.dir}/" includes="jquery-*.js" />
|
|
|
|
</copy>
|
2008-11-20 05:07:42 +00:00
|
|
|
|
2008-06-07 20:02:49 +00:00
|
|
|
<copy overwrite="true" todir="${dist.dir}/ui/">
|
2009-11-13 03:59:03 +00:00
|
|
|
<fileset dir="${src.dir}/" includes="jquery.ui.*.js, jquery.effects.*.js" />
|
2008-06-07 20:02:49 +00:00
|
|
|
</copy>
|
2008-11-20 05:07:42 +00:00
|
|
|
|
2008-06-07 20:02:49 +00:00
|
|
|
<copy overwrite="true" todir="${dist.dir}/ui/i18n/" >
|
|
|
|
<fileset dir="${src.dir}/i18n/" />
|
|
|
|
</copy>
|
2008-11-20 05:07:42 +00:00
|
|
|
|
2008-06-07 20:02:49 +00:00
|
|
|
<copy overwrite="true" todir="${dist.dir}/">
|
|
|
|
<fileset dir="${ui.dir}/" includes="*.txt" />
|
|
|
|
</copy>
|
2008-11-20 05:07:42 +00:00
|
|
|
|
2008-06-07 20:02:49 +00:00
|
|
|
<copy overwrite="true" todir="${dist.dir}/demos/" >
|
|
|
|
<fileset dir="${ui.dir}/demos/" />
|
|
|
|
</copy>
|
2008-11-20 05:07:42 +00:00
|
|
|
|
2009-01-30 07:00:27 +00:00
|
|
|
<copy overwrite="true" todir="${dist.dir}/external/" >
|
|
|
|
<fileset dir="${ui.dir}/external/" />
|
|
|
|
</copy>
|
|
|
|
|
2008-06-07 20:02:49 +00:00
|
|
|
<copy overwrite="true" todir="${dist.dir}/tests/" >
|
|
|
|
<fileset dir="${ui.dir}/tests/" />
|
|
|
|
</copy>
|
2008-11-20 05:07:42 +00:00
|
|
|
|
2009-03-03 13:12:35 +00:00
|
|
|
<copy overwrite="true" todir="${dist.dir}/docs/" >
|
|
|
|
<fileset dir="${ui.dir}/docs/" />
|
|
|
|
</copy>
|
|
|
|
|
2008-06-07 20:02:49 +00:00
|
|
|
<copy overwrite="true" todir="${dist.dir}/themes/" >
|
|
|
|
<fileset dir="${ui.dir}/themes/" />
|
|
|
|
</copy>
|
|
|
|
<echo message="Files copied." />
|
|
|
|
</target>
|
2008-11-20 13:42:56 +00:00
|
|
|
|
2009-01-08 19:01:26 +00:00
|
|
|
<target name="clean">
|
2009-01-03 14:47:12 +00:00
|
|
|
<delete dir="dist" />
|
2008-06-07 20:02:49 +00:00
|
|
|
</target>
|
2009-01-08 19:01:26 +00:00
|
|
|
|
2010-02-01 17:51:23 +00:00
|
|
|
<target name="docs-download" depends="docs-clean">
|
2009-01-08 21:51:13 +00:00
|
|
|
<mkdir dir="${docs.dir}" />
|
2009-03-03 13:12:35 +00:00
|
|
|
<property name="url" value="http://docs.jquery.com/action/render/UI/API/${release.version}/" />
|
|
|
|
|
|
|
|
<get src="${url}Draggable" dest="${docs.dir}draggable.html" />
|
|
|
|
<get src="${url}Droppable" dest="${docs.dir}droppable.html" />
|
|
|
|
<get src="${url}Resizable" dest="${docs.dir}resizable.html" />
|
|
|
|
<get src="${url}Selectable" dest="${docs.dir}selectable.html" />
|
|
|
|
<get src="${url}Sortable" dest="${docs.dir}sortable.html" />
|
|
|
|
|
|
|
|
<get src="${url}Accordion" dest="${docs.dir}accordion.html" />
|
2010-01-26 21:04:29 +00:00
|
|
|
<get src="${url}Autocomplete" dest="${docs.dir}autocomplete.html" />
|
|
|
|
<get src="${url}Button" dest="${docs.dir}button.html" />
|
2009-03-03 13:12:35 +00:00
|
|
|
<get src="${url}Datepicker" dest="${docs.dir}datepicker.html" />
|
|
|
|
<get src="${url}Dialog" dest="${docs.dir}dialog.html" />
|
|
|
|
<get src="${url}Progressbar" dest="${docs.dir}progressbar.html" />
|
|
|
|
<get src="${url}Slider" dest="${docs.dir}slider.html" />
|
|
|
|
<get src="${url}Tabs" dest="${docs.dir}tabs.html" />
|
|
|
|
|
2010-03-18 12:29:25 +00:00
|
|
|
<get src="${url}Position" dest="${docs.dir}position.html" />
|
2009-08-02 08:31:54 +00:00
|
|
|
|
2009-03-03 13:12:35 +00:00
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/animate" dest="${docs.dir}animate.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/addClass" dest="${docs.dir}addClass.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/effect" dest="${docs.dir}effect.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/hide" dest="${docs.dir}hide.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/removeClass" dest="${docs.dir}removeClass.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/show" dest="${docs.dir}show.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/switchClass" dest="${docs.dir}switchClass.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/toggle" dest="${docs.dir}toggle.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/toggleClass" dest="${docs.dir}toggleClass.html" />
|
2010-02-01 17:51:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/Blind" dest="${docs.dir}effect-blind.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/Clip" dest="${docs.dir}effect-clip.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/Drop" dest="${docs.dir}effect-drop.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/Explode" dest="${docs.dir}effect-explode.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/Fade" dest="${docs.dir}effect-fade.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/Fold" dest="${docs.dir}effect-fold.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/Puff" dest="${docs.dir}effect-puff.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/Slide" dest="${docs.dir}effect-slide.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/Scale" dest="${docs.dir}effect-scale.html" />
|
|
|
|
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/Bounce" dest="${docs.dir}effect-bounce.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/Highlight" dest="${docs.dir}effect-highlight.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/Pulsate" dest="${docs.dir}effect-pulsate.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/Shake" dest="${docs.dir}effect-shake.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/Size" dest="${docs.dir}effect-size.html" />
|
|
|
|
<get src="http://docs.jquery.com/action/render/UI/Effects/Transfer" dest="${docs.dir}effect-transfer.html" />
|
2009-01-08 21:51:13 +00:00
|
|
|
</target>
|
2009-03-03 13:12:35 +00:00
|
|
|
|
2009-01-08 21:51:13 +00:00
|
|
|
<target name="docs-clean">
|
2009-02-06 19:44:44 +00:00
|
|
|
<delete dir="${docs.dir}" />
|
2009-01-08 21:51:13 +00:00
|
|
|
</target>
|
|
|
|
|
2009-01-22 13:09:18 +00:00
|
|
|
<target name="whitespace">
|
|
|
|
<replaceregexp match="[\t ]+$" replace="" flags="g" byline="true">
|
|
|
|
<fileset dir="${src.dir}" includes="*.js"/>
|
|
|
|
<fileset dir="${src.dir}/i18n/" includes="*.js"/>
|
|
|
|
</replaceregexp>
|
|
|
|
<echo message="All trailing spaces removed." />
|
|
|
|
</target>
|
|
|
|
|
2009-01-08 21:51:13 +00:00
|
|
|
</project>
|