Author: sebawagner
Date: Thu Jan 26 14:53:05 2012
New Revision: 1236210
URL: http://svn.apache.org/viewvc?rev=1236210&view=rev
Log:
Fix build script to copy complete version of website/docs to every distribution
Modified:
incubator/openmeetings/trunk/singlewebapp/build.xml
Modified: incubator/openmeetings/trunk/singlewebapp/build.xml
URL:
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/build.xml?rev=1236210&r1=1236209&r2=1236210&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/build.xml (original)
+++ incubator/openmeetings/trunk/singlewebapp/build.xml Thu Jan 26 14:53:05 2012
@@ -709,6 +709,25 @@
<include name="**/*.png" />
</fileset>
</copy>
+ <copy todir="${dist.webapps.dir}/docs/js">
+ <fileset dir="${basedir}/docs/js/">
+ <include name="**/*.js" />
+ </fileset>
+ </copy>
+ <copy todir="${dist.webapps.dir}/docs/source">
+ <fileset dir="${basedir}/docs/source/">
+ <include name="**/*.js" />
+ <include name="**/*.gif" />
+ <include name="**/*.png" />
+ </fileset>
+ </copy>
+ <copy todir="${dist.webapps.dir}/docs/source/helpers">
+ <fileset dir="${basedir}/docs/source/helpers">
+ <include name="**/*.js" />
+ <include name="**/*.css" />
+ <include name="**/*.png" />
+ </fileset>
+ </copy>
</target>
<!-- Unit Tests -->