diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2010-02-01 17:51:23 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2010-02-01 17:51:23 +0000 |
commit | a8ef49964850d11cfa89af3e358fb3bf93760096 (patch) | |
tree | b6c2088b1fa382983e5c665990687d7d32af16a7 /build | |
parent | 5b61537e6e759cacc4295887200db6ac07086f54 (diff) | |
download | jquery-ui-a8ef49964850d11cfa89af3e358fb3bf93760096.tar.gz jquery-ui-a8ef49964850d11cfa89af3e358fb3bf93760096.zip |
Fix for #5103: Include all effect docs in build for download
Diffstat (limited to 'build')
-rw-r--r-- | build/build.xml | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/build/build.xml b/build/build.xml index acc52abe8..d206b1254 100644 --- a/build/build.xml +++ b/build/build.xml @@ -188,7 +188,7 @@ <delete dir="dist" /> </target> - <target name="docs-download"> + <target name="docs-download" depends="docs-clean"> <mkdir dir="${docs.dir}" /> <property name="url" value="http://docs.jquery.com/action/render/UI/API/${release.version}/" /> @@ -218,6 +218,24 @@ <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" /> + + + <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" /> </target> <target name="docs-clean"> |