diff options
author | Joonas Lehtinen <joonas.lehtinen@itmill.com> | 2006-10-20 13:54:30 +0000 |
---|---|---|
committer | Joonas Lehtinen <joonas.lehtinen@itmill.com> | 2006-10-20 13:54:30 +0000 |
commit | 4c5ce517cd3775a6a1842a1affccfa9403696ba1 (patch) | |
tree | ef9eb9764caf7062a4b7064fa94e2edb7c068d1d | |
parent | 7eb1931fbf1e4573b60aa8803b0872cfaca2a6c5 (diff) | |
download | vaadin-framework-4c5ce517cd3775a6a1842a1affccfa9403696ba1.tar.gz vaadin-framework-4c5ce517cd3775a6a1842a1affccfa9403696ba1.zip |
svn changeset:80/svn branch:toolkit
-rw-r--r-- | build/build.xml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/build/build.xml b/build/build.xml index fd67bc51c7..8165ab2b11 100644 --- a/build/build.xml +++ b/build/build.xml @@ -131,6 +131,11 @@ </fileset> </war> + <copy todir="${output-dir}/demo"> + <fileset dir="build/demo"> + <exclude name="**/.svn" /> + </fileset> + </copy> </target> <!-- Documentation- - - - - - - - - - - - - - - - - - - - - - - - - --> @@ -159,19 +164,18 @@ </target> <target name="javadoc" depends="init"> - <javadoc destdir="${output-dir}/doc/api" author="true" version="true" use="true" - windowtitle="${product-name}" classpath="build/lib/servlet-api.jar"> + <javadoc destdir="${output-dir}/doc/api" author="true" version="true" use="true" windowtitle="${product-name}" classpath="build/lib/servlet-api.jar"> <packageset dir="src"> <include name="${toolkit-package}/**" /> <exclude name="${toolkit-package}/demo/**" /> </packageset> <doctitle> <![CDATA[<h1>Enably Toolkit</h1>]]></doctitle> -<!-- <header><![CDATA[<script type="text/javascript" src=".html-style/style.js"></script>]]></header> --> + <!-- <header><![CDATA[<script type="text/javascript" src=".html-style/style.js"></script>]]></header> --> <bottom> <![CDATA[<i>Copyright © 2000-2006 IT Mill Ltd. All Rights Reserved.</i>]]></bottom> <link offline="true" href="http://java.sun.com/j2se/1.5.0/docs/api/" packagelistLoc="build/javadoc/j2se-1.5.0" /> - <link offline="true" href="http://java.sun.com/j2ee/1.4/docs/api/" packagelistLoc="build/javadoc/j2ee-1.4"/> + <link offline="true" href="http://java.sun.com/j2ee/1.4/docs/api/" packagelistLoc="build/javadoc/j2ee-1.4" /> </javadoc> </target> |